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

QIIME2 workflows #354

Merged
merged 19 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from 18 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
10 changes: 10 additions & 0 deletions workflows/amplicon/qiime2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# QIIME2 workflows

## Available workflows

1. Import of fastqsanger.gz data into QIIME artifact files. Available for
- paired / single end data
- demultiplexed / multiplexed data (the later according to the EMP protocol)
For data that is multiplexed with another protocol the cutadapt tool can be used.
2. Denoising with DADA2
- paired / single end data
47 changes: 47 additions & 0 deletions workflows/amplicon/qiime2/qiime2-I-import/.dockstore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
version: 1.2
workflows:
- name: QIIME2-Ia import multiplexed data single end
subclass: Galaxy
publish: true
primaryDescriptorPath: /QIIME2-Ia-multiplexed-data-single-end.ga
testParameterFiles:
- /QIIME2-Ia-multiplexed-data-single-end-tests.yml
authors:
- name: Debjyoti Ghosh
orcid: 0009-0008-1496-1677
- name: "Helmholtz-Zentrum für Umweltforschung - UFZ"
address: "Permoserstraße 15, 04318 Leipzig"
- name: QIIME2-Ib import multiplexed data paired end
subclass: Galaxy
publish: true
primaryDescriptorPath: /QIIME2-Ib-multiplexed-data-paired-end.ga
testParameterFiles:
- /QIIME2-Ib-multiplexed-data-paired-end-tests.yml
authors:
- name: Debjyoti Ghosh
orcid: 0009-0008-1496-1677
- name: "Helmholtz-Zentrum für Umweltforschung - UFZ"
address: "Permoserstraße 15, 04318 Leipzig"
- name: QIIME2-Ic import demultiplexed data single end
subclass: Galaxy
publish: true
primaryDescriptorPath: /QIIME2-Ic-demultiplexed-data-single-end.ga
testParameterFiles:
- /QIIME2-Ic-demultiplexed-data-single-end-tests.yml
authors:
- name: Debjyoti Ghosh
orcid: 0009-0008-1496-1677
- name: "Helmholtz-Zentrum für Umweltforschung - UFZ"
address: "Permoserstraße 15, 04318 Leipzig"
- name: QIIME2-Id import demultiplexed data paired end
subclass: Galaxy
publish: true
primaryDescriptorPath: /QIIME2-Id-demultiplexed-data-paired-end.ga
testParameterFiles:
- /QIIME2-Id-demultiplexed-data-paired-end-tests.yml
authors:
- name: Debjyoti Ghosh
orcid: 0009-0008-1496-1677
- name: "Helmholtz-Zentrum für Umweltforschung - UFZ"
address: "Permoserstraße 15, 04318 Leipzig"

5 changes: 5 additions & 0 deletions workflows/amplicon/qiime2/qiime2-I-import/.workflowhub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
version: '0.1'
registries:
- url: https://workflowhub.eu
project: iwc
workflow: qiime2/main
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# test data from https://docs.qiime2.org/2024.2/tutorials/moving-pictures-usage/
- doc: Test outline for QIIME2-Ia:-Demultiplexing-(single-end)
job:
Sequences:
class: File
location: https://data.qiime2.org/2024.2/tutorials/moving-pictures/emp-single-end-sequences/sequences.fastq.gz
filetype: fastqsanger.gz
Barcodes:
class: File
location: https://data.qiime2.org/2024.2/tutorials/moving-pictures/emp-single-end-sequences/barcodes.fastq.gz
filetype: fastqsanger.gz
Metadata:
class: File
location: https://data.qiime2.org/2024.2/tutorials/moving-pictures/sample_metadata.tsv
filetype: tabular
Metadata parameter: barcode-sequence
Reverse complement barcodes: false
outputs:
Demultiplexed single-end data:
asserts:
- has_size:
value: 20M
delta: 1M
- has_archive_member:
path: ".*data/L[0-9]S[0-9]{1,3}_[0-9]{1,2}_L001_R1_001\\.fastq\\.gz"
n: 34
- has_archive_member:
path: ".*/data/metadata.yml"
asserts:
- has_text:
text: "phred-offset: 33"
- has_archive_member:
path: "^[^/]*/metadata.yaml"
n: 1
asserts:
- has_text:
text: "uuid:"
- has_text:
text: "type: SampleData[SequencesWithQuality]"
- has_text:
text: "format: SingleLanePerSampleSingleEndFastqDirFmt"
Loading
Loading