Mercurial > repos > rliterman > csp2
view CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/opt/bbmap-39.01-1/current/bloom/KmerCountAbstract.java @ 68:5028fdace37b
planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author | jpayne |
---|---|
date | Tue, 18 Mar 2025 16:23:26 -0400 |
parents | |
children |
line wrap: on
line source
package bloom; import shared.Shared; /** * @author Brian Bushnell * @date Dec 2, 2014 * */ public abstract class KmerCountAbstract { protected static final long[] transformToFrequency(int[] count){ long[] freq=new long[2000]; int max=freq.length-1; for(int i=0; i<count.length; i++){ int x=count[i]; x=min(x, max); freq[x]++; } return freq; } protected static final long sum(int[] array){ long x=0; for(int y : array){x+=y;} return x; } protected static final long sum(long[] array){ long x=0; for(long y : array){x+=y;} return x; } protected static final int min(int x, int y){return x<y ? x : y;} protected static final int max(int x, int y){return x>y ? x : y;} public static byte minQuality=6; public static long readsProcessed=0; public static long maxReads=-1; public static float minProb=0.5f; public static long keysCounted=0; public static long increments=0; public static final boolean verbose=false; public static boolean PREJOIN=false; public static boolean CANONICAL=false; public static boolean KEEP_DUPLICATE_KMERS=true; public static boolean SKETCH_MODE=false; public static boolean STORE_HASHED=false; public static boolean BUFFERED=false; public static int BUFFERLEN=3000; //Optimal is in the range of 2000-8000 for Clumpified 2x150bp data. // public static boolean SORT_SERIAL=false; //Not needed, see parallel sort flag public static int maxShortKmerLength=31; }