Skip to content

Commit

Permalink
Merged in hotifx-gridss-assembly (pull request #206)
Browse files Browse the repository at this point in the history
gridss-assembly-fix
  • Loading branch information
MikeWLloyd committed Oct 8, 2024
2 parents b08c173 + 4800694 commit 10da0e3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# RELEASE NOTES

## Release 0.7.4

In this release we correct a nextflow issue in the GRIDSS_ASSEMBLY step used in the human PTA workflow.

## Release 0.7.3

Expand Down
7 changes: 4 additions & 3 deletions modules/gridss/gridss_assemble.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ process GRIDSS_ASSEMBLE {
tuple val(sampleID), path('gridss_assemble/'), emit: gridss_assembly

script:
String my_mem = (task.memory-1.GB).toString()
String my_mem = (task.memory-5.GB).toString()
String my_other_mem = (task.memory-30.GB).toString()
heap_mem = my_mem[0..-4]+'g'
other_mem = my_mem[0..-30]+'g'
other_mem = my_other_mem[0..-4]+'g'

output_dir = 'gridss_assemble/'

Expand All @@ -43,4 +44,4 @@ process GRIDSS_ASSEMBLE {
--picardoptions VALIDATION_STRINGENCY=LENIENT \
${normal_bam} ${tumor_bam}
"""
}
}
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ manifest {
homePage = "https://github.com/TheJacksonLaboratory/cs-nf-pipelines"
mainScript = "main.nf"
nextflowVersion = "!>=22.04.3"
version = "0.7.3"
version = "0.7.4"
author = 'Michael Lloyd, Brian Sanderson, Barry Guglielmo, Sai Lek, Peter Fields, Harshpreet Chandok, Carolyn Paisie, Gabriel Rech, Ardian Ferraj, Tejas Temker, Anuj Srivastava. Copyright Jackson Laboratory 2024'
}

Expand Down

0 comments on commit 10da0e3

Please sign in to comment.