X Tutup
Skip to content

Commit d081b12

Browse files
committed
Changed the version to 7.1.0-SNAPSHOT. Made changes per review.
1 parent 26b21d7 commit d081b12

File tree

15 files changed

+36
-36
lines changed

15 files changed

+36
-36
lines changed

biojava-aa-prop/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>biojava</artifactId>
44
<groupId>org.biojava</groupId>
5-
<version>7.0.3-SNAPSHOT</version>
5+
<version>7.1.0-SNAPSHOT</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>biojava-aa-prop</artifactId>
@@ -70,12 +70,12 @@
7070
<dependency>
7171
<groupId>org.biojava</groupId>
7272
<artifactId>biojava-core</artifactId>
73-
<version>7.0.3-SNAPSHOT</version>
73+
<version>7.1.0-SNAPSHOT</version>
7474
</dependency>
7575
<dependency>
7676
<groupId>org.biojava</groupId>
7777
<artifactId>biojava-structure</artifactId>
78-
<version>7.0.3-SNAPSHOT</version>
78+
<version>7.1.0-SNAPSHOT</version>
7979
</dependency>
8080

8181
<!-- logging dependencies (managed by parent pom, don't set versions or scopes here) -->

biojava-alignment/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>biojava</artifactId>
66
<groupId>org.biojava</groupId>
7-
<version>7.0.3-SNAPSHOT</version>
7+
<version>7.1.0-SNAPSHOT</version>
88
</parent>
99
<artifactId>biojava-alignment</artifactId>
1010
<name>biojava-alignment</name>
@@ -47,7 +47,7 @@
4747
<dependency>
4848
<groupId>org.biojava</groupId>
4949
<artifactId>biojava-core</artifactId>
50-
<version>7.0.3-SNAPSHOT</version>
50+
<version>7.1.0-SNAPSHOT</version>
5151
<scope>compile</scope>
5252
</dependency>
5353
<dependency>

biojava-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>biojava</artifactId>
55
<groupId>org.biojava</groupId>
6-
<version>7.0.3-SNAPSHOT</version>
6+
<version>7.1.0-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>biojava-core</artifactId>

biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/FastaStreamer.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import java.io.File;
1111
import java.io.IOException;
1212
import java.io.InputStream;
13+
import java.io.UncheckedIOException;
1314
import java.nio.file.Path;
1415
import java.util.Collections;
1516
import java.util.Iterator;
@@ -27,7 +28,7 @@
2728
* for use in a functional programming paradigm.
2829
*
2930
* @author Gary Murphy
30-
* @since 7.0.3
31+
* @since 7.1.0
3132
*/
3233
public class FastaStreamer {
3334

@@ -135,12 +136,12 @@ private ProteinSequence next(FastaReader<ProteinSequence, AminoAcidCompound> rea
135136
}
136137
if (iterator.hasNext()) {
137138
Map.Entry<String, ProteinSequence> entry = iterator.next();
138-
return createSequence(entry.getKey(), entry.getValue());
139+
return createSequence(entry.getValue());
139140
}
140141
closed = true;
141142
reader.close();
142143
} catch (IOException exception) {
143-
throw new RuntimeException(String.format("I/O error reading the FASTA file from '%s'", getPath()));
144+
throw new UncheckedIOException(String.format("I/O error reading the FASTA file from '%s'", getPath()), exception);
144145
}
145146
return null;
146147
}
@@ -153,11 +154,10 @@ private ProteinSequence next(FastaReader<ProteinSequence, AminoAcidCompound> rea
153154
* this is an opportunity for the implementer to build specific information into the user collection space
154155
* of the sequence
155156
*
156-
* @param header the original header
157157
* @param sequence the protein sequence
158158
* @return the sequence
159159
*/
160-
protected ProteinSequence createSequence(String header, ProteinSequence sequence) {
160+
protected ProteinSequence createSequence(ProteinSequence sequence) {
161161
return sequence;
162162
}
163163

biojava-genome/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>biojava</artifactId>
55
<groupId>org.biojava</groupId>
6-
<version>7.0.3-SNAPSHOT</version>
6+
<version>7.1.0-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>biojava-genome</artifactId>
@@ -71,13 +71,13 @@
7171
<dependency>
7272
<groupId>org.biojava</groupId>
7373
<artifactId>biojava-core</artifactId>
74-
<version>7.0.3-SNAPSHOT</version>
74+
<version>7.1.0-SNAPSHOT</version>
7575
<scope>compile</scope>
7676
</dependency>
7777
<dependency>
7878
<groupId>org.biojava</groupId>
7979
<artifactId>biojava-alignment</artifactId>
80-
<version>7.0.3-SNAPSHOT</version>
80+
<version>7.1.0-SNAPSHOT</version>
8181
<scope>compile</scope>
8282
</dependency>
8383
<dependency>

biojava-integrationtest/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>biojava</artifactId>
66
<groupId>org.biojava</groupId>
7-
<version>7.0.3-SNAPSHOT</version>
7+
<version>7.1.0-SNAPSHOT</version>
88
</parent>
99
<artifactId>biojava-integrationtest</artifactId>
1010
<packaging>jar</packaging>
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>org.biojava</groupId>
4242
<artifactId>biojava-structure</artifactId>
43-
<version>7.0.3-SNAPSHOT</version>
43+
<version>7.1.0-SNAPSHOT</version>
4444
</dependency>
4545
<!-- logging dependencies (managed by parent pom, don't set versions or scopes here) -->
4646
<dependency>

biojava-modfinder/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>biojava</artifactId>
66
<groupId>org.biojava</groupId>
7-
<version>7.0.3-SNAPSHOT</version>
7+
<version>7.1.0-SNAPSHOT</version>
88
</parent>
99
<artifactId>biojava-modfinder</artifactId>
1010
<name>biojava-modfinder</name>
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>org.biojava</groupId>
3333
<artifactId>biojava-structure</artifactId>
34-
<version>7.0.3-SNAPSHOT</version>
34+
<version>7.1.0-SNAPSHOT</version>
3535
<type>jar</type>
3636
<scope>compile</scope>
3737
</dependency>

biojava-ontology/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.biojava</groupId>
66
<artifactId>biojava</artifactId>
7-
<version>7.0.3-SNAPSHOT</version>
7+
<version>7.1.0-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>biojava-ontology</artifactId>

biojava-protein-comparison-tool/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>biojava</artifactId>
66
<groupId>org.biojava</groupId>
7-
<version>7.0.3-SNAPSHOT</version>
7+
<version>7.1.0-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>biojava-protein-comparison-tool</artifactId>
@@ -36,23 +36,23 @@
3636
<dependency>
3737
<groupId>org.biojava</groupId>
3838
<artifactId>biojava-alignment</artifactId>
39-
<version>7.0.3-SNAPSHOT</version>
39+
<version>7.1.0-SNAPSHOT</version>
4040

4141
</dependency>
4242
<dependency>
4343
<groupId>org.biojava</groupId>
4444
<artifactId>biojava-core</artifactId>
45-
<version>7.0.3-SNAPSHOT</version>
45+
<version>7.1.0-SNAPSHOT</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.biojava</groupId>
4949
<artifactId>biojava-structure</artifactId>
50-
<version>7.0.3-SNAPSHOT</version>
50+
<version>7.1.0-SNAPSHOT</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>org.biojava</groupId>
5454
<artifactId>biojava-structure-gui</artifactId>
55-
<version>7.0.3-SNAPSHOT</version>
55+
<version>7.1.0-SNAPSHOT</version>
5656
</dependency>
5757
<dependency>
5858
<groupId>net.sourceforge.jmol</groupId>

biojava-protein-disorder/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>biojava</artifactId>
55
<groupId>org.biojava</groupId>
6-
<version>7.0.3-SNAPSHOT</version>
6+
<version>7.1.0-SNAPSHOT</version>
77
</parent>
88
<artifactId>biojava-protein-disorder</artifactId>
99
<packaging>jar</packaging>
@@ -63,7 +63,7 @@
6363
<dependency>
6464
<groupId>org.biojava</groupId>
6565
<artifactId>biojava-core</artifactId>
66-
<version>7.0.3-SNAPSHOT</version>
66+
<version>7.1.0-SNAPSHOT</version>
6767
</dependency>
6868
<!-- logging dependencies (managed by parent pom, don't set versions or
6969
scopes here) -->

0 commit comments

Comments
 (0)
X Tutup