Skip to content
Snippets Groups Projects
Commit a7104e27 authored by Cats's avatar Cats
Browse files

add intervals option to SplitNCigarReads

parent 385a1dfc
No related branches found
No related tags found
1 merge request!7add intervals option to SplitNCigarReads
......@@ -204,6 +204,8 @@ task SplitNCigarReads {
File ref_dict
String output_bam
String gatk_jar
Array[File]+ intervals
command {
set -e -o pipefail
......@@ -211,7 +213,8 @@ task SplitNCigarReads {
java -Xms4G -jar ${gatk_jar} \
-I ${input_bam} \
-R ${ref_fasta} \
-O ${output_bam} # might have to be -o depending on GATK version
-O ${output_bam} # might have to be -o depending on GATK version \
-L ${sep=' -L ' intervals}
}
output {
......
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