X Tutup
Skip to content

Commit 028ff37

Browse files
committed
Merge branch 'master' of github.com:biojava/biojava-tutorial
* 'master' of github.com:biojava/biojava-tutorial: updating link to CLI example Update README.md
2 parents 1331a5e + a94e8bb commit 028ff37

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

protein-disorder/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Examples of use are provided below. For more information please refer to
4949
JronnExample testcases.
5050

5151
Finally instead of an API calls you can use a [ command line
52-
utility](/wikis/BioJava:CookBook3:ProteinDisorderCLI "wikilink"), which is
52+
utility](http://biojava.org/wikis/BioJava:CookBook3:ProteinDisorderCLI/ "wikilink"), which is
5353
likely to give you a better performance as it uses multiple threads to
5454
perform calculations.
5555

@@ -69,7 +69,8 @@ Example 2: Calculate the probability of disorder for every residue in the sequen
6969

7070
```java
7171
final List<FastaSequence> sequences = SequenceUtil.readFasta(new FileInputStream("src/test/resources/fasta.in"));
72-
Map<FastaSequence, float[]> rawProbabilityScores = Jronn.getDisorderScores(sequences); ```
72+
Map<FastaSequence, float[]> rawProbabilityScores = Jronn.getDisorderScores(sequences);
73+
```
7374

7475
Example 3: Get the disordered regions of the protein for a single protein sequence
7576
----------------------------------------------------------------------------------

0 commit comments

Comments
 (0)
X Tutup