Skip to content

Commit 486318c

Browse files
committed
Upgrade Batmass-IO to 1.36.0
1 parent f4b99d9 commit 486318c

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ sourceSets {
6262

6363
dependencies {
6464
implementation 'org.apache.commons:commons-math3:3.6.1'
65-
implementation files("lib/batmass-io-1.35.6.jar")
65+
implementation files("lib/batmass-io-1.36.0.jar")
6666
implementation files("lib/IonQuant-1.11.10.jar")
6767
// https://mvnrepository.com/artifact/org.apache.commons/commons-math3
6868
implementation group: 'org.apache.commons', name: 'commons-math3', version: '3.0'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.github.chhh</groupId>
1111
<artifactId>batmass-io</artifactId>
12-
<version>1.35.6</version>
12+
<version>1.36.0</version>
1313
<dependencies>
1414
<dependency>
1515
<groupId>com.google.guava</groupId>

src/edu/umich/andykong/ptmshepherd/core/Spectrum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public Spectrum(MZBINFile.MZBINSpectrum s, String runName) {
9595
}
9696

9797
public MZBINFile.MZBINSpectrum toMZBINSpectrum() {
98-
return new MZBINFile.MZBINSpectrum(scanNum, scanName, peakMZ.length, (float) rt, (float) precursorMass, msLevel, charge, 0, 0, 0, 0, 0, "", 0, 0, 0, 0, cv, precursorMass, 0, (float) im, Doubles.toArray(Floats.asList(peakMZ)), peakInt);
98+
return new MZBINFile.MZBINSpectrum(scanNum, scanName, peakMZ.length, (float) rt, (float) precursorMass, msLevel, charge, 0, 0, 0, 0, 0, "", 0, 0, 0, 0, cv, precursorMass, 0, (float) im, false, Doubles.toArray(Floats.asList(peakMZ)), peakInt);
9999
}
100100

101101
public String toString() {

0 commit comments

Comments
 (0)