Skip to content

Commit

Permalink
Merge branch 'feature/protein/sequence/length/144'
Browse files Browse the repository at this point in the history
  • Loading branch information
eparejatobes committed Sep 23, 2016
2 parents 5b2be3b + 5f8af9d commit 22ba79a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/com/bio4j/model/UniProtGraph.java
Expand Up @@ -93,6 +93,16 @@ public final class Sequence extends Property<String> implements FromAny {
private Sequence() { super(String.class); }
}

/*
#### Sequence length
The length of the sequence stored as a property.
*/
public final SequenceLength sequenceLength = new SequenceLength();
public final class SequenceLength extends Property<Integer> implements FromAny {
private SequenceLength() { super(Integer.class); }
}

/*
#### Sequence Mass
Expand Down

0 comments on commit 22ba79a

Please sign in to comment.