Skip to content

Commit

Permalink
increasing max heap memory allowed for the snpeff processes
Browse files Browse the repository at this point in the history
  • Loading branch information
nrminor committed Nov 7, 2024
1 parent dc2fd8d commit 6c99adf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Utils.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class Utils {
Illumina FASTQs directory : ${params.illumina_fastq_dir ?: ""}
Sample ID lookup : ${params.sample_lookup ?: ""}
Results directory : ${params.results}
Email Address(es) : ${params.email ?: ""}
Email Address(es) : ${params.email ?: ""}
"""
.stripIndent()
Expand Down
4 changes: 2 additions & 2 deletions modules/snpeff.nf
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ process ANNOTATE_VCF {
script:
"""
cp ${snpeff_config} local.config && \
snpEff -Xmx1g \
snpEff -Xmx3g \
-c local.config \
-dataDir genome/ \
-v ref_genome \
Expand All @@ -77,7 +77,7 @@ process EXTRACT_FIELDS {

script:
"""
SnpSift -Xmx1g extractFields \
SnpSift -Xmx3g extractFields \
-s "," \
${vcf} \
CHROM REF POS ALT AF AC DP GEN[0].REF_DP GEN[0].ALT_DP GEN[0].ALT_FREQ MQ ANN[0].GENE ANN[0].EFFECT ANN[0].HGVS_P ANN[0].CDS_POS ANN[0].AA_POS \
Expand Down

0 comments on commit 6c99adf

Please sign in to comment.