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
|
package tax;
import java.io.File;
import java.util.ArrayList;
import fileIO.ByteFile;
import fileIO.ReadWrite;
import shared.Parse;
import shared.Shared;
import shared.Tools;
import structures.IntList;
/**
* @author Brian Bushnell
* @date Mar 10, 2015
*
*/
public class GiToTaxidInt {
public static void main(String[] args){
ReadWrite.USE_UNPIGZ=true;
ReadWrite.USE_PIGZ=true;
ReadWrite.ZIPLEVEL=9;
ReadWrite.PIGZ_BLOCKSIZE=256;
// ReadWrite.PIGZ_ITERATIONS=30;
for(String arg : args){
String[] split=arg.split("=");
String a=split[0].toLowerCase();
String b=split.length>1 ? split[1] : null;
shared.Parser.parseZip(arg, a, b);
}
// if(args.length>2 && false){//Run a test
// test(args);
// }else
if(args.length>=2){//Write array
initialize(args[0]);
ReadWrite.write(array, args[1], true);
}
}
public static void test(String[] args){
System.err.println(getID(1000));
System.err.println(getID(10000));
System.err.println(getID(10001));
System.err.println(getID(10002));
System.err.println(getID(10003));
System.err.println(getID(10004));
System.err.println(getID(10005));
System.err.println(getID(100000));
System.err.println(getID(1000000));
System.err.println(getID(10000000));
TaxTree tree=null;
if(args.length>1){
tree=TaxTree.loadTaxTree(args[0], System.err, true, true);
}
System.err.println("Strings:");
int x;
x=getID("gi|18104025|emb|AJ427095.1| Ceratitis capitata centromeric or pericentromeric satellite DNA, clone 44");
System.err.println(x);
if(tree!=null){
System.err.println(tree.getNode(x));
tree.incrementRaw(x, 30);
}
x=getID("gi|15982920|gb|AY057568.1| Arabidopsis thaliana AT5g43500/MWF20_22 mRNA, complete cds");
System.err.println(x);
if(tree!=null){
System.err.println(tree.getNode(x));
tree.incrementRaw(x, 40);
}
x=getID("gi|481043749|gb|KC494054.1| Plesiochorus cymbiformis isolate ST05-58 internal transcribed spacer 2, partial sequence");
System.err.println(x);
if(tree!=null){
System.err.println(tree.getNode(x));
tree.incrementRaw(x, 20);
}
if(tree!=null){
tree.percolateUp();
ArrayList<TaxNode> nodes=tree.gatherNodesAtLeastLimit(35);
for(TaxNode n : nodes){
System.err.println(n);
}
}
}
public static int parseGiToTaxid(String s){return parseGiToTaxid(s, '|');}
public static int parseGiToTaxid(String s, char delimiter){
int x=parseGiNumber(s, delimiter);
assert(x>=0) : s;
assert(array!=null) : "To use gi numbers, you must load a gi table.";
// if(x>=array.length || array[x]<0){x=(int)(Math.random()*array.length);} //Test to make sure array is nonempty.
if(x>=0 && x<array.length){return array[x];}
assert(x<array.length) : "The GI number "+x+" is too big.\n"
+ "Please update the gi table with the latest version from NCBI as per the instructions in gitable.sh.\n"
+ "To ignore this problem, please run with the -da flag.\n";
return -1;
}
public static int parseGiToTaxid(byte[] s){return parseGiToTaxid(s, '|');}
public static int parseGiToTaxid(byte[] s, char delimiter){
long x=parseGiNumber(s, delimiter);
if(x>=0 && x<array.length){return array[(int)x];}
if(x<0){return -1;}
assert(false) : x;
return -1;
}
/** Parse a gi number, or return -1 if formatted incorrectly. */
static int parseGiNumber(String s, char delimiter){
if(s==null || s.length()<4){return -1;}
// System.err.println("a");
if(s.charAt(0)=='>'){return getID(s.substring(1), delimiter);}
// System.err.println("b");
if(!s.startsWith("gi")){return -1;}
// System.err.println("c");
// System.err.println("d");
int initial=s.indexOf(delimiter);
// System.err.println("e");
if(initial<0){
if(delimiter!='~'){
delimiter='~';
initial=s.indexOf(delimiter);
}
if(initial<0){
delimiter='_';
initial=s.indexOf(delimiter);
}
if(initial<0){return -1;}
// System.err.println("f");
// System.err.println("g");
}
// System.err.println("h");
if(!Tools.isDigit(s.charAt(initial+1))){return -1;}
// System.err.println("i");
int number=0;
for(int i=initial+1; i<s.length(); i++){
char c=s.charAt(i);
if(c==delimiter){break;}
assert(Tools.isDigit(c));
number=(number*10)+(c-'0');
}
// System.err.println("j: "+number);
return number;
}
/** Parse a ncbi number, or return -1 if formatted incorrectly. */
public static int parseTaxidNumber(String s, char delimiter){
if(s==null || s.length()<5){return -1;}
if(s.charAt(0)=='>'){return parseTaxidNumber(s.substring(1), delimiter);}
if(!s.startsWith("ncbi") && !s.startsWith("tid")){return -1;}
int initial=s.indexOf(delimiter);
if(initial<0){
delimiter='_';
initial=s.indexOf(delimiter);
if(initial<0){return -1;}
}
if(!Tools.isDigit(s.charAt(initial+1))){return -1;}
int number=0;
for(int i=initial+1; i<s.length(); i++){
char c=s.charAt(i);
if(c==delimiter || c==' '){break;}
assert(Tools.isDigit(c)) : c+"\n"+s;
number=(number*10)+(c-'0');
}
return number;
}
public static int getID(String s){return getID(s, '|');}
/** Get the taxID from a header starting with a taxID or gi number */
public static int getID(String s, char delimiter){
int x=parseTaxidNumber(s, delimiter);
if(x>=0){return x;}
x=parseGiNumber(s, delimiter);
if(x>=0){return array[x];}
return -1;
}
/** Parse a gi number, or return -1 if formatted incorrectly. */
static int parseGiNumber(byte[] s, char delimiter){
if(s==null || s.length<4){return -1;}
if(!Tools.startsWith(s, "gi") && !Tools.startsWith(s, ">gi")){return -1;}
int initial=Tools.indexOf(s, (byte)delimiter);
if(initial<0){
delimiter='_';
initial=Tools.indexOf(s, (byte)delimiter);
if(initial<0){return -1;}
}
if(!Tools.isDigit(s[initial+1])){return -1;}
long number=0;
for(int i=initial+1; i<s.length; i++){
byte c=s[i];
if(c==delimiter){break;}
assert(Tools.isDigit(c));
number=(number*10)+(c-'0');
}
return (int)number;
}
/** Parse a gi number, or return -1 if formatted incorrectly. */
static int parseNcbiNumber(byte[] s, char delimiter){
if(s==null || s.length<3){return -1;}
if(!Tools.startsWith(s, "ncbi") && !Tools.startsWith(s, ">ncbi") && !Tools.startsWith(s, "tid") && !Tools.startsWith(s, ">tid")){return -1;}
int initial=Tools.indexOf(s, (byte)delimiter);
if(initial<0){
delimiter='_';
initial=Tools.indexOf(s, (byte)delimiter);
if(initial<0){return -1;}
}
if(!Tools.isDigit(s[initial+1])){return -1;}
int number=0;
for(int i=initial+1; i<s.length; i++){
byte c=s[i];
if(c==delimiter){break;}
assert(Tools.isDigit(c));
number=(number*10)+(c-'0');
}
return number;
}
public static int getID(byte[] s){return getID(s, '|');}
/** Get the taxID from a header starting with a taxID or gi number */
public static int getID(byte[] s, char delimiter){
int x=parseGiNumber(s, delimiter);
if(x>=0){return array[x];}
return parseNcbiNumber(s, delimiter);
}
/** Get the taxID from a gi number */
public static int getID(long gi){
assert(gi>=0) : gi;
assert(gi<Integer.MAX_VALUE) : gi+" > "+Integer.MAX_VALUE;
assert(gi<array.length) : gi+", "+array.length;
return array[(int)gi];
}
public static void initialize(String fname){
assert(fname!=null);
if(fileString==null || !fileString.equals(fname)){
synchronized(GiToTaxid.class){
if(!initialized || fileString==null || !fileString.equals(fname)){
fileString=fname;
if(fname.contains(".int1d")){
array=ReadWrite.read(int[].class, fname, true);
}else{
array=makeArray(fname);
}
}
initialized=true;
}
}
}
public static boolean isInitialized(){return initialized;}
public static synchronized void unload(){
array=null;
fileString=null;
initialized=false;
}
private static int[] makeArray(String fnames){
String[] split;
if(new File(fnames).exists()){split=new String[] {fnames};}
else if(fnames.indexOf(',')>=0){split=fnames.split(",");}
else if(fnames.indexOf('#')>=0){
assert(fnames.indexOf("/")<0) : "Note: Wildcard # only works for relative paths in present working directory.";
File dir=new File(System.getProperty("user.dir"));
String prefix=fnames.substring(0, fnames.indexOf('#'));
String suffix=fnames.substring(fnames.indexOf('#')+1);
File[] array=dir.listFiles();
StringBuilder sb=new StringBuilder();
String comma="";
for(File f : array){
String s=f.getName();
if(s.startsWith(prefix) && s.startsWith(suffix)){
sb.append(comma);
sb.append(s);
comma=",";
}
}
split=sb.toString().split(",");
}else{
throw new RuntimeException("Invalid file: "+fnames);
}
IntList list=new IntList();
// assert(max<Integer.MAX_VALUE) : "Overflow.";
// int[] x=new int[(int)max+1];
// Arrays.fill(x, -1);
long total=0;
for(String s : split){
long count=addToList(s, list);
total+=count;
}
return list.shrink().array;
}
private static long addToList(String fname, IntList list){
boolean warned=false;
ByteFile bf=ByteFile.makeByteFile(fname, true);
long count=0, invalid=0;
byte[] line=bf.nextLine();
while(line!=null){
if(line.length>0 && Tools.isDigit(line[line.length-1])){//Invalid lines will end with tab or na
count++;
int tab2=Tools.indexOfNth(line, '\t', 2);
int tab3=Tools.indexOfNth(line, '\t', 1, tab2+1);
assert(tab2>0 && (tab2<tab3) && tab3<line.length) : tab2+", "+tab3+", "+line.length;
assert(tab2<line.length && line[tab2]=='\t') : tab2+", "+tab3+", '"+new String(line)+"'";
assert(tab3<line.length && line[tab3]=='\t') : tab2+", "+tab3+", '"+new String(line)+"'";
// assert(false) : tab2+", "+tab3+", '"+new String(line)+"'";
int tid=Parse.parseInt(line, tab2+1, tab3);
int gi=Parse.parseInt(line, tab3+1, line.length);
if(gi>=Shared.MAX_ARRAY_LEN || gi<0){//A gi over 2.5b was observed May 3, 2021.
invalid++;
}else{
assert(gi>=0) : "tid="+tid+", gi="+gi+", line=\n'"+new String(line)+"'";
int old=list.get(gi);
assert(old==0 || old==tid) : "Contradictory entries for gi "+gi+": "+old+" -> "+tid+"\n'"+new String(line)+"'\ntab2="+tab2+", tab3="+tab3;
list.set(gi, tid);
//assert(x[gi]==-1 || x[gi]==ncbi) : "Contradictory entries for gi "+gi+": "+x[gi]+" -> "+ncbi;
// if(x[gi]!=-1 && x[gi]!=ncbi){
// if(!warned){
// System.err.println("***WARNING*** For file "+fname+":\n"+
// ("Contradictory entries for gi "+gi+": mapped to both taxID "+x[gi]+" and taxID "+ncbi)+
// "\nThis may be an error from NCBI and you may wish to report it, but it is\n"
// + "being suppressed because NCBI data is known to contain multi-mapped gi numbers,\n"
// + "at least between nucleotide and protein, and gi numbers are deprecated anyway.");
// warned=true;
// }
// }else{
// x[gi]=ncbi;
// }
}
}else{
if(line.length==0){System.err.println(fname+", "+count);}//debug
invalid++;
}
line=bf.nextLine();
}
if(verbose){System.err.println("Count: "+count+"; \tInvalid: "+invalid);}
bf.close();
return count;
}
// private static int[] makeArrayOld(String fnames){
// String[] split;
// if(new File(fnames).exists()){split=new String[] {fnames};}
// else{split=fnames.split(",");}
//
// long max=0;
// for(String s : split){
// max=Tools.max(max, findMaxID(s));
// }
//
// assert(max<Integer.MAX_VALUE) : "Overflow.";
// int[] x=new int[(int)max+1];
// Arrays.fill(x, -1);
//
// long total=0;
// for(String s : split){
// long count=fillArray(s, x);
// total+=count;
// }
// return x;
// }
//
// private static long findMaxID(String fname){
// ByteFile bf=ByteFile.makeByteFile(fname, true);
// long count=0, max=0;
// byte[] line=bf.nextLine();
// while(line!=null){
// count++;
// int tab=Tools.indexOf(line, (byte)'\t');
// long gi=Parse.parseLong(line, 0, tab);
// max=Tools.max(max, gi);
// line=bf.nextLine();
// }
// bf.close();
// return max;
// }
//
// private static long fillArray(String fname, int[] x){
// boolean warned=false;
// ByteFile bf=ByteFile.makeByteFile(fname, true);
// long count=0;
// byte[] line=bf.nextLine();
// while(line!=null){
// count++;
// int tab=Tools.indexOf(line, (byte)'\t');
// int gi=Parse.parseInt(line, 0, tab);
// int ncbi=Parse.parseInt(line, tab+1, line.length);
// //assert(x[gi]==-1 || x[gi]==ncbi) : "Contradictory entries for gi "+gi+": "+x[gi]+" -> "+ncbi;
// if(x[gi]!=-1 && x[gi]!=ncbi){
// if(!warned){
// System.err.println("***WARNING*** For file "+fname+":\n"+
// ("Contradictory entries for gi "+gi+": mapped to both taxID "+x[gi]+" and taxID "+ncbi)+
// "\nThis may be an error from NCBI and you may wish to report it, but it is\n"
// + "being suppressed because NCBI data is known to contain multi-mapped gi numbers,\n"
// + "at least between nucleotide and protein, and gi numbers are deprecated anyway.");
// warned=true;
// }
// }else{
// x[gi]=ncbi;
// }
// line=bf.nextLine();
// }
// if(verbose){System.err.println("Count: "+count);}
// bf.close();
// return count;
// }
private static int[] array;
private static String fileString;
public static boolean verbose=false;
private static boolean initialized=false;
}
|