Esempio n. 1
0
 def test_export_pep_sqlite(self):
     args = protgraph.parse_args(["-epepsqlite", "--pep_hops", "2"] +
                                 self.procs_num + self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 2
0
 def test_issue13(self):
     args = protgraph.parse_args(
         ["-n", "1",
          os.path.join(self.examples_path, "F1SN05.txt")])
     protgraph.prot_graph(**args)
Esempio n. 3
0
 def test_met(self):
     args = protgraph.parse_args(["-ft", "IniT_MET"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 4
0
 def test_digestion_trypsin(self):
     args = protgraph.parse_args(["-d", "trypsin"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 5
0
 def test_none(self):
     args = protgraph.parse_args(["-ft", "NoNE"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 6
0
 def test_isoforms(self):
     args = protgraph.parse_args(["-ft", "VAR_SeQ"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 7
0
 def test_statistics_miscleavages(self):
     args = protgraph.parse_args(["-cnpm"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 8
0
 def test_vm_nterm(self):
     args = protgraph.parse_args(["-vm", "ntErm:57.021464"] +
                                 self.procs_num + self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 9
0
 def test_replacement(self):
     args = protgraph.parse_args(["-raa", "A->b,C,d"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 10
0
 def test_statistics_possibilites(self):
     args = protgraph.parse_args(["-cnp"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 11
0
 def test_annotate_weights(self):
     args = protgraph.parse_args(["-aawe", "-amwe"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 12
0
 def test_no_merge(self):
     args = protgraph.parse_args(["-nm"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 13
0
 def test_digestion_full(self):
     args = protgraph.parse_args(["-d", "full"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 14
0
 def test_issue41(self):
     args = protgraph.parse_args([
         "-n", "1", "-epepfasta",
         os.path.join(self.examples_path, "P49782.txt")
     ])
     protgraph.prot_graph(**args)
Esempio n. 15
0
 def test_statistics_con(self):
     args = protgraph.parse_args(["-cnpcon"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 16
0
 def test_fm_none(self):
     args = protgraph.parse_args(["-ft", "none", "-fm", "c:57.021464"] +
                                 self.procs_num + self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 17
0
 def test_minimal(self):
     args = protgraph.parse_args([] + self.procs_num + self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 18
0
 def test_vm_none_cterm(self):
     args = protgraph.parse_args(["-ft", "none", "-vm", "CtERM:57.021464"] +
                                 self.procs_num + self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 19
0
 def test_export_pickle(self):
     args = protgraph.parse_args(["-epickle"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 20
0
 def test_all(self):
     args = protgraph.parse_args(["-ft", "ALl"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 21
0
 def test_export_lbpcsr(self):
     args = protgraph.parse_args(["-elbpcsr"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 22
0
 def test_variants(self):
     args = protgraph.parse_args(["-ft", "VARIAnT"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
Esempio n. 23
0
 def test_export_pep_trie(self):
     args = protgraph.parse_args(
         ["-epeptrie", "--pep_hops", "5"] + self.procs_num +
         [os.path.join(self.examples_path, "Q9QXS1.txt")])
     protgraph.prot_graph(**args)
Esempio n. 24
0
 def test_signal(self):
     args = protgraph.parse_args(["-ft", "SIGnaL"] + self.procs_num +
                                 self.example_files)
     protgraph.prot_graph(**args)
        ("d", ["-ft", "VARIANT"]),
        ("e", ["-ft", "MUTAGEN"]),
        ("f", ["-ft", "CONFLICT"]),
        ("g", ["-ft", "NONE", "-raa", "B->D,N"]),
        ("h", ["-ft", "NONE", "-raa", "J->I,L"]),
        ("i", ["-ft", "NONE", "-raa", "Z->Q,E"])
    ]

    input_files = ["../examples/e_coli.dat"]
    statistics = ["-cnp", "-n", "9434", "-no_desc"]

    counter = 0
    for r in range(0, len(used_features) + 1):
        for c in itertools.combinations(used_features, r):
            counter += 1

            print("\nExecuting Iteration {} out of {}".format(
                counter, 2**(len(used_features))))
            if len(c) != 0:
                configuration = [y for x in c for y in x[1]]
            else:
                configuration = ["-ft", "NONE"]
            if len(c) != 0:
                output_file = ["-o", "".join([x[0] for x in c]) + ".csv"]
            else:
                output_file = ["-o", "none.csv"]

            args = protgraph.parse_args(statistics + configuration +
                                        output_file + input_files)
            protgraph.prot_graph(**args)