X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fanalysis%2FDna.java;h=a2b047212b5ea4991cac7adfa145d22b415b08dc;hb=c49683bef626d9c1de9d06e5f11039e6d4df55c3;hp=3fbcee223bf07e2cc639a330bce83396aa455b12;hpb=48e68905336d8ee17ee6b3903d80b36bac8c56cf;p=jalview.git diff --git a/src/jalview/analysis/Dna.java b/src/jalview/analysis/Dna.java index 3fbcee2..a2b0472 100644 --- a/src/jalview/analysis/Dna.java +++ b/src/jalview/analysis/Dna.java @@ -162,7 +162,8 @@ public class Dna * @param ac2 * @return */ - public static final int compareCodonPos(AlignedCodon ac1, AlignedCodon ac2) + public static final int compareCodonPos(AlignedCodon ac1, + AlignedCodon ac2) { return comparator.compare(ac1, ac2); // return jalview_2_8_2compare(ac1, ac2); @@ -269,7 +270,7 @@ public class Dna mappedrefs.add(ref); // add translated protein maps } } - dnarefs = mappedrefs;//.toArray(new DBRefEntry[mappedrefs.size()]); + dnarefs = mappedrefs;// .toArray(new DBRefEntry[mappedrefs.size()]); for (int d = 0, nd = dnarefs.size(); d < nd; d++) { Mapping mp = dnarefs.get(d).getMap(); @@ -468,7 +469,8 @@ public class Dna /* * Filled up a reading frame... */ - AlignedCodon alignedCodon = new AlignedCodon(cdp[0], cdp[1], cdp[2]); + AlignedCodon alignedCodon = new AlignedCodon(cdp[0], cdp[1], + cdp[2]); String aa = codeTable.translate(new String(codon)); rf = 0; final String gapString = String.valueOf(gapChar); @@ -797,29 +799,29 @@ public class Dna private static void transferCodedFeatures(SequenceI dna, SequenceI pep, MapList map) { - // BH 2019.01.25 nop? -// List dnarefs = DBRefUtils.selectRefs(dna.getDBRefs(), -// DBRefSource.DNACODINGDBS); -// if (dnarefs != null) -// { -// // intersect with pep -// for (int d = 0, nd = dnarefs.size(); d < nd; d++) -// { -// Mapping mp = dnarefs.get(d).getMap(); -// if (mp != null) -// { -// } -// } -// } + // BH 2019.01.25 nop? + // List dnarefs = DBRefUtils.selectRefs(dna.getDBRefs(), + // DBRefSource.DNACODINGDBS); + // if (dnarefs != null) + // { + // // intersect with pep + // for (int d = 0, nd = dnarefs.size(); d < nd; d++) + // { + // Mapping mp = dnarefs.get(d).getMap(); + // if (mp != null) + // { + // } + // } + // } for (SequenceFeature sf : dna.getFeatures().getAllFeatures()) { - if (FeatureProperties.isCodingFeature(null, sf.getType())) + if (FeatureProperties.isCodingFeature(null, sf.getType())) + { + // if (map.intersectsFrom(sf[f].begin, sf[f].end)) { - // if (map.intersectsFrom(sf[f].begin, sf[f].end)) - { - } } + } } }