Skip to content

Commit

Permalink
Slightly reduce memory requirements for blat
Browse files Browse the repository at this point in the history
  • Loading branch information
RenzoTale88 committed Oct 14, 2021
1 parent 8c1166f commit 067886f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/processes/blat.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ blatFar="-t=dna -q=dna -fastMap -noHead -tileSize=12 -oneOff=1 -minMatch=1 -minS

process blat_near{
tag "blat.${params.distance}.${srcname}.${tgtname}"
label 'large'
label 'medium'

input:
tuple val(srcname), val(srcfile), val(tgtname), val(tgtfile)
Expand Down Expand Up @@ -36,7 +36,7 @@ process blat_near{

process blat_medium{
tag "blat.${params.distance}.${srcname}.${tgtname}"
label 'large'
label 'medium'

input:
tuple val(srcname), val(srcfile), val(tgtname), val(tgtfile)
Expand Down Expand Up @@ -64,7 +64,7 @@ process blat_medium{

process blat_far{
tag "blat.${params.distance}.${srcname}.${tgtname}"
label 'large'
label 'medium'

input:
tuple val(srcname), val(srcfile), val(tgtname), val(tgtfile)
Expand Down Expand Up @@ -92,7 +92,7 @@ process blat_far{

process blat_balanced{
tag "blat.${params.distance}.${srcname}.${tgtname}"
label 'large'
label 'medium'

input:
tuple val(srcname), val(srcfile), val(tgtname), val(tgtfile)
Expand Down Expand Up @@ -120,7 +120,7 @@ process blat_balanced{

process blat{
tag "blat.${params.distance}.${srcname}.${tgtname}"
label 'large'
label 'medium'

input:
tuple val(srcname), val(srcfile), val(tgtname), val(tgtfile)
Expand Down

0 comments on commit 067886f

Please sign in to comment.