Skip to content

Commit

Permalink
Merge pull request #84 from carlacummins/master
Browse files Browse the repository at this point in the history
Queue set to basement if number of samples > 600 (previously 800)
  • Loading branch information
Carla Cummins committed Nov 12, 2014
2 parents 2096444 + 94802d0 commit 41a10f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Bio/PanGenome/External/PostAnalysis.pm
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ sub _build__queue {
{
$queue = 'long';
}
elsif($num_samples > 800)
elsif($num_samples > 600)
{
$queue = 'basement';
}
Expand Down

0 comments on commit 41a10f8

Please sign in to comment.