Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Runs fail because not enough memory for MarkDuplicates | How much memory should I give it? #221

Open
Alfredo-Enrique opened this issue Jul 20, 2022 · 9 comments
Assignees

Comments

@Alfredo-Enrique
Copy link

Alfredo-Enrique commented Jul 20, 2022

Describe the bug
I have a cohort of Whole Genome (WGS) fastqs from ICGC in which I can't use Spark MarkDuplicates. So I need to have Spark = false. However when I have it set to false I get the 137 out of memory error during picard markduplicates step. Any recommendations on how to go about figuring out how much memory to give?

I tried 50 GB (Failed out at 1day 11hours) and tried 100GB (Failed out at 2days 10hours). Trying 136GB right now but don't know if it will break anything going that high.

Error:

executor >  local (59)
[1a/36955b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[e7/514a62] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[73/ec14da] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[cd/7cd751] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2, failed: 2...
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[41/77a18a] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2 ✔
Error executing process > 'align_DNA_BWA_MEM2_workflow:run_MarkDuplicate_Picard'

Caused by:
  Process `align_DNA_BWA_MEM2_workflow:run_MarkDuplicate_Picard` terminated with an error exit status (137)

Command executed:

  set -euo pipefail
  
  # add picard option prefix, '--INPUT' to each input bam
  declare -r INPUT=$(echo 'C16MNACXX.1.1-1.sorted.bam C19CUACXX.1.1-1.sorted.bam C19LDACXX.1.1-1.sorted.bam C19N1ACXX.1.1-1.sorted.bam D1F8YACXX.2.1-2.sorted.bam D1F95ACXX.1.1-1.sorted.bam C19LDACXX.2.1-2.sorted.bam C19KNACXX.1.1-1.sorted.bam C1AELACXX.1.1-1.sorted.bam D1F95ACXX.2.1-2.sorted.bam D1F8YACXX.1.1-1.sorted.bam C1AELACXX.2.1-2.sorted.bam' | sed -e 's/ / --INPUT /g' | sed '1s/^/--INPUT /')
  
  java -Xmx102400m -Djava.io.tmpdir=/temp_dir       -jar /usr/local/share/picard-slim-2.26.10-0/picard.jar       MarkDuplicates       --VALIDATION_STRINGENCY LENIENT       $INPUT       --OUTPUT SP195375.bam       --METRICS_FILE SP195375.mark_dup.metrics       --ASSUME_SORT_ORDER coordinate       --PROGRAM_RECORD_ID MarkDuplicates       --CREATE_INDEX true

Command exit status:
  137

Command output:
  (empty)
  • Pipeline release version: 8.00
  • Cluster: Slurm
  • Node type: F72
  • input_csv: /hot/user/alfgonzalez/pipeline/metapipeline-DNA/main/metapipeline-DNA/external/pipeline-align-DNA/pipeline/inputs/align-DNA.inputs.csv
  • reference_fasta_bwa: /hot/ref/tool-specific-input/BWA-MEM2-2.2.1/GRCh38-BI-20160721/index/genome.fa
  • Config (has been modified for subsequent tests but it's essentially this): /hot/user/alfgonzalez/pipeline/metapipeline-DNA/main/metapipeline-DNA/external/pipeline-align-DNA/pipeline/config/template.config
  • Submission method: Python submission script
  • Any logs produced by the pipeline:
  • Nextflow log: /hot/user/alfgonzalez/pipeline/metapipeline-DNA/main/metapipeline-DNA/external/pipeline-align-DNA/pipeline/config/template.config
  • Location of Process logs: : /hot/user/alfgonzalez/pipeline/metapipeline-DNA/main/metapipeline-DNA/external/pipeline-align-DNA/pipeline/test/output2/align-DNA-8.0.0/SP195375/log-align-DNA-8.0.0-20220717T160150Z/
  • work_dir: /scratch
  • output_dir: /hot/user/alfgonzalez/pipeline/metapipeline-DNA/main/metapipeline-DNA/external/pipeline-align-DNA/pipeline/test/output2
    base_output_dir: /hot/user/alfgonzalez/pipeline/metapipeline-DNA/main/metapipeline-DNA/external/pipeline-align-
@tyamaguchi-ucla
Copy link
Contributor

in which I can't use Spark MarkDuplicates

Can you remind us why you can't use Spark for the samples?

@Alfredo-Enrique
Copy link
Author

in which I can't use Spark MarkDuplicates

Can you remind us why you can't use Spark for the samples?

For this cohort WGSAIGLO (previously ICGC-BOCA-UK) MarkDuplicateSparks outputs an empty bam file with no reads. It seems to be a GATK specific thing. Current working hypothesis is that it has something to do with the reads or a prefix/suffix in the read name. I haven't had a chance to do an issue write up but I'll submit it soon. But essentially samples go through the whole pipeline without any flags or errors, and just outputs an empty bam (48K size file) with decoys but no actual read as confirmed by samtools. Upstream files seem okay based on viewing with samtools and picard ValidateSam.

Tried manually running MarkDuplicatesSpark using different versions of GATK (from official dockers) on the intermediates going into this step and still get empty bams.

Hence why trying Spark = off but getting errors in memory allocation and trying to figure that out so I can run this samples.

@tyamaguchi-ucla
Copy link
Contributor

tyamaguchi-ucla commented Jul 21, 2022

I haven't had a chance to do an issue write up but I'll submit it soon.

@Alfredo-Enrique yes, please do so asap and can you point us to the logs, intermediate files, etc? I wouldn't recommend picard because it's single-threaded and very slow for large samples like WGS. Did you get a chance to test Spark with a subset of the failed/empty sample (like just one lane of R1 and R2 or you can even subset of them to do a quick test) as we discussed on Monday?

@Alfredo-Enrique
Copy link
Author

Alfredo-Enrique commented Jul 23, 2022

Did you get a chance to test Spark with a subset of the failed/empty sample (like just one lane of R1 and R2 or you can even subset of them to do a quick test) as we discussed on Monday?

Issue #223 has been created for MarkDuplicatesSpark specific issue. Tested with one pair (R1 and R2) and same issue. It's not related to having multiple fastqs or storage capacity. I'll add this comment to the other issue to include the info in that thread.

@Alfredo-Enrique
Copy link
Author

Update + Question:

Update : So not being able to run with Spark, I set spark=false and ran with all the fastq pairs for this specific sample and removed the memory allocation info in the methods.config. It failed with 137 out of memory error again. Failed after 2 days, 16hr, 24min.

Question: in theory if I remove the memory specifications for the F72.config, it should give the maximum amount of memory during the mark duplicates step, right? Meaning I don't need to write memory=130.GB in the run_MarkDuplicate_Picard process? See F72.config file below.

Additional Info for last test following issue template guidelines:

  • Pipeline release version : main branch commit 4c77da2 (a few commits after 8.0.0)
  • Cluster you are using (SGE/Slurm-Dev/Slurm-Test) : Slurm
  • Node type (F2s/F72s/M64s) : F72
  • Submission method (interactive/submission script) : Python Submission Script
  • Actual submission script (python submission script, "nextflow run ...", etc.):
    python /hot/user/alfgonzalez/utility/tool-submit-nf/submit_nextflow_pipeline.py --nextflow_script /hot/user/alfgonzalez/pipeline/pipeline-align-DNA/pipeline-align-DNA-220712-bd30df/main.nf --nextflow_config /hot/user/alfgonzalez/pipeline/pipeline-align-DNA/pipeline-align-DNA-220712-bd30df/config/template_spark_off_SortSAM_allmem_markduplicates_allmem.config --partition_type F72 --pipeline_run_name "TEST-align-DNA_4c77da2_02_Spark_off_SortSAM_allmem_MarkDup_allmem_all_fastqs" --email [email protected]
  • Sbatch or qsub command and logs if applicable : N/A
  • Config files : /hot/user/alfgonzalez/pipeline/pipeline-align-DNA/pipeline-align-DNA-220712-bd30df/config/template_spark_off_SortSAM_allmem_markduplicates_allmem.config
  • Path to the working directory : /scratch
  • Output dir: /hot/user/alfgonzalez/pipeline/pipeline-align-DNA/pipeline-align-DNA-220712-bd30df/test/output/align-DNA-8.0.0/ICGC_BOCA_FR_SP195375_Spark_off_SortSAM_allmem_Markduplicates_allmem
  • Intermediates: No intermediates. Set to false to reduce space
  • Any logs produced by the pipeline :
    • Main Nextflow log: /hot/user/alfgonzalez/pipeline/pipeline-align-DNA/pipeline-align-DNA-220712-bd30df/TEST-align-DNA_4c77da2_02_Spark_off_SortSAM_allmem_MarkDup_allmem_all_fastqs.log
    • Process logs: /hot/user/alfgonzalez/pipeline/pipeline-align-DNA/pipeline-align-DNA-220712-bd30df/test/output/align-DNA-8.0.0/ICGC_BOCA_FR_SP195375_Spark_off_SortSAM_allmem_Markduplicates_allmem/log-align-DNA-8.0.0-20220721T063218Z/

To Reproduce
Steps to reproduce the behavior:

  1. Clone main branch commit 4c77da2 to a folder where you will be debugging
  2. Modify the template.config with the specified iput.csv and paramaters of the template_spark_off_SortSAM_allmem_markduplicates_allmem.config from my run. Alternatively you can just copy the the aforementioned .config specified and modify the output to somewhere where you want to debug.
  3. Use python submission script to launch with desired config from above.
  4. Wait 2-3 days to finish with a 137 out of memory error during Picard MarkDuplicates

Expected behavior
137 out of memory error during Picard mark Duplicates

Additional context
F72 Config modified to remove memory allocation:

process {
    withName: run_validate_PipeVal {
        cpus = 1
        memory = 1.GB
        }
    withName: generate_sha512sum {
        cpus = 1
        memory = 1.GB
        }
    withName: align_DNA_BWA_MEM2 {
        cpus = 56
        }
    withName: align_DNA_HISAT2 {
        cpus = 56
        }
    withName: run_sort_SAMtools {
        cpus = 12
        }
    withName: run_MarkDuplicate_Picard {
        cpus = 1
        }
    withName: run_MarkDuplicatesSpark_GATK {
        cpus = 16
        memory = 35.GB
        }
    }

Screenshots
Code of error so you don't have to go all the way to the cluster. From the main nextlfow log. Notice that there's plenty of scratch space:

executor >  local (60)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b7/6df713] process > align_DNA_BWA_MEM2_workflow... [ 16%] 2 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch


executor >  local (61)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[59/345339] process > align_DNA_BWA_MEM2_workflow... [ 25%] 3 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch


executor >  local (62)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[03/ffd239] process > align_DNA_BWA_MEM2_workflow... [ 33%] 4 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch


executor >  local (63)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[43/dc6ed4] process > align_DNA_BWA_MEM2_workflow... [ 41%] 5 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch


executor >  local (63)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[43/dc6ed4] process > align_DNA_BWA_MEM2_workflow... [ 41%] 5 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch


executor >  local (64)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[c2/b7b42b] process > align_DNA_BWA_MEM2_workflow... [ 50%] 6 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch


executor >  local (64)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[c2/b7b42b] process > align_DNA_BWA_MEM2_workflow... [ 50%] 6 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch


executor >  local (65)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[9b/bc1609] process > align_DNA_BWA_MEM2_workflow... [ 58%] 7 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch


executor >  local (66)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[4b/9217c4] process > align_DNA_BWA_MEM2_workflow... [ 66%] 8 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch


executor >  local (66)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[4b/9217c4] process > align_DNA_BWA_MEM2_workflow... [ 66%] 8 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch


executor >  local (67)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[fd/db4033] process > align_DNA_BWA_MEM2_workflow... [ 75%] 9 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch


executor >  local (67)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[fd/db4033] process > align_DNA_BWA_MEM2_workflow... [ 75%] 9 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch


executor >  local (68)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[2b/a99d16] process > align_DNA_BWA_MEM2_workflow... [ 83%] 10 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   91G  1.9T   5% /scratch


executor >  local (68)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[2b/a99d16] process > align_DNA_BWA_MEM2_workflow... [ 83%] 10 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   91G  1.9T   5% /scratch


executor >  local (69)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[46/b23afb] process > align_DNA_BWA_MEM2_workflow... [ 91%] 11 of 12
[-        ] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   91G  1.9T   5% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   91G  1.9T   5% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   84G  1.9T   5% /scratch


executor >  local (70)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b9/00fa1c] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[0f/ff152d] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   91G  1.9T   5% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   91G  1.9T   5% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   84G  1.9T   5% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   84G  1.9T   5% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   77G  1.9T   4% /scratch


executor >  local (70)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b9/00fa1c] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[0f/ff152d] process > align_DNA_BWA_MEM2_workflow... [  0%] 0 of 1
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  164G  1.8T   9% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  158G  1.8T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  151G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  144G  1.9T   8% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  136G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  129G  1.9T   7% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  119G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  113G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T  105G  1.9T   6% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   98G  1.9T   5% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   91G  1.9T   5% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   91G  1.9T   5% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   84G  1.9T   5% /scratch

Disk usage before deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   84G  1.9T   5% /scratch
Disk usage after deletion: 
Filesystem                             Size  Used Avail Use% Mounted on
/dev/mapper/vg_cyclecloud_scratch-lv0  2.0T   77G  1.9T   4% /scratch


executor >  local (71)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b9/00fa1c] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[d7/03e6ff] process > align_DNA_BWA_MEM2_workflow... [ 50%] 1 of 2, failed: 1...
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2


[0f/ff152d] NOTE: Process `align_DNA_BWA_MEM2_workflow:run_MarkDuplicate_Picard` terminated with an error exit status (137) -- Execution is retried (1)

executor >  local (71)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b9/00fa1c] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[d7/03e6ff] process > align_DNA_BWA_MEM2_workflow... [ 50%] 1 of 2, failed: 1...
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2
[0f/ff152d] NOTE: Process `align_DNA_BWA_MEM2_workflow:run_MarkDuplicate_Picard` terminated with an error exit status (137) -- Execution is retried (1)

executor >  local (71)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b9/00fa1c] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[d7/03e6ff] process > align_DNA_BWA_MEM2_workflow... [ 50%] 1 of 2, failed: 1...
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2

Error executing process > 'align_DNA_BWA_MEM2_workflow:run_MarkDuplicate_Picard'

Caused by:
  Process `align_DNA_BWA_MEM2_workflow:run_MarkDuplicate_Picard` terminated with an error exit status (137)

Command executed:

  set -euo pipefail
  
  # add picard option prefix, '--INPUT' to each input bam
  declare -r INPUT=$(echo 'C19LDACXX.2.1-2.sorted.bam C19KNACXX.1.1-1.sorted.bam D1F95ACXX.1.1-1.sorted.bam C19CUACXX.1.1-1.sorted.bam C19N1ACXX.1.1-1.sorted.bam C16MNACXX.1.1-1.sorted.bam C19LDACXX.1.1-1.sorted.bam D1F8YACXX.2.1-2.sorted.bam D1F95ACXX.2.1-2.sorted.bam C1AELACXX.2.1-2.sorted.bam D1F8YACXX.1.1-1.sorted.bam C1AELACXX.1.1-1.sorted.bam' | sed -e 's/ / --INPUT /g' | sed '1s/^/--INPUT /')
  
  java -Xmx140040m -Djava.io.tmpdir=/temp_dir       -jar /usr/local/share/picard-slim-2.26.10-0/picard.jar       MarkDuplicates       --VALIDATION_STRINGENCY LENIENT       $INPUT       --OUTPUT ICGC_BOCA_FR_SP195375_Spark_off_SortSAM_allmem_Markduplicates_allmem.bam       --METRICS_FILE ICGC_BOCA_FR_SP195375_Spark_off_SortSAM_allmem_Markduplicates_allmem.mark_dup.metrics       --ASSUME_SORT_ORDER coordinate       --PROGRAM_RECORD_ID MarkDuplicates       --CREATE_INDEX true

Command exit status:
  137

Command output:
  (empty)

Command error:
  INFO	2022-07-23 12:35:58	MarkDuplicates	Tracking 1473254 as yet unmatched pairs. 94483 records in RAM.
  INFO	2022-07-23 12:36:01	MarkDuplicates	Read   451,000,000 records.  Elapsed time: 19:35:43s.  Time for last 1,000,000:    3s.  Last read position: chr10:40,295,553
  INFO	2022-07-23 12:36:01	MarkDuplicates	Tracking 1486855 as yet unmatched pairs. 91461 records in RAM.
  INFO	2022-07-23 12:36:05	MarkDuplicates	Read   452,000,000 records.  Elapsed time: 19:35:47s.  Time for last 1,000,000:    3s.  Last read position: chr10:42,494,612
  INFO	2022-07-23 12:36:05	MarkDuplicates	Tracking 1503267 as yet unmatched pairs. 62120 records in RAM.
  INFO	2022-07-23 12:36:09	MarkDuplicates	Read   453,000,000 records.  Elapsed time: 19:35:51s.  Time for last 1,000,000:    3s.  Last read position: chr10:46,349,936
  INFO	2022-07-23 12:36:09	MarkDuplicates	Tracking 1503130 as yet unmatched pairs. 59856 records in RAM.
  INFO	2022-07-23 12:36:13	MarkDuplicates	Read   454,000,000 records.  Elapsed time: 19:35:54s.  Time for last 1,000,000:    3s.  Last read position: chr10:50,017,086
  INFO	2022-07-23 12:36:13	MarkDuplicates	Tracking 1502894 as yet unmatched pairs. 57966 records in RAM.
  INFO	2022-07-23 12:36:16	MarkDuplicates	Read   455,000,000 records.  Elapsed time: 19:35:58s.  Time for last 1,000,000:    3s.  Last read position: chr10:53,753,118
  INFO	2022-07-23 12:36:16	MarkDuplicates	Tracking 1502398 as yet unmatched pairs. 55888 records in RAM.
  INFO	2022-07-23 12:36:20	MarkDuplicates	Read   456,000,000 records.  Elapsed time: 19:36:02s.  Time for last 1,000,000:    4s.  Last read position: chr10:57,489,295
  INFO	2022-07-23 12:36:20	MarkDuplicates	Tracking 1501888 as yet unmatched pairs. 53863 records in RAM.
  INFO	2022-07-23 12:36:25	MarkDuplicates	Read   457,000,000 records.  Elapsed time: 19:36:06s.  Time for last 1,000,000:    4s.  Last read position: chr10:61,239,463
  INFO	2022-07-23 12:36:25	MarkDuplicates	Tracking 1501267 as yet unmatched pairs. 51674 records in RAM.
  INFO	2022-07-23 12:36:29	MarkDuplicates	Read   458,000,000 records.  Elapsed time: 19:36:11s.  Time for last 1,000,000:    4s.  Last read position: chr10:64,968,381
  INFO	2022-07-23 12:36:29	MarkDuplicates	Tracking 1500755 as yet unmatched pairs. 49333 records in RAM.
  INFO	2022-07-23 12:44:53	MarkDuplicates	Read   459,000,000 records.  Elapsed time: 19:44:35s.  Time for last 1,000,000:  504s.  Last read position: chr10:68,684,277
  INFO	2022-07-23 12:44:53	MarkDuplicates	Tracking 1500170 as yet unmatched pairs. 46671 records in RAM.
  INFO	2022-07-23 12:44:57	MarkDuplicates	Read   460,000,000 records.  Elapsed time: 19:44:39s.  Time for last 1,000,000:    3s.  Last read position: chr10:72,655,364
  INFO	2022-07-23 12:44:57	MarkDuplicates	Tracking 1499635 as yet unmatched pairs. 43701 records in RAM.
  INFO	2022-07-23 12:45:00	MarkDuplicates	Read   461,000,000 records.  Elapsed time: 19:44:42s.  Time for last 1,000,000:    3s.  Last read position: chr10:76,380,181
  INFO	2022-07-23 12:45:00	MarkDuplicates	Tracking 1498984 as yet unmatched pairs. 40477 records in RAM.
  INFO	2022-07-23 12:45:04	MarkDuplicates	Read   462,000,000 records.  Elapsed time: 19:44:46s.  Time for last 1,000,000:    3s.  Last read position: chr10:80,490,206
  INFO	2022-07-23 12:45:04	MarkDuplicates	Tracking 1498597 as yet unmatched pairs. 38396 records in RAM.
  INFO	2022-07-23 12:45:08	MarkDuplicates	Read   463,000,000 records.  Elapsed time: 19:44:49s.  Time for last 1,000,000:    3s.  Last read position: chr10:84,276,726
  INFO	2022-07-23 12:45:08	MarkDuplicates	Tracking 1498126 as yet unmatched pairs. 36227 records in RAM.
  INFO	2022-07-23 12:45:11	MarkDuplicates	Read   464,000,000 records.  Elapsed time: 19:44:53s.  Time for last 1,000,000:    3s.  Last read position: chr10:88,100,883
  INFO	2022-07-23 12:45:11	MarkDuplicates	Tracking 1497449 as yet unmatched pairs. 33422 records in RAM.
  INFO	2022-07-23 12:45:15	MarkDuplicates	Read   465,000,000 records.  Elapsed time: 19:44:57s.  Time for last 1,000,000:    3s.  Last read position: chr10:91,767,483
  INFO	2022-07-23 12:45:15	MarkDuplicates	Tracking 1496929 as yet unmatched pairs. 31457 records in RAM.
  INFO	2022-07-23 12:45:18	MarkDuplicates	Read   466,000,000 records.  Elapsed time: 19:45:00s.  Time for last 1,000,000:    3s.  Last read position: chr10:95,501,837
  INFO	2022-07-23 12:45:18	MarkDuplicates	Tracking 1496298 as yet unmatched pairs. 28245 records in RAM.
  INFO	2022-07-23 12:45:22	MarkDuplicates	Read   467,000,000 records.  Elapsed time: 19:45:04s.  Time for last 1,000,000:    3s.  Last read position: chr10:99,276,120
  INFO	2022-07-23 12:45:22	MarkDuplicates	Tracking 1495746 as yet unmatched pairs. 25349 records in RAM.
  INFO	2022-07-23 12:45:26	MarkDuplicates	Read   468,000,000 records.  Elapsed time: 19:45:08s.  Time for last 1,000,000:    4s.  Last read position: chr10:103,157,356
  INFO	2022-07-23 12:45:26	MarkDuplicates	Tracking 1494988 as yet unmatched pairs. 21678 records in RAM.
  INFO	2022-07-23 12:45:31	MarkDuplicates	Read   469,000,000 records.  Elapsed time: 19:45:12s.  Time for last 1,000,000:    4s.  Last read position: chr10:107,013,036
  INFO	2022-07-23 12:45:31	MarkDuplicates	Tracking 1494336 as yet unmatched pairs. 19161 records in RAM.
  INFO	2022-07-23 12:53:02	MarkDuplicates	Read   470,000,000 records.  Elapsed time: 19:52:44s.  Time for last 1,000,000:  451s.  Last read position: chr10:110,760,497
  INFO	2022-07-23 12:53:02	MarkDuplicates	Tracking 1493619 as yet unmatched pairs. 15893 records in RAM.
  INFO	2022-07-23 12:53:06	MarkDuplicates	Read   471,000,000 records.  Elapsed time: 19:52:48s.  Time for last 1,000,000:    3s.  Last read position: chr10:114,573,974
  INFO	2022-07-23 12:53:06	MarkDuplicates	Tracking 1492980 as yet unmatched pairs. 12923 records in RAM.
  INFO	2022-07-23 12:53:10	MarkDuplicates	Read   472,000,000 records.  Elapsed time: 19:52:51s.  Time for last 1,000,000:    3s.  Last read position: chr10:118,348,474
  INFO	2022-07-23 12:53:10	MarkDuplicates	Tracking 1492329 as yet unmatched pairs. 10419 records in RAM.
  INFO	2022-07-23 12:53:13	MarkDuplicates	Read   473,000,000 records.  Elapsed time: 19:52:55s.  Time for last 1,000,000:    3s.  Last read position: chr10:122,256,778
  INFO	2022-07-23 12:53:13	MarkDuplicates	Tracking 1491725 as yet unmatched pairs. 7565 records in RAM.
  INFO	2022-07-23 12:53:17	MarkDuplicates	Read   474,000,000 records.  Elapsed time: 19:52:58s.  Time for last 1,000,000:    3s.  Last read position: chr10:126,192,196
  INFO	2022-07-23 12:53:17	MarkDuplicates	Tracking 1491414 as yet unmatched pairs. 5351 records in RAM.
  .command.sh: line 7:    33 Killed                  java -Xmx140040m -Djava.io.tmpdir=/temp_dir -jar /usr/local/share/picard-slim-2.26.10-0/picard.jar MarkDuplicates --VALIDATION_STRINGENCY LENIENT $INPUT --OUTPUT ICGC_BOCA_FR_SP195375_Spark_off_SortSAM_allmem_Markduplicates_allmem.bam --METRICS_FILE ICGC_BOCA_FR_SP195375_Spark_off_SortSAM_allmem_Markduplicates_allmem.mark_dup.metrics --ASSUME_SORT_ORDER coordinate --PROGRAM_RECORD_ID MarkDuplicates --CREATE_INDEX true

Work dir:
  /scratch/d7/03e6ff8e5833751590811cd213301d

Tip: you can replicate the issue by changing to the process work dir and entering the command `bash .command.run`



executor >  local (71)
[27/a2e39b] process > align_DNA_BWA_MEM2_workflow... [100%] 31 of 31 ✔
[f4/5b112a] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b4/58867f] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[b9/00fa1c] process > align_DNA_BWA_MEM2_workflow... [100%] 12 of 12 ✔
[d7/03e6ff] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2, failed: 2...
[-        ] process > align_DNA_BWA_MEM2_workflow... -
[71/df95d5] process > align_DNA_BWA_MEM2_workflow... [100%] 2 of 2 ✔
Error executing process > 'align_DNA_BWA_MEM2_workflow:run_MarkDuplicate_Picard'

Caused by:
  Process `align_DNA_BWA_MEM2_workflow:run_MarkDuplicate_Picard` terminated with an error exit status (137)

Command executed:

  set -euo pipefail
  
  # add picard option prefix, '--INPUT' to each input bam
  declare -r INPUT=$(echo 'C19LDACXX.2.1-2.sorted.bam C19KNACXX.1.1-1.sorted.bam D1F95ACXX.1.1-1.sorted.bam C19CUACXX.1.1-1.sorted.bam C19N1ACXX.1.1-1.sorted.bam C16MNACXX.1.1-1.sorted.bam C19LDACXX.1.1-1.sorted.bam D1F8YACXX.2.1-2.sorted.bam D1F95ACXX.2.1-2.sorted.bam C1AELACXX.2.1-2.sorted.bam D1F8YACXX.1.1-1.sorted.bam C1AELACXX.1.1-1.sorted.bam' | sed -e 's/ / --INPUT /g' | sed '1s/^/--INPUT /')
  
  java -Xmx140040m -Djava.io.tmpdir=/temp_dir       -jar /usr/local/share/picard-slim-2.26.10-0/picard.jar       MarkDuplicates       --VALIDATION_STRINGENCY LENIENT       $INPUT       --OUTPUT ICGC_BOCA_FR_SP195375_Spark_off_SortSAM_allmem_Markduplicates_allmem.bam       --METRICS_FILE ICGC_BOCA_FR_SP195375_Spark_off_SortSAM_allmem_Markduplicates_allmem.mark_dup.metrics       --ASSUME_SORT_ORDER coordinate       --PROGRAM_RECORD_ID MarkDuplicates       --CREATE_INDEX true

Command exit status:
  137

Command output:
  (empty)

Command error:
  INFO	2022-07-23 12:35:58	MarkDuplicates	Tracking 1473254 as yet unmatched pairs. 94483 records in RAM.
  INFO	2022-07-23 12:36:01	MarkDuplicates	Read   451,000,000 records.  Elapsed time: 19:35:43s.  Time for last 1,000,000:    3s.  Last read position: chr10:40,295,553
  INFO	2022-07-23 12:36:01	MarkDuplicates	Tracking 1486855 as yet unmatched pairs. 91461 records in RAM.
  INFO	2022-07-23 12:36:05	MarkDuplicates	Read   452,000,000 records.  Elapsed time: 19:35:47s.  Time for last 1,000,000:    3s.  Last read position: chr10:42,494,612
  INFO	2022-07-23 12:36:05	MarkDuplicates	Tracking 1503267 as yet unmatched pairs. 62120 records in RAM.
  INFO	2022-07-23 12:36:09	MarkDuplicates	Read   453,000,000 records.  Elapsed time: 19:35:51s.  Time for last 1,000,000:    3s.  Last read position: chr10:46,349,936
  INFO	2022-07-23 12:36:09	MarkDuplicates	Tracking 1503130 as yet unmatched pairs. 59856 records in RAM.
  INFO	2022-07-23 12:36:13	MarkDuplicates	Read   454,000,000 records.  Elapsed time: 19:35:54s.  Time for last 1,000,000:    3s.  Last read position: chr10:50,017,086
  INFO	2022-07-23 12:36:13	MarkDuplicates	Tracking 1502894 as yet unmatched pairs. 57966 records in RAM.
  INFO	2022-07-23 12:36:16	MarkDuplicates	Read   455,000,000 records.  Elapsed time: 19:35:58s.  Time for last 1,000,000:    3s.  Last read position: chr10:53,753,118
  INFO	2022-07-23 12:36:16	MarkDuplicates	Tracking 1502398 as yet unmatched pairs. 55888 records in RAM.
  INFO	2022-07-23 12:36:20	MarkDuplicates	Read   456,000,000 records.  Elapsed time: 19:36:02s.  Time for last 1,000,000:    4s.  Last read position: chr10:57,489,295
  INFO	2022-07-23 12:36:20	MarkDuplicates	Tracking 1501888 as yet unmatched pairs. 53863 records in RAM.
  INFO	2022-07-23 12:36:25	MarkDuplicates	Read   457,000,000 records.  Elapsed time: 19:36:06s.  Time for last 1,000,000:    4s.  Last read position: chr10:61,239,463
  INFO	2022-07-23 12:36:25	MarkDuplicates	Tracking 1501267 as yet unmatched pairs. 51674 records in RAM.
  INFO	2022-07-23 12:36:29	MarkDuplicates	Read   458,000,000 records.  Elapsed time: 19:36:11s.  Time for last 1,000,000:    4s.  Last read position: chr10:64,968,381
  INFO	2022-07-23 12:36:29	MarkDuplicates	Tracking 1500755 as yet unmatched pairs. 49333 records in RAM.
  INFO	2022-07-23 12:44:53	MarkDuplicates	Read   459,000,000 records.  Elapsed time: 19:44:35s.  Time for last 1,000,000:  504s.  Last read position: chr10:68,684,277
  INFO	2022-07-23 12:44:53	MarkDuplicates	Tracking 1500170 as yet unmatched pairs. 46671 records in RAM.
  INFO	2022-07-23 12:44:57	MarkDuplicates	Read   460,000,000 records.  Elapsed time: 19:44:39s.  Time for last 1,000,000:    3s.  Last read position: chr10:72,655,364
  INFO	2022-07-23 12:44:57	MarkDuplicates	Tracking 1499635 as yet unmatched pairs. 43701 records in RAM.
  INFO	2022-07-23 12:45:00	MarkDuplicates	Read   461,000,000 records.  Elapsed time: 19:44:42s.  Time for last 1,000,000:    3s.  Last read position: chr10:76,380,181
  INFO	2022-07-23 12:45:00	MarkDuplicates	Tracking 1498984 as yet unmatched pairs. 40477 records in RAM.
  INFO	2022-07-23 12:45:04	MarkDuplicates	Read   462,000,000 records.  Elapsed time: 19:44:46s.  Time for last 1,000,000:    3s.  Last read position: chr10:80,490,206
  INFO	2022-07-23 12:45:04	MarkDuplicates	Tracking 1498597 as yet unmatched pairs. 38396 records in RAM.
  INFO	2022-07-23 12:45:08	MarkDuplicates	Read   463,000,000 records.  Elapsed time: 19:44:49s.  Time for last 1,000,000:    3s.  Last read position: chr10:84,276,726
  INFO	2022-07-23 12:45:08	MarkDuplicates	Tracking 1498126 as yet unmatched pairs. 36227 records in RAM.
  INFO	2022-07-23 12:45:11	MarkDuplicates	Read   464,000,000 records.  Elapsed time: 19:44:53s.  Time for last 1,000,000:    3s.  Last read position: chr10:88,100,883
  INFO	2022-07-23 12:45:11	MarkDuplicates	Tracking 1497449 as yet unmatched pairs. 33422 records in RAM.
  INFO	2022-07-23 12:45:15	MarkDuplicates	Read   465,000,000 records.  Elapsed time: 19:44:57s.  Time for last 1,000,000:    3s.  Last read position: chr10:91,767,483
  INFO	2022-07-23 12:45:15	MarkDuplicates	Tracking 1496929 as yet unmatched pairs. 31457 records in RAM.
  INFO	2022-07-23 12:45:18	MarkDuplicates	Read   466,000,000 records.  Elapsed time: 19:45:00s.  Time for last 1,000,000:    3s.  Last read position: chr10:95,501,837
  INFO	2022-07-23 12:45:18	MarkDuplicates	Tracking 1496298 as yet unmatched pairs. 28245 records in RAM.
  INFO	2022-07-23 12:45:22	MarkDuplicates	Read   467,000,000 records.  Elapsed time: 19:45:04s.  Time for last 1,000,000:    3s.  Last read position: chr10:99,276,120
  INFO	2022-07-23 12:45:22	MarkDuplicates	Tracking 1495746 as yet unmatched pairs. 25349 records in RAM.
  INFO	2022-07-23 12:45:26	MarkDuplicates	Read   468,000,000 records.  Elapsed time: 19:45:08s.  Time for last 1,000,000:    4s.  Last read position: chr10:103,157,356
  INFO	2022-07-23 12:45:26	MarkDuplicates	Tracking 1494988 as yet unmatched pairs. 21678 records in RAM.
  INFO	2022-07-23 12:45:31	MarkDuplicates	Read   469,000,000 records.  Elapsed time: 19:45:12s.  Time for last 1,000,000:    4s.  Last read position: chr10:107,013,036
  INFO	2022-07-23 12:45:31	MarkDuplicates	Tracking 1494336 as yet unmatched pairs. 19161 records in RAM.
  INFO	2022-07-23 12:53:02	MarkDuplicates	Read   470,000,000 records.  Elapsed time: 19:52:44s.  Time for last 1,000,000:  451s.  Last read position: chr10:110,760,497
  INFO	2022-07-23 12:53:02	MarkDuplicates	Tracking 1493619 as yet unmatched pairs. 15893 records in RAM.
  INFO	2022-07-23 12:53:06	MarkDuplicates	Read   471,000,000 records.  Elapsed time: 19:52:48s.  Time for last 1,000,000:    3s.  Last read position: chr10:114,573,974
  INFO	2022-07-23 12:53:06	MarkDuplicates	Tracking 1492980 as yet unmatched pairs. 12923 records in RAM.
  INFO	2022-07-23 12:53:10	MarkDuplicates	Read   472,000,000 records.  Elapsed time: 19:52:51s.  Time for last 1,000,000:    3s.  Last read position: chr10:118,348,474
  INFO	2022-07-23 12:53:10	MarkDuplicates	Tracking 1492329 as yet unmatched pairs. 10419 records in RAM.
  INFO	2022-07-23 12:53:13	MarkDuplicates	Read   473,000,000 records.  Elapsed time: 19:52:55s.  Time for last 1,000,000:    3s.  Last read position: chr10:122,256,778
  INFO	2022-07-23 12:53:13	MarkDuplicates	Tracking 1491725 as yet unmatched pairs. 7565 records in RAM.
  INFO	2022-07-23 12:53:17	MarkDuplicates	Read   474,000,000 records.  Elapsed time: 19:52:58s.  Time for last 1,000,000:    3s.  Last read position: chr10:126,192,196
  INFO	2022-07-23 12:53:17	MarkDuplicates	Tracking 1491414 as yet unmatched pairs. 5351 records in RAM.
  .command.sh: line 7:    33 Killed                  java -Xmx140040m -Djava.io.tmpdir=/temp_dir -jar /usr/local/share/picard-slim-2.26.10-0/picard.jar MarkDuplicates --VALIDATION_STRINGENCY LENIENT $INPUT --OUTPUT ICGC_BOCA_FR_SP195375_Spark_off_SortSAM_allmem_Markduplicates_allmem.bam --METRICS_FILE ICGC_BOCA_FR_SP195375_Spark_off_SortSAM_allmem_Markduplicates_allmem.mark_dup.metrics --ASSUME_SORT_ORDER coordinate --PROGRAM_RECORD_ID MarkDuplicates --CREATE_INDEX true

Work dir:
  /scratch/d7/03e6ff8e5833751590811cd213301d

Tip: you can replicate the issue by changing to the process work dir and entering the command `bash .command.run

@Alfredo-Enrique
Copy link
Author

Question: in theory if I remove the memory specifications for the F72.config, it should give the maximum amount of memory during the mark duplicates step, right? Meaning I don't need to write memory=130.GB in the run_MarkDuplicate_Picard process? See F72.config file below.

I have current ongoing test run that I launched where I explicitly stated close to the maximum memory allocation to check if that will work. Will report back as soon as it's done.

Excerpt of F72.config from current test run

    withName: run_sort_SAMtools {
        cpus = 12
        memory = 22.GB
        }
    withName: run_MarkDuplicate_Picard {
        cpus = 1
        memory = 130.GB
        }

@jarbet
Copy link
Contributor

jarbet commented Jul 29, 2022

I have current ongoing test run that I launched where I explicitly stated close to the maximum memory allocation to check if that will work. Will report back as soon as it's done.

Hi Alfredo, did the test run work when you gave run_MarkDuplicate_Picard close to the max memory?

@Alfredo-Enrique
Copy link
Author

I have current ongoing test run that I launched where I explicitly stated close to the maximum memory allocation to check if that will work. Will report back as soon as it's done.

Hi Alfredo, did the test run work when you gave run_MarkDuplicate_Picard close to the max memory?

Hi Jaron! Apologies, forgot to follow up. And Nope. It failed. @tyamaguchi-ucla hypothesized the issue probably was not a memory issue as the final file should be around 70GB, and that it might be a fastq header issue since it's the same files from #223 Spark empty bam file issue. However when I manually run Picard's mark duplicates it outputs a file without issue. Haven't been able to debug more since.

Question @jarbet and/or @yashpatel6. Have either of you had the opportunity to due a test run pipeline-align-DNA v8.0.0 or newer commit, with a large file like CPCG and Picard Mark Duplicates? Wondering if the out of memory error is a dataset specific thing on my end or a general issue.

@jarbet
Copy link
Contributor

jarbet commented Aug 22, 2022

Question @jarbet and/or @yashpatel6. Have either of you had the opportunity to due a test run pipeline-align-DNA v8.0.0 or newer commit, with a large file like CPCG and Picard Mark Duplicates? Wondering if the out of memory error is a dataset specific thing on my end or a general issue.

Hi @Alfredo-Enrique , apologies for not getting back to you on this. I have not run pipeline-align-DNA on a large sample using run_MarkDuplicate_Picard, I always use Spark when possible.

@tyamaguchi-ucla mentioned that the pipeline was run on CPCG0196-F1 (413.6 GB) in the past using run_MarkDuplicate_Picard since Spark does not work on this sample.

when I manually run Picard's mark duplicates it outputs a file without issue. Haven't been able to debug more since.

So Picard's mark duplicates works when you run it manually on the sample, but fails when using it in the pipeline with max memory? Have you been able to make any more progress on debugging this recently?

If we cannot get Picard's mark duplicates to work, then an alternative option maybe worth trying would be to manually fix the header issue and then try using run_MarkDuplicatesSpark_GATK.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants