Skip to content

Commit

Permalink
Changed bsub time parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
rhshah committed Nov 12, 2015
1 parent d64a215 commit 300f6bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/RunStructuralVariantPipeline_Delly.pl
Original file line number Diff line number Diff line change
Expand Up @@ -2548,7 +2548,7 @@ sub launchBsub {
#Run Job with hold job id
if ( $holdjobname ne "Null" ) {
$bcmd =
"$BSUB -q $queue -cwd $outdir -w \"$new_holdjobname\" -J $jobname -o $stdout -e $stderr -We 24:00 -R \"rusage[mem=$mem]\" -M $tmem -n $processors \"$cmd\"";
"$BSUB -q $queue -cwd $outdir -w \"$new_holdjobname\" -J $jobname -o $stdout -e $stderr -We 1:00 -R \"rusage[mem=$mem]\" -M $tmem -n $processors \"$cmd\"";
eval {
print "CMD:$bcmd\n";
`$bcmd`;
Expand All @@ -2562,7 +2562,7 @@ sub launchBsub {
#Run Jobs without hold job Id
if ( $holdjobname eq "Null" ) {
$bcmd =
"$BSUB -q $queue -cwd $outdir -J $jobname -o $stdout -e $stderr -R \"rusage[mem=$mem]\" -M $tmem -n $processors \"$cmd\"";
"$BSUB -q $queue -cwd $outdir -J $jobname -o $stdout -e $stderr -We 2:00 -R \"rusage[mem=$mem]\" -M $tmem -n $processors \"$cmd\"";
eval {
print "CMD:$bcmd\n";
`$bcmd`;
Expand Down

0 comments on commit 300f6bf

Please sign in to comment.