Skip to content
Snippets Groups Projects
Commit 58682093 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

Have more records in ram

parent a0933e34
No related branches found
No related tags found
No related merge requests found
...@@ -1038,6 +1038,7 @@ task UmiAwareMarkDuplicatesWithMateCigar { ...@@ -1038,6 +1038,7 @@ task UmiAwareMarkDuplicatesWithMateCigar {
String outputPath String outputPath
String outputPathMetrics = outputPath + ".metrics" String outputPathMetrics = outputPath + ".metrics"
String outputPathUmiMetrics = outputPath + ".umi-metrics" String outputPathUmiMetrics = outputPath + ".umi-metrics"
Int maxRecordsInRam = 3000000 # Default is 500_000 but that will lead to very small files on disk.
String? assumeSortOrder String? assumeSortOrder
String tempdir = "temp" String tempdir = "temp"
Boolean removeDuplicates = true Boolean removeDuplicates = true
...@@ -1063,6 +1064,7 @@ task UmiAwareMarkDuplicatesWithMateCigar { ...@@ -1063,6 +1064,7 @@ task UmiAwareMarkDuplicatesWithMateCigar {
UMI_METRICS_FILE=~{outputPathUmiMetrics} \ UMI_METRICS_FILE=~{outputPathUmiMetrics} \
TMP_DIR=~{tempdir} \ TMP_DIR=~{tempdir} \
REMOVE_DUPLICATES=~{removeDuplicates} \ REMOVE_DUPLICATES=~{removeDuplicates} \
MAX_RECORDS_IN_RAM=~{maxRecordsInRam} \
CREATE_INDEX=true \ CREATE_INDEX=true \
COMPRESSION_LEVEL=~{compressionLevel} \ COMPRESSION_LEVEL=~{compressionLevel} \
USE_JDK_INFLATER=~{true="true" false="false" useJdkInflater} \ USE_JDK_INFLATER=~{true="true" false="false" useJdkInflater} \
......
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