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

Review and update of services.json for files and folders cleaning #318

Merged
merged 6 commits into from
Aug 20, 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ Code contributions to the new version:
- Fixed autoclean-sftp function. [#281](https://github.com/BU-ISCIII/buisciii-tools/pull/281)
- Fixed bioinfo_doc.py. Modified it so that this module creates a .pdf file including new-line characters, without merging lines into one single line [#259](https://github.com/BU-ISCIII/buisciii-tools/pull/259).
- PR [#288](https://github.com/BU-ISCIII/buisciii-tools/pull/288) Fixed updating service's state to in_progress multiple times, related with issue [#285](https://github.com/BU-ISCIII/buisciii-tools/issues/285)
- Review and update of services.json for files and folders cleaning [#318](https://github.com/BU-ISCIII/buisciii-tools/pull/318).

#### Changed

Expand Down
12 changes: 6 additions & 6 deletions bu_isciii/templates/services.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
"url": "https://github.com/BU-ISCIII/PikaVirus",
"description": "PikaVirus, a mapping-based tool for metagenome analysis of virus.",
"clean": {
"folders":[],
"folders":["virus_coverage/plots"],
"files":[]
},
"no_copy": ["RAW", "TMP"],
"no_copy": ["RAW", "TMP", "01-PikaVirus-results"],
"last_folder":"REFERENCES",
"delivery_md": "assets/reports/md/pikavirus.md",
"results_md": "assets/reports/results/pikavirus.md"
Expand All @@ -60,7 +60,7 @@
"description": "Plasmid identification tool based on mapping and assisted by assembly",
"clean": {
"folders":["01-preprocessing/trimmed_sequences"],
"files":[]
"files":["mapping/sample_name.sorted.bam", "kmer/database.msh"]
},
"no_copy": ["RAW", "TMP"],
"delivery_md": "assets/reports/md/plasmidid.md",
Expand All @@ -76,7 +76,7 @@
"description": "Multilocus sequence typing (MLST) using Taranis",
"depends_on": "assembly_annotation",
"clean": {
"folders":["03-assembly/trimming/trimmed", "01-preprocessing"],
"folders":[],
"files":[]
},
"no_copy": ["RAW", "TMP"],
Expand All @@ -94,7 +94,7 @@
"description": "Multilocus sequence typing (MLST) using chewBBACA",
"depends_on": "assembly_annotation",
"clean": {
"folders":["03-assembly/trimming/trimmed", "01-preprocessing/{sample_name}"],
"folders":[],
"files":[]
},
"no_copy": ["RAW", "TMP"],
Expand Down Expand Up @@ -195,7 +195,7 @@
"end": "",
"description": "",
"clean": {
"folders":[],
"folders":["01-preprocessing"],
"files":[]
},
"no_copy": ["RAW", "TMP", "00-reads", "fasta_inputs"],
Expand Down
Loading