Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adopt to proviral pipeline changes #994

Merged
merged 3 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions micall/monitor/kive_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
'contigs_primers_csv',
'table_precursor_csv',
'proviral_landscape_csv',
'hivseqinr_results_tar']
'hivseqinr_results_tar', # TODO: remove when proviral is finally updated.
'detailed_results_tar']

# noinspection PyArgumentList
FolderEventType = Enum('FolderEventType', 'ADD_SAMPLE FINISH_FOLDER')
Expand Down Expand Up @@ -781,7 +782,7 @@ def run_pipeline(self,
run = self.run_proviral_pipeline(
sample_watcher,
folder_watcher,
'Proviral HIVSeqinR')
'Proviral')
return run
if pipeline_type == PipelineType.RESISTANCE:
run = self.run_resistance_pipeline(
Expand Down
4 changes: 2 additions & 2 deletions micall/tests/test_kive_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -1784,7 +1784,7 @@ def test_launch_proviral_run(raw_data_with_two_samples, mock_open_kive):
dataset='/datasets/112/'),
dict(argument='/containerargs/106',
dataset='/datasets/113/')],
name='Proviral HIVSeqinR on 2120A',
name='Proviral on 2120A',
batch='/batches/101',
groups_allowed=['Everyone']))

Expand Down Expand Up @@ -3007,7 +3007,7 @@ def test_collate_denovo_results(raw_data_with_two_samples, default_config, mock_

expected_cascade_path = version_folder / "denovo" / "cascade.csv"
expected_done_path = version_folder / "denovo" / "doneprocessing"
proviral_path = version_folder / "denovo" / "hivseqinr_results"
proviral_path = version_folder / "denovo" / "detailed_results"

main_scratch_path = version_folder / "scratch"
main_scratch_path.mkdir()
Expand Down
Loading