Pre-filter saturating sequences only. Retaining singletons seems to improve matching accuracy in high sample rate test (well populations 10% of total cell sample size)

This commit is contained in:
eugenefischer
2022-09-25 15:19:56 -05:00
parent 1971a96467
commit 4f2fa4cbbe

View File

@@ -48,9 +48,9 @@ public class Simulator implements GraphModificationFunctions {
if(verbose){System.out.println("Well maps made");} if(verbose){System.out.println("Well maps made");}
//if(verbose){System.out.println("Removing singleton sequences and sequences present in all wells.");} if(verbose){System.out.println("Removing sequences present in all wells.");}
//filterByOccupancyThresholds(allAlphas, 2, numWells - 1); filterByOccupancyThresholds(allAlphas, 1, numWells - 1);
//filterByOccupancyThresholds(allBetas, 2, numWells - 1); filterByOccupancyThresholds(allBetas, 1, numWells - 1);
if(verbose){System.out.println("Sequences removed");} if(verbose){System.out.println("Sequences removed");}
int pairableAlphaCount = allAlphas.size(); int pairableAlphaCount = allAlphas.size();
if(verbose){System.out.println("Remaining alphas count: " + pairableAlphaCount);} if(verbose){System.out.println("Remaining alphas count: " + pairableAlphaCount);}