Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/docs' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
shihabdider committed Nov 9, 2023
2 parents 004910f + 5480070 commit e4f4d4d
Show file tree
Hide file tree
Showing 14 changed files with 518 additions and 181 deletions.
134 changes: 98 additions & 36 deletions README.md

Large diffs are not rendered by default.

27 changes: 16 additions & 11 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ process {
}
withName: 'SVABA' {
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
memory = { check_max( 32.GB * task.attempt, 'memory' ) }
memory = { check_max( 64.GB * task.attempt, 'memory' ) }
time = { check_max( 72.h * task.attempt, 'time' ) }
}
withName: 'GRIDSS' {
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
memory = { check_max( 32.GB * task.attempt, 'memory' ) }
memory = { check_max( 64.GB * task.attempt, 'memory' ) }
time = { check_max( 72.h * task.attempt, 'time' ) }
}
withName: 'GRIDSS_SOMATIC' {
Expand All @@ -112,25 +112,30 @@ process {
time = { check_max( 24.h * task.attempt, 'time' ) }
}
withName: 'FRAGCOUNTER' {
cpus = { check_max( 10 * task.attempt, 'cpus' ) }
memory = { check_max( 24.GB * task.attempt, 'memory' ) }
cpus = { check_max( 12 * task.attempt, 'cpus' ) }
memory = { check_max( 48.GB * task.attempt, 'memory' ) }
time = { check_max( 48.h * task.attempt, 'time' ) }
}
withName: 'DRYCLEAN' {
cpus = { check_max( 10 * task.attempt, 'cpus' ) }
memory = { check_max( 24.GB * task.attempt, 'memory' ) }
time = { check_max( 24.h * task.attempt, 'time' ) }
cpus = { check_max( 8 * task.attempt, 'cpus' ) }
memory = { check_max( 48.GB * task.attempt, 'memory' ) }
time = { check_max( 36.h * task.attempt, 'time' ) }
}
withName: 'ASCAT_SEG' {
cpus = { check_max( 12 * task.attempt, 'cpus' ) }
memory = { check_max( 24.GB * task.attempt, 'memory' ) }
time = { check_max( 24.h * task.attempt, 'time' ) }
cpus = { check_max( 10 * task.attempt, 'cpus' ) }
memory = { check_max( 30.GB * task.attempt, 'memory' ) }
time = { check_max( 10.h * task.attempt, 'time' ) }
}
withName: 'CBS' {
cpus = { check_max( 8 * task.attempt, 'cpus' ) }
memory = { check_max( 16.GB * task.attempt, 'memory' ) }
memory = { check_max( 32.GB * task.attempt, 'memory' ) }
time = { check_max( 24.h * task.attempt, 'time' ) }
}
withName: 'JABBA' {
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
memory = { check_max( 64.GB * task.attempt, 'memory' ) }
time = { check_max( 12.h * task.attempt, 'time' ) }
}
withLabel:error_ignore {
errorStrategy = 'ignore'
}
Expand Down
2 changes: 1 addition & 1 deletion conf/modules/ascat.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ process {
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/ASCAT/${meta.id}/" },
pattern: "*{rds,png,cnvs.txt,metrics.txt,purityploidy.txt,segments.txt,LogR.txt,BAF.txt}"
pattern: "*{rds,png,cnvs.txt,metrics.txt,purityploidy.txt,segments.txt,LogR.txt,BAF.txt,.command.*}"
]
}
}
4 changes: 2 additions & 2 deletions conf/modules/cbs.config
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ process {
ext.when = { params.tools && params.tools.split(',').contains('cbs') }
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/cbs/${meta.id}/" },
pattern: "*{.rds}"
path: { "${params.outdir}/CBS/${meta.id}/" },
pattern: "*{.rds,.command.*}"
]
}
}
4 changes: 2 additions & 2 deletions conf/modules/dryclean.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ process {
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/Coverages/Dryclean_tumor/${meta.id}/" },
pattern: "*cov.rds"
pattern: "*{cov.rds,.command.*}"
]
}

Expand All @@ -32,7 +32,7 @@ process {
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/Coverages/Dryclean_normal/${meta.id}/" },
pattern: "*cov.rds"
pattern: "*{cov.rds,.command.*}"
]
}
}
4 changes: 2 additions & 2 deletions conf/modules/fragcounter.config
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ process {
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/Coverages/fragCounter_tumor/${meta.id}/" },
pattern: "*{.rds,.bw,cov*}"
pattern: "*{.rds,.bw,cov*,.command.*}"
]
}

Expand All @@ -30,7 +30,7 @@ process {
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/Coverages/fragCounter_normal/${meta.id}/" },
pattern: "*{.rds,.bw,cov*}"
pattern: "*{.rds,.bw,cov*,.command.*}"
]
}
}
2 changes: 1 addition & 1 deletion conf/modules/hetpileups.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ process {
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/Hetpileups/${meta.id}/" },
pattern: "*{.txt*}"
pattern: "*{.txt*,.command.*}"
]
}
}
4 changes: 2 additions & 2 deletions conf/modules/jabba.config
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ process {
ext.when = { params.tools && params.tools.split(',').contains('jabba') }
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/jabba/${meta.id}/" },
pattern: "*{.rds,.vcf,.seg}"
path: { "${params.outdir}/JaBbA/${meta.id}/" },
pattern: "*{.rds*,.vcf,.seg,.png,.txt,.command.*}"
]
}
}
6 changes: 3 additions & 3 deletions conf/modules/structural_variants.config
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ process {
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/SV_calling/SVABA/${meta.id}/" },
pattern: "*{vcf.gz,txt.gz,vcf*,bam}"
pattern: "*{vcf.gz,txt.gz,vcf*,bam,.command.*}"
]
}

Expand All @@ -31,7 +31,7 @@ process {
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/SV_calling/GRIDSS/${meta.id}/" },
pattern: "*{vcf.gz,txt.gz,vcf*,bam}"
pattern: "*{vcf.gz,txt.gz,vcf*,bam,.command.*}"
]
}

Expand All @@ -40,7 +40,7 @@ process {
publishDir = [
mode: params.publish_dir_mode,
path: { "${params.outdir}/SV_calling/GRIDSS_SOMATIC/${meta.id}/" },
pattern: "*{vcf.bgz,vcf.bgz.tbi}"
pattern: "*{vcf.bgz,vcf.bgz.tbi,.command.*}"
]
}
}
6 changes: 3 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# nf-core/heisenbio: Documentation
# mskilab-org/nf-jabba: Documentation

The nf-core/heisenbio documentation is split into the following pages:
The mskilab-org/nf-jabba documentation is split into the following pages:

- [Usage](usage.md)
- An overview of how the pipeline works, how to run it and a description of all of the different command-line flags.
- [Output](output.md)
- An overview of the different results produced by the pipeline and how to interpret them.

You can find a lot more documentation about installing, configuring and running nf-core pipelines on the website: [https://nf-co.re](https://nf-co.re)
You can find a lot more documentation about installing, configuring and running pipelines on the website: [https://nf-co.re](https://nf-co.re)
Loading

0 comments on commit e4f4d4d

Please sign in to comment.