Skip to content
Snippets Groups Projects
Verified Commit 2820a500 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

gatk4: add vcf indexing for BaseRecalibartor

parent 1edca65d
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,10 @@ process recalibrate_snp_table {
script:
xmx_memory = "${task.memory}" - ~/\s*GB/
"""
gatk --java-options "-Xmx${xmx_memory}G" IndexFeatureFile \
-I ${snp_file}
gatk --java-options "-Xmx${xmx_memory}G" IndexFeatureFile \
-I ${indel_file}
gatk --java-options "-Xmx${xmx_memory}G" BaseRecalibrator \
-R ${fasta} \
-I ${bam} \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment