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
|
package bin;
import java.io.PrintStream;
import java.util.Arrays;
import java.util.Collection;
import dna.AminoAcid;
import ml.CellNet;
import shared.Tools;
import structures.IntHashMap;
import tax.TaxTree;
/**
* Superclass for binner classes
* @author Brian Bushnell
* @date Feb 4, 2025
*
*/
public class BinObject {
public static void setQuant(int x) {
quant=x;
assert(quant>0);
initialize();
}
// public static void setK(int x) {
// assert(k>0 && k<16);
// k=x;
// }
private static void initialize() {
remapMatrix=makeRemapMatrix(2, 5);
canonicalKmers=makeCanonicalKmers();
invCanonicalKmers=makeInvCanonicalKmers();
gcmapMatrix=makeGCMapMatrix();
}
private static synchronized int[][] makeRemapMatrix(int mink, int maxk){
int[][] matrix=new int[maxk+1][];
for(int i=mink; i<=maxk; i++) {
matrix[i]=makeRemap(i);
}
return matrix;
}
private static synchronized int[][] makeGCMapMatrix(){
int[][] matrix=new int[remapMatrix.length][];
for(int i=0; i<matrix.length; i++) {
int[] remap=remapMatrix[i];
if(remap!=null) {
matrix[i]=gcmap(i, remap);
}
}
return matrix;
}
private static synchronized int[] makeCanonicalKmers() {
int[] array=new int[remapMatrix.length];
for(int i=0; i<array.length; i++) {
int[] remap=remapMatrix[i];
int max=(remap==null ? 1 : Tools.max(remap)+1);
array[i]=max;
}
return array;
}
private static synchronized float[] makeInvCanonicalKmers() {
float[] array=new float[canonicalKmers.length];
for(int i=0; i<array.length; i++) {
array[i]=1f/canonicalKmers[i];
}
return array;
}
public static int[] makeRemap(int k){
final int bits=2*k;
final int max=(int)((1L<<bits)-1);
int count=0;
IntHashMap canonMap=new IntHashMap();
IntHashMap kmerMap=new IntHashMap();
for(int kmer=0; kmer<=max; kmer++){
// int ungapped=ungap(kmer, k, gap);
int canon=Tools.min(kmer, AminoAcid.reverseComplementBinaryFast(kmer, k));
if(canon%quant==0 && !canonMap.containsKey(canon)) {
canonMap.put(canon, count);
count++;
}
int idx=canonMap.get(canon);
kmerMap.put(kmer, idx);
}
int[] remap=new int[max+1];
Arrays.fill(remap, -1);
for(int kmer=0; kmer<=max; kmer++){
remap[kmer]=kmerMap.get(kmer);
// System.err.println(AminoAcid.kmerToString(kmer, k2)+" -> "+AminoAcid.kmerToString(remap[kmer], k));
}
return remap;
}
public static int ungap(int kmer, int k, int gap) {
if(gap<1) {return kmer;}
int half=k/2;
int halfbits=half*2;
int gapbits=2*gap;
int mask=~((-1)<<halfbits);
int ungapped=(kmer&mask)|((kmer>>gapbits)&~mask);
return ungapped;
}
public static int[] gcmap(int k, int[] remap){
int[] gcContent=new int[] {0, 1, 1, 0};
final int bits=2*k;
final int max=(int)((1L<<bits)-1);
int[] gcmap=new int[canonicalKmers[k]];
for(int kmer=0; kmer<=max; kmer++){
int gc=0;
for(int i=0, kmer2=kmer; i<k; i++) {
gc+=gcContent[kmer2&3];
kmer2>>=2;
}
int idx=remap[kmer];
gcmap[idx]=gc;
}
return gcmap;
}
public static int countKmers(final byte[] bases, final int[] counts, int k){
if(quant>1) {return countKmers_quantized(bases, counts, k);}
if(bases==null || bases.length<k){return 0;}
final int shift=2*k;
final int mask=~((-1)<<shift);
int kmer=0;
// int rkmer=0;
int len=0;
int valid=0;
int[] remap=remapMatrix[k];
for(int i=0; i<bases.length; i++){
byte b=bases[i];
int x=AminoAcid.baseToNumber[b];
// int x2=AminoAcid.baseToComplementNumber[b];
kmer=((kmer<<2)|x)&mask;
// rkmer=((rkmer>>>2)|(x2<<shift2))&mask;
if(x>=0){
len++;
if(len>=k) {
valid++;
counts[remap[kmer]]++;
}
}else{len=kmer=0;}
}
return valid;
}
public static int countKmers_quantized(final byte[] bases, final int[] counts, int k){
if(bases==null || bases.length<k){return 0;}
// counts=(counts!=null ? counts : new int[canonicalKmers]);
final int shift=2*k;
final int mask=~((-1)<<shift);
int[] remap=remapMatrix[k];
int kmer=0;
int len=0;
int valid=0;
for(int i=0; i<bases.length; i++){
byte b=bases[i];
int x=AminoAcid.baseToNumber[b];
kmer=((kmer<<2)|x)&mask;
if(x>=0){
len++;
if(len>=k) {
valid++;
int pos=remap[kmer];
if(pos>=0) {counts[pos]++;}
}
}else{len=kmer=0;}
}
return valid;
}
/**
* @param a Contig kmer frequencies
* @param b Cluster kmer frequencies
* @return Score
*/
static final float absDif(float[] a, float[] b){
assert(a.length==b.length);
double sum=0;
for(int i=0; i<a.length; i++){
sum+=Math.abs(a[i]-b[i]);
}
return (float)sum;
}
static final float absDif(int[] a, int[] b){
return absDif(a, b, 1f/Tools.sum(a), 1f/Tools.sum(b));
}
/**
* @param a Contig kmer counts
* @param b Cluster kmer counts
* @return Score
*/
static final float absDif(int[] a, int[] b, float inva, float invb){
assert(a.length==b.length);
float sum=0;
for(int i=0; i<a.length; i++){
float ai=a[i]*inva, bi=b[i]*invb;
sum+=Math.abs(ai-bi);
}
return sum;
}
/**
* @param a Contig kmer frequencies
* @param b Cluster kmer frequencies
* @return Score
*/
static final float rmsDif(float[] a, float[] b){
assert(a.length==b.length);
double sum=0;
for(int i=0; i<a.length; i++){
// double d=Tools.absdif((double)a[i], (double)b[i]);
double d=(a[i])-(b[i]);
sum+=d*d;
}
return (float)Math.sqrt(sum/a.length);
}
static final float rmsDif(int[] a, int[] b){
return rmsDif(a, b, 1f/Tools.sum(a), 1f/Tools.sum(b));
}
/**
* @param a Contig kmer counts
* @param b Cluster kmer counts
* @return Score
*/
static final float rmsDif(int[] a, int[] b, float inva, float invb){
assert(a.length==b.length);
long sum=0;
for(int i=0; i<a.length; i++){
float ai=a[i]*inva, bi=b[i]*invb;
float d=(ai-bi);
sum+=d*d;
}
return (float)Math.sqrt(sum/a.length);
}
/**
* @param a Contig kmer frequencies
* @param b Cluster kmer frequencies
* @return Score
*/
static final float ksFunction(float[] a, float[] b){
assert(a.length==b.length);
double sum=0;
for(int i=0; i<a.length; i++){
double ai=a[i]+0.0005;
double bi=b[i]+0.0005;
double d=(double)ai*Math.log(ai/bi);
sum+=d;
}
return (float)sum;
}
static boolean isValid(Collection<? extends Bin> list, boolean allowLeafContigs) {
for(Bin b : list) {
if(b.isCluster()) {
Cluster c=(Cluster)b;
assert(c.isValid());
for(Contig x : c.contigs) {assert(x.isValid());}
}else {
Contig c=(Contig)b;
assert(c.isValid());
assert(allowLeafContigs || c.cluster()==null);
// assert(c.cluster()==null || c.cluster().isValid()); //This is too slow
}
}
return true;
}
// public static int k() {return k;}
//// public static int gap() {return gap;}
//
// /** Kmer length for frequencies */
// private static int k=4;
// /** Kmer gap length */
//// private static int gap=0;
private static int quant=1;//Determines how many tetramers to use for comparisons
/** Maps a kmer to index in frequency array */
public static int[][] remapMatrix=makeRemapMatrix(2, 5);
/** Number of canonical kmers; frequency array length */
public static int[] canonicalKmers=makeCanonicalKmers();
public static float[] invCanonicalKmers=makeInvCanonicalKmers();
/** Maps a kmer to index in gc content array */
public static int[][] gcmapMatrix=makeGCMapMatrix();
/** Print status messages to this output stream */
static PrintStream outstream=System.err;
static TaxTree tree=null;
static int minClusterSize=50000;
static int minContigsPerCluster=1;
static float depthBoost=0.25f;
public static boolean countPentamers=true;
public static int minPentamerSizeCount=2000;
public static int minPentamerSizeCompare=40000;
static boolean loud=false;
static boolean verbose;
static float sketchDensity=1/100f;
static boolean sketchContigs=false;
static boolean sketchClusters=false;
static boolean sketchOutput=false;
static boolean sketchInBulk=true;
static int sketchSize=20000;
static boolean validation=false;
static boolean grading=false;
static boolean parseTaxid=true;
static boolean depthZeroProxy=true;
static int globalTime=0;
static CellNet net0small=null;
static CellNet net0mid=null;
static CellNet net0large=null;
// static {setK(4, 0);}
// static {
// for(int i=0; i<6; i++) {
// System.err.println("K="+i);
// System.err.println("canonicalKmers="+canonicalKmers[i]);
// System.err.println("invCanonicalKmers="+invCanonicalKmers[i]);
// System.err.println("remapMatrix="+Arrays.toString(remapMatrix[i]));
// System.err.println("gcmapMatrix="+Arrays.toString(gcmapMatrix[i]));
// }
// assert(false);
// }
}
|