예제 #1
0
def test_transcript_splice_junctions():
    f = dummy('g.gff')
    features = Feature.from_file(f.name)
    juncs = transcript_splice_junctions(features)
    eq_({
        'Chr1_40.1': [220, 302],
        'Chr1_364.1': [83],
        'Chr1_366.1': [90, 196, 326, 535],
    }, juncs)
예제 #2
0
def test_transcript_splice_junctions():
    f = dummy('g.gff')
    features = Feature.from_file(f.name)
    juncs = transcript_splice_junctions(features)
    eq_(
        {
            'Chr1_40.1': [220, 302],
            'Chr1_364.1': [83],
            'Chr1_366.1': [90, 196, 326, 535],
        }, juncs)
예제 #3
0
 def mapper_init(self):
     """TODO"""
     features = Feature.from_file(self.options.reference)
     self.junctions = transcript_splice_junctions(features)
예제 #4
0
 def mapper_init(self):
     """TODO"""
     features = Feature.from_file(self.options.reference)
     self.junctions = transcript_splice_junctions(features)