Skip to content

Commit

Permalink
Merge pull request #855 from jmtcsngr/more_mem_rnaseqc
Browse files Browse the repository at this point in the history
rna seq qc max memory increased to 8GB
  • Loading branch information
srl147 committed Feb 7, 2024
2 parents 8f52ac7 + 0fc48ad commit f9a69fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ LIST OF CHANGES FOR NPG-QC PACKAGE
result can be loaded to the database without problems.
- Updated the SeqQC summary display for pulldown_metrics incomplete results
so that just 'n/a' is displayed.
- autoqc rna seqqc max memory hardcoded limit increased to 8000MB

release 72.0.0

Expand Down
2 changes: 1 addition & 1 deletion lib/npg_qc/autoqc/checks/rna_seqc.pm
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ sub _command {
if($self->ref_rrna){
$ref_rrna_option = q[-bwa ] . $self->bwa_rrna . q[ -BWArRNA ]. $self->ref_rrna;
}
my $command = $self->java_cmd. sprintf q[ -Xmx4000m -XX:+UseSerialGC -XX:-UsePerfData -jar %s -s %s -o %s -r %s -t %s -ttype %d %s %s],
my $command = $self->java_cmd. sprintf q[ -Xmx8000m -XX:+UseSerialGC -XX:-UsePerfData -jar %s -s %s -o %s -r %s -t %s -ttype %d %s %s],
$self->_java_jar_path,
$self->_input_str,
$self->rna_seqc_report_path,
Expand Down

0 comments on commit f9a69fe

Please sign in to comment.