-
Notifications
You must be signed in to change notification settings - Fork 421
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
Template update #475
Template update #475
Changes from all commits
17f8ffe
c91ce24
6a3d981
b3fdd36
cfc3bbb
b53d74f
4daee2a
c1e9663
0482530
4e5ed7a
23c7c9b
8ad1e7c
1079583
e733a8a
ef05e3f
7f9fdcd
b764c2d
77247a5
35b05c9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,13 +11,14 @@ | |
*/ | ||
|
||
params { | ||
|
||
config_profile_name = 'Test profile' | ||
config_profile_description = 'Minimal test dataset to check pipeline function' | ||
|
||
// Limit resources so that this can run on GitHub Actions | ||
max_cpus = 2 | ||
max_memory = 6.GB | ||
max_time = 6.h | ||
max_memory = '6.GB' | ||
max_time = '6.h' | ||
|
||
// Input data | ||
input = "${baseDir}/tests/csv/3.0/fastq_single.csv" | ||
|
@@ -26,6 +27,13 @@ params { | |
igenomes_ignore = true | ||
genome = 'small_hg38' | ||
genomes_base = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules' | ||
|
||
dbsnp = "${params.genomes_base}/data/genomics/homo_sapiens/genome/vcf/dbsnp_146.hg38.vcf.gz" | ||
fasta = "${params.genomes_base}/data/genomics/homo_sapiens/genome/genome.fasta" | ||
germline_resource = "${params.genomes_base}/data/genomics/homo_sapiens/genome/vcf/gnomAD.r2.1.1.vcf.gz" | ||
intervals = "${params.genomes_base}/data/genomics/homo_sapiens/genome/genome.interval_list" | ||
known_indels = "${params.genomes_base}/data/genomics/homo_sapiens/genome/vcf/mills_and_1000G.indels.vcf.gz" | ||
|
||
snpeff_db = 'WBcel235.99' | ||
vep_species = 'caenorhabditis_elegans' | ||
vep_cache_version = '104' | ||
|
@@ -55,7 +63,9 @@ profiles { | |
params.skip_markduplicates = true | ||
} | ||
split_fastq { | ||
params.split_fastq = 1500 | ||
params.split_fastq = 150000 | ||
params.save_split_fastqs = true | ||
|
||
} | ||
targeted { | ||
params.target_bed = 'https://raw.githubusercontent.com/nf-core/test-datasets/sarek/testdata/target.bed' | ||
|
@@ -97,18 +107,12 @@ profiles { | |
} | ||
} | ||
|
||
//This is apparently useless as it won't overwrite things in the modules.config | ||
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. yes, this is because 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. Yes figured it out with Mahesh's help :D I was pretty confused for about an hour there 😆 |
||
process { | ||
withName:SNPEFF { | ||
maxForks = 1 | ||
} | ||
withName:ENSEMBLVEP { | ||
maxForks = 1 | ||
} | ||
withName:SEQKIT_SPLIT2{ | ||
publishDir = [ | ||
path: { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }, | ||
mode: 'copy', | ||
saveAs: { filename -> filename.equals('versions.yml') ? null : filename } | ||
] | ||
} | ||
} |
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.
"Some o" and "reuiqred" -> "Some of" and "required", I don't know if this is directly implemented from the template, but might be nice to change?
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.
no this is not from the template, but a reminder for us to remove this file also as all CI tests are activated