Commit message:
planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/pfamscan commit c27a05e92e6e03545903dd2ff90976f8cab5ebf7 |
added:
pfamscan.xml test-data/Pfam-A.hmm.dat.gz test-data/Pfam-A.hmm.gz test-data/active_site.dat.gz test-data/sequences.fasta.gz test-data/test01.tab test-data/test02.tab test-data/test03.tab test-data/test04.tab |
b |
diff -r 000000000000 -r 15cff34c2005 pfamscan.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pfamscan.xml Sat Feb 04 16:33:20 2023 +0000 |
[ |
b'@@ -0,0 +1,158 @@\n+<tool id="pfamscan" name="PfamScan" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@">\n+ <description>search a FASTA sequence against a library of Pfam HMM</description>\n+ <macros>\n+ <token name="@TOOL_VERSION@">1.6</token>\n+ <token name="@VERSION_SUFFIX@">0</token>\n+ </macros>\n+ <xrefs>\n+ <xref type="bio.tools">pfamscan</xref>\n+ </xrefs>\n+ <requirements>\n+ <requirement type="package" version="@TOOL_VERSION@">pfam_scan</requirement>\n+ <requirement type="package" version="3.3.2">hmmer</requirement>\n+ </requirements>\n+ <version_command>pfam_scan.pl --version</version_command>\n+ <command detect_errors="exit_code"><![CDATA[\n+ mkdir -p \'./pfam_files\' &&\n+ ln -s \'${pfam_library}\' \'./pfam_files/Pfam-A.hmm\' &&\n+ ln -s \'${pfam_data}\' \'./pfam_files/Pfam-A.hmm.dat\' &&\n+ #if $active_sites.selector == \'true\'\n+ ln -s \'${active_sites.active_file}\' \'./pfam_files/active_site.dat\' &&\n+ #end if\n+ hmmpress \'./pfam_files/Pfam-A.hmm\' &&\n+ pfam_scan.pl \n+ -cpu \\${GALAXY_SLOTS:-4}\n+ -fasta \'${fasta}\'\n+ -dir \'./pfam_files/\'\n+ -outfile \'./output.tab\'\n+ #if $advanced_options.e_seq\n+ -e_seq $advanced_options.e_seq\n+ #end if\n+ #if $advanced_options.e_dom\n+ -e_dom $advanced_options.e_dom\n+ #end if\n+ #if $advanced_options.b_seq\n+ -b_seq $advanced_options.b_seq\n+ #end if\n+ #if $advanced_options.b_dom\n+ -b_dom $advanced_options.b_dom\n+ #end if\n+ #if $active_sites.selector == \'true\'\n+ -as\n+ #end if\n+ && tail -n +28 "./output.tab" > "./output_fixed.tab"\n+ ]]>\n+ </command>\n+ <inputs>\n+ <param argument="-fasta" type="data" format="fasta" label="Protein sequences FASTA file"/>\n+ <param name="pfam_library" type="data" format="hmm3" label="Pfam-A HMM library" help="Pfam-A HMMs in an HMM library searchable with the hmmscan program." />\n+ <param name="pfam_data" type="data" format="stockholm" label="Pfam-A HMM Stockholm file" help="Stockholm format is a multiple sequence alignment format used \n+ by Pfam, Rfam and Dfam, to disseminate protein, RNA and DNA sequence alignments." />\n+ <conditional name="active_sites">\n+ <param name="selector" type="select" label="Predict active site residues" help="Predict active site residues for Pfam-A matches">\n+ <option value="false">Disabled</option>\n+ <option value="true" selected="true">Enabled</option>\n+ </param>\n+ <when value="false"/>\n+ <when value="true">\n+ <param name="active_file" type="data" format="txt" label="Active sites file" help="This file is required for predicting the active site residues." />\n+ </when>\n+ </conditional>\n+ <section name="advanced_options" title="Advanced options">\n+ <param argument="-e_seq" type="float" min="0" value="" optional="true" label="Hmmscan evalue sequence cutoff" help="Specify hmmscan evalue sequence cutoff \n+ for Pfam-A searches (default Pfam defined)" />\n+ <param argument="-e_dom" type="float" min="0" value="" optional="true" label="Hmmscan evalue domain cutoff" help="Specify hmmscan evalue domain cutoff for \n+ Pfam-A searches (default Pfam defined)" />\n+ <param argument="-b_seq" type="float" min="0" value="" optional="true" label="Hmmscan bit score sequence cutoff" help="Specify hmmscan bit score sequence \n+ cutoff for Pfam-A searches (default Pfam defined)" />\n+ <param argument="-b_dom" type="float" min="0" value="" optional="true" label="Hmmscan bit score domain cutoff" help="Specify hmmscan bit score domain cutoff \n+ for Pfam-A searches (default P'..b'nt" help="Show the HMM-sequence alignment for each match" />\n+ </section>\n+ </inputs>\n+ <outputs>\n+ <data name="output" format="tabular" from_work_dir="output_fixed.tab" label="${tool.name} on ${on_string}"/>\n+ </outputs>\n+ <tests>\n+ <!-- Test 01: Default parameters not active sites -->\n+ <test expect_num_outputs="1">\n+ <param name="fasta" value="sequences.fasta.gz"/>\n+ <param name="pfam_library" value="Pfam-A.hmm.gz"/>\n+ <param name="pfam_data" value="Pfam-A.hmm.dat.gz"/>\n+ <conditional name="active_sites">\n+ <param name="selector" value="false"/>\n+ </conditional>\n+ <output name="output" file="test01.tab" ftype="tabular"/>\n+ </test>\n+ <!-- Test 02: Default parameters: active sites -->\n+ <test expect_num_outputs="1">\n+ <param name="fasta" value="sequences.fasta.gz"/>\n+ <param name="pfam_library" value="Pfam-A.hmm.gz"/>\n+ <param name="pfam_data" value="Pfam-A.hmm.dat.gz"/>\n+ <conditional name="active_sites">\n+ <param name="selector" value="true"/>\n+ <param name="active_file" value="active_site.dat.gz"/>\n+ </conditional>\n+ <output name="output" file="test02.tab" ftype="tabular"/>\n+ </test>\n+ <!-- Test 03: Non default parameters: active sites -->\n+ <test expect_num_outputs="1">\n+ <param name="fasta" value="sequences.fasta.gz"/>\n+ <param name="pfam_library" value="Pfam-A.hmm.gz"/>\n+ <param name="pfam_data" value="Pfam-A.hmm.dat.gz"/>\n+ <section name="advanced_options">\n+ <param name="e_seq" value="1.2"/>\n+ <param name="e_dom" value="1.3"/>\n+ <param name="clan_overlap" value="true"/>\n+ </section>\n+ <conditional name="active_sites">\n+ <param name="selector" value="true"/>\n+ <param name="active_file" value="active_site.dat.gz"/>\n+ </conditional>\n+ <output name="output" file="test03.tab" ftype="tabular"/>\n+ </test>\n+ <!-- Test 04: Non default parameters: active sites -->\n+ <test expect_num_outputs="1">\n+ <param name="fasta" value="sequences.fasta.gz"/>\n+ <param name="pfam_library" value="Pfam-A.hmm.gz"/>\n+ <param name="pfam_data" value="Pfam-A.hmm.dat.gz"/>\n+ <section name="advanced_options">\n+ <param name="b_seq" value="1.4"/>\n+ <param name="b_dom" value="1.2"/>\n+ <param name="align" value="true"/>\n+ </section>\n+ <conditional name="active_sites">\n+ <param name="selector" value="true"/>\n+ <param name="active_file" value="active_site.dat.gz"/>\n+ </conditional>\n+ <output name="output" file="test04.tab" ftype="tabular"/>\n+ </test>\n+ </tests>\n+ <help><![CDATA[\n+\n+.. class:: infomark\n+\n+**Purpose**\n+\n+Search one or more sequences for matching Pfam domains. Depending on the user options, the script can also process the results such that overlaps between families belonging to the \n+same clan are resolved and can predict active sites.\n+\n+----\n+\n+.. class:: infomark\n+\n+**Required files**\n+\n+To run PfamScan you will need to download the following files from the Pfam ftp site:\n+\n+- Pfam-A HMMs in an HMM library searchable with the hmmscan program: `Pfam-A.hmm.gz <https://ftp.ebi.ac.uk/pub/databases/Pfam/current_release/Pfam-A.hmm.gz>`_\n+- Pfam-A HMM Stockholm file associated with each HMM required for PfamScan: `Pfam-A.hmm.dat.gz <https://ftp.ebi.ac.uk/pub/databases/Pfam/current_release/Pfam-A.hmm.dat.gz>`_\n+- Active sites: `active_sites.dat.gz <ftp://ftp.ebi.ac.uk/pub/databases/Pfam/current_release/active_site.dat.gz>`_\n+\n+]]></help>\n+ <citations>\n+ <citation type="doi">10.1093/nar/gkt006</citation>\n+ </citations>\n+</tool>\n' |
b |
diff -r 000000000000 -r 15cff34c2005 test-data/Pfam-A.hmm.dat.gz |
b |
Binary file test-data/Pfam-A.hmm.dat.gz has changed |
b |
diff -r 000000000000 -r 15cff34c2005 test-data/Pfam-A.hmm.gz |
b |
Binary file test-data/Pfam-A.hmm.gz has changed |
b |
diff -r 000000000000 -r 15cff34c2005 test-data/active_site.dat.gz |
b |
Binary file test-data/active_site.dat.gz has changed |
b |
diff -r 000000000000 -r 15cff34c2005 test-data/sequences.fasta.gz |
b |
Binary file test-data/sequences.fasta.gz has changed |
b |
diff -r 000000000000 -r 15cff34c2005 test-data/test01.tab --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test01.tab Sat Feb 04 16:33:20 2023 +0000 |
b |
@@ -0,0 +1,14 @@ +# <seq id> <alignment start> <alignment end> <envelope start> <envelope end> <hmm acc> <hmm name> <type> <hmm start> <hmm end> <hmm length> <bit score> <E-value> <significance> <clan> + +ENST00000006658.11 79 239 78 240 PF03190.18 Thioredox_DsbH Family 2 162 163 243.0 4.7e-75 1 CL0172 +ENST00000282903.10 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000356488.8 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 243.1 4.5e-75 1 CL0172 +ENST00000360060.7 652 736 645 737 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.7 4.3e-08 1 CL0029 +ENST00000494950.5 618 702 611 703 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.8 4e-08 1 CL0029 +ENST00000634597.1 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 243.1 4.5e-75 1 CL0172 +ENST00000703518.1 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000703522.1 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000703523.1 652 736 645 737 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.7 4.3e-08 1 CL0029 +ENST00000503063.5 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 244.0 2.4e-75 1 CL0172 +ENST00000512181.5 63 157 62 161 PF03190.18 Thioredox_DsbH Family 2 96 163 166.2 2e-51 1 CL0172 +ENST00000512181.5 181 249 177 250 PF03190.18 Thioredox_DsbH Family 94 162 163 61.8 2.4e-19 1 CL0172 |
b |
diff -r 000000000000 -r 15cff34c2005 test-data/test02.tab --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test02.tab Sat Feb 04 16:33:20 2023 +0000 |
b |
@@ -0,0 +1,14 @@ +# <seq id> <alignment start> <alignment end> <envelope start> <envelope end> <hmm acc> <hmm name> <type> <hmm start> <hmm end> <hmm length> <bit score> <E-value> <significance> <clan> <predicted_active_site_residues> + +ENST00000006658.11 79 239 78 240 PF03190.18 Thioredox_DsbH Family 2 162 163 243.0 4.7e-75 1 CL0172 +ENST00000282903.10 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000356488.8 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 243.1 4.5e-75 1 CL0172 +ENST00000360060.7 652 736 645 737 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.7 4.3e-08 1 CL0029 +ENST00000494950.5 618 702 611 703 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.8 4e-08 1 CL0029 +ENST00000634597.1 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 243.1 4.5e-75 1 CL0172 +ENST00000703518.1 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000703522.1 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000703523.1 652 736 645 737 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.7 4.3e-08 1 CL0029 +ENST00000503063.5 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 244.0 2.4e-75 1 CL0172 +ENST00000512181.5 63 157 62 161 PF03190.18 Thioredox_DsbH Family 2 96 163 166.2 2e-51 1 CL0172 +ENST00000512181.5 181 249 177 250 PF03190.18 Thioredox_DsbH Family 94 162 163 61.8 2.4e-19 1 CL0172 |
b |
diff -r 000000000000 -r 15cff34c2005 test-data/test03.tab --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test03.tab Sat Feb 04 16:33:20 2023 +0000 |
b |
@@ -0,0 +1,38 @@ +# <seq id> <alignment start> <alignment end> <envelope start> <envelope end> <hmm acc> <hmm name> <type> <hmm start> <hmm end> <hmm length> <bit score> <E-value> <significance> <clan> <predicted_active_site_residues> + +ENST00000006658.11 79 239 78 240 PF03190.18 Thioredox_DsbH Family 2 162 163 243.0 4.7e-75 1 CL0172 +ENST00000265594.9 20 94 12 100 PF13532.9 2OG-FeII_Oxy_2 Domain 38 118 194 11.5 0.00086 0 CL0029 +ENST00000282903.10 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000346299.10 562 624 556 627 PF12578.11 3-PAP Family 70 129 132 13.0 0.00022 0 No_clan +ENST00000352297.11 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000356488.8 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 243.1 4.5e-75 1 CL0172 +ENST00000360060.7 652 736 645 737 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.7 4.3e-08 1 CL0029 +ENST00000393106.6 30 91 17 98 PF02826.22 2-Hacid_dh_C Domain 38 99 178 16.0 2e-05 0 CL0063 +ENST00000393110.7 40 101 26 108 PF02826.22 2-Hacid_dh_C Domain 38 99 178 15.9 2e-05 0 CL0063 +ENST00000409459.5 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000409811.5 30 91 17 98 PF02826.22 2-Hacid_dh_C Domain 38 99 178 16.1 1.9e-05 0 CL0063 +ENST00000436648.9 183 256 153 279 PF02826.22 2-Hacid_dh_C Domain 33 105 178 19.7 1.5e-06 0 CL0063 +ENST00000436648.9 383 403 376 415 PF02826.22 2-Hacid_dh_C Domain 133 153 178 0.4 1.2 0 CL0063 +ENST00000494950.5 618 702 611 703 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.8 4e-08 1 CL0029 +ENST00000579436.7 382 414 380 416 PF12729.10 4HB_MCP_1 Family 101 133 181 8.7 0.0039 0 CL0457 +ENST00000591451.5 264 330 234 354 PF02826.22 2-Hacid_dh_C Domain 33 104 178 18.9 2.6e-06 0 CL0063 +ENST00000634597.1 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 243.1 4.5e-75 1 CL0172 +ENST00000675196.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000675438.1 459 521 453 524 PF12578.11 3-PAP Family 70 129 132 13.4 0.00018 0 No_clan +ENST00000675454.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000675489.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000676166.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000676261.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000676272.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000676440.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000694943.1 67 199 32 239 PF01073.22 3Beta_HSD Family 49 195 280 14.3 5.1e-05 0 CL0063 predicted_active_site +ENST00000703518.1 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000703522.1 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000703523.1 652 736 645 737 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.7 4.3e-08 1 CL0029 +ENST00000514335.1 146 275 138 286 PF00244.23 14-3-3 Repeat 24 148 222 13.6 0.00013 0 CL0020 +ENST00000694942.1 67 259 32 277 PF01073.22 3Beta_HSD Family 49 257 280 18.6 2.6e-06 0 CL0063 predicted_active_site +ENST00000503063.5 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 244.0 2.4e-75 1 CL0172 +ENST00000512181.5 63 157 62 161 PF03190.18 Thioredox_DsbH Family 2 96 163 166.2 2e-51 1 CL0172 +ENST00000512181.5 181 249 177 250 PF03190.18 Thioredox_DsbH Family 94 162 163 61.8 2.4e-19 1 CL0172 +ENST00000589104.5 681 717 676 737 PF09038.13 53-BP1_Tudor Domain 8 44 122 8.5 0.0066 0 CL0049 +ENST00000589104.5 744 782 736 793 PF09038.13 53-BP1_Tudor Domain 12 51 122 4.7 0.096 0 CL0049 |
b |
diff -r 000000000000 -r 15cff34c2005 test-data/test04.tab --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test04.tab Sat Feb 04 16:33:20 2023 +0000 |
b |
@@ -0,0 +1,37 @@ +# <seq id> <alignment start> <alignment end> <envelope start> <envelope end> <hmm acc> <hmm name> <type> <hmm start> <hmm end> <hmm length> <bit score> <E-value> <significance> <clan> <predicted_active_site_residues> + +ENST00000006658.11 79 239 78 240 PF03190.18 Thioredox_DsbH Family 2 162 163 243.0 4.7e-75 1 CL0172 +ENST00000265594.9 20 94 12 100 PF13532.9 2OG-FeII_Oxy_2 Domain 38 118 194 11.5 0.00086 0 CL0029 +ENST00000282903.10 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000346299.10 562 624 556 627 PF12578.11 3-PAP Family 70 129 132 13.0 0.00022 0 No_clan +ENST00000352297.11 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000356488.8 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 243.1 4.5e-75 1 CL0172 +ENST00000360060.7 652 736 645 737 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.7 4.3e-08 1 CL0029 +ENST00000393106.6 30 91 17 98 PF02826.22 2-Hacid_dh_C Domain 38 99 178 16.0 2e-05 0 CL0063 +ENST00000393110.7 40 101 26 108 PF02826.22 2-Hacid_dh_C Domain 38 99 178 15.9 2e-05 0 CL0063 +ENST00000409459.5 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000409811.5 30 91 17 98 PF02826.22 2-Hacid_dh_C Domain 38 99 178 16.1 1.9e-05 0 CL0063 +ENST00000436648.9 183 256 153 279 PF02826.22 2-Hacid_dh_C Domain 33 105 178 19.7 1.5e-06 0 CL0063 +ENST00000494950.5 618 702 611 703 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.8 4e-08 1 CL0029 +ENST00000579436.7 382 414 380 416 PF12729.10 4HB_MCP_1 Family 101 133 181 8.7 0.0039 0 CL0457 +ENST00000591451.5 264 330 234 354 PF02826.22 2-Hacid_dh_C Domain 33 104 178 18.9 2.6e-06 0 CL0063 +ENST00000634597.1 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 243.1 4.5e-75 1 CL0172 +ENST00000675196.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000675438.1 459 521 453 524 PF12578.11 3-PAP Family 70 129 132 13.4 0.00018 0 No_clan +ENST00000675454.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000675489.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000676166.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000676261.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000676272.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000676440.1 490 552 484 555 PF12578.11 3-PAP Family 70 129 132 13.3 0.00019 0 No_clan +ENST00000694943.1 67 199 32 239 PF01073.22 3Beta_HSD Family 49 195 280 14.3 5.1e-05 0 CL0063 predicted_active_site +ENST00000703518.1 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000703522.1 673 757 666 758 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.6 4.4e-08 1 CL0029 +ENST00000703523.1 652 736 645 737 PF03171.23 2OG-FeII_Oxy Domain 6 100 101 25.7 4.3e-08 1 CL0029 +ENST00000514335.1 146 275 138 286 PF00244.23 14-3-3 Repeat 24 148 222 13.6 0.00013 0 CL0020 +ENST00000694942.1 67 259 32 277 PF01073.22 3Beta_HSD Family 49 257 280 18.6 2.6e-06 0 CL0063 predicted_active_site +ENST00000503063.5 63 223 62 224 PF03190.18 Thioredox_DsbH Family 2 162 163 244.0 2.4e-75 1 CL0172 +ENST00000512181.5 63 157 62 161 PF03190.18 Thioredox_DsbH Family 2 96 163 166.2 2e-51 1 CL0172 +ENST00000512181.5 181 249 177 250 PF03190.18 Thioredox_DsbH Family 94 162 163 61.8 2.4e-19 1 CL0172 +ENST00000589104.5 681 717 676 737 PF09038.13 53-BP1_Tudor Domain 8 44 122 8.5 0.0066 0 CL0049 +ENST00000589104.5 744 782 736 793 PF09038.13 53-BP1_Tudor Domain 12 51 122 4.7 0.096 0 CL0049 |