Find all the terms descended from a given term. By default searches are conducted within the namespace of the given identifier
Name | Type | Description | Default | Example Values |
---|---|---|---|---|
id | String | An ontology term identifier | - |
GO:0005667 |
Name | Type | Description | Default | Example Values |
---|---|---|---|---|
callback | String | Name of the callback subroutine to be returned by the requested JSONP response. Required ONLY when using JSONP as the serialisation method. Please see the user guide. | - |
randomlygeneratedname |
closest_term | Boolean | If true return only the closest terms to the specified term | - | - |
ontology | String | Filter by ontology. Used to disambiguate terms which are shared between ontologies such as GO and EFO | - |
GO |
subset | String | Filter terms by the specified subset | - |
goslim_generic goslim_metagenomics |
zero_distance | Boolean | Return terms with a distance of 0 | - | - |
[
{
"synonyms": [],
"ontology": "GO",
"namespace": "cellular_component",
"name": "protein-containing complex",
"subsets": [
"goslim_agr",
"goslim_chembl",
"goslim_flybase_ribbon",
"goslim_mouse",
"goslim_pir"
],
"definition": "A stable assembly of two or more macromolecules, i.e. proteins, nucleic acids, carbohydrates or lipids, in which at least one component is a protein and the constituent parts function together.",
"accession": "GO:0032991"
},
{
"accession": "GO:0005575",
"definition": "A location, relative to cellular compartments and structures, occupied by a macromolecular machine when it carries out a molecular function. There are two ways in which the gene ontology describes locations of gene products: (1) relative to cellular structures (e.g., cytoplasmic side of plasma membrane) or compartments (e.g., mitochondrion), and (2) the stable macromolecular complexes of which they are parts (e.g., the ribosome).",
"synonyms": [
"subcellular entity"
],
"ontology": "GO",
"namespace": "cellular_component",
"subsets": [
"goslim_candida",
"goslim_chembl",
"goslim_metagenomics",
"goslim_pir",
"goslim_plant",
"goslim_yeast"
],
"name": "cellular_component"
}
]
- use strict;
- use warnings;
- use HTTP::Tiny;
- my $http = HTTP::Tiny->new();
- my $server = 'https://parasite.wormbase.org';
- my $ext = '/rest-19/ontology/descendants/GO:0005667?';
- my $response = $http->get($server.$ext, {
- headers => { 'Content-type' => 'application/json' }
- });
- die "Failed!\n" unless $response->{success};
- use JSON;
- use Data::Dumper;
- if(length $response->{content}) {
- my $hash = decode_json($response->{content});
- local $Data::Dumper::Terse = 1;
- local $Data::Dumper::Indent = 1;
- print Dumper $hash;
- print "\n";
- }
- import requests, sys
- server = "https://parasite.wormbase.org"
- ext = "/rest-19/ontology/descendants/GO:0005667?"
- r = requests.get(server+ext, headers={ "Content-Type" : "application/json", "Accept" : ""})
- if not r.ok:
- r.raise_for_status()
- sys.exit()
- decoded = r.json()
- print repr(decoded)
- import requests, sys
- server = "https://parasite.wormbase.org"
- ext = "/rest-19/ontology/descendants/GO:0005667?"
- r = requests.get(server+ext, headers={ "Content-Type" : "application/json", "Accept" : ""})
- if not r.ok:
- r.raise_for_status()
- sys.exit()
- decoded = r.json()
- print(repr(decoded))
- require 'net/http'
- require 'uri'
- server='https://parasite.wormbase.org'
- path = '/rest-19/ontology/descendants/GO:0005667?'
- url = URI.parse(server)
- http = Net::HTTP.new(url.host, url.port)
- request = Net::HTTP::Get.new(path, {'Content-Type' => 'application/json'})
- response = http.request(request)
- if response.code != "200"
- puts "Invalid response: #{response.code}"
- puts response.body
- exit
- end
- require 'rubygems'
- require 'json'
- require 'yaml'
- result = JSON.parse(response.body)
- puts YAML::dump(result)
- import java.net.URL;
- import java.net.URLConnection;
- import java.net.HttpURLConnection;
- import java.io.BufferedReader;
- import java.io.InputStream;
- import java.io.InputStreamReader;
- import java.io.IOException;
- import java.io.Reader;
- public class EnsemblRest {
- public static void main(String[] args) throws Exception {
- String server = "https://parasite.wormbase.org";
- String ext = "/rest-19/ontology/descendants/GO:0005667?";
- URL url = new URL(server + ext);
- URLConnection connection = url.openConnection();
- HttpURLConnection httpConnection = (HttpURLConnection)connection;
- httpConnection.setRequestProperty("Content-Type", "application/json");
- InputStream response = connection.getInputStream();
- int responseCode = httpConnection.getResponseCode();
- if(responseCode != 200) {
- throw new RuntimeException("Response code was not 200. Detected response was "+responseCode);
- }
- String output;
- Reader reader = null;
- try {
- reader = new BufferedReader(new InputStreamReader(response, "UTF-8"));
- StringBuilder builder = new StringBuilder();
- char[] buffer = new char[8192];
- int read;
- while ((read = reader.read(buffer, 0, buffer.length)) > 0) {
- builder.append(buffer, 0, read);
- }
- output = builder.toString();
- }
- finally {
- if (reader != null) try {
- reader.close();
- } catch (IOException logOrIgnore) {
- logOrIgnore.printStackTrace();
- }
- }
- System.out.println(output);
- }
- }
- curl 'https://parasite.wormbase.org/rest-19/ontology/descendants/GO:0005667?' -H 'Content-type:application/json'
- wget -q --header='Content-type:application/json' 'https://parasite.wormbase.org/rest-19/ontology/descendants/GO:0005667?' -O -
Methods | GET |
Response formats | json xml jsonp |