Skip to content

Commit ea6d9df

Browse files
author
Daniel Mapleson
committed
Updated version to 0.10.3.
Using TGACconanprocs 0.10.3. Fixed bug to make use of kmer read analysis optional.
1 parent 3c47294 commit ea6d9df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>uk.ac.tgac.rampart</groupId>
77
<artifactId>rampart</artifactId>
8-
<version>0.10.2</version>
8+
<version>0.10.3</version>
99
<packaging>jar</packaging>
1010

1111
<name>RAMPART</name>
@@ -455,7 +455,7 @@
455455
<dependency>
456456
<groupId>uk.ac.tgac.conan</groupId>
457457
<artifactId>tgac-conan-process-wrappers</artifactId>
458-
<version>0.10.2</version>
458+
<version>0.10.3</version>
459459
<exclusions>
460460
<exclusion>
461461
<groupId>commons-cli</groupId>

src/main/java/uk/ac/tgac/rampart/RampartPipeline.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ public Args(Element element, List<Library> libs, Organism organism, RampartJobFi
268268
this.organism,
269269
this.jobPrefix + "-analyse_mass",
270270
this.kmerCalcArgs == null ? null : this.kmerCalcArgs.getResultFile(),
271-
this.analyseReadsArgs.isKmerAnalysis());
271+
this.analyseReadsArgs == null ? false : this.analyseReadsArgs.isKmerAnalysis());
272272

273273
this.stages.setArgsIfPresent(RampartStage.ANALYSE_MASS, this.analyseMassArgs);
274274

@@ -318,7 +318,7 @@ public Args(Element element, List<Library> libs, Organism organism, RampartJobFi
318318
this.ampArgs == null ? null : this.ampArgs.getStageArgsList(),
319319
this.organism,
320320
this.jobPrefix + "-analyse_amp",
321-
this.analyseReadsArgs.isKmerAnalysis());
321+
this.analyseReadsArgs != null ? this.analyseReadsArgs.isKmerAnalysis() : false);
322322

323323
this.stages.setArgsIfPresent(RampartStage.ANALYSE_AMP, this.analyseAmpArgs);
324324

0 commit comments

Comments
 (0)