Mercurial > repos > tduigou > rpbasicdesign
changeset 2:8a087d7546b8 draft
"planemo upload commit f40274f6b9f6a15eb4022aab21286d4c96cd8475-dirty"
author | tduigou |
---|---|
date | Mon, 28 Mar 2022 14:16:59 +0000 |
parents | de9f53630349 |
children | e4821c820f7c |
files | rpbasicdesign.xml test-data/BASIC_construct_A1.xml test-data/BASIC_construct_B1.xml test-data/BASIC_construct_C1.xml test-data/biolegio_plate.csv test-data/biolegio_plate_lycopene.csv test-data/biolegio_plate_muconate.csv test-data/constructs.csv test-data/constructs_lycopene.csv test-data/constructs_muconate.csv test-data/muconate_example.xml test-data/user_parts_plate.csv test-data/user_parts_plate_lycopene.csv test-data/user_parts_plate_muconate.csv |
diffstat | 14 files changed, 5707 insertions(+), 1160 deletions(-) [+] |
line wrap: on
line diff
--- a/rpbasicdesign.xml Wed Dec 15 15:10:43 2021 +0000 +++ b/rpbasicdesign.xml Mon Mar 28 14:16:59 2022 +0000 @@ -1,7 +1,10 @@ -<tool id="rpbasicdesign" name="BasicDesign" version="0.3.4"> +<tool id="rpbasicdesign" name="BasicDesign" version="@TOOL_VERSION@" profile="19.09"> <description>Build DNA-BOT input files from rpSBML</description> + <macros> + <token name="@TOOL_VERSION@">1.0.1</token> + </macros> <requirements> - <requirement type="package" version="0.3.4">rpbasicdesign</requirement> + <requirement type="package" version="@TOOL_VERSION@">rpbasicdesign</requirement> </requirements> <command detect_errors="exit_code"><![CDATA[ python -m rpbasicdesign.cli @@ -14,46 +17,112 @@ --lmp_id '$adv.lmp_id' --backbone_id '$backbone_id' --sample_size '$sample_size' - #if str($adv.cds_permutation) == "true" - --cds_permutation true - #else - --cds_permutation false - #end if + $adv.cds_permutation --o_dnabot_dir 'out/dnabot_in' - --o_sbol_dir 'out/sbol_export' + $adv.sbol_output + --max_enz_per_rxn $adv.max_enz_per_rxn ]]></command> <inputs> - <param name="rpsbml_file" type="data" format="xml" label="rpSBML file"/> - <param name="backbone_id" type="text" value="BASIC_SEVA_37_CmR-p15A.1" label="Backbone part ID" /> - <param name="sample_size" type="integer" value="88" label="Number of constructs to generate" /> + <param name="rpsbml_file" type="data" format="xml" label="rpSBML file" help="SBML file from which enzymes UniProt IDs will be collected."/> + <param argument="--backbone_id" type="text" value="BASIC_SEVA_37_CmR-p15A.1" label="Backbone part ID" help="Part ID to be used as the backbone."> + <sanitizer invalid_char=""> + <valid initial="string.letters,string.digits"> + <add value=":" /> + <add value="." /> + <add value="-" /> + <add value="_" /> + </valid> + </sanitizer> + <validator type="empty_field" message="Backbone ID is required"/> + <validator type="regex">[0-9a-zA-Z_:-]+</validator> + </param> + <param argument="--sample_size" type="integer" value="88" min="1" max="88" label="Number of constructs to generate" help="Number of construct to generate."/> <section name="adv" title="Advanced Options" expanded="false"> - <param name="parts_files" type="data" format="csv" optional="true" multiple="true" label="Linkers and user parts" /> - <param name="lms_id" type="text" value="LMS" label="LMS part ID" /> - <param name="lmp_id" type="text" value="LMP" label="LMP part ID" /> - <param name="cds_permutation" type="boolean" label="Perform CDS permutation?" checked="true" /> + <param name="parts_files" type="data" format="csv" optional="true" multiple="true" label="Linkers and user parts" help="List of files providing available linkers and user parts (backbone, promoters, ...) for constructs. Default: Standard Biolegio Parts" /> + <param argument="--lms_id" type="text" value="LMS" label="LMS part ID" help="Part ID to be used as the LMS methylated linker." > + <sanitizer invalid_char=""> + <valid initial="string.letters,string.digits"> + <add value=":" /> + <add value="-" /> + <add value="_" /> + <add value="." /> + </valid> + </sanitizer> + <validator type="empty_field" message="LMS ID is required"/> + </param> + <param argument="--lmp_id" type="text" value="LMP" label="LMP part ID" help="Part ID to be used as the LMP methylated linker."> + <sanitizer invalid_char=""> + <valid initial="string.letters,string.digits"> + <add value=":" /> + <add value="-" /> + <add value="_" /> + <add value="." /> + </valid> + </sanitizer> + <validator type="empty_field" message="LMP ID is required"/> + </param> + <param argument="--cds_permutation" type="boolean" truevalue="--cds_permutation true" falsevalue="--cds_permutation false" checked="true" label="Perform CDS permutation?" help="Whether all combinations of CDS permutation should be built." /> + <param argument="--sbol_output" type="boolean" checked="false" truevalue="--o_sbol_dir out/sbol_export" falsevalue="" label="Output SBOL results?" help="Output folder to write SBOL depictions of constructs." /> + <param argument="--max_enz_per_rxn" type="integer" value="1" min="1" max="99" label="Maximum number of enyzme to consider per reaction." help="Maximum number of enyzme to consider per reaction. If more enzymes are available for a given reaction, then only the last one listed in the MIRIAM annotation section will be kept."/> </section> </inputs> <outputs> - <data name="Constructs" format="csv" from_work_dir="out/dnabot_in/constructs.csv" label="${tool.name} - ${rpsbml_file.name}: constructs" /> - <data name="User parts plate" format="csv" from_work_dir="out/dnabot_in/user_parts_plate.csv" label="${tool.name} - ${rpsbml_file.name}: User parts plate"/> - <data name="Biolegio plate" format="csv" from_work_dir="out/dnabot_in/biolegio_plate.csv" label="${tool.name} - ${rpsbml_file.name}: Biolegio plate"/> - <collection name="sbol_dir" type="list" label="${tool.name} - ${rpsbml_file.name}: SBOL constructs"> + <data name="Constructs" format="csv" from_work_dir="out/dnabot_in/constructs.csv" label="${tool.name} on ${rpsbml_file.name}: constructs" /> + <data name="User parts plate" format="csv" from_work_dir="out/dnabot_in/user_parts_plate.csv" label="${tool.name} on ${rpsbml_file.name}: User parts plate"/> + <data name="Biolegio plate" format="csv" from_work_dir="out/dnabot_in/biolegio_plate.csv" label="${tool.name} on ${rpsbml_file.name}: Biolegio plate"/> + <collection name="sbol_dir" type="list" label="${tool.name} on ${rpsbml_file.name}: SBOL constructs"> + <filter> adv['sbol_output'] </filter> <discover_datasets pattern="__designation_and_ext__" format="xml" directory="out/sbol_export" /> </collection> </outputs> <tests> <test> - <!-- test 1: check if identical outputs are produced --> - <param name="rpsbml_file" value="lycopene_CrtEBI_from_selenzy.xml" /> - <param name="sample_size" value="3" /> - <output name="Constructs" file="constructs.csv" ftype="csv" compare="diff"/> - <output name="User parts plate" file="user_parts_plate.csv" ftype="csv" compare="diff"/> - <output name="Biolegio plate" file="biolegio_plate.csv" ftype="csv" compare="diff"/> - <output_collection name="sbol_dir" type="list"> - <element name="BASIC_construct_A1" ftype="xml" value="BASIC_construct_A1.xml" sort="true"/> - <element name="BASIC_construct_B1" ftype="xml" value="BASIC_construct_B1.xml" sort="true"/> - <element name="BASIC_construct_C1" ftype="xml" value="BASIC_construct_C1.xml" sort="true"/> - </output_collection> + <!-- test 1: check if identical outputs are produced (Lycopene input)--> + <param name="rpsbml_file" value="lycopene_CrtEBI_from_selenzy.xml" /> + <param name="sample_size" value="3" /> + <output name="Constructs" file="constructs_lycopene.csv" ftype="csv" compare="diff"> + <assert_contents> + <has_n_lines n="4"/> + </assert_contents> + </output> + <output name="User parts plate" file="user_parts_plate_lycopene.csv" ftype="csv" compare="diff"/> + <output name="Biolegio plate" file="biolegio_plate_lycopene.csv" ftype="csv" compare="diff"/> + <param name="sbol_output" value="--o_sbol_dir out/sbol_export" /> + <output_collection name="sbol_dir" type="list" count="3"> + <element name="BASIC_construct_A1"> + <assert_contents> + <is_valid_xml /> + <has_text text="BASIC_construct_A1" /> + <has_n_lines n="339" /> + </assert_contents> + </element> + <element name="BASIC_construct_B1"> + <assert_contents> + <is_valid_xml /> + <has_text text="BASIC_construct_B1" /> + <has_n_lines n="339" /> + </assert_contents> + </element> + <element name="BASIC_construct_C1"> + <assert_contents> + <is_valid_xml /> + <has_text text="BASIC_construct_C1" /> + <has_n_lines n="339" /> + </assert_contents> + </element> + </output_collection> + </test> + <test> + <!-- test 2: check if identical outputs are produced (Muconate input)--> + <param name="rpsbml_file" value="muconate_example.xml" /> + <param name="sample_size" value="88" /> + <output name="Constructs" file="constructs_muconate.csv" ftype="csv" compare="diff"> + <assert_contents> + <has_n_lines n="89"/> + </assert_contents> + </output> + <output name="User parts plate" file="user_parts_plate_muconate.csv" ftype="csv" compare="diff"/> + <output name="Biolegio plate" file="biolegio_plate_muconate.csv" ftype="csv" compare="diff"/> </test> </tests> <help><![CDATA[ @@ -76,18 +145,19 @@ Advanced options: -* **parts_files**\ : (string) List of files providing available linkers and user parts (backbone, promoters, ...) for constructs. Default: [data/biolegio_parts.csv, user_parts.csv] +* **parts_files**\ : (string) List of files providing available linkers and user parts (backbone, promoters, ...) for constructs. Default: [data/biolegio_parts.csv, data/user_parts.csv] * **lms_id**\ : (string) part ID to be used as the LMS methylated linker. Default: LMS. * **lmp_id**\ : (string) part ID to be used as the LMP methylated linker. Default: LMP. * **backbone_id**\ : (string) part ID to be used as the backbone. Default: BASIC_SEVA_37_CmR-p15A.1. -* **sample_size**\ : (int) Number of construct to generate.Default: 3. +* **sample_size**\ : (int) Number of construct to generate. Default: 88. * **cds_permutation**\ : (boolean) Whether all combinations of CDS permutation should be built Default: true. +* **max_enz_per_rxn**\ : (integer) Maximum number of enyzme to consider per reaction. If more enzymes are available for a given reaction, then only the last one listed in the MIRIAM annotation section will be kept. (Default: 1). Output ------ * **o_dnabot_dir**\ : (string) Output folder to write construct and plate files. It will be created if it does not exist yet. Existing files will be overwritten. Default: out/dnabot_in. -* **o_sbol_dir**\ : (string) Output folder to write SBOL depictions of constructs. It will be created if it does not exist yet. Existing files will be overwritten. Default: out/sbol_export. +* **o_sbol_dir**\ : (string) Output folder to write SBOL depictions of constructs. Existing files will be overwritten. Default: not output. Project Links ------------------ @@ -101,21 +171,6 @@ ]]></help> <citations> - <citation type="bibtex"> - @article{10.1093/synbio/ysaa010, - author = {Storch, Marko and Haines, Matthew C and Baldwin, Geoff S}, - title = {DNA-BOT: a low-cost, automated DNA assembly platform for synthetic biology}, - journal = {Synthetic Biology}, - volume = {5}, - number = {1}, - year = {2020}, - month = {07}, - issn = {2397-7000}, - doi = {10.1093/synbio/ysaa010}, - url = {https://doi.org/10.1093/synbio/ysaa010}, - note = {ysaa010}, - eprint = {https://academic.oup.com/synbio/article-pdf/5/1/ysaa010/33722340/ysaa010.pdf}, - } - </citation> + <citation type="doi">10.1093/synbio/ysaa010</citation> </citations> </tool> \ No newline at end of file
--- a/test-data/BASIC_construct_A1.xml Wed Dec 15 15:10:43 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,339 +0,0 @@ -<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:sbol="http://sbols.org/v2#"> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/LMS/1"> - <sbol:sequence rdf:resource="https://localhost/Sequence/LMS/1"/> - <sbol:version>1</sbol:version> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/LMS"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000001"/> - <sbol:displayId>LMS</sbol:displayId> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/BASIC_SEVA_37_CmR_p15A_1/1"> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000988"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/BASIC_SEVA_37_CmR_p15A_1/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_SEVA_37_CmR_p15A_1"/> - <sbol:version>1</sbol:version> - <sbol:displayId>BASIC_SEVA_37_CmR_p15A_1</sbol:displayId> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/LMP/1"> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000001"/> - <sbol:displayId>LMP</sbol:displayId> - <sbol:sequence rdf:resource="https://localhost/Sequence/LMP/1"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/LMP"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/PJ23119_BASIC/1"> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/PJ23119_BASIC"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:displayId>PJ23119_BASIC</sbol:displayId> - <sbol:sequence rdf:resource="https://localhost/Sequence/PJ23119_BASIC/1"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000167"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/U1_RBS1/1"> - <sbol:sequence rdf:resource="https://localhost/Sequence/U1_RBS1/1"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000139"/> - <sbol:displayId>U1_RBS1</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/U1_RBS1"/> - <sbol:version>1</sbol:version> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/P21684/1"> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000316"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/P21684"/> - <sbol:version>1</sbol:version> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/P21684/1"/> - <sbol:displayId>P21684</sbol:displayId> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/U2_RBS1/1"> - <sbol:displayId>U2_RBS1</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/U2_RBS1"/> - <sbol:version>1</sbol:version> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000139"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/U2_RBS1/1"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/P21683/1"> - <sbol:displayId>P21683</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/P21683"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/P21683/1"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000316"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/U3_RBS2/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/U3_RBS2"/> - <sbol:version>1</sbol:version> - <sbol:sequence rdf:resource="https://localhost/Sequence/U3_RBS2/1"/> - <sbol:displayId>U3_RBS2</sbol:displayId> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000139"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/P21685/1"> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/P21685"/> - <sbol:displayId>P21685</sbol:displayId> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000316"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/P21685/1"/> - <sbol:version>1</sbol:version> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/1"> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/U3_RBS2_0/1"> - <sbol:displayId>U3_RBS2_0</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/U3_RBS2_0"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/U3_RBS2/1"/> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - </sbol:Component> - </sbol:component> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_5/1"> - <sbol:version>1</sbol:version> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/P21684_0/1"/> - <sbol:displayId>constraint_5</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_5"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/U2_RBS1_0/1"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_7/1"> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/P21683_0/1"/> - <sbol:displayId>constraint_7</sbol:displayId> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_7"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/U3_RBS2_0/1"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:version>1</sbol:version> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/U1_RBS1_0/1"> - <sbol:version>1</sbol:version> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/U1_RBS1/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/U1_RBS1_0"/> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:displayId>U1_RBS1_0</sbol:displayId> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/BASIC_SEVA_37_CmR_p15A_1_0/1"> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/BASIC_SEVA_37_CmR_p15A_1/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/BASIC_SEVA_37_CmR_p15A_1_0"/> - <sbol:displayId>BASIC_SEVA_37_CmR_p15A_1_0</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/P21684_0/1"> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:displayId>P21684_0</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/P21684_0"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/P21684/1"/> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/LMS_0/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/LMS_0"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/LMS/1"/> - <sbol:displayId>LMS_0</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/LMP_0/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/LMP_0"/> - <sbol:version>1</sbol:version> - <sbol:displayId>LMP_0</sbol:displayId> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/LMP/1"/> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/P21683_0/1"> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/P21683/1"/> - <sbol:displayId>P21683_0</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/P21683_0"/> - </sbol:Component> - </sbol:component> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1"/> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_8/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_8"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/P21685_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/U3_RBS2_0/1"/> - <sbol:version>1</sbol:version> - <sbol:displayId>constraint_8</sbol:displayId> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_2/1"> - <sbol:displayId>constraint_2</sbol:displayId> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/PJ23119_BASIC_0/1"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_2"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/LMP_0/1"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:type rdf:resource="http://identifiers.org/so/SO:0000987"/> - <sbol:displayId>BASIC_construct_A1</sbol:displayId> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_0/1"> - <sbol:displayId>constraint_0</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/BASIC_SEVA_37_CmR_p15A_1_0/1"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/LMS_0/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_0"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_6/1"> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/U2_RBS1_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:displayId>constraint_6</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_6"/> - <sbol:version>1</sbol:version> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/P21683_0/1"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/PJ23119_BASIC_0/1"> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/PJ23119_BASIC/1"/> - <sbol:version>1</sbol:version> - <sbol:displayId>PJ23119_BASIC_0</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/PJ23119_BASIC_0"/> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/U2_RBS1_0/1"> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/U2_RBS1/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/U2_RBS1_0"/> - <sbol:version>1</sbol:version> - <sbol:displayId>U2_RBS1_0</sbol:displayId> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - </sbol:Component> - </sbol:component> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_3/1"> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/U1_RBS1_0/1"/> - <sbol:version>1</sbol:version> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/PJ23119_BASIC_0/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_3"/> - <sbol:displayId>constraint_3</sbol:displayId> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/P21685_0/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/P21685_0"/> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:displayId>P21685_0</sbol:displayId> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/P21685/1"/> - </sbol:Component> - </sbol:component> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_1/1"> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_1"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/BASIC_SEVA_37_CmR_p15A_1_0/1"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/LMP_0/1"/> - <sbol:displayId>constraint_1</sbol:displayId> - <sbol:version>1</sbol:version> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_4/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/constraint_4"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/U1_RBS1_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:version>1</sbol:version> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_A1/P21684_0/1"/> - <sbol:displayId>constraint_4</sbol:displayId> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - </sbol:ComponentDefinition> - <sbol:Sequence rdf:about="https://localhost/Sequence/LMS/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/LMS"/> - <sbol:displayId>LMS</sbol:displayId> - <sbol:elements></sbol:elements> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/BASIC_SEVA_37_CmR_p15A_1/1"> - <sbol:displayId>BASIC_SEVA_37_CmR_p15A_1</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/BASIC_SEVA_37_CmR_p15A_1"/> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:elements></sbol:elements> - <sbol:version>1</sbol:version> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/LMP/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:displayId>LMP</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/LMP"/> - <sbol:elements></sbol:elements> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/PJ23119_BASIC/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/PJ23119_BASIC"/> - <sbol:elements></sbol:elements> - <sbol:displayId>PJ23119_BASIC</sbol:displayId> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/U1_RBS1/1"> - <sbol:elements></sbol:elements> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:displayId>U1_RBS1</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/U1_RBS1"/> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/P21684/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:elements>atgc</sbol:elements> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/P21684"/> - <sbol:displayId>P21684</sbol:displayId> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/U2_RBS1/1"> - <sbol:displayId>U2_RBS1</sbol:displayId> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:elements></sbol:elements> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/U2_RBS1"/> - <sbol:version>1</sbol:version> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/P21683/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/P21683"/> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:displayId>P21683</sbol:displayId> - <sbol:elements>atgc</sbol:elements> - <sbol:version>1</sbol:version> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/U3_RBS2/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/U3_RBS2"/> - <sbol:displayId>U3_RBS2</sbol:displayId> - <sbol:elements></sbol:elements> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/P21685/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/P21685"/> - <sbol:elements>atgc</sbol:elements> - <sbol:version>1</sbol:version> - <sbol:displayId>P21685</sbol:displayId> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - </sbol:Sequence> -</rdf:RDF>
--- a/test-data/BASIC_construct_B1.xml Wed Dec 15 15:10:43 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,339 +0,0 @@ -<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:sbol="http://sbols.org/v2#"> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/LMS/1"> - <sbol:sequence rdf:resource="https://localhost/Sequence/LMS/1"/> - <sbol:version>1</sbol:version> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/LMS"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000001"/> - <sbol:displayId>LMS</sbol:displayId> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/BASIC_SEVA_37_CmR_p15A_1/1"> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000988"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/BASIC_SEVA_37_CmR_p15A_1/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_SEVA_37_CmR_p15A_1"/> - <sbol:version>1</sbol:version> - <sbol:displayId>BASIC_SEVA_37_CmR_p15A_1</sbol:displayId> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/LMP/1"> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000001"/> - <sbol:displayId>LMP</sbol:displayId> - <sbol:sequence rdf:resource="https://localhost/Sequence/LMP/1"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/LMP"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/PJ23101_BASIC/1"> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:displayId>PJ23101_BASIC</sbol:displayId> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000167"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/PJ23101_BASIC/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/PJ23101_BASIC"/> - <sbol:version>1</sbol:version> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/U1_RBS3/1"> - <sbol:displayId>U1_RBS3</sbol:displayId> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:version>1</sbol:version> - <sbol:sequence rdf:resource="https://localhost/Sequence/U1_RBS3/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/U1_RBS3"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000139"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/P21684/1"> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000316"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/P21684"/> - <sbol:version>1</sbol:version> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/P21684/1"/> - <sbol:displayId>P21684</sbol:displayId> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/U2_RBS1/1"> - <sbol:displayId>U2_RBS1</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/U2_RBS1"/> - <sbol:version>1</sbol:version> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000139"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/U2_RBS1/1"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/P21683/1"> - <sbol:displayId>P21683</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/P21683"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/P21683/1"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000316"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/U3_RBS2/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/U3_RBS2"/> - <sbol:version>1</sbol:version> - <sbol:sequence rdf:resource="https://localhost/Sequence/U3_RBS2/1"/> - <sbol:displayId>U3_RBS2</sbol:displayId> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000139"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/P21685/1"> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/P21685"/> - <sbol:displayId>P21685</sbol:displayId> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000316"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/P21685/1"/> - <sbol:version>1</sbol:version> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/1"> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_1/1"> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_1"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/BASIC_SEVA_37_CmR_p15A_1_0/1"/> - <sbol:displayId>constraint_1</sbol:displayId> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/LMP_0/1"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/P21684_0/1"> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:displayId>P21684_0</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/P21684_0"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/P21684/1"/> - </sbol:Component> - </sbol:component> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_7/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_7"/> - <sbol:version>1</sbol:version> - <sbol:displayId>constraint_7</sbol:displayId> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/P21683_0/1"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/U3_RBS2_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/U2_RBS1_0/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/U2_RBS1_0"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/U2_RBS1/1"/> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:displayId>U2_RBS1_0</sbol:displayId> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/BASIC_SEVA_37_CmR_p15A_1_0/1"> - <sbol:displayId>BASIC_SEVA_37_CmR_p15A_1_0</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/BASIC_SEVA_37_CmR_p15A_1_0"/> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/BASIC_SEVA_37_CmR_p15A_1/1"/> - </sbol:Component> - </sbol:component> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_3/1"> - <sbol:displayId>constraint_3</sbol:displayId> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/PJ23101_BASIC_0/1"/> - <sbol:version>1</sbol:version> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/U1_RBS3_0/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_3"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_6/1"> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/P21683_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:displayId>constraint_6</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_6"/> - <sbol:version>1</sbol:version> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/U2_RBS1_0/1"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:type rdf:resource="http://identifiers.org/so/SO:0000987"/> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/U3_RBS2_0/1"> - <sbol:displayId>U3_RBS2_0</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/U3_RBS2_0"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/U3_RBS2/1"/> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - </sbol:Component> - </sbol:component> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_4/1"> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:displayId>constraint_4</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_4"/> - <sbol:version>1</sbol:version> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/U1_RBS3_0/1"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/P21684_0/1"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/U1_RBS3_0/1"> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/U1_RBS3_0"/> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/U1_RBS3/1"/> - <sbol:displayId>U1_RBS3_0</sbol:displayId> - </sbol:Component> - </sbol:component> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1"/> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_5/1"> - <sbol:displayId>constraint_5</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/U2_RBS1_0/1"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/P21684_0/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_5"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/LMP_0/1"> - <sbol:version>1</sbol:version> - <sbol:displayId>LMP_0</sbol:displayId> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/LMP/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/LMP_0"/> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/LMS_0/1"> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:version>1</sbol:version> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/LMS/1"/> - <sbol:displayId>LMS_0</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/LMS_0"/> - </sbol:Component> - </sbol:component> - <sbol:displayId>BASIC_construct_B1</sbol:displayId> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/P21685_0/1"> - <sbol:displayId>P21685_0</sbol:displayId> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/P21685/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/P21685_0"/> - <sbol:version>1</sbol:version> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/PJ23101_BASIC_0/1"> - <sbol:version>1</sbol:version> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/PJ23101_BASIC/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/PJ23101_BASIC_0"/> - <sbol:displayId>PJ23101_BASIC_0</sbol:displayId> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - </sbol:Component> - </sbol:component> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_8/1"> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/U3_RBS2_0/1"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/P21685_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:version>1</sbol:version> - <sbol:displayId>constraint_8</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_8"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/P21683_0/1"> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:displayId>P21683_0</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/P21683_0"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/P21683/1"/> - <sbol:version>1</sbol:version> - </sbol:Component> - </sbol:component> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_0/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_0"/> - <sbol:version>1</sbol:version> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/BASIC_SEVA_37_CmR_p15A_1_0/1"/> - <sbol:displayId>constraint_0</sbol:displayId> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/LMS_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:version>1</sbol:version> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_2/1"> - <sbol:version>1</sbol:version> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/PJ23101_BASIC_0/1"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/LMP_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:displayId>constraint_2</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_B1/constraint_2"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - </sbol:ComponentDefinition> - <sbol:Sequence rdf:about="https://localhost/Sequence/LMS/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/LMS"/> - <sbol:displayId>LMS</sbol:displayId> - <sbol:elements></sbol:elements> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/BASIC_SEVA_37_CmR_p15A_1/1"> - <sbol:displayId>BASIC_SEVA_37_CmR_p15A_1</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/BASIC_SEVA_37_CmR_p15A_1"/> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:elements></sbol:elements> - <sbol:version>1</sbol:version> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/LMP/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:displayId>LMP</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/LMP"/> - <sbol:elements></sbol:elements> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/PJ23101_BASIC/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/PJ23101_BASIC"/> - <sbol:displayId>PJ23101_BASIC</sbol:displayId> - <sbol:elements></sbol:elements> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/U1_RBS3/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/U1_RBS3"/> - <sbol:elements></sbol:elements> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:displayId>U1_RBS3</sbol:displayId> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/P21684/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:elements>atgc</sbol:elements> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/P21684"/> - <sbol:displayId>P21684</sbol:displayId> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/U2_RBS1/1"> - <sbol:displayId>U2_RBS1</sbol:displayId> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:elements></sbol:elements> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/U2_RBS1"/> - <sbol:version>1</sbol:version> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/P21683/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/P21683"/> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:displayId>P21683</sbol:displayId> - <sbol:elements>atgc</sbol:elements> - <sbol:version>1</sbol:version> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/U3_RBS2/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/U3_RBS2"/> - <sbol:displayId>U3_RBS2</sbol:displayId> - <sbol:elements></sbol:elements> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/P21685/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/P21685"/> - <sbol:elements>atgc</sbol:elements> - <sbol:version>1</sbol:version> - <sbol:displayId>P21685</sbol:displayId> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - </sbol:Sequence> -</rdf:RDF>
--- a/test-data/BASIC_construct_C1.xml Wed Dec 15 15:10:43 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,339 +0,0 @@ -<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:sbol="http://sbols.org/v2#"> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/LMS/1"> - <sbol:sequence rdf:resource="https://localhost/Sequence/LMS/1"/> - <sbol:version>1</sbol:version> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/LMS"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000001"/> - <sbol:displayId>LMS</sbol:displayId> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/BASIC_SEVA_37_CmR_p15A_1/1"> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000988"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/BASIC_SEVA_37_CmR_p15A_1/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_SEVA_37_CmR_p15A_1"/> - <sbol:version>1</sbol:version> - <sbol:displayId>BASIC_SEVA_37_CmR_p15A_1</sbol:displayId> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/LMP/1"> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000001"/> - <sbol:displayId>LMP</sbol:displayId> - <sbol:sequence rdf:resource="https://localhost/Sequence/LMP/1"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/LMP"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/PJ23101_BASIC/1"> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:displayId>PJ23101_BASIC</sbol:displayId> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000167"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/PJ23101_BASIC/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/PJ23101_BASIC"/> - <sbol:version>1</sbol:version> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/U1_RBS1/1"> - <sbol:sequence rdf:resource="https://localhost/Sequence/U1_RBS1/1"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000139"/> - <sbol:displayId>U1_RBS1</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/U1_RBS1"/> - <sbol:version>1</sbol:version> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/P21684/1"> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000316"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/P21684"/> - <sbol:version>1</sbol:version> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/P21684/1"/> - <sbol:displayId>P21684</sbol:displayId> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/U3_RBS2/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/U3_RBS2"/> - <sbol:version>1</sbol:version> - <sbol:sequence rdf:resource="https://localhost/Sequence/U3_RBS2/1"/> - <sbol:displayId>U3_RBS2</sbol:displayId> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000139"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/P21685/1"> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/P21685"/> - <sbol:displayId>P21685</sbol:displayId> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000316"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/P21685/1"/> - <sbol:version>1</sbol:version> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/U2_RBS2/1"> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000139"/> - <sbol:displayId>U2_RBS2</sbol:displayId> - <sbol:sequence rdf:resource="https://localhost/Sequence/U2_RBS2/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/U2_RBS2"/> - <sbol:version>1</sbol:version> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/P21683/1"> - <sbol:displayId>P21683</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/P21683"/> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:sequence rdf:resource="https://localhost/Sequence/P21683/1"/> - <sbol:role rdf:resource="http://identifiers.org/so/SO:0000316"/> - </sbol:ComponentDefinition> - <sbol:ComponentDefinition rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1"/> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/P21685_0/1"> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/P21685/1"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/P21685_0"/> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:displayId>P21685_0</sbol:displayId> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/BASIC_SEVA_37_CmR_p15A_1_0/1"> - <sbol:displayId>BASIC_SEVA_37_CmR_p15A_1_0</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/BASIC_SEVA_37_CmR_p15A_1_0"/> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/BASIC_SEVA_37_CmR_p15A_1/1"/> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/P21684_0/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/P21684_0"/> - <sbol:version>1</sbol:version> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/P21684/1"/> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:displayId>P21684_0</sbol:displayId> - </sbol:Component> - </sbol:component> - <sbol:version>1</sbol:version> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_6/1"> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/U3_RBS2_0/1"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/P21685_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:displayId>constraint_6</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_6"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_4/1"> - <sbol:displayId>constraint_4</sbol:displayId> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/U1_RBS1_0/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_4"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:version>1</sbol:version> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/P21684_0/1"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/LMP_0/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/LMP_0"/> - <sbol:version>1</sbol:version> - <sbol:displayId>LMP_0</sbol:displayId> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/LMP/1"/> - </sbol:Component> - </sbol:component> - <sbol:type rdf:resource="http://identifiers.org/so/SO:0000987"/> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/P21683_0/1"> - <sbol:displayId>P21683_0</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/P21683_0"/> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/P21683/1"/> - </sbol:Component> - </sbol:component> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/U2_RBS2_0/1"> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/U2_RBS2/1"/> - <sbol:displayId>U2_RBS2_0</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/U2_RBS2_0"/> - </sbol:Component> - </sbol:component> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_5/1"> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/U3_RBS2_0/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_5"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/P21684_0/1"/> - <sbol:version>1</sbol:version> - <sbol:displayId>constraint_5</sbol:displayId> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_8/1"> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:displayId>constraint_8</sbol:displayId> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/P21683_0/1"/> - <sbol:version>1</sbol:version> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/U2_RBS2_0/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_8"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_2/1"> - <sbol:displayId>constraint_2</sbol:displayId> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/PJ23101_BASIC_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/LMP_0/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_2"/> - <sbol:version>1</sbol:version> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_3/1"> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_3"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/U1_RBS1_0/1"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/PJ23101_BASIC_0/1"/> - <sbol:displayId>constraint_3</sbol:displayId> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/LMS_0/1"> - <sbol:displayId>LMS_0</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/LMS/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/LMS_0"/> - </sbol:Component> - </sbol:component> - <sbol:type rdf:resource="http://www.biopax.org/release/biopax-level3.owl#DnaRegion"/> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/U1_RBS1_0/1"> - <sbol:displayId>U1_RBS1_0</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/U1_RBS1_0"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/U1_RBS1/1"/> - </sbol:Component> - </sbol:component> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_1/1"> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/BASIC_SEVA_37_CmR_p15A_1_0/1"/> - <sbol:version>1</sbol:version> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/LMP_0/1"/> - <sbol:displayId>constraint_1</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_1"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/U3_RBS2_0/1"> - <sbol:displayId>U3_RBS2_0</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/U3_RBS2/1"/> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/U3_RBS2_0"/> - </sbol:Component> - </sbol:component> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_7/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_7"/> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/U2_RBS2_0/1"/> - <sbol:displayId>constraint_7</sbol:displayId> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/P21685_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:version>1</sbol:version> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:displayId>BASIC_construct_C1</sbol:displayId> - <sbol:sequenceConstraint> - <sbol:SequenceConstraint rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_0/1"> - <sbol:subject rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/LMS_0/1"/> - <sbol:restriction rdf:resource="http://sbols.org/v2#precedes"/> - <sbol:displayId>constraint_0</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/constraint_0"/> - <sbol:version>1</sbol:version> - <sbol:object rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/BASIC_SEVA_37_CmR_p15A_1_0/1"/> - </sbol:SequenceConstraint> - </sbol:sequenceConstraint> - <sbol:component> - <sbol:Component rdf:about="https://localhost/ComponentDefinition/BASIC_construct_C1/PJ23101_BASIC_0/1"> - <sbol:access rdf:resource="http://sbols.org/v2#public"/> - <sbol:definition rdf:resource="https://localhost/ComponentDefinition/PJ23101_BASIC/1"/> - <sbol:persistentIdentity rdf:resource="https://localhost/ComponentDefinition/BASIC_construct_C1/PJ23101_BASIC_0"/> - <sbol:displayId>PJ23101_BASIC_0</sbol:displayId> - <sbol:version>1</sbol:version> - </sbol:Component> - </sbol:component> - </sbol:ComponentDefinition> - <sbol:Sequence rdf:about="https://localhost/Sequence/LMS/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/LMS"/> - <sbol:displayId>LMS</sbol:displayId> - <sbol:elements></sbol:elements> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/BASIC_SEVA_37_CmR_p15A_1/1"> - <sbol:displayId>BASIC_SEVA_37_CmR_p15A_1</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/BASIC_SEVA_37_CmR_p15A_1"/> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:elements></sbol:elements> - <sbol:version>1</sbol:version> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/LMP/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:displayId>LMP</sbol:displayId> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/LMP"/> - <sbol:elements></sbol:elements> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/PJ23101_BASIC/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/PJ23101_BASIC"/> - <sbol:displayId>PJ23101_BASIC</sbol:displayId> - <sbol:elements></sbol:elements> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/U1_RBS1/1"> - <sbol:elements></sbol:elements> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:displayId>U1_RBS1</sbol:displayId> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/U1_RBS1"/> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/P21684/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:elements>atgc</sbol:elements> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/P21684"/> - <sbol:displayId>P21684</sbol:displayId> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/U3_RBS2/1"> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/U3_RBS2"/> - <sbol:displayId>U3_RBS2</sbol:displayId> - <sbol:elements></sbol:elements> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/P21685/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/P21685"/> - <sbol:elements>atgc</sbol:elements> - <sbol:version>1</sbol:version> - <sbol:displayId>P21685</sbol:displayId> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/U2_RBS2/1"> - <sbol:displayId>U2_RBS2</sbol:displayId> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:version>1</sbol:version> - <sbol:elements></sbol:elements> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/U2_RBS2"/> - </sbol:Sequence> - <sbol:Sequence rdf:about="https://localhost/Sequence/P21683/1"> - <sbol:persistentIdentity rdf:resource="https://localhost/Sequence/P21683"/> - <sbol:encoding rdf:resource="http://www.chem.qmul.ac.uk/iubmb/misc/naseq.html"/> - <sbol:displayId>P21683</sbol:displayId> - <sbol:elements>atgc</sbol:elements> - <sbol:version>1</sbol:version> - </sbol:Sequence> -</rdf:RDF>
--- a/test-data/biolegio_plate.csv Wed Dec 15 15:10:43 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,83 +0,0 @@ -Part/linker,Well,Part concentration (ng/uL) -L1-S,A1, -L1-P,B1, -L2-S,A2, -L2-P,B2, -L3-S,A3, -L3-P,B3, -L4-S,A4, -L4-P,B4, -L5-S,A5, -L5-P,B5, -L6-S,A6, -L6-P,B6, -LMP-S,A7, -LMP-P,B7, -LMS-S,A8, -LMS-P,B8, -U1-S,C1, -U2-S,C2, -U3-S,C3, -U1-RBS1-P,C4, -U1-RBS2-P,C5, -U1-RBS3-P,C6, -U1-A01-P,D1, -U1-A02-P,D2, -U1-A03-P,D3, -U1-A04-P,D4, -U1-A05-P,D5, -U1-A06-P,D6, -U1-A07-P,D7, -U1-A08-P,D8, -U1-A09-P,D9, -U1-A10-P,D10, -U1-A11-P,D11 -U1-A12-P,D12, -U2-RBS1-P,C7, -U2-RBS2-P,C8, -U2-RBS3-P,C9, -U2-A01-P,E1, -U2-A02-P,E2, -U2-A03-P,E3, -U2-A04-P,E4, -U2-A05-P,E5, -U2-A06-P,E6, -U2-A07-P,E7, -U2-A08-P,E8, -U2-A09-P,E9, -U2-A10-P,E10, -U2-A11-P,E11 -U2-A12-P,E12, -U3-RBS1-P,C10, -U3-RBS2-P,C11, -U3-RBS3-P,C12, -U3-A01-P,F1, -U3-A02-P,F2, -U3-A03-P,F3, -U3-A04-P,F4, -U3-A05-P,F5, -U3-A06-P,F6, -U3-A07-P,F7, -U3-A08-P,F8, -U3-A09-P,F9, -U3-A10-P,F10, -U3-A11-P,F11 -U3-A12-P,F12, -U1-AM12-P,A10, -U1-AM24-P,B10, -U2-AM12-P,A11, -U2-AM24-P,B11, -U3-AM12-P,A12, -U3-AM24-P,B12, -LF1-S,A9, -LF1-P,B9, -LF2-S,G1, -LF2-P,H1, -LF3-S,G2, -LF3-P,H2, -LF4-S,G3, -LF4-P,H3, -LF5-S,G4, -LF5-P,H4, -LF6-S,G5, -LF6-P,H5, \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/biolegio_plate_lycopene.csv Mon Mar 28 14:16:59 2022 +0000 @@ -0,0 +1,83 @@ +Part/linker,Well,Part concentration (ng/uL) +L1-S,A1, +L1-P,B1, +L2-S,A2, +L2-P,B2, +L3-S,A3, +L3-P,B3, +L4-S,A4, +L4-P,B4, +L5-S,A5, +L5-P,B5, +L6-S,A6, +L6-P,B6, +LMP-S,A7, +LMP-P,B7, +LMS-S,A8, +LMS-P,B8, +U1-S,C1, +U2-S,C2, +U3-S,C3, +U1-RBS1-P,C4, +U1-RBS2-P,C5, +U1-RBS3-P,C6, +U1-A01-P,D1, +U1-A02-P,D2, +U1-A03-P,D3, +U1-A04-P,D4, +U1-A05-P,D5, +U1-A06-P,D6, +U1-A07-P,D7, +U1-A08-P,D8, +U1-A09-P,D9, +U1-A10-P,D10, +U1-A11-P,D11 +U1-A12-P,D12, +U2-RBS1-P,C7, +U2-RBS2-P,C8, +U2-RBS3-P,C9, +U2-A01-P,E1, +U2-A02-P,E2, +U2-A03-P,E3, +U2-A04-P,E4, +U2-A05-P,E5, +U2-A06-P,E6, +U2-A07-P,E7, +U2-A08-P,E8, +U2-A09-P,E9, +U2-A10-P,E10, +U2-A11-P,E11 +U2-A12-P,E12, +U3-RBS1-P,C10, +U3-RBS2-P,C11, +U3-RBS3-P,C12, +U3-A01-P,F1, +U3-A02-P,F2, +U3-A03-P,F3, +U3-A04-P,F4, +U3-A05-P,F5, +U3-A06-P,F6, +U3-A07-P,F7, +U3-A08-P,F8, +U3-A09-P,F9, +U3-A10-P,F10, +U3-A11-P,F11 +U3-A12-P,F12, +U1-AM12-P,A10, +U1-AM24-P,B10, +U2-AM12-P,A11, +U2-AM24-P,B11, +U3-AM12-P,A12, +U3-AM24-P,B12, +LF1-S,A9, +LF1-P,B9, +LF2-S,G1, +LF2-P,H1, +LF3-S,G2, +LF3-P,H2, +LF4-S,G3, +LF4-P,H3, +LF5-S,G4, +LF5-P,H4, +LF6-S,G5, +LF6-P,H5, \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/biolegio_plate_muconate.csv Mon Mar 28 14:16:59 2022 +0000 @@ -0,0 +1,83 @@ +Part/linker,Well,Part concentration (ng/uL) +L1-S,A1, +L1-P,B1, +L2-S,A2, +L2-P,B2, +L3-S,A3, +L3-P,B3, +L4-S,A4, +L4-P,B4, +L5-S,A5, +L5-P,B5, +L6-S,A6, +L6-P,B6, +LMP-S,A7, +LMP-P,B7, +LMS-S,A8, +LMS-P,B8, +U1-S,C1, +U2-S,C2, +U3-S,C3, +U1-RBS1-P,C4, +U1-RBS2-P,C5, +U1-RBS3-P,C6, +U1-A01-P,D1, +U1-A02-P,D2, +U1-A03-P,D3, +U1-A04-P,D4, +U1-A05-P,D5, +U1-A06-P,D6, +U1-A07-P,D7, +U1-A08-P,D8, +U1-A09-P,D9, +U1-A10-P,D10, +U1-A11-P,D11 +U1-A12-P,D12, +U2-RBS1-P,C7, +U2-RBS2-P,C8, +U2-RBS3-P,C9, +U2-A01-P,E1, +U2-A02-P,E2, +U2-A03-P,E3, +U2-A04-P,E4, +U2-A05-P,E5, +U2-A06-P,E6, +U2-A07-P,E7, +U2-A08-P,E8, +U2-A09-P,E9, +U2-A10-P,E10, +U2-A11-P,E11 +U2-A12-P,E12, +U3-RBS1-P,C10, +U3-RBS2-P,C11, +U3-RBS3-P,C12, +U3-A01-P,F1, +U3-A02-P,F2, +U3-A03-P,F3, +U3-A04-P,F4, +U3-A05-P,F5, +U3-A06-P,F6, +U3-A07-P,F7, +U3-A08-P,F8, +U3-A09-P,F9, +U3-A10-P,F10, +U3-A11-P,F11 +U3-A12-P,F12, +U1-AM12-P,A10, +U1-AM24-P,B10, +U2-AM12-P,A11, +U2-AM24-P,B11, +U3-AM12-P,A12, +U3-AM24-P,B12, +LF1-S,A9, +LF1-P,B9, +LF2-S,G1, +LF2-P,H1, +LF3-S,G2, +LF3-P,H2, +LF4-S,G3, +LF4-P,H3, +LF5-S,G4, +LF5-P,H4, +LF6-S,G5, +LF6-P,H5, \ No newline at end of file
--- a/test-data/constructs.csv Wed Dec 15 15:10:43 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,4 +0,0 @@ -Well,Linker 1,Part 1,Linker 2,Part 2,Linker 3,Part 3,Linker 4,Part 4,Linker 5,Part 5,Linker 6,Part 6,Linker 7,Part 7,Linker 8,Part 8,Linker 9,Part 9,Linker 10,Part 10 -A1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS1,P21684,U2-RBS1,P21683,U3-RBS2,P21685,,,,,,,,,, -B1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS3,P21684,U2-RBS1,P21683,U3-RBS2,P21685,,,,,,,,,, -C1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS1,P21684,U3-RBS2,P21685,U2-RBS2,P21683,,,,,,,,,,
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/constructs_lycopene.csv Mon Mar 28 14:16:59 2022 +0000 @@ -0,0 +1,4 @@ +Well,Linker 1,Part 1,Linker 2,Part 2,Linker 3,Part 3,Linker 4,Part 4,Linker 5,Part 5,Linker 6,Part 6,Linker 7,Part 7,Linker 8,Part 8,Linker 9,Part 9,Linker 10,Part 10 +A1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS1,P21684,U2-RBS1,P21683,U3-RBS2,P21685,,,,,,,,,, +B1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS3,P21684,U2-RBS1,P21683,U3-RBS2,P21685,,,,,,,,,, +C1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS1,P21684,U3-RBS2,P21685,U2-RBS2,P21683,,,,,,,,,,
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/constructs_muconate.csv Mon Mar 28 14:16:59 2022 +0000 @@ -0,0 +1,89 @@ +Well,Linker 1,Part 1,Linker 2,Part 2,Linker 3,Part 3,Linker 4,Part 4,Linker 5,Part 5,Linker 6,Part 6,Linker 7,Part 7,Linker 8,Part 8,Linker 9,Part 9,Linker 10,Part 10 +A1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U2-RBS2,O33948,U1-RBS2,O85675,,,,,,,,,,,, +B1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS3,O85675,U2-RBS2,O33948,,,,,,,,,,,, +C1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U2-RBS2,O33948,U1-RBS1,O85675,,,,,,,,,,,, +D1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U2-RBS3,O33948,U1-RBS3,O85675,,,,,,,,,,,, +E1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U2-RBS1,O33948,U1-RBS3,O85675,,,,,,,,,,,, +F1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U1-RBS2,O85675,U2-RBS3,O33948,,,,,,,,,,,, +G1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U2-RBS3,O33948,U1-RBS3,O85675,,,,,,,,,,,, +H1,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U2-RBS1,O33948,U1-RBS3,O85675,,,,,,,,,,,, +A2,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U2-RBS2,O33948,U1-RBS3,O85675,,,,,,,,,,,, +B2,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U2-RBS3,O33948,U1-RBS2,O85675,,,,,,,,,,,, +C2,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U2-RBS2,O33948,U1-RBS1,O85675,,,,,,,,,,,, +D2,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U1-RBS1,O85675,U2-RBS1,O33948,,,,,,,,,,,, +E2,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS1,O85675,U2-RBS3,O33948,,,,,,,,,,,, +F2,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U2-RBS2,O33948,U1-RBS3,O85675,,,,,,,,,,,, +G2,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS2,O85675,U2-RBS2,O33948,,,,,,,,,,,, +H2,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U2-RBS2,O33948,U1-RBS2,O85675,,,,,,,,,,,, +A3,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U2-RBS3,O33948,U1-RBS2,O85675,,,,,,,,,,,, +B3,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U1-RBS2,O85675,U2-RBS3,O33948,,,,,,,,,,,, +C3,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS1,O85675,U2-RBS3,O33948,,,,,,,,,,,, +D3,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U2-RBS1,O33948,U1-RBS2,O85675,,,,,,,,,,,, +E3,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U2-RBS3,O33948,U1-RBS3,O85675,,,,,,,,,,,, +F3,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U2-RBS3,O33948,U1-RBS3,O85675,,,,,,,,,,,, +G3,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS3,O85675,U2-RBS1,O33948,,,,,,,,,,,, +H3,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U2-RBS2,O33948,U1-RBS1,O85675,,,,,,,,,,,, +A4,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS3,O85675,U2-RBS2,O33948,,,,,,,,,,,, +B4,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS1,O85675,U2-RBS1,O33948,,,,,,,,,,,, +C4,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U1-RBS1,O85675,U2-RBS2,O33948,,,,,,,,,,,, +D4,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U1-RBS2,O85675,U2-RBS2,O33948,,,,,,,,,,,, +E4,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS1,O85675,U2-RBS2,O33948,,,,,,,,,,,, +F4,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U2-RBS2,O33948,U1-RBS1,O85675,,,,,,,,,,,, +G4,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U2-RBS3,O33948,U1-RBS2,O85675,,,,,,,,,,,, +H4,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U2-RBS2,O33948,U1-RBS2,O85675,,,,,,,,,,,, +A5,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS2,O85675,U2-RBS3,O33948,,,,,,,,,,,, +B5,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U1-RBS3,O85675,U2-RBS1,O33948,,,,,,,,,,,, +C5,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U1-RBS2,O85675,U2-RBS1,O33948,,,,,,,,,,,, +D5,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS2,O85675,U2-RBS1,O33948,,,,,,,,,,,, +E5,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U2-RBS3,O33948,U1-RBS1,O85675,,,,,,,,,,,, +F5,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U1-RBS2,O85675,U2-RBS1,O33948,,,,,,,,,,,, +G5,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS2,O85675,U2-RBS1,O33948,,,,,,,,,,,, +H5,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U1-RBS1,O85675,U2-RBS3,O33948,,,,,,,,,,,, +A6,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U1-RBS3,O85675,U2-RBS2,O33948,,,,,,,,,,,, +B6,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U1-RBS1,O85675,U2-RBS2,O33948,,,,,,,,,,,, +C6,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS3,O85675,U2-RBS3,O33948,,,,,,,,,,,, +D6,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS1,O85675,U2-RBS2,O33948,,,,,,,,,,,, +E6,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U2-RBS1,O33948,U1-RBS1,O85675,,,,,,,,,,,, +F6,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U1-RBS3,O85675,U2-RBS3,O33948,,,,,,,,,,,, +G6,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U2-RBS1,O33948,U1-RBS2,O85675,,,,,,,,,,,, +H6,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U1-RBS3,O85675,U2-RBS3,O33948,,,,,,,,,,,, +A7,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U1-RBS3,O85675,U2-RBS2,O33948,,,,,,,,,,,, +B7,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U2-RBS3,O33948,U1-RBS2,O85675,,,,,,,,,,,, +C7,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U1-RBS1,O85675,U2-RBS1,O33948,,,,,,,,,,,, +D7,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U2-RBS3,O33948,U1-RBS1,O85675,,,,,,,,,,,, +E7,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U1-RBS1,O85675,U2-RBS1,O33948,,,,,,,,,,,, +F7,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS3,O85675,U2-RBS1,O33948,,,,,,,,,,,, +G7,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U2-RBS3,O33948,U1-RBS1,O85675,,,,,,,,,,,, +H7,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U1-RBS2,O85675,U2-RBS3,O33948,,,,,,,,,,,, +A8,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS3,O85675,U2-RBS3,O33948,,,,,,,,,,,, +B8,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U2-RBS2,O33948,U1-RBS1,O85675,,,,,,,,,,,, +C8,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U2-RBS3,O33948,U1-RBS1,O85675,,,,,,,,,,,, +D8,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U2-RBS1,O33948,U1-RBS2,O85675,,,,,,,,,,,, +E8,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U2-RBS1,O33948,U1-RBS2,O85675,,,,,,,,,,,, +F8,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U1-RBS3,O85675,U2-RBS1,O33948,,,,,,,,,,,, +G8,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U2-RBS3,O33948,U1-RBS3,O85675,,,,,,,,,,,, +H8,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U2-RBS1,O33948,U1-RBS1,O85675,,,,,,,,,,,, +A9,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U1-RBS2,O85675,U2-RBS2,O33948,,,,,,,,,,,, +B9,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U2-RBS2,O33948,U1-RBS3,O85675,,,,,,,,,,,, +C9,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U2-RBS2,O33948,U1-RBS2,O85675,,,,,,,,,,,, +D9,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U2-RBS1,O33948,U1-RBS2,O85675,,,,,,,,,,,, +E9,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U2-RBS1,O33948,U1-RBS3,O85675,,,,,,,,,,,, +F9,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U2-RBS1,O33948,U1-RBS3,O85675,,,,,,,,,,,, +G9,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U1-RBS1,O85675,U2-RBS2,O33948,,,,,,,,,,,, +H9,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U2-RBS2,O33948,U1-RBS3,O85675,,,,,,,,,,,, +A10,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U1-RBS3,O85675,U2-RBS3,O33948,,,,,,,,,,,, +B10,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U1-RBS2,O85675,U2-RBS2,O33948,,,,,,,,,,,, +C10,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U2-RBS1,O33948,U1-RBS1,O85675,,,,,,,,,,,, +D10,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U2-RBS3,O33948,U1-RBS1,O85675,,,,,,,,,,,, +E10,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U2-RBS1,O33948,U1-RBS1,O85675,,,,,,,,,,,, +F10,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U2-RBS1,O33948,U1-RBS3,O85675,,,,,,,,,,,, +G10,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U2-RBS3,O33948,U1-RBS2,O85675,,,,,,,,,,,, +H10,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U2-RBS2,O33948,U1-RBS2,O85675,,,,,,,,,,,, +A11,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U1-RBS3,O85675,U2-RBS2,O33948,,,,,,,,,,,, +B11,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U1-RBS1,O85675,U2-RBS3,O33948,,,,,,,,,,,, +C11,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23104_BASIC,U1-RBS2,O85675,U2-RBS2,O33948,,,,,,,,,,,, +D11,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U2-RBS2,O33948,U1-RBS3,O85675,,,,,,,,,,,, +E11,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23111_BASIC,U1-RBS3,O85675,U2-RBS1,O33948,,,,,,,,,,,, +F11,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23119_BASIC,U1-RBS1,O85675,U2-RBS1,O33948,,,,,,,,,,,, +G11,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23101_BASIC,U2-RBS1,O33948,U1-RBS1,O85675,,,,,,,,,,,, +H11,LMS,BASIC_SEVA_37_CmR-p15A.1,LMP,PJ23108_BASIC,U1-RBS2,O85675,U2-RBS1,O33948,,,,,,,,,,,,
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/muconate_example.xml Mon Mar 28 14:16:59 2022 +0000 @@ -0,0 +1,5328 @@ +<?xml version="1.0" encoding="UTF-8"?> +<sbml xmlns="http://www.sbml.org/sbml/level3/version1/core" xmlns:groups="http://www.sbml.org/sbml/level3/version1/groups/version1" xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2" level="3" version="1" groups:required="false" fbc:required="false"> + <model metaid="a03e1bf0f20b54a66f7b4ce262ea6b0f7579c0a1e47144a649b9e2e711f6b3ed" id="RP_model_001_0001" name="001_0001" substanceUnits="mole" timeUnits="second" extentUnits="mole" fbc:strict="true"> + <listOfCompartments> + <compartment metaid="_2e7d2c03a9507ae265ecf5b5356885a53393a2029d241394997265a1a25aefc6" sboTerm="SBO:0000290" id="c" name="cytosol" size="1" constant="true"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#_2e7d2c03a9507ae265ecf5b5356885a53393a2029d241394997265a1a25aefc6"> + <bqbiol:is> + <rdf:Bag> + <rdf:li rdf:resource="http://identifiers.org/bigg.compartment/c"/> + <rdf:li rdf:resource="http://identifiers.org/bigg.compartment/c_c"/> + <rdf:li rdf:resource="http://identifiers.org/metanetx.compartment/MNXC3"/> + <rdf:li rdf:resource="http://identifiers.org/seed/c"/> + <rdf:li rdf:resource="http://identifiers.org/seed/c0"/> + <rdf:li rdf:resource="http://identifiers.org/seed/cytosol"/> + <rdf:li rdf:resource="http://identifiers.org/name/cytosol"/> + </rdf:Bag> + </bqbiol:is> + </rdf:Description> + </rdf:RDF> + </annotation> + </compartment> + </listOfCompartments> + <listOfSpecies> + <species metaid="_4a3e4e32a6db24e5ddaa18997f93519c4ef1c0172e96160cd56ad49ecf025995" id="MNXM5" name="MNXM5" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#_4a3e4e32a6db24e5ddaa18997f93519c4ef1c0172e96160cd56ad49ecf025995"> + <bqbiol:is> + <rdf:Bag/> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#_4a3e4e32a6db24e5ddaa18997f93519c4ef1c0172e96160cd56ad49ecf025995"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="N=C(O)c1ccc[n+](C2OC(COP(=O)(O)OP(=O)(O)OCC3OC(n4cnc5c(N)ncnc54)C(OP(=O)(O)O)C3O)C(O)C2O)c1"/> + <brsynth:inchi value="InChI=1S/C21H28N7O17P3/c22-17-12-19(25-7-24-17)28(8-26-12)21-16(44-46(33,34)35)14(30)11(43-21)6-41-48(38,39)45-47(36,37)40-5-10-13(29)15(31)20(42-10)27-3-1-2-9(4-27)18(23)32/h1-4,7-8,10-11,13-16,20-21,29-31H,5-6H2,(H7-,22,23,24,25,32,33,34,35,36,37,38,39)/p+1"/> + <brsynth:inchikey value="XJLXINKUBYWONI-UHFFFAOYSA-O"/> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + </species> + <species metaid="_2c27bb432be6149f648dcec0e702fd9bdf6449fb9f730bd86eeb0b63b93d8858" id="CMPD_0000000003" name="CMPD_0000000003" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#_2c27bb432be6149f648dcec0e702fd9bdf6449fb9f730bd86eeb0b63b93d8858"> + <bqbiol:is> + <rdf:Bag/> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#_2c27bb432be6149f648dcec0e702fd9bdf6449fb9f730bd86eeb0b63b93d8858"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="[H]Oc1c([H])c([H])c([H])c([H])c1O[H]"/> + <brsynth:inchi value="InChI=1S/C6H6O2/c7-5-3-1-2-4-6(5)8/h1-4,7-8H"/> + <brsynth:inchikey value="YCIMNLLNPGFGHC-UHFFFAOYSA-N"/> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + </species> + <species metaid="c18fc797adf5be2d9c14427deceaaecd152233bfd9b8c8ef9627274f3b2ee5da" id="MNXM4" name="MNXM4" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#c18fc797adf5be2d9c14427deceaaecd152233bfd9b8c8ef9627274f3b2ee5da"> + <bqbiol:is> + <rdf:Bag/> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#c18fc797adf5be2d9c14427deceaaecd152233bfd9b8c8ef9627274f3b2ee5da"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="O=O"/> + <brsynth:inchi value="InChI=1S/O2/c1-2"/> + <brsynth:inchikey value="MYMOFIZGZYHOMD-UHFFFAOYSA-N"/> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + </species> + <species metaid="_412740f4df65e5c27b3cb3342d9c78e498c4f5c7ed5c08bfd1e7bef604d5e466" id="MNXM188" name="MNXM188" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#_412740f4df65e5c27b3cb3342d9c78e498c4f5c7ed5c08bfd1e7bef604d5e466"> + <bqbiol:is> + <rdf:Bag/> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#_412740f4df65e5c27b3cb3342d9c78e498c4f5c7ed5c08bfd1e7bef604d5e466"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="[H]OC(=O)c1c([H])c([H])c([H])c([H])c1N([H])[H]"/> + <brsynth:inchi value="InChI=1S/C7H7NO2/c8-6-4-2-1-3-5(6)7(9)10/h1-4H,8H2,(H,9,10)"/> + <brsynth:inchikey value="RWZYAGGXGHYGMB-UHFFFAOYSA-N"/> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + </species> + <species metaid="_6817bb5f7133f50744b232330f1f3009343f785b8f77602ce5f44cdd9458f002" id="TARGET_0000000001" name="TARGET_0000000001" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#_6817bb5f7133f50744b232330f1f3009343f785b8f77602ce5f44cdd9458f002"> + <bqbiol:is> + <rdf:Bag/> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#_6817bb5f7133f50744b232330f1f3009343f785b8f77602ce5f44cdd9458f002"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="[H]OC(=O)C([H])=C([H])C([H])=C([H])C(=O)O[H]"/> + <brsynth:inchi value="InChI=1S/C6H6O4/c7-5(8)3-1-2-4-6(9)10/h1-4H,(H,7,8)(H,9,10)"/> + <brsynth:inchikey value="TXXHDPDFNKHHGW-UHFFFAOYSA-N"/> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + </species> + <species metaid="_565b5e3c38feed64054fc6727068060c34dcf6d8715c8474bdc4c11b810845fb" id="MNXM6" name="MNXM6" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#_565b5e3c38feed64054fc6727068060c34dcf6d8715c8474bdc4c11b810845fb"> + <bqbiol:is> + <rdf:Bag/> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#_565b5e3c38feed64054fc6727068060c34dcf6d8715c8474bdc4c11b810845fb"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="[H]N=C(O[H])C1=C([H])N(C2([H])OC([H])(C([H])([H])OP(=O)(O[H])OP(=O)(O[H])OC([H])([H])C3([H])OC([H])(n4c([H])nc5c(N([H])[H])nc([H])nc54)C([H])(OP(=O)(O[H])O[H])C3([H])O[H])C([H])(O[H])C2([H])O[H])C([H])=C([H])C1([H])[H]"/> + <brsynth:inchi value="InChI=1S/C21H30N7O17P3/c22-17-12-19(25-7-24-17)28(8-26-12)21-16(44-46(33,34)35)14(30)11(43-21)6-41-48(38,39)45-47(36,37)40-5-10-13(29)15(31)20(42-10)27-3-1-2-9(4-27)18(23)32/h1,3-4,7-8,10-11,13-16,20-21,29-31H,2,5-6H2,(H2,23,32)(H,36,37)(H,38,39)(H2,22,24,25)(H2,33,34,35)"/> + <brsynth:inchikey value="ACFIXJIJDZMPPO-UHFFFAOYSA-N"/> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + </species> + <species metaid="ada4d198af79d26a0eb691008fc79b883e3ee4d3ef8ce39c18214444cc981f25" id="MNXM1" name="MNXM1" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#ada4d198af79d26a0eb691008fc79b883e3ee4d3ef8ce39c18214444cc981f25"> + <bqbiol:is> + <rdf:Bag/> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#ada4d198af79d26a0eb691008fc79b883e3ee4d3ef8ce39c18214444cc981f25"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="[H+]"/> + <brsynth:inchi value="InChI=1S/p+1"/> + <brsynth:inchikey value="GPRLSGONYQIRFK-UHFFFAOYSA-N"/> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + </species> + <species metaid="_2a301e4e848a79652a3993832c9d968953ade64ccc71ea0ef1c47184f60ec251" id="MNXM13" name="MNXM13" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#_2a301e4e848a79652a3993832c9d968953ade64ccc71ea0ef1c47184f60ec251"> + <bqbiol:is> + <rdf:Bag/> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#_2a301e4e848a79652a3993832c9d968953ade64ccc71ea0ef1c47184f60ec251"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="O=C=O"/> + <brsynth:inchi value="InChI=1S/CO2/c2-1-3"/> + <brsynth:inchikey value="CURLTUGMZLYLDI-UHFFFAOYSA-N"/> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + </species> + <species metaid="_70815415d0cc5bdb32d594ff385cc7e2e02e73da1f5099a321b65aa158a4cf7b" id="MNXM15" name="MNXM15" compartment="c" initialConcentration="1" hasOnlySubstanceUnits="false" boundaryCondition="false" constant="false"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#_70815415d0cc5bdb32d594ff385cc7e2e02e73da1f5099a321b65aa158a4cf7b"> + <bqbiol:is> + <rdf:Bag/> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#_70815415d0cc5bdb32d594ff385cc7e2e02e73da1f5099a321b65aa158a4cf7b"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="N"/> + <brsynth:inchi value="InChI=1S/H3N/h1H3"/> + <brsynth:inchikey value="QGZKDVFQNNGYKY-UHFFFAOYSA-N"/> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + </species> + </listOfSpecies> + <listOfParameters> + <parameter metaid="dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91" sboTerm="SBO:0000625" id="BRS_FBC_999999_0" value="999999" constant="true"/> + <parameter metaid="dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91" sboTerm="SBO:0000625" id="BRS_FBC_0_0" value="0" constant="true"/> + </listOfParameters> + <listOfReactions> + <reaction metaid="_7af1776cbbaecbf874d7f576d21891f6ad79e3b7c2e726cfd2ee9f5bd6f483c4" sboTerm="SBO:0000176" id="rxn_1" reversible="false" fast="false" fbc:lowerFluxBound="BRS_FBC_0_0" fbc:upperFluxBound="BRS_FBC_999999_0"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#_7af1776cbbaecbf874d7f576d21891f6ad79e3b7c2e726cfd2ee9f5bd6f483c4"> + <bqbiol:is> + <rdf:Bag> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P08684"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8HZ69"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P78329"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9HBI6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1Z746"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P05181"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O60774"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8HZ70"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7YS44"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8VHG0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8SPQ7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5REK0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q28505"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q01740"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P97872"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9Y2Z9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q99518"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8K2I3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P97501"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P50285"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P49326"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P31513"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P31512"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8K0C4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5RE72"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4R8S6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q16850"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8K4B7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6IRI9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9EQ76"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8K4C0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P36365"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q64654"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6GUQ4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q05421"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P33266"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8HYJ9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4PJW3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q91WN4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O15229"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P51581"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P05182"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q95LA2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q95LA1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P49109"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P36366"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P49328"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O88867"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O18963"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P36367"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q04799"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P32417"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P17636"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P17635"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P16549"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7Q6A7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O46420"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9MZY0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q945B7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1RLY6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q86PM2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P79383"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P08682"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8S7V0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2Q094"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2Q093"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9MZS9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8S7E1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4ZKM5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5EFU4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C0SJS3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q43257"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C0SJS2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P98183"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q42798"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ZRY0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q07994"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P93703"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P26690"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5VRI5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9SWR5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C5IGQ5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C5IGQ3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O81971"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6QNI4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C0SJS4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/M1KXD0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/M1KVN4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6WNR0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6WNQ9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q43033"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q43255"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ZUX1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O80823"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FMY1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P93596"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6DIZ8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q43135"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6SJV8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B3RFJ6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P48422"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/G4XV71"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P93846"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9MBA1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8LEU3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9M591"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9SXS3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9LSF8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q43250"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O48958"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P48419"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P48418"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q501D8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O81346"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q43240"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q42797"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P48522"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q04468"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P37115"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O22203"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FLC8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q96423"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q43067"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P37114"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O81928"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9SAA9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q42600"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9AR74"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q43054"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P92994"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O24312"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/I3PLQ9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1NF18"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q50LH4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q50LH3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1NF19"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B5UAQ8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1NF20"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q948Y1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/L7X0L7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/F2Z9C1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FXW4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O64900"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O64899"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P47195"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4WAX0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1DA65"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4WAW8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1DA63"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2PBY6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/M1VNH2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4WAW5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1DA60"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q00707"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q50EK6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A9JPE2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A9JPE0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9C447"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B9WZX6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6UEF4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9C450"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9UW95"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6UEF3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9C449"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B9WZX4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B9WZX1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0V5K1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q12732"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9M7C0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9M7B9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P22367"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q078T0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B8QHP1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q12664"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P50859"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P10613"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7S3C9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2GQG8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O14442"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1DA64"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q759W0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P14263"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5B2N0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4WN75"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2UPP1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q21795"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0CRI5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B0Y7C3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A8Y432"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A2QPD9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A2QMH1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A2Q9N7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1DMD5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1CT23"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4WAW9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P10614"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9M7B8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9M7B7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6J541"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6J540"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B9UJ98"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B6D9L5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B9WZX5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B9UJ99"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q02315"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P49602"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6BV21"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5A7M3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P0CO49"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P0CO48"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P53318"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q09736"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q949U1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FUY7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q751I2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6C9M8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A3LNF8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P38169"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9LW27"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9SVU0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9LPL3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9LKC0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FVQ0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O64489"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O49312"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O23024"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9SZY8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9SVQ1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9LFM5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8VZ59"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P9WNZ2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4P0N0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7VBV0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7V1M1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7NFA1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6B8U1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q118B4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ZWM5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9XJ38"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9LD46"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9AR22"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P9WNZ3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q742Z1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P9WPP6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9KZF5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FCA6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P15245"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P9WPP7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9UVC3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9TLR8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8DJ05"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8DI68"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q85FX6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7V3Y9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5MZZ2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q31LY2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q31AS9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1XDK9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P74134"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P72777"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P72584"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P51277"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A9BAI8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A8G4Z1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A3PD22"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A2CDU0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A2BWG6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A2BR98"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q93MI2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P72495"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0QB57"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0S9Y3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1R2G2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5H782"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P9WPP8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A513"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q55688"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8YX57"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8YVU4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8YRZ2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7U6Y8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q3AK18"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0IAL0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A5GU20"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A5GKR3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7Z1V1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P9WPP9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B5APQ9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7V6D4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q54764"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B2J1M1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q54527"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q194P4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q58PK7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q194R1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B4XYB8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ZAU3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q59971"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P17549"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q54530"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P32009"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1IHK4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4T8B6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1TCX2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0R1T4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/S6BVH1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9L4Y1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P39888"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6W5Q7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6F4M9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6F4M8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5IZM4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/I0HUK7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P37365"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47PU3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/H1ZZA4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/H1ZZB2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/F3Y662"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5U913"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1B5E2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A3Q339"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1UJP4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9S3U9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9S3U8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5UQI3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1ZXH9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A6H1P4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A5FMP6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0M4X2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6N9J7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2ISZ6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q132P2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P0DJN9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B3Q7D4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q11PP7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8RQQ0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8RQP9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B8NHY4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5P8S3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5P8S2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5P8S1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1BGA7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4JQH4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4JPY1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0KE38"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C3UVB9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C3UVB8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C3UVB6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A8LVF4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4XD40"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A5EQ73"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4YNQ1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q93FB8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5VDD6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P94680"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P94679"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O13345"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4KAM4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q476N1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q13QI0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8NLB6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O06647"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q54RE8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1DDU6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/H3JQW0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/F8FZQ5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9RBG5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9RBG4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P21395"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B4XY99"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/F8G0M4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P21394"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9S158"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46M62"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9F0I2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7X4D9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O33457"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O33456"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P27138"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q845J6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q845J5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q845J4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q845J2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/E0XCR3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ANX4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ANX3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ANX1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ANX0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8VSV8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1N1A2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q92ZP8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q92ZP7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/E9JFX9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q92ZP9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C1I201"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8PM34"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8KN28"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O52644"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O52643"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q3S4B7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8PAD3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5H038"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4UT92"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2P316"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B2SIT6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B2FL98"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B0RV00"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O52380"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O52379"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6QHC2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6QHB9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51943"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51942"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51940"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51939"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5WY16"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q3BV41"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A5IG23"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q84HF5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q70KH9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/H9N289"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/H9N290"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A6TAC9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0QFQ1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7T912"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9F131"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ZN84"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q93TJ5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/H9N291"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/R9TPE4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/M1EY73"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/F0E1K6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9XCV6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q56167"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q3Z585"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B5XQI9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q56166"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6SSJ6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8KIC8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A3KBE8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P20586"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8KI25"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q83WG3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9R9T1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P00438"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q03298"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A5JTM8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B5Z2Q2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A7ZI94"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7WTJ6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7WTJ2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q01551"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8X680"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7NK08"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7N8Q4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7MPB4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7M2Z5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7L503"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B6HZX3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1LIN2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A7ZWZ4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5EXK1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P76081"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P76079"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P76078"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P76077"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P12609"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O05617"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O05616"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1XBJ4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9HWH2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9HWG9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19733"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19732"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19730"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19729"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P31020"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19734"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19731"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P25534"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P77397"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P25535"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q88FY2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P86491"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0VH44"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51603"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51602"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51601"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ZI64"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q53552"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P23262"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q84BZ3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q84BZ2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q84BZ1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q84BZ0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O85674"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O85673"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O85675"/> + <rdf:li rdf:resource="http://identifiers.org/ec-code/1.14.12.1"/> + </rdf:Bag> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#_7af1776cbbaecbf874d7f576d21891f6ad79e3b7c2e726cfd2ee9f5bd6f483c4"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="[H+].[H+].[H+].[H]OC(=O)c1c([H])c([H])c([H])c([H])c1N([H])[H].O=O.[H]N=C(O[H])C1=C([H])N(C2([H])OC([H])(C([H])([H])OP(=O)(O[H])OP(=O)(O[H])OC([H])([H])C3([H])OC([H])(n4c([H])nc5c(N([H])[H])nc([H])nc54)C([H])(OP(=O)(O[H])O[H])C3([H])O[H])C([H])(O[H])C2([H])O[H])C([H])=C([H])C1([H])[H]>>[H]Oc1c([H])c([H])c([H])c([H])c1O[H].O=C=O.N.N=C(O)c1ccc[n+](C2OC(COP(=O)(O)OP(=O)(O)OCC3OC(n4cnc5c(N)ncnc54)C(OP(=O)(O)O)C3O)C(O)C2O)c1"/> + <brsynth:rp2_transfo_id value="TRS_0_1_2"/> + <brsynth:rule_ids> + <brsynth:RR-02-9137e79005134eeb-16-F/> + </brsynth:rule_ids> + <brsynth:tmpl_rxn_ids> + <brsynth:MNXR106708/> + </brsynth:tmpl_rxn_ids> + <brsynth:rule_score value="0.6461261981425104"/> + <brsynth:idx_in_path value="1"/> + <brsynth:selenzy_O85675> + <brsynth:score value="88.318"/> + <brsynth:target_ID value="62977"/> + </brsynth:selenzy_O85675> + <brsynth:selenzy_O85673> + <brsynth:score value="87.265"/> + <brsynth:target_ID value="62977"/> + </brsynth:selenzy_O85673> + <brsynth:selenzy_O85674> + <brsynth:score value="87.265"/> + <brsynth:target_ID value="62977"/> + </brsynth:selenzy_O85674> + <brsynth:selenzy_Q84BZ0> + <brsynth:score value="85.318"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q84BZ0> + <brsynth:selenzy_Q84BZ1> + <brsynth:score value="85.318"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q84BZ1> + <brsynth:selenzy_Q84BZ2> + <brsynth:score value="84.265"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q84BZ2> + <brsynth:selenzy_Q84BZ3> + <brsynth:score value="84.265"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q84BZ3> + <brsynth:selenzy_P23262> + <brsynth:score value="78.711"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P23262> + <brsynth:selenzy_Q53552> + <brsynth:score value="78.411"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_Q53552> + <brsynth:selenzy_Q9ZI64> + <brsynth:score value="77.411"/> + <brsynth:target_ID value="316"/> + </brsynth:selenzy_Q9ZI64> + <brsynth:selenzy_Q51601> + <brsynth:score value="76.661"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q51601> + <brsynth:selenzy_Q51602> + <brsynth:score value="76.661"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q51602> + <brsynth:selenzy_Q51603> + <brsynth:score value="76.661"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q51603> + <brsynth:selenzy_Q0VH44> + <brsynth:score value="71.427"/> + <brsynth:target_ID value="395598"/> + </brsynth:selenzy_Q0VH44> + <brsynth:selenzy_P86491> + <brsynth:score value="66.072"/> + <brsynth:target_ID value="294"/> + </brsynth:selenzy_P86491> + <brsynth:selenzy_Q88FY2> + <brsynth:score value="65.072"/> + <brsynth:target_ID value="160488"/> + </brsynth:selenzy_Q88FY2> + <brsynth:selenzy_P25535> + <brsynth:score value="64.875"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P25535> + <brsynth:selenzy_P77397> + <brsynth:score value="64.45"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P77397> + <brsynth:selenzy_P25534> + <brsynth:score value="64.358"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P25534> + <brsynth:selenzy_P19731> + <brsynth:score value="64.239"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19731> + <brsynth:selenzy_P19734> + <brsynth:score value="64.239"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19734> + <brsynth:selenzy_P31020> + <brsynth:score value="64.039"/> + <brsynth:target_ID value="69012"/> + </brsynth:selenzy_P31020> + <brsynth:selenzy_P19729> + <brsynth:score value="63.939"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19729> + <brsynth:selenzy_P19730> + <brsynth:score value="63.939"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19730> + <brsynth:selenzy_P19732> + <brsynth:score value="63.939"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19732> + <brsynth:selenzy_P19733> + <brsynth:score value="63.939"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19733> + <brsynth:selenzy_Q9HWG9> + <brsynth:score value="63.672"/> + <brsynth:target_ID value="208964"/> + </brsynth:selenzy_Q9HWG9> + <brsynth:selenzy_Q9HWH2> + <brsynth:score value="63.672"/> + <brsynth:target_ID value="208964"/> + </brsynth:selenzy_Q9HWH2> + <brsynth:selenzy_B1XBJ4> + <brsynth:score value="63.25"/> + <brsynth:target_ID value="316385"/> + </brsynth:selenzy_B1XBJ4> + <brsynth:selenzy_O05616> + <brsynth:score value="62.93"/> + <brsynth:target_ID value="86003"/> + </brsynth:selenzy_O05616> + <brsynth:selenzy_O05617> + <brsynth:score value="62.93"/> + <brsynth:target_ID value="86003"/> + </brsynth:selenzy_O05617> + <brsynth:selenzy_P12609> + <brsynth:score value="62.93"/> + <brsynth:target_ID value="315"/> + </brsynth:selenzy_P12609> + <brsynth:selenzy_P76077> + <brsynth:score value="62.881"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P76077> + <brsynth:selenzy_P76078> + <brsynth:score value="62.881"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P76078> + <brsynth:selenzy_P76079> + <brsynth:score value="62.881"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P76079> + <brsynth:selenzy_P76081> + <brsynth:score value="62.881"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P76081> + <brsynth:selenzy_Q5EXK1> + <brsynth:score value="62.443"/> + <brsynth:target_ID value="571"/> + </brsynth:selenzy_Q5EXK1> + <brsynth:selenzy_A7ZWZ4> + <brsynth:score value="62.25"/> + <brsynth:target_ID value="331112"/> + </brsynth:selenzy_A7ZWZ4> + <brsynth:selenzy_B1LIN2> + <brsynth:score value="62.25"/> + <brsynth:target_ID value="439855"/> + </brsynth:selenzy_B1LIN2> + <brsynth:selenzy_B6HZX3> + <brsynth:score value="62.25"/> + <brsynth:target_ID value="409438"/> + </brsynth:selenzy_B6HZX3> + <brsynth:selenzy_B7L503> + <brsynth:score value="62.25"/> + <brsynth:target_ID value="585055"/> + </brsynth:selenzy_B7L503> + <brsynth:selenzy_B7M2Z5> + <brsynth:score value="62.25"/> + <brsynth:target_ID value="585034"/> + </brsynth:selenzy_B7M2Z5> + <brsynth:selenzy_B7MPB4> + <brsynth:score value="62.25"/> + <brsynth:target_ID value="585397"/> + </brsynth:selenzy_B7MPB4> + <brsynth:selenzy_B7N8Q4> + <brsynth:score value="62.25"/> + <brsynth:target_ID value="585056"/> + </brsynth:selenzy_B7N8Q4> + <brsynth:selenzy_B7NK08> + <brsynth:score value="62.25"/> + <brsynth:target_ID value="585057"/> + </brsynth:selenzy_B7NK08> + <brsynth:selenzy_Q8X680> + <brsynth:score value="62.25"/> + <brsynth:target_ID value="83334"/> + </brsynth:selenzy_Q8X680> + <brsynth:selenzy_Q01551> + <brsynth:score value="62.239"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q01551> + <brsynth:selenzy_Q7WTJ2> + <brsynth:score value="62.239"/> + <brsynth:target_ID value="871585"/> + </brsynth:selenzy_Q7WTJ2> + <brsynth:selenzy_Q7WTJ6> + <brsynth:score value="62.239"/> + <brsynth:target_ID value="871585"/> + </brsynth:selenzy_Q7WTJ6> + <brsynth:selenzy_A7ZI94> + <brsynth:score value="61.25"/> + <brsynth:target_ID value="331111"/> + </brsynth:selenzy_A7ZI94> + <brsynth:selenzy_B5Z2Q2> + <brsynth:score value="61.25"/> + <brsynth:target_ID value="444450"/> + </brsynth:selenzy_B5Z2Q2> + <brsynth:selenzy_A5JTM8> + <brsynth:score value="60.632"/> + <brsynth:target_ID value="72586"/> + </brsynth:selenzy_A5JTM8> + <brsynth:selenzy_Q03298> + <brsynth:score value="60.632"/> + <brsynth:target_ID value="62977"/> + </brsynth:selenzy_Q03298> + <brsynth:selenzy_P00438> + <brsynth:score value="59.932"/> + <brsynth:target_ID value="294"/> + </brsynth:selenzy_P00438> + <brsynth:selenzy_Q9R9T1> + <brsynth:score value="59.632"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_Q9R9T1> + <brsynth:selenzy_Q83WG3> + <brsynth:score value="59.101"/> + <brsynth:target_ID value="171258"/> + </brsynth:selenzy_Q83WG3> + <brsynth:selenzy_Q8KI25> + <brsynth:score value="58.981"/> + <brsynth:target_ID value="68170"/> + </brsynth:selenzy_Q8KI25> + <brsynth:selenzy_P20586> + <brsynth:score value="58.932"/> + <brsynth:target_ID value="208964"/> + </brsynth:selenzy_P20586> + <brsynth:selenzy_A3KBE8> + <brsynth:score value="58.801"/> + <brsynth:target_ID value="171258"/> + </brsynth:selenzy_A3KBE8> + <brsynth:selenzy_Q8KIC8> + <brsynth:score value="58.781"/> + <brsynth:target_ID value="68170"/> + </brsynth:selenzy_Q8KIC8> + <brsynth:selenzy_Q6SSJ6> + <brsynth:score value="58.323"/> + <brsynth:target_ID value="285"/> + </brsynth:selenzy_Q6SSJ6> + <brsynth:selenzy_Q56166> + <brsynth:score value="58.256"/> + <brsynth:target_ID value="953739"/> + </brsynth:selenzy_Q56166> + <brsynth:selenzy_B5XQI9> + <brsynth:score value="58.25"/> + <brsynth:target_ID value="507522"/> + </brsynth:selenzy_B5XQI9> + <brsynth:selenzy_Q3Z585> + <brsynth:score value="58.25"/> + <brsynth:target_ID value="300269"/> + </brsynth:selenzy_Q3Z585> + <brsynth:selenzy_Q56167> + <brsynth:score value="58.156"/> + <brsynth:target_ID value="953739"/> + </brsynth:selenzy_Q56167> + <brsynth:selenzy_Q9XCV6> + <brsynth:score value="58.156"/> + <brsynth:target_ID value="953739"/> + </brsynth:selenzy_Q9XCV6> + <brsynth:selenzy_F0E1K6> + <brsynth:score value="58.087"/> + <brsynth:target_ID value="985010"/> + </brsynth:selenzy_F0E1K6> + <brsynth:selenzy_M1EY73> + <brsynth:score value="57.818"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_M1EY73> + <brsynth:selenzy_R9TPE4> + <brsynth:score value="57.818"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_R9TPE4> + <brsynth:selenzy_H9N291> + <brsynth:score value="57.817"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_H9N291> + <brsynth:selenzy_Q93TJ5> + <brsynth:score value="57.651"/> + <brsynth:target_ID value="294"/> + </brsynth:selenzy_Q93TJ5> + <brsynth:selenzy_Q9ZN84> + <brsynth:score value="57.611"/> + <brsynth:target_ID value="13689"/> + </brsynth:selenzy_Q9ZN84> + <brsynth:selenzy_Q9F131> + <brsynth:score value="57.443"/> + <brsynth:target_ID value="43263"/> + </brsynth:selenzy_Q9F131> + <brsynth:selenzy_B7T912> + <brsynth:score value="57.351"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_B7T912> + <brsynth:selenzy_Q0QFQ1> + <brsynth:score value="57.343"/> + <brsynth:target_ID value="43263"/> + </brsynth:selenzy_Q0QFQ1> + <brsynth:selenzy_A6TAC9> + <brsynth:score value="57.25"/> + <brsynth:target_ID value="272620"/> + </brsynth:selenzy_A6TAC9> + <brsynth:selenzy_H9N290> + <brsynth:score value="57.021"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_H9N290> + <brsynth:selenzy_H9N289> + <brsynth:score value="56.999"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_H9N289> + <brsynth:selenzy_Q70KH9> + <brsynth:score value="56.976"/> + <brsynth:target_ID value="66431"/> + </brsynth:selenzy_Q70KH9> + <brsynth:selenzy_Q84HF5> + <brsynth:score value="56.737"/> + <brsynth:target_ID value="294"/> + </brsynth:selenzy_Q84HF5> + <brsynth:selenzy_A5IG23> + <brsynth:score value="56.537"/> + <brsynth:target_ID value="400673"/> + </brsynth:selenzy_A5IG23> + <brsynth:selenzy_Q3BV41> + <brsynth:score value="56.537"/> + <brsynth:target_ID value="316273"/> + </brsynth:selenzy_Q3BV41> + <brsynth:selenzy_Q5WY16> + <brsynth:score value="56.537"/> + <brsynth:target_ID value="297245"/> + </brsynth:selenzy_Q5WY16> + <brsynth:selenzy_Q51939> + <brsynth:score value="56.297"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q51939> + <brsynth:selenzy_Q51940> + <brsynth:score value="56.297"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q51940> + <brsynth:selenzy_Q51942> + <brsynth:score value="56.297"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q51942> + <brsynth:selenzy_Q51943> + <brsynth:score value="56.297"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q51943> + <brsynth:selenzy_Q6QHB9> + <brsynth:score value="56.297"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q6QHB9> + <brsynth:selenzy_Q6QHC2> + <brsynth:score value="56.297"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q6QHC2> + <brsynth:selenzy_O52379> + <brsynth:score value="56.096"/> + <brsynth:target_ID value="54061"/> + </brsynth:selenzy_O52379> + <brsynth:selenzy_O52380> + <brsynth:score value="56.096"/> + <brsynth:target_ID value="54061"/> + </brsynth:selenzy_O52380> + <brsynth:selenzy_B0RV00> + <brsynth:score value="55.537"/> + <brsynth:target_ID value="509169"/> + </brsynth:selenzy_B0RV00> + <brsynth:selenzy_B2FL98> + <brsynth:score value="55.537"/> + <brsynth:target_ID value="522373"/> + </brsynth:selenzy_B2FL98> + <brsynth:selenzy_B2SIT6> + <brsynth:score value="55.537"/> + <brsynth:target_ID value="360094"/> + </brsynth:selenzy_B2SIT6> + <brsynth:selenzy_Q2P316> + <brsynth:score value="55.537"/> + <brsynth:target_ID value="342109"/> + </brsynth:selenzy_Q2P316> + <brsynth:selenzy_Q4UT92> + <brsynth:score value="55.537"/> + <brsynth:target_ID value="314565"/> + </brsynth:selenzy_Q4UT92> + <brsynth:selenzy_Q5H038> + <brsynth:score value="55.537"/> + <brsynth:target_ID value="291331"/> + </brsynth:selenzy_Q5H038> + <brsynth:selenzy_Q8PAD3> + <brsynth:score value="55.537"/> + <brsynth:target_ID value="190485"/> + </brsynth:selenzy_Q8PAD3> + <brsynth:selenzy_Q3S4B7> + <brsynth:score value="55.443"/> + <brsynth:target_ID value="365044"/> + </brsynth:selenzy_Q3S4B7> + <brsynth:selenzy_O52643> + <brsynth:score value="54.785"/> + <brsynth:target_ID value="72271"/> + </brsynth:selenzy_O52643> + <brsynth:selenzy_O52644> + <brsynth:score value="54.785"/> + <brsynth:target_ID value="72271"/> + </brsynth:selenzy_O52644> + <brsynth:selenzy_Q8KN28> + <brsynth:score value="54.627"/> + <brsynth:target_ID value="80866"/> + </brsynth:selenzy_Q8KN28> + <brsynth:selenzy_Q8PM34> + <brsynth:score value="54.537"/> + <brsynth:target_ID value="190486"/> + </brsynth:selenzy_Q8PM34> + <brsynth:selenzy_C1I201> + <brsynth:score value="54.507"/> + <brsynth:target_ID value="165468"/> + </brsynth:selenzy_C1I201> + <brsynth:selenzy_Q92ZP9> + <brsynth:score value="54.434"/> + <brsynth:target_ID value="266834"/> + </brsynth:selenzy_Q92ZP9> + <brsynth:selenzy_E9JFX9> + <brsynth:score value="54.339"/> + <brsynth:target_ID value="121290"/> + </brsynth:selenzy_E9JFX9> + <brsynth:selenzy_Q92ZP7> + <brsynth:score value="54.134"/> + <brsynth:target_ID value="266834"/> + </brsynth:selenzy_Q92ZP7> + <brsynth:selenzy_Q92ZP8> + <brsynth:score value="54.134"/> + <brsynth:target_ID value="266834"/> + </brsynth:selenzy_Q92ZP8> + <brsynth:selenzy_B1N1A2> + <brsynth:score value="54.094"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_B1N1A2> + <brsynth:selenzy_Q8VSV8> + <brsynth:score value="54.074"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q8VSV8> + <brsynth:selenzy_Q9ANX0> + <brsynth:score value="54.074"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q9ANX0> + <brsynth:selenzy_Q9ANX1> + <brsynth:score value="54.074"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q9ANX1> + <brsynth:selenzy_Q9ANX3> + <brsynth:score value="54.074"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q9ANX3> + <brsynth:selenzy_Q9ANX4> + <brsynth:score value="54.074"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q9ANX4> + <brsynth:selenzy_E0XCR3> + <brsynth:score value="54.039"/> + <brsynth:target_ID value="121290"/> + </brsynth:selenzy_E0XCR3> + <brsynth:selenzy_Q845J2> + <brsynth:score value="53.581"/> + <brsynth:target_ID value="198931"/> + </brsynth:selenzy_Q845J2> + <brsynth:selenzy_Q845J4> + <brsynth:score value="53.581"/> + <brsynth:target_ID value="198931"/> + </brsynth:selenzy_Q845J4> + <brsynth:selenzy_Q845J5> + <brsynth:score value="53.581"/> + <brsynth:target_ID value="198931"/> + </brsynth:selenzy_Q845J5> + <brsynth:selenzy_Q845J6> + <brsynth:score value="53.581"/> + <brsynth:target_ID value="198931"/> + </brsynth:selenzy_Q845J6> + <brsynth:selenzy_P27138> + <brsynth:score value="53.427"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_P27138> + <brsynth:selenzy_O33456> + <brsynth:score value="53.351"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_O33456> + <brsynth:selenzy_O33457> + <brsynth:score value="53.351"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_O33457> + <brsynth:selenzy_B7X4D9> + <brsynth:score value="53.334"/> + <brsynth:target_ID value="399795"/> + </brsynth:selenzy_B7X4D9> + <brsynth:selenzy_Q9F0I2> + <brsynth:score value="53.333"/> + <brsynth:target_ID value="587851"/> + </brsynth:selenzy_Q9F0I2> + <brsynth:selenzy_Q46M62> + <brsynth:score value="53.327"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_Q46M62> + <brsynth:selenzy_Q9S158> + <brsynth:score value="53.25"/> + <brsynth:target_ID value="285"/> + </brsynth:selenzy_Q9S158> + <brsynth:selenzy_P21394> + <brsynth:score value="53.224"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P21394> + <brsynth:selenzy_F8G0M4> + <brsynth:score value="53.094"/> + <brsynth:target_ID value="1042876"/> + </brsynth:selenzy_F8G0M4> + <brsynth:selenzy_B4XY99> + <brsynth:score value="53.057"/> + <brsynth:target_ID value="285525"/> + </brsynth:selenzy_B4XY99> + <brsynth:selenzy_P21395> + <brsynth:score value="53.024"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P21395> + <brsynth:selenzy_Q9RBG4> + <brsynth:score value="52.814"/> + <brsynth:target_ID value="512"/> + </brsynth:selenzy_Q9RBG4> + <brsynth:selenzy_Q9RBG5> + <brsynth:score value="52.814"/> + <brsynth:target_ID value="512"/> + </brsynth:selenzy_Q9RBG5> + <brsynth:selenzy_F8FZQ5> + <brsynth:score value="52.794"/> + <brsynth:target_ID value="1042876"/> + </brsynth:selenzy_F8FZQ5> + <brsynth:selenzy_H3JQW0> + <brsynth:score value="52.7"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_H3JQW0> + <brsynth:selenzy_Q1DDU6> + <brsynth:score value="52.537"/> + <brsynth:target_ID value="246197"/> + </brsynth:selenzy_Q1DDU6> + <brsynth:selenzy_Q54RE8> + <brsynth:score value="52.537"/> + <brsynth:target_ID value="44689"/> + </brsynth:selenzy_Q54RE8> + <brsynth:selenzy_O06647> + <brsynth:score value="52.477"/> + <brsynth:target_ID value="46680"/> + </brsynth:selenzy_O06647> + <brsynth:selenzy_Q8NLB6> + <brsynth:score value="52.443"/> + <brsynth:target_ID value="196627"/> + </brsynth:selenzy_Q8NLB6> + <brsynth:selenzy_Q13QI0> + <brsynth:score value="52.25"/> + <brsynth:target_ID value="266265"/> + </brsynth:selenzy_Q13QI0> + <brsynth:selenzy_Q476N1> + <brsynth:score value="52.25"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_Q476N1> + <brsynth:selenzy_Q4KAM4> + <brsynth:score value="52.175"/> + <brsynth:target_ID value="220664"/> + </brsynth:selenzy_Q4KAM4> + <brsynth:selenzy_O13345> + <brsynth:score value="52.081"/> + <brsynth:target_ID value="5067"/> + </brsynth:selenzy_O13345> + <brsynth:selenzy_P94679> + <brsynth:score value="51.896"/> + <brsynth:target_ID value="285"/> + </brsynth:selenzy_P94679> + <brsynth:selenzy_P94680> + <brsynth:score value="51.896"/> + <brsynth:target_ID value="285"/> + </brsynth:selenzy_P94680> + <brsynth:selenzy_Q5VDD6> + <brsynth:score value="51.881"/> + <brsynth:target_ID value="5059"/> + </brsynth:selenzy_Q5VDD6> + <brsynth:selenzy_Q93FB8> + <brsynth:score value="51.81"/> + <brsynth:target_ID value="59406"/> + </brsynth:selenzy_Q93FB8> + <brsynth:selenzy_A4YNQ1> + <brsynth:score value="51.6"/> + <brsynth:target_ID value="114615"/> + </brsynth:selenzy_A4YNQ1> + <brsynth:selenzy_A5EQ73> + <brsynth:score value="51.6"/> + <brsynth:target_ID value="288000"/> + </brsynth:selenzy_A5EQ73> + <brsynth:selenzy_A4XD40> + <brsynth:score value="51.537"/> + <brsynth:target_ID value="369723"/> + </brsynth:selenzy_A4XD40> + <brsynth:selenzy_A8LVF4> + <brsynth:score value="51.537"/> + <brsynth:target_ID value="391037"/> + </brsynth:selenzy_A8LVF4> + <brsynth:selenzy_C3UVB6> + <brsynth:score value="51.518"/> + <brsynth:target_ID value="622617"/> + </brsynth:selenzy_C3UVB6> + <brsynth:selenzy_C3UVB8> + <brsynth:score value="51.518"/> + <brsynth:target_ID value="622617"/> + </brsynth:selenzy_C3UVB8> + <brsynth:selenzy_C3UVB9> + <brsynth:score value="51.518"/> + <brsynth:target_ID value="622617"/> + </brsynth:selenzy_C3UVB9> + <brsynth:selenzy_A0KE38> + <brsynth:score value="51.25"/> + <brsynth:target_ID value="331272"/> + </brsynth:selenzy_A0KE38> + <brsynth:selenzy_A4JPY1> + <brsynth:score value="51.25"/> + <brsynth:target_ID value="269482"/> + </brsynth:selenzy_A4JPY1> + <brsynth:selenzy_A4JQH4> + <brsynth:score value="51.25"/> + <brsynth:target_ID value="269482"/> + </brsynth:selenzy_A4JQH4> + <brsynth:selenzy_Q1BGA7> + <brsynth:score value="51.25"/> + <brsynth:target_ID value="331271"/> + </brsynth:selenzy_Q1BGA7> + <brsynth:selenzy_Q5P8S1> + <brsynth:score value="51.008"/> + <brsynth:target_ID value="76114"/> + </brsynth:selenzy_Q5P8S1> + <brsynth:selenzy_Q5P8S2> + <brsynth:score value="51.008"/> + <brsynth:target_ID value="76114"/> + </brsynth:selenzy_Q5P8S2> + <brsynth:selenzy_Q5P8S3> + <brsynth:score value="51.008"/> + <brsynth:target_ID value="76114"/> + </brsynth:selenzy_Q5P8S3> + <brsynth:selenzy_B8NHY4> + <brsynth:score value="50.981"/> + <brsynth:target_ID value="332952"/> + </brsynth:selenzy_B8NHY4> + <brsynth:selenzy_Q8RQP9> + <brsynth:score value="50.909"/> + <brsynth:target_ID value="1831"/> + </brsynth:selenzy_Q8RQP9> + <brsynth:selenzy_Q8RQQ0> + <brsynth:score value="50.909"/> + <brsynth:target_ID value="1831"/> + </brsynth:selenzy_Q8RQQ0> + <brsynth:selenzy_Q11PP7> + <brsynth:score value="50.737"/> + <brsynth:target_ID value="269798"/> + </brsynth:selenzy_Q11PP7> + <brsynth:selenzy_B3Q7D4> + <brsynth:score value="50.6"/> + <brsynth:target_ID value="395960"/> + </brsynth:selenzy_B3Q7D4> + <brsynth:selenzy_P0DJN9> + <brsynth:score value="50.6"/> + <brsynth:target_ID value="28068"/> + </brsynth:selenzy_P0DJN9> + <brsynth:selenzy_Q132P2> + <brsynth:score value="50.6"/> + <brsynth:target_ID value="316057"/> + </brsynth:selenzy_Q132P2> + <brsynth:selenzy_Q2ISZ6> + <brsynth:score value="50.6"/> + <brsynth:target_ID value="316058"/> + </brsynth:selenzy_Q2ISZ6> + <brsynth:selenzy_Q6N9J7> + <brsynth:score value="50.6"/> + <brsynth:target_ID value="258594"/> + </brsynth:selenzy_Q6N9J7> + <brsynth:selenzy_A0M4X2> + <brsynth:score value="50.537"/> + <brsynth:target_ID value="411154"/> + </brsynth:selenzy_A0M4X2> + <brsynth:selenzy_A5FMP6> + <brsynth:score value="50.537"/> + <brsynth:target_ID value="376686"/> + </brsynth:selenzy_A5FMP6> + <brsynth:selenzy_A6H1P4> + <brsynth:score value="50.537"/> + <brsynth:target_ID value="402612"/> + </brsynth:selenzy_A6H1P4> + <brsynth:selenzy_Q1ZXH9> + <brsynth:score value="50.531"/> + <brsynth:target_ID value="44689"/> + </brsynth:selenzy_Q1ZXH9> + <brsynth:selenzy_Q5UQI3> + <brsynth:score value="50.531"/> + <brsynth:target_ID value="212035"/> + </brsynth:selenzy_Q5UQI3> + <brsynth:selenzy_Q9S3U8> + <brsynth:score value="50.388"/> + <brsynth:target_ID value="243365"/> + </brsynth:selenzy_Q9S3U8> + <brsynth:selenzy_Q9S3U9> + <brsynth:score value="50.317"/> + <brsynth:target_ID value="243365"/> + </brsynth:selenzy_Q9S3U9> + <brsynth:selenzy_A1UJP4> + <brsynth:score value="50.25"/> + <brsynth:target_ID value="189918"/> + </brsynth:selenzy_A1UJP4> + <brsynth:selenzy_A3Q339> + <brsynth:score value="50.25"/> + <brsynth:target_ID value="164757"/> + </brsynth:selenzy_A3Q339> + <brsynth:selenzy_Q1B5E2> + <brsynth:score value="50.25"/> + <brsynth:target_ID value="164756"/> + </brsynth:selenzy_Q1B5E2> + <brsynth:selenzy_Q5U913> + <brsynth:score value="50.188"/> + <brsynth:target_ID value="54571"/> + </brsynth:selenzy_Q5U913> + <brsynth:selenzy_F3Y662> + <brsynth:score value="50.033"/> + <brsynth:target_ID value="41"/> + </brsynth:selenzy_F3Y662> + <brsynth:selenzy_H1ZZB2> + <brsynth:score value="49.905"/> + <brsynth:target_ID value="41"/> + </brsynth:selenzy_H1ZZB2> + <brsynth:selenzy_H1ZZA4> + <brsynth:score value="49.793"/> + <brsynth:target_ID value="41"/> + </brsynth:selenzy_H1ZZA4> + <brsynth:selenzy_Q47PU3> + <brsynth:score value="49.652"/> + <brsynth:target_ID value="269800"/> + </brsynth:selenzy_Q47PU3> + <brsynth:selenzy_P37365> + <brsynth:score value="49.609"/> + <brsynth:target_ID value="72571"/> + </brsynth:selenzy_P37365> + <brsynth:selenzy_I0HUK7> + <brsynth:score value="49.6"/> + <brsynth:target_ID value="983917"/> + </brsynth:selenzy_I0HUK7> + <brsynth:selenzy_Q5IZM4> + <brsynth:score value="49.531"/> + <brsynth:target_ID value="350058"/> + </brsynth:selenzy_Q5IZM4> + <brsynth:selenzy_Q6F4M8> + <brsynth:score value="49.507"/> + <brsynth:target_ID value="37919"/> + </brsynth:selenzy_Q6F4M8> + <brsynth:selenzy_Q6F4M9> + <brsynth:score value="49.507"/> + <brsynth:target_ID value="37919"/> + </brsynth:selenzy_Q6F4M9> + <brsynth:selenzy_Q6W5Q7> + <brsynth:score value="49.434"/> + <brsynth:target_ID value="206662"/> + </brsynth:selenzy_Q6W5Q7> + <brsynth:selenzy_P39888> + <brsynth:score value="49.417"/> + <brsynth:target_ID value="1907"/> + </brsynth:selenzy_P39888> + <brsynth:selenzy_Q9L4Y1> + <brsynth:score value="49.385"/> + <brsynth:target_ID value="47716"/> + </brsynth:selenzy_Q9L4Y1> + <brsynth:selenzy_S6BVH1> + <brsynth:score value="49.274"/> + <brsynth:target_ID value="1833"/> + </brsynth:selenzy_S6BVH1> + <brsynth:selenzy_A0R1T4> + <brsynth:score value="49.25"/> + <brsynth:target_ID value="246196"/> + </brsynth:selenzy_A0R1T4> + <brsynth:selenzy_A1TCX2> + <brsynth:score value="49.25"/> + <brsynth:target_ID value="350058"/> + </brsynth:selenzy_A1TCX2> + <brsynth:selenzy_A4T8B6> + <brsynth:score value="49.25"/> + <brsynth:target_ID value="350054"/> + </brsynth:selenzy_A4T8B6> + <brsynth:selenzy_A1IHK4> + <brsynth:score value="49.209"/> + <brsynth:target_ID value="122308"/> + </brsynth:selenzy_A1IHK4> + <brsynth:selenzy_P32009> + <brsynth:score value="49.104"/> + <brsynth:target_ID value="1950"/> + </brsynth:selenzy_P32009> + <brsynth:selenzy_Q54530> + <brsynth:score value="49.104"/> + <brsynth:target_ID value="1924"/> + </brsynth:selenzy_Q54530> + <brsynth:selenzy_P17549> + <brsynth:score value="49.084"/> + <brsynth:target_ID value="5061"/> + </brsynth:selenzy_P17549> + <brsynth:selenzy_Q59971> + <brsynth:score value="48.999"/> + <brsynth:target_ID value="45212"/> + </brsynth:selenzy_Q59971> + <brsynth:selenzy_Q9ZAU3> + <brsynth:score value="48.999"/> + <brsynth:target_ID value="1950"/> + </brsynth:selenzy_Q9ZAU3> + <brsynth:selenzy_B4XYB8> + <brsynth:score value="48.893"/> + <brsynth:target_ID value="285525"/> + </brsynth:selenzy_B4XYB8> + <brsynth:selenzy_Q194R1> + <brsynth:score value="48.879"/> + <brsynth:target_ID value="41951"/> + </brsynth:selenzy_Q194R1> + <brsynth:selenzy_Q58PK7> + <brsynth:score value="48.865"/> + <brsynth:target_ID value="1927"/> + </brsynth:selenzy_Q58PK7> + <brsynth:selenzy_Q194P4> + <brsynth:score value="48.853"/> + <brsynth:target_ID value="41951"/> + </brsynth:selenzy_Q194P4> + <brsynth:selenzy_Q54527> + <brsynth:score value="48.826"/> + <brsynth:target_ID value="1924"/> + </brsynth:selenzy_Q54527> + <brsynth:selenzy_B2J1M1> + <brsynth:score value="48.787"/> + <brsynth:target_ID value="63737"/> + </brsynth:selenzy_B2J1M1> + <brsynth:selenzy_Q54764> + <brsynth:score value="48.787"/> + <brsynth:target_ID value="1140"/> + </brsynth:selenzy_Q54764> + <brsynth:selenzy_Q7V6D4> + <brsynth:score value="48.787"/> + <brsynth:target_ID value="74547"/> + </brsynth:selenzy_Q7V6D4> + <brsynth:selenzy_B5APQ9> + <brsynth:score value="48.749"/> + <brsynth:target_ID value="219305"/> + </brsynth:selenzy_B5APQ9> + <brsynth:selenzy_P9WPP9> + <brsynth:score value="48.731"/> + <brsynth:target_ID value="83332"/> + </brsynth:selenzy_P9WPP9> + <brsynth:selenzy_Q7Z1V1> + <brsynth:score value="48.731"/> + <brsynth:target_ID value="353153"/> + </brsynth:selenzy_Q7Z1V1> + <brsynth:selenzy_A5GKR3> + <brsynth:score value="48.6"/> + <brsynth:target_ID value="32051"/> + </brsynth:selenzy_A5GKR3> + <brsynth:selenzy_A5GU20> + <brsynth:score value="48.6"/> + <brsynth:target_ID value="316278"/> + </brsynth:selenzy_A5GU20> + <brsynth:selenzy_Q0IAL0> + <brsynth:score value="48.6"/> + <brsynth:target_ID value="64471"/> + </brsynth:selenzy_Q0IAL0> + <brsynth:selenzy_Q3AK18> + <brsynth:score value="48.6"/> + <brsynth:target_ID value="110662"/> + </brsynth:selenzy_Q3AK18> + <brsynth:selenzy_Q7U6Y8> + <brsynth:score value="48.6"/> + <brsynth:target_ID value="84588"/> + </brsynth:selenzy_Q7U6Y8> + <brsynth:selenzy_Q8YRZ2> + <brsynth:score value="48.6"/> + <brsynth:target_ID value="103690"/> + </brsynth:selenzy_Q8YRZ2> + <brsynth:selenzy_Q8YVU4> + <brsynth:score value="48.6"/> + <brsynth:target_ID value="103690"/> + </brsynth:selenzy_Q8YVU4> + <brsynth:selenzy_Q8YX57> + <brsynth:score value="48.6"/> + <brsynth:target_ID value="103690"/> + </brsynth:selenzy_Q8YX57> + <brsynth:selenzy_Q55688> + <brsynth:score value="48.587"/> + <brsynth:target_ID value="1111708"/> + </brsynth:selenzy_Q55688> + <brsynth:selenzy_P0A513> + <brsynth:score value="48.531"/> + <brsynth:target_ID value="233413"/> + </brsynth:selenzy_P0A513> + <brsynth:selenzy_P9WPP8> + <brsynth:score value="48.531"/> + <brsynth:target_ID value="83331"/> + </brsynth:selenzy_P9WPP8> + <brsynth:selenzy_Q5H782> + <brsynth:score value="48.497"/> + <brsynth:target_ID value="1890"/> + </brsynth:selenzy_Q5H782> + <brsynth:selenzy_A1R2G2> + <brsynth:score value="48.309"/> + <brsynth:target_ID value="290340"/> + </brsynth:selenzy_A1R2G2> + <brsynth:selenzy_Q0S9Y3> + <brsynth:score value="48.309"/> + <brsynth:target_ID value="101510"/> + </brsynth:selenzy_Q0S9Y3> + <brsynth:selenzy_A0QB57> + <brsynth:score value="48.25"/> + <brsynth:target_ID value="243243"/> + </brsynth:selenzy_A0QB57> + <brsynth:selenzy_P72495> + <brsynth:score value="48.104"/> + <brsynth:target_ID value="55158"/> + </brsynth:selenzy_P72495> + <brsynth:selenzy_Q93MI2> + <brsynth:score value="48.054"/> + <brsynth:target_ID value="55158"/> + </brsynth:selenzy_Q93MI2> + <brsynth:selenzy_A2BR98> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="146891"/> + </brsynth:selenzy_A2BR98> + <brsynth:selenzy_A2BWG6> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="167542"/> + </brsynth:selenzy_A2BWG6> + <brsynth:selenzy_A2CDU0> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="59922"/> + </brsynth:selenzy_A2CDU0> + <brsynth:selenzy_A3PD22> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="167546"/> + </brsynth:selenzy_A3PD22> + <brsynth:selenzy_A8G4Z1> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="93060"/> + </brsynth:selenzy_A8G4Z1> + <brsynth:selenzy_A9BAI8> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="93059"/> + </brsynth:selenzy_A9BAI8> + <brsynth:selenzy_P51277> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="2787"/> + </brsynth:selenzy_P51277> + <brsynth:selenzy_P72584> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="1111708"/> + </brsynth:selenzy_P72584> + <brsynth:selenzy_P72777> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="1111708"/> + </brsynth:selenzy_P72777> + <brsynth:selenzy_P74134> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="1111708"/> + </brsynth:selenzy_P74134> + <brsynth:selenzy_Q1XDK9> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="2788"/> + </brsynth:selenzy_Q1XDK9> + <brsynth:selenzy_Q31AS9> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="74546"/> + </brsynth:selenzy_Q31AS9> + <brsynth:selenzy_Q31LY2> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="1140"/> + </brsynth:selenzy_Q31LY2> + <brsynth:selenzy_Q5MZZ2> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="269084"/> + </brsynth:selenzy_Q5MZZ2> + <brsynth:selenzy_Q7V3Y9> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="74547"/> + </brsynth:selenzy_Q7V3Y9> + <brsynth:selenzy_Q85FX6> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="45157"/> + </brsynth:selenzy_Q85FX6> + <brsynth:selenzy_Q8DI68> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="197221"/> + </brsynth:selenzy_Q8DI68> + <brsynth:selenzy_Q8DJ05> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="197221"/> + </brsynth:selenzy_Q8DJ05> + <brsynth:selenzy_Q9TLR8> + <brsynth:score value="47.6"/> + <brsynth:target_ID value="2771"/> + </brsynth:selenzy_Q9TLR8> + <brsynth:selenzy_Q9UVC3> + <brsynth:score value="47.531"/> + <brsynth:target_ID value="4853"/> + </brsynth:selenzy_Q9UVC3> + <brsynth:selenzy_P9WPP7> + <brsynth:score value="47.494"/> + <brsynth:target_ID value="83332"/> + </brsynth:selenzy_P9WPP7> + <brsynth:selenzy_P15245> + <brsynth:score value="47.465"/> + <brsynth:target_ID value="5554"/> + </brsynth:selenzy_P15245> + <brsynth:selenzy_Q9FCA6> + <brsynth:score value="47.446"/> + <brsynth:target_ID value="100226"/> + </brsynth:selenzy_Q9FCA6> + <brsynth:selenzy_Q9KZF5> + <brsynth:score value="47.446"/> + <brsynth:target_ID value="100226"/> + </brsynth:selenzy_Q9KZF5> + <brsynth:selenzy_P9WPP6> + <brsynth:score value="47.294"/> + <brsynth:target_ID value="83331"/> + </brsynth:selenzy_P9WPP6> + <brsynth:selenzy_Q742Z1> + <brsynth:score value="47.25"/> + <brsynth:target_ID value="262316"/> + </brsynth:selenzy_Q742Z1> + <brsynth:selenzy_P9WNZ3> + <brsynth:score value="46.715"/> + <brsynth:target_ID value="83332"/> + </brsynth:selenzy_P9WNZ3> + <brsynth:selenzy_Q9AR22> + <brsynth:score value="46.7"/> + <brsynth:target_ID value="3055"/> + </brsynth:selenzy_Q9AR22> + <brsynth:selenzy_Q9LD46> + <brsynth:score value="46.7"/> + <brsynth:target_ID value="3055"/> + </brsynth:selenzy_Q9LD46> + <brsynth:selenzy_Q9XJ38> + <brsynth:score value="46.659"/> + <brsynth:target_ID value="3046"/> + </brsynth:selenzy_Q9XJ38> + <brsynth:selenzy_Q9ZWM5> + <brsynth:score value="46.659"/> + <brsynth:target_ID value="3055"/> + </brsynth:selenzy_Q9ZWM5> + <brsynth:selenzy_Q118B4> + <brsynth:score value="46.6"/> + <brsynth:target_ID value="203124"/> + </brsynth:selenzy_Q118B4> + <brsynth:selenzy_Q6B8U1> + <brsynth:score value="46.6"/> + <brsynth:target_ID value="285951"/> + </brsynth:selenzy_Q6B8U1> + <brsynth:selenzy_Q7NFA1> + <brsynth:score value="46.6"/> + <brsynth:target_ID value="251221"/> + </brsynth:selenzy_Q7NFA1> + <brsynth:selenzy_Q7V1M1> + <brsynth:score value="46.6"/> + <brsynth:target_ID value="59919"/> + </brsynth:selenzy_Q7V1M1> + <brsynth:selenzy_Q7VBV0> + <brsynth:score value="46.6"/> + <brsynth:target_ID value="167539"/> + </brsynth:selenzy_Q7VBV0> + <brsynth:selenzy_Q4P0N0> + <brsynth:score value="46.537"/> + <brsynth:target_ID value="237631"/> + </brsynth:selenzy_Q4P0N0> + <brsynth:selenzy_P9WNZ2> + <brsynth:score value="46.515"/> + <brsynth:target_ID value="83331"/> + </brsynth:selenzy_P9WNZ2> + <brsynth:selenzy_Q8VZ59> + <brsynth:score value="46.354"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q8VZ59> + <brsynth:selenzy_Q9LFM5> + <brsynth:score value="46.354"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9LFM5> + <brsynth:selenzy_Q9SVQ1> + <brsynth:score value="46.354"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9SVQ1> + <brsynth:selenzy_Q9SZY8> + <brsynth:score value="46.354"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9SZY8> + <brsynth:selenzy_O23024> + <brsynth:score value="46.254"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_O23024> + <brsynth:selenzy_O49312> + <brsynth:score value="46.254"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_O49312> + <brsynth:selenzy_O64489> + <brsynth:score value="46.254"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_O64489> + <brsynth:selenzy_Q9FVQ0> + <brsynth:score value="46.254"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9FVQ0> + <brsynth:selenzy_Q9LKC0> + <brsynth:score value="46.254"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9LKC0> + <brsynth:selenzy_Q9LPL3> + <brsynth:score value="46.254"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9LPL3> + <brsynth:selenzy_Q9SVU0> + <brsynth:score value="46.254"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9SVU0> + <brsynth:selenzy_Q9LW27> + <brsynth:score value="46.253"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9LW27> + <brsynth:selenzy_P38169> + <brsynth:score value="45.737"/> + <brsynth:target_ID value="559292"/> + </brsynth:selenzy_P38169> + <brsynth:selenzy_A3LNF8> + <brsynth:score value="45.537"/> + <brsynth:target_ID value="322104"/> + </brsynth:selenzy_A3LNF8> + <brsynth:selenzy_Q6C9M8> + <brsynth:score value="45.537"/> + <brsynth:target_ID value="284591"/> + </brsynth:selenzy_Q6C9M8> + <brsynth:selenzy_Q751I2> + <brsynth:score value="45.537"/> + <brsynth:target_ID value="284811"/> + </brsynth:selenzy_Q751I2> + <brsynth:selenzy_Q9FUY7> + <brsynth:score value="45.066"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9FUY7> + <brsynth:selenzy_Q949U1> + <brsynth:score value="44.97"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q949U1> + <brsynth:selenzy_Q09736> + <brsynth:score value="44.731"/> + <brsynth:target_ID value="284812"/> + </brsynth:selenzy_Q09736> + <brsynth:selenzy_P53318> + <brsynth:score value="44.727"/> + <brsynth:target_ID value="559292"/> + </brsynth:selenzy_P53318> + <brsynth:selenzy_P0CO48> + <brsynth:score value="44.537"/> + <brsynth:target_ID value="214684"/> + </brsynth:selenzy_P0CO48> + <brsynth:selenzy_P0CO49> + <brsynth:score value="44.537"/> + <brsynth:target_ID value="283643"/> + </brsynth:selenzy_P0CO49> + <brsynth:selenzy_Q5A7M3> + <brsynth:score value="44.537"/> + <brsynth:target_ID value="237561"/> + </brsynth:selenzy_Q5A7M3> + <brsynth:selenzy_Q6BV21> + <brsynth:score value="44.537"/> + <brsynth:target_ID value="284592"/> + </brsynth:selenzy_Q6BV21> + <brsynth:selenzy_P49602> + <brsynth:score value="44.531"/> + <brsynth:target_ID value="237631"/> + </brsynth:selenzy_P49602> + <brsynth:selenzy_Q02315> + <brsynth:score value="44.531"/> + <brsynth:target_ID value="4909"/> + </brsynth:selenzy_Q02315> + <brsynth:selenzy_B9UJ99> + <brsynth:score value="44.472"/> + <brsynth:target_ID value="5057"/> + </brsynth:selenzy_B9UJ99> + <brsynth:selenzy_B9WZX5> + <brsynth:score value="44.363"/> + <brsynth:target_ID value="746128"/> + </brsynth:selenzy_B9WZX5> + <brsynth:selenzy_B6D9L5> + <brsynth:score value="44.254"/> + <brsynth:target_ID value="4577"/> + </brsynth:selenzy_B6D9L5> + <brsynth:selenzy_B9UJ98> + <brsynth:score value="44.136"/> + <brsynth:target_ID value="5057"/> + </brsynth:selenzy_B9UJ98> + <brsynth:selenzy_Q6J540> + <brsynth:score value="43.796"/> + <brsynth:target_ID value="34305"/> + </brsynth:selenzy_Q6J540> + <brsynth:selenzy_Q6J541> + <brsynth:score value="43.796"/> + <brsynth:target_ID value="34305"/> + </brsynth:selenzy_Q6J541> + <brsynth:selenzy_Q9M7B7> + <brsynth:score value="43.796"/> + <brsynth:target_ID value="3983"/> + </brsynth:selenzy_Q9M7B7> + <brsynth:selenzy_Q9M7B8> + <brsynth:score value="43.796"/> + <brsynth:target_ID value="3983"/> + </brsynth:selenzy_Q9M7B8> + <brsynth:selenzy_P10614> + <brsynth:score value="43.731"/> + <brsynth:target_ID value="559292"/> + </brsynth:selenzy_P10614> + <brsynth:selenzy_Q4WAW9> + <brsynth:score value="43.563"/> + <brsynth:target_ID value="330879"/> + </brsynth:selenzy_Q4WAW9> + <brsynth:selenzy_A1CT23> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="344612"/> + </brsynth:selenzy_A1CT23> + <brsynth:selenzy_A1DMD5> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="331117"/> + </brsynth:selenzy_A1DMD5> + <brsynth:selenzy_A2Q9N7> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="425011"/> + </brsynth:selenzy_A2Q9N7> + <brsynth:selenzy_A2QMH1> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="425011"/> + </brsynth:selenzy_A2QMH1> + <brsynth:selenzy_A2QPD9> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="425011"/> + </brsynth:selenzy_A2QPD9> + <brsynth:selenzy_A8Y432> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="6238"/> + </brsynth:selenzy_A8Y432> + <brsynth:selenzy_B0Y7C3> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="451804"/> + </brsynth:selenzy_B0Y7C3> + <brsynth:selenzy_Q0CRI5> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="341663"/> + </brsynth:selenzy_Q0CRI5> + <brsynth:selenzy_Q21795> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="6239"/> + </brsynth:selenzy_Q21795> + <brsynth:selenzy_Q2UPP1> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="510516"/> + </brsynth:selenzy_Q2UPP1> + <brsynth:selenzy_Q4WN75> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="330879"/> + </brsynth:selenzy_Q4WN75> + <brsynth:selenzy_Q5B2N0> + <brsynth:score value="43.537"/> + <brsynth:target_ID value="227321"/> + </brsynth:selenzy_Q5B2N0> + <brsynth:selenzy_P14263> + <brsynth:score value="43.531"/> + <brsynth:target_ID value="5482"/> + </brsynth:selenzy_P14263> + <brsynth:selenzy_Q759W0> + <brsynth:score value="43.531"/> + <brsynth:target_ID value="284811"/> + </brsynth:selenzy_Q759W0> + <brsynth:selenzy_A1DA64> + <brsynth:score value="43.363"/> + <brsynth:target_ID value="331117"/> + </brsynth:selenzy_A1DA64> + <brsynth:selenzy_O14442> + <brsynth:score value="42.631"/> + <brsynth:target_ID value="52586"/> + </brsynth:selenzy_O14442> + <brsynth:selenzy_Q2GQG8> + <brsynth:score value="42.537"/> + <brsynth:target_ID value="306901"/> + </brsynth:selenzy_Q2GQG8> + <brsynth:selenzy_Q7S3C9> + <brsynth:score value="42.537"/> + <brsynth:target_ID value="367110"/> + </brsynth:selenzy_Q7S3C9> + <brsynth:selenzy_P10613> + <brsynth:score value="42.531"/> + <brsynth:target_ID value="237561"/> + </brsynth:selenzy_P10613> + <brsynth:selenzy_P50859> + <brsynth:score value="42.531"/> + <brsynth:target_ID value="284593"/> + </brsynth:selenzy_P50859> + <brsynth:selenzy_Q12664> + <brsynth:score value="42.531"/> + <brsynth:target_ID value="40296"/> + </brsynth:selenzy_Q12664> + <brsynth:selenzy_B8QHP1> + <brsynth:score value="42.509"/> + <brsynth:target_ID value="75736"/> + </brsynth:selenzy_B8QHP1> + <brsynth:selenzy_Q078T0> + <brsynth:score value="42.147"/> + <brsynth:target_ID value="162425"/> + </brsynth:selenzy_Q078T0> + <brsynth:selenzy_P22367> + <brsynth:score value="41.853"/> + <brsynth:target_ID value="5078"/> + </brsynth:selenzy_P22367> + <brsynth:selenzy_Q9M7B9> + <brsynth:score value="41.572"/> + <brsynth:target_ID value="55501"/> + </brsynth:selenzy_Q9M7B9> + <brsynth:selenzy_Q9M7C0> + <brsynth:score value="41.572"/> + <brsynth:target_ID value="55501"/> + </brsynth:selenzy_Q9M7C0> + <brsynth:selenzy_Q12732> + <brsynth:score value="41.563"/> + <brsynth:target_ID value="5067"/> + </brsynth:selenzy_Q12732> + <brsynth:selenzy_Q0V5K1> + <brsynth:score value="41.537"/> + <brsynth:target_ID value="321614"/> + </brsynth:selenzy_Q0V5K1> + <brsynth:selenzy_B9WZX1> + <brsynth:score value="41.152"/> + <brsynth:target_ID value="746128"/> + </brsynth:selenzy_B9WZX1> + <brsynth:selenzy_B9WZX4> + <brsynth:score value="41.058"/> + <brsynth:target_ID value="746128"/> + </brsynth:selenzy_B9WZX4> + <brsynth:selenzy_Q9C449> + <brsynth:score value="41.035"/> + <brsynth:target_ID value="70109"/> + </brsynth:selenzy_Q9C449> + <brsynth:selenzy_Q6UEF3> + <brsynth:score value="41.034"/> + <brsynth:target_ID value="5067"/> + </brsynth:selenzy_Q6UEF3> + <brsynth:selenzy_Q9UW95> + <brsynth:score value="41.033"/> + <brsynth:target_ID value="5067"/> + </brsynth:selenzy_Q9UW95> + <brsynth:selenzy_Q9C450> + <brsynth:score value="41.031"/> + <brsynth:target_ID value="70109"/> + </brsynth:selenzy_Q9C450> + <brsynth:selenzy_Q6UEF4> + <brsynth:score value="41.012"/> + <brsynth:target_ID value="5067"/> + </brsynth:selenzy_Q6UEF4> + <brsynth:selenzy_B9WZX6> + <brsynth:score value="40.959"/> + <brsynth:target_ID value="746128"/> + </brsynth:selenzy_B9WZX6> + <brsynth:selenzy_Q9C447> + <brsynth:score value="40.953"/> + <brsynth:target_ID value="70109"/> + </brsynth:selenzy_Q9C447> + <brsynth:selenzy_A9JPE0> + <brsynth:score value="40.935"/> + <brsynth:target_ID value="5059"/> + </brsynth:selenzy_A9JPE0> + <brsynth:selenzy_A9JPE2> + <brsynth:score value="40.868"/> + <brsynth:target_ID value="5059"/> + </brsynth:selenzy_A9JPE2> + <brsynth:selenzy_Q50EK6> + <brsynth:score value="40.277"/> + <brsynth:target_ID value="3352"/> + </brsynth:selenzy_Q50EK6> + <brsynth:selenzy_Q00707> + <brsynth:score value="40.233"/> + <brsynth:target_ID value="227321"/> + </brsynth:selenzy_Q00707> + <brsynth:selenzy_A1DA60> + <brsynth:score value="39.952"/> + <brsynth:target_ID value="331117"/> + </brsynth:selenzy_A1DA60> + <brsynth:selenzy_Q4WAW5> + <brsynth:score value="39.952"/> + <brsynth:target_ID value="330879"/> + </brsynth:selenzy_Q4WAW5> + <brsynth:selenzy_M1VNH2> + <brsynth:score value="39.907"/> + <brsynth:target_ID value="124418"/> + </brsynth:selenzy_M1VNH2> + <brsynth:selenzy_Q2PBY6> + <brsynth:score value="39.869"/> + <brsynth:target_ID value="5111"/> + </brsynth:selenzy_Q2PBY6> + <brsynth:selenzy_A1DA63> + <brsynth:score value="39.858"/> + <brsynth:target_ID value="331117"/> + </brsynth:selenzy_A1DA63> + <brsynth:selenzy_Q4WAW8> + <brsynth:score value="39.858"/> + <brsynth:target_ID value="330879"/> + </brsynth:selenzy_Q4WAW8> + <brsynth:selenzy_A1DA65> + <brsynth:score value="39.759"/> + <brsynth:target_ID value="331117"/> + </brsynth:selenzy_A1DA65> + <brsynth:selenzy_Q4WAX0> + <brsynth:score value="39.759"/> + <brsynth:target_ID value="330879"/> + </brsynth:selenzy_Q4WAX0> + <brsynth:selenzy_P47195> + <brsynth:score value="38.816"/> + <brsynth:target_ID value="33814"/> + </brsynth:selenzy_P47195> + <brsynth:selenzy_O64899> + <brsynth:score value="38.815"/> + <brsynth:target_ID value="3467"/> + </brsynth:selenzy_O64899> + <brsynth:selenzy_O64900> + <brsynth:score value="38.815"/> + <brsynth:target_ID value="3467"/> + </brsynth:selenzy_O64900> + <brsynth:selenzy_Q9FXW4> + <brsynth:score value="38.815"/> + <brsynth:target_ID value="3442"/> + </brsynth:selenzy_Q9FXW4> + <brsynth:selenzy_F2Z9C1> + <brsynth:score value="38.8"/> + <brsynth:target_ID value="3467"/> + </brsynth:selenzy_F2Z9C1> + <brsynth:selenzy_L7X0L7> + <brsynth:score value="38.7"/> + <brsynth:target_ID value="3469"/> + </brsynth:selenzy_L7X0L7> + <brsynth:selenzy_Q948Y1> + <brsynth:score value="38.571"/> + <brsynth:target_ID value="3442"/> + </brsynth:selenzy_Q948Y1> + <brsynth:selenzy_B1NF20> + <brsynth:score value="38.552"/> + <brsynth:target_ID value="54796"/> + </brsynth:selenzy_B1NF20> + <brsynth:selenzy_B5UAQ8> + <brsynth:score value="38.552"/> + <brsynth:target_ID value="3467"/> + </brsynth:selenzy_B5UAQ8> + <brsynth:selenzy_B1NF19> + <brsynth:score value="38.543"/> + <brsynth:target_ID value="54796"/> + </brsynth:selenzy_B1NF19> + <brsynth:selenzy_Q50LH3> + <brsynth:score value="38.543"/> + <brsynth:target_ID value="3467"/> + </brsynth:selenzy_Q50LH3> + <brsynth:selenzy_Q50LH4> + <brsynth:score value="38.543"/> + <brsynth:target_ID value="3467"/> + </brsynth:selenzy_Q50LH4> + <brsynth:selenzy_B1NF18> + <brsynth:score value="38.478"/> + <brsynth:target_ID value="3469"/> + </brsynth:selenzy_B1NF18> + <brsynth:selenzy_I3PLQ9> + <brsynth:score value="38.371"/> + <brsynth:target_ID value="3469"/> + </brsynth:selenzy_I3PLQ9> + <brsynth:selenzy_O24312> + <brsynth:score value="37.512"/> + <brsynth:target_ID value="3693"/> + </brsynth:selenzy_O24312> + <brsynth:selenzy_P92994> + <brsynth:score value="37.512"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_P92994> + <brsynth:selenzy_Q43054> + <brsynth:score value="37.512"/> + <brsynth:target_ID value="34292"/> + </brsynth:selenzy_Q43054> + <brsynth:selenzy_Q9AR74> + <brsynth:score value="37.512"/> + <brsynth:target_ID value="37565"/> + </brsynth:selenzy_Q9AR74> + <brsynth:selenzy_Q42600> + <brsynth:score value="37.01"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q42600> + <brsynth:selenzy_Q9SAA9> + <brsynth:score value="36.731"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9SAA9> + <brsynth:selenzy_O81928> + <brsynth:score value="36.512"/> + <brsynth:target_ID value="3827"/> + </brsynth:selenzy_O81928> + <brsynth:selenzy_P37114> + <brsynth:score value="36.512"/> + <brsynth:target_ID value="3879"/> + </brsynth:selenzy_P37114> + <brsynth:selenzy_Q43067> + <brsynth:score value="36.512"/> + <brsynth:target_ID value="3888"/> + </brsynth:selenzy_Q43067> + <brsynth:selenzy_Q96423> + <brsynth:score value="36.512"/> + <brsynth:target_ID value="46348"/> + </brsynth:selenzy_Q96423> + <brsynth:selenzy_Q9FLC8> + <brsynth:score value="36.144"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9FLC8> + <brsynth:selenzy_O22203> + <brsynth:score value="35.664"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_O22203> + <brsynth:selenzy_P37115> + <brsynth:score value="35.612"/> + <brsynth:target_ID value="3916"/> + </brsynth:selenzy_P37115> + <brsynth:selenzy_Q04468> + <brsynth:score value="35.612"/> + <brsynth:target_ID value="4233"/> + </brsynth:selenzy_Q04468> + <brsynth:selenzy_P48522> + <brsynth:score value="35.512"/> + <brsynth:target_ID value="4058"/> + </brsynth:selenzy_P48522> + <brsynth:selenzy_Q42797> + <brsynth:score value="35.512"/> + <brsynth:target_ID value="3847"/> + </brsynth:selenzy_Q42797> + <brsynth:selenzy_Q43240> + <brsynth:score value="35.512"/> + <brsynth:target_ID value="34245"/> + </brsynth:selenzy_Q43240> + <brsynth:selenzy_O81346> + <brsynth:score value="35.424"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_O81346> + <brsynth:selenzy_Q501D8> + <brsynth:score value="35.424"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q501D8> + <brsynth:selenzy_P48418> + <brsynth:score value="35.312"/> + <brsynth:target_ID value="4102"/> + </brsynth:selenzy_P48418> + <brsynth:selenzy_P48419> + <brsynth:score value="35.312"/> + <brsynth:target_ID value="4102"/> + </brsynth:selenzy_P48419> + <brsynth:selenzy_O48958> + <brsynth:score value="35.298"/> + <brsynth:target_ID value="4558"/> + </brsynth:selenzy_O48958> + <brsynth:selenzy_Q43250> + <brsynth:score value="35.237"/> + <brsynth:target_ID value="4577"/> + </brsynth:selenzy_Q43250> + <brsynth:selenzy_Q9LSF8> + <brsynth:score value="35.195"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9LSF8> + <brsynth:selenzy_Q9SXS3> + <brsynth:score value="34.827"/> + <brsynth:target_ID value="46348"/> + </brsynth:selenzy_Q9SXS3> + <brsynth:selenzy_Q9M591> + <brsynth:score value="34.8"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9M591> + <brsynth:selenzy_Q8LEU3> + <brsynth:score value="34.765"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q8LEU3> + <brsynth:selenzy_Q9MBA1> + <brsynth:score value="34.759"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9MBA1> + <brsynth:selenzy_P93846> + <brsynth:score value="34.731"/> + <brsynth:target_ID value="4558"/> + </brsynth:selenzy_P93846> + <brsynth:selenzy_G4XV71> + <brsynth:score value="34.727"/> + <brsynth:target_ID value="74613"/> + </brsynth:selenzy_G4XV71> + <brsynth:selenzy_P48422> + <brsynth:score value="34.709"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_P48422> + <brsynth:selenzy_B3RFJ6> + <brsynth:score value="34.703"/> + <brsynth:target_ID value="4102"/> + </brsynth:selenzy_B3RFJ6> + <brsynth:selenzy_Q6SJV8> + <brsynth:score value="34.7"/> + <brsynth:target_ID value="3635"/> + </brsynth:selenzy_Q6SJV8> + <brsynth:selenzy_Q43135> + <brsynth:score value="34.672"/> + <brsynth:target_ID value="4558"/> + </brsynth:selenzy_Q43135> + <brsynth:selenzy_Q6DIZ8> + <brsynth:score value="34.637"/> + <brsynth:target_ID value="8364"/> + </brsynth:selenzy_Q6DIZ8> + <brsynth:selenzy_P93596> + <brsynth:score value="34.631"/> + <brsynth:target_ID value="4565"/> + </brsynth:selenzy_P93596> + <brsynth:selenzy_Q9FMY1> + <brsynth:score value="34.616"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9FMY1> + <brsynth:selenzy_O80823> + <brsynth:score value="34.609"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_O80823> + <brsynth:selenzy_Q9ZUX1> + <brsynth:score value="34.609"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9ZUX1> + <brsynth:selenzy_Q43255> + <brsynth:score value="34.538"/> + <brsynth:target_ID value="4577"/> + </brsynth:selenzy_Q43255> + <brsynth:selenzy_Q43033> + <brsynth:score value="34.512"/> + <brsynth:target_ID value="4043"/> + </brsynth:selenzy_Q43033> + <brsynth:selenzy_Q6WNQ9> + <brsynth:score value="34.384"/> + <brsynth:target_ID value="3880"/> + </brsynth:selenzy_Q6WNQ9> + <brsynth:selenzy_Q6WNR0> + <brsynth:score value="34.169"/> + <brsynth:target_ID value="3880"/> + </brsynth:selenzy_Q6WNR0> + <brsynth:selenzy_M1KVN4> + <brsynth:score value="34.027"/> + <brsynth:target_ID value="34256"/> + </brsynth:selenzy_M1KVN4> + <brsynth:selenzy_M1KXD0> + <brsynth:score value="34.027"/> + <brsynth:target_ID value="39350"/> + </brsynth:selenzy_M1KXD0> + <brsynth:selenzy_C0SJS4> + <brsynth:score value="34.025"/> + <brsynth:target_ID value="4045"/> + </brsynth:selenzy_C0SJS4> + <brsynth:selenzy_Q6QNI4> + <brsynth:score value="34.025"/> + <brsynth:target_ID value="48026"/> + </brsynth:selenzy_Q6QNI4> + <brsynth:selenzy_O81971> + <brsynth:score value="33.965"/> + <brsynth:target_ID value="3847"/> + </brsynth:selenzy_O81971> + <brsynth:selenzy_C5IGQ3> + <brsynth:score value="33.9"/> + <brsynth:target_ID value="3750"/> + </brsynth:selenzy_C5IGQ3> + <brsynth:selenzy_C5IGQ5> + <brsynth:score value="33.9"/> + <brsynth:target_ID value="3750"/> + </brsynth:selenzy_C5IGQ5> + <brsynth:selenzy_Q9SWR5> + <brsynth:score value="33.727"/> + <brsynth:target_ID value="3847"/> + </brsynth:selenzy_Q9SWR5> + <brsynth:selenzy_Q5VRI5> + <brsynth:score value="33.699"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q5VRI5> + <brsynth:selenzy_P26690> + <brsynth:score value="33.67"/> + <brsynth:target_ID value="3847"/> + </brsynth:selenzy_P26690> + <brsynth:selenzy_P93703> + <brsynth:score value="33.588"/> + <brsynth:target_ID value="4577"/> + </brsynth:selenzy_P93703> + <brsynth:selenzy_Q07994> + <brsynth:score value="33.446"/> + <brsynth:target_ID value="7370"/> + </brsynth:selenzy_Q07994> + <brsynth:selenzy_Q9ZRY0> + <brsynth:score value="33.312"/> + <brsynth:target_ID value="4058"/> + </brsynth:selenzy_Q9ZRY0> + <brsynth:selenzy_Q42798> + <brsynth:score value="33.263"/> + <brsynth:target_ID value="3847"/> + </brsynth:selenzy_Q42798> + <brsynth:selenzy_P98183> + <brsynth:score value="33.043"/> + <brsynth:target_ID value="4058"/> + </brsynth:selenzy_P98183> + <brsynth:selenzy_C0SJS2> + <brsynth:score value="33.025"/> + <brsynth:target_ID value="4041"/> + </brsynth:selenzy_C0SJS2> + <brsynth:selenzy_Q43257> + <brsynth:score value="32.897"/> + <brsynth:target_ID value="4577"/> + </brsynth:selenzy_Q43257> + <brsynth:selenzy_C0SJS3> + <brsynth:score value="32.86"/> + <brsynth:target_ID value="4041"/> + </brsynth:selenzy_C0SJS3> + <brsynth:selenzy_Q5EFU4> + <brsynth:score value="32.8"/> + <brsynth:target_ID value="4513"/> + </brsynth:selenzy_Q5EFU4> + <brsynth:selenzy_A4ZKM5> + <brsynth:score value="32.708"/> + <brsynth:target_ID value="49390"/> + </brsynth:selenzy_A4ZKM5> + <brsynth:selenzy_Q8S7E1> + <brsynth:score value="32.659"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q8S7E1> + <brsynth:selenzy_Q9MZS9> + <brsynth:score value="32.637"/> + <brsynth:target_ID value="9823"/> + </brsynth:selenzy_Q9MZS9> + <brsynth:selenzy_Q2Q093> + <brsynth:score value="32.564"/> + <brsynth:target_ID value="49390"/> + </brsynth:selenzy_Q2Q093> + <brsynth:selenzy_Q2Q094> + <brsynth:score value="32.564"/> + <brsynth:target_ID value="49390"/> + </brsynth:selenzy_Q2Q094> + <brsynth:selenzy_Q8S7V0> + <brsynth:score value="32.509"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q8S7V0> + <brsynth:selenzy_P08682> + <brsynth:score value="31.816"/> + <brsynth:target_ID value="9986"/> + </brsynth:selenzy_P08682> + <brsynth:selenzy_P79383> + <brsynth:score value="31.816"/> + <brsynth:target_ID value="9823"/> + </brsynth:selenzy_P79383> + <brsynth:selenzy_Q86PM2> + <brsynth:score value="31.737"/> + <brsynth:target_ID value="7159"/> + </brsynth:selenzy_Q86PM2> + <brsynth:selenzy_Q1RLY6> + <brsynth:score value="31.637"/> + <brsynth:target_ID value="7955"/> + </brsynth:selenzy_Q1RLY6> + <brsynth:selenzy_Q945B7> + <brsynth:score value="31.6"/> + <brsynth:target_ID value="3993"/> + </brsynth:selenzy_Q945B7> + <brsynth:selenzy_Q9MZY0> + <brsynth:score value="30.816"/> + <brsynth:target_ID value="9615"/> + </brsynth:selenzy_Q9MZY0> + <brsynth:selenzy_O46420> + <brsynth:score value="30.631"/> + <brsynth:target_ID value="9823"/> + </brsynth:selenzy_O46420> + <brsynth:selenzy_Q7Q6A7> + <brsynth:score value="30.537"/> + <brsynth:target_ID value="7165"/> + </brsynth:selenzy_Q7Q6A7> + <brsynth:selenzy_P16549> + <brsynth:score value="30.375"/> + <brsynth:target_ID value="9823"/> + </brsynth:selenzy_P16549> + <brsynth:selenzy_P17635> + <brsynth:score value="30.375"/> + <brsynth:target_ID value="9986"/> + </brsynth:selenzy_P17635> + <brsynth:selenzy_P17636> + <brsynth:score value="30.375"/> + <brsynth:target_ID value="9986"/> + </brsynth:selenzy_P17636> + <brsynth:selenzy_P32417> + <brsynth:score value="30.375"/> + <brsynth:target_ID value="9986"/> + </brsynth:selenzy_P32417> + <brsynth:selenzy_Q04799> + <brsynth:score value="30.375"/> + <brsynth:target_ID value="9986"/> + </brsynth:selenzy_Q04799> + <brsynth:selenzy_P36367> + <brsynth:score value="30.275"/> + <brsynth:target_ID value="9986"/> + </brsynth:selenzy_P36367> + <brsynth:selenzy_O18963> + <brsynth:score value="29.816"/> + <brsynth:target_ID value="9913"/> + </brsynth:selenzy_O18963> + <brsynth:selenzy_O88867> + <brsynth:score value="29.737"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_O88867> + <brsynth:selenzy_P49328> + <brsynth:score value="29.375"/> + <brsynth:target_ID value="10141"/> + </brsynth:selenzy_P49328> + <brsynth:selenzy_P36366> + <brsynth:score value="29.275"/> + <brsynth:target_ID value="10141"/> + </brsynth:selenzy_P36366> + <brsynth:selenzy_P49109> + <brsynth:score value="29.275"/> + <brsynth:target_ID value="10141"/> + </brsynth:selenzy_P49109> + <brsynth:selenzy_Q95LA1> + <brsynth:score value="29.275"/> + <brsynth:target_ID value="9615"/> + </brsynth:selenzy_Q95LA1> + <brsynth:selenzy_Q95LA2> + <brsynth:score value="29.275"/> + <brsynth:target_ID value="9615"/> + </brsynth:selenzy_Q95LA2> + <brsynth:selenzy_P05182> + <brsynth:score value="28.916"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_P05182> + <brsynth:selenzy_P51581> + <brsynth:score value="28.816"/> + <brsynth:target_ID value="10036"/> + </brsynth:selenzy_P51581> + <brsynth:selenzy_O15229> + <brsynth:score value="28.737"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_O15229> + <brsynth:selenzy_Q91WN4> + <brsynth:score value="28.637"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_Q91WN4> + <brsynth:selenzy_Q4PJW3> + <brsynth:score value="28.631"/> + <brsynth:target_ID value="9913"/> + </brsynth:selenzy_Q4PJW3> + <brsynth:selenzy_Q8HYJ9> + <brsynth:score value="28.275"/> + <brsynth:target_ID value="9913"/> + </brsynth:selenzy_Q8HYJ9> + <brsynth:selenzy_P33266> + <brsynth:score value="27.816"/> + <brsynth:target_ID value="9541"/> + </brsynth:selenzy_P33266> + <brsynth:selenzy_Q05421> + <brsynth:score value="27.816"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_Q05421> + <brsynth:selenzy_Q6GUQ4> + <brsynth:score value="27.816"/> + <brsynth:target_ID value="9544"/> + </brsynth:selenzy_Q6GUQ4> + <brsynth:selenzy_Q64654> + <brsynth:score value="27.631"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_Q64654> + <brsynth:selenzy_P36365> + <brsynth:score value="27.375"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_P36365> + <brsynth:selenzy_Q8K4C0> + <brsynth:score value="27.375"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_Q8K4C0> + <brsynth:selenzy_Q9EQ76> + <brsynth:score value="27.375"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_Q9EQ76> + <brsynth:selenzy_Q6IRI9> + <brsynth:score value="27.275"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_Q6IRI9> + <brsynth:selenzy_Q8K4B7> + <brsynth:score value="27.275"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_Q8K4B7> + <brsynth:selenzy_Q16850> + <brsynth:score value="26.731"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_Q16850> + <brsynth:selenzy_Q4R8S6> + <brsynth:score value="26.631"/> + <brsynth:target_ID value="9541"/> + </brsynth:selenzy_Q4R8S6> + <brsynth:selenzy_Q5RE72> + <brsynth:score value="26.631"/> + <brsynth:target_ID value="9601"/> + </brsynth:selenzy_Q5RE72> + <brsynth:selenzy_Q8K0C4> + <brsynth:score value="26.631"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_Q8K0C4> + <brsynth:selenzy_P31512> + <brsynth:score value="26.375"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P31512> + <brsynth:selenzy_P31513> + <brsynth:score value="26.375"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P31513> + <brsynth:selenzy_P49326> + <brsynth:score value="26.375"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P49326> + <brsynth:selenzy_P50285> + <brsynth:score value="26.375"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_P50285> + <brsynth:selenzy_P97501> + <brsynth:score value="26.375"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_P97501> + <brsynth:selenzy_Q8K2I3> + <brsynth:score value="26.375"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_Q8K2I3> + <brsynth:selenzy_Q99518> + <brsynth:score value="26.375"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_Q99518> + <brsynth:selenzy_Q9Y2Z9> + <brsynth:score value="26.358"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_Q9Y2Z9> + <brsynth:selenzy_P97872> + <brsynth:score value="26.275"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_P97872> + <brsynth:selenzy_Q01740> + <brsynth:score value="26.275"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_Q01740> + <brsynth:selenzy_Q28505> + <brsynth:score value="26.275"/> + <brsynth:target_ID value="9544"/> + </brsynth:selenzy_Q28505> + <brsynth:selenzy_Q5REK0> + <brsynth:score value="26.275"/> + <brsynth:target_ID value="9601"/> + </brsynth:selenzy_Q5REK0> + <brsynth:selenzy_Q8SPQ7> + <brsynth:score value="26.275"/> + <brsynth:target_ID value="9544"/> + </brsynth:selenzy_Q8SPQ7> + <brsynth:selenzy_Q8VHG0> + <brsynth:score value="26.275"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_Q8VHG0> + <brsynth:selenzy_Q7YS44> + <brsynth:score value="26.175"/> + <brsynth:target_ID value="9598"/> + </brsynth:selenzy_Q7YS44> + <brsynth:selenzy_Q8HZ70> + <brsynth:score value="26.175"/> + <brsynth:target_ID value="9598"/> + </brsynth:selenzy_Q8HZ70> + <brsynth:selenzy_O60774> + <brsynth:score value="25.975"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_O60774> + <brsynth:selenzy_P05181> + <brsynth:score value="25.787"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P05181> + <brsynth:selenzy_A1Z746> + <brsynth:score value="25.637"/> + <brsynth:target_ID value="7227"/> + </brsynth:selenzy_A1Z746> + <brsynth:selenzy_Q9HBI6> + <brsynth:score value="25.6"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_Q9HBI6> + <brsynth:selenzy_P78329> + <brsynth:score value="25.428"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P78329> + <brsynth:selenzy_Q8HZ69> + <brsynth:score value="25.175"/> + <brsynth:target_ID value="9595"/> + </brsynth:selenzy_Q8HZ69> + <brsynth:selenzy_P08684> + <brsynth:score value="24.856"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P08684> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + <listOfReactants> + <speciesReference species="MNXM1" stoichiometry="3" constant="true"/> + <speciesReference species="MNXM188" stoichiometry="1" constant="true"/> + <speciesReference species="MNXM4" stoichiometry="1" constant="true"/> + <speciesReference species="MNXM6" stoichiometry="1" constant="true"/> + </listOfReactants> + <listOfProducts> + <speciesReference species="CMPD_0000000003" stoichiometry="1" constant="true"/> + <speciesReference species="MNXM13" stoichiometry="1" constant="true"/> + <speciesReference species="MNXM15" stoichiometry="1" constant="true"/> + <speciesReference species="MNXM5" stoichiometry="1" constant="true"/> + </listOfProducts> + </reaction> + <reaction metaid="c9c2d56fd0ad9d5b8cd80acad4b5df22945ab4de50db7b24db52a91a7560c3ff" sboTerm="SBO:0000176" id="rxn_2" reversible="false" fast="false" fbc:lowerFluxBound="BRS_FBC_0_0" fbc:upperFluxBound="BRS_FBC_999999_0"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:Description rdf:about="#c9c2d56fd0ad9d5b8cd80acad4b5df22945ab4de50db7b24db52a91a7560c3ff"> + <bqbiol:is> + <rdf:Bag> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P55025"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9W1V6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9V521"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q08410"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9VKJ0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P55024"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9BDE0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q86B61"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q06278"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P35354"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6GUQ4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q05421"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P33266"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P05181"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q25519"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P14679"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P11344"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O44249"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C0HJM0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P21396"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5RF05"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P51581"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q93099"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O09173"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P05182"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q27452"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q27451"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O18963"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8MIU0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P85046"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P21397"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q64237"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P09172"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9MZY0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P55033"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P54834"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q05754"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P79383"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P08682"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P15101"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P55026"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q68CI2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q147S1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9XTA0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q04604"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FV25"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FV24"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O48958"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B0LB01"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B0LB00"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B0LAZ9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5VRH4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7G9P4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7G193"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7G192"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q42600"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q94ID0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ZRA2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O22203"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/I3PFJ9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/I3PFJ3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7XA48"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q70FG7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P00440"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B6F0W8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8J130"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q92396"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q00234"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q00667"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9Y041"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9M7C0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B9UJ99"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q00024"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O42713"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C7FF05"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C7FF04"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A7BHQ9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9HDX2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7XE50"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0DHL5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6Z8L2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q69L99"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5ZCW1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5N9W4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2RBK2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2QYS3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0JHP8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0IP28"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A2Y9C5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A2Y9C2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A2XCN6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q941X2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8RYM9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5N9X2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5N7B4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5N7A3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q53LU4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q339K6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2R0L2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2R0L0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2QZ80"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2QUN2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q10ND7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0IQU1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0DHL2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B9UJ98"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1VTI5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q742Z1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ZPY2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9SR40"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9SIY8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9LYQ2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9LMS3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9LFD2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9LFD1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FY79"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FLB5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FJD5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8VZA1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6ID18"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q56YT0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1PDH6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O81081"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O80434"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q84J37"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0QB57"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P15245"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9S2B5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C0SPC0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4T8B6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1TCX2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0R1T4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q828S5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P55023"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P55022"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P07524"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8RQQ0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8RQP9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6F4M9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6F4M8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1B5E2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A3Q339"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1UJP4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q330M9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P06845"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O33655"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P21795"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8GR45"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7X284"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1MI52"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1D8L9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C3M930"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B9JHZ9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B5ZZA8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q54QI4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5H782"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1BGA7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4JQH4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4JPY1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0KE38"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5SJP8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4IT51"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q03966"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P06811"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46M62"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q63RD3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q62I34"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4ZR64"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q48GS7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q3JPA3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2SYQ6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2K9E5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1BYQ6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0BHW3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B8H072"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B4ECX5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B3PWZ9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1YTZ1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1JWJ3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A9AFM6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A6UDD3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4JBW6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A3NYN0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A3MMH2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A2S9M1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1V1U3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0K4Z6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q742Z0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P27138"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9X4F5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P33180"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4L1M7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q476N1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q13QI0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q54354"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q471I2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P78722"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P17489"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9FAE3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q70KY3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/F8FZQ5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2PWU9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O87009"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/F8G0M4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9A5B8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q983J4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8XRZ0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8PQ74"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q89XH1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q87Z79"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7WNZ3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7W189"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7VUG2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6N0T9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46UA4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q39J54"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2KYC8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2J1P2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q21AX5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1QPR8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q13CD3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0K0L8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q07T66"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B3QB98"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B2UJ73"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A9I714"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/D3WZ86"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P54990"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P54989"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8KTD8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9S158"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P20586"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O06647"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q96UM2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q53692"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q96WM9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q12570"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51593"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51592"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0S034"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1N1A2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9R9T1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9X4G0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9S4T0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8PDA2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5GVE9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4UZI9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4KI35"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q3KHV3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q2NYM7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q02LF6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7VA96"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B2SM18"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1J390"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B0T816"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B0KGU6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A6V6F5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A5W8Z1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0SJD2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4T8B7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1TCX1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0R1T3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0PL52"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q88E47"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P00438"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O86041"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8KN28"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P00437"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P00436"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8RNY0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8RNX9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P47233"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P47231"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5NTE5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8GI19"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8GI18"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q03298"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A5JTM8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P47232"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9S3U6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0QFQ2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5X5S2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5WX50"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q3BYE8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1I500"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A5IBD8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q762H5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q1B5E3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O05146"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A3Q338"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1UJP3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7WYU8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6EMI9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O06646"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q88JX5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9KH19"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ANX4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ANX3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ANX1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ANX0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8VSV8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8GNT2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7T912"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P22636"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P22635"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q99056"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q99055"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q99049"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q99046"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q99044"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q12719"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/D7F5L7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/D7F5L6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q12729"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q12717"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q02079"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q02075"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q12739"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q12718"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q12542"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q12541"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q02497"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q02081"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q01679"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P86351"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P86328"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P86327"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P85430"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P85308"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P85149"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P56193"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O59896"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/D0VWU3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C0HJB2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B3EWI3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B3EWG2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B3A0L4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q93TJ5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A4JPY0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q93PS2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q93PS1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ZBB0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6Q272"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8G9L3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q88FY1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P47228"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47HM4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q47GC9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q476N0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q13QH9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B2JQV7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A7IDU0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/I6X9J4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A6TAC9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C4TP01"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q76CA9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q471I0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6QHC2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6QHB9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51943"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51942"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51940"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q51939"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P11122"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P08695"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C1DRI2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A1K6Y7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9S157"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P17295"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q3Z585"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B5XQI9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8KTD6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C1I201"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P15110"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P15109"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9F9U5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q400K4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P74836"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P46057"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P27098"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/D4GPK6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7B7H7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A109"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A107"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P17297"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7N4V6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P11861"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A396"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q08307"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q08306"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q08305"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q08304"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q08303"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q08296"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O87474"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P0A108"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B5Z2Q2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A7ZI94"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q48440"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q67FT0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q06355"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P43309"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q06215"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A6TAC8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P20372"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P20371"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q8X680"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7NK08"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7N8Q4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7MPB4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7M2Z5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7L503"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B6HZX3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1LIN2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A7ZWZ4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9MB14"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9ZP19"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q3Z586"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B5XQJ0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1XBJ4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P43310"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P43311"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9WXE6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q57160"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P95608"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P77397"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9RE15"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7WTJ6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q7WTJ2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q01551"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P85026"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B5Z2Q3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A7ZI95"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P24197"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABS0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7NK07"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7N8Q5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7MPB5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7M2Z6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B7L504"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B6HZX4"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1LIN3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A7ZWZ5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q59220"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19733"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19732"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19730"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19729"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P13453"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q6F4M7"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P31020"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q5PXQ6"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19734"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P19731"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9Z417"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1XBJ5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P08310"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q46980"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q4KPK2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0F0B3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q43931"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O33949"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O33946"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q607G3"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/G1UBD1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q05353"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P0ABR9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q45076"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P11451"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C6FI44"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q0VH42"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P36649"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C6FI41"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/C6FI40"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1GRL9"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/B1GRL8"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/D2STN2"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/D2STN1"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P54721"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q53034"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P31003"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P17296"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P86029"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q04285"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P27887"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P08127"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P06622"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P17262"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P95607"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q9AEQ0"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P83715"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/A0F0B5"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P31019"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/Q43984"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P81422"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/P07773"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O33950"/> + <rdf:li rdf:resource="http://identifiers.org/uniprot/O33948"/> + <rdf:li rdf:resource="http://identifiers.org/ec-code/1.13.11.1"/> + </rdf:Bag> + </bqbiol:is> + </rdf:Description> + <rdf:BRSynth rdf:about="#c9c2d56fd0ad9d5b8cd80acad4b5df22945ab4de50db7b24db52a91a7560c3ff"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:smiles value="[H]Oc1c([H])c([H])c([H])c([H])c1O[H].O=O>>[H+].[H+].[H]OC(=O)C([H])=C([H])C([H])=C([H])C(=O)O[H]"/> + <brsynth:rp2_transfo_id value="TRS_0_0_0"/> + <brsynth:rule_ids> + <brsynth:RR-02-a0cc0be463ff412f-16-F/> + </brsynth:rule_ids> + <brsynth:tmpl_rxn_ids> + <brsynth:MNXR96458/> + </brsynth:tmpl_rxn_ids> + <brsynth:rule_score value="0.5982208769718989"/> + <brsynth:idx_in_path value="2"/> + <brsynth:selenzy_O33948> + <brsynth:score value="89.9"/> + <brsynth:target_ID value="28090"/> + </brsynth:selenzy_O33948> + <brsynth:selenzy_O33950> + <brsynth:score value="89.9"/> + <brsynth:target_ID value="28090"/> + </brsynth:selenzy_O33950> + <brsynth:selenzy_P07773> + <brsynth:score value="89.9"/> + <brsynth:target_ID value="62977"/> + </brsynth:selenzy_P07773> + <brsynth:selenzy_P81422> + <brsynth:score value="89.9"/> + <brsynth:target_ID value="40216"/> + </brsynth:selenzy_P81422> + <brsynth:selenzy_Q43984> + <brsynth:score value="89.8"/> + <brsynth:target_ID value="106649"/> + </brsynth:selenzy_Q43984> + <brsynth:selenzy_P31019> + <brsynth:score value="89.7"/> + <brsynth:target_ID value="69012"/> + </brsynth:selenzy_P31019> + <brsynth:selenzy_A0F0B5> + <brsynth:score value="89.6"/> + <brsynth:target_ID value="395598"/> + </brsynth:selenzy_A0F0B5> + <brsynth:selenzy_P83715> + <brsynth:score value="88.9"/> + <brsynth:target_ID value="471"/> + </brsynth:selenzy_P83715> + <brsynth:selenzy_Q9AEQ0> + <brsynth:score value="88.6"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_Q9AEQ0> + <brsynth:selenzy_P95607> + <brsynth:score value="84.9"/> + <brsynth:target_ID value="37919"/> + </brsynth:selenzy_P95607> + <brsynth:selenzy_P17262> + <brsynth:score value="78.498"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P17262> + <brsynth:selenzy_P06622> + <brsynth:score value="77.698"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P06622> + <brsynth:selenzy_P08127> + <brsynth:score value="77.498"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P08127> + <brsynth:selenzy_P27887> + <brsynth:score value="77.498"/> + <brsynth:target_ID value="287"/> + </brsynth:selenzy_P27887> + <brsynth:selenzy_Q04285> + <brsynth:score value="77.498"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_Q04285> + <brsynth:selenzy_P86029> + <brsynth:score value="76.9"/> + <brsynth:target_ID value="237561"/> + </brsynth:selenzy_P86029> + <brsynth:selenzy_P17296> + <brsynth:score value="76.498"/> + <brsynth:target_ID value="106590"/> + </brsynth:selenzy_P17296> + <brsynth:selenzy_P31003> + <brsynth:score value="73.498"/> + <brsynth:target_ID value="1422"/> + </brsynth:selenzy_P31003> + <brsynth:selenzy_Q53034> + <brsynth:score value="73.498"/> + <brsynth:target_ID value="1829"/> + </brsynth:selenzy_Q53034> + <brsynth:selenzy_P54721> + <brsynth:score value="70.698"/> + <brsynth:target_ID value="224308"/> + </brsynth:selenzy_P54721> + <brsynth:selenzy_D2STN1> + <brsynth:score value="69.849"/> + <brsynth:target_ID value="633150"/> + </brsynth:selenzy_D2STN1> + <brsynth:selenzy_D2STN2> + <brsynth:score value="69.849"/> + <brsynth:target_ID value="633150"/> + </brsynth:selenzy_D2STN2> + <brsynth:selenzy_B1GRL8> + <brsynth:score value="68.849"/> + <brsynth:target_ID value="294"/> + </brsynth:selenzy_B1GRL8> + <brsynth:selenzy_B1GRL9> + <brsynth:score value="68.849"/> + <brsynth:target_ID value="294"/> + </brsynth:selenzy_B1GRL9> + <brsynth:selenzy_C6FI40> + <brsynth:score value="68.849"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_C6FI40> + <brsynth:selenzy_C6FI41> + <brsynth:score value="68.849"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_C6FI41> + <brsynth:selenzy_P36649> + <brsynth:score value="64.791"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P36649> + <brsynth:selenzy_Q0VH42> + <brsynth:score value="63.785"/> + <brsynth:target_ID value="395598"/> + </brsynth:selenzy_Q0VH42> + <brsynth:selenzy_C6FI44> + <brsynth:score value="63.032"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_C6FI44> + <brsynth:selenzy_P11451> + <brsynth:score value="61.906"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P11451> + <brsynth:selenzy_Q45076> + <brsynth:score value="60.732"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q45076> + <brsynth:selenzy_P0ABR9> + <brsynth:score value="60.641"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P0ABR9> + <brsynth:selenzy_Q05353> + <brsynth:score value="60.529"/> + <brsynth:target_ID value="562"/> + </brsynth:selenzy_Q05353> + <brsynth:selenzy_G1UBD1> + <brsynth:score value="60.511"/> + <brsynth:target_ID value="243233"/> + </brsynth:selenzy_G1UBD1> + <brsynth:selenzy_Q607G3> + <brsynth:score value="60.511"/> + <brsynth:target_ID value="243233"/> + </brsynth:selenzy_Q607G3> + <brsynth:selenzy_O33946> + <brsynth:score value="60.418"/> + <brsynth:target_ID value="28090"/> + </brsynth:selenzy_O33946> + <brsynth:selenzy_O33949> + <brsynth:score value="60.418"/> + <brsynth:target_ID value="28090"/> + </brsynth:selenzy_O33949> + <brsynth:selenzy_Q43931> + <brsynth:score value="60.418"/> + <brsynth:target_ID value="62977"/> + </brsynth:selenzy_Q43931> + <brsynth:selenzy_A0F0B3> + <brsynth:score value="60.318"/> + <brsynth:target_ID value="395598"/> + </brsynth:selenzy_A0F0B3> + <brsynth:selenzy_Q4KPK2> + <brsynth:score value="60.318"/> + <brsynth:target_ID value="395598"/> + </brsynth:selenzy_Q4KPK2> + <brsynth:selenzy_Q46980> + <brsynth:score value="60.229"/> + <brsynth:target_ID value="562"/> + </brsynth:selenzy_Q46980> + <brsynth:selenzy_P08310> + <brsynth:score value="59.618"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P08310> + <brsynth:selenzy_B1XBJ5> + <brsynth:score value="59.441"/> + <brsynth:target_ID value="316385"/> + </brsynth:selenzy_B1XBJ5> + <brsynth:selenzy_Q9Z417> + <brsynth:score value="59.254"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_Q9Z417> + <brsynth:selenzy_P19731> + <brsynth:score value="59.168"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19731> + <brsynth:selenzy_P19734> + <brsynth:score value="59.168"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19734> + <brsynth:selenzy_Q5PXQ6> + <brsynth:score value="59.032"/> + <brsynth:target_ID value="2045"/> + </brsynth:selenzy_Q5PXQ6> + <brsynth:selenzy_P31020> + <brsynth:score value="58.968"/> + <brsynth:target_ID value="69012"/> + </brsynth:selenzy_P31020> + <brsynth:selenzy_Q6F4M7> + <brsynth:score value="58.932"/> + <brsynth:target_ID value="37919"/> + </brsynth:selenzy_Q6F4M7> + <brsynth:selenzy_P13453> + <brsynth:score value="58.921"/> + <brsynth:target_ID value="351746"/> + </brsynth:selenzy_P13453> + <brsynth:selenzy_P19729> + <brsynth:score value="58.868"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19729> + <brsynth:selenzy_P19730> + <brsynth:score value="58.868"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19730> + <brsynth:selenzy_P19732> + <brsynth:score value="58.868"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19732> + <brsynth:selenzy_P19733> + <brsynth:score value="58.868"/> + <brsynth:target_ID value="79676"/> + </brsynth:selenzy_P19733> + <brsynth:selenzy_Q59220> + <brsynth:score value="58.721"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q59220> + <brsynth:selenzy_A7ZWZ5> + <brsynth:score value="58.441"/> + <brsynth:target_ID value="331112"/> + </brsynth:selenzy_A7ZWZ5> + <brsynth:selenzy_B1LIN3> + <brsynth:score value="58.441"/> + <brsynth:target_ID value="439855"/> + </brsynth:selenzy_B1LIN3> + <brsynth:selenzy_B6HZX4> + <brsynth:score value="58.441"/> + <brsynth:target_ID value="409438"/> + </brsynth:selenzy_B6HZX4> + <brsynth:selenzy_B7L504> + <brsynth:score value="58.441"/> + <brsynth:target_ID value="585055"/> + </brsynth:selenzy_B7L504> + <brsynth:selenzy_B7M2Z6> + <brsynth:score value="58.441"/> + <brsynth:target_ID value="585034"/> + </brsynth:selenzy_B7M2Z6> + <brsynth:selenzy_B7MPB5> + <brsynth:score value="58.441"/> + <brsynth:target_ID value="585397"/> + </brsynth:selenzy_B7MPB5> + <brsynth:selenzy_B7N8Q5> + <brsynth:score value="58.441"/> + <brsynth:target_ID value="585056"/> + </brsynth:selenzy_B7N8Q5> + <brsynth:selenzy_B7NK07> + <brsynth:score value="58.441"/> + <brsynth:target_ID value="585057"/> + </brsynth:selenzy_B7NK07> + <brsynth:selenzy_P0ABS0> + <brsynth:score value="58.441"/> + <brsynth:target_ID value="83334"/> + </brsynth:selenzy_P0ABS0> + <brsynth:selenzy_P24197> + <brsynth:score value="57.509"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P24197> + <brsynth:selenzy_A7ZI95> + <brsynth:score value="57.441"/> + <brsynth:target_ID value="331111"/> + </brsynth:selenzy_A7ZI95> + <brsynth:selenzy_B5Z2Q3> + <brsynth:score value="57.441"/> + <brsynth:target_ID value="444450"/> + </brsynth:selenzy_B5Z2Q3> + <brsynth:selenzy_P85026> + <brsynth:score value="57.365"/> + <brsynth:target_ID value="94328"/> + </brsynth:selenzy_P85026> + <brsynth:selenzy_Q01551> + <brsynth:score value="57.168"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q01551> + <brsynth:selenzy_Q7WTJ2> + <brsynth:score value="57.168"/> + <brsynth:target_ID value="871585"/> + </brsynth:selenzy_Q7WTJ2> + <brsynth:selenzy_Q7WTJ6> + <brsynth:score value="57.168"/> + <brsynth:target_ID value="871585"/> + </brsynth:selenzy_Q7WTJ6> + <brsynth:selenzy_Q9RE15> + <brsynth:score value="56.229"/> + <brsynth:target_ID value="573"/> + </brsynth:selenzy_Q9RE15> + <brsynth:selenzy_P77397> + <brsynth:score value="55.885"/> + <brsynth:target_ID value="83333"/> + </brsynth:selenzy_P77397> + <brsynth:selenzy_P95608> + <brsynth:score value="55.618"/> + <brsynth:target_ID value="37919"/> + </brsynth:selenzy_P95608> + <brsynth:selenzy_Q57160> + <brsynth:score value="55.588"/> + <brsynth:target_ID value="562"/> + </brsynth:selenzy_Q57160> + <brsynth:selenzy_Q9WXE6> + <brsynth:score value="55.521"/> + <brsynth:target_ID value="13689"/> + </brsynth:selenzy_Q9WXE6> + <brsynth:selenzy_P43311> + <brsynth:score value="55.365"/> + <brsynth:target_ID value="29760"/> + </brsynth:selenzy_P43311> + <brsynth:selenzy_P43310> + <brsynth:score value="55.265"/> + <brsynth:target_ID value="3562"/> + </brsynth:selenzy_P43310> + <brsynth:selenzy_B1XBJ4> + <brsynth:score value="54.685"/> + <brsynth:target_ID value="316385"/> + </brsynth:selenzy_B1XBJ4> + <brsynth:selenzy_B5XQJ0> + <brsynth:score value="54.441"/> + <brsynth:target_ID value="507522"/> + </brsynth:selenzy_B5XQJ0> + <brsynth:selenzy_Q3Z586> + <brsynth:score value="54.441"/> + <brsynth:target_ID value="300269"/> + </brsynth:selenzy_Q3Z586> + <brsynth:selenzy_Q9ZP19> + <brsynth:score value="54.365"/> + <brsynth:target_ID value="4120"/> + </brsynth:selenzy_Q9ZP19> + <brsynth:selenzy_Q9MB14> + <brsynth:score value="54.265"/> + <brsynth:target_ID value="4120"/> + </brsynth:selenzy_Q9MB14> + <brsynth:selenzy_A7ZWZ4> + <brsynth:score value="53.685"/> + <brsynth:target_ID value="331112"/> + </brsynth:selenzy_A7ZWZ4> + <brsynth:selenzy_B1LIN2> + <brsynth:score value="53.685"/> + <brsynth:target_ID value="439855"/> + </brsynth:selenzy_B1LIN2> + <brsynth:selenzy_B6HZX3> + <brsynth:score value="53.685"/> + <brsynth:target_ID value="409438"/> + </brsynth:selenzy_B6HZX3> + <brsynth:selenzy_B7L503> + <brsynth:score value="53.685"/> + <brsynth:target_ID value="585055"/> + </brsynth:selenzy_B7L503> + <brsynth:selenzy_B7M2Z5> + <brsynth:score value="53.685"/> + <brsynth:target_ID value="585034"/> + </brsynth:selenzy_B7M2Z5> + <brsynth:selenzy_B7MPB4> + <brsynth:score value="53.685"/> + <brsynth:target_ID value="585397"/> + </brsynth:selenzy_B7MPB4> + <brsynth:selenzy_B7N8Q4> + <brsynth:score value="53.685"/> + <brsynth:target_ID value="585056"/> + </brsynth:selenzy_B7N8Q4> + <brsynth:selenzy_B7NK08> + <brsynth:score value="53.685"/> + <brsynth:target_ID value="585057"/> + </brsynth:selenzy_B7NK08> + <brsynth:selenzy_Q8X680> + <brsynth:score value="53.685"/> + <brsynth:target_ID value="83334"/> + </brsynth:selenzy_Q8X680> + <brsynth:selenzy_P20371> + <brsynth:score value="53.569"/> + <brsynth:target_ID value="62977"/> + </brsynth:selenzy_P20371> + <brsynth:selenzy_P20372> + <brsynth:score value="53.569"/> + <brsynth:target_ID value="62977"/> + </brsynth:selenzy_P20372> + <brsynth:selenzy_A6TAC8> + <brsynth:score value="53.441"/> + <brsynth:target_ID value="272620"/> + </brsynth:selenzy_A6TAC8> + <brsynth:selenzy_Q06215> + <brsynth:score value="53.365"/> + <brsynth:target_ID value="3906"/> + </brsynth:selenzy_Q06215> + <brsynth:selenzy_P43309> + <brsynth:score value="53.265"/> + <brsynth:target_ID value="3750"/> + </brsynth:selenzy_P43309> + <brsynth:selenzy_Q06355> + <brsynth:score value="53.265"/> + <brsynth:target_ID value="4113"/> + </brsynth:selenzy_Q06355> + <brsynth:selenzy_Q67FT0> + <brsynth:score value="53.045"/> + <brsynth:target_ID value="93369"/> + </brsynth:selenzy_Q67FT0> + <brsynth:selenzy_Q48440> + <brsynth:score value="52.703"/> + <brsynth:target_ID value="571"/> + </brsynth:selenzy_Q48440> + <brsynth:selenzy_A7ZI94> + <brsynth:score value="52.685"/> + <brsynth:target_ID value="331111"/> + </brsynth:selenzy_A7ZI94> + <brsynth:selenzy_B5Z2Q2> + <brsynth:score value="52.685"/> + <brsynth:target_ID value="444450"/> + </brsynth:selenzy_B5Z2Q2> + <brsynth:selenzy_P0A108> + <brsynth:score value="52.478"/> + <brsynth:target_ID value="69011"/> + </brsynth:selenzy_P0A108> + <brsynth:selenzy_O87474> + <brsynth:score value="52.234"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_O87474> + <brsynth:selenzy_Q08296> + <brsynth:score value="52.165"/> + <brsynth:target_ID value="4081"/> + </brsynth:selenzy_Q08296> + <brsynth:selenzy_Q08303> + <brsynth:score value="52.165"/> + <brsynth:target_ID value="4081"/> + </brsynth:selenzy_Q08303> + <brsynth:selenzy_Q08304> + <brsynth:score value="52.165"/> + <brsynth:target_ID value="4081"/> + </brsynth:selenzy_Q08304> + <brsynth:selenzy_Q08305> + <brsynth:score value="52.165"/> + <brsynth:target_ID value="4081"/> + </brsynth:selenzy_Q08305> + <brsynth:selenzy_Q08306> + <brsynth:score value="52.165"/> + <brsynth:target_ID value="4081"/> + </brsynth:selenzy_Q08306> + <brsynth:selenzy_Q08307> + <brsynth:score value="52.165"/> + <brsynth:target_ID value="4081"/> + </brsynth:selenzy_Q08307> + <brsynth:selenzy_P0A396> + <brsynth:score value="51.665"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_P0A396> + <brsynth:selenzy_P11861> + <brsynth:score value="51.478"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P11861> + <brsynth:selenzy_Q7N4V6> + <brsynth:score value="51.441"/> + <brsynth:target_ID value="243265"/> + </brsynth:selenzy_Q7N4V6> + <brsynth:selenzy_P17297> + <brsynth:score value="51.389"/> + <brsynth:target_ID value="307"/> + </brsynth:selenzy_P17297> + <brsynth:selenzy_P0A107> + <brsynth:score value="51.278"/> + <brsynth:target_ID value="287"/> + </brsynth:selenzy_P0A107> + <brsynth:selenzy_P0A109> + <brsynth:score value="51.278"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P0A109> + <brsynth:selenzy_Q7B7H7> + <brsynth:score value="51.278"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_Q7B7H7> + <brsynth:selenzy_D4GPK6> + <brsynth:score value="51.03"/> + <brsynth:target_ID value="309800"/> + </brsynth:selenzy_D4GPK6> + <brsynth:selenzy_P27098> + <brsynth:score value="50.663"/> + <brsynth:target_ID value="65067"/> + </brsynth:selenzy_P27098> + <brsynth:selenzy_P46057> + <brsynth:score value="50.618"/> + <brsynth:target_ID value="5554"/> + </brsynth:selenzy_P46057> + <brsynth:selenzy_P74836> + <brsynth:score value="50.478"/> + <brsynth:target_ID value="121428"/> + </brsynth:selenzy_P74836> + <brsynth:selenzy_Q400K4> + <brsynth:score value="50.441"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_Q400K4> + <brsynth:selenzy_Q9F9U5> + <brsynth:score value="50.441"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_Q9F9U5> + <brsynth:selenzy_P15109> + <brsynth:score value="50.369"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_P15109> + <brsynth:selenzy_P15110> + <brsynth:score value="50.369"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_P15110> + <brsynth:selenzy_C1I201> + <brsynth:score value="50.108"/> + <brsynth:target_ID value="165468"/> + </brsynth:selenzy_C1I201> + <brsynth:selenzy_Q8KTD6> + <brsynth:score value="50.075"/> + <brsynth:target_ID value="106590"/> + </brsynth:selenzy_Q8KTD6> + <brsynth:selenzy_B5XQI9> + <brsynth:score value="49.685"/> + <brsynth:target_ID value="507522"/> + </brsynth:selenzy_B5XQI9> + <brsynth:selenzy_Q3Z585> + <brsynth:score value="49.685"/> + <brsynth:target_ID value="300269"/> + </brsynth:selenzy_Q3Z585> + <brsynth:selenzy_P17295> + <brsynth:score value="49.641"/> + <brsynth:target_ID value="106590"/> + </brsynth:selenzy_P17295> + <brsynth:selenzy_Q9S157> + <brsynth:score value="49.641"/> + <brsynth:target_ID value="285"/> + </brsynth:selenzy_Q9S157> + <brsynth:selenzy_A1K6Y7> + <brsynth:score value="49.441"/> + <brsynth:target_ID value="62928"/> + </brsynth:selenzy_A1K6Y7> + <brsynth:selenzy_C1DRI2> + <brsynth:score value="49.441"/> + <brsynth:target_ID value="322710"/> + </brsynth:selenzy_C1DRI2> + <brsynth:selenzy_P08695> + <brsynth:score value="49.189"/> + <brsynth:target_ID value="330"/> + </brsynth:selenzy_P08695> + <brsynth:selenzy_P11122> + <brsynth:score value="49.189"/> + <brsynth:target_ID value="13689"/> + </brsynth:selenzy_P11122> + <brsynth:selenzy_Q51939> + <brsynth:score value="49.17"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q51939> + <brsynth:selenzy_Q51940> + <brsynth:score value="49.17"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q51940> + <brsynth:selenzy_Q51942> + <brsynth:score value="49.17"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q51942> + <brsynth:selenzy_Q51943> + <brsynth:score value="49.17"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q51943> + <brsynth:selenzy_Q6QHB9> + <brsynth:score value="49.17"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q6QHB9> + <brsynth:selenzy_Q6QHC2> + <brsynth:score value="49.17"/> + <brsynth:target_ID value="329"/> + </brsynth:selenzy_Q6QHC2> + <brsynth:selenzy_Q471I0> + <brsynth:score value="49.075"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_Q471I0> + <brsynth:selenzy_Q76CA9> + <brsynth:score value="48.919"/> + <brsynth:target_ID value="170622"/> + </brsynth:selenzy_Q76CA9> + <brsynth:selenzy_C4TP01> + <brsynth:score value="48.795"/> + <brsynth:target_ID value="649508"/> + </brsynth:selenzy_C4TP01> + <brsynth:selenzy_A6TAC9> + <brsynth:score value="48.685"/> + <brsynth:target_ID value="272620"/> + </brsynth:selenzy_A6TAC9> + <brsynth:selenzy_I6X9J4> + <brsynth:score value="48.503"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_I6X9J4> + <brsynth:selenzy_A7IDU0> + <brsynth:score value="48.441"/> + <brsynth:target_ID value="78245"/> + </brsynth:selenzy_A7IDU0> + <brsynth:selenzy_B2JQV7> + <brsynth:score value="48.441"/> + <brsynth:target_ID value="391038"/> + </brsynth:selenzy_B2JQV7> + <brsynth:selenzy_Q13QH9> + <brsynth:score value="48.441"/> + <brsynth:target_ID value="266265"/> + </brsynth:selenzy_Q13QH9> + <brsynth:selenzy_Q476N0> + <brsynth:score value="48.441"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_Q476N0> + <brsynth:selenzy_Q47GC9> + <brsynth:score value="48.441"/> + <brsynth:target_ID value="159087"/> + </brsynth:selenzy_Q47GC9> + <brsynth:selenzy_Q47HM4> + <brsynth:score value="48.441"/> + <brsynth:target_ID value="159087"/> + </brsynth:selenzy_Q47HM4> + <brsynth:selenzy_P47228> + <brsynth:score value="48.389"/> + <brsynth:target_ID value="266265"/> + </brsynth:selenzy_P47228> + <brsynth:selenzy_Q88FY1> + <brsynth:score value="48.225"/> + <brsynth:target_ID value="160488"/> + </brsynth:selenzy_Q88FY1> + <brsynth:selenzy_Q8G9L3> + <brsynth:score value="48.204"/> + <brsynth:target_ID value="37919"/> + </brsynth:selenzy_Q8G9L3> + <brsynth:selenzy_Q6Q272> + <brsynth:score value="47.803"/> + <brsynth:target_ID value="470"/> + </brsynth:selenzy_Q6Q272> + <brsynth:selenzy_Q9ZBB0> + <brsynth:score value="47.745"/> + <brsynth:target_ID value="46429"/> + </brsynth:selenzy_Q9ZBB0> + <brsynth:selenzy_Q93PS1> + <brsynth:score value="47.714"/> + <brsynth:target_ID value="65786"/> + </brsynth:selenzy_Q93PS1> + <brsynth:selenzy_Q93PS2> + <brsynth:score value="47.714"/> + <brsynth:target_ID value="65786"/> + </brsynth:selenzy_Q93PS2> + <brsynth:selenzy_A4JPY0> + <brsynth:score value="47.441"/> + <brsynth:target_ID value="269482"/> + </brsynth:selenzy_A4JPY0> + <brsynth:selenzy_Q93TJ5> + <brsynth:score value="47.066"/> + <brsynth:target_ID value="294"/> + </brsynth:selenzy_Q93TJ5> + <brsynth:selenzy_B3A0L4> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="100756"/> + </brsynth:selenzy_B3A0L4> + <brsynth:selenzy_B3EWG2> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="182864"/> + </brsynth:selenzy_B3EWG2> + <brsynth:selenzy_B3EWI3> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="182818"/> + </brsynth:selenzy_B3EWI3> + <brsynth:selenzy_C0HJB2> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="40472"/> + </brsynth:selenzy_C0HJB2> + <brsynth:selenzy_D0VWU3> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="259368"/> + </brsynth:selenzy_D0VWU3> + <brsynth:selenzy_O59896> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="5643"/> + </brsynth:selenzy_O59896> + <brsynth:selenzy_P56193> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="107832"/> + </brsynth:selenzy_P56193> + <brsynth:selenzy_P85149> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="90312"/> + </brsynth:selenzy_P85149> + <brsynth:selenzy_P85308> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="90312"/> + </brsynth:selenzy_P85308> + <brsynth:selenzy_P85430> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="90312"/> + </brsynth:selenzy_P85430> + <brsynth:selenzy_P86327> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="90312"/> + </brsynth:selenzy_P86327> + <brsynth:selenzy_P86328> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="90312"/> + </brsynth:selenzy_P86328> + <brsynth:selenzy_P86351> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="671179"/> + </brsynth:selenzy_P86351> + <brsynth:selenzy_Q01679> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="5308"/> + </brsynth:selenzy_Q01679> + <brsynth:selenzy_Q02081> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="107832"/> + </brsynth:selenzy_Q02081> + <brsynth:selenzy_Q02497> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="5327"/> + </brsynth:selenzy_Q02497> + <brsynth:selenzy_Q12541> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="5341"/> + </brsynth:selenzy_Q12541> + <brsynth:selenzy_Q12542> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="5341"/> + </brsynth:selenzy_Q12542> + <brsynth:selenzy_Q12718> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="5325"/> + </brsynth:selenzy_Q12718> + <brsynth:selenzy_Q12739> + <brsynth:score value="47.03"/> + <brsynth:target_ID value="5322"/> + </brsynth:selenzy_Q12739> + <brsynth:selenzy_Q02075> + <brsynth:score value="46.93"/> + <brsynth:target_ID value="107832"/> + </brsynth:selenzy_Q02075> + <brsynth:selenzy_Q02079> + <brsynth:score value="46.93"/> + <brsynth:target_ID value="107832"/> + </brsynth:selenzy_Q02079> + <brsynth:selenzy_Q12717> + <brsynth:score value="46.93"/> + <brsynth:target_ID value="5325"/> + </brsynth:selenzy_Q12717> + <brsynth:selenzy_Q12729> + <brsynth:score value="46.93"/> + <brsynth:target_ID value="5322"/> + </brsynth:selenzy_Q12729> + <brsynth:selenzy_D7F5L6> + <brsynth:score value="46.912"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_D7F5L6> + <brsynth:selenzy_D7F5L7> + <brsynth:score value="46.912"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_D7F5L7> + <brsynth:selenzy_Q12719> + <brsynth:score value="46.83"/> + <brsynth:target_ID value="5325"/> + </brsynth:selenzy_Q12719> + <brsynth:selenzy_Q99044> + <brsynth:score value="46.83"/> + <brsynth:target_ID value="47662"/> + </brsynth:selenzy_Q99044> + <brsynth:selenzy_Q99046> + <brsynth:score value="46.83"/> + <brsynth:target_ID value="47662"/> + </brsynth:selenzy_Q99046> + <brsynth:selenzy_Q99049> + <brsynth:score value="46.83"/> + <brsynth:target_ID value="47662"/> + </brsynth:selenzy_Q99049> + <brsynth:selenzy_Q99055> + <brsynth:score value="46.83"/> + <brsynth:target_ID value="47662"/> + </brsynth:selenzy_Q99055> + <brsynth:selenzy_Q99056> + <brsynth:score value="46.83"/> + <brsynth:target_ID value="47662"/> + </brsynth:selenzy_Q99056> + <brsynth:selenzy_P22635> + <brsynth:score value="46.798"/> + <brsynth:target_ID value="13689"/> + </brsynth:selenzy_P22635> + <brsynth:selenzy_P22636> + <brsynth:score value="46.798"/> + <brsynth:target_ID value="13689"/> + </brsynth:selenzy_P22636> + <brsynth:selenzy_B7T912> + <brsynth:score value="46.766"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_B7T912> + <brsynth:selenzy_Q8GNT2> + <brsynth:score value="46.76"/> + <brsynth:target_ID value="40214"/> + </brsynth:selenzy_Q8GNT2> + <brsynth:selenzy_Q8VSV8> + <brsynth:score value="46.686"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q8VSV8> + <brsynth:selenzy_Q9ANX0> + <brsynth:score value="46.686"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q9ANX0> + <brsynth:selenzy_Q9ANX1> + <brsynth:score value="46.686"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q9ANX1> + <brsynth:selenzy_Q9ANX3> + <brsynth:score value="46.686"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q9ANX3> + <brsynth:selenzy_Q9ANX4> + <brsynth:score value="46.686"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q9ANX4> + <brsynth:selenzy_Q9KH19> + <brsynth:score value="46.641"/> + <brsynth:target_ID value="1831"/> + </brsynth:selenzy_Q9KH19> + <brsynth:selenzy_Q88JX5> + <brsynth:score value="46.611"/> + <brsynth:target_ID value="160488"/> + </brsynth:selenzy_Q88JX5> + <brsynth:selenzy_O06646> + <brsynth:score value="46.603"/> + <brsynth:target_ID value="46680"/> + </brsynth:selenzy_O06646> + <brsynth:selenzy_Q6EMI9> + <brsynth:score value="46.533"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_Q6EMI9> + <brsynth:selenzy_Q7WYU8> + <brsynth:score value="46.498"/> + <brsynth:target_ID value="13689"/> + </brsynth:selenzy_Q7WYU8> + <brsynth:selenzy_A1UJP3> + <brsynth:score value="46.441"/> + <brsynth:target_ID value="189918"/> + </brsynth:selenzy_A1UJP3> + <brsynth:selenzy_A3Q338> + <brsynth:score value="46.441"/> + <brsynth:target_ID value="164757"/> + </brsynth:selenzy_A3Q338> + <brsynth:selenzy_O05146> + <brsynth:score value="46.441"/> + <brsynth:target_ID value="33008"/> + </brsynth:selenzy_O05146> + <brsynth:selenzy_Q1B5E3> + <brsynth:score value="46.441"/> + <brsynth:target_ID value="164756"/> + </brsynth:selenzy_Q1B5E3> + <brsynth:selenzy_Q762H5> + <brsynth:score value="46.441"/> + <brsynth:target_ID value="1829"/> + </brsynth:selenzy_Q762H5> + <brsynth:selenzy_A5IBD8> + <brsynth:score value="46.433"/> + <brsynth:target_ID value="400673"/> + </brsynth:selenzy_A5IBD8> + <brsynth:selenzy_Q1I500> + <brsynth:score value="46.433"/> + <brsynth:target_ID value="384676"/> + </brsynth:selenzy_Q1I500> + <brsynth:selenzy_Q3BYE8> + <brsynth:score value="46.433"/> + <brsynth:target_ID value="316273"/> + </brsynth:selenzy_Q3BYE8> + <brsynth:selenzy_Q5WX50> + <brsynth:score value="46.433"/> + <brsynth:target_ID value="297245"/> + </brsynth:selenzy_Q5WX50> + <brsynth:selenzy_Q5X5S2> + <brsynth:score value="46.433"/> + <brsynth:target_ID value="297246"/> + </brsynth:selenzy_Q5X5S2> + <brsynth:selenzy_Q0QFQ2> + <brsynth:score value="46.391"/> + <brsynth:target_ID value="43263"/> + </brsynth:selenzy_Q0QFQ2> + <brsynth:selenzy_Q9S3U6> + <brsynth:score value="46.391"/> + <brsynth:target_ID value="43263"/> + </brsynth:selenzy_Q9S3U6> + <brsynth:selenzy_P47232> + <brsynth:score value="46.389"/> + <brsynth:target_ID value="33008"/> + </brsynth:selenzy_P47232> + <brsynth:selenzy_A5JTM8> + <brsynth:score value="46.387"/> + <brsynth:target_ID value="72586"/> + </brsynth:selenzy_A5JTM8> + <brsynth:selenzy_Q03298> + <brsynth:score value="46.387"/> + <brsynth:target_ID value="62977"/> + </brsynth:selenzy_Q03298> + <brsynth:selenzy_Q8GI18> + <brsynth:score value="46.333"/> + <brsynth:target_ID value="53412"/> + </brsynth:selenzy_Q8GI18> + <brsynth:selenzy_Q8GI19> + <brsynth:score value="46.333"/> + <brsynth:target_ID value="53412"/> + </brsynth:selenzy_Q8GI19> + <brsynth:selenzy_Q5NTE5> + <brsynth:score value="46.311"/> + <brsynth:target_ID value="13689"/> + </brsynth:selenzy_Q5NTE5> + <brsynth:selenzy_P47231> + <brsynth:score value="46.189"/> + <brsynth:target_ID value="33008"/> + </brsynth:selenzy_P47231> + <brsynth:selenzy_P47233> + <brsynth:score value="46.189"/> + <brsynth:target_ID value="33008"/> + </brsynth:selenzy_P47233> + <brsynth:selenzy_Q8RNX9> + <brsynth:score value="45.936"/> + <brsynth:target_ID value="285"/> + </brsynth:selenzy_Q8RNX9> + <brsynth:selenzy_Q8RNY0> + <brsynth:score value="45.936"/> + <brsynth:target_ID value="285"/> + </brsynth:selenzy_Q8RNY0> + <brsynth:selenzy_P00436> + <brsynth:score value="45.833"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P00436> + <brsynth:selenzy_P00437> + <brsynth:score value="45.833"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_P00437> + <brsynth:selenzy_Q8KN28> + <brsynth:score value="45.802"/> + <brsynth:target_ID value="80866"/> + </brsynth:selenzy_Q8KN28> + <brsynth:selenzy_O86041> + <brsynth:score value="45.691"/> + <brsynth:target_ID value="54061"/> + </brsynth:selenzy_O86041> + <brsynth:selenzy_P00438> + <brsynth:score value="45.687"/> + <brsynth:target_ID value="294"/> + </brsynth:selenzy_P00438> + <brsynth:selenzy_Q88E47> + <brsynth:score value="45.633"/> + <brsynth:target_ID value="160488"/> + </brsynth:selenzy_Q88E47> + <brsynth:selenzy_A0PL52> + <brsynth:score value="45.441"/> + <brsynth:target_ID value="362242"/> + </brsynth:selenzy_A0PL52> + <brsynth:selenzy_A0R1T3> + <brsynth:score value="45.441"/> + <brsynth:target_ID value="246196"/> + </brsynth:selenzy_A0R1T3> + <brsynth:selenzy_A1TCX1> + <brsynth:score value="45.441"/> + <brsynth:target_ID value="350058"/> + </brsynth:selenzy_A1TCX1> + <brsynth:selenzy_A4T8B7> + <brsynth:score value="45.441"/> + <brsynth:target_ID value="350054"/> + </brsynth:selenzy_A4T8B7> + <brsynth:selenzy_Q0SJD2> + <brsynth:score value="45.441"/> + <brsynth:target_ID value="101510"/> + </brsynth:selenzy_Q0SJD2> + <brsynth:selenzy_A5W8Z1> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="351746"/> + </brsynth:selenzy_A5W8Z1> + <brsynth:selenzy_A6V6F5> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="381754"/> + </brsynth:selenzy_A6V6F5> + <brsynth:selenzy_B0KGU6> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="76869"/> + </brsynth:selenzy_B0KGU6> + <brsynth:selenzy_B0T816> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="366602"/> + </brsynth:selenzy_B0T816> + <brsynth:selenzy_B1J390> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="390235"/> + </brsynth:selenzy_B1J390> + <brsynth:selenzy_B2SM18> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="360094"/> + </brsynth:selenzy_B2SM18> + <brsynth:selenzy_B7VA96> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="557722"/> + </brsynth:selenzy_B7VA96> + <brsynth:selenzy_Q02LF6> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="208963"/> + </brsynth:selenzy_Q02LF6> + <brsynth:selenzy_Q2NYM7> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="342109"/> + </brsynth:selenzy_Q2NYM7> + <brsynth:selenzy_Q3KHV3> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="205922"/> + </brsynth:selenzy_Q3KHV3> + <brsynth:selenzy_Q4KI35> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="220664"/> + </brsynth:selenzy_Q4KI35> + <brsynth:selenzy_Q4UZI9> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="314565"/> + </brsynth:selenzy_Q4UZI9> + <brsynth:selenzy_Q5GVE9> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="291331"/> + </brsynth:selenzy_Q5GVE9> + <brsynth:selenzy_Q8PDA2> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="190485"/> + </brsynth:selenzy_Q8PDA2> + <brsynth:selenzy_Q9S4T0> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="272624"/> + </brsynth:selenzy_Q9S4T0> + <brsynth:selenzy_Q9X4G0> + <brsynth:score value="45.433"/> + <brsynth:target_ID value="208964"/> + </brsynth:selenzy_Q9X4G0> + <brsynth:selenzy_Q9R9T1> + <brsynth:score value="45.387"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_Q9R9T1> + <brsynth:selenzy_B1N1A2> + <brsynth:score value="45.34"/> + <brsynth:target_ID value="303"/> + </brsynth:selenzy_B1N1A2> + <brsynth:selenzy_Q0S034> + <brsynth:score value="45.189"/> + <brsynth:target_ID value="101510"/> + </brsynth:selenzy_Q0S034> + <brsynth:selenzy_Q51592> + <brsynth:score value="45.163"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q51592> + <brsynth:selenzy_Q51593> + <brsynth:score value="45.163"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_Q51593> + <brsynth:selenzy_Q12570> + <brsynth:score value="44.93"/> + <brsynth:target_ID value="40559"/> + </brsynth:selenzy_Q12570> + <brsynth:selenzy_Q96WM9> + <brsynth:score value="44.93"/> + <brsynth:target_ID value="40559"/> + </brsynth:selenzy_Q96WM9> + <brsynth:selenzy_Q53692> + <brsynth:score value="44.876"/> + <brsynth:target_ID value="1890"/> + </brsynth:selenzy_Q53692> + <brsynth:selenzy_Q96UM2> + <brsynth:score value="44.83"/> + <brsynth:target_ID value="40559"/> + </brsynth:selenzy_Q96UM2> + <brsynth:selenzy_O06647> + <brsynth:score value="44.823"/> + <brsynth:target_ID value="46680"/> + </brsynth:selenzy_O06647> + <brsynth:selenzy_P20586> + <brsynth:score value="44.687"/> + <brsynth:target_ID value="208964"/> + </brsynth:selenzy_P20586> + <brsynth:selenzy_Q9S158> + <brsynth:score value="44.685"/> + <brsynth:target_ID value="285"/> + </brsynth:selenzy_Q9S158> + <brsynth:selenzy_Q8KTD8> + <brsynth:score value="44.617"/> + <brsynth:target_ID value="106590"/> + </brsynth:selenzy_Q8KTD8> + <brsynth:selenzy_P54989> + <brsynth:score value="44.585"/> + <brsynth:target_ID value="83263"/> + </brsynth:selenzy_P54989> + <brsynth:selenzy_P54990> + <brsynth:score value="44.585"/> + <brsynth:target_ID value="83263"/> + </brsynth:selenzy_P54990> + <brsynth:selenzy_D3WZ86> + <brsynth:score value="44.444"/> + <brsynth:target_ID value="376"/> + </brsynth:selenzy_D3WZ86> + <brsynth:selenzy_A9I714> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="340100"/> + </brsynth:selenzy_A9I714> + <brsynth:selenzy_B2UJ73> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="402626"/> + </brsynth:selenzy_B2UJ73> + <brsynth:selenzy_B3QB98> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="395960"/> + </brsynth:selenzy_B3QB98> + <brsynth:selenzy_Q07T66> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="316055"/> + </brsynth:selenzy_Q07T66> + <brsynth:selenzy_Q0K0L8> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="381666"/> + </brsynth:selenzy_Q0K0L8> + <brsynth:selenzy_Q13CD3> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="316057"/> + </brsynth:selenzy_Q13CD3> + <brsynth:selenzy_Q1QPR8> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="323097"/> + </brsynth:selenzy_Q1QPR8> + <brsynth:selenzy_Q21AX5> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="316056"/> + </brsynth:selenzy_Q21AX5> + <brsynth:selenzy_Q2J1P2> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="316058"/> + </brsynth:selenzy_Q2J1P2> + <brsynth:selenzy_Q2KYC8> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="360910"/> + </brsynth:selenzy_Q2KYC8> + <brsynth:selenzy_Q39J54> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="482957"/> + </brsynth:selenzy_Q39J54> + <brsynth:selenzy_Q46UA4> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_Q46UA4> + <brsynth:selenzy_Q6N0T9> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="258594"/> + </brsynth:selenzy_Q6N0T9> + <brsynth:selenzy_Q7VUG2> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="257313"/> + </brsynth:selenzy_Q7VUG2> + <brsynth:selenzy_Q7W189> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="257311"/> + </brsynth:selenzy_Q7W189> + <brsynth:selenzy_Q7WNZ3> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="257310"/> + </brsynth:selenzy_Q7WNZ3> + <brsynth:selenzy_Q87Z79> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="223283"/> + </brsynth:selenzy_Q87Z79> + <brsynth:selenzy_Q89XH1> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="224911"/> + </brsynth:selenzy_Q89XH1> + <brsynth:selenzy_Q8PQ74> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="190486"/> + </brsynth:selenzy_Q8PQ74> + <brsynth:selenzy_Q8XRZ0> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="267608"/> + </brsynth:selenzy_Q8XRZ0> + <brsynth:selenzy_Q983J4> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="266835"/> + </brsynth:selenzy_Q983J4> + <brsynth:selenzy_Q9A5B8> + <brsynth:score value="44.433"/> + <brsynth:target_ID value="190650"/> + </brsynth:selenzy_Q9A5B8> + <brsynth:selenzy_F8G0M4> + <brsynth:score value="44.34"/> + <brsynth:target_ID value="1042876"/> + </brsynth:selenzy_F8G0M4> + <brsynth:selenzy_O87009> + <brsynth:score value="44.21"/> + <brsynth:target_ID value="292"/> + </brsynth:selenzy_O87009> + <brsynth:selenzy_Q2PWU9> + <brsynth:score value="44.078"/> + <brsynth:target_ID value="233098"/> + </brsynth:selenzy_Q2PWU9> + <brsynth:selenzy_F8FZQ5> + <brsynth:score value="44.04"/> + <brsynth:target_ID value="1042876"/> + </brsynth:selenzy_F8FZQ5> + <brsynth:selenzy_Q70KY3> + <brsynth:score value="44.03"/> + <brsynth:target_ID value="204285"/> + </brsynth:selenzy_Q70KY3> + <brsynth:selenzy_Q9FAE3> + <brsynth:score value="43.979"/> + <brsynth:target_ID value="285"/> + </brsynth:selenzy_Q9FAE3> + <brsynth:selenzy_P17489> + <brsynth:score value="43.93"/> + <brsynth:target_ID value="227321"/> + </brsynth:selenzy_P17489> + <brsynth:selenzy_P78722> + <brsynth:score value="43.93"/> + <brsynth:target_ID value="5145"/> + </brsynth:selenzy_P78722> + <brsynth:selenzy_Q471I2> + <brsynth:score value="43.917"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_Q471I2> + <brsynth:selenzy_Q54354> + <brsynth:score value="43.733"/> + <brsynth:target_ID value="1915"/> + </brsynth:selenzy_Q54354> + <brsynth:selenzy_Q13QI0> + <brsynth:score value="43.685"/> + <brsynth:target_ID value="266265"/> + </brsynth:selenzy_Q13QI0> + <brsynth:selenzy_Q476N1> + <brsynth:score value="43.685"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_Q476N1> + <brsynth:selenzy_Q4L1M7> + <brsynth:score value="43.603"/> + <brsynth:target_ID value="278858"/> + </brsynth:selenzy_Q4L1M7> + <brsynth:selenzy_P33180> + <brsynth:score value="43.538"/> + <brsynth:target_ID value="382"/> + </brsynth:selenzy_P33180> + <brsynth:selenzy_Q9X4F5> + <brsynth:score value="43.533"/> + <brsynth:target_ID value="266834"/> + </brsynth:selenzy_Q9X4F5> + <brsynth:selenzy_P27138> + <brsynth:score value="43.514"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_P27138> + <brsynth:selenzy_Q742Z0> + <brsynth:score value="43.441"/> + <brsynth:target_ID value="262316"/> + </brsynth:selenzy_Q742Z0> + <brsynth:selenzy_A0K4Z6> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="331272"/> + </brsynth:selenzy_A0K4Z6> + <brsynth:selenzy_A1V1U3> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="320388"/> + </brsynth:selenzy_A1V1U3> + <brsynth:selenzy_A2S9M1> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="412022"/> + </brsynth:selenzy_A2S9M1> + <brsynth:selenzy_A3MMH2> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="320389"/> + </brsynth:selenzy_A3MMH2> + <brsynth:selenzy_A3NYN0> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="357348"/> + </brsynth:selenzy_A3NYN0> + <brsynth:selenzy_A4JBW6> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="269482"/> + </brsynth:selenzy_A4JBW6> + <brsynth:selenzy_A6UDD3> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="366394"/> + </brsynth:selenzy_A6UDD3> + <brsynth:selenzy_A9AFM6> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="395019"/> + </brsynth:selenzy_A9AFM6> + <brsynth:selenzy_B1JWJ3> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="406425"/> + </brsynth:selenzy_B1JWJ3> + <brsynth:selenzy_B1YTZ1> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="398577"/> + </brsynth:selenzy_B1YTZ1> + <brsynth:selenzy_B3PWZ9> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="491916"/> + </brsynth:selenzy_B3PWZ9> + <brsynth:selenzy_B4ECX5> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="216591"/> + </brsynth:selenzy_B4ECX5> + <brsynth:selenzy_B8H072> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="565050"/> + </brsynth:selenzy_B8H072> + <brsynth:selenzy_Q0BHW3> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="339670"/> + </brsynth:selenzy_Q0BHW3> + <brsynth:selenzy_Q1BYQ6> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="331271"/> + </brsynth:selenzy_Q1BYQ6> + <brsynth:selenzy_Q2K9E5> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="347834"/> + </brsynth:selenzy_Q2K9E5> + <brsynth:selenzy_Q2SYQ6> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="271848"/> + </brsynth:selenzy_Q2SYQ6> + <brsynth:selenzy_Q3JPA3> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="320372"/> + </brsynth:selenzy_Q3JPA3> + <brsynth:selenzy_Q48GS7> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="264730"/> + </brsynth:selenzy_Q48GS7> + <brsynth:selenzy_Q4ZR64> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="205918"/> + </brsynth:selenzy_Q4ZR64> + <brsynth:selenzy_Q62I34> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="243160"/> + </brsynth:selenzy_Q62I34> + <brsynth:selenzy_Q63RD3> + <brsynth:score value="43.433"/> + <brsynth:target_ID value="272560"/> + </brsynth:selenzy_Q63RD3> + <brsynth:selenzy_Q46M62> + <brsynth:score value="43.414"/> + <brsynth:target_ID value="264198"/> + </brsynth:selenzy_Q46M62> + <brsynth:selenzy_P06811> + <brsynth:score value="43.03"/> + <brsynth:target_ID value="367110"/> + </brsynth:selenzy_P06811> + <brsynth:selenzy_Q03966> + <brsynth:score value="42.83"/> + <brsynth:target_ID value="5116"/> + </brsynth:selenzy_Q03966> + <brsynth:selenzy_A4IT51> + <brsynth:score value="42.803"/> + <brsynth:target_ID value="420246"/> + </brsynth:selenzy_A4IT51> + <brsynth:selenzy_Q5SJP8> + <brsynth:score value="42.803"/> + <brsynth:target_ID value="300852"/> + </brsynth:selenzy_Q5SJP8> + <brsynth:selenzy_A0KE38> + <brsynth:score value="42.685"/> + <brsynth:target_ID value="331272"/> + </brsynth:selenzy_A0KE38> + <brsynth:selenzy_A4JPY1> + <brsynth:score value="42.685"/> + <brsynth:target_ID value="269482"/> + </brsynth:selenzy_A4JPY1> + <brsynth:selenzy_A4JQH4> + <brsynth:score value="42.685"/> + <brsynth:target_ID value="269482"/> + </brsynth:selenzy_A4JQH4> + <brsynth:selenzy_Q1BGA7> + <brsynth:score value="42.685"/> + <brsynth:target_ID value="331271"/> + </brsynth:selenzy_Q1BGA7> + <brsynth:selenzy_Q5H782> + <brsynth:score value="42.583"/> + <brsynth:target_ID value="1890"/> + </brsynth:selenzy_Q5H782> + <brsynth:selenzy_Q54QI4> + <brsynth:score value="42.533"/> + <brsynth:target_ID value="44689"/> + </brsynth:selenzy_Q54QI4> + <brsynth:selenzy_B5ZZA8> + <brsynth:score value="42.433"/> + <brsynth:target_ID value="395492"/> + </brsynth:selenzy_B5ZZA8> + <brsynth:selenzy_B9JHZ9> + <brsynth:score value="42.433"/> + <brsynth:target_ID value="311403"/> + </brsynth:selenzy_B9JHZ9> + <brsynth:selenzy_C3M930> + <brsynth:score value="42.433"/> + <brsynth:target_ID value="394"/> + </brsynth:selenzy_C3M930> + <brsynth:selenzy_Q1D8L9> + <brsynth:score value="42.433"/> + <brsynth:target_ID value="246197"/> + </brsynth:selenzy_Q1D8L9> + <brsynth:selenzy_Q1MI52> + <brsynth:score value="42.433"/> + <brsynth:target_ID value="216596"/> + </brsynth:selenzy_Q1MI52> + <brsynth:selenzy_Q7X284> + <brsynth:score value="42.391"/> + <brsynth:target_ID value="235278"/> + </brsynth:selenzy_Q7X284> + <brsynth:selenzy_Q8GR45> + <brsynth:score value="42.389"/> + <brsynth:target_ID value="209076"/> + </brsynth:selenzy_Q8GR45> + <brsynth:selenzy_P21795> + <brsynth:score value="41.985"/> + <brsynth:target_ID value="1772"/> + </brsynth:selenzy_P21795> + <brsynth:selenzy_O33655> + <brsynth:score value="41.785"/> + <brsynth:target_ID value="1346"/> + </brsynth:selenzy_O33655> + <brsynth:selenzy_P06845> + <brsynth:score value="41.738"/> + <brsynth:target_ID value="1907"/> + </brsynth:selenzy_P06845> + <brsynth:selenzy_Q330M9> + <brsynth:score value="41.691"/> + <brsynth:target_ID value="2253"/> + </brsynth:selenzy_Q330M9> + <brsynth:selenzy_A1UJP4> + <brsynth:score value="41.685"/> + <brsynth:target_ID value="189918"/> + </brsynth:selenzy_A1UJP4> + <brsynth:selenzy_A3Q339> + <brsynth:score value="41.685"/> + <brsynth:target_ID value="164757"/> + </brsynth:selenzy_A3Q339> + <brsynth:selenzy_Q1B5E2> + <brsynth:score value="41.685"/> + <brsynth:target_ID value="164756"/> + </brsynth:selenzy_Q1B5E2> + <brsynth:selenzy_Q6F4M8> + <brsynth:score value="41.653"/> + <brsynth:target_ID value="37919"/> + </brsynth:selenzy_Q6F4M8> + <brsynth:selenzy_Q6F4M9> + <brsynth:score value="41.653"/> + <brsynth:target_ID value="37919"/> + </brsynth:selenzy_Q6F4M9> + <brsynth:selenzy_Q8RQP9> + <brsynth:score value="41.653"/> + <brsynth:target_ID value="1831"/> + </brsynth:selenzy_Q8RQP9> + <brsynth:selenzy_Q8RQQ0> + <brsynth:score value="41.653"/> + <brsynth:target_ID value="1831"/> + </brsynth:selenzy_Q8RQQ0> + <brsynth:selenzy_P07524> + <brsynth:score value="41.538"/> + <brsynth:target_ID value="1890"/> + </brsynth:selenzy_P07524> + <brsynth:selenzy_P55022> + <brsynth:score value="41.538"/> + <brsynth:target_ID value="33898"/> + </brsynth:selenzy_P55022> + <brsynth:selenzy_P55023> + <brsynth:score value="41.538"/> + <brsynth:target_ID value="1915"/> + </brsynth:selenzy_P55023> + <brsynth:selenzy_Q828S5> + <brsynth:score value="41.433"/> + <brsynth:target_ID value="227882"/> + </brsynth:selenzy_Q828S5> + <brsynth:selenzy_A0R1T4> + <brsynth:score value="40.685"/> + <brsynth:target_ID value="246196"/> + </brsynth:selenzy_A0R1T4> + <brsynth:selenzy_A1TCX2> + <brsynth:score value="40.685"/> + <brsynth:target_ID value="350058"/> + </brsynth:selenzy_A1TCX2> + <brsynth:selenzy_A4T8B6> + <brsynth:score value="40.685"/> + <brsynth:target_ID value="350054"/> + </brsynth:selenzy_A4T8B6> + <brsynth:selenzy_C0SPC0> + <brsynth:score value="40.603"/> + <brsynth:target_ID value="224308"/> + </brsynth:selenzy_C0SPC0> + <brsynth:selenzy_Q9S2B5> + <brsynth:score value="40.433"/> + <brsynth:target_ID value="100226"/> + </brsynth:selenzy_Q9S2B5> + <brsynth:selenzy_P15245> + <brsynth:score value="39.894"/> + <brsynth:target_ID value="5554"/> + </brsynth:selenzy_P15245> + <brsynth:selenzy_A0QB57> + <brsynth:score value="39.685"/> + <brsynth:target_ID value="243243"/> + </brsynth:selenzy_A0QB57> + <brsynth:selenzy_Q84J37> + <brsynth:score value="39.03"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q84J37> + <brsynth:selenzy_O80434> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_O80434> + <brsynth:selenzy_O81081> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_O81081> + <brsynth:selenzy_Q1PDH6> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q1PDH6> + <brsynth:selenzy_Q56YT0> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q56YT0> + <brsynth:selenzy_Q6ID18> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q6ID18> + <brsynth:selenzy_Q8VZA1> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q8VZA1> + <brsynth:selenzy_Q9FJD5> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9FJD5> + <brsynth:selenzy_Q9FLB5> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9FLB5> + <brsynth:selenzy_Q9FY79> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9FY79> + <brsynth:selenzy_Q9LFD1> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9LFD1> + <brsynth:selenzy_Q9LFD2> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9LFD2> + <brsynth:selenzy_Q9LMS3> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9LMS3> + <brsynth:selenzy_Q9LYQ2> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9LYQ2> + <brsynth:selenzy_Q9SIY8> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9SIY8> + <brsynth:selenzy_Q9SR40> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9SR40> + <brsynth:selenzy_Q9ZPY2> + <brsynth:score value="38.93"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9ZPY2> + <brsynth:selenzy_Q742Z1> + <brsynth:score value="38.685"/> + <brsynth:target_ID value="262316"/> + </brsynth:selenzy_Q742Z1> + <brsynth:selenzy_B1VTI5> + <brsynth:score value="37.92"/> + <brsynth:target_ID value="455632"/> + </brsynth:selenzy_B1VTI5> + <brsynth:selenzy_B9UJ98> + <brsynth:score value="37.266"/> + <brsynth:target_ID value="5057"/> + </brsynth:selenzy_B9UJ98> + <brsynth:selenzy_Q0DHL2> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q0DHL2> + <brsynth:selenzy_Q0IQU1> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q0IQU1> + <brsynth:selenzy_Q10ND7> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q10ND7> + <brsynth:selenzy_Q2QUN2> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q2QUN2> + <brsynth:selenzy_Q2QZ80> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q2QZ80> + <brsynth:selenzy_Q2R0L0> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q2R0L0> + <brsynth:selenzy_Q2R0L2> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q2R0L2> + <brsynth:selenzy_Q339K6> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q339K6> + <brsynth:selenzy_Q53LU4> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q53LU4> + <brsynth:selenzy_Q5N7A3> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q5N7A3> + <brsynth:selenzy_Q5N7B4> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q5N7B4> + <brsynth:selenzy_Q5N9X2> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q5N9X2> + <brsynth:selenzy_Q8RYM9> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q8RYM9> + <brsynth:selenzy_Q941X2> + <brsynth:score value="36.93"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q941X2> + <brsynth:selenzy_A2XCN6> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39946"/> + </brsynth:selenzy_A2XCN6> + <brsynth:selenzy_A2Y9C2> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39946"/> + </brsynth:selenzy_A2Y9C2> + <brsynth:selenzy_A2Y9C5> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39946"/> + </brsynth:selenzy_A2Y9C5> + <brsynth:selenzy_Q0IP28> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q0IP28> + <brsynth:selenzy_Q0JHP8> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q0JHP8> + <brsynth:selenzy_Q2QYS3> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q2QYS3> + <brsynth:selenzy_Q2RBK2> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q2RBK2> + <brsynth:selenzy_Q5N9W4> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q5N9W4> + <brsynth:selenzy_Q5ZCW1> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q5ZCW1> + <brsynth:selenzy_Q69L99> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q69L99> + <brsynth:selenzy_Q6Z8L2> + <brsynth:score value="36.83"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q6Z8L2> + <brsynth:selenzy_Q0DHL5> + <brsynth:score value="36.63"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q0DHL5> + <brsynth:selenzy_Q7XE50> + <brsynth:score value="36.63"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q7XE50> + <brsynth:selenzy_Q9HDX2> + <brsynth:score value="35.785"/> + <brsynth:target_ID value="284812"/> + </brsynth:selenzy_Q9HDX2> + <brsynth:selenzy_A7BHQ9> + <brsynth:score value="35.738"/> + <brsynth:target_ID value="61267"/> + </brsynth:selenzy_A7BHQ9> + <brsynth:selenzy_C7FF04> + <brsynth:score value="35.738"/> + <brsynth:target_ID value="5341"/> + </brsynth:selenzy_C7FF04> + <brsynth:selenzy_C7FF05> + <brsynth:score value="35.638"/> + <brsynth:target_ID value="5341"/> + </brsynth:selenzy_C7FF05> + <brsynth:selenzy_O42713> + <brsynth:score value="35.638"/> + <brsynth:target_ID value="5341"/> + </brsynth:selenzy_O42713> + <brsynth:selenzy_Q00024> + <brsynth:score value="35.638"/> + <brsynth:target_ID value="5341"/> + </brsynth:selenzy_Q00024> + <brsynth:selenzy_B9UJ99> + <brsynth:score value="34.539"/> + <brsynth:target_ID value="5057"/> + </brsynth:selenzy_B9UJ99> + <brsynth:selenzy_Q9M7C0> + <brsynth:score value="33.898"/> + <brsynth:target_ID value="55501"/> + </brsynth:selenzy_Q9M7C0> + <brsynth:selenzy_Q9Y041> + <brsynth:score value="33.633"/> + <brsynth:target_ID value="6239"/> + </brsynth:selenzy_Q9Y041> + <brsynth:selenzy_Q00667> + <brsynth:score value="33.533"/> + <brsynth:target_ID value="227321"/> + </brsynth:selenzy_Q00667> + <brsynth:selenzy_Q00234> + <brsynth:score value="32.738"/> + <brsynth:target_ID value="510516"/> + </brsynth:selenzy_Q00234> + <brsynth:selenzy_Q92396> + <brsynth:score value="32.638"/> + <brsynth:target_ID value="5145"/> + </brsynth:selenzy_Q92396> + <brsynth:selenzy_Q8J130> + <brsynth:score value="32.538"/> + <brsynth:target_ID value="330879"/> + </brsynth:selenzy_Q8J130> + <brsynth:selenzy_B6F0W8> + <brsynth:score value="32.509"/> + <brsynth:target_ID value="3538"/> + </brsynth:selenzy_B6F0W8> + <brsynth:selenzy_P00440> + <brsynth:score value="31.738"/> + <brsynth:target_ID value="367110"/> + </brsynth:selenzy_P00440> + <brsynth:selenzy_Q70FG7> + <brsynth:score value="31.509"/> + <brsynth:target_ID value="161934"/> + </brsynth:selenzy_Q70FG7> + <brsynth:selenzy_Q7XA48> + <brsynth:score value="31.509"/> + <brsynth:target_ID value="3583"/> + </brsynth:selenzy_Q7XA48> + <brsynth:selenzy_I3PFJ3> + <brsynth:score value="31.409"/> + <brsynth:target_ID value="161934"/> + </brsynth:selenzy_I3PFJ3> + <brsynth:selenzy_I3PFJ9> + <brsynth:score value="31.409"/> + <brsynth:target_ID value="161934"/> + </brsynth:selenzy_I3PFJ9> + <brsynth:selenzy_O22203> + <brsynth:score value="28.588"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_O22203> + <brsynth:selenzy_Q9ZRA2> + <brsynth:score value="28.533"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q9ZRA2> + <brsynth:selenzy_Q94ID0> + <brsynth:score value="28.37"/> + <brsynth:target_ID value="4013"/> + </brsynth:selenzy_Q94ID0> + <brsynth:selenzy_Q42600> + <brsynth:score value="27.874"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q42600> + <brsynth:selenzy_Q7G192> + <brsynth:score value="27.41"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q7G192> + <brsynth:selenzy_Q7G193> + <brsynth:score value="27.41"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q7G193> + <brsynth:selenzy_Q7G9P4> + <brsynth:score value="27.41"/> + <brsynth:target_ID value="3702"/> + </brsynth:selenzy_Q7G9P4> + <brsynth:selenzy_Q5VRH4> + <brsynth:score value="26.533"/> + <brsynth:target_ID value="39947"/> + </brsynth:selenzy_Q5VRH4> + <brsynth:selenzy_B0LAZ9> + <brsynth:score value="26.31"/> + <brsynth:target_ID value="3888"/> + </brsynth:selenzy_B0LAZ9> + <brsynth:selenzy_B0LB00> + <brsynth:score value="26.31"/> + <brsynth:target_ID value="3888"/> + </brsynth:selenzy_B0LB00> + <brsynth:selenzy_B0LB01> + <brsynth:score value="26.31"/> + <brsynth:target_ID value="3888"/> + </brsynth:selenzy_B0LB01> + <brsynth:selenzy_O48958> + <brsynth:score value="26.281"/> + <brsynth:target_ID value="4558"/> + </brsynth:selenzy_O48958> + <brsynth:selenzy_Q9FV24> + <brsynth:score value="25.31"/> + <brsynth:target_ID value="4081"/> + </brsynth:selenzy_Q9FV24> + <brsynth:selenzy_Q9FV25> + <brsynth:score value="25.31"/> + <brsynth:target_ID value="4081"/> + </brsynth:selenzy_Q9FV25> + <brsynth:selenzy_Q04604> + <brsynth:score value="24.638"/> + <brsynth:target_ID value="8409"/> + </brsynth:selenzy_Q04604> + <brsynth:selenzy_Q9XTA0> + <brsynth:score value="24.122"/> + <brsynth:target_ID value="9796"/> + </brsynth:selenzy_Q9XTA0> + <brsynth:selenzy_Q147S1> + <brsynth:score value="23.453"/> + <brsynth:target_ID value="7460"/> + </brsynth:selenzy_Q147S1> + <brsynth:selenzy_Q68CI2> + <brsynth:score value="23.122"/> + <brsynth:target_ID value="9615"/> + </brsynth:selenzy_Q68CI2> + <brsynth:selenzy_P55026> + <brsynth:score value="22.538"/> + <brsynth:target_ID value="13735"/> + </brsynth:selenzy_P55026> + <brsynth:selenzy_P15101> + <brsynth:score value="22.222"/> + <brsynth:target_ID value="9913"/> + </brsynth:selenzy_P15101> + <brsynth:selenzy_P08682> + <brsynth:score value="21.551"/> + <brsynth:target_ID value="9986"/> + </brsynth:selenzy_P08682> + <brsynth:selenzy_P79383> + <brsynth:score value="21.551"/> + <brsynth:target_ID value="9823"/> + </brsynth:selenzy_P79383> + <brsynth:selenzy_Q05754> + <brsynth:score value="21.222"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_Q05754> + <brsynth:selenzy_P54834> + <brsynth:score value="20.638"/> + <brsynth:target_ID value="9615"/> + </brsynth:selenzy_P54834> + <brsynth:selenzy_P55033> + <brsynth:score value="20.638"/> + <brsynth:target_ID value="9685"/> + </brsynth:selenzy_P55033> + <brsynth:selenzy_Q9MZY0> + <brsynth:score value="20.551"/> + <brsynth:target_ID value="9615"/> + </brsynth:selenzy_Q9MZY0> + <brsynth:selenzy_P09172> + <brsynth:score value="20.222"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P09172> + <brsynth:selenzy_Q64237> + <brsynth:score value="20.122"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_Q64237> + <brsynth:selenzy_P21397> + <brsynth:score value="19.852"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P21397> + <brsynth:selenzy_P85046> + <brsynth:score value="19.638"/> + <brsynth:target_ID value="37338"/> + </brsynth:selenzy_P85046> + <brsynth:selenzy_Q8MIU0> + <brsynth:score value="19.638"/> + <brsynth:target_ID value="9913"/> + </brsynth:selenzy_Q8MIU0> + <brsynth:selenzy_O18963> + <brsynth:score value="19.551"/> + <brsynth:target_ID value="9913"/> + </brsynth:selenzy_O18963> + <brsynth:selenzy_Q27451> + <brsynth:score value="18.738"/> + <brsynth:target_ID value="7091"/> + </brsynth:selenzy_Q27451> + <brsynth:selenzy_Q27452> + <brsynth:score value="18.738"/> + <brsynth:target_ID value="7091"/> + </brsynth:selenzy_Q27452> + <brsynth:selenzy_P05182> + <brsynth:score value="18.651"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_P05182> + <brsynth:selenzy_O09173> + <brsynth:score value="18.633"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_O09173> + <brsynth:selenzy_Q93099> + <brsynth:score value="18.633"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_Q93099> + <brsynth:selenzy_P51581> + <brsynth:score value="18.551"/> + <brsynth:target_ID value="10036"/> + </brsynth:selenzy_P51581> + <brsynth:selenzy_Q5RF05> + <brsynth:score value="18.533"/> + <brsynth:target_ID value="9601"/> + </brsynth:selenzy_Q5RF05> + <brsynth:selenzy_P21396> + <brsynth:score value="18.478"/> + <brsynth:target_ID value="10116"/> + </brsynth:selenzy_P21396> + <brsynth:selenzy_C0HJM0> + <brsynth:score value="17.738"/> + <brsynth:target_ID value="128967"/> + </brsynth:selenzy_C0HJM0> + <brsynth:selenzy_O44249> + <brsynth:score value="17.738"/> + <brsynth:target_ID value="7130"/> + </brsynth:selenzy_O44249> + <brsynth:selenzy_P11344> + <brsynth:score value="17.738"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_P11344> + <brsynth:selenzy_P14679> + <brsynth:score value="17.738"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P14679> + <brsynth:selenzy_Q25519> + <brsynth:score value="17.738"/> + <brsynth:target_ID value="7130"/> + </brsynth:selenzy_Q25519> + <brsynth:selenzy_P05181> + <brsynth:score value="17.651"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P05181> + <brsynth:selenzy_P33266> + <brsynth:score value="17.551"/> + <brsynth:target_ID value="9541"/> + </brsynth:selenzy_P33266> + <brsynth:selenzy_Q05421> + <brsynth:score value="17.551"/> + <brsynth:target_ID value="10090"/> + </brsynth:selenzy_Q05421> + <brsynth:selenzy_Q6GUQ4> + <brsynth:score value="17.551"/> + <brsynth:target_ID value="9544"/> + </brsynth:selenzy_Q6GUQ4> + <brsynth:selenzy_P35354> + <brsynth:score value="17.509"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_P35354> + <brsynth:selenzy_Q06278> + <brsynth:score value="17.41"/> + <brsynth:target_ID value="9606"/> + </brsynth:selenzy_Q06278> + <brsynth:selenzy_Q86B61> + <brsynth:score value="16.553"/> + <brsynth:target_ID value="7227"/> + </brsynth:selenzy_Q86B61> + <brsynth:selenzy_Q9BDE0> + <brsynth:score value="16.538"/> + <brsynth:target_ID value="9595"/> + </brsynth:selenzy_Q9BDE0> + <brsynth:selenzy_P55024> + <brsynth:score value="15.638"/> + <brsynth:target_ID value="9031"/> + </brsynth:selenzy_P55024> + <brsynth:selenzy_Q9VKJ0> + <brsynth:score value="15.633"/> + <brsynth:target_ID value="7227"/> + </brsynth:selenzy_Q9VKJ0> + <brsynth:selenzy_Q08410> + <brsynth:score value="15.538"/> + <brsynth:target_ID value="93934"/> + </brsynth:selenzy_Q08410> + <brsynth:selenzy_Q9V521> + <brsynth:score value="14.738"/> + <brsynth:target_ID value="7227"/> + </brsynth:selenzy_Q9V521> + <brsynth:selenzy_Q9W1V6> + <brsynth:score value="14.738"/> + <brsynth:target_ID value="7227"/> + </brsynth:selenzy_Q9W1V6> + <brsynth:selenzy_P55025> + <brsynth:score value="14.638"/> + <brsynth:target_ID value="8090"/> + </brsynth:selenzy_P55025> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + <listOfReactants> + <speciesReference species="CMPD_0000000003" stoichiometry="1" constant="true"/> + <speciesReference species="MNXM4" stoichiometry="1" constant="true"/> + </listOfReactants> + <listOfProducts> + <speciesReference species="MNXM1" stoichiometry="2" constant="true"/> + <speciesReference species="TARGET_0000000001" stoichiometry="1" constant="true"/> + </listOfProducts> + </reaction> + </listOfReactions> + <groups:listOfGroups> + <groups:group metaid="_93eef40c447d295fa61df9270c5fd909ec2ba7ee9883090552c0466873cd4299" groups:id="rp_pathway" groups:kind="collection"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:BRSynth rdf:about="#_93eef40c447d295fa61df9270c5fd909ec2ba7ee9883090552c0466873cd4299"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"> + <brsynth:global_score value="-1"/> + </brsynth:brsynth> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + <groups:listOfMembers> + <groups:member groups:idRef="rxn_1"/> + <groups:member groups:idRef="rxn_2"/> + </groups:listOfMembers> + </groups:group> + <groups:group metaid="_613b064337553014ede418c67180137a4561ff11b13f3bfa1a2765ef37ac375a" groups:id="rp_intermediate_species" groups:kind="collection"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:BRSynth rdf:about="#_613b064337553014ede418c67180137a4561ff11b13f3bfa1a2765ef37ac375a"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"/> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + <groups:listOfMembers> + <groups:member groups:idRef="CMPD_0000000003"/> + </groups:listOfMembers> + </groups:group> + <groups:group metaid="_564fce39b23c6cf87d12dc2c612448384fd2cd980fe3fc07829e2ef802645579" groups:id="rp_trunk_species" groups:kind="collection"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:BRSynth rdf:about="#_564fce39b23c6cf87d12dc2c612448384fd2cd980fe3fc07829e2ef802645579"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"/> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + <groups:listOfMembers> + <groups:member groups:idRef="CMPD_0000000003"/> + <groups:member groups:idRef="MNXM4"/> + <groups:member groups:idRef="MNXM188"/> + <groups:member groups:idRef="TARGET_0000000001"/> + <groups:member groups:idRef="MNXM6"/> + </groups:listOfMembers> + </groups:group> + <groups:group metaid="_9e3154173c97366b3980dd1642e1e35d0bdfc3274abc744e89ecb518bcd48378" groups:id="rp_completed_species" groups:kind="collection"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:BRSynth rdf:about="#_9e3154173c97366b3980dd1642e1e35d0bdfc3274abc744e89ecb518bcd48378"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"/> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + <groups:listOfMembers> + <groups:member groups:idRef="MNXM15"/> + <groups:member groups:idRef="MNXM1"/> + <groups:member groups:idRef="MNXM5"/> + <groups:member groups:idRef="MNXM13"/> + </groups:listOfMembers> + </groups:group> + <groups:group metaid="_58b3b59284e0d918d6d3f3bcadc2d757726da7594cd899cad4e745836ac967a3" groups:id="rp_sink_species" groups:kind="collection"> + <annotation> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:bqbiol="http://biomodels.net/biology-qualifiers/"> + <rdf:BRSynth rdf:about="#_58b3b59284e0d918d6d3f3bcadc2d757726da7594cd899cad4e745836ac967a3"> + <brsynth:brsynth xmlns:brsynth="http://brsynth.eu"/> + </rdf:BRSynth> + </rdf:RDF> + </annotation> + <groups:listOfMembers> + <groups:member groups:idRef="MNXM5"/> + <groups:member groups:idRef="MNXM4"/> + <groups:member groups:idRef="MNXM188"/> + <groups:member groups:idRef="MNXM1"/> + <groups:member groups:idRef="MNXM6"/> + <groups:member groups:idRef="MNXM13"/> + <groups:member groups:idRef="MNXM15"/> + </groups:listOfMembers> + </groups:group> + </groups:listOfGroups> + </model> +</sbml>
--- a/test-data/user_parts_plate.csv Wed Dec 15 15:10:43 2021 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,7 +0,0 @@ -Part/linker,Well,Part concentration (ng/uL) -BASIC_SEVA_37_CmR-p15A.1,A1, -P21683,B1, -P21684,C1, -P21685,D1, -PJ23101_BASIC,E1, -PJ23119_BASIC,F1,
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/user_parts_plate_lycopene.csv Mon Mar 28 14:16:59 2022 +0000 @@ -0,0 +1,7 @@ +Part/linker,Well,Part concentration (ng/uL) +BASIC_SEVA_37_CmR-p15A.1,A1, +P21683,B1, +P21684,C1, +P21685,D1, +PJ23101_BASIC,E1, +PJ23119_BASIC,F1,
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/user_parts_plate_muconate.csv Mon Mar 28 14:16:59 2022 +0000 @@ -0,0 +1,9 @@ +Part/linker,Well,Part concentration (ng/uL) +BASIC_SEVA_37_CmR-p15A.1,A1, +O33948,B1, +O85675,C1, +PJ23101_BASIC,D1, +PJ23104_BASIC,E1, +PJ23108_BASIC,F1, +PJ23111_BASIC,G1, +PJ23119_BASIC,H1,