Esempio n. 1
0
 public float getFlowValue(int flow) {
   return sff.getFlowgram()[flow];
 }
Esempio n. 2
0
 public int[] getFlowIndex() {
   return Arrays.copyOfRange(sff.getFlow_index(), 4, sff.getFlow_index().length - 4);
 }
Esempio n. 3
0
 public String getKey() {
   return sff.getKey();
 }
Esempio n. 4
0
 public int[] getFlowgram() {
   return sff.getFlowgram();
 }
Esempio n. 5
0
 public int getRow() {
   return sff.getRow();
 }
Esempio n. 6
0
 public String getFlowOrder() {
   return sff.getFlowOrder();
 }
Esempio n. 7
0
 public int getCol() {
   return sff.getCol();
 }
Esempio n. 8
0
 public Read(SffRead sff) {
   super(sff.getBases().substring(4), sff.getName());
   this.sff = sff;
 }
Esempio n. 9
0
 public int[] getAbsoluteFlowIndex() {
   return sff.getAbsoluteFlowIndex();
 }
Esempio n. 10
0
 public String getHtmlFlowGramInfo() {
   return sff.getHtmlFlowInformation(200);
 }
Esempio n. 11
0
 public int findFlow(int basepos) {
   if (basepos < 0) return -1;
   return SeqFlowUtil.findFlow(basepos + 4, sff.getBases(), sff.getFlowOrder());
 }