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 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
|
package sketch;
import java.io.File;
import java.io.PrintStream;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map.Entry;
import java.util.concurrent.atomic.AtomicInteger;
import fileIO.ByteFile;
import fileIO.ByteStreamWriter;
import fileIO.FileFormat;
import fileIO.ReadWrite;
import shared.Parse;
import shared.Parser;
import shared.PreParser;
import shared.Shared;
import shared.Timer;
import shared.Tools;
import stream.ConcurrentReadInputStream;
import stream.FASTQ;
import stream.FastaReadInputStream;
import stream.Read;
import structures.ByteBuilder;
import structures.ListNum;
import structures.LongList;
import tax.AccessionToTaxid;
import tax.GiToTaxid;
import tax.ImgRecord2;
import tax.TaxNode;
import tax.TaxTree;
import tracker.ReadStats;
/**
* Creates MinHashSketches rapidly.
*
* @author Brian Bushnell
* @date July 6, 2016
*
*/
public class SketchMaker extends SketchObject {
/*--------------------------------------------------------------*/
/*---------------- Initialization ----------------*/
/*--------------------------------------------------------------*/
/**
* Code entrance from the command line.
* @param args Command line arguments
*/
public static void main(String[] args){
//Start a timer immediately upon code entrance.
Timer t=new Timer();
final int mode=parseMode(args);
if(mode==PER_FILE/* || mode==ONE_SKETCH || mode==PER_HEADER*/ || mode==PER_SEQUENCE){//ONE_SKETCH does not work for multiple input files.
recallCompareSketch(args);
return;
}
final int oldBufLen=Shared.bufferLen();
//Create an instance of this class
SketchMaker x=new SketchMaker(args);
//Run the object
x.process(t);
Shared.setBufferLen(oldBufLen);
//Close the print stream if it was redirected
Shared.closeStream(x.outstream);
}
private static void recallCompareSketch(String[] args){
ArrayList<String> list=new ArrayList<String>(args.length+1);
for(int i=0; i<args.length; i++){
if(args[i].startsWith("out=")){
args[i]=args[i].replaceFirst("out=", "outsketch=");
}
list.add(args[i]);
}
list.add("sketchonly");
CompareSketch.main(list.toArray(new String[0]));
}
/**
* Constructor.
* @param args Command line arguments
*/
public SketchMaker(String[] args){
{//Preparse block for help, config files, and outstream
PreParser pp=new PreParser(args, getClass(), false);
args=pp.args;
outstream=pp.outstream;
}
//Set shared static variables
ReadWrite.USE_PIGZ=ReadWrite.USE_UNPIGZ=true;
ReadWrite.setZipThreads(Shared.threads());
//Create a parser object
Parser parser=new Parser();
int minSizeKmers_=100;
int files_=1;
int mode_=ONE_SKETCH;
hashNames=true;
boolean setPrefilter=false;
defaultParams.printDepth=defaultParams.printDepth2=defaultParams.printVolume=false;
//Parse each argument
for(int i=0; i<args.length; i++){
String arg=args[i];
//Break arguments into their constituent parts, in the form of "a=b"
String[] split=arg.split("=");
String a=split[0].toLowerCase();
String b=split.length>1 ? split[1] : null;
if(a.equals("verbose")){
verbose=Parse.parseBoolean(b);
}else if(a.equals("files")){
files_=Integer.parseInt(b);
}else if(a.equals("minsize")){
minSizeKmers_=Parse.parseIntKMG(b);
}else if(a.equals("prefilter")){
prefilter=Parse.parseBoolean(b);
setPrefilter=true;
}
else if(a.equals("name") || a.equals("taxname")){
outTaxName=b;
}else if(a.equals("name0")){
outName0=b;
}else if(a.equals("fname")){
outFname=b;
}else if(a.equals("taxid") || a.equals("tid")){
outTaxID=Integer.parseInt(b);
}else if(a.equals("spid")){
outSpid=Integer.parseInt(b);
}else if(a.equals("imgid")){
outImgID=Integer.parseInt(b);
}else if((a.startsWith("meta_") || a.startsWith("mt_")) && b!=null){
if(outMeta==null){outMeta=new ArrayList<String>();}
int underscore=a.indexOf('_', 0);
outMeta.add(a.substring(underscore+1)+":"+b);
}else if(a.equals("parsesubunit")){
parseSubunit=Parse.parseBoolean(b);
}
else if(parseMode(arg, a, b)>-1){
mode_=parseMode(arg, a, b);
}else if(a.equals("parse_flag_goes_here")){
long fake_variable=Parse.parseKMG(b);
//Set a variable here
}
else if(a.equals("table") || a.equals("gi") || a.equals("gitable")){
giTableFile=b;
}else if(a.equals("taxtree") || a.equals("tree")){
taxTreeFile=b;
}else if(a.equals("accession")){
accessionFile=b;
}else if(a.equalsIgnoreCase("img") || a.equals("imgfile") || a.equals("imgdump")){
imgFile=b;
}
else if(a.equals("tossjunk")){
tossJunk=Parse.parseBoolean(b);
}
// else if(a.equals("silva")){//Handled by parser
// TaxTree.SILVA_MODE=Parse.parseBoolean(b);
// }
else if(a.equals("taxlevel") || a.equals("tl") || a.equals("level") || a.equals("lv")){
taxLevel=TaxTree.parseLevel(b);
}
else if(parseSketchFlags(arg, a, b)){
//do nothing
// System.err.println("a: "+arg);
}else if(parser.parse(arg, a, b)){//Parse standard flags in the parser
//do nothing
// System.err.println("b: "+arg);
}else if(defaultParams.parse(arg, a, b)){
//do nothing
// System.err.println("c: "+arg);
// System.err.println(defaultParams.printDepth);
}
else{
outstream.println("Unknown parameter "+args[i]);
assert(false) : "Unknown parameter "+args[i];
}
}
if("auto".equalsIgnoreCase(imgFile)){imgFile=TaxTree.defaultImgFile();}
if("auto".equalsIgnoreCase(taxTreeFile)){taxTreeFile=TaxTree.defaultTreeFile();}
if("auto".equalsIgnoreCase(giTableFile)){giTableFile=TaxTree.defaultTableFile();}
if("auto".equalsIgnoreCase(accessionFile)){accessionFile=TaxTree.defaultAccessionFile();}
outMeta=SketchObject.fixMeta(outMeta);
postParse();
minSizeKmers=minSizeKmers_;
mode=mode_;
minSizeBases=minSizeKmers_+k-1;
{//Process parser fields
Parser.processQuality();
maxReads=parser.maxReads;
overwrite=ReadStats.overwrite=parser.overwrite;
append=ReadStats.append=parser.append;
in1=parser.in1;
in2=parser.in2;
out1=parser.out1;
extin=parser.extin;
}
files=(out1==null ? 0 : files_);
if(!setPrefilter && !prefilter && (mode==PER_TAXA || mode==PER_IMG) && in1!=null && !in1.startsWith("stdin") && (AUTOSIZE || AUTOSIZE_LINEAR || targetSketchSize>200)){
prefilter=true;
System.err.println("Enabled prefilter due to running in per-"+(mode==PER_TAXA ? "taxa" : "IMG")+" mode; override with 'prefilter=f'.");
}
assert(mode!=ONE_SKETCH || files<2) : "Multiple output files are not allowed in single-sketch mode.";
//Do input file # replacement
if(in1!=null && in2==null && in1.indexOf('#')>-1 && !new File(in1).exists()){
in2=in1.replace("#", "2");
in1=in1.replace("#", "1");
}
//Adjust interleaved detection based on the number of input files
if(in2!=null){
if(FASTQ.FORCE_INTERLEAVED){outstream.println("Reset INTERLEAVED to false because paired input files were specified.");}
FASTQ.FORCE_INTERLEAVED=FASTQ.TEST_INTERLEAVED=false;
}
assert(FastaReadInputStream.settingsOK());
//Ensure there is an input file
if(in1==null){throw new RuntimeException("Error - at least one input file is required.");}
//Adjust the number of threads for input file reading
if(!ByteFile.FORCE_MODE_BF1 && !ByteFile.FORCE_MODE_BF2 && Shared.threads()>2){
ByteFile.FORCE_MODE_BF2=true;
}
ffout=makeFFArray(out1, files, overwrite, append);
if(ffout==null || ffout.length<1){
System.err.println("WARNING: No output files were specified; no sketches will be written.\n");
}
// //Ensure output files can be written
// if(!Tools.testOutputFiles(overwrite, append, false, out1)){
// outstream.println((out1==null)+", "+out1);
// throw new RuntimeException("\n\noverwrite="+overwrite+"; Can't write to output file "+out1+"\n");
// }
//Ensure input files can be read
if(!Tools.testInputFiles(false, true, in1, in2, taxTreeFile, giTableFile, imgFile, SSUMap.r16SFile, SSUMap.r18SFile)){
throw new RuntimeException("\nCan't read some input files.\n");
}
//Ensure that no file was specified multiple times
if(!Tools.testForDuplicateFiles(true, in1, in2, out1, taxTreeFile, giTableFile, imgFile, SSUMap.r16SFile, SSUMap.r18SFile)){
throw new RuntimeException("\nSome file names were specified multiple times.\n");
}
//Create input FileFormat objects
ffin1=FileFormat.testInput(in1, FileFormat.FASTQ, extin, true, true);
ffin2=FileFormat.testInput(in2, FileFormat.FASTQ, extin, true, true);
// assert(false) : defaultParams.trackCounts();
tool=new SketchTool(targetSketchSize, defaultParams);
if(taxTreeFile!=null){setTaxtree(taxTreeFile, outstream);}
if(giTableFile!=null){
loadGiToTaxid();
}
if(accessionFile!=null){
AccessionToTaxid.tree=taxtree;
outstream.println("Loading accession table.");
AccessionToTaxid.load(accessionFile);
System.gc();
}
if(imgFile!=null){
TaxTree.loadIMG(imgFile, true, outstream);
}
SSUMap.load(outstream);
if(prefilter){
if(mode==PER_TAXA){sizeList=sizeList(); sizeMap=null;}
else if(mode==PER_IMG){sizeMap=sizeMap(); sizeList=null;}
else{
assert(false) : "Wrong mode for prefilter; should be taxa or img.";
sizeList=null; sizeMap=null;
}
}else{
sizeList=null; sizeMap=null;
}
}
private static FileFormat[] makeFFArray(String fname0, int files, boolean overwrite, boolean append){
if(files<1 || fname0==null){return null;}
String[] fnames=new String[files];
FileFormat[] ff=new FileFormat[files];
for(int i=0; i<files; i++){
String fname=fname0;
if(files>1){
assert(fname.indexOf('#')>-1) : "Output name requires # symbol for multiple files.";
fname=fname.replaceFirst("#", ""+i);
}
fnames[i]=fname;
ff[i]=FileFormat.testOutput(fname, FileFormat.TEXT, null, true, overwrite, append, false);
}
if(!Tools.testOutputFiles(overwrite, append, false, fnames)){
throw new RuntimeException("\n\noverwrite="+overwrite+"; Can't write to output files "+Arrays.toString(fnames)+"\n");
}
return ff;
}
// private static ByteStreamWriter[] makeTSWArray(FileFormat[] ff){
// if(ff==null || ff.length==0){return null;}
// ByteStreamWriter[] tsw=new ByteStreamWriter[ff.length];
// for(int i=0; i<ff.length; i++){
// tsw[i]=new ByteStreamWriter(ff[i]);
// tsw[i].start();
// }
// return tsw;
// }
private static ByteStreamWriter[] makeTSWArray(FileFormat[] ff){
if(ff==null || ff.length==0){return null;}
ByteStreamWriter[] tsw=new ByteStreamWriter[ff.length];
for(int i=0; i<ff.length; i++){
tsw[i]=new ByteStreamWriter(ff[i]);
tsw[i].start();
}
return tsw;
}
/*--------------------------------------------------------------*/
/*---------------- Outer Methods ----------------*/
/*--------------------------------------------------------------*/
//Makes a list of genome sizes (bases, not kmers) per taxa.
private LongList sizeList(){
Timer t=new Timer();
Shared.GC_BEFORE_PRINT_MEMORY=true;
t.start("Making taxa prefilter.");
//For some reason this function is very slow, using only ~95% java and ~95% bgzip CPU.
//But that's about the same speed as reformat... BBDuk is only a little faster.
// assert(false) : ReadWrite.USE_PIGZ+", "+ReadWrite.USE_UNPIGZ+", "+ReadWrite.MAX_ZIP_THREADS+", "+Shared.threads();
LongList sizes=new LongList();
//Create a read input stream
final ConcurrentReadInputStream cris;
{
cris=ConcurrentReadInputStream.getReadInputStream(maxReads, true, ffin1, ffin2, null, null);
// if(defaultParams.samplerate!=1){cris.setSampleRate(defaultParams.samplerate, sampleseed);} //Why would I ever want this here?
cris.start(); //Start the stream
if(verbose){outstream.println("Started cris");}
}
//Grab the first ListNum of reads
ListNum<Read> ln=cris.nextList();
//Grab the actual read list from the ListNum
ArrayList<Read> reads=(ln!=null ? ln.list : null);
//As long as there is a nonempty read list...
while(ln!=null && reads!=null && reads.size()>0){//ln!=null prevents a compiler potential null access warning
// if(verbose){outstream.println("Fetched "+reads.size()+" reads.");} //Disabled due to non-static access
//Loop through each read in the list
for(int idx=0; idx<reads.size(); idx++){
final Read r1=reads.get(idx);
int taxID=-1;
TaxNode tn=null;
if(taxtree!=null){
tn=taxtree.parseNodeFromHeader(r1.id, bestEffort);
// System.err.println("A: "+bestEffort+", "+tn);//123
while(tn!=null && tn.pid!=tn.id && tn.level<taxLevel){
TaxNode temp=taxtree.getNode(tn.pid);
if(temp==null || temp.level>=TaxTree.LIFE){break;}
tn=temp;
}
if(tn!=null){taxID=tn.id;}
}
if(taxID>0){
long a=r1.length();
long b=r1.mateLength();
if(a<k){a=0;}
if(b<k){b=0;}
sizes.increment(taxID, a+b);
}
}
//Notify the input stream that the list was used
cris.returnList(ln);
// if(verbose){outstream.println("Returned a list.");} //Disabled due to non-static access
//Fetch a new list
ln=cris.nextList();
reads=(ln!=null ? ln.list : null);
}
//Notify the input stream that the final list was used
if(ln!=null){
cris.returnList(ln.id, ln.list==null || ln.list.isEmpty());
}
errorState|=ReadWrite.closeStream(cris);
// outstream.println("Created prefilter.");
t.stop("Created prefilter:");
Shared.printMemory();
System.err.println();
return sizes;
}
//Makes a list of genome sizes (bases, not kmers) per img.
private HashMap<Long, Long> sizeMap(){
Timer t=new Timer();
t.start("Making img prefilter.");
// assert(false) : ReadWrite.USE_PIGZ+", "+ReadWrite.USE_UNPIGZ+", "+ReadWrite.MAX_ZIP_THREADS+", "+Shared.threads();
HashMap<Long, Long> sizes=new HashMap<Long, Long>();
//Create a read input stream
final ConcurrentReadInputStream cris;
{
cris=ConcurrentReadInputStream.getReadInputStream(maxReads, true, ffin1, ffin2, null, null);
if(defaultParams.samplerate!=1){cris.setSampleRate(defaultParams.samplerate, sampleseed);}
cris.start(); //Start the stream
if(verbose){outstream.println("Started cris");}
}
//Grab the first ListNum of reads
ListNum<Read> ln=cris.nextList();
//Grab the actual read list from the ListNum
ArrayList<Read> reads=(ln!=null ? ln.list : null);
//As long as there is a nonempty read list...
while(ln!=null && reads!=null && reads.size()>0){//ln!=null prevents a compiler potential null access warning
// if(verbose){outstream.println("Fetched "+reads.size()+" reads.");} //Disabled due to non-static access
//Loop through each read in the list
for(int idx=0; idx<reads.size(); idx++){
final Read r1=reads.get(idx);
long imgID=ImgRecord2.parseImgId(r1.id, true);
assert(imgID>-1) : "IMG records must start with IMG number followed by a space: "+r1.id;
if(imgID>0){
long a=r1.length();
long b=r1.mateLength();
if(a<k){a=0;}
if(b<k){b=0;}
if(a+b>0){
Long old=sizes.get(imgID);
if(old==null){sizes.put(imgID, a+b);}
else{sizes.put(imgID, a+b+old);}
}
}
}
//Notify the input stream that the list was used
cris.returnList(ln);
// if(verbose){outstream.println("Returned a list.");} //Disabled due to non-static access
//Fetch a new list
ln=cris.nextList();
reads=(ln!=null ? ln.list : null);
}
//Notify the input stream that the final list was used
if(ln!=null){
cris.returnList(ln.id, ln.list==null || ln.list.isEmpty());
}
errorState|=ReadWrite.closeStream(cris);
// outstream.println("Created prefilter.");
t.stop("Created prefilter:");
Shared.printMemory();
System.err.println();
return sizes;
}
/** Create read streams and process all data */
void process(Timer t){
//Reset counters
readsProcessed=0;
basesProcessed=0;
if(mode==ONE_SKETCH && !forceDisableMultithreadedFastq && Shared.threads()>2 && ffin1.fastq()){
// Shared.setBufferLen(2);
singleSketchMT();
}else{
final int oldLen=Shared.bufferLen();
Shared.capBufferLen(ffin1.fastq() ? 40 : 4);
//Turn off read validation in the input threads to increase speed
final boolean vic=Read.VALIDATE_IN_CONSTRUCTOR;
Read.VALIDATE_IN_CONSTRUCTOR=Shared.threads()<4;
//Create a read input stream
final ConcurrentReadInputStream cris;
{
cris=ConcurrentReadInputStream.getReadInputStream(maxReads, true, ffin1, ffin2, null, null);
cris.start(); //Start the stream
if(verbose){outstream.println("Started cris");}
}
//Process the reads in separate threads
spawnThreads(cris);
if(verbose){outstream.println("Finished; closing streams.");}
//Write anything that was accumulated by ReadStats
errorState|=ReadStats.writeAll();
//Close the read streams
errorState|=ReadWrite.closeStream(cris);
//TODO: Write sketch
//Reset read validation
Read.VALIDATE_IN_CONSTRUCTOR=vic;
Shared.setBufferLen(oldLen);
}
//Report timing and results
t.stop();
outstream.println("Wrote "+sketchesWritten+" of "+sketchesMade+" sketches.\n");
outstream.println(Tools.timeReadsBasesProcessed(t, readsProcessed, basesProcessed, 8));
//Throw an exception of there was an error in a thread
if(errorState){
throw new RuntimeException(getClass().getName()+" terminated in an error state; the output may be corrupt.");
}
}
private void singleSketchMT(){
Timer t=new Timer();
Sketch sketch=tool.processReadsMT(ffin1, ffin2, Shared.threads(),
maxReads, mode, defaultParams.samplerate, defaultParams.minEntropy, defaultParams.minProb, defaultParams.minQual, false);
if(outTaxID>=0){sketch.taxID=outTaxID;}
if(outTaxName!=null){sketch.setTaxName(outTaxName);}
if(outFname!=null){sketch.setFname(outFname);}
if(outName0!=null){sketch.setName0(outName0);}
if(outSpid>=0){sketch.spid=outSpid;}
if(outImgID>=0){sketch.imgID=outImgID;}
sketch.setMeta(outMeta);
//Accumulate per-thread statistics
readsProcessed+=sketch.genomeSequences;
basesProcessed+=sketch.genomeSizeBases;
kmersProcessed+=sketch.genomeSizeKmers;
sketchesMade+=1;
t.stop("Finished sketching: ");
Shared.printMemory();
if(ffout!=null && ffout.length>0){
sketch.addSSU();
SketchTool.write(sketch, ffout[0]);
sketchesWritten+=1;
}
}
/** Spawn process threads */
@SuppressWarnings("unchecked")
private void spawnThreads(final ConcurrentReadInputStream cris){
//Do anything necessary prior to processing
Timer t=new Timer();
//Determine how many threads may be used
final int threads=Tools.mid(1, Shared.threads(), 14);//Probably capped for memory reasons. Rarely hits 1200% anyway (was 12, bumped to 14).
//Fill a list with ProcessThreads
ArrayList<ProcessThread> alpt=new ArrayList<ProcessThread>(threads);
if(mode==PER_TAXA || mode==PER_IMG){
longMaps=new HashMap[MAP_WAYS];
for(int i=0; i<longMaps.length; i++){
longMaps[i]=new HashMap<Long, SketchHeap>();
}
}
if(mode!=ONE_SKETCH){tsw=makeTSWArray(ffout);}
for(int i=0; i<threads; i++){
alpt.add(new ProcessThread(cris, i));
}
//Start the threads
for(ProcessThread pt : alpt){
pt.start();
}
//Wait for completion of all threads
boolean success=true;
SketchHeap singleHeap=null;
for(ProcessThread pt : alpt){
//Wait until this thread has terminated
while(pt.getState()!=Thread.State.TERMINATED){
try {
//Attempt a join operation
pt.join();
} catch (InterruptedException e) {
//Potentially handle this, if it is expected to occur
e.printStackTrace();
}
}
//Accumulate per-thread statistics
readsProcessed+=pt.readsProcessedT;
basesProcessed+=pt.basesProcessedT;
kmersProcessed+=pt.smm.kmersProcessed;
sketchesMade+=pt.sketchesMadeT;
sketchesWritten+=pt.sketchesWrittenT;
// System.err.println(pt.sketchesMadeT+" "+pt.sketchesWrittenT);
// System.err.println("pt.readsProcessedT="+pt.readsProcessedT);
if(mode==ONE_SKETCH){
SketchHeap temp=pt.smm.heap;
if(temp==null){
//do nothing
}else if(singleHeap==null){singleHeap=pt.smm.heap;}
else{singleHeap.add(pt.smm.heap);}
if(singleHeap!=null){
if(outTaxID>=0){singleHeap.taxID=outTaxID;}
if(outTaxName!=null){singleHeap.setTaxName(outTaxName);}
if(outFname!=null){singleHeap.setFname(outFname);}
if(outName0!=null){singleHeap.setName0(outName0);}
if(outImgID>=0){singleHeap.imgID=outImgID;}
singleHeap.genomeSizeBases=basesProcessed;
singleHeap.genomeSizeKmers=kmersProcessed;
singleHeap.genomeSequences=readsProcessed;
}
}
success&=pt.success;
}
if(singleHeap!=null){
singleHeap.setFname(ffin1.simpleName());
if(singleHeap.name0()==null){
singleHeap.setName0(ffin1.simpleName());
}
}
t.stop("Finished sketching: ");
Shared.printMemory();
if(ffout!=null){
if(mode==PER_TAXA || mode==PER_IMG){
if(tsw==null){tsw=makeTSWArray(ffout);}
success&=writeMap(longMaps);
}else if(mode==ONE_SKETCH){
Sketch sketch=new Sketch(singleHeap, true, tool.trackCounts, outMeta);
if(outTaxID>=0){sketch.taxID=outTaxID;}
if(outTaxName!=null){sketch.setTaxName(outTaxName);}
if(outFname!=null){sketch.setFname(outFname);}
if(outName0!=null){sketch.setName0(outName0);}
if(outSpid>=0){sketch.spid=outSpid;}
if(outImgID>=0){sketch.imgID=outImgID;}
if(ffout!=null && ffout.length>0){
sketch.addSSU();
SketchTool.write(sketch, ffout[0]);
}
sketchesMade++;
sketchesWritten++;
}
}
if(tsw!=null){
for(int i=0; i<tsw.length; i++){tsw[i].poisonAndWait();}
}
//Track whether any threads failed
if(!success){errorState=true;}
//Do anything necessary after processing
}
/*--------------------------------------------------------------*/
/*---------------- I/O Methods ----------------*/
/*--------------------------------------------------------------*/
private boolean writeMap(HashMap<Long, SketchHeap>[] maps){
//Determine how many threads may be used
final int threads=files;
//Fill a list with WriteThreads
ArrayList<WriteThread> alwt=new ArrayList<WriteThread>(threads);
@SuppressWarnings("unchecked")
ArrayDeque<SketchHeap>[] heaps=new ArrayDeque[threads];
for(int i=0; i<threads; i++){
heaps[i]=new ArrayDeque<SketchHeap>();
WriteThread wt=new WriteThread(i, heaps[i]);
alwt.add(wt);
}
for(int i=0; i<maps.length; i++){
HashMap<Long, SketchHeap> longMap=maps[i];
for(Entry<Long, SketchHeap> entry : longMap.entrySet()){
// set.remove(entry); This will probably not work
SketchHeap entryHeap=entry.getValue();
sketchesMade++;
if(entryHeap.size()>0 && entryHeap.genomeSizeKmers>=minSizeKmers){
heaps[(entry.hashCode()&Integer.MAX_VALUE)%threads].add(entryHeap);
}
}
// intMap.clear();
maps[i]=null;
}
//Start the threads
for(WriteThread wt : alwt){wt.start();}
//Wait for completion of all threads
boolean success=true;
for(WriteThread wt : alwt){
//Wait until this thread has terminated
while(wt.getState()!=Thread.State.TERMINATED){
try {
//Attempt a join operation
wt.join();
} catch (InterruptedException e) {
//Potentially handle this, if it is expected to occur
e.printStackTrace();
}
}
// sketchesMade+=wt.sketchesMadeT;
sketchesWritten+=wt.sketchesWrittenT;
success&=wt.success;
}
return success;
}
private class WriteThread extends Thread{
WriteThread(int tnum_, ArrayDeque<SketchHeap> queue_){
tnum=tnum_;
queue=queue_;
}
@Override
public void run(){
success=false;
for(SketchHeap polledHeap=queue.poll(); polledHeap!=null; polledHeap=queue.poll()){
if(polledHeap.sketchSizeEstimate()>0){
Sketch sketch=new Sketch(polledHeap, true, tool.trackCounts, outMeta);
if(outTaxID>=0 && sketch.taxID<0){sketch.taxID=outTaxID;}
if(outTaxName!=null && sketch.taxName()==null){sketch.setTaxName(outTaxName);}
if(outFname!=null && sketch.fname()==null){sketch.setFname(outFname);}
if(outName0!=null && sketch.name0()==null){sketch.setName0(outName0);}
if(outSpid>=0 && sketch.spid<0){sketch.spid=outSpid;}
if(outImgID>=0 && sketch.imgID<0){sketch.imgID=outImgID;}
sketch.addSSU();
SketchTool.write(sketch, tsw[tnum], bb);
sketchesWrittenT++;
}
}
bb=null;
success=true;
queue=null;
}
ArrayDeque<SketchHeap> queue;
final int tnum;
private ByteBuilder bb=new ByteBuilder();
// long sketchesMadeT=0;
long sketchesWrittenT=0;
boolean success=false;
}
// private void writeOutput(ConcurrentHashMap<Integer, SketchHeap> map){
// ByteStreamWriter tsw=new ByteStreamWriter(ffout);
// tsw.start();
// KeySetView<Integer, SketchHeap> y=map.keySet();
// for(Integer x : map.keySet()){
// SketchHeap smm.heap=map.get(x);
// Sketch s=tool.toSketch(smm.heap);
// tool.write(s, tsw);
// }
// tsw.poisonAndWait();
// }
/*--------------------------------------------------------------*/
/*---------------- Tax Methods ----------------*/
/*--------------------------------------------------------------*/
private void loadGiToTaxid(){
Timer t=new Timer();
outstream.println("Loading gi to taxa translation table.");
GiToTaxid.initialize(giTableFile);
t.stop();
if(true){
outstream.println("Time: \t"+t);
Shared.printMemory();
outstream.println();
}
}
/*--------------------------------------------------------------*/
/*---------------- Inner Methods ----------------*/
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
/*---------------- Inner Classes ----------------*/
/*--------------------------------------------------------------*/
private class ProcessThread extends Thread {
//Constructor
ProcessThread(final ConcurrentReadInputStream cris_, final int tid_){
cris=cris_;
threadID=tid_;
smm=new SketchMakerMini(tool, mode, defaultParams.minEntropy, defaultParams.minProb, defaultParams.minQual);
localMap=(mode==PER_TAXA ? new HashMap<Long, SketchHeap>() : null);
}
//Called by start()
@Override
public void run(){
//Do anything necessary prior to processing
//Process the reads
processInner();
//Do anything necessary after processing
bb=null;
//Indicate successful exit status
success=true;
}
/** Iterate through the reads */
void processInner(){
//Grab the first ListNum of reads
ListNum<Read> ln=cris.nextList();
//Grab the actual read list from the ListNum
ArrayList<Read> reads=(ln!=null ? ln.list : null);
//Check to ensure pairing is as expected
if(reads!=null && !reads.isEmpty()){
Read r=reads.get(0);
assert(ffin1.samOrBam() || (r.mate!=null)==cris.paired()); //Disabled due to non-static access
}
// long cntr1=0, cntr2=0, cntr3=0, cntr4=0;
//As long as there is a nonempty read list...
while(ln!=null && reads!=null && reads.size()>0){//ln!=null prevents a compiler potential null access warning
// if(verbose){outstream.println("Fetched "+reads.size()+" reads.");} //Disabled due to non-static access
//Loop through each read in the list
for(int idx=0; idx<reads.size(); idx++){
final Read r1=reads.get(idx);
final Read r2=r1.mate;
processReadPair(r1, r2);
}
//Notify the input stream that the list was used
cris.returnList(ln);
// if(verbose){outstream.println("Returned a list.");} //Disabled due to non-static access
//Fetch a new list
ln=cris.nextList();
reads=(ln!=null ? ln.list : null);
}
//Notify the input stream that the final list was used
if(ln!=null){
cris.returnList(ln.id, ln.list==null || ln.list.isEmpty());
}
if(mode==PER_TAXA && localMap.size()>0){dumpLocalMap();}
// System.out.println(cntr1+", "+cntr2+", "+cntr3+", "+cntr4);
}
void processReadPair(Read r1, Read r2){
if(mode==PER_TAXA){
assert(smm.heap==null || smm.heap.size()==0) : smm.heap.genomeSizeBases+", "+smm.heap;
assert(smm.heap==null || smm.heap.genomeSizeBases==0) : smm.heap.genomeSizeBases+", "+smm.heap;
}else if(mode==PER_SEQUENCE || mode==PER_IMG){
assert(smm.heap==null || smm.heap.size()==0) : smm.heap.genomeSizeBases+", "+smm.heap;
assert(smm.heap==null || smm.heap.genomeSizeBases==0) : smm.heap.genomeSizeBases+", "+smm.heap;
}else{
assert(smm.heap!=null && smm.heap.capacity()>=targetSketchSize) : targetSketchSize+", "+(smm.heap==null ? "null" : ""+smm.heap.capacity());
}
//Track the initial length for statistics
final int initialLength1=r1.length();
final int initialLength2=r1.mateLength();
final String rid=r1.id;
//Increment counters
readsProcessedT+=r1.pairCount();
basesProcessedT+=initialLength1+initialLength2;
if(initialLength1<k && initialLength2<k){return;}
final long expectedBases;
final long imgID;
{
int taxID=-1;
TaxNode tn=null;
if(taxtree!=null && (mode==PER_TAXA || mode==PER_IMG || mode==PER_SEQUENCE || ((mode==ONE_SKETCH/* || mode==PER_HEADER*/) && smm.heap.taxID<0))){
if(mode==PER_IMG){
imgID=ImgRecord2.parseImgId(rid, true);
tn=taxtree.imgToTaxNode(imgID);
if(tn==null){tn=taxtree.parseNodeFromHeader(rid, bestEffort);}
// assert(tn!=null || !rid.startsWith("tid")) : imgID+", "+taxID+", "+rid; //123
}else{
imgID=ImgRecord2.parseImgId(rid, false);
tn=taxtree.parseNodeFromHeader(rid, bestEffort);
// assert(tn!=null || !rid.startsWith("tid")) : imgID+", "+taxID+", "+rid; //123
}
// assert(false) : imgID +", "+rid;
// System.err.println("B: "+bestEffort+", "+tn);//123
while(tn!=null && tn.pid!=tn.id && tn.level<taxLevel){
TaxNode temp=taxtree.getNode(tn.pid);
if(temp==null || temp.level>=TaxTree.LIFE){break;}
tn=temp;
}
// assert(tn!=null) : imgID+", "+taxID+", "+rid; //123
if(tn!=null){taxID=tn.id;}
// System.err.println("Node: "+rid+"\n->\n"+tn);
// assert(taxID>0) : imgID+", "+taxID+", "+rid; //123
}else{
imgID=-1;
}
final long unitSizeBases;
if(sizeList!=null){
unitSizeBases=taxID<0 ? -1 : sizeList.get(taxID);
}else if(sizeMap!=null){
unitSizeBases=sizeMap.get(imgID);
}else{
unitSizeBases=-1;
}
if(mode==PER_TAXA){
if(tossJunk && tn==null){return;}
if(tn!=null){
if(taxID==0 || (tn.level>taxLevel && tn.level>=TaxTree.PHYLUM)){return;}
TaxNode parent=taxtree.getNode(tn.pid);
if(parent.pid==parent.id){return;}
if(prefilter && unitSizeBases>=0 && unitSizeBases<minSizeBases){return;}
if(tossJunk){
if(parent.level==TaxTree.LIFE){return;}
if(tn.level==TaxTree.NO_RANK){return;}
}
}
}
if(mode==PER_SEQUENCE){
expectedBases=initialLength1+initialLength2;
if(expectedBases<minSizeBases){return;}
int expectedSketchSize=toSketchSize(expectedBases, -1, -1, targetSketchSize);
if(expectedSketchSize<minSketchSize){return;}
if(smm.heap==null || smm.heap.capacity()<expectedSketchSize){
smm.heap=new SketchHeap(expectedSketchSize, defaultParams.minKeyOccuranceCount, defaultParams.trackCounts());
}
}else if(mode==PER_TAXA){
if(taxID>=0 && localMap.containsKey((long)taxID)){
smm.heap=localMap.get((long)taxID);
assert(smm.heap.taxID==taxID);
}else if(sizeList==null){
if(smm.heap==null){smm.heap=new SketchHeap(targetSketchSize, defaultParams.minKeyOccuranceCount, defaultParams.trackCounts());}
}else{
expectedBases=unitSizeBases>-1 ? unitSizeBases : initialLength1+initialLength2;
if(expectedBases<minSizeBases){return;}
int expectedSketchSize=toSketchSize(expectedBases, -1, -1, targetSketchSize);
if(expectedSketchSize<minSketchSize){return;}
if(smm.heap==null || smm.heap.capacity()!=expectedSketchSize){
smm.heap=new SketchHeap(expectedSketchSize, defaultParams.minKeyOccuranceCount, defaultParams.trackCounts());
}
// assert(taxID!=96897) : taxID+", "+expectedBases+", "+expectedSketchSize+", "+unitSizeBases+", "+initialLength1+", "+sizeList.get(taxID);
}
assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID;
}else if(mode==PER_IMG){
if(sizeMap==null){
if(smm.heap==null){smm.heap=new SketchHeap(targetSketchSize, defaultParams.minKeyOccuranceCount, defaultParams.trackCounts());}
}else{
expectedBases=unitSizeBases>-1 ? unitSizeBases : initialLength1+initialLength2;
if(expectedBases<minSizeBases){return;}
int expectedSketchSize=toSketchSize(expectedBases, -1, -1, targetSketchSize);
if(expectedSketchSize<minSketchSize){return;}
if(smm.heap==null || smm.heap.capacity()!=expectedSketchSize){
smm.heap=new SketchHeap(expectedSketchSize, defaultParams.minKeyOccuranceCount, defaultParams.trackCounts());
}
}
}
assert(smm.heap!=null) : mode+", "+(sizeList==null);
assert(taxID<0 || smm.heap.taxID<0 || smm.heap.taxID==taxID); //This is important.
assert(imgID<0 || smm.heap.imgID<0 || smm.heap.imgID==imgID);
if(smm.heap.taxID<0){smm.heap.taxID=taxID;}
if(smm.heap.imgID<0){smm.heap.imgID=imgID;}
if(smm.heap.name0()==null){
smm.heap.setName0(rid);
}
if(smm.heap.taxName()==null && tn!=null){
smm.heap.setTaxName(tn.name);
}
if(!bestEffort && tn==null){//Try to get a higher-level node
TaxNode tn2=taxtree.parseNodeFromHeader(rid, true);
if(tn2!=null){
while(tn2!=null && tn2.pid!=tn2.id && tn2.level<taxLevel){
TaxNode temp=taxtree.getNode(tn2.pid);
if(temp==null || temp.level>=TaxTree.LIFE){break;}
tn2=temp;
}
if(tn2.level<=taxLevel){
taxID=tn2.id;
}
if(smm.heap.taxID<0){smm.heap.taxID=tn2.id;}
if(smm.heap.taxName()==null && tn2!=null){
smm.heap.setTaxName(tn2.name);
}
}
}
//assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID; //123
assert(smm.heap.taxID<0 || smm.heap.taxName()!=null) : smm.heap.taxID+", "+smm.heap.taxName()+", "+smm.heap.name()+", "+tn;
//assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID; //123
if(initialLength1>=k){smm.processRead(r1);}
//assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID; //123
if(initialLength2>=k){smm.processRead(r2);}
//assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID; //123
if(mode==PER_SEQUENCE){
manageHeap_perSequence();
}else if(mode==PER_TAXA || mode==PER_IMG){
//assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID; //123
manageHeap_perTaxa(taxID, imgID, unitSizeBases);
if(localMap.size()>20){dumpLocalMap();}
}else if(mode==ONE_SKETCH/* || mode==PER_HEADER*/){
//do nothing
}else{
assert(false) : mode;
}
}
}
private void manageHeap_perSequence(){
assert(mode==PER_SEQUENCE);
writeHeap(smm.heap);
}
private void manageHeap_perTaxa(final int taxID, final long imgID, final long unitSizeBases){
//assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID; //123
assert(mode==PER_TAXA || mode==PER_IMG);
if(smm.heap.size()<=0 || ((taxID<0 && imgID<0) && smm.heap.genomeSizeKmers<minSizeKmers)){//Discard
assert(!localMap.containsKey((long)taxID));
smm.heap.clear(true);
return;
}
//TODO:
//I could, at this point, write to disk if smm.heap.genomeSize==taxSize.
//Or if the taxID is unknown.
final boolean known=(taxID>=0 || imgID>=0);
final boolean unknown=!known;
final boolean hasSize=(known && (sizeList!=null || sizeMap!=null));
boolean finished=(unknown || (hasSize && smm.heap.genomeSizeBases>=unitSizeBases));
//For some reason, this assertion fired for a single taxID (52271) halfway through sketching RefSeq.
//Likely a transient hardware error.
assert(!finished || smm.heap.genomeSizeBases==unitSizeBases) : finished+", "+unknown+", "+hasSize+", "+(sizeList==null)+"\n"
+taxID+", "+unitSizeBases+", "+smm.heap.genomeSizeBases+", "+smm.heap.genomeSizeKmers;
// if(finished && smm.heap.genomeSizeBases!=unitSizeBases){
// System.err.println("Warning: tid="+taxID+", finished="+finished+", known="+known+
// ", smm.heap.genomeSizeBases="+smm.heap.genomeSizeBases+", unitSizeBases="+unitSizeBases);
// }
smm.heap.taxID=taxID;
smm.heap.imgID=imgID;
//assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID; //123
final Long key;
if(imgID>-1 && (mode==PER_IMG || taxID<1)){key=imgID;}
else if(taxID>-1){key=(long)taxID;}
else{key=Long.valueOf(nextUnknown.getAndIncrement());}
//assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID; //123
if(unknown || finished){
writeHeap(smm.heap);
smm.heap.clear(true);
localMap.remove((long)taxID);
return;
}
//At this point, the taxID is known and this heap does not constitute the whole taxSize, or the taxSize is unknown.
if(!hasSize){
final HashMap<Long, SketchHeap> map=longMaps[(int)(key&MAP_MASK)];
final SketchHeap old;
synchronized(map){
old=map.get(key);
if(old==null){
map.put(key, smm.heap);
}else{
old.add(smm.heap);
}
}
if(old==null){
smm.heap=null;
}else{
smm.heap.clear(true);
assert(!localMap.containsKey((long)taxID));
}
localMap.remove((long)taxID);
return;
}
//assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID; //123
{
//At this point, the taxID is and taxSize are known, and this heap does not constitute the whole taxSize.
final int expectedHeapSize=toSketchSize(unitSizeBases, -1, -1, targetSketchSize);
assert(expectedHeapSize>=3) : expectedHeapSize;
// boolean writeHeap=false;
// boolean makeHeap=false;
SketchHeap local=null;
{
local=localMap.get(key);
assert(local==null || local.taxID==key.intValue());
if(local==smm.heap){
//do nothing
smm.heap=null;
}else if(local==null){
if(expectedHeapSize==smm.heap.capacity()){//Store the current heap
assert(smm.heap.taxID==key.intValue());
assert(smm.heap.name()!=null);
localMap.put(key, smm.heap);//Safe
smm.heap=null;
}else{//Store a precisely-sized heap
SketchHeap temp=new SketchHeap(expectedHeapSize, defaultParams.minKeyOccuranceCount, defaultParams.trackCounts());
temp.add(smm.heap);
assert(temp.taxID==key.intValue());
assert(temp.name()!=null);
localMap.put(key, temp);//Looks safe
// smm.heap=null; //Not sure which is better
smm.heap.clear(true);
}
}else{
assert(local.taxID==smm.heap.taxID);
assert(local!=smm.heap);
// assert(!localMap.containsKey((long)taxID) || localMap.get((long)taxID)==smm.heap) : taxID+", "+key; //123
// assert(false) : taxID+", "+key;
local.add(smm.heap); //This WAS the slow line. It should no longer be executed.
// if(local.genomeSizeBases>=unitSizeBases){
// writeHeap=true;
// localMap.remove(key);
// }
// smm.heap=null; //Not sure which is better
smm.heap.clear(true);
}
}
}
}
private void dumpLocalMap(){
for(Entry<Long, SketchHeap> e : localMap.entrySet()){
boolean writeHeap=false;
final Long key=e.getKey();
final SketchHeap localHeap=e.getValue();
final HashMap<Long, SketchHeap> map=longMaps[(int)(key&MAP_MASK)];
final SketchHeap old;
final long unitSizeBases;
if(sizeList!=null){
unitSizeBases=localHeap.taxID<0 ? -1 : sizeList.get((int)localHeap.taxID);
}else if(sizeMap!=null){
unitSizeBases=sizeMap.get(localHeap.imgID);
}else{
unitSizeBases=-1;
}
final int expectedHeapSize=toSketchSize(unitSizeBases, -1, -1, targetSketchSize);
synchronized(map){
old=map.get(key);
if(old==null){
if(expectedHeapSize==localHeap.capacity()){//Store the current heap
map.put(key, localHeap);
}else{//Store a precisely-sized heap
// assert(key.intValue()!=96897) : key+", "+unitSizeBases+", "+", "+sizeList.get(key.intValue());
assert(expectedHeapSize>0) : expectedHeapSize+", "+key+", "+localHeap.taxID+", "+localHeap.name()+", "+unitSizeBases;
SketchHeap temp=new SketchHeap(expectedHeapSize, defaultParams.minKeyOccuranceCount, defaultParams.trackCounts());
temp.add(localHeap);
map.put(key, temp);
}
}else{
old.add(localHeap); //This was the slow line; should be faster now.
if(old.genomeSizeBases>=unitSizeBases){
writeHeap=true;
map.remove(key);
}
}
}
if(writeHeap){
assert(old!=null); //For compiler
assert(old.genomeSizeBases>0) : unitSizeBases+", "+old.genomeSizeBases+", "+old.genomeSizeKmers;
assert(old.genomeSizeBases==unitSizeBases) : unitSizeBases+", "+old.genomeSizeBases+", "+old.genomeSizeKmers+", "+old.size()+", "+old.taxID;
writeHeap(old);
}
}
localMap.clear();
}
private boolean writeHeap(SketchHeap heap){
sketchesMadeT++;
// assert(heap.size()>0) : heap.size(); //Not really necessary
boolean written=false;
// assert(heap.heap.size()==heap.set.size()) : heap.heap.size()+", "+heap.set.size();
if(heap.size()>0 && heap.genomeSizeKmers>=minSizeKmers && heap.sketchSizeEstimate()>0){
Sketch sketch=new Sketch(heap, true, tool.trackCounts, outMeta);
if(outTaxID>=0 && sketch.taxID<0){sketch.taxID=outTaxID;}
if(outTaxName!=null && sketch.taxName()==null){sketch.setTaxName(outTaxName);}
if(outFname!=null && sketch.fname()==null){sketch.setFname(outFname);}
if(outName0!=null && sketch.name0()==null){sketch.setName0(outName0);}
if(outSpid>=0 && sketch.spid<0){sketch.spid=outSpid;}
if(outImgID>=0 && sketch.imgID<0){sketch.imgID=outImgID;}
if(parseSubunit && sketch.name0()!=null){
if(outMeta!=null){
sketch.meta=(ArrayList<String>)sketch.meta.clone();
}else if(sketch.meta==null){
if(sketch.name0().contains("SSU_")){
sketch.addMeta("subunit:ssu");
}else if(sketch.name0().contains("LSU_")){
sketch.addMeta("subunit:lsu");
}
}
}
if(tsw!=null){
final int choice=(sketch.hashCode()&Integer.MAX_VALUE)%files;
sketch.addSSU();
synchronized(tsw[choice]){
SketchTool.write(sketch, tsw[choice], bb);
sketchesWrittenT++;
written=true;
}
}
}else{
heap.clear(true);
}
assert(heap.genomeSizeBases==0);
assert(heap.genomeSequences==0);
return written;
}
/** Number of reads processed by this thread */
protected long readsProcessedT=0;
/** Number of bases processed by this thread */
protected long basesProcessedT=0;
long sketchesMadeT=0;
long sketchesWrittenT=0;
/** True only if this thread has completed successfully */
boolean success=false;
/** Shared input stream */
private final ConcurrentReadInputStream cris;
/** Thread ID */
final int threadID;
private ByteBuilder bb=new ByteBuilder();
final SketchMakerMini smm;
final HashMap<Long, SketchHeap> localMap;
}
/*--------------------------------------------------------------*/
/*---------------- Fields ----------------*/
/*--------------------------------------------------------------*/
/** Primary input file path */
private String in1=null;
/** Secondary input file path */
private String in2=null;
/** Primary output file path */
private String out1=null;
/** Override input file extension */
private String extin=null;
private String giTableFile=null;
private String taxTreeFile=null;
private String accessionFile=null;
private String imgFile=null;
/*Override metadata */
String outTaxName=null;
String outFname=null;
String outName0=null;
int outTaxID=-1;
long outSpid=-1;
long outImgID=-1;
ArrayList<String> outMeta=null;
static boolean parseSubunit=false;
/*--------------------------------------------------------------*/
/** Number of reads processed */
protected long readsProcessed=0;
/** Number of bases processed */
protected long basesProcessed=0;
/** Number of bases processed */
protected long kmersProcessed=0;
/** Number of sketches started */
protected long sketchesMade=0;
/** Number of sketches written */
protected long sketchesWritten=0;
/** Quit after processing this many input reads; -1 means no limit */
private long maxReads=-1;
final LongList sizeList;
final HashMap<Long, Long> sizeMap;
private HashMap<Long, SketchHeap> longMaps[];
private ByteStreamWriter tsw[];
/*--------------------------------------------------------------*/
/*---------------- Final Fields ----------------*/
/*--------------------------------------------------------------*/
/** Primary input file */
private final FileFormat ffin1;
/** Secondary input file */
private final FileFormat ffin2;
/** Primary output files */
private final FileFormat ffout[];
/** Number of output files */
private final int files;
final int mode;
private final SketchTool tool;
/** Don't make sketches from sequences smaller than this */
final int minSizeBases;
/** Don't make sketches from sequences smaller than this */
final int minSizeKmers;
private int taxLevel=1;
private boolean prefilter=false;
private boolean tossJunk=true;
boolean bestEffort=true;
// private final HashMap<Integer, byte[]> ssuMap=null;
private final AtomicInteger nextUnknown=new AtomicInteger(minFakeID);
private static final int MAP_WAYS=32;
private static final int MAP_MASK=MAP_WAYS-1;
/*--------------------------------------------------------------*/
/*---------------- Common Fields ----------------*/
/*--------------------------------------------------------------*/
/** Print status messages to this output stream */
private PrintStream outstream=System.err;
/** Print verbose messages */
public static boolean verbose=false;
/** True if an error was encountered */
public boolean errorState=false;
/** Overwrite existing output files */
private boolean overwrite=true;
/** Append to existing output files */
private boolean append=false;
}
|