BRENDA Webservice

Content

Activating_Compound  
Application  
CAS_Registry_Number  
Cloned  
Cofactor  
Crystallization  
Disease  
EC_Number  
Engineering  
Enzyme_Names  
General_Stability  
Inhibitors  
KI_Value  
KM_Value  
Ligands  
Localization  
Metals_Ions  
Molecular_Weight  
Natural_Product  
Natural_Substrate  
Natural_Substrates_Products  
Organic_Solvent_Stability  
Organism  
Oxidation_Stability  
Pathway  
PDB  
pH_Optimum  
pH_Range  
pH_Stability  
pI_Value  
Posttranslational_Modification  
Product  
Purification  
Reaction  
Reaction_Type  
Recommended_Name  
Reference  
Renatured  
Sequence  
Source_Tissue  
Specific_Activity  
Storage_Stability  
Substrate  
Substrates_Products  
Subunits  
Synonyms  
Systematic_Name  
Temperature_Optimum  
Temperature_Range  
Temperature_Stability  
Turnover_Number  

Example Code:

In the following, the source code of complete SOAP clients are listed for the programming languages Perl, PHP, Python and Java.
They represent example clients for extracting all KM_Value entities of BRENDA - in this example representing the EC number '1.1.1.1' and the organism 'Homo sapiens' - by using the corresponding method
getKmValue(String).
In order to adapt these SOAP clients for other SOAP methods, only the highlighted lines of source code have to be replaced by the code snippets listed under the respective method (see below).

SOAP client in Perl (example code)

prerequisite: Installation of SOAP::Lite

#!/usr/bin/perl -w
use SOAP::Lite;

$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getKmValue("ecNumber*1.1.1.1#organism*Homo sapiens#")
-> result; 

print $resultString;

SOAP client in PHP (example code)

prerequisite: Installation of PHP soap

<?php
//1) Usage with WSDL (for extracting the URL of the endpoint)
$client = new SoapClient("http://www.brenda-enzymes.info/soap2/brenda.wsdl", array("trace" => 1));
$resultString=$client->getKmValue("ecNumber*1.1.1.1#organism*Homo sapiens#");
print($resultString);

//2) Usage without WSDL
$endpointData = array("location" => "http://www.brenda-enzymes.info/soap2/brenda_server.php", "uri" => "");
$clientWithoutWSDL = new SOAPClient(null, $endpointData);
$resultString=  $clientWithoutWSDL->getKmValue("ecNumber*1.1.1.1#organism*Homo sapiens#");
print $resultString;
?>

SOAP client in Python (example code)

prerequisite: Installation of SOAPpy

#!/usr/bin/python
import string
from SOAPpy import WSDL ## for extracting the URL of the endpoint (server script) from the WSDL file
from SOAPpy import SOAPProxy ## for usage without WSDL file

#1) Usage with WSDL (for extracting the URL of the endpoint)
wsdl = "http://www.brenda-enzymes.info/soap2/brenda.wsdl"
client = WSDL.Proxy(wsdl)
resultString = client.getKmValue("ecNumber*1.1.1.1#organism*Homo sapiens")
print resultString

#2) Usage without WSDL
endpointURL = "http://www.brenda-enzymes.info/soap2/brenda_server.php"
client = SOAPProxy(endpointURL)
resultString = client.getKmValue("ecNumber*1.1.1.1#organism*Homo sapiens")
print resultString

SOAP client in Java (example code)

prerequisite: Installation of the complete Apache Axis API (not Apache Axis2!)

import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import javax.xml.namespace.QName;

public class SoapClient {
       public static void main(String[] args) throws Exception
       {
              Service service = new Service();
              Call call = (Call) service.createCall();
              String endpoint = "http://www.brenda-enzymes.info/soap2/brenda_server.php";
              call.setTargetEndpointAddress( new java.net.URL(endpoint) );

              call.setOperationName(new QName("http://soapinterop.org/", "getKmValue"));
              String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"} );
              System.out.println(resultString);
       }
}
Important: Please create after each query/method execution a new call object (as indicated below)
public class SoapClient {
       public static void main(String[] args) throws Exception
       {
              Service service = new Service();
              Call call = (Call) service.createCall();
              String endpoint = "http://www.brenda-enzymes.info/soap2/brenda_server.php";
              call.setTargetEndpointAddress( new java.net.URL(endpoint) );
 
              call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromTurnoverNumber")); // Execution of the FIRST SOAP method
              String resultString = (String) call.invoke( new Object[] {""} ); // Specify input parameters (here empty String --> no parameter specified)
              System.out.println(resultString);

	      
	      call = (Call) service.createCall(); // create NEW call object for the next query/remote method invocation 
              call.setTargetEndpointAddress( new java.net.URL(endpoint) );
	      call.setOperationName(new QName("http://soapinterop.org/", "getTurnoverNumber")); // Execution of the SECOND SOAP method
              resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"} );  // Specify input parameters (here the two parameters 'EC number' and 'organism')
	      System.out.println(resultString);

       }
}

Hints for compiling and running the Java client

For compiling the SoapClient class, use the following command (for the axis-1_4 API) under Linux (using at least Java 1.5 JRE):

javac -classpath ".:PATH_TO_AXIS_PACKAGE/axis-1_4/lib/saaj.jar:PATH_TO_AXIS_PACKAGE/axis-1_4/lib/wsdl4j-1.5.1.jar:PATH_TO_AXIS_PACKAGE/axis-1_4/lib/jaxrpc.jar:PATH_TO_AXIS_PACKAGE
/axis-1_4/lib/commons-logging-1.0.4.jar:PATH_TO_AXIS_PACKAGE/axis-1_4/lib/commons-discovery-0.2.jar:PATH_TO_AXIS_PACKAGE/axis-1_4/lib/axis.jar" SoapClient.java

The PATH_TO_AXIS_PACKAGE denotes the root directory of the axis-1_4 package (including the respective jar files). So replace this place holder through the appropriate absolute path on your file system!.
In order to run the compiled client class, type in the command:
java -classpath ".:PATH_TO_AXIS_PACKAGE/axis-1_4/lib/saaj.jar:PATH_TO_AXIS_PACKAGE/axis-1_4/lib/wsdl4j-1.5.1.jar:PATH_TO_AXIS_PACKAGE/axis-1_4/lib/jaxrpc.jar:PATH_TO_AXIS_PACKAGE
/axis-1_4/lib/commons-logging-1.0.4.jar:PATH_TO_AXIS_PACKAGE/axis-1_4/lib/commons-discovery-0.2.jar:PATH_TO_AXIS_PACKAGE/axis-1_4/lib/axis.jar" SoapClient



Ligand structure ID

1. getLigandStructureIdByCompoundName(string)

input
Input Data Type String (for all languages):
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getLigandStructureIdByCompoundName("Zn2+")
-> result;


   PHP:example code snippet:
$resultString = $client->getLigandStructureIdByCompoundName("Zn2+")
   Python:example code snippet:
resultString = client.getLigandStructureIdByCompoundName("Zn2+")
   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getLigandStructureIdByCompoundName"));
String resultString = (String) call.invoke( new Object[] {"Zn2+"});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the ligand structure Id (BRENDA group ID)
e.g. "28905"

Reference by Id

2. getReferenceById(String)

input
Input Data Type String (for all languages):
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getReferenceById("643675")
-> result;


   PHP:example code snippet:
$resultString = $client->getReferenceById("643675");

   Python:example code snippet:
resultString = client.getReferenceById("643675")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getReferenceById"));
String resultString = (String) call.invoke( new Object[] {"643675"});

output (all languages, String in the Unicode/UTF-8 format)
   String containing all fields of the specified Reference (fields separated by #)
"authors*string#title*string#journal*string#volume*string#pages*string#year*string#pubmedId*string#"

Reference by PubmedId

3. getReferenceByPubmedId(String)

input
Input Data Type String (for all languages):
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getReferenceByPubmedId("9514116")
-> result;


   PHP:example code snippet:
$resultString = $client->getReferenceByPubmedId("9514116");

   Python:example code snippet:
resultString = client.getReferenceByPubmedId("9514116")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getReferenceByPubmedId"));
String resultString = (String) call.invoke( new Object[] {"9514116"});

output (all languages, String in the Unicode/UTF-8 format)
   String containing all fields of the specified Reference (fields separated by #)
"authors*string#title*string#journal*string#volume*string#pages*string#year*string#pubmedId*string#"

   Please consider:
About 12% auf the more than 100,000 references contained in BRENDA do not possess a PubMed ID because the corresponding articles/journals are not of biomedical relevance. Therefore, they are not listed in PubMed and, thus, these articles are not accessible via a PubMed ID. Please use either the method getReferenceById(String referenceID) (using the BRENDA reference ID) or the method getReference(String) instead.


Activating Compound top

4. getEcNumbersFromActivatingCompound()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromActivatingCompound()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromActivatingCompound();

   Python:example code snippet:
resultString = client.getEcNumbersFromActivatingCompound()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromActivatingCompound"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Activating Compound
"EC Number1!EC Number2!EC Number3!EC Number4!..."

5. getOrganismsFromActivatingCompound()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromActivatingCompound()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromActivatingCompound();

   Python:example code snippet:
resultString = client.getOrganismsFromActivatingCompound()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromActivatingCompound"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Activating Compound
"Organism1!Organism2!Organism3!Organism4!..."

6. getActivatingCompound(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getActivatingCompound("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getActivatingCompound("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getActivatingCompound("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getActivatingCompound"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "activatingCompound", "commentary", "ligandStructureId", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Activating Compound entries (entries separated by !, fields separated by #)
"ecNumber*string#activatingCompound*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#activatingCompound*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#activatingCompound*string#commentary*string#organism*string#ligandStructureId*string!
 ..."


Application top

7. getEcNumbersFromApplication()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromApplication()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromApplication();

   Python:example code snippet:
resultString = client.getEcNumbersFromApplication()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromApplication"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Application
"EC Number1!EC Number2!EC Number3!EC Number4!..."

8. getOrganismsFromApplication()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromApplication()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromApplication();

   Python:example code snippet:
resultString = client.getOrganismsFromApplication()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromApplication"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Application
"Organism1!Organism2!Organism3!Organism4!..."

9. getApplication(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getApplication("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getApplication("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getApplication("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getApplication"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "application", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Application entries (entries separated by !, fields separated by #)
"ecNumber*string#application*string#commentary*string#organism*string!
 ecNumber*string#application*string#commentary*string#organism*string!
 ecNumber*string#application*string#commentary*string#organism*string!
 ..."


CAS Registry Number top

10. getEcNumbersFromCasRegistryNumber()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromCasRegistryNumber()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromCasRegistryNumber();

   Python:example code snippet:
resultString = client.getEcNumbersFromCasRegistryNumber()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromCasRegistryNumber"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to CAS Registry Number
"EC Number1!EC Number2!EC Number3!EC Number4!..."

11. getCasRegistryNumber(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getCasRegistryNumber("ecNumber*1.1.1.1")
-> result;


   PHP:example code snippet:
$resultString = $client->getCasRegistryNumber("ecNumber*1.1.1.1");

   Python:example code snippet:
resultString = client.getCasRegistryNumber("ecNumber*1.1.1.1")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getCasRegistryNumber"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "casRegistryNumber", "commentary"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the CAS Registry Number entries (entries separated by !, fields separated by #)
"ecNumber*string#casRegistryNumber*string#commentary*string!
 ecNumber*string#casRegistryNumber*string#commentary*string!
 ecNumber*string#casRegistryNumber*string#commentary*string!
 ..."


Cloned top

12. getEcNumbersFromCloned()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromCloned()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromCloned();

   Python:example code snippet:
resultString = client.getEcNumbersFromCloned()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromCloned"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Cloned
"EC Number1!EC Number2!EC Number3!EC Number4!..."

13. getOrganismsFromCloned()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromCloned()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromCloned();

   Python:example code snippet:
resultString = client.getOrganismsFromCloned()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromCloned"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Cloned
"Organism1!Organism2!Organism3!Organism4!..."

14. getCloned(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getCloned("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getCloned("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getCloned("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getCloned"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Cloned entries (entries separated by !, fields separated by #)
"ecNumber*string#commentary*string#organism*string!
 ecNumber*string#commentary*string#organism*string!
 ecNumber*string#commentary*string#organism*string!
 ..."


Cofactor top

15. getEcNumbersFromCofactor()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromCofactor()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromCofactor();

   Python:example code snippet:
resultString = client.getEcNumbersFromCofactor()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromCofactor"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Cofactor
"EC Number1!EC Number2!EC Number3!EC Number4!..."

16. getOrganismsFromCofactor()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromCofactor()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromCofactor();

   Python:example code snippet:
resultString = client.getOrganismsFromCofactor()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromCofactor"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Cofactor
"Organism1!Organism2!Organism3!Organism4!..."

17. getCofactor(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getCofactor("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getCofactor("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getCofactor("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getCofactor"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "cofactor", "commentary", "ligandStructureId", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Cofactor entries (entries separated by !, fields separated by #)
"ecNumber*string#cofactor*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#cofactor*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#cofactor*string#commentary*string#organism*string#ligandStructureId*string!
 ..."


Crystallization top

18. getEcNumbersFromCrystallization()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromCrystallization()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromCrystallization();

   Python:example code snippet:
resultString = client.getEcNumbersFromCrystallization()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromCrystallization"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Crystallization
"EC Number1!EC Number2!EC Number3!EC Number4!..."

19. getOrganismsFromCrystallization()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromCrystallization()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromCrystallization();

   Python:example code snippet:
resultString = client.getOrganismsFromCrystallization()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromCrystallization"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Crystallization
"Organism1!Organism2!Organism3!Organism4!..."

20. getCrystallization(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getCrystallization("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getCrystallization("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getCrystallization("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getCrystallization"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Crystallization entries (entries separated by !, fields separated by #)
"ecNumber*string#commentary*string#organism*string!
 ecNumber*string#commentary*string#organism*string!
 ecNumber*string#commentary*string#organism*string!
 ..."


Disease top

21. getEcNumbersFromDisease()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromDisease()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromDisease();

   Python:example code snippet:
resultString = client.getEcNumbersFromDisease()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromDisease"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Disease
"EC Number1!EC Number2!EC Number3!EC Number4!..."

22. getDisease(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getDisease("ecNumber*1.1.1.1")
-> result;


   PHP:example code snippet:
$resultString = $client->getDisease("ecNumber*1.1.1.1");

   Python:example code snippet:
resultString = client.getDisease("ecNumber*1.1.1.1")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getDisease"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "disease", "pubmedId", "titlePub", "category", "highestConfidenceLevel"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Disease entries (entries separated by !, fields separated by #)
"ecNumber*string#disease*string#pubmedId*string#titlePub*string#category*string#highestConfidenceLevel*string!
 ecNumber*string#disease*string#pubmedId*string#titlePub*string#category*string#highestConfidenceLevel*string!
 ecNumber*string#disease*string#pubmedId*string#titlePub*string#category*string#highestConfidenceLevel*string!
 ..."


EC Number top

23. getEcNumbersFromEcNumber()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromEcNumber()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromEcNumber();

   Python:example code snippet:
resultString = client.getEcNumbersFromEcNumber()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromEcNumber"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to EC Number
"EC Number1!EC Number2!EC Number3!EC Number4!..."

24. getEcNumber(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumber("ecNumber*1.1.1.1")
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumber("ecNumber*1.1.1.1");

   Python:example code snippet:
resultString = client.getEcNumber("ecNumber*1.1.1.1")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumber"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "commentary"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the EC Number entries (entries separated by !, fields separated by #)
"ecNumber*string#commentary*string!
 ecNumber*string#commentary*string!
 ecNumber*string#commentary*string!
 ..."


Engineering top

25. getEcNumbersFromEngineering()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromEngineering()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromEngineering();

   Python:example code snippet:
resultString = client.getEcNumbersFromEngineering()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromEngineering"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Engineering
"EC Number1!EC Number2!EC Number3!EC Number4!..."

26. getOrganismsFromEngineering()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromEngineering()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromEngineering();

   Python:example code snippet:
resultString = client.getOrganismsFromEngineering()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromEngineering"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Engineering
"Organism1!Organism2!Organism3!Organism4!..."

27. getEngineering(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEngineering("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getEngineering("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getEngineering("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEngineering"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "engineering", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Engineering entries (entries separated by !, fields separated by #)
"ecNumber*string#engineering*string#commentary*string#organism*string!
 ecNumber*string#engineering*string#commentary*string#organism*string!
 ecNumber*string#engineering*string#commentary*string#organism*string!
 ..."


Enzyme Names top

28. getEcNumbersFromEnzymeNames()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromEnzymeNames()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromEnzymeNames();

   Python:example code snippet:
resultString = client.getEcNumbersFromEnzymeNames()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromEnzymeNames"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Enzyme Names
"EC Number1!EC Number2!EC Number3!EC Number4!..."

29. getEnzymeNames(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEnzymeNames("ecNumber*1.1.1.1")
-> result;


   PHP:example code snippet:
$resultString = $client->getEnzymeNames("ecNumber*1.1.1.1");

   Python:example code snippet:
resultString = client.getEnzymeNames("ecNumber*1.1.1.1")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEnzymeNames"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "synonyms"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Enzyme Names entries (entries separated by !, fields separated by #)
"ecNumber*string#synonyms*string!
 ecNumber*string#synonyms*string!
 ecNumber*string#synonyms*string!
 ..."


General Stability top

30. getEcNumbersFromGeneralStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromGeneralStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromGeneralStability();

   Python:example code snippet:
resultString = client.getEcNumbersFromGeneralStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromGeneralStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to General Stability
"EC Number1!EC Number2!EC Number3!EC Number4!..."

31. getOrganismsFromGeneralStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromGeneralStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromGeneralStability();

   Python:example code snippet:
resultString = client.getOrganismsFromGeneralStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromGeneralStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to General Stability
"Organism1!Organism2!Organism3!Organism4!..."

32. getGeneralStability(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getGeneralStability("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getGeneralStability("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getGeneralStability("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getGeneralStability"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "generalStability", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the General Stability entries (entries separated by !, fields separated by #)
"ecNumber*string#generalStability*string#organism*string!
 ecNumber*string#generalStability*string#organism*string!
 ecNumber*string#generalStability*string#organism*string!
 ..."


Inhibitors top

33. getEcNumbersFromInhibitors()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromInhibitors()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromInhibitors();

   Python:example code snippet:
resultString = client.getEcNumbersFromInhibitors()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromInhibitors"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Inhibitors
"EC Number1!EC Number2!EC Number3!EC Number4!..."

34. getOrganismsFromInhibitors()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromInhibitors()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromInhibitors();

   Python:example code snippet:
resultString = client.getOrganismsFromInhibitors()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromInhibitors"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Inhibitors
"Organism1!Organism2!Organism3!Organism4!..."

35. getInhibitors(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getInhibitors("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getInhibitors("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getInhibitors("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getInhibitors"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "inhibitors", "commentary", "ligandStructureId", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Inhibitors entries (entries separated by !, fields separated by #)
"ecNumber*string#inhibitors*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#inhibitors*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#inhibitors*string#commentary*string#organism*string#ligandStructureId*string!
 ..."


KI Value top

36. getEcNumbersFromKiValue()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromKiValue()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromKiValue();

   Python:example code snippet:
resultString = client.getEcNumbersFromKiValue()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromKiValue"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to KI Value
"EC Number1!EC Number2!EC Number3!EC Number4!..."

37. getOrganismsFromKiValue()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromKiValue()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromKiValue();

   Python:example code snippet:
resultString = client.getOrganismsFromKiValue()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromKiValue"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to KI Value
"Organism1!Organism2!Organism3!Organism4!..."

38. getKiValue(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getKiValue("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getKiValue("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getKiValue("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getKiValue"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "kiValue", "kiValueMaximum", "inhibitor", "commentary", "ligandStructureId", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the KI Value entries (entries separated by !, fields separated by #)
"ecNumber*string#kiValue*string#kiValueMaximum*string#inhibitor*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#kiValue*string#kiValueMaximum*string#inhibitor*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#kiValue*string#kiValueMaximum*string#inhibitor*string#commentary*string#organism*string#ligandStructureId*string!
 ..."


KM Value top

39. getEcNumbersFromKmValue()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromKmValue()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromKmValue();

   Python:example code snippet:
resultString = client.getEcNumbersFromKmValue()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromKmValue"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to KM Value
"EC Number1!EC Number2!EC Number3!EC Number4!..."

40. getOrganismsFromKmValue()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromKmValue()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromKmValue();

   Python:example code snippet:
resultString = client.getOrganismsFromKmValue()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromKmValue"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to KM Value
"Organism1!Organism2!Organism3!Organism4!..."

41. getKmValue(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getKmValue("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getKmValue("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getKmValue("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getKmValue"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "kmValue", "kmValueMaximum", "substrate", "commentary", "ligandStructureId", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the KM Value entries (entries separated by !, fields separated by #)
"ecNumber*string#kmValue*string#kmValueMaximum*string#substrate*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#kmValue*string#kmValueMaximum*string#substrate*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#kmValue*string#kmValueMaximum*string#substrate*string#commentary*string#organism*string#ligandStructureId*string!
 ..."


Ligands top

42. getEcNumbersFromLigands()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromLigands()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromLigands();

   Python:example code snippet:
resultString = client.getEcNumbersFromLigands()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromLigands"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Ligands
"EC Number1!EC Number2!EC Number3!EC Number4!..."

43. getOrganismsFromLigands()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromLigands()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromLigands();

   Python:example code snippet:
resultString = client.getOrganismsFromLigands()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromLigands"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Ligands
"Organism1!Organism2!Organism3!Organism4!..."

44. getLigands(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getLigands("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getLigands("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getLigands("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getLigands"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "role", "ligand", "ligandStructureId"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Ligands entries (entries separated by !, fields separated by #)
"ecNumber*string#role*string#ligand*string#organism*string#ligandStructureId*string!
 ecNumber*string#role*string#ligand*string#organism*string#ligandStructureId*string!
 ecNumber*string#role*string#ligand*string#organism*string#ligandStructureId*string!
 ..."


Localization top

45. getEcNumbersFromLocalization()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromLocalization()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromLocalization();

   Python:example code snippet:
resultString = client.getEcNumbersFromLocalization()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromLocalization"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Localization
"EC Number1!EC Number2!EC Number3!EC Number4!..."

46. getOrganismsFromLocalization()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromLocalization()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromLocalization();

   Python:example code snippet:
resultString = client.getOrganismsFromLocalization()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromLocalization"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Localization
"Organism1!Organism2!Organism3!Organism4!..."

47. getLocalization(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getLocalization("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getLocalization("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getLocalization("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getLocalization"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "localization", "commentary", "idGo", "literature", "textmining"
   Setting the field/parameter textmining to zero ("textmining*0"), restricts the search to manually annotated entries only.
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Localization entries (entries separated by !, fields separated by #)
"ecNumber*string#localization*string#commentary*string#organism*string#idGo*string#textmining*string!
 ecNumber*string#localization*string#commentary*string#organism*string#idGo*string#textmining*string!
 ecNumber*string#localization*string#commentary*string#organism*string#idGo*string#textmining*string!
 ..."


Metals Ions top

48. getEcNumbersFromMetalsIons()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromMetalsIons()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromMetalsIons();

   Python:example code snippet:
resultString = client.getEcNumbersFromMetalsIons()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromMetalsIons"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Metals Ions
"EC Number1!EC Number2!EC Number3!EC Number4!..."

49. getOrganismsFromMetalsIons()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromMetalsIons()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromMetalsIons();

   Python:example code snippet:
resultString = client.getOrganismsFromMetalsIons()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromMetalsIons"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Metals Ions
"Organism1!Organism2!Organism3!Organism4!..."

50. getMetalsIons(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getMetalsIons("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getMetalsIons("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getMetalsIons("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getMetalsIons"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "metalsIons", "commentary", "ligandStructureId", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Metals Ions entries (entries separated by !, fields separated by #)
"ecNumber*string#metalsIons*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#metalsIons*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#metalsIons*string#commentary*string#organism*string#ligandStructureId*string!
 ..."


Molecular Weight top

51. getEcNumbersFromMolecularWeight()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromMolecularWeight()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromMolecularWeight();

   Python:example code snippet:
resultString = client.getEcNumbersFromMolecularWeight()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromMolecularWeight"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Molecular Weight
"EC Number1!EC Number2!EC Number3!EC Number4!..."

52. getOrganismsFromMolecularWeight()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromMolecularWeight()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromMolecularWeight();

   Python:example code snippet:
resultString = client.getOrganismsFromMolecularWeight()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromMolecularWeight"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Molecular Weight
"Organism1!Organism2!Organism3!Organism4!..."

53. getMolecularWeight(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getMolecularWeight("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getMolecularWeight("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getMolecularWeight("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getMolecularWeight"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "molecularWeight", "molecularWeightMaximum", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Molecular Weight entries (entries separated by !, fields separated by #)
"ecNumber*string#molecularWeight*string#molecularWeightMaximum*string#commentary*string#organism*string!
 ecNumber*string#molecularWeight*string#molecularWeightMaximum*string#commentary*string#organism*string!
 ecNumber*string#molecularWeight*string#molecularWeightMaximum*string#commentary*string#organism*string!
 ..."


Natural Product top

54. getEcNumbersFromNaturalProduct()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromNaturalProduct()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromNaturalProduct();

   Python:example code snippet:
resultString = client.getEcNumbersFromNaturalProduct()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromNaturalProduct"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Natural Product
"EC Number1!EC Number2!EC Number3!EC Number4!..."

55. getOrganismsFromNaturalProduct()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromNaturalProduct()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromNaturalProduct();

   Python:example code snippet:
resultString = client.getOrganismsFromNaturalProduct()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromNaturalProduct"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Natural Product
"Organism1!Organism2!Organism3!Organism4!..."

56. getNaturalProduct(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getNaturalProduct("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getNaturalProduct("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getNaturalProduct("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getNaturalProduct"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "naturalProduct", "naturalReactionPartners", "ligandStructureId"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Natural Product entries (entries separated by !, fields separated by #)
"ecNumber*string#naturalProduct*string#naturalReactionPartners*string#organism*string#ligandStructureId*string!
 ecNumber*string#naturalProduct*string#naturalReactionPartners*string#organism*string#ligandStructureId*string!
 ecNumber*string#naturalProduct*string#naturalReactionPartners*string#organism*string#ligandStructureId*string!
 ..."


Natural Substrate top

57. getEcNumbersFromNaturalSubstrate()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromNaturalSubstrate()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromNaturalSubstrate();

   Python:example code snippet:
resultString = client.getEcNumbersFromNaturalSubstrate()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromNaturalSubstrate"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Natural Substrate
"EC Number1!EC Number2!EC Number3!EC Number4!..."

58. getOrganismsFromNaturalSubstrate()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromNaturalSubstrate()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromNaturalSubstrate();

   Python:example code snippet:
resultString = client.getOrganismsFromNaturalSubstrate()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromNaturalSubstrate"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Natural Substrate
"Organism1!Organism2!Organism3!Organism4!..."

59. getNaturalSubstrate(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getNaturalSubstrate("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getNaturalSubstrate("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getNaturalSubstrate("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getNaturalSubstrate"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "naturalSubstrate", "naturalReactionPartners", "ligandStructureId"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Natural Substrate entries (entries separated by !, fields separated by #)
"ecNumber*string#naturalSubstrate*string#naturalReactionPartners*string#organism*string#ligandStructureId*string!
 ecNumber*string#naturalSubstrate*string#naturalReactionPartners*string#organism*string#ligandStructureId*string!
 ecNumber*string#naturalSubstrate*string#naturalReactionPartners*string#organism*string#ligandStructureId*string!
 ..."


Natural Substrates Products top

60. getEcNumbersFromNaturalSubstratesProducts()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromNaturalSubstratesProducts()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromNaturalSubstratesProducts();

   Python:example code snippet:
resultString = client.getEcNumbersFromNaturalSubstratesProducts()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromNaturalSubstratesProducts"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Natural Substrates Products
"EC Number1!EC Number2!EC Number3!EC Number4!..."

61. getNaturalSubstratesProducts(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getNaturalSubstratesProducts("ecNumber*1.1.1.1")
-> result;


   PHP:example code snippet:
$resultString = $client->getNaturalSubstratesProducts("ecNumber*1.1.1.1");

   Python:example code snippet:
resultString = client.getNaturalSubstratesProducts("ecNumber*1.1.1.1")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getNaturalSubstratesProducts"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "naturalSubstrates", "organismNaturalSubstrates", "commentaryNaturalSubstrates", "naturalProducts", "commentaryNaturalProducts", "organismNaturalProducts", "reversibility"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Natural Substrates Products entries (entries separated by !, fields separated by #)
"ecNumber*string#naturalSubstrates*string#organismNaturalSubstrates*string#commentaryNaturalSubstrates*string#naturalProducts*string#commentaryNaturalProducts*string#organismNaturalProducts*string#reversibility*string!
 ecNumber*string#naturalSubstrates*string#organismNaturalSubstrates*string#commentaryNaturalSubstrates*string#naturalProducts*string#commentaryNaturalProducts*string#organismNaturalProducts*string#reversibility*string!
 ecNumber*string#naturalSubstrates*string#organismNaturalSubstrates*string#commentaryNaturalSubstrates*string#naturalProducts*string#commentaryNaturalProducts*string#organismNaturalProducts*string#reversibility*string!
 ..."


Organic Solvent Stability top

62. getEcNumbersFromOrganicSolventStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromOrganicSolventStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromOrganicSolventStability();

   Python:example code snippet:
resultString = client.getEcNumbersFromOrganicSolventStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromOrganicSolventStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Organic Solvent Stability
"EC Number1!EC Number2!EC Number3!EC Number4!..."

63. getOrganismsFromOrganicSolventStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromOrganicSolventStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromOrganicSolventStability();

   Python:example code snippet:
resultString = client.getOrganismsFromOrganicSolventStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromOrganicSolventStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Organic Solvent Stability
"Organism1!Organism2!Organism3!Organism4!..."

64. getOrganicSolventStability(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganicSolventStability("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganicSolventStability("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getOrganicSolventStability("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganicSolventStability"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "organicSolvent", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Organic Solvent Stability entries (entries separated by !, fields separated by #)
"ecNumber*string#organicSolvent*string#commentary*string#organism*string!
 ecNumber*string#organicSolvent*string#commentary*string#organism*string!
 ecNumber*string#organicSolvent*string#commentary*string#organism*string!
 ..."


Organism top

65. getEcNumbersFromOrganism()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromOrganism()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromOrganism();

   Python:example code snippet:
resultString = client.getEcNumbersFromOrganism()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromOrganism"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Organism
"EC Number1!EC Number2!EC Number3!EC Number4!..."

66. getOrganismsFromOrganism()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromOrganism()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromOrganism();

   Python:example code snippet:
resultString = client.getOrganismsFromOrganism()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromOrganism"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Organism
"Organism1!Organism2!Organism3!Organism4!..."

67. getOrganism(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganism("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganism("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getOrganism("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganism"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "sequenceCode", "commentary", "literature", "textmining"
   Setting the field/parameter textmining to zero ("textmining*0"), restricts the search to manually annotated entries only.
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Organism entries (entries separated by !, fields separated by #)
"organism*string#sequenceCode*string#commentary*string#textmining*string#ecNumber*string!
 organism*string#sequenceCode*string#commentary*string#textmining*string#ecNumber*string!
 organism*string#sequenceCode*string#commentary*string#textmining*string#ecNumber*string!
 ..."


Oxidation Stability top

68. getEcNumbersFromOxidationStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromOxidationStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromOxidationStability();

   Python:example code snippet:
resultString = client.getEcNumbersFromOxidationStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromOxidationStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Oxidation Stability
"EC Number1!EC Number2!EC Number3!EC Number4!..."

69. getOrganismsFromOxidationStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromOxidationStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromOxidationStability();

   Python:example code snippet:
resultString = client.getOrganismsFromOxidationStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromOxidationStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Oxidation Stability
"Organism1!Organism2!Organism3!Organism4!..."

70. getOxidationStability(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOxidationStability("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getOxidationStability("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getOxidationStability("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOxidationStability"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "oxidationStability", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Oxidation Stability entries (entries separated by !, fields separated by #)
"ecNumber*string#oxidationStability*string#organism*string!
 ecNumber*string#oxidationStability*string#organism*string!
 ecNumber*string#oxidationStability*string#organism*string!
 ..."


Pathway top

71. getEcNumbersFromPathway()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromPathway()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromPathway();

   Python:example code snippet:
resultString = client.getEcNumbersFromPathway()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromPathway"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Pathway
"EC Number1!EC Number2!EC Number3!EC Number4!..."

72. getPathway(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getPathway("ecNumber*1.1.1.1")
-> result;


   PHP:example code snippet:
$resultString = $client->getPathway("ecNumber*1.1.1.1");

   Python:example code snippet:
resultString = client.getPathway("ecNumber*1.1.1.1")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getPathway"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "pathway", "link", "source_database"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Pathway entries (entries separated by !, fields separated by #)
"ecNumber*string#pathway*string#link*string#source_database*string!
 ecNumber*string#pathway*string#link*string#source_database*string!
 ecNumber*string#pathway*string#link*string#source_database*string!
 ..."


PDB top

73. getEcNumbersFromPdb()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromPdb()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromPdb();

   Python:example code snippet:
resultString = client.getEcNumbersFromPdb()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromPdb"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to PDB
"EC Number1!EC Number2!EC Number3!EC Number4!..."

74. getOrganismsFromPdb()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromPdb()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromPdb();

   Python:example code snippet:
resultString = client.getOrganismsFromPdb()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromPdb"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to PDB
"Organism1!Organism2!Organism3!Organism4!..."

75. getPdb(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getPdb("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getPdb("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getPdb("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getPdb"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "pdb"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the PDB entries (entries separated by !, fields separated by #)
"ecNumber*string#pdb*string#organism*string!
 ecNumber*string#pdb*string#organism*string!
 ecNumber*string#pdb*string#organism*string!
 ..."


pH Optimum top

76. getEcNumbersFromPhOptimum()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromPhOptimum()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromPhOptimum();

   Python:example code snippet:
resultString = client.getEcNumbersFromPhOptimum()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromPhOptimum"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to pH Optimum
"EC Number1!EC Number2!EC Number3!EC Number4!..."

77. getOrganismsFromPhOptimum()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromPhOptimum()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromPhOptimum();

   Python:example code snippet:
resultString = client.getOrganismsFromPhOptimum()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromPhOptimum"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to pH Optimum
"Organism1!Organism2!Organism3!Organism4!..."

78. getPhOptimum(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getPhOptimum("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getPhOptimum("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getPhOptimum("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getPhOptimum"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "phOptimum", "phOptimumMaximum", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the pH Optimum entries (entries separated by !, fields separated by #)
"ecNumber*string#phOptimum*string#phOptimumMaximum*string#commentary*string#organism*string!
 ecNumber*string#phOptimum*string#phOptimumMaximum*string#commentary*string#organism*string!
 ecNumber*string#phOptimum*string#phOptimumMaximum*string#commentary*string#organism*string!
 ..."


pH Range top

79. getEcNumbersFromPhRange()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromPhRange()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromPhRange();

   Python:example code snippet:
resultString = client.getEcNumbersFromPhRange()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromPhRange"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to pH Range
"EC Number1!EC Number2!EC Number3!EC Number4!..."

80. getOrganismsFromPhRange()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromPhRange()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromPhRange();

   Python:example code snippet:
resultString = client.getOrganismsFromPhRange()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromPhRange"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to pH Range
"Organism1!Organism2!Organism3!Organism4!..."

81. getPhRange(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getPhRange("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getPhRange("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getPhRange("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getPhRange"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "phRange", "phRangeMaximum", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the pH Range entries (entries separated by !, fields separated by #)
"ecNumber*string#phRange*string#phRangeMaximum*string#commentary*string#organism*string!
 ecNumber*string#phRange*string#phRangeMaximum*string#commentary*string#organism*string!
 ecNumber*string#phRange*string#phRangeMaximum*string#commentary*string#organism*string!
 ..."


pH Stability top

82. getEcNumbersFromPhStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromPhStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromPhStability();

   Python:example code snippet:
resultString = client.getEcNumbersFromPhStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromPhStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to pH Stability
"EC Number1!EC Number2!EC Number3!EC Number4!..."

83. getOrganismsFromPhStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromPhStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromPhStability();

   Python:example code snippet:
resultString = client.getOrganismsFromPhStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromPhStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to pH Stability
"Organism1!Organism2!Organism3!Organism4!..."

84. getPhStability(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getPhStability("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getPhStability("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getPhStability("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getPhStability"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "phStability", "phStabilityMaximum", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the pH Stability entries (entries separated by !, fields separated by #)
"ecNumber*string#phStability*string#phStabilityMaximum*string#commentary*string#organism*string!
 ecNumber*string#phStability*string#phStabilityMaximum*string#commentary*string#organism*string!
 ecNumber*string#phStability*string#phStabilityMaximum*string#commentary*string#organism*string!
 ..."


pI Value top

85. getEcNumbersFromPiValue()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromPiValue()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromPiValue();

   Python:example code snippet:
resultString = client.getEcNumbersFromPiValue()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromPiValue"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to pI Value
"EC Number1!EC Number2!EC Number3!EC Number4!..."

86. getOrganismsFromPiValue()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromPiValue()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromPiValue();

   Python:example code snippet:
resultString = client.getOrganismsFromPiValue()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromPiValue"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to pI Value
"Organism1!Organism2!Organism3!Organism4!..."

87. getPiValue(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getPiValue("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getPiValue("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getPiValue("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getPiValue"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "piValue", "piValueMaximum", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the pI Value entries (entries separated by !, fields separated by #)
"ecNumber*string#piValue*string#piValueMaximum*string#commentary*string#organism*string!
 ecNumber*string#piValue*string#piValueMaximum*string#commentary*string#organism*string!
 ecNumber*string#piValue*string#piValueMaximum*string#commentary*string#organism*string!
 ..."


Posttranslational Modification top

88. getEcNumbersFromPosttranslationalModification()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromPosttranslationalModification()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromPosttranslationalModification();

   Python:example code snippet:
resultString = client.getEcNumbersFromPosttranslationalModification()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromPosttranslationalModification"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Posttranslational Modification
"EC Number1!EC Number2!EC Number3!EC Number4!..."

89. getOrganismsFromPosttranslationalModification()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromPosttranslationalModification()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromPosttranslationalModification();

   Python:example code snippet:
resultString = client.getOrganismsFromPosttranslationalModification()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromPosttranslationalModification"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Posttranslational Modification
"Organism1!Organism2!Organism3!Organism4!..."

90. getPosttranslationalModification(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getPosttranslationalModification("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getPosttranslationalModification("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getPosttranslationalModification("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getPosttranslationalModification"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "posttranslationalModification", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Posttranslational Modification entries (entries separated by !, fields separated by #)
"ecNumber*string#posttranslationalModification*string#commentary*string#organism*string!
 ecNumber*string#posttranslationalModification*string#commentary*string#organism*string!
 ecNumber*string#posttranslationalModification*string#commentary*string#organism*string!
 ..."


Product top

91. getEcNumbersFromProduct()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromProduct()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromProduct();

   Python:example code snippet:
resultString = client.getEcNumbersFromProduct()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromProduct"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Product
"EC Number1!EC Number2!EC Number3!EC Number4!..."

92. getOrganismsFromProduct()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromProduct()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromProduct();

   Python:example code snippet:
resultString = client.getOrganismsFromProduct()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromProduct"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Product
"Organism1!Organism2!Organism3!Organism4!..."

93. getProduct(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getProduct("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getProduct("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getProduct("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getProduct"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "product", "reactionPartners", "ligandStructureId"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Product entries (entries separated by !, fields separated by #)
"ecNumber*string#product*string#reactionPartners*string#organism*string#ligandStructureId*string!
 ecNumber*string#product*string#reactionPartners*string#organism*string#ligandStructureId*string!
 ecNumber*string#product*string#reactionPartners*string#organism*string#ligandStructureId*string!
 ..."


Purification top

94. getEcNumbersFromPurification()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromPurification()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromPurification();

   Python:example code snippet:
resultString = client.getEcNumbersFromPurification()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromPurification"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Purification
"EC Number1!EC Number2!EC Number3!EC Number4!..."

95. getOrganismsFromPurification()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromPurification()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromPurification();

   Python:example code snippet:
resultString = client.getOrganismsFromPurification()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromPurification"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Purification
"Organism1!Organism2!Organism3!Organism4!..."

96. getPurification(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getPurification("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getPurification("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getPurification("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getPurification"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Purification entries (entries separated by !, fields separated by #)
"ecNumber*string#commentary*string#organism*string!
 ecNumber*string#commentary*string#organism*string!
 ecNumber*string#commentary*string#organism*string!
 ..."


Reaction top

97. getEcNumbersFromReaction()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromReaction()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromReaction();

   Python:example code snippet:
resultString = client.getEcNumbersFromReaction()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromReaction"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Reaction
"EC Number1!EC Number2!EC Number3!EC Number4!..."

98. getOrganismsFromReaction()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromReaction()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromReaction();

   Python:example code snippet:
resultString = client.getOrganismsFromReaction()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromReaction"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Reaction
"Organism1!Organism2!Organism3!Organism4!..."

99. getReaction(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getReaction("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getReaction("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getReaction("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getReaction"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "reaction", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Reaction entries (entries separated by !, fields separated by #)
"ecNumber*string#reaction*string#commentary*string#organism*string!
 ecNumber*string#reaction*string#commentary*string#organism*string!
 ecNumber*string#reaction*string#commentary*string#organism*string!
 ..."


Reaction Type top

100. getEcNumbersFromReactionType()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromReactionType()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromReactionType();

   Python:example code snippet:
resultString = client.getEcNumbersFromReactionType()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromReactionType"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Reaction Type
"EC Number1!EC Number2!EC Number3!EC Number4!..."

101. getOrganismsFromReactionType()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromReactionType()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromReactionType();

   Python:example code snippet:
resultString = client.getOrganismsFromReactionType()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromReactionType"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Reaction Type
"Organism1!Organism2!Organism3!Organism4!..."

102. getReactionType(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getReactionType("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getReactionType("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getReactionType("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getReactionType"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "reactionType", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Reaction Type entries (entries separated by !, fields separated by #)
"ecNumber*string#reactionType*string#commentary*string#organism*string!
 ecNumber*string#reactionType*string#commentary*string#organism*string!
 ecNumber*string#reactionType*string#commentary*string#organism*string!
 ..."


Recommended Name top

103. getEcNumbersFromRecommendedName()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromRecommendedName()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromRecommendedName();

   Python:example code snippet:
resultString = client.getEcNumbersFromRecommendedName()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromRecommendedName"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Recommended Name
"EC Number1!EC Number2!EC Number3!EC Number4!..."

104. getRecommendedName(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getRecommendedName("ecNumber*1.1.1.1")
-> result;


   PHP:example code snippet:
$resultString = $client->getRecommendedName("ecNumber*1.1.1.1");

   Python:example code snippet:
resultString = client.getRecommendedName("ecNumber*1.1.1.1")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getRecommendedName"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "recommendedName", "goNumber"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Recommended Name entries (entries separated by !, fields separated by #)
"ecNumber*string#recommendedName*string#goNumber*string!
 ecNumber*string#recommendedName*string#goNumber*string!
 ecNumber*string#recommendedName*string#goNumber*string!
 ..."


Reference top

105. getEcNumbersFromReference()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromReference()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromReference();

   Python:example code snippet:
resultString = client.getEcNumbersFromReference()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromReference"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Reference
"EC Number1!EC Number2!EC Number3!EC Number4!..."

106. getOrganismsFromReference()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromReference()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromReference();

   Python:example code snippet:
resultString = client.getOrganismsFromReference()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromReference"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Reference
"Organism1!Organism2!Organism3!Organism4!..."

107. getReference(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getReference("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getReference("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getReference("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getReference"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "reference", "authors", "title", "journal", "volume", "pages", "year", "commentary", "pubmedId", "textmining"
   Setting the field/parameter textmining to zero ("textmining*0"), restricts the search to manually annotated entries only.
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Reference entries (entries separated by !, fields separated by #)
"ecNumber*string#reference*string#authors*string#title*string#journal*string#volume*string#pages*string#year*string#organism*string#commentary*string#pubmedId*string#textmining*string!
 ecNumber*string#reference*string#authors*string#title*string#journal*string#volume*string#pages*string#year*string#organism*string#commentary*string#pubmedId*string#textmining*string!
 ecNumber*string#reference*string#authors*string#title*string#journal*string#volume*string#pages*string#year*string#organism*string#commentary*string#pubmedId*string#textmining*string!
 ..."


Renatured top

108. getEcNumbersFromRenatured()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromRenatured()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromRenatured();

   Python:example code snippet:
resultString = client.getEcNumbersFromRenatured()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromRenatured"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Renatured
"EC Number1!EC Number2!EC Number3!EC Number4!..."

109. getOrganismsFromRenatured()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromRenatured()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromRenatured();

   Python:example code snippet:
resultString = client.getOrganismsFromRenatured()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromRenatured"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Renatured
"Organism1!Organism2!Organism3!Organism4!..."

110. getRenatured(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getRenatured("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getRenatured("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getRenatured("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getRenatured"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Renatured entries (entries separated by !, fields separated by #)
"ecNumber*string#commentary*string#organism*string!
 ecNumber*string#commentary*string#organism*string!
 ecNumber*string#commentary*string#organism*string!
 ..."


Sequence top

111. getEcNumbersFromSequence()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromSequence()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromSequence();

   Python:example code snippet:
resultString = client.getEcNumbersFromSequence()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromSequence"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Sequence
"EC Number1!EC Number2!EC Number3!EC Number4!..."

112. getOrganismsFromSequence()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromSequence()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromSequence();

   Python:example code snippet:
resultString = client.getOrganismsFromSequence()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromSequence"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Sequence
"Organism1!Organism2!Organism3!Organism4!..."

113. getSequence(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getSequence("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getSequence("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getSequence("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getSequence"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "sequence", "noOfAminoAcids", "firstAccessionCode", "source", "id"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Sequence entries (entries separated by !, fields separated by #)
"ecNumber*string#sequence*string#noOfAminoAcids*string#firstAccessionCode*string#source*string#id*string#organism*string!
 ecNumber*string#sequence*string#noOfAminoAcids*string#firstAccessionCode*string#source*string#id*string#organism*string!
 ecNumber*string#sequence*string#noOfAminoAcids*string#firstAccessionCode*string#source*string#id*string#organism*string!
 ..."


Source Tissue top

114. getEcNumbersFromSourceTissue()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromSourceTissue()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromSourceTissue();

   Python:example code snippet:
resultString = client.getEcNumbersFromSourceTissue()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromSourceTissue"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Source Tissue
"EC Number1!EC Number2!EC Number3!EC Number4!..."

115. getOrganismsFromSourceTissue()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromSourceTissue()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromSourceTissue();

   Python:example code snippet:
resultString = client.getOrganismsFromSourceTissue()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromSourceTissue"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Source Tissue
"Organism1!Organism2!Organism3!Organism4!..."

116. getSourceTissue(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getSourceTissue("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getSourceTissue("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getSourceTissue("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getSourceTissue"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "sourceTissue", "commentary", "literature", "textmining"
   Setting the field/parameter textmining to zero ("textmining*0"), restricts the search to manually annotated entries only.
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Source Tissue entries (entries separated by !, fields separated by #)
"ecNumber*string#sourceTissue*string#commentary*string#organism*string#textmining*string!
 ecNumber*string#sourceTissue*string#commentary*string#organism*string#textmining*string!
 ecNumber*string#sourceTissue*string#commentary*string#organism*string#textmining*string!
 ..."


Specific Activity top

117. getEcNumbersFromSpecificActivity()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromSpecificActivity()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromSpecificActivity();

   Python:example code snippet:
resultString = client.getEcNumbersFromSpecificActivity()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromSpecificActivity"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Specific Activity
"EC Number1!EC Number2!EC Number3!EC Number4!..."

118. getOrganismsFromSpecificActivity()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromSpecificActivity()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromSpecificActivity();

   Python:example code snippet:
resultString = client.getOrganismsFromSpecificActivity()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromSpecificActivity"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Specific Activity
"Organism1!Organism2!Organism3!Organism4!..."

119. getSpecificActivity(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getSpecificActivity("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getSpecificActivity("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getSpecificActivity("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getSpecificActivity"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "specificActivity", "specificActivityMaximum", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Specific Activity entries (entries separated by !, fields separated by #)
"ecNumber*string#specificActivity*string#specificActivityMaximum*string#commentary*string#organism*string!
 ecNumber*string#specificActivity*string#specificActivityMaximum*string#commentary*string#organism*string!
 ecNumber*string#specificActivity*string#specificActivityMaximum*string#commentary*string#organism*string!
 ..."


Storage Stability top

120. getEcNumbersFromStorageStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromStorageStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromStorageStability();

   Python:example code snippet:
resultString = client.getEcNumbersFromStorageStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromStorageStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Storage Stability
"EC Number1!EC Number2!EC Number3!EC Number4!..."

121. getOrganismsFromStorageStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromStorageStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromStorageStability();

   Python:example code snippet:
resultString = client.getOrganismsFromStorageStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromStorageStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Storage Stability
"Organism1!Organism2!Organism3!Organism4!..."

122. getStorageStability(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getStorageStability("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getStorageStability("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getStorageStability("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getStorageStability"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "storageStability", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Storage Stability entries (entries separated by !, fields separated by #)
"ecNumber*string#storageStability*string#organism*string!
 ecNumber*string#storageStability*string#organism*string!
 ecNumber*string#storageStability*string#organism*string!
 ..."


Substrate top

123. getEcNumbersFromSubstrate()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromSubstrate()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromSubstrate();

   Python:example code snippet:
resultString = client.getEcNumbersFromSubstrate()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromSubstrate"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Substrate
"EC Number1!EC Number2!EC Number3!EC Number4!..."

124. getOrganismsFromSubstrate()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromSubstrate()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromSubstrate();

   Python:example code snippet:
resultString = client.getOrganismsFromSubstrate()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromSubstrate"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Substrate
"Organism1!Organism2!Organism3!Organism4!..."

125. getSubstrate(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getSubstrate("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getSubstrate("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getSubstrate("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getSubstrate"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "substrate", "reactionPartners", "ligandStructureId"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Substrate entries (entries separated by !, fields separated by #)
"ecNumber*string#substrate*string#reactionPartners*string#organism*string#ligandStructureId*string!
 ecNumber*string#substrate*string#reactionPartners*string#organism*string#ligandStructureId*string!
 ecNumber*string#substrate*string#reactionPartners*string#organism*string#ligandStructureId*string!
 ..."


Substrates Products top

126. getEcNumbersFromSubstratesProducts()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromSubstratesProducts()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromSubstratesProducts();

   Python:example code snippet:
resultString = client.getEcNumbersFromSubstratesProducts()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromSubstratesProducts"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Substrates Products
"EC Number1!EC Number2!EC Number3!EC Number4!..."

127. getSubstratesProducts(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getSubstratesProducts("ecNumber*1.1.1.1")
-> result;


   PHP:example code snippet:
$resultString = $client->getSubstratesProducts("ecNumber*1.1.1.1");

   Python:example code snippet:
resultString = client.getSubstratesProducts("ecNumber*1.1.1.1")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getSubstratesProducts"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "substrates", "commentarySubstrates", "literatureSubstrates", "organismSubstrates", "products", "commentaryProducts", "literatureProducts", "organismProducts", "reversibility"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Substrates Products entries (entries separated by !, fields separated by #)
"ecNumber*string#substrates*string#commentarySubstrates*string#literatureSubstrates*string#organismSubstrates*string#products*string#commentaryProducts*string#literatureProducts*string#organismProducts*string#reversibility*string!
 ecNumber*string#substrates*string#commentarySubstrates*string#literatureSubstrates*string#organismSubstrates*string#products*string#commentaryProducts*string#literatureProducts*string#organismProducts*string#reversibility*string!
 ecNumber*string#substrates*string#commentarySubstrates*string#literatureSubstrates*string#organismSubstrates*string#products*string#commentaryProducts*string#literatureProducts*string#organismProducts*string#reversibility*string!
 ..."


Subunits top

128. getEcNumbersFromSubunits()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromSubunits()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromSubunits();

   Python:example code snippet:
resultString = client.getEcNumbersFromSubunits()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromSubunits"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Subunits
"EC Number1!EC Number2!EC Number3!EC Number4!..."

129. getOrganismsFromSubunits()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromSubunits()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromSubunits();

   Python:example code snippet:
resultString = client.getOrganismsFromSubunits()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromSubunits"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Subunits
"Organism1!Organism2!Organism3!Organism4!..."

130. getSubunits(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getSubunits("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getSubunits("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getSubunits("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getSubunits"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "subunits", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Subunits entries (entries separated by !, fields separated by #)
"ecNumber*string#subunits*string#commentary*string#organism*string!
 ecNumber*string#subunits*string#commentary*string#organism*string!
 ecNumber*string#subunits*string#commentary*string#organism*string!
 ..."


Synonyms top

131. getEcNumbersFromSynonyms()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromSynonyms()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromSynonyms();

   Python:example code snippet:
resultString = client.getEcNumbersFromSynonyms()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromSynonyms"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Synonyms
"EC Number1!EC Number2!EC Number3!EC Number4!..."

132. getOrganismsFromSynonyms()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromSynonyms()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromSynonyms();

   Python:example code snippet:
resultString = client.getOrganismsFromSynonyms()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromSynonyms"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Synonyms
"Organism1!Organism2!Organism3!Organism4!..."

133. getSynonyms(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getSynonyms("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getSynonyms("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getSynonyms("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getSynonyms"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "synonyms", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Synonyms entries (entries separated by !, fields separated by #)
"ecNumber*string#synonyms*string#commentary*string#organism*string!
 ecNumber*string#synonyms*string#commentary*string#organism*string!
 ecNumber*string#synonyms*string#commentary*string#organism*string!
 ..."


Systematic Name top

134. getEcNumbersFromSystematicName()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromSystematicName()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromSystematicName();

   Python:example code snippet:
resultString = client.getEcNumbersFromSystematicName()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromSystematicName"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Systematic Name
"EC Number1!EC Number2!EC Number3!EC Number4!..."

135. getSystematicName(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getSystematicName("ecNumber*1.1.1.1")
-> result;


   PHP:example code snippet:
$resultString = $client->getSystematicName("ecNumber*1.1.1.1");

   Python:example code snippet:
resultString = client.getSystematicName("ecNumber*1.1.1.1")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getSystematicName"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "systematicName"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Systematic Name entries (entries separated by !, fields separated by #)
"ecNumber*string#systematicName*string!
 ecNumber*string#systematicName*string!
 ecNumber*string#systematicName*string!
 ..."


Temperature Optimum top

136. getEcNumbersFromTemperatureOptimum()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromTemperatureOptimum()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromTemperatureOptimum();

   Python:example code snippet:
resultString = client.getEcNumbersFromTemperatureOptimum()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromTemperatureOptimum"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Temperature Optimum
"EC Number1!EC Number2!EC Number3!EC Number4!..."

137. getOrganismsFromTemperatureOptimum()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromTemperatureOptimum()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromTemperatureOptimum();

   Python:example code snippet:
resultString = client.getOrganismsFromTemperatureOptimum()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromTemperatureOptimum"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Temperature Optimum
"Organism1!Organism2!Organism3!Organism4!..."

138. getTemperatureOptimum(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getTemperatureOptimum("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getTemperatureOptimum("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getTemperatureOptimum("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getTemperatureOptimum"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "temperatureOptimum", "temperatureOptimumMaximum", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Temperature Optimum entries (entries separated by !, fields separated by #)
"ecNumber*string#temperatureOptimum*string#temperatureOptimumMaximum*string#commentary*string#organism*string!
 ecNumber*string#temperatureOptimum*string#temperatureOptimumMaximum*string#commentary*string#organism*string!
 ecNumber*string#temperatureOptimum*string#temperatureOptimumMaximum*string#commentary*string#organism*string!
 ..."


Temperature Range top

139. getEcNumbersFromTemperatureRange()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromTemperatureRange()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromTemperatureRange();

   Python:example code snippet:
resultString = client.getEcNumbersFromTemperatureRange()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromTemperatureRange"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Temperature Range
"EC Number1!EC Number2!EC Number3!EC Number4!..."

140. getOrganismsFromTemperatureRange()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromTemperatureRange()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromTemperatureRange();

   Python:example code snippet:
resultString = client.getOrganismsFromTemperatureRange()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromTemperatureRange"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Temperature Range
"Organism1!Organism2!Organism3!Organism4!..."

141. getTemperatureRange(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getTemperatureRange("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getTemperatureRange("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getTemperatureRange("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getTemperatureRange"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "temperatureRange", "temperatureRangeMaximum", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Temperature Range entries (entries separated by !, fields separated by #)
"ecNumber*string#temperatureRange*string#temperatureRangeMaximum*string#commentary*string#organism*string!
 ecNumber*string#temperatureRange*string#temperatureRangeMaximum*string#commentary*string#organism*string!
 ecNumber*string#temperatureRange*string#temperatureRangeMaximum*string#commentary*string#organism*string!
 ..."


Temperature Stability top

142. getEcNumbersFromTemperatureStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromTemperatureStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromTemperatureStability();

   Python:example code snippet:
resultString = client.getEcNumbersFromTemperatureStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromTemperatureStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Temperature Stability
"EC Number1!EC Number2!EC Number3!EC Number4!..."

143. getOrganismsFromTemperatureStability()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromTemperatureStability()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromTemperatureStability();

   Python:example code snippet:
resultString = client.getOrganismsFromTemperatureStability()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromTemperatureStability"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Temperature Stability
"Organism1!Organism2!Organism3!Organism4!..."

144. getTemperatureStability(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getTemperatureStability("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getTemperatureStability("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getTemperatureStability("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getTemperatureStability"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "temperatureStability", "temperatureStabilityMaximum", "commentary", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Temperature Stability entries (entries separated by !, fields separated by #)
"ecNumber*string#temperatureStability*string#temperatureStabilityMaximum*string#commentary*string#organism*string!
 ecNumber*string#temperatureStability*string#temperatureStabilityMaximum*string#commentary*string#organism*string!
 ecNumber*string#temperatureStability*string#temperatureStabilityMaximum*string#commentary*string#organism*string!
 ..."


Turnover Number top

145. getEcNumbersFromTurnoverNumber()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getEcNumbersFromTurnoverNumber()
-> result;


   PHP:example code snippet:
$resultString = $client->getEcNumbersFromTurnoverNumber();

   Python:example code snippet:
resultString = client.getEcNumbersFromTurnoverNumber()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromTurnoverNumber"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different EC Numbers (separated by !) linked to Turnover Number
"EC Number1!EC Number2!EC Number3!EC Number4!..."

146. getOrganismsFromTurnoverNumber()

input
no parameters expected
   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getOrganismsFromTurnoverNumber()
-> result;


   PHP:example code snippet:
$resultString = $client->getOrganismsFromTurnoverNumber();

   Python:example code snippet:
resultString = client.getOrganismsFromTurnoverNumber()

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getOrganismsFromTurnoverNumber"));
String resultString = (String) call.invoke( new Object[] {""});

output (all languages, String in the Unicode/UTF-8 format)
   String containing the different Organisms (separated by !) linked to Turnover Number
"Organism1!Organism2!Organism3!Organism4!..."

147. getTurnoverNumber(String)

input
   Input Data Type String (for all languages):
"ecNumber*1.1.1.1#organism*Mus musculus"

   Perl:example code snippet:
$resultString = SOAP::Lite
-> uri('http://www.brenda-enzymes.info/soap2')
-> proxy('http://www.brenda-enzymes.info/soap2/brenda_server.php')
-> getTurnoverNumber("ecNumber*1.1.1.1#organism*Mus musculus")
-> result;


   PHP:example code snippet:
$resultString = $client->getTurnoverNumber("ecNumber*1.1.1.1#organism*Mus musculus");

   Python:example code snippet:
resultString = client.getTurnoverNumber("ecNumber*1.1.1.1#organism*Mus musculus")

   Java:example code snippet:
call.setOperationName(new QName("http://soapinterop.org/", "getTurnoverNumber"));
String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"});

   all languages:Either the key field ecNumber (e.g. "ecNumber*1.1.1.2"), the key field organism (e.g. "organism*Homo sapiens") or both (e.g. "ecNumber*1.1.1.2#organism*Homo sapiens") have to be specified. If none of these key fields is used as an input parameter, an empty String will be returned by the SOAP query.
In addition, the following optional parameters can be specified: "turnoverNumber", "turnoverNumberMaximum", "substrate", "commentary", "ligandStructureId", "literature"
output (all languages, String in the Unicode/UTF-8 format)
   String containing the Turnover Number entries (entries separated by !, fields separated by #)
"ecNumber*string#turnoverNumber*string#turnoverNumberMaximum*string#substrate*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#turnoverNumber*string#turnoverNumberMaximum*string#substrate*string#commentary*string#organism*string#ligandStructureId*string!
 ecNumber*string#turnoverNumber*string#turnoverNumberMaximum*string#substrate*string#commentary*string#organism*string#ligandStructureId*string!
 ..."