# HG changeset patch # User peterjc # Date 1623952703 0 # Node ID 7a2e20baaceeb4fc8f953e1e94b7fbf2593842d3 # Parent 4fcc441269f538dc3e093715a5844b187bd2a7bf "v0.2.13 - Python 3 fix for raising StopIteration" diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/README.rst --- a/tools/protein_analysis/README.rst Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/README.rst Thu Jun 17 17:58:23 2021 +0000 @@ -197,6 +197,7 @@ - Reduce number of temp files if SignalP is run with one thread. - Applied black style to the Python code - Python 3 fixes with next function vs method. +v0.2.13 - Python 3 fix for raising StopIteration. ======= ====================================================================== diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/promoter2.xml --- a/tools/protein_analysis/promoter2.xml Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/promoter2.xml Thu Jun 17 17:58:23 2021 +0000 @@ -1,4 +1,4 @@ - + Find eukaryotic PolII promoters in DNA sequences diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/psortb.xml --- a/tools/protein_analysis/psortb.xml Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/psortb.xml Thu Jun 17 17:58:23 2021 +0000 @@ -1,4 +1,4 @@ - + Determines sub-cellular localisation of bacterial/archaeal protein sequences diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/rxlr_motifs.py --- a/tools/protein_analysis/rxlr_motifs.py Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/rxlr_motifs.py Thu Jun 17 17:58:23 2021 +0000 @@ -52,7 +52,7 @@ from seq_analysis_utils import fasta_iterator if "-v" in sys.argv: - print("RXLR Motifs v0.0.16") + print("RXLR Motifs v0.0.17") sys.exit(0) if len(sys.argv) != 5: diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/rxlr_motifs.xml --- a/tools/protein_analysis/rxlr_motifs.xml Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/rxlr_motifs.xml Thu Jun 17 17:58:23 2021 +0000 @@ -1,4 +1,4 @@ - + Find RXLR Effectors of Plant Pathogenic Oomycetes diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/seq_analysis_utils.py --- a/tools/protein_analysis/seq_analysis_utils.py Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/seq_analysis_utils.py Thu Jun 17 17:58:23 2021 +0000 @@ -19,7 +19,7 @@ if sys.version_info[0] < 3: range = xrange # noqa: F821 -__version__ = "0.0.4" +__version__ = "0.0.5" try: from multiprocessing import cpu_count @@ -108,7 +108,6 @@ % (title.split()[0], len(seq), max_len) ) yield title, seq - raise StopIteration def split_fasta( diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/signalp3.py --- a/tools/protein_analysis/signalp3.py Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/signalp3.py Thu Jun 17 17:58:23 2021 +0000 @@ -67,7 +67,7 @@ MAX_LEN = 6000 # Found by trial and error if "-v" in sys.argv or "--version" in sys.argv: - print("SignalP Galaxy wrapper version 0.0.19") + print("SignalP Galaxy wrapper version 0.0.20") sys.exit(os.system("signalp -version")) if len(sys.argv) not in [6, 8]: diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/signalp3.xml --- a/tools/protein_analysis/signalp3.xml Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/signalp3.xml Thu Jun 17 17:58:23 2021 +0000 @@ -1,4 +1,4 @@ - + Find signal peptides in protein sequences diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/tmhmm2.py --- a/tools/protein_analysis/tmhmm2.py Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/tmhmm2.py Thu Jun 17 17:58:23 2021 +0000 @@ -52,7 +52,7 @@ FASTA_CHUNK = 500 if "-v" in sys.argv or "--version" in sys.argv: - sys.exit("TMHMM wrapper version 0.0.16") + sys.exit("TMHMM wrapper version 0.0.17") if len(sys.argv) != 4: sys.exit( diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/tmhmm2.xml --- a/tools/protein_analysis/tmhmm2.xml Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/tmhmm2.xml Thu Jun 17 17:58:23 2021 +0000 @@ -1,4 +1,4 @@ - + Find transmembrane domains in protein sequences diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/wolf_psort.py --- a/tools/protein_analysis/wolf_psort.py Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/wolf_psort.py Thu Jun 17 17:58:23 2021 +0000 @@ -66,7 +66,7 @@ """ if "-v" in sys.argv or "--version" in sys.argv: - sys.exit("WoLF-PSORT wrapper version 0.0.11") + sys.exit("WoLF-PSORT wrapper version 0.0.12") if len(sys.argv) != 5: sys.exit( diff -r 4fcc441269f5 -r 7a2e20baacee tools/protein_analysis/wolf_psort.xml --- a/tools/protein_analysis/wolf_psort.xml Thu Jun 17 08:33:07 2021 +0000 +++ b/tools/protein_analysis/wolf_psort.xml Thu Jun 17 17:58:23 2021 +0000 @@ -1,4 +1,4 @@ - + Eukaryote protein subcellular localization prediction wolfpsort