}
} catch (Exception e)
{
- jalview.bin.Console
- .errPrintln("Couldn't locate PICR service instance.\n");
+ Console.errPrintln("Couldn't locate PICR service instance.\n");
e.printStackTrace();
}
while (sdataset.size() > 0 && db < dbSources.length)
{
int maxqlen = 1; // default number of queries made at one time
- jalview.bin.Console
- .outPrintln("Verifying against " + dbSources[db].getDbName());
+ Console.info("Verifying against " + dbSources[db].getDbName());
// iterate through db for each remaining un-verified sequence
SequenceI[] currSeqs = new SequenceI[sdataset.size()];
int p = 0;
while (tokens.find(p))
{
- String token = tokens.group();
+ String token = tokens.group(); // JALVIEWJS is hanging here
p = tokens.end();
UPEntry[] presp = null;
if (picrClient != null)
true);
} catch (Exception e)
{
- jalview.bin.Console.errPrintln(
+ Console.errPrintln(
"Exception with Picr for '" + token + "'\n");
e.printStackTrace();
}
// present, and do a transferReferences
// otherwise transfer non sequence x-references directly.
}
- jalview.bin.Console.outPrintln(
+ Console.outPrintln(
"Validated ID against PICR... (for what its worth):"
+ token);
addSeqId(sequence, token);
else
{
// if ()
- // jalview.bin.Console.outPrintln("Not querying source with
+ // Console.outPrintln("Not querying source with
// token="+token+"\n");
addSeqId(sequence, token);
queries.addElement(token.toUpperCase(Locale.ROOT));
DbSourceProxy dbSourceProxy, AlignmentI retrievedAl,
boolean trimDatasetSeqs, List<String> warningMessages)
{
- // jalview.bin.Console.outPrintln("trimming ? " + trimDatasetSeqs);
+ // Console.outPrintln("trimming ? " + trimDatasetSeqs);
if (retrievedAl == null || retrievedAl.getHeight() == 0)
{
return false;
}
}
- jalview.bin.Console.outPrintln("Adding dbrefs to "
- + sequence.getName() + " from " + dbSource + " sequence : "
+ Console.outPrintln("Adding dbrefs to " + sequence.getName()
+ + " from " + dbSource + " sequence : "
+ retrievedSeq.getName());
sequence.transferAnnotation(retrievedSeq, mp);