Пример #1
0
 /**
  * Gene Pair Analysis (GPA) by Common Chips, of biclusters in the <code>list.idx</code>. Each gene
  * pair obtains a score, which is the maximum size of the chip set, where the two genes are
  * co-biclustered.
  *
  * <p>Additionally, updates the dataset list with obtained results.
  */
 public HashMap gpaByCommonChips(LinkedList bcList, int minCommonScore) {
   return AnalysisUtil.gpaByCommonChips(minCommonScore, bcList);
 }