Skip to content

Commit af97e25

Browse files
committed
🧠 adjust t1k memory
1 parent d4e818c commit af97e25

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

tools/t1k.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ inputs:
5959
output_read_assignment: { type: 'boolean?', inputBinding: { position: 12 , prefix: "--outputReadAssignment" }, doc: "Set to output the allele assignment for each read to prefix_assign.tsv file" }
6060

6161
threads: { type: 'int?', doc: "Num processing threads to use", default: 8, inputBinding: { position: 12, prefix: "-t" } }
62-
ram: { type: 'int?', doc: "Num GB memory to make available", default: 16 }
62+
ram: { type: 'int?', doc: "Num GB memory to make available", default: 32 }
6363
outputs:
6464
aligned_fasta: { type: 'File[]', outputBinding: { glob: '*_aligned_*.fa' } }
6565
allele_tsv: { type: File, outputBinding: { glob: '*_allele.tsv' } }

workflows/kfdrc_alignment_wf.cwl

+2
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,7 @@ inputs:
392392
hla_dna_gene_coords: {type: 'File?', doc: "FASTA file containing the coordinates of the HLA genes for DNA.", "sbg:suggestedValue": {
393393
class: File, path: 6669ac8127374715fc3ba3c2, name: hla_v3.43.0_gencode_v39_dna_coord.fa}}
394394
t1k_abnormal_unmap_flag: {type: 'boolean?', doc: "Set if the flag in BAM for the unmapped read-pair is nonconcordant"}
395+
t1k_ram: {type: 'int?', doc: "GB of RAM to allocate to T1k." }
395396
outputs:
396397
cram: {type: File, outputSource: samtools_bam_to_cram/output, doc: "(Re)Aligned Reads File"}
397398
gvcf: {type: 'File[]?', outputSource: generate_gvcf/gvcf, doc: "Genomic VCF generated from the realigned alignment file."}
@@ -655,6 +656,7 @@ steps:
655656
valueFrom: $(self).t1k_hla
656657
skip_post_analysis:
657658
valueFrom: $(1 == 1)
659+
ram: t1k_ram
658660
out: [genotype_tsv]
659661
samtools_bam_to_cram:
660662
run: ../tools/samtools_bam_to_cram.cwl

workflows/kfdrc_sentieon_alignment_wf.cwl

+2
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ inputs:
182182
hla_dna_gene_coords: {type: 'File?', doc: "FASTA file containing the coordinates of the HLA genes for DNA.", "sbg:suggestedValue": {
183183
class: File, path: 6669ac8127374715fc3ba3c2, name: hla_v3.43.0_gencode_v39_dna_coord.fa}}
184184
t1k_abnormal_unmap_flag: {type: 'boolean?', doc: "Set if the flag in BAM for the unmapped read-pair is nonconcordant"}
185+
t1k_ram: {type: 'int?', doc: "GB of RAM to allocate to T1k." }
185186
outputs:
186187
cram: {type: File, outputSource: sentieon_readwriter_bam_to_cram/output_reads, doc: "(Re)Aligned Reads File"}
187188
gvcf: {type: 'File?', outputSource: generate_gvcf/gvcf, doc: "Genomic VCF generated from the realigned alignment file."}
@@ -368,6 +369,7 @@ steps:
368369
skip_post_analysis:
369370
valueFrom: $(1 == 1)
370371
abnormal_unmap_flag: t1k_abnormal_unmap_flag
372+
ram: t1k_ram
371373
out: [genotype_tsv]
372374
sentieon_readwriter_bam_to_cram:
373375
run: ../tools/sentieon_ReadWriter.cwl

0 commit comments

Comments
 (0)