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

Added Trimmomatic, support contig for bining, set concoct default parameters #745

Open
wants to merge 26 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
dd13493
Update modules.config
Pranjal-Bioinfo Jan 16, 2025
2effc94
Update test.config
Pranjal-Bioinfo Jan 16, 2025
aa94221
Update modules.json
Pranjal-Bioinfo Jan 16, 2025
94e9f54
Create Trimmomatic
Pranjal-Bioinfo Jan 16, 2025
088207e
Delete modules/nf-core/Trimmomatic
Pranjal-Bioinfo Jan 16, 2025
f5effeb
Create environment.yml
Pranjal-Bioinfo Jan 16, 2025
c4bf5e4
Create main.nf
Pranjal-Bioinfo Jan 16, 2025
42fef90
Create meta.yml
Pranjal-Bioinfo Jan 16, 2025
42f9906
Create main.nf.test
Pranjal-Bioinfo Jan 16, 2025
4da22b6
Create main.nf.test.snap
Pranjal-Bioinfo Jan 16, 2025
574ff5c
Create nextflow_PE.config
Pranjal-Bioinfo Jan 16, 2025
9762659
Create nextflow_SE.config
Pranjal-Bioinfo Jan 16, 2025
72c03d5
Create tags.yml
Pranjal-Bioinfo Jan 16, 2025
2327da5
Update nextflow_schema.json
Pranjal-Bioinfo Jan 16, 2025
911da74
Update shortread_preprocessing.nf
Pranjal-Bioinfo Jan 16, 2025
0f324b7
Update shortread_preprocessing.nf
Pranjal-Bioinfo Jan 16, 2025
68b1383
Update shortread_preprocessing.nf
Pranjal-Bioinfo Jan 16, 2025
881f554
Update mag.nf
Pranjal-Bioinfo Jan 16, 2025
af5adac
Update modules.config
Pranjal-Bioinfo Jan 17, 2025
b8f944d
Renamed folder from Trimmomatic to trimmomatic
Jan 17, 2025
af8b495
Fixed linting issues
GallVp Jan 20, 2025
84e7186
Removed test config change
GallVp Jan 20, 2025
b1eb9ed
Added parameter spades_use_contigs_not_scaffolds
GallVp Jan 20, 2025
5d8518e
Fixed pre-commit
GallVp Jan 20, 2025
815681c
Restored logos from dev
GallVp Jan 20, 2025
c279d69
update changelog
sateeshperi Jan 20, 2025
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
Binary file modified assets/nf-core-mag_logo_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,25 @@ process {
tag = { "${meta.id}_run${meta.run}" }
}

withName: TRIMMOMATIC {
ext.args = "LEADING:30 TRAILING:30 SLIDINGWINDOW:4:20 MINLEN:35"
publishDir = [
[
path: { "${params.outdir}/QC_shortreads/trimmomatic/${meta.id}" },
mode: params.publish_dir_mode,
pattern: "*_trim.log"
],
[
path: { "${params.outdir}/QC_shortreads/trimmomatic/${meta.id}" },
mode: params.publish_dir_mode,
pattern: "*.fastq.gz",
enabled: params.save_clipped_reads
]
]
ext.prefix = { "${meta.id}_run${meta.run}_trimmomatic" }
tag = { "${meta.id}_run${meta.run}" }
}

withName: ADAPTERREMOVAL_PE {
ext.args = [
"--minlength ${params.reads_minlength}",
Expand Down Expand Up @@ -620,6 +639,9 @@ process {
]
}

withName: 'CONCOCT_CUTUPFASTA' {
ext.args = '-c 10000 -o 0 --merge_last'
sateeshperi marked this conversation as resolved.
Show resolved Hide resolved
Pranjal-Bioinfo marked this conversation as resolved.
Show resolved Hide resolved
}
withName: 'CONCOCT_.*' {
publishDir = [
[
Expand Down
Binary file modified docs/images/nf-core-mag_logo_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,11 @@
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
"installed_by": ["modules"]
},
"trimmomatic": {
"branch": "master",
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
"installed_by": ["modules"]
},
"untar": {
"branch": "master",
"git_sha": "5caf7640a9ef1d18d765d55339be751bb0969dfa",
Expand Down
5 changes: 5 additions & 0 deletions modules/nf-core/trimmomatic/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

71 changes: 71 additions & 0 deletions modules/nf-core/trimmomatic/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

85 changes: 85 additions & 0 deletions modules/nf-core/trimmomatic/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

118 changes: 118 additions & 0 deletions modules/nf-core/trimmomatic/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading