コード例 #1
0
 public boolean passesGenomicThreshold(int count, char strand) {
   boolean pass = true;
   for (BackgroundModel m : models) {
     if (m.isGenomeWide() && m.getStrand() == strand) if (!m.passesThreshold(count)) pass = false;
   }
   return pass;
 }
コード例 #2
0
 public boolean passesAllThresholds(int count, char strand) {
   boolean pass = true;
   for (BackgroundModel m : models) {
     if (m.getStrand() == strand) if (!m.passesThreshold(count)) pass = false;
   }
   return pass;
 }