-
Notifications
You must be signed in to change notification settings - Fork 96
Add SameStr workflow #1257
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
base: main
Are you sure you want to change the base?
Add SameStr workflow #1257
Changes from 11 commits
c08e312
3133db5
e781751
a824fc0
41459b3
59a7b98
57545dd
9bd8ec9
ee8a574
382b644
facb60e
0dc448e
090d931
ce786be
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| version: 1.2 | ||
| workflows: | ||
| - name: main | ||
| subclass: Galaxy | ||
| publish: true | ||
| primaryDescriptorPath: /samestrgal.ga | ||
| testParameterFiles: | ||
| - /samestrgal-tests.yml | ||
| authors: | ||
| - name: 'Xenia Morera Martínez' | ||
| orcid: 0009-0000-2380-8385 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Changelog | ||
|
|
||
| ## [0.1] - 2026-06-18 | ||
|
|
||
| First release. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # SamestrGal for shared-strain detection in metagenomes | ||
|
|
||
| This workflow processes paired-end shotgun metagenomic sequencing reads from multiple samples. It performs the following steps: | ||
|
|
||
| - **Preprocessing**: Quality trimming and host read removal using KneadData | ||
| - **Taxonomic profiling and marker-based alignment**: MetaPhlAn4 or mOTUs for taxonomic classification and marker based alignment | ||
| - **Strain detection**: SameStr tools identify strains across samples and compute pairwise strain comparisons using Maximum Variant Profile Similarity (MVS) scores. | ||
|
|
||
| ## Inputs | ||
|
|
||
| - **Raw Reads**: A collection of paired-end FASTQ files from one or more samples to compare | ||
| - **Run MetaPhlAn**: Boolean parameter (default: true) that enables MetaPhlAn-based strain detection | ||
| - **Run mOTUs**: Boolean parameter (default: false) that enables mOTUs-based strain detection | ||
|
|
||
| ## Outputs | ||
|
|
||
| - **MetaPhlAn results** (if enabled): SNV profile summary statistics, taxon counts, strain events, and co-occurrence tables | ||
| - **mOTUs results** (if enabled): SNV profile summary statistics, taxon counts, strain events, and co-occurrence tables | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,90 @@ | ||||||
| - doc: Test outline for samestrgal | ||||||
| job: | ||||||
| Raw Reads: | ||||||
| class: Collection | ||||||
| collection_type: list:paired | ||||||
| elements: | ||||||
| - class: Collection | ||||||
| type: paired | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
see the recent #1292 |
||||||
| identifier: 28C | ||||||
| elements: | ||||||
| - class: File | ||||||
| identifier: forward | ||||||
| location: https://zenodo.org/records/20745835/files/28C_R1.fastq.gz | ||||||
| filetype: fastqsanger.gz | ||||||
| - class: File | ||||||
| identifier: reverse | ||||||
| location: https://zenodo.org/records/20745835/files/28C_R2.fastq.gz | ||||||
| filetype: fastqsanger.gz | ||||||
| - class: Collection | ||||||
| type: paired | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| identifier: 28B | ||||||
| elements: | ||||||
| - class: File | ||||||
| identifier: forward | ||||||
| location: https://zenodo.org/records/20745835/files/28B_R1.fastq.gz | ||||||
| filetype: fastqsanger.gz | ||||||
| - class: File | ||||||
| identifier: reverse | ||||||
| location: https://zenodo.org/records/20745835/files/28B_R2.fastq.gz | ||||||
| filetype: fastqsanger.gz | ||||||
| - class: Collection | ||||||
| type: paired | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| identifier: 28A | ||||||
| elements: | ||||||
| - class: File | ||||||
| identifier: forward | ||||||
| location: https://zenodo.org/records/20745835/files/28A_R1.fastq.gz | ||||||
| filetype: fastqsanger.gz | ||||||
| - class: File | ||||||
| identifier: reverse | ||||||
| location: https://zenodo.org/records/20745835/files/28A_R2.fastq.gz | ||||||
| filetype: fastqsanger.gz | ||||||
| Run MetaPhlAn: true | ||||||
| Select SameStr database MetaPhlAn: mpa_vJan25_CHOCOPhlAnSGB_202503-11062025 | ||||||
| Select MetaPhlAn Database: mpa_vJan25_CHOCOPhlAnSGB_202503-11062025 | ||||||
| Host reference genome: hg19 | ||||||
| Sequencer type: NexteraPE | ||||||
| outputs: | ||||||
| "Stats file (MetaPhlAn)": | ||||||
| element_tests: | ||||||
| t__SGB15299: | ||||||
| asserts: | ||||||
| has_text: | ||||||
| text: "28B" | ||||||
| t__SGB4285: | ||||||
| asserts: | ||||||
| has_text: | ||||||
| text: "28B" | ||||||
| t__SGB6362: | ||||||
| asserts: | ||||||
| has_text: | ||||||
| text: "28B" | ||||||
| "Taxon counts (MetaPhlAn)": | ||||||
| asserts: | ||||||
| has_text: | ||||||
| text: "28A" | ||||||
| has_text: | ||||||
| text: "28B" | ||||||
| has_text: | ||||||
| text: "28C" | ||||||
| "Strain events (MetaPhlAn)": | ||||||
| asserts: | ||||||
| has_text: | ||||||
| text: "t__SGB15299" | ||||||
| has_text: | ||||||
| text: "t__SGB4285" | ||||||
| has_text: | ||||||
| text: "t__SGB6362" | ||||||
| has_text: | ||||||
| text: "28B" | ||||||
| has_text: | ||||||
| text: "28C" | ||||||
| "Co-occurrences (MetaPhlAn)": | ||||||
| asserts: | ||||||
| has_text: | ||||||
| text: "28A" | ||||||
| has_text: | ||||||
| text: "28B" | ||||||
| has_text: | ||||||
| text: "28C" | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please consult #1275 and fix the asserts accordingly |
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure that's the best name for the workflow. Other WFs do not mention Galaxy in their name because it's rather obvious after all.