Skip to content

Commit 5f84cee

Browse files
Gwaldonandreasprlic
authored andcommitted
update to 1.8
1 parent e0cdfaa commit 5f84cee

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

wiki/BioJava:Cookbook:Alphabets:Cononical.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ How can I tell if two Symbols or Alphabets are equal?
66
-----------------------------------------------------
77

88
In Biojava the same
9-
[Alphabets](http://www.biojava.org/docs/api14/org/biojava/bio/symbol/Alphabet.html)
9+
[Alphabets](http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/Alphabet.html)
1010
and the same
11-
[Symbols](http://www.biojava.org/docs/api14/org/biojava/bio/symbol/Symbol.html)
11+
[Symbols](http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/Symbol.html)
1212
are canonical no matter how they were constructed or where they came
1313
from. This means that if two [DNA](wp:DNA "wikilink") alphabets (or
14-
[Symbols](http://www.biojava.org/docs/api14/org/biojava/bio/symbol/Symbol.html)
14+
[Symbols](http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/Symbol.html)
1515
from those alphabets) are instantiated at different times are equal via
1616
both the .equals() and == functions. Also Symbols from the PROTEIN and
1717
the PROTEIN-TERM alphabets are canonical as are Symbols from the
18-
[IntegerAlphabet](http://www.biojava.org/docs/api14/org/biojava/bio/symbol/IntegerAlphabet.html)
18+
[IntegerAlphabet](http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/IntegerAlphabet.html)
1919
and the
20-
[SubIntegerAlphabet](http://www.biojava.org/docs/api14/org/biojava/bio/symbol/IntegerAlphabet.SubIntegerAlphabet.html).
20+
[SubIntegerAlphabet](http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/IntegerAlphabet.SubIntegerAlphabet.html).
2121

2222
This is even true of
23-
[Alphabets](http://www.biojava.org/docs/api14/org/biojava/bio/symbol/Alphabet.html)
23+
[Alphabets](http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/Alphabet.html)
2424
and
25-
[Symbols](http://www.biojava.org/docs/api14/org/biojava/bio/symbol/Symbol.html)
25+
[Symbols](http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/Symbol.html)
2626
on different virtual machines (thanks to some
2727
[Serialization](http://java.sun.com/j2se/1.4.2/docs/api/java/io/Serializable.html)
2828
magic) which means BioJava works across RMI.

wiki/BioJava:Cookbook:Alphabets:Cononical.mediawiki

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
== How can I tell if two Symbols or Alphabets are equal? ==
22

3-
In Biojava the same [http://www.biojava.org/docs/api14/org/biojava/bio/symbol/Alphabet.html Alphabets] and the same [http://www.biojava.org/docs/api14/org/biojava/bio/symbol/Symbol.html Symbols] are canonical no matter how they were constructed or where they came from. This means that if two [[wp:DNA|DNA]] alphabets (or [http://www.biojava.org/docs/api14/org/biojava/bio/symbol/Symbol.html Symbols] from those alphabets) are instantiated at different times are equal via both the .equals() and == functions. Also Symbols from the PROTEIN and the PROTEIN-TERM alphabets are canonical as are Symbols from the [http://www.biojava.org/docs/api14/org/biojava/bio/symbol/IntegerAlphabet.html IntegerAlphabet] and the [http://www.biojava.org/docs/api14/org/biojava/bio/symbol/IntegerAlphabet.SubIntegerAlphabet.html SubIntegerAlphabet].
3+
In Biojava the same [http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/Alphabet.html Alphabets] and the same [http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/Symbol.html Symbols] are canonical no matter how they were constructed or where they came from. This means that if two [[wp:DNA|DNA]] alphabets (or [http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/Symbol.html Symbols] from those alphabets) are instantiated at different times are equal via both the .equals() and == functions. Also Symbols from the PROTEIN and the PROTEIN-TERM alphabets are canonical as are Symbols from the [http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/IntegerAlphabet.html IntegerAlphabet] and the [http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/IntegerAlphabet.SubIntegerAlphabet.html SubIntegerAlphabet].
44

5-
This is even true of [http://www.biojava.org/docs/api14/org/biojava/bio/symbol/Alphabet.html Alphabets] and [http://www.biojava.org/docs/api14/org/biojava/bio/symbol/Symbol.html Symbols] on different virtual machines (thanks to some [http://java.sun.com/j2se/1.4.2/docs/api/java/io/Serializable.html Serialization] magic) which means BioJava works across RMI.
5+
This is even true of [http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/Alphabet.html Alphabets] and [http://www.biojava.org/docs/api1.8/org/biojava/bio/symbol/Symbol.html Symbols] on different virtual machines (thanks to some [http://java.sun.com/j2se/1.4.2/docs/api/java/io/Serializable.html Serialization] magic) which means BioJava works across RMI.
66

77

88
<java>

0 commit comments

Comments
 (0)