1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662
|
package jasper;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import shared.Parser;
import shared.PreParser;
import shared.Timer;
public class NCBISparseTreeValidate {
/*--------------------------------------------------------------*/
/*---------------- Initialization ----------------*/
/*--------------------------------------------------------------*/
public static void main(String[] args) throws FileNotFoundException, IOException {
//Start a timer immediately upon code entrance.
Timer t=new Timer();
//Create an instance of this class
NCBISparseTreeValidate x=new NCBISparseTreeValidate(args);
//Run the object
x.process(t);
}
/**
* Handles pre-parsing and parsing of user flags.
* Reads in the sketch similarity file (sim) and organism-parent relationship file (tree).
*
* @param args string of the arguments input at the commandline.
*/
public NCBISparseTreeValidate(String[] args) {
{//Preparse block for help, config files, and outstream
PreParser pp=new PreParser(args, getClass(), false);
args=pp.args;
outstream=pp.outstream;
}
//Primary parsing of standard arguments found in all bbmap programs (maxReads, parseSam, parseZip, etc).
Parser parser=new Parser();
//Loop through arguments up to the maximum number of arguments input.
//process all remaining arguments.
for(int i=0; i<args.length; i++){
//Grab argument string at index.
String arg=args[i];
//Split argument string on "=".
String[] split=arg.split("=");
//Convert the left side to lowercase.
String a=split[0].toLowerCase();
//Ternary conditional statement: is the length of the split greater than 1 (thus, an actual input)?
//if so, the right side of the split is the b variable, if not, b is null.
String b=split.length>1 ? split[1] : null;
//If b isn't null but a string "null" was input, convert b to null.
if(b!=null && b.equalsIgnoreCase("null")){b=null;}
//Unused example statement. does nothing currently. start here for adding new flag parsing.
if(a.equals("parse_flag_goes_here")){
//Handle similarities file variable assignment.
}else if(a.equals("sim")){
sim=b;
//Handle tree file variable assignment.
}else if(a.equals("tree")){
treeFileName=b;
//Handle whether using NCBI files as input (default)
//or a test dataset.
}else if(a.equals("test")) {
test=true;
ncbi=false;
//Handles which mode is used to assess problematic placements within the tree.
}else if(a.equals("mode")) {
if(b.equals("average")){mode=AVERAGE_IDENTITY_MODE;}
else if(b.equals("identity")) {mode=IDENTITY_MODE;}
else if(b.equals("vote")) {mode=VOTE_MODE;}
else if(b.equals("both")) {mode=BOTH_MODE;}
else {assert false : "Unknown Mode: " + arg;}
//Tells program to write tree graphs in .dot format.
}else if(a.equals("writetrees")) {
writeTrees = true;
}else if(a.equals("allnodes")) {
printAllNodes = true;
}else if(a.equals("treestoprint")) {
goodTreesToPrint = badTreesToPrint = Integer.parseInt(b);
//If writetrees is true and the path to an output dir is included
//set variable to the path to the desired directory
}else if(a.equals("outpath")) {
outpath=b;
if(outpath.endsWith("/")) {System.out.println("output path correct");}
else {outpath = outpath + "/";}
//Parses in and out flags, handles all flags not recognized earlier in class.
}else if(parser.parse(arg, a, b)){
//If not one of the known parameters, let the user know they made a mistake.
}else{
assert(false) : "Unknown parameter "+args[i];
outstream.println("Unknown parameter "+args[i]);
}
}
}
/*--------------------------------------------------------------*/
/*---------------- Outer Methods ----------------*/
/*--------------------------------------------------------------*/
/**
* Creates the similarity matrix and the relationship tree.
* Also passes these objects to the inner processing method for analysis.
*
* @param t
* @throws FileNotFoundException
* @throws IOException
*/
void process(Timer t) throws FileNotFoundException, IOException{
//Pass input file to Tree class to create tree
tree=new NCBISparseTree(treeFileName);
System.out.println(tree.getOrgCount());
System.out.println("Mode of analysis: " + mode);
System.out.println("If writing out trees, write all nodes: " + printAllNodes);
//System.out.println(relationshipTree.getNode(3).taxonomicRank);
//Pass similarity file to create similarity matrix object
NCBISparseSimilarityMatrix matrix=new NCBISparseSimilarityMatrix(sim, tree, ncbi);
//System.out.println(matrix.getSize());
//Add parent node similarity percentages to each node in the tree.
//addRelationSims(relationshipTree, matrix);
//Traverse the tree and add levels to all nodes.
//Hardcoded to start at node "0" or "life" node.
tree.beginTraverse(1);
//Sets the identities by beginning at a particular node and working backwards.
//relationshipTree.setIdentity(relationshipTree.getNode(10), matrix);
//TODO: remove 10 since this is just part of testing/percolate
//relationshipTree.root.percolateIdentityUp(10);
//Check similarities.
checkSimilarities(tree, matrix);
System.out.println("Node placement check complete.");
t.stop();
outstream.println("Time: \t"+t);
}
/*--------------------------------------------------------------*/
/*---------------- Inner Methods ----------------*/
/*--------------------------------------------------------------*/
// /**
// * Iterate over nodes in the Tree and compare present relationships
// * with values found in the similarity matrix.
// *
// * @param tree Tree object containing TreeNode objects detailing the parent and children of each node.
// * @param matrix SimilarityMatrix2 object containing percentage similarity of sketches.
// */
// void addRelationSims(NCBISparseTree tree, SparseSimilarityMatrix matrix){
//
// //Iterate over organisms/nodes in the tree.
// for ( String keyOrg : tree.keySet() ) {
//
// //add the node of current focus to a variable in the loop.
// TreeNode keyNode = tree.getNode(keyOrg);
//
// //Get Parent node of keyNode.
// TreeNode parentNode = keyNode.parentNode;
//
// //If statement to ignore the root/"life" node when obtaining similarities.
// //Then get the parent nodes similarity to the key node.
// //add the similarity value to the key node.
// if(!parentNode.orgName.equals("0")) {
//
// keyNode.addParSim(parentNode.averageIdentity());
// System.out.println(parentNode.averageIdentity());
// }
// }
// }
/**
* Method to check tree for surprising similarity values for each node in the tree.
* Ignores the root/"life" node, any node without any sequence.
* Any node with a higher similarity to another node than to its parent that
* isn't an descendant is flagged as possibly erroneous.
*
* @param tree The tree object storing taxon nodes (TreeNode objects).
* @param matrix The sparse similarity matrix containing all possible pairwise similarity values.
*/
void checkSimilarities(NCBISparseTree tree, NCBISparseSimilarityMatrix matrix) {
System.out.println("Begining to compare sequence similarity values to the stated tree structure.");
//Iterate over organisms/nodes in the tree.
//for ( Integer keyTaxonID : tree.keySet() ) {
for(NCBITreeNode keyNode : tree.nodeList) {
Integer keyTaxonID = keyNode.taxID;
System.out.println("Analyzing Taxon ID :" + keyTaxonID);
//If the organism isn't the life/0 node.
//NCBI taxon ID == 1.
//Node ID == 0.
if(!keyTaxonID.equals(1) && matrix.numComparisonsByTaxonID(keyTaxonID) > 0) {
//Reset the identity values of the TreeNodes
//This is done so all identity values are relative to the current keyNode.
tree.root.resetRecursively();
//Set the identities of the tree based on the current keyNode.
tree.setIdentity(keyNode, matrix);
keyNode.votes++;
//Percolate the average identities of each node upwards through the tree
//relative to the current keyNode.
tree.root.percolateIdentityUp(keyNode.nodeId);
//Handle writing tree relationships in .dot format.
//If selected by user.
if(writeTrees == true && outpath != null) {
//Creates the tree output file name along with the path to the desired directory.
String currentTreeName = outpath + "SimilarityTree_" + keyNode.orgName + "_.dot";
//Create the output file.
createFile(currentTreeName);
//Write the .dot formatted tree to the file.
writeToFile(currentTreeName, tree.root.toDot(printAllNodes));
//assert false;
}
if(mode==AVERAGE_IDENTITY_MODE) {
//checkSimilaritiesForOneNode(keyNode, matrix);
NCBITreeNode problemNode = checkAverageIdentityForOneNode(keyNode);
if(problemNode != null) {
System.out.println("Highest problem node for Taxon ID: " + keyNode.taxID + " is: " + problemNode);
if(badTreesToPrint > 0) {
writeTrees(keyNode, tree);
badTreesToPrint = badTreesToPrint - 1;
}
}else if(problemNode == null && goodTreesToPrint > 0) {
writeTrees(keyNode, tree);
goodTreesToPrint = goodTreesToPrint - 1;
}
}
else if(mode==VOTE_MODE) {
NCBITreeNode problemNode = checkVotesForOneNode(keyNode);
if(problemNode != null) {
System.out.println("Highest problem node for Taxon ID: " + keyNode.taxID + " is: " + problemNode);
if(badTreesToPrint > 0) {
writeTrees(keyNode, tree);
badTreesToPrint--;
}
}else if(problemNode == null && goodTreesToPrint > 0) {
writeTrees(keyNode, tree);
goodTreesToPrint--;
}
//The primary mode
}else if(mode==BOTH_MODE) {
NCBITreeNode voteProblemNode = checkVotesForOneNode(keyNode);
if(voteProblemNode != null) {
NCBITreeNode avgIDProblemNode = checkAverageIdentityForOneNode(keyNode);
if(avgIDProblemNode != null) {
setNodeColors(keyNode, voteProblemNode, avgIDProblemNode);
System.out.println("Problem found at Taxon ID: " + keyNode.taxID
+ " The highest vote problem node is: " + voteProblemNode
+ " and the highest identity problem node is: " + avgIDProblemNode);
if(badTreesToPrint > 0) {
writeTrees(keyNode, tree);
badTreesToPrint--;
}
}else if(avgIDProblemNode == null) {
keyNode.color = "blue";
if(goodTreesToPrint > 0) {
writeTrees(keyNode, tree);
goodTreesToPrint--;
}
}
}
}else { throw new RuntimeException("Uknown Mode" + mode);}
//checkSimilaritiesForOneNode(keyNode, matrix);
}
}
}
/**
* Used to identify and flag suspicious placements of nodes within a taxonomic tree.
* @param keyNode Query node of interest. Votes are calculated from this node in relation to the tree.
* @return TreeNode the problematic node compared to the query node
*
*/
public NCBITreeNode checkVotesForOneNode(final NCBITreeNode keyNode) {
NCBITreeNode current=keyNode.parentNode;
NCBITreeNode previous=keyNode;
NCBITreeNode highestProblemNode = null;
NCBITreeNode problemChild = null;
while(current.parentNode != current) {
int currentMaxVotes = previous.votes;
NCBITreeNode maxChild = previous;
for(NCBITreeNode descendantNode : current.childNodes) {
if(descendantNode.votes > currentMaxVotes) {
currentMaxVotes = descendantNode.votes;
maxChild = descendantNode;
}
}
if(maxChild != previous) {
current.flaggedNode = true;
System.out.println("Problem found at: [" + current.taxID + "] Taxon rank: [" + current.taxonomicRank + "]");
highestProblemNode = current;
problemChild = maxChild;
}
previous = current;
current = current.parentNode;
}
if(highestProblemNode != null && highestProblemNode != keyNode.parentNode) {
problemChild.color = "pink";
}
return highestProblemNode == keyNode.parentNode ? null : highestProblemNode;
}
/**
* Used to check sequence identities and flag suspicious node placements.
* @param keyNode Query node of interest.
* @param matrix Matrix of similarity comparisons.
*/
@Deprecated
public void checkSimilaritiesForOneNode(NCBITreeNode keyNode, NCBISparseSimilarityMatrix matrix) {
//Prevents analysis of "empty" nodes that don't contain sequences (genus/phylum/etc).
//TODO: if there are no sibling nodes, the parent sim could be 0.
if(keyNode.parentNode.averageIdentity() != 0.0) {
//Get the row of similarity values associated with
//the key node and each other node.
ArrayList<NCBIComparison> keyOrgRow = matrix.getOrgRowByTaxonID(keyNode.taxID);
Collections.sort(keyOrgRow);
//Iterate over the node organism names.
for(NCBIComparison rowOrgComparison : keyOrgRow) {
NCBITreeNode matrixOrgNode = tree.getNodeByNodeID(rowOrgComparison.refNodeID);
boolean b = isSuspicious(keyNode, matrixOrgNode, rowOrgComparison);
keyNode.flaggedNode = b;
if(b) {
printSuspicious(keyNode, rowOrgComparison, matrixOrgNode);
}
}
}
}
public NCBITreeNode checkAverageIdentityForOneNode(final NCBITreeNode keyNode) {
NCBITreeNode current=keyNode.parentNode;
NCBITreeNode previous=keyNode;
NCBITreeNode highestProblemNode = null;
NCBITreeNode problemChild = null;
while(current.parentNode != current) {
double currentMaxAverage = previous.averageIdentity();
NCBITreeNode maxChild = previous;
for(NCBITreeNode descendantNode : current.childNodes) {
if(descendantNode.averageIdentity() > currentMaxAverage) {
currentMaxAverage = descendantNode.averageIdentity();
maxChild = descendantNode;
}
}
if(maxChild != previous) {
current.flaggedNode = true;
System.out.println("Problem found at: [" + current.taxID + "] Taxon rank: [" + current.taxonomicRank + "]");
highestProblemNode = current;
problemChild = maxChild;
}
previous = current;
current = current.parentNode;
}
if(highestProblemNode != null && highestProblemNode != keyNode.parentNode) {
problemChild.color = "yellow";
}
return highestProblemNode == keyNode.parentNode ? null : highestProblemNode;
}
/**
* Uses Similarity values to determine if the placement of a node is suspicious and requires investigation.
*
* @param keyNode
* @param matrixOrgNode
* @param rowOrgComparison
* @return
*/
public boolean isSuspicious(NCBITreeNode keyNode, NCBITreeNode matrixOrgNode, NCBIComparison rowOrgComparison) {
if(!matrixOrgNode.isDescendantOf(keyNode.parentNode) &&
!matrixOrgNode.isAncestorOf(keyNode)) {
//Get similarity between the key node and any pairwise compared node
double matrixOrgSim = rowOrgComparison.identity;
//If the similarity value is higher than the similarity
//between the key node and its parent.
if(matrixOrgSim > keyNode.parentSimilarity()) {
return true;
}
}
return false;
}
public void setNodeColors(NCBITreeNode keyNode, NCBITreeNode voteProblemNode, NCBITreeNode avgIDProblemNode) {
keyNode.color = "blue";
voteProblemNode.color = "red";
avgIDProblemNode.color = "green";
}
public void printSuspicious(NCBITreeNode keyNode, NCBIComparison rowOrgComparison, NCBITreeNode matrixOrgNode) {
System.out.println();
System.out.println("problem");
System.out.println("key org taxon ID " + keyNode.taxID);
System.out.println("matrix org " + matrixOrgNode.taxID);
System.out.println("par org taxon ID " + keyNode.getParentTaxonID());
System.out.println("other org " + rowOrgComparison);
System.out.println("par sim " + keyNode.parentSimilarity());
System.out.println("matrix sim " + rowOrgComparison.identity);
}
/**
* Method for creating a file with an input file name.
* @param fileName String for the file name.
*/
void createFile(String fileName) {
try {
//Creates a file object using the input file name.
File myObj = new File(fileName);
//If the file is successfully created, print a message saying so.
if (myObj.createNewFile()) {
System.out.println("File created: " + myObj.getName());
//If the file cannot be created, the file already exists
} else {
System.out.println("File already exists.");
}
//Catch a message if their are exceptions.
} catch (IOException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
/**
* Method to write information to a file.
* @param fileName Name of the file created using the createFile method.
* @param sb StringBuilder containing information to be written to the file.
*/
void writeToFile(String fileName, StringBuilder sb) {
try {
//Create a FileWriter object using the name of the file.
FileWriter myWriter = new FileWriter(fileName);
//Write the StringBuilder contents to the file
myWriter.write(sb.toString());
//Close the FileWriter object.
myWriter.close();
//Message on success.
System.out.println("Successfully wrote to the file.");
//Catch exceptions and write a message to alert the user.
} catch (IOException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
public void writeTrees(NCBITreeNode keyNode, NCBISparseTree tree) {
//Creates the tree output file name along with the path to the desired directory.
String currentTreeName = outpath + "SimilarityTree_" + keyNode.orgName + "_.dot";
//Create the output file.
createFile(currentTreeName);
//Write the .dot formatted tree to the file.
writeToFile(currentTreeName, tree.root.toDot(printAllNodes));
}
/*--------------------------------------------------------------*/
/*---------------- Fields ----------------*/
/*--------------------------------------------------------------*/
/**
* Pairwise similarity file generated by BBSketch.
*/
private String sim=null;
/**
* Tree file containing taxonomic relationships.
*/
private String treeFileName=null;
/**
* Output file name.
*/
private String out=null;
/**
* Output path for any output files.
*/
private String outpath=null;
/**
* Flag for indicating whether to write tree .dot files.
* If present in commandline args, set to true.
*/
private boolean writeTrees = false;
private boolean test=false;
private boolean ncbi=true;
private int mode=BOTH_MODE;
private NCBISparseTree tree = null;
private boolean printAllNodes = false;
private int goodTreesToPrint=0;
private int badTreesToPrint=0;
/*--------------------------------------------------------------*/
private long linesProcessed=0;
private long linesOut=0;
private long bytesProcessed=0;
private long bytesOut=0;
private long taxa=0;
/*--------------------------------------------------------------*/
public static int MAX_VOTES=20;
public static final int VOTE_MODE=0;
public static final int IDENTITY_MODE=1;
public static final int AVERAGE_IDENTITY_MODE=2;
public static final int BOTH_MODE=3;
/*--------------------------------------------------------------*/
/*---------------- Final Fields ----------------*/
/*--------------------------------------------------------------*/
private String[] header;
//private final FileFormat ffin;
//private final FileFormat ffout;
/*--------------------------------------------------------------*/
/*---------------- Common Fields ----------------*/
/*--------------------------------------------------------------*/
//private PrintStream outstream=System.err;
public static boolean verbose=false;
public boolean errorState=false;
private boolean overwrite=true;
private boolean append=false;
/**Output stream that output statistics are piped through to the output file. */
private java.io.PrintStream outstream=System.err;
}
|