view CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/opt/bbmap-39.01-1/current/fun/ProbShared.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 fun;

public class ProbShared {

	public static void main(String args[]){
		int k=Integer.parseInt(args[0]);
		int len1=Integer.parseInt(args[1]);
		int len2=Integer.parseInt(args[2]);

		System.out.println("Cardinality 1: "+cardinality(k, len1));
		System.out.println("Cardinality 2: "+cardinality(k, len2));
		System.out.println("Probability:   "+probIntersect(k, len1, len2));
		
	}
	
	static int cardinality(int k, int seqLength){
		double space=Math.pow(4, k);
		int kmers=seqLength-k+1;
		double unique=0;
		for(int i=0; i<kmers; i++){
			double prob=(space-unique)/space;
			unique+=prob;
		}
		return (int)Math.round(unique);
	}

	static double probIntersect(int k, int len1, int len2){
		int card1=cardinality(k, len1);
		int card2=cardinality(k, len2);
		double space=Math.pow(4, k);
		double cumulativeProbUnshared=1;
		for(int i=0; i<card1; i++){
			double probShared=card2/space;
			double probUnshared=1-probShared;
			space-=probUnshared;
			cumulativeProbUnshared*=probUnshared;
		}
		return 1-cumulativeProbUnshared;
	}
	
}