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

add limitBAMsortRAM

parent 689a2f2c
No related branches found
No related tags found
1 merge request!14add limitBAMsortRAM to STAR and make sampleConfig write to file
......@@ -271,7 +271,7 @@ task SplitNCigarReads {
SplitNCigarReads \
-I ${input_bam} \
-R ${ref_fasta} \
-O ${output_bam} # might have to be -o depending on GATK version \
-O ${output_bam} \
-L ${sep=' -L ' intervals}
}
......
......@@ -12,6 +12,7 @@ task Star {
String? outStd
String? twopassMode
Array[String]? outSAMattrRGline
Int? limitBAMsortRAM
Int? memory
......@@ -34,6 +35,7 @@ task Star {
${"--runThreadN " + runThreadN} \
${"--outStd " + outStd} \
${"--twopassMode " + twopassMode} \
${"--limitBAMsortRAM " + limitBAMsortRAM} \
${true="--outSAMattrRGline " false="" defined(outSAMattrRGline)} ${sep=" , " outSAMattrRGline}
}
......
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