コード例 #1
0
ファイル: ReadUtils.java プロジェクト: AriesLL/gatk
 /**
  * Returns the reverse complement of the read bases
  *
  * @param read the read
  * @return the reverse complement of the read bases
  */
 public static String getBasesReverseComplement(final GATKRead read) {
   return getBasesReverseComplement(read.getBases());
 }