Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
reduce default cpus
  • Loading branch information
MPIBR-tushevg committed Feb 5, 2019
1 parent 14df931 commit 1f4a866
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions batchAlignment.pl
Expand Up @@ -29,7 +29,7 @@
my $sbatch_partition = "cuttlefish";
my $sbatch_time = "100:00:00";
my $sbatch_ntasks = 1;
my $sbatch_cpus = 32;
my $sbatch_cpus = 16;
my $sbatch_name = "braintest";


Expand Down Expand Up @@ -117,7 +117,7 @@ ($$$$$)

# count command
my $file_count = $batch_job->{"path"}{"count"} . "/" . $batch_job->{"file"}{"count"};
$command = "featureCounts -T $cpus -t exon -g gene_id -Q 255 -a " . $file_genome_annotation . " \$(ls " . $batch_job->{"path"}{"bam"} . "/*.bam) > " . $file_count;
$command = "featureCounts -T $cpus -t exon -g gene_id -Q 255 -a " . $file_genome_annotation . " -o " . $file_count . " \$(ls " . $batch_job->{"path"}{"bam"} . "/*.bam)";
print "echo featureCounts\n";
print $command,"\n";
}
Expand Down

0 comments on commit 1f4a866

Please sign in to comment.