{
return mappings.isEmpty();
}
+
+ /**
+ * Method for debug / inspection purposes only, may change in future
+ */
+ @Override
+ public String toString()
+ {
+ return mappings == null ? "null" : mappings.toString();
+ }
}
return strand;
}
+ /**
+ * Set the value of strand
+ *
+ * @param strand
+ * should be "+" for forward, or "-" for reverse
+ */
public void setStrand(String strand)
{
setValue(STRAND, strand);
sxpos = x;
if (cdslength != cdspos)
{
- System.err
- .println("Truncating final exon interval on region by "
- + (cdspos - cdslength));
+ // System.err
+ // .println("Truncating final exon interval on region by "
+ // + (cdspos - cdslength));
}
// locate the new end boundary of final exon as endxon
endxon = exon[x + 1] - cdspos + cdslength;
import java.util.List;
/**
- * This is the the concrete implementation of the sequence retrieval interface
- * and abstract class in jalview.ws.seqfetcher. This implements the run-time
- * discovery of sequence database clientss.
+ * This implements the run-time discovery of sequence database clients.
*
*/
public class SequenceFetcher extends ASequenceFetcher