Augment function isChrM by allowing "CRS" in addition to "chrM" or "MT", as a standard contig name indicating the mitochondrial chromosome. CRS stands for Cambridge Reference Sequence and is the standard in the field.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5119 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
7af0532292
commit
5934b9cb82
|
|
@ -294,7 +294,7 @@ public class TranscriptToGenomicInfo extends RodWalker<Integer, Integer> {
|
|||
}
|
||||
|
||||
private static boolean isChrM(final TranscriptTableRecord record) {
|
||||
return record.txChrom.equals("chrM") || record.txChrom.equals("MT");
|
||||
return record.txChrom.equals("chrM") || record.txChrom.equals("MT")|| record.txChrom.equals("CRS");
|
||||
}
|
||||
|
||||
private void generateOutputRecordsForROD(TranscriptTableRecord parsedTranscriptRod) throws IOException {
|
||||
|
|
|
|||
Loading…
Reference in New Issue