Esempio n. 1
0
    def test_fastq_manifest_format_validate_negative(self):
        filepath = self.get_data_path('not-MANIFEST')
        format = FastqManifestFormat(filepath, mode='r')

        with self.assertRaisesRegex(ValueError, 'FastqManifestFormat'):
            format.validate()
Esempio n. 2
0
    def test_fastq_manifest_format_validate_negative(self):
        filepath = self.get_data_path('not-MANIFEST')
        format = FastqManifestFormat(filepath, mode='r')

        with self.assertRaisesRegex(ValueError, 'FastqManifestFormat'):
            format.validate()
Esempio n. 3
0
    def test_fastq_manifest_format_validate_positive(self):
        filepath = self.get_data_path('single_end_data/MANIFEST')
        format = FastqManifestFormat(filepath, mode='r')

        format.validate()
Esempio n. 4
0
    def test_fastq_manifest_format_validate_positive(self):
        filepath = self.get_data_path('single_end_data/MANIFEST')
        format = FastqManifestFormat(filepath, mode='r')

        format.validate()