コード例 #1
0
ファイル: test_count.py プロジェクト: Galithil/bcbio-nextgen
 def test_is_countfile_not_correct(self):
     test_file = os.path.join(self.organism_dir, "mouse.gtf")
     self.assertFalse(count.is_countfile(test_file))
コード例 #2
0
ファイル: test_count.py プロジェクト: yangjl/bcbio-nextgen
 def test_is_countfile_not_correct(self):
     test_file = os.path.join(self.organism_dir, "mouse.gtf")
     self.assertFalse(count.is_countfile(test_file))
コード例 #3
0
ファイル: test_count.py プロジェクト: Galithil/bcbio-nextgen
 def test_is_countfile_correct(self):
     test_file = os.path.join(self.data_dir, "test.count")
     self.assertTrue(count.is_countfile(test_file))
コード例 #4
0
ファイル: test_count.py プロジェクト: yangjl/bcbio-nextgen
 def test_is_countfile_correct(self):
     test_file = os.path.join(self.data_dir, "test.count")
     self.assertTrue(count.is_countfile(test_file))