當前位置: 首頁>>代碼示例>>Python>>正文


Python ebi.EBISubmission類代碼示例

本文整理匯總了Python中qiita_ware.ebi.EBISubmission的典型用法代碼示例。如果您正苦於以下問題:Python EBISubmission類的具體用法?Python EBISubmission怎麽用?Python EBISubmission使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了EBISubmission類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_get_experiment_alias

 def test_get_experiment_alias(self):
     e = EBISubmission('2', 'Study Title', 'Study Abstract',
                       investigation_type='Other',
                       new_investigation_type='metagenome')
     e.add_sample('foo', '9606', 'homo sapiens', 'desc1')
     exp = '%s_ppdid_2:foo' % qiita_config.ebi_organization_prefix
     self.assertEqual(e._get_experiment_alias('foo'), exp)
開發者ID:MarkBruns,項目名稱:qiita,代碼行數:7,代碼來源:test_ebi.py

示例2: test_get_library_name

 def test_get_library_name(self):
     e = EBISubmission('2', 'Study Title', 'Study Abstract',
                       investigation_type='Other',
                       new_investigation_type='metagenome')
     obs = e._get_library_name("nasty<business>")
     exp = "nasty&lt;business&gt;"
     self.assertEqual(obs, exp)
開發者ID:MarkBruns,項目名稱:qiita,代碼行數:7,代碼來源:test_ebi.py

示例3: test_get_submission_alias

 def test_get_submission_alias(self):
     e = EBISubmission('2', 'Study Title', 'Study Abstract',
                       investigation_type='Other',
                       new_investigation_type='metagenome')
     obs = e._get_submission_alias()
     exp = '%s_submission_2' % qiita_config.ebi_organization_prefix
     self.assertEqual(obs, exp)
開發者ID:MarkBruns,項目名稱:qiita,代碼行數:7,代碼來源:test_ebi.py

示例4: test_add_dict_as_tags_and_values

    def test_add_dict_as_tags_and_values(self):
        e = EBISubmission('2', 'Study Title', 'Study Abstract', 'metagenome')
        elm = ET.Element('TESTING', {'foo': 'bar'})

        e._add_dict_as_tags_and_values(elm, 'foo', {'x': 'y', '>x': '<y'})
        obs = ET.tostring(elm)
        exp = ''.join([v.strip() for v in ADDDICTTEST.splitlines()])
        self.assertEqual(obs, exp)
開發者ID:Jorge-C,項目名稱:qiita,代碼行數:8,代碼來源:test_ebi.py

示例5: test_generate_spot_descriptor

    def test_generate_spot_descriptor(self):
        e = EBISubmission('2', 'Study Title', 'Study Abstract', 'metagenome')
        elm = ET.Element('design', {'foo': 'bar'})

        e._generate_spot_descriptor(elm, 'LS454')
        exp = ''.join([l.strip() for l in GENSPOTDESC.splitlines()])
        obs = ET.tostring(elm)
        self.assertEqual(obs, exp)
開發者ID:Jorge-C,項目名稱:qiita,代碼行數:8,代碼來源:test_ebi.py

示例6: test_generate_library_descriptor

    def test_generate_library_descriptor(self):
        e = EBISubmission('2', 'Study Title', 'Study Abstract', 'metagenome')
        elm = ET.Element('design', {'foo': 'bar'})

        e._generate_library_descriptor(elm, 'sample', 10, 'libconsprot')
        exp = ''.join([l.strip() for l in GENLIBDESC.splitlines()])
        obs = ET.tostring(elm)
        self.assertEqual(obs, exp)
開發者ID:Jorge-C,項目名稱:qiita,代碼行數:8,代碼來源:test_ebi.py

示例7: test_add_samples_from_templates_bad_directory

 def test_add_samples_from_templates_bad_directory(self):
     sample_template = StringIO(EXP_SAMPLE_TEMPLATE)
     prep_template = StringIO(EXP_PREP_TEMPLATE)
     submission = EBISubmission('001', 'teststudy', 'test asbstract',
                                'metagenome')
     with self.assertRaises(IOError):
         submission.add_samples_from_templates(
             sample_template, [prep_template],
             self.path+'WILL-NOT-EXIST-BOOM')
開發者ID:Jorge-C,項目名稱:qiita,代碼行數:9,代碼來源:test_ebi.py

示例8: test__write_xml_file

 def test__write_xml_file(self):
     e = EBISubmission('2', 'Study Title', 'Study Abstract', 'metagenome')
     elm = ET.Element('TESTING', {'foo': 'bar'})
     e._write_xml_file(lambda: elm, 'thing', 'testfile')
     self.assertEqual(e.thing, 'testfile')
     obs = open('testfile').read()
     exp = '<?xml version="1.0" encoding="UTF-8"?>\n<TESTING foo="bar"/>\n'
     self.assertEqual(obs, exp)
     remove('testfile')
開發者ID:Jorge-C,項目名稱:qiita,代碼行數:9,代碼來源:test_ebi.py

示例9: test_generate_study_xml

 def test_generate_study_xml(self):
     submission = EBISubmission('001', 'teststudy', 'test asbstract',
                                'metagenome')
     xmlelement = submission.generate_study_xml()
     xml = minidom.parseString(ET.tostring(xmlelement))
     xmlstring = xml.toprettyxml(indent='  ', encoding='UTF-8')
     obs_stripped = ''.join([l.strip() for l in xmlstring.splitlines()])
     exp_stripped = ''.join([l.strip() for l in STUDYXML.splitlines()])
     self.assertEqual(obs_stripped, exp_stripped)
開發者ID:Jorge-C,項目名稱:qiita,代碼行數:9,代碼來源:test_ebi.py

示例10: test_add_sample_prep_exception

 def test_add_sample_prep_exception(self):
     submission = EBISubmission('001', 'teststudy', 'test asbstract',
                                'metagenome')
     submission.add_sample('test1')
     submission.add_sample('test2')
     with self.assertRaises(ValueError):
         submission.add_sample_prep('test3', 'DOES-NOT-EXIST', 'fastq',
                                    self.path, 'experiment description',
                                    'library protocol')
開發者ID:Jorge-C,項目名稱:qiita,代碼行數:9,代碼來源:test_ebi.py

示例11: test_add_sample

 def test_add_sample(self):
     submission = EBISubmission('001', 'teststudy', 'test asbstract',
                                'metagenome')
     submission.add_sample('test1')
     submission.add_sample('test2')
     samples = submission.samples
     self.assertTrue('test1' in samples and 'test2' in samples)
     with self.assertRaises(SampleAlreadyExistsError):
         submission.add_sample('test1')
開發者ID:Jorge-C,項目名稱:qiita,代碼行數:9,代碼來源:test_ebi.py

示例12: test_add_sample

 def test_add_sample(self):
     submission = EBISubmission('001', 'teststudy', 'test asbstract',
                                investigation_type='Other',
                                new_investigation_type='metagenome')
     submission.add_sample('test1', '9606', 'homo sapiens', 'desc1')
     submission.add_sample('test2', '9606', 'homo sapiens', 'desc2')
     samples = submission.samples
     self.assertTrue('test1' in samples and 'test2' in samples)
     with self.assertRaises(SampleAlreadyExistsError):
         submission.add_sample('test1', '9606', 'homo sapiens', 'desc1')
開發者ID:MarkBruns,項目名稱:qiita,代碼行數:10,代碼來源:test_ebi.py

示例13: test_write_study_xml

    def test_write_study_xml(self):
        submission = EBISubmission('001', 'teststudy', 'test asbstract',
                                   'metagenome')
        fh, output = mkstemp()
        submission.write_study_xml(output)
        close(fh)

        obs_stripped = ''.join([l.strip() for l in open(output)])
        exp_stripped = ''.join([l.strip() for l in STUDYXML.splitlines()])
        self.assertEqual(obs_stripped, exp_stripped)
        remove(output)
開發者ID:Jorge-C,項目名稱:qiita,代碼行數:11,代碼來源:test_ebi.py

示例14: test_generate_sample_xml

 def test_generate_sample_xml(self):
     submission = EBISubmission('001', 'teststudy', 'test asbstract',
                                investigation_type='Other',
                                new_investigation_type='metagenome')
     submission.add_sample('test1', '9606', 'homo sapiens', 'desc1')
     submission.add_sample('test2', '9606', 'homo sapiens', 'desc2')
     xmlelement = submission.generate_sample_xml()
     xml = minidom.parseString(ET.tostring(xmlelement))
     xmlstring = xml.toprettyxml(indent='  ', encoding='UTF-8')
     obs_stripped = ''.join([l.strip() for l in xmlstring.splitlines()])
     exp_stripped = ''.join([l.strip() for l in SAMPLEXML.splitlines()])
     self.assertEqual(obs_stripped, exp_stripped)
開發者ID:MarkBruns,項目名稱:qiita,代碼行數:12,代碼來源:test_ebi.py

示例15: test_write_sample_xml

    def test_write_sample_xml(self):
        submission = EBISubmission('001', 'teststudy', 'test asbstract',
                                   investigation_type='Other',
                                   new_investigation_type='metagenome')
        submission.add_sample('test1', '9606', 'homo sapiens', 'desc1')
        submission.add_sample('test2', '9606', 'homo sapiens', 'desc2')
        fh, output = mkstemp()
        close(fh)
        submission.write_sample_xml(output)

        obs_stripped = ''.join([l.strip() for l in open(output)])
        exp_stripped = ''.join([l.strip() for l in SAMPLEXML.splitlines()])
        self.assertEqual(obs_stripped, exp_stripped)
        remove(output)
開發者ID:MarkBruns,項目名稱:qiita,代碼行數:14,代碼來源:test_ebi.py


注:本文中的qiita_ware.ebi.EBISubmission類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。