# HG changeset patch # User peterjc # Date 1623952773 0 # Node ID e1996f0f4e85e8c00cd58f831b8d9c356404a9b7 # Parent e1afa4b0b682235c9979b7ad8bfde5e6950f3967 "v0.2.13 - Python 3 fix for raising StopIteration" diff -r e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/README.rst --- a/tools/protein_analysis/README.rst Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/README.rst Thu Jun 17 17:59:33 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 e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/promoter2.xml --- a/tools/protein_analysis/promoter2.xml Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/promoter2.xml Thu Jun 17 17:59:33 2021 +0000 @@ -1,4 +1,4 @@ - + Find eukaryotic PolII promoters in DNA sequences diff -r e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/psortb.xml --- a/tools/protein_analysis/psortb.xml Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/psortb.xml Thu Jun 17 17:59:33 2021 +0000 @@ -1,4 +1,4 @@ - + Determines sub-cellular localisation of bacterial/archaeal protein sequences diff -r e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/rxlr_motifs.py --- a/tools/protein_analysis/rxlr_motifs.py Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/rxlr_motifs.py Thu Jun 17 17:59:33 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 e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/rxlr_motifs.xml --- a/tools/protein_analysis/rxlr_motifs.xml Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/rxlr_motifs.xml Thu Jun 17 17:59:33 2021 +0000 @@ -1,4 +1,4 @@ - + Find RXLR Effectors of Plant Pathogenic Oomycetes diff -r e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/seq_analysis_utils.py --- a/tools/protein_analysis/seq_analysis_utils.py Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/seq_analysis_utils.py Thu Jun 17 17:59:33 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 e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/signalp3.py --- a/tools/protein_analysis/signalp3.py Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/signalp3.py Thu Jun 17 17:59:33 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 e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/signalp3.xml --- a/tools/protein_analysis/signalp3.xml Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/signalp3.xml Thu Jun 17 17:59:33 2021 +0000 @@ -1,4 +1,4 @@ - + Find signal peptides in protein sequences diff -r e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/tmhmm2.py --- a/tools/protein_analysis/tmhmm2.py Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/tmhmm2.py Thu Jun 17 17:59:33 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 e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/tmhmm2.xml --- a/tools/protein_analysis/tmhmm2.xml Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/tmhmm2.xml Thu Jun 17 17:59:33 2021 +0000 @@ -1,4 +1,4 @@ - + Find transmembrane domains in protein sequences diff -r e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/wolf_psort.py --- a/tools/protein_analysis/wolf_psort.py Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/wolf_psort.py Thu Jun 17 17:59:33 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 e1afa4b0b682 -r e1996f0f4e85 tools/protein_analysis/wolf_psort.xml --- a/tools/protein_analysis/wolf_psort.xml Thu Jun 17 08:34:58 2021 +0000 +++ b/tools/protein_analysis/wolf_psort.xml Thu Jun 17 17:59:33 2021 +0000 @@ -1,4 +1,4 @@ - + Eukaryote protein subcellular localization prediction wolfpsort