repository_name
stringlengths
7
55
func_path_in_repository
stringlengths
4
223
func_name
stringlengths
1
134
whole_func_string
stringlengths
75
104k
language
stringclasses
1 value
func_code_string
stringlengths
75
104k
func_code_tokens
listlengths
19
28.4k
func_documentation_string
stringlengths
1
46.9k
func_documentation_tokens
listlengths
1
1.97k
split_name
stringclasses
1 value
func_code_url
stringlengths
87
315
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
OBOReader._add_to_ref
def _add_to_ref(self, rec_curr, line, lnum): """Add new fields to the current reference.""" # Written by DV Klopfenstein # Examples of record lines containing ':' include: # id: GO:0000002 # name: mitochondrial genome maintenance # namespace: biological_process ...
python
def _add_to_ref(self, rec_curr, line, lnum): """Add new fields to the current reference.""" # Written by DV Klopfenstein # Examples of record lines containing ':' include: # id: GO:0000002 # name: mitochondrial genome maintenance # namespace: biological_process ...
[ "def", "_add_to_ref", "(", "self", ",", "rec_curr", ",", "line", ",", "lnum", ")", ":", "# Written by DV Klopfenstein", "# Examples of record lines containing ':' include:", "# id: GO:0000002", "# name: mitochondrial genome maintenance", "# namespace: biological_process", "# ...
Add new fields to the current reference.
[ "Add", "new", "fields", "to", "the", "current", "reference", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L130-L161
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
OBOReader.update_rec
def update_rec(self, rec, name, value): """Update current GOTerm with optional record.""" # 'def' is a reserved word in python, do not use it as a Class attr. if name == "def": name = "defn" # If we have a relationship, then we will split this into a further # dictio...
python
def update_rec(self, rec, name, value): """Update current GOTerm with optional record.""" # 'def' is a reserved word in python, do not use it as a Class attr. if name == "def": name = "defn" # If we have a relationship, then we will split this into a further # dictio...
[ "def", "update_rec", "(", "self", ",", "rec", ",", "name", ",", "value", ")", ":", "# 'def' is a reserved word in python, do not use it as a Class attr.", "if", "name", "==", "\"def\"", ":", "name", "=", "\"defn\"", "# If we have a relationship, then we will split this into...
Update current GOTerm with optional record.
[ "Update", "current", "GOTerm", "with", "optional", "record", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L163-L189
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
OBOReader._add_to_typedef
def _add_to_typedef(self, typedef_curr, line, lnum): """Add new fields to the current typedef.""" mtch = re.match(r'^(\S+):\s*(\S.*)$', line) if mtch: field_name = mtch.group(1) field_value = mtch.group(2).split('!')[0].rstrip() if field_name == "id": ...
python
def _add_to_typedef(self, typedef_curr, line, lnum): """Add new fields to the current typedef.""" mtch = re.match(r'^(\S+):\s*(\S.*)$', line) if mtch: field_name = mtch.group(1) field_value = mtch.group(2).split('!')[0].rstrip() if field_name == "id": ...
[ "def", "_add_to_typedef", "(", "self", ",", "typedef_curr", ",", "line", ",", "lnum", ")", ":", "mtch", "=", "re", ".", "match", "(", "r'^(\\S+):\\s*(\\S.*)$'", ",", "line", ")", "if", "mtch", ":", "field_name", "=", "mtch", ".", "group", "(", "1", ")"...
Add new fields to the current typedef.
[ "Add", "new", "fields", "to", "the", "current", "typedef", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L191-L211
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
OBOReader._add_nested
def _add_nested(self, rec, name, value): """Adds a term's nested attributes.""" # Remove comments and split term into typedef / target term. (typedef, target_term) = value.split('!')[0].rstrip().split(' ') # Save the nested term. getattr(rec, name)[typedef].append(target_term)
python
def _add_nested(self, rec, name, value): """Adds a term's nested attributes.""" # Remove comments and split term into typedef / target term. (typedef, target_term) = value.split('!')[0].rstrip().split(' ') # Save the nested term. getattr(rec, name)[typedef].append(target_term)
[ "def", "_add_nested", "(", "self", ",", "rec", ",", "name", ",", "value", ")", ":", "# Remove comments and split term into typedef / target term.", "(", "typedef", ",", "target_term", ")", "=", "value", ".", "split", "(", "'!'", ")", "[", "0", "]", ".", "rst...
Adds a term's nested attributes.
[ "Adds", "a", "term", "s", "nested", "attributes", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L213-L219
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
OBOReader._init_optional_attrs
def _init_optional_attrs(self, optional_attrs): """Prepare to store data from user-desired optional fields. Not loading these optional fields by default saves in space and speed. But allow the possibility for saving these fields, if the user desires, Including: com...
python
def _init_optional_attrs(self, optional_attrs): """Prepare to store data from user-desired optional fields. Not loading these optional fields by default saves in space and speed. But allow the possibility for saving these fields, if the user desires, Including: com...
[ "def", "_init_optional_attrs", "(", "self", ",", "optional_attrs", ")", ":", "# Written by DV Klopfenstein", "# Required attributes are always loaded. All others are optionally loaded.", "self", ".", "attrs_req", "=", "[", "'id'", ",", "'alt_id'", ",", "'name'", ",", "'name...
Prepare to store data from user-desired optional fields. Not loading these optional fields by default saves in space and speed. But allow the possibility for saving these fields, if the user desires, Including: comment consider def is_class_level is_metadata_tag is_transit...
[ "Prepare", "to", "store", "data", "from", "user", "-", "desired", "optional", "fields", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L221-L248
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
OBOReader._die
def _die(self, msg, lnum): """Raise an Exception if file read is unexpected.""" raise Exception("**FATAL {FILE}({LNUM}): {MSG}\n".format( FILE=self.obo_file, LNUM=lnum, MSG=msg))
python
def _die(self, msg, lnum): """Raise an Exception if file read is unexpected.""" raise Exception("**FATAL {FILE}({LNUM}): {MSG}\n".format( FILE=self.obo_file, LNUM=lnum, MSG=msg))
[ "def", "_die", "(", "self", ",", "msg", ",", "lnum", ")", ":", "raise", "Exception", "(", "\"**FATAL {FILE}({LNUM}): {MSG}\\n\"", ".", "format", "(", "FILE", "=", "self", ".", "obo_file", ",", "LNUM", "=", "lnum", ",", "MSG", "=", "msg", ")", ")" ]
Raise an Exception if file read is unexpected.
[ "Raise", "an", "Exception", "if", "file", "read", "is", "unexpected", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L251-L254
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
GOTerm.write_hier_rec
def write_hier_rec(self, gos_printed, out=sys.stdout, len_dash=1, max_depth=None, num_child=None, short_prt=False, include_only=None, go_marks=None, depth=1, dp="-"): """Write hierarchy for a GO Term record.""" # Added by DV Klopfenstein ...
python
def write_hier_rec(self, gos_printed, out=sys.stdout, len_dash=1, max_depth=None, num_child=None, short_prt=False, include_only=None, go_marks=None, depth=1, dp="-"): """Write hierarchy for a GO Term record.""" # Added by DV Klopfenstein ...
[ "def", "write_hier_rec", "(", "self", ",", "gos_printed", ",", "out", "=", "sys", ".", "stdout", ",", "len_dash", "=", "1", ",", "max_depth", "=", "None", ",", "num_child", "=", "None", ",", "short_prt", "=", "False", ",", "include_only", "=", "None", ...
Write hierarchy for a GO Term record.
[ "Write", "hierarchy", "for", "a", "GO", "Term", "record", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L349-L385
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
GODag.write_hier_all
def write_hier_all(self, out=sys.stdout, len_dash=1, max_depth=None, num_child=None, short_prt=False): """Write hierarchy for all GO Terms in obo file.""" # Print: [biological_process, molecular_function, and cellular_component] for go_id in ['GO:0008150', 'GO:0003674', 'GO...
python
def write_hier_all(self, out=sys.stdout, len_dash=1, max_depth=None, num_child=None, short_prt=False): """Write hierarchy for all GO Terms in obo file.""" # Print: [biological_process, molecular_function, and cellular_component] for go_id in ['GO:0008150', 'GO:0003674', 'GO...
[ "def", "write_hier_all", "(", "self", ",", "out", "=", "sys", ".", "stdout", ",", "len_dash", "=", "1", ",", "max_depth", "=", "None", ",", "num_child", "=", "None", ",", "short_prt", "=", "False", ")", ":", "# Print: [biological_process, molecular_function, a...
Write hierarchy for all GO Terms in obo file.
[ "Write", "hierarchy", "for", "all", "GO", "Terms", "in", "obo", "file", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L492-L497
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
GODag.write_hier
def write_hier(self, GO_id, out=sys.stdout, len_dash=1, max_depth=None, num_child=None, short_prt=False, include_only=None, go_marks=None): """Write hierarchy for a GO Term.""" gos_printed = set() self[GO_id].write_hier_rec(gos_printed, out, len_dash...
python
def write_hier(self, GO_id, out=sys.stdout, len_dash=1, max_depth=None, num_child=None, short_prt=False, include_only=None, go_marks=None): """Write hierarchy for a GO Term.""" gos_printed = set() self[GO_id].write_hier_rec(gos_printed, out, len_dash...
[ "def", "write_hier", "(", "self", ",", "GO_id", ",", "out", "=", "sys", ".", "stdout", ",", "len_dash", "=", "1", ",", "max_depth", "=", "None", ",", "num_child", "=", "None", ",", "short_prt", "=", "False", ",", "include_only", "=", "None", ",", "go...
Write hierarchy for a GO Term.
[ "Write", "hierarchy", "for", "a", "GO", "Term", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L499-L505
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
GODag.paths_to_top
def paths_to_top(self, term): """ Returns all possible paths to the root node Each path includes the term given. The order of the path is top -> bottom, i.e. it starts with the root and ends with the given term (inclusively). Parameters: ----------- ...
python
def paths_to_top(self, term): """ Returns all possible paths to the root node Each path includes the term given. The order of the path is top -> bottom, i.e. it starts with the root and ends with the given term (inclusively). Parameters: ----------- ...
[ "def", "paths_to_top", "(", "self", ",", "term", ")", ":", "# error handling consistent with original authors", "if", "term", "not", "in", "self", ":", "print", "(", "\"Term %s not found!\"", "%", "term", ",", "file", "=", "sys", ".", "stderr", ")", "return", ...
Returns all possible paths to the root node Each path includes the term given. The order of the path is top -> bottom, i.e. it starts with the root and ends with the given term (inclusively). Parameters: ----------- - term: the id...
[ "Returns", "all", "possible", "paths", "to", "the", "root", "node" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L522-L556
ga4gh/ga4gh-server
ga4gh/server/datamodel/obo_parser.py
GODag.make_graph_pydot
def make_graph_pydot(self, recs, nodecolor, edgecolor, dpi, draw_parents=True, draw_children=True): """draw AMIGO style network, lineage containing one query record.""" import pydot G = pydot.Dot(graph_type='digraph', dpi="{}".format(dpi)) # Directed Gra...
python
def make_graph_pydot(self, recs, nodecolor, edgecolor, dpi, draw_parents=True, draw_children=True): """draw AMIGO style network, lineage containing one query record.""" import pydot G = pydot.Dot(graph_type='digraph', dpi="{}".format(dpi)) # Directed Gra...
[ "def", "make_graph_pydot", "(", "self", ",", "recs", ",", "nodecolor", ",", "edgecolor", ",", "dpi", ",", "draw_parents", "=", "True", ",", "draw_children", "=", "True", ")", ":", "import", "pydot", "G", "=", "pydot", ".", "Dot", "(", "graph_type", "=", ...
draw AMIGO style network, lineage containing one query record.
[ "draw", "AMIGO", "style", "network", "lineage", "containing", "one", "query", "record", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/obo_parser.py#L563-L601
ga4gh/ga4gh-server
ga4gh/server/sqlite_backend.py
sqliteRowsToDicts
def sqliteRowsToDicts(sqliteRows): """ Unpacks sqlite rows as returned by fetchall into an array of simple dicts. :param sqliteRows: array of rows returned from fetchall DB call :return: array of dicts, keyed by the column names. """ return map(lambda r: dict(zip(r.keys(), r)), sqliteRows)
python
def sqliteRowsToDicts(sqliteRows): """ Unpacks sqlite rows as returned by fetchall into an array of simple dicts. :param sqliteRows: array of rows returned from fetchall DB call :return: array of dicts, keyed by the column names. """ return map(lambda r: dict(zip(r.keys(), r)), sqliteRows)
[ "def", "sqliteRowsToDicts", "(", "sqliteRows", ")", ":", "return", "map", "(", "lambda", "r", ":", "dict", "(", "zip", "(", "r", ".", "keys", "(", ")", ",", "r", ")", ")", ",", "sqliteRows", ")" ]
Unpacks sqlite rows as returned by fetchall into an array of simple dicts. :param sqliteRows: array of rows returned from fetchall DB call :return: array of dicts, keyed by the column names.
[ "Unpacks", "sqlite", "rows", "as", "returned", "by", "fetchall", "into", "an", "array", "of", "simple", "dicts", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/sqlite_backend.py#L13-L21
ga4gh/ga4gh-server
ga4gh/server/sqlite_backend.py
limitsSql
def limitsSql(startIndex=0, maxResults=0): """ Construct a SQL LIMIT clause """ if startIndex and maxResults: return " LIMIT {}, {}".format(startIndex, maxResults) elif startIndex: raise Exception("startIndex was provided, but maxResults was not") elif maxResults: return ...
python
def limitsSql(startIndex=0, maxResults=0): """ Construct a SQL LIMIT clause """ if startIndex and maxResults: return " LIMIT {}, {}".format(startIndex, maxResults) elif startIndex: raise Exception("startIndex was provided, but maxResults was not") elif maxResults: return ...
[ "def", "limitsSql", "(", "startIndex", "=", "0", ",", "maxResults", "=", "0", ")", ":", "if", "startIndex", "and", "maxResults", ":", "return", "\" LIMIT {}, {}\"", ".", "format", "(", "startIndex", ",", "maxResults", ")", "elif", "startIndex", ":", "raise",...
Construct a SQL LIMIT clause
[ "Construct", "a", "SQL", "LIMIT", "clause" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/sqlite_backend.py#L35-L46
ga4gh/ga4gh-server
ga4gh/server/sqlite_backend.py
iterativeFetch
def iterativeFetch(query, batchSize=default_batch_size): """ Returns rows of a sql fetch query on demand """ while True: rows = query.fetchmany(batchSize) if not rows: break rowDicts = sqliteRowsToDicts(rows) for rowDict in rowDicts: yield rowDict
python
def iterativeFetch(query, batchSize=default_batch_size): """ Returns rows of a sql fetch query on demand """ while True: rows = query.fetchmany(batchSize) if not rows: break rowDicts = sqliteRowsToDicts(rows) for rowDict in rowDicts: yield rowDict
[ "def", "iterativeFetch", "(", "query", ",", "batchSize", "=", "default_batch_size", ")", ":", "while", "True", ":", "rows", "=", "query", ".", "fetchmany", "(", "batchSize", ")", "if", "not", "rows", ":", "break", "rowDicts", "=", "sqliteRowsToDicts", "(", ...
Returns rows of a sql fetch query on demand
[ "Returns", "rows", "of", "a", "sql", "fetch", "query", "on", "demand" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/sqlite_backend.py#L52-L62
ga4gh/ga4gh-server
ga4gh/server/paging.py
_parsePageToken
def _parsePageToken(pageToken, numValues): """ Parses the specified pageToken and returns a list of the specified number of values. Page tokens are assumed to consist of a fixed number of integers seperated by colons. If the page token does not conform to this specification, raise a InvalidPageToken...
python
def _parsePageToken(pageToken, numValues): """ Parses the specified pageToken and returns a list of the specified number of values. Page tokens are assumed to consist of a fixed number of integers seperated by colons. If the page token does not conform to this specification, raise a InvalidPageToken...
[ "def", "_parsePageToken", "(", "pageToken", ",", "numValues", ")", ":", "tokens", "=", "pageToken", ".", "split", "(", "\":\"", ")", "if", "len", "(", "tokens", ")", "!=", "numValues", ":", "msg", "=", "\"Invalid number of values in page token\"", "raise", "ex...
Parses the specified pageToken and returns a list of the specified number of values. Page tokens are assumed to consist of a fixed number of integers seperated by colons. If the page token does not conform to this specification, raise a InvalidPageToken exception.
[ "Parses", "the", "specified", "pageToken", "and", "returns", "a", "list", "of", "the", "specified", "number", "of", "values", ".", "Page", "tokens", "are", "assumed", "to", "consist", "of", "a", "fixed", "number", "of", "integers", "seperated", "by", "colons...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/paging.py#L13-L30
ga4gh/ga4gh-server
ga4gh/server/paging.py
_parseIntegerArgument
def _parseIntegerArgument(args, key, defaultValue): """ Attempts to parse the specified key in the specified argument dictionary into an integer. If the argument cannot be parsed, raises a BadRequestIntegerException. If the key is not present, return the specified default value. """ ret = de...
python
def _parseIntegerArgument(args, key, defaultValue): """ Attempts to parse the specified key in the specified argument dictionary into an integer. If the argument cannot be parsed, raises a BadRequestIntegerException. If the key is not present, return the specified default value. """ ret = de...
[ "def", "_parseIntegerArgument", "(", "args", ",", "key", ",", "defaultValue", ")", ":", "ret", "=", "defaultValue", "try", ":", "if", "key", "in", "args", ":", "try", ":", "ret", "=", "int", "(", "args", "[", "key", "]", ")", "except", "ValueError", ...
Attempts to parse the specified key in the specified argument dictionary into an integer. If the argument cannot be parsed, raises a BadRequestIntegerException. If the key is not present, return the specified default value.
[ "Attempts", "to", "parse", "the", "specified", "key", "in", "the", "specified", "argument", "dictionary", "into", "an", "integer", ".", "If", "the", "argument", "cannot", "be", "parsed", "raises", "a", "BadRequestIntegerException", ".", "If", "the", "key", "is...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/paging.py#L33-L49
ga4gh/ga4gh-server
ga4gh/server/paging.py
IntervalIterator._initialiseIteration
def _initialiseIteration(self): """ Starts a new iteration. """ self._searchIterator = self._search( self._request.start, self._request.end if self._request.end != 0 else None) self._currentObject = next(self._searchIterator, None) if self._current...
python
def _initialiseIteration(self): """ Starts a new iteration. """ self._searchIterator = self._search( self._request.start, self._request.end if self._request.end != 0 else None) self._currentObject = next(self._searchIterator, None) if self._current...
[ "def", "_initialiseIteration", "(", "self", ")", ":", "self", ".", "_searchIterator", "=", "self", ".", "_search", "(", "self", ".", "_request", ".", "start", ",", "self", ".", "_request", ".", "end", "if", "self", ".", "_request", ".", "end", "!=", "0...
Starts a new iteration.
[ "Starts", "a", "new", "iteration", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/paging.py#L83-L97
ga4gh/ga4gh-server
ga4gh/server/paging.py
IntervalIterator._pickUpIteration
def _pickUpIteration(self, searchAnchor, objectsToSkip): """ Picks up iteration from a previously provided page token. There are two different phases here: 1) We are iterating over the initial set of intervals in which start is < the search start coorindate. 2) We are ite...
python
def _pickUpIteration(self, searchAnchor, objectsToSkip): """ Picks up iteration from a previously provided page token. There are two different phases here: 1) We are iterating over the initial set of intervals in which start is < the search start coorindate. 2) We are ite...
[ "def", "_pickUpIteration", "(", "self", ",", "searchAnchor", ",", "objectsToSkip", ")", ":", "self", ".", "_searchAnchor", "=", "searchAnchor", "self", ".", "_distanceFromAnchor", "=", "objectsToSkip", "self", ".", "_searchIterator", "=", "self", ".", "_search", ...
Picks up iteration from a previously provided page token. There are two different phases here: 1) We are iterating over the initial set of intervals in which start is < the search start coorindate. 2) We are iterating over the remaining intervals in which start >= to the search s...
[ "Picks", "up", "iteration", "from", "a", "previously", "provided", "page", "token", ".", "There", "are", "two", "different", "phases", "here", ":", "1", ")", "We", "are", "iterating", "over", "the", "initial", "set", "of", "intervals", "in", "which", "star...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/paging.py#L99-L132
ga4gh/ga4gh-server
ga4gh/server/paging.py
IntervalIterator.next
def next(self): """ Returns the next (object, nextPageToken) pair. """ if self._currentObject is None: raise StopIteration() nextPageToken = None if self._nextObject is not None: start = self._getStart(self._nextObject) # If start > the...
python
def next(self): """ Returns the next (object, nextPageToken) pair. """ if self._currentObject is None: raise StopIteration() nextPageToken = None if self._nextObject is not None: start = self._getStart(self._nextObject) # If start > the...
[ "def", "next", "(", "self", ")", ":", "if", "self", ".", "_currentObject", "is", "None", ":", "raise", "StopIteration", "(", ")", "nextPageToken", "=", "None", "if", "self", ".", "_nextObject", "is", "not", "None", ":", "start", "=", "self", ".", "_get...
Returns the next (object, nextPageToken) pair.
[ "Returns", "the", "next", "(", "object", "nextPageToken", ")", "pair", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/paging.py#L134-L155
ga4gh/ga4gh-server
ga4gh/server/paging.py
VariantAnnotationsIntervalIterator.filterVariantAnnotation
def filterVariantAnnotation(self, vann): """ Returns true when an annotation should be included. """ # TODO reintroduce feature ID search ret = False if len(self._effects) != 0 and not vann.transcript_effects: return False elif len(self._effects) == 0:...
python
def filterVariantAnnotation(self, vann): """ Returns true when an annotation should be included. """ # TODO reintroduce feature ID search ret = False if len(self._effects) != 0 and not vann.transcript_effects: return False elif len(self._effects) == 0:...
[ "def", "filterVariantAnnotation", "(", "self", ",", "vann", ")", ":", "# TODO reintroduce feature ID search", "ret", "=", "False", "if", "len", "(", "self", ".", "_effects", ")", "!=", "0", "and", "not", "vann", ".", "transcript_effects", ":", "return", "False...
Returns true when an annotation should be included.
[ "Returns", "true", "when", "an", "annotation", "should", "be", "included", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/paging.py#L246-L259
ga4gh/ga4gh-server
ga4gh/server/paging.py
VariantAnnotationsIntervalIterator.filterEffect
def filterEffect(self, teff): """ Returns true when any of the transcript effects are present in the request. """ ret = False for effect in teff.effects: ret = self._matchAnyEffects(effect) or ret return ret
python
def filterEffect(self, teff): """ Returns true when any of the transcript effects are present in the request. """ ret = False for effect in teff.effects: ret = self._matchAnyEffects(effect) or ret return ret
[ "def", "filterEffect", "(", "self", ",", "teff", ")", ":", "ret", "=", "False", "for", "effect", "in", "teff", ".", "effects", ":", "ret", "=", "self", ".", "_matchAnyEffects", "(", "effect", ")", "or", "ret", "return", "ret" ]
Returns true when any of the transcript effects are present in the request.
[ "Returns", "true", "when", "any", "of", "the", "transcript", "effects", "are", "present", "in", "the", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/paging.py#L261-L269
ga4gh/ga4gh-server
ga4gh/server/paging.py
VariantAnnotationsIntervalIterator._checkIdEquality
def _checkIdEquality(self, requestedEffect, effect): """ Tests whether a requested effect and an effect present in an annotation are equal. """ return self._idPresent(requestedEffect) and ( effect.term_id == requestedEffect.term_id)
python
def _checkIdEquality(self, requestedEffect, effect): """ Tests whether a requested effect and an effect present in an annotation are equal. """ return self._idPresent(requestedEffect) and ( effect.term_id == requestedEffect.term_id)
[ "def", "_checkIdEquality", "(", "self", ",", "requestedEffect", ",", "effect", ")", ":", "return", "self", ".", "_idPresent", "(", "requestedEffect", ")", "and", "(", "effect", ".", "term_id", "==", "requestedEffect", ".", "term_id", ")" ]
Tests whether a requested effect and an effect present in an annotation are equal.
[ "Tests", "whether", "a", "requested", "effect", "and", "an", "effect", "present", "in", "an", "annotation", "are", "equal", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/paging.py#L271-L277
ga4gh/ga4gh-server
scripts/glue.py
ga4ghImportGlue
def ga4ghImportGlue(): """ Call this method before importing a ga4gh module in the scripts dir. Otherwise, you will be using the installed package instead of the development package. Assumes a certain directory structure. """ path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))...
python
def ga4ghImportGlue(): """ Call this method before importing a ga4gh module in the scripts dir. Otherwise, you will be using the installed package instead of the development package. Assumes a certain directory structure. """ path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))...
[ "def", "ga4ghImportGlue", "(", ")", ":", "path", "=", "os", ".", "path", ".", "dirname", "(", "os", ".", "path", ".", "dirname", "(", "os", ".", "path", ".", "abspath", "(", "__file__", ")", ")", ")", "sys", ".", "path", ".", "append", "(", "path...
Call this method before importing a ga4gh module in the scripts dir. Otherwise, you will be using the installed package instead of the development package. Assumes a certain directory structure.
[ "Call", "this", "method", "before", "importing", "a", "ga4gh", "module", "in", "the", "scripts", "dir", ".", "Otherwise", "you", "will", "be", "using", "the", "installed", "package", "instead", "of", "the", "development", "package", ".", "Assumes", "a", "cer...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/scripts/glue.py#L16-L24
ga4gh/ga4gh-server
ga4gh/server/datamodel/__init__.py
PysamFileHandleCache._update
def _update(self, dataFile, handle): """ Update the priority of the file handle. The element is first removed and then added to the left of the deque. """ self._cache.remove((dataFile, handle)) self._add(dataFile, handle)
python
def _update(self, dataFile, handle): """ Update the priority of the file handle. The element is first removed and then added to the left of the deque. """ self._cache.remove((dataFile, handle)) self._add(dataFile, handle)
[ "def", "_update", "(", "self", ",", "dataFile", ",", "handle", ")", ":", "self", ".", "_cache", ".", "remove", "(", "(", "dataFile", ",", "handle", ")", ")", "self", ".", "_add", "(", "dataFile", ",", "handle", ")" ]
Update the priority of the file handle. The element is first removed and then added to the left of the deque.
[ "Update", "the", "priority", "of", "the", "file", "handle", ".", "The", "element", "is", "first", "removed", "and", "then", "added", "to", "the", "left", "of", "the", "deque", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/__init__.py#L50-L56
ga4gh/ga4gh-server
ga4gh/server/datamodel/__init__.py
PysamFileHandleCache._removeLru
def _removeLru(self): """ Remove the least recently used file handle from the cache. The pop method removes an element from the right of the deque. Returns the name of the file that has been removed. """ (dataFile, handle) = self._cache.pop() handle.close() ...
python
def _removeLru(self): """ Remove the least recently used file handle from the cache. The pop method removes an element from the right of the deque. Returns the name of the file that has been removed. """ (dataFile, handle) = self._cache.pop() handle.close() ...
[ "def", "_removeLru", "(", "self", ")", ":", "(", "dataFile", ",", "handle", ")", "=", "self", ".", "_cache", ".", "pop", "(", ")", "handle", ".", "close", "(", ")", "return", "dataFile" ]
Remove the least recently used file handle from the cache. The pop method removes an element from the right of the deque. Returns the name of the file that has been removed.
[ "Remove", "the", "least", "recently", "used", "file", "handle", "from", "the", "cache", ".", "The", "pop", "method", "removes", "an", "element", "from", "the", "right", "of", "the", "deque", ".", "Returns", "the", "name", "of", "the", "file", "that", "ha...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/__init__.py#L58-L66
ga4gh/ga4gh-server
ga4gh/server/datamodel/__init__.py
PysamFileHandleCache.getFileHandle
def getFileHandle(self, dataFile, openMethod): """ Returns handle associated to the filename. If the file is already opened, update its priority in the cache and return its handle. Otherwise, open the file using openMethod, store it in the cache and return the corresponding handl...
python
def getFileHandle(self, dataFile, openMethod): """ Returns handle associated to the filename. If the file is already opened, update its priority in the cache and return its handle. Otherwise, open the file using openMethod, store it in the cache and return the corresponding handl...
[ "def", "getFileHandle", "(", "self", ",", "dataFile", ",", "openMethod", ")", ":", "if", "dataFile", "in", "self", ".", "_memoTable", ":", "handle", "=", "self", ".", "_memoTable", "[", "dataFile", "]", "self", ".", "_update", "(", "dataFile", ",", "hand...
Returns handle associated to the filename. If the file is already opened, update its priority in the cache and return its handle. Otherwise, open the file using openMethod, store it in the cache and return the corresponding handle.
[ "Returns", "handle", "associated", "to", "the", "filename", ".", "If", "the", "file", "is", "already", "opened", "update", "its", "priority", "in", "the", "cache", "and", "return", "its", "handle", ".", "Otherwise", "open", "the", "file", "using", "openMetho...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/__init__.py#L68-L90
ga4gh/ga4gh-server
ga4gh/server/datamodel/__init__.py
CompoundId.join
def join(cls, splits): """ Join an array of ids into a compound id string """ segments = [] for split in splits: segments.append('"{}",'.format(split)) if len(segments) > 0: segments[-1] = segments[-1][:-1] jsonString = '[{}]'.format(''.joi...
python
def join(cls, splits): """ Join an array of ids into a compound id string """ segments = [] for split in splits: segments.append('"{}",'.format(split)) if len(segments) > 0: segments[-1] = segments[-1][:-1] jsonString = '[{}]'.format(''.joi...
[ "def", "join", "(", "cls", ",", "splits", ")", ":", "segments", "=", "[", "]", "for", "split", "in", "splits", ":", "segments", ".", "append", "(", "'\"{}\",'", ".", "format", "(", "split", ")", ")", "if", "len", "(", "segments", ")", ">", "0", "...
Join an array of ids into a compound id string
[ "Join", "an", "array", "of", "ids", "into", "a", "compound", "id", "string" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/__init__.py#L172-L182
ga4gh/ga4gh-server
ga4gh/server/datamodel/__init__.py
CompoundId.parse
def parse(cls, compoundIdStr): """ Parses the specified compoundId string and returns an instance of this CompoundId class. :raises: An ObjectWithIdNotFoundException if parsing fails. This is because this method is a client-facing method, and if a malformed identifier (u...
python
def parse(cls, compoundIdStr): """ Parses the specified compoundId string and returns an instance of this CompoundId class. :raises: An ObjectWithIdNotFoundException if parsing fails. This is because this method is a client-facing method, and if a malformed identifier (u...
[ "def", "parse", "(", "cls", ",", "compoundIdStr", ")", ":", "if", "not", "isinstance", "(", "compoundIdStr", ",", "basestring", ")", ":", "raise", "exceptions", ".", "BadIdentifierException", "(", "compoundIdStr", ")", "try", ":", "deobfuscated", "=", "cls", ...
Parses the specified compoundId string and returns an instance of this CompoundId class. :raises: An ObjectWithIdNotFoundException if parsing fails. This is because this method is a client-facing method, and if a malformed identifier (under our internal rules) is provided, the response ...
[ "Parses", "the", "specified", "compoundId", "string", "and", "returns", "an", "instance", "of", "this", "CompoundId", "class", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/__init__.py#L207-L247
ga4gh/ga4gh-server
ga4gh/server/datamodel/__init__.py
CompoundId.obfuscate
def obfuscate(cls, idStr): """ Mildly obfuscates the specified ID string in an easily reversible fashion. This is not intended for security purposes, but rather to dissuade users from depending on our internal ID structures. """ return unicode(base64.urlsafe_b64encode( ...
python
def obfuscate(cls, idStr): """ Mildly obfuscates the specified ID string in an easily reversible fashion. This is not intended for security purposes, but rather to dissuade users from depending on our internal ID structures. """ return unicode(base64.urlsafe_b64encode( ...
[ "def", "obfuscate", "(", "cls", ",", "idStr", ")", ":", "return", "unicode", "(", "base64", ".", "urlsafe_b64encode", "(", "idStr", ".", "encode", "(", "'utf-8'", ")", ")", ".", "replace", "(", "b'='", ",", "b''", ")", ")" ]
Mildly obfuscates the specified ID string in an easily reversible fashion. This is not intended for security purposes, but rather to dissuade users from depending on our internal ID structures.
[ "Mildly", "obfuscates", "the", "specified", "ID", "string", "in", "an", "easily", "reversible", "fashion", ".", "This", "is", "not", "intended", "for", "security", "purposes", "but", "rather", "to", "dissuade", "users", "from", "depending", "on", "our", "inter...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/__init__.py#L250-L257
ga4gh/ga4gh-server
ga4gh/server/datamodel/__init__.py
CompoundId.deobfuscate
def deobfuscate(cls, data): """ Reverses the obfuscation done by the :meth:`obfuscate` method. If an identifier arrives without correct base64 padding this function will append it to the end. """ # the str() call is necessary to convert the unicode string # to an ...
python
def deobfuscate(cls, data): """ Reverses the obfuscation done by the :meth:`obfuscate` method. If an identifier arrives without correct base64 padding this function will append it to the end. """ # the str() call is necessary to convert the unicode string # to an ...
[ "def", "deobfuscate", "(", "cls", ",", "data", ")", ":", "# the str() call is necessary to convert the unicode string", "# to an ascii string since the urlsafe_b64decode method", "# sometimes chokes on unicode strings", "return", "base64", ".", "urlsafe_b64decode", "(", "str", "(",...
Reverses the obfuscation done by the :meth:`obfuscate` method. If an identifier arrives without correct base64 padding this function will append it to the end.
[ "Reverses", "the", "obfuscation", "done", "by", "the", ":", "meth", ":", "obfuscate", "method", ".", "If", "an", "identifier", "arrives", "without", "correct", "base64", "padding", "this", "function", "will", "append", "it", "to", "the", "end", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/__init__.py#L260-L270
ga4gh/ga4gh-server
ga4gh/server/datamodel/__init__.py
DatamodelObject.serializeAttributes
def serializeAttributes(self, msg): """ Sets the attrbutes of a message during serialization. """ attributes = self.getAttributes() for key in attributes: protocol.setAttribute( msg.attributes.attr[key].values, attributes[key]) return msg
python
def serializeAttributes(self, msg): """ Sets the attrbutes of a message during serialization. """ attributes = self.getAttributes() for key in attributes: protocol.setAttribute( msg.attributes.attr[key].values, attributes[key]) return msg
[ "def", "serializeAttributes", "(", "self", ",", "msg", ")", ":", "attributes", "=", "self", ".", "getAttributes", "(", ")", "for", "key", "in", "attributes", ":", "protocol", ".", "setAttribute", "(", "msg", ".", "attributes", ".", "attr", "[", "key", "]...
Sets the attrbutes of a message during serialization.
[ "Sets", "the", "attrbutes", "of", "a", "message", "during", "serialization", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/__init__.py#L539-L547
ga4gh/ga4gh-server
ga4gh/server/datamodel/__init__.py
DatamodelObject._scanDataFiles
def _scanDataFiles(self, dataDir, patterns): """ Scans the specified directory for files with the specified globbing pattern and calls self._addDataFile for each. Raises an EmptyDirException if no data files are found. """ numDataFiles = 0 for pattern in patterns:...
python
def _scanDataFiles(self, dataDir, patterns): """ Scans the specified directory for files with the specified globbing pattern and calls self._addDataFile for each. Raises an EmptyDirException if no data files are found. """ numDataFiles = 0 for pattern in patterns:...
[ "def", "_scanDataFiles", "(", "self", ",", "dataDir", ",", "patterns", ")", ":", "numDataFiles", "=", "0", "for", "pattern", "in", "patterns", ":", "scanPath", "=", "os", ".", "path", ".", "join", "(", "dataDir", ",", "pattern", ")", "for", "filename", ...
Scans the specified directory for files with the specified globbing pattern and calls self._addDataFile for each. Raises an EmptyDirException if no data files are found.
[ "Scans", "the", "specified", "directory", "for", "files", "with", "the", "specified", "globbing", "pattern", "and", "calls", "self", ".", "_addDataFile", "for", "each", ".", "Raises", "an", "EmptyDirException", "if", "no", "data", "files", "are", "found", "." ...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/__init__.py#L555-L568
ga4gh/ga4gh-server
ga4gh/server/network/__init__.py
getInitialPeerList
def getInitialPeerList(filePath, logger=None): """ Attempts to get a list of peers from a file specified in configuration. This file has one URL per line and can contain newlines and comments. # Main ga4gh node http://1kgenomes.ga4gh.org # Local intranet peer https://192.16...
python
def getInitialPeerList(filePath, logger=None): """ Attempts to get a list of peers from a file specified in configuration. This file has one URL per line and can contain newlines and comments. # Main ga4gh node http://1kgenomes.ga4gh.org # Local intranet peer https://192.16...
[ "def", "getInitialPeerList", "(", "filePath", ",", "logger", "=", "None", ")", ":", "ret", "=", "[", "]", "with", "open", "(", "filePath", ")", "as", "textFile", ":", "ret", "=", "textFile", ".", "readlines", "(", ")", "if", "len", "(", "ret", ")", ...
Attempts to get a list of peers from a file specified in configuration. This file has one URL per line and can contain newlines and comments. # Main ga4gh node http://1kgenomes.ga4gh.org # Local intranet peer https://192.168.1.1 The server will attempt to add URLs in this file...
[ "Attempts", "to", "get", "a", "list", "of", "peers", "from", "a", "file", "specified", "in", "configuration", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/network/__init__.py#L15-L39
ga4gh/ga4gh-server
ga4gh/server/network/__init__.py
insertInitialPeer
def insertInitialPeer(dataRepository, url, logger=None): """ Takes the datarepository, a url, and an optional logger and attempts to add the peer into the repository. """ insertPeer = dataRepository.insertPeer try: peer = datamodel.peers.Peer(url) insertPeer(peer) except exce...
python
def insertInitialPeer(dataRepository, url, logger=None): """ Takes the datarepository, a url, and an optional logger and attempts to add the peer into the repository. """ insertPeer = dataRepository.insertPeer try: peer = datamodel.peers.Peer(url) insertPeer(peer) except exce...
[ "def", "insertInitialPeer", "(", "dataRepository", ",", "url", ",", "logger", "=", "None", ")", ":", "insertPeer", "=", "dataRepository", ".", "insertPeer", "try", ":", "peer", "=", "datamodel", ".", "peers", ".", "Peer", "(", "url", ")", "insertPeer", "("...
Takes the datarepository, a url, and an optional logger and attempts to add the peer into the repository.
[ "Takes", "the", "datarepository", "a", "url", "and", "an", "optional", "logger", "and", "attempts", "to", "add", "the", "peer", "into", "the", "repository", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/network/__init__.py#L42-L58
ga4gh/ga4gh-server
ga4gh/server/datamodel/peers.py
isUrl
def isUrl(urlString): """ Attempts to return whether a given URL string is valid by checking for the presence of the URL scheme and netloc using the urlparse module, and then using a regex. From http://stackoverflow.com/questions/7160737/ """ parsed = urlparse.urlparse(urlString) urlpar...
python
def isUrl(urlString): """ Attempts to return whether a given URL string is valid by checking for the presence of the URL scheme and netloc using the urlparse module, and then using a regex. From http://stackoverflow.com/questions/7160737/ """ parsed = urlparse.urlparse(urlString) urlpar...
[ "def", "isUrl", "(", "urlString", ")", ":", "parsed", "=", "urlparse", ".", "urlparse", "(", "urlString", ")", "urlparseValid", "=", "parsed", ".", "netloc", "!=", "''", "and", "parsed", ".", "scheme", "!=", "''", "regex", "=", "re", ".", "compile", "(...
Attempts to return whether a given URL string is valid by checking for the presence of the URL scheme and netloc using the urlparse module, and then using a regex. From http://stackoverflow.com/questions/7160737/
[ "Attempts", "to", "return", "whether", "a", "given", "URL", "string", "is", "valid", "by", "checking", "for", "the", "presence", "of", "the", "URL", "scheme", "and", "netloc", "using", "the", "urlparse", "module", "and", "then", "using", "a", "regex", "." ...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/peers.py#L17-L36
ga4gh/ga4gh-server
ga4gh/server/datamodel/peers.py
Peer.setUrl
def setUrl(self, url): """ Attempt to safely set the URL by string. """ if isUrl(url): self._url = url else: raise exceptions.BadUrlException(url) return self
python
def setUrl(self, url): """ Attempt to safely set the URL by string. """ if isUrl(url): self._url = url else: raise exceptions.BadUrlException(url) return self
[ "def", "setUrl", "(", "self", ",", "url", ")", ":", "if", "isUrl", "(", "url", ")", ":", "self", ".", "_url", "=", "url", "else", ":", "raise", "exceptions", ".", "BadUrlException", "(", "url", ")", "return", "self" ]
Attempt to safely set the URL by string.
[ "Attempt", "to", "safely", "set", "the", "URL", "by", "string", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/peers.py#L53-L61
ga4gh/ga4gh-server
ga4gh/server/datamodel/peers.py
Peer.setAttributesJson
def setAttributesJson(self, attributesJson): """ Sets the attributes dictionary from a JSON string. """ try: self._attributes = json.loads(attributesJson) except: raise exceptions.InvalidJsonException(attributesJson) return self
python
def setAttributesJson(self, attributesJson): """ Sets the attributes dictionary from a JSON string. """ try: self._attributes = json.loads(attributesJson) except: raise exceptions.InvalidJsonException(attributesJson) return self
[ "def", "setAttributesJson", "(", "self", ",", "attributesJson", ")", ":", "try", ":", "self", ".", "_attributes", "=", "json", ".", "loads", "(", "attributesJson", ")", "except", ":", "raise", "exceptions", ".", "InvalidJsonException", "(", "attributesJson", "...
Sets the attributes dictionary from a JSON string.
[ "Sets", "the", "attributes", "dictionary", "from", "a", "JSON", "string", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/peers.py#L73-L81
ga4gh/ga4gh-server
ga4gh/server/datamodel/peers.py
Peer.populateFromRow
def populateFromRow(self, peerRecord): """ This method accepts a model record and sets class variables. """ self.setUrl(peerRecord.url) \ .setAttributesJson(peerRecord.attributes) return self
python
def populateFromRow(self, peerRecord): """ This method accepts a model record and sets class variables. """ self.setUrl(peerRecord.url) \ .setAttributesJson(peerRecord.attributes) return self
[ "def", "populateFromRow", "(", "self", ",", "peerRecord", ")", ":", "self", ".", "setUrl", "(", "peerRecord", ".", "url", ")", ".", "setAttributesJson", "(", "peerRecord", ".", "attributes", ")", "return", "self" ]
This method accepts a model record and sets class variables.
[ "This", "method", "accepts", "a", "model", "record", "and", "sets", "class", "variables", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/peers.py#L105-L111
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend._topLevelObjectGenerator
def _topLevelObjectGenerator(self, request, numObjects, getByIndexMethod): """ Returns a generator over the results for the specified request, which is over a set of objects of the specified size. The objects are returned by call to the specified method, which must take a single ...
python
def _topLevelObjectGenerator(self, request, numObjects, getByIndexMethod): """ Returns a generator over the results for the specified request, which is over a set of objects of the specified size. The objects are returned by call to the specified method, which must take a single ...
[ "def", "_topLevelObjectGenerator", "(", "self", ",", "request", ",", "numObjects", ",", "getByIndexMethod", ")", ":", "currentIndex", "=", "0", "if", "request", ".", "page_token", ":", "currentIndex", ",", "=", "paging", ".", "_parsePageToken", "(", "request", ...
Returns a generator over the results for the specified request, which is over a set of objects of the specified size. The objects are returned by call to the specified method, which must take a single integer as an argument. The returned generator yields a sequence of (object, nextPageTo...
[ "Returns", "a", "generator", "over", "the", "results", "for", "the", "specified", "request", "which", "is", "over", "a", "set", "of", "objects", "of", "the", "specified", "size", ".", "The", "objects", "are", "returned", "by", "call", "to", "the", "specifi...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L74-L93
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend._protocolObjectGenerator
def _protocolObjectGenerator(self, request, numObjects, getByIndexMethod): """ Returns a generator over the results for the specified request, from a set of protocol objects of the specified size. The objects are returned by call to the specified method, which must take a single ...
python
def _protocolObjectGenerator(self, request, numObjects, getByIndexMethod): """ Returns a generator over the results for the specified request, from a set of protocol objects of the specified size. The objects are returned by call to the specified method, which must take a single ...
[ "def", "_protocolObjectGenerator", "(", "self", ",", "request", ",", "numObjects", ",", "getByIndexMethod", ")", ":", "currentIndex", "=", "0", "if", "request", ".", "page_token", ":", "currentIndex", ",", "=", "paging", ".", "_parsePageToken", "(", "request", ...
Returns a generator over the results for the specified request, from a set of protocol objects of the specified size. The objects are returned by call to the specified method, which must take a single integer as an argument. The returned generator yields a sequence of (object, nextPageTo...
[ "Returns", "a", "generator", "over", "the", "results", "for", "the", "specified", "request", "from", "a", "set", "of", "protocol", "objects", "of", "the", "specified", "size", ".", "The", "objects", "are", "returned", "by", "call", "to", "the", "specified", ...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L95-L114
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend._protocolListGenerator
def _protocolListGenerator(self, request, objectList): """ Returns a generator over the objects in the specified list using _protocolObjectGenerator to generate page tokens. """ return self._protocolObjectGenerator( request, len(objectList), lambda index: objectList[i...
python
def _protocolListGenerator(self, request, objectList): """ Returns a generator over the objects in the specified list using _protocolObjectGenerator to generate page tokens. """ return self._protocolObjectGenerator( request, len(objectList), lambda index: objectList[i...
[ "def", "_protocolListGenerator", "(", "self", ",", "request", ",", "objectList", ")", ":", "return", "self", ".", "_protocolObjectGenerator", "(", "request", ",", "len", "(", "objectList", ")", ",", "lambda", "index", ":", "objectList", "[", "index", "]", ")...
Returns a generator over the objects in the specified list using _protocolObjectGenerator to generate page tokens.
[ "Returns", "a", "generator", "over", "the", "objects", "in", "the", "specified", "list", "using", "_protocolObjectGenerator", "to", "generate", "page", "tokens", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L116-L122
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend._objectListGenerator
def _objectListGenerator(self, request, objectList): """ Returns a generator over the objects in the specified list using _topLevelObjectGenerator to generate page tokens. """ return self._topLevelObjectGenerator( request, len(objectList), lambda index: objectList[ind...
python
def _objectListGenerator(self, request, objectList): """ Returns a generator over the objects in the specified list using _topLevelObjectGenerator to generate page tokens. """ return self._topLevelObjectGenerator( request, len(objectList), lambda index: objectList[ind...
[ "def", "_objectListGenerator", "(", "self", ",", "request", ",", "objectList", ")", ":", "return", "self", ".", "_topLevelObjectGenerator", "(", "request", ",", "len", "(", "objectList", ")", ",", "lambda", "index", ":", "objectList", "[", "index", "]", ")" ...
Returns a generator over the objects in the specified list using _topLevelObjectGenerator to generate page tokens.
[ "Returns", "a", "generator", "over", "the", "objects", "in", "the", "specified", "list", "using", "_topLevelObjectGenerator", "to", "generate", "page", "tokens", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L124-L130
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.datasetsGenerator
def datasetsGenerator(self, request): """ Returns a generator over the (dataset, nextPageToken) pairs defined by the specified request """ return self._topLevelObjectGenerator( request, self.getDataRepository().getNumDatasets(), self.getDataRepository().ge...
python
def datasetsGenerator(self, request): """ Returns a generator over the (dataset, nextPageToken) pairs defined by the specified request """ return self._topLevelObjectGenerator( request, self.getDataRepository().getNumDatasets(), self.getDataRepository().ge...
[ "def", "datasetsGenerator", "(", "self", ",", "request", ")", ":", "return", "self", ".", "_topLevelObjectGenerator", "(", "request", ",", "self", ".", "getDataRepository", "(", ")", ".", "getNumDatasets", "(", ")", ",", "self", ".", "getDataRepository", "(", ...
Returns a generator over the (dataset, nextPageToken) pairs defined by the specified request
[ "Returns", "a", "generator", "over", "the", "(", "dataset", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L132-L139
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.phenotypeAssociationSetsGenerator
def phenotypeAssociationSetsGenerator(self, request): """ Returns a generator over the (phenotypeAssociationSet, nextPageToken) pairs defined by the specified request """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._topLevelObjectGenerato...
python
def phenotypeAssociationSetsGenerator(self, request): """ Returns a generator over the (phenotypeAssociationSet, nextPageToken) pairs defined by the specified request """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._topLevelObjectGenerato...
[ "def", "phenotypeAssociationSetsGenerator", "(", "self", ",", "request", ")", ":", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "request", ".", "dataset_id", ")", "return", "self", ".", "_topLevelObjectGenerator", "(", "req...
Returns a generator over the (phenotypeAssociationSet, nextPageToken) pairs defined by the specified request
[ "Returns", "a", "generator", "over", "the", "(", "phenotypeAssociationSet", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L168-L176
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.readGroupSetsGenerator
def readGroupSetsGenerator(self, request): """ Returns a generator over the (readGroupSet, nextPageToken) pairs defined by the specified request. """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._readGroupSetsGenerator( request...
python
def readGroupSetsGenerator(self, request): """ Returns a generator over the (readGroupSet, nextPageToken) pairs defined by the specified request. """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._readGroupSetsGenerator( request...
[ "def", "readGroupSetsGenerator", "(", "self", ",", "request", ")", ":", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "request", ".", "dataset_id", ")", "return", "self", ".", "_readGroupSetsGenerator", "(", "request", ","...
Returns a generator over the (readGroupSet, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "readGroupSet", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L178-L186
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend._readGroupSetsGenerator
def _readGroupSetsGenerator(self, request, numObjects, getByIndexMethod): """ Returns a generator over the results for the specified request, which is over a set of objects of the specified size. The objects are returned by call to the specified method, which must take a single i...
python
def _readGroupSetsGenerator(self, request, numObjects, getByIndexMethod): """ Returns a generator over the results for the specified request, which is over a set of objects of the specified size. The objects are returned by call to the specified method, which must take a single i...
[ "def", "_readGroupSetsGenerator", "(", "self", ",", "request", ",", "numObjects", ",", "getByIndexMethod", ")", ":", "currentIndex", "=", "0", "if", "request", ".", "page_token", ":", "currentIndex", ",", "=", "paging", ".", "_parsePageToken", "(", "request", ...
Returns a generator over the results for the specified request, which is over a set of objects of the specified size. The objects are returned by call to the specified method, which must take a single integer as an argument. The returned generator yields a sequence of (object, nextPageTo...
[ "Returns", "a", "generator", "over", "the", "results", "for", "the", "specified", "request", "which", "is", "over", "a", "set", "of", "objects", "of", "the", "specified", "size", ".", "The", "objects", "are", "returned", "by", "call", "to", "the", "specifi...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L188-L223
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.referenceSetsGenerator
def referenceSetsGenerator(self, request): """ Returns a generator over the (referenceSet, nextPageToken) pairs defined by the specified request. """ results = [] for obj in self.getDataRepository().getReferenceSets(): include = True if request.md5...
python
def referenceSetsGenerator(self, request): """ Returns a generator over the (referenceSet, nextPageToken) pairs defined by the specified request. """ results = [] for obj in self.getDataRepository().getReferenceSets(): include = True if request.md5...
[ "def", "referenceSetsGenerator", "(", "self", ",", "request", ")", ":", "results", "=", "[", "]", "for", "obj", "in", "self", ".", "getDataRepository", "(", ")", ".", "getReferenceSets", "(", ")", ":", "include", "=", "True", "if", "request", ".", "md5ch...
Returns a generator over the (referenceSet, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "referenceSet", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L225-L244
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.referencesGenerator
def referencesGenerator(self, request): """ Returns a generator over the (reference, nextPageToken) pairs defined by the specified request. """ referenceSet = self.getDataRepository().getReferenceSet( request.reference_set_id) results = [] for obj in r...
python
def referencesGenerator(self, request): """ Returns a generator over the (reference, nextPageToken) pairs defined by the specified request. """ referenceSet = self.getDataRepository().getReferenceSet( request.reference_set_id) results = [] for obj in r...
[ "def", "referencesGenerator", "(", "self", ",", "request", ")", ":", "referenceSet", "=", "self", ".", "getDataRepository", "(", ")", ".", "getReferenceSet", "(", "request", ".", "reference_set_id", ")", "results", "=", "[", "]", "for", "obj", "in", "referen...
Returns a generator over the (reference, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "reference", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L246-L264
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.variantSetsGenerator
def variantSetsGenerator(self, request): """ Returns a generator over the (variantSet, nextPageToken) pairs defined by the specified request. """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._topLevelObjectGenerator( request, d...
python
def variantSetsGenerator(self, request): """ Returns a generator over the (variantSet, nextPageToken) pairs defined by the specified request. """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._topLevelObjectGenerator( request, d...
[ "def", "variantSetsGenerator", "(", "self", ",", "request", ")", ":", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "request", ".", "dataset_id", ")", "return", "self", ".", "_topLevelObjectGenerator", "(", "request", ",",...
Returns a generator over the (variantSet, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "variantSet", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L266-L274
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.variantAnnotationSetsGenerator
def variantAnnotationSetsGenerator(self, request): """ Returns a generator over the (variantAnnotationSet, nextPageToken) pairs defined by the specified request. """ compoundId = datamodel.VariantSetCompoundId.parse( request.variant_set_id) dataset = self.getD...
python
def variantAnnotationSetsGenerator(self, request): """ Returns a generator over the (variantAnnotationSet, nextPageToken) pairs defined by the specified request. """ compoundId = datamodel.VariantSetCompoundId.parse( request.variant_set_id) dataset = self.getD...
[ "def", "variantAnnotationSetsGenerator", "(", "self", ",", "request", ")", ":", "compoundId", "=", "datamodel", ".", "VariantSetCompoundId", ".", "parse", "(", "request", ".", "variant_set_id", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", "."...
Returns a generator over the (variantAnnotationSet, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "variantAnnotationSet", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L276-L287
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.readsGenerator
def readsGenerator(self, request): """ Returns a generator over the (read, nextPageToken) pairs defined by the specified request """ if not request.reference_id: raise exceptions.UnmappedReadsNotSupported() if len(request.read_group_ids) < 1: raise...
python
def readsGenerator(self, request): """ Returns a generator over the (read, nextPageToken) pairs defined by the specified request """ if not request.reference_id: raise exceptions.UnmappedReadsNotSupported() if len(request.read_group_ids) < 1: raise...
[ "def", "readsGenerator", "(", "self", ",", "request", ")", ":", "if", "not", "request", ".", "reference_id", ":", "raise", "exceptions", ".", "UnmappedReadsNotSupported", "(", ")", "if", "len", "(", "request", ".", "read_group_ids", ")", "<", "1", ":", "ra...
Returns a generator over the (read, nextPageToken) pairs defined by the specified request
[ "Returns", "a", "generator", "over", "the", "(", "read", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L289-L302
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.variantsGenerator
def variantsGenerator(self, request): """ Returns a generator over the (variant, nextPageToken) pairs defined by the specified request. """ compoundId = datamodel.VariantSetCompoundId \ .parse(request.variant_set_id) dataset = self.getDataRepository().getDatas...
python
def variantsGenerator(self, request): """ Returns a generator over the (variant, nextPageToken) pairs defined by the specified request. """ compoundId = datamodel.VariantSetCompoundId \ .parse(request.variant_set_id) dataset = self.getDataRepository().getDatas...
[ "def", "variantsGenerator", "(", "self", ",", "request", ")", ":", "compoundId", "=", "datamodel", ".", "VariantSetCompoundId", ".", "parse", "(", "request", ".", "variant_set_id", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDatas...
Returns a generator over the (variant, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "variant", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L338-L349
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.variantAnnotationsGenerator
def variantAnnotationsGenerator(self, request): """ Returns a generator over the (variantAnnotaitons, nextPageToken) pairs defined by the specified request. """ compoundId = datamodel.VariantAnnotationSetCompoundId.parse( request.variant_annotation_set_id) dat...
python
def variantAnnotationsGenerator(self, request): """ Returns a generator over the (variantAnnotaitons, nextPageToken) pairs defined by the specified request. """ compoundId = datamodel.VariantAnnotationSetCompoundId.parse( request.variant_annotation_set_id) dat...
[ "def", "variantAnnotationsGenerator", "(", "self", ",", "request", ")", ":", "compoundId", "=", "datamodel", ".", "VariantAnnotationSetCompoundId", ".", "parse", "(", "request", ".", "variant_annotation_set_id", ")", "dataset", "=", "self", ".", "getDataRepository", ...
Returns a generator over the (variantAnnotaitons, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "variantAnnotaitons", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L351-L364
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.featuresGenerator
def featuresGenerator(self, request): """ Returns a generator over the (features, nextPageToken) pairs defined by the (JSON string) request. """ compoundId = None parentId = None if request.feature_set_id != "": compoundId = datamodel.FeatureSetCompoun...
python
def featuresGenerator(self, request): """ Returns a generator over the (features, nextPageToken) pairs defined by the (JSON string) request. """ compoundId = None parentId = None if request.feature_set_id != "": compoundId = datamodel.FeatureSetCompoun...
[ "def", "featuresGenerator", "(", "self", ",", "request", ")", ":", "compoundId", "=", "None", "parentId", "=", "None", "if", "request", ".", "feature_set_id", "!=", "\"\"", ":", "compoundId", "=", "datamodel", ".", "FeatureSetCompoundId", ".", "parse", "(", ...
Returns a generator over the (features, nextPageToken) pairs defined by the (JSON string) request.
[ "Returns", "a", "generator", "over", "the", "(", "features", "nextPageToken", ")", "pairs", "defined", "by", "the", "(", "JSON", "string", ")", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L366-L403
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.continuousGenerator
def continuousGenerator(self, request): """ Returns a generator over the (continuous, nextPageToken) pairs defined by the (JSON string) request. """ compoundId = None if request.continuous_set_id != "": compoundId = datamodel.ContinuousSetCompoundId.parse( ...
python
def continuousGenerator(self, request): """ Returns a generator over the (continuous, nextPageToken) pairs defined by the (JSON string) request. """ compoundId = None if request.continuous_set_id != "": compoundId = datamodel.ContinuousSetCompoundId.parse( ...
[ "def", "continuousGenerator", "(", "self", ",", "request", ")", ":", "compoundId", "=", "None", "if", "request", ".", "continuous_set_id", "!=", "\"\"", ":", "compoundId", "=", "datamodel", ".", "ContinuousSetCompoundId", ".", "parse", "(", "request", ".", "co...
Returns a generator over the (continuous, nextPageToken) pairs defined by the (JSON string) request.
[ "Returns", "a", "generator", "over", "the", "(", "continuous", "nextPageToken", ")", "pairs", "defined", "by", "the", "(", "JSON", "string", ")", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L405-L421
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.phenotypesGenerator
def phenotypesGenerator(self, request): """ Returns a generator over the (phenotypes, nextPageToken) pairs defined by the (JSON string) request """ # TODO make paging work using SPARQL? compoundId = datamodel.PhenotypeAssociationSetCompoundId.parse( request.ph...
python
def phenotypesGenerator(self, request): """ Returns a generator over the (phenotypes, nextPageToken) pairs defined by the (JSON string) request """ # TODO make paging work using SPARQL? compoundId = datamodel.PhenotypeAssociationSetCompoundId.parse( request.ph...
[ "def", "phenotypesGenerator", "(", "self", ",", "request", ")", ":", "# TODO make paging work using SPARQL?", "compoundId", "=", "datamodel", ".", "PhenotypeAssociationSetCompoundId", ".", "parse", "(", "request", ".", "phenotype_association_set_id", ")", "dataset", "=", ...
Returns a generator over the (phenotypes, nextPageToken) pairs defined by the (JSON string) request
[ "Returns", "a", "generator", "over", "the", "(", "phenotypes", "nextPageToken", ")", "pairs", "defined", "by", "the", "(", "JSON", "string", ")", "request" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L423-L437
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.genotypesPhenotypesGenerator
def genotypesPhenotypesGenerator(self, request): """ Returns a generator over the (phenotypes, nextPageToken) pairs defined by the (JSON string) request """ # TODO make paging work using SPARQL? compoundId = datamodel.PhenotypeAssociationSetCompoundId.parse( r...
python
def genotypesPhenotypesGenerator(self, request): """ Returns a generator over the (phenotypes, nextPageToken) pairs defined by the (JSON string) request """ # TODO make paging work using SPARQL? compoundId = datamodel.PhenotypeAssociationSetCompoundId.parse( r...
[ "def", "genotypesPhenotypesGenerator", "(", "self", ",", "request", ")", ":", "# TODO make paging work using SPARQL?", "compoundId", "=", "datamodel", ".", "PhenotypeAssociationSetCompoundId", ".", "parse", "(", "request", ".", "phenotype_association_set_id", ")", "dataset"...
Returns a generator over the (phenotypes, nextPageToken) pairs defined by the (JSON string) request
[ "Returns", "a", "generator", "over", "the", "(", "phenotypes", "nextPageToken", ")", "pairs", "defined", "by", "the", "(", "JSON", "string", ")", "request" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L439-L453
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.callSetsGenerator
def callSetsGenerator(self, request): """ Returns a generator over the (callSet, nextPageToken) pairs defined by the specified request. """ compoundId = datamodel.VariantSetCompoundId.parse( request.variant_set_id) dataset = self.getDataRepository().getDataset...
python
def callSetsGenerator(self, request): """ Returns a generator over the (callSet, nextPageToken) pairs defined by the specified request. """ compoundId = datamodel.VariantSetCompoundId.parse( request.variant_set_id) dataset = self.getDataRepository().getDataset...
[ "def", "callSetsGenerator", "(", "self", ",", "request", ")", ":", "compoundId", "=", "datamodel", ".", "VariantSetCompoundId", ".", "parse", "(", "request", ".", "variant_set_id", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDatas...
Returns a generator over the (callSet, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "callSet", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L455-L475
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.featureSetsGenerator
def featureSetsGenerator(self, request): """ Returns a generator over the (featureSet, nextPageToken) pairs defined by the specified request. """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._topLevelObjectGenerator( request, d...
python
def featureSetsGenerator(self, request): """ Returns a generator over the (featureSet, nextPageToken) pairs defined by the specified request. """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._topLevelObjectGenerator( request, d...
[ "def", "featureSetsGenerator", "(", "self", ",", "request", ")", ":", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "request", ".", "dataset_id", ")", "return", "self", ".", "_topLevelObjectGenerator", "(", "request", ",",...
Returns a generator over the (featureSet, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "featureSet", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L477-L485
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.continuousSetsGenerator
def continuousSetsGenerator(self, request): """ Returns a generator over the (continuousSet, nextPageToken) pairs defined by the specified request. """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._topLevelObjectGenerator( requ...
python
def continuousSetsGenerator(self, request): """ Returns a generator over the (continuousSet, nextPageToken) pairs defined by the specified request. """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._topLevelObjectGenerator( requ...
[ "def", "continuousSetsGenerator", "(", "self", ",", "request", ")", ":", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "request", ".", "dataset_id", ")", "return", "self", ".", "_topLevelObjectGenerator", "(", "request", "...
Returns a generator over the (continuousSet, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "continuousSet", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L487-L495
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.rnaQuantificationSetsGenerator
def rnaQuantificationSetsGenerator(self, request): """ Returns a generator over the (rnaQuantificationSet, nextPageToken) pairs defined by the specified request. """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._topLevelObjectGenerator( ...
python
def rnaQuantificationSetsGenerator(self, request): """ Returns a generator over the (rnaQuantificationSet, nextPageToken) pairs defined by the specified request. """ dataset = self.getDataRepository().getDataset(request.dataset_id) return self._topLevelObjectGenerator( ...
[ "def", "rnaQuantificationSetsGenerator", "(", "self", ",", "request", ")", ":", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "request", ".", "dataset_id", ")", "return", "self", ".", "_topLevelObjectGenerator", "(", "reques...
Returns a generator over the (rnaQuantificationSet, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "rnaQuantificationSet", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L497-L505
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.rnaQuantificationsGenerator
def rnaQuantificationsGenerator(self, request): """ Returns a generator over the (rnaQuantification, nextPageToken) pairs defined by the specified request. """ if len(request.rna_quantification_set_id) < 1: raise exceptions.BadRequestException( "Rna Qu...
python
def rnaQuantificationsGenerator(self, request): """ Returns a generator over the (rnaQuantification, nextPageToken) pairs defined by the specified request. """ if len(request.rna_quantification_set_id) < 1: raise exceptions.BadRequestException( "Rna Qu...
[ "def", "rnaQuantificationsGenerator", "(", "self", ",", "request", ")", ":", "if", "len", "(", "request", ".", "rna_quantification_set_id", ")", "<", "1", ":", "raise", "exceptions", ".", "BadRequestException", "(", "\"Rna Quantification Set Id must be specified\"", "...
Returns a generator over the (rnaQuantification, nextPageToken) pairs defined by the specified request.
[ "Returns", "a", "generator", "over", "the", "(", "rnaQuantification", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L507-L530
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.expressionLevelsGenerator
def expressionLevelsGenerator(self, request): """ Returns a generator over the (expressionLevel, nextPageToken) pairs defined by the specified request. Currently only supports searching over a specified rnaQuantification """ rnaQuantificationId = request.rna_quantificati...
python
def expressionLevelsGenerator(self, request): """ Returns a generator over the (expressionLevel, nextPageToken) pairs defined by the specified request. Currently only supports searching over a specified rnaQuantification """ rnaQuantificationId = request.rna_quantificati...
[ "def", "expressionLevelsGenerator", "(", "self", ",", "request", ")", ":", "rnaQuantificationId", "=", "request", ".", "rna_quantification_id", "compoundId", "=", "datamodel", ".", "RnaQuantificationCompoundId", ".", "parse", "(", "request", ".", "rna_quantification_id"...
Returns a generator over the (expressionLevel, nextPageToken) pairs defined by the specified request. Currently only supports searching over a specified rnaQuantification
[ "Returns", "a", "generator", "over", "the", "(", "expressionLevel", "nextPageToken", ")", "pairs", "defined", "by", "the", "specified", "request", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L532-L549
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetRequest
def runGetRequest(self, obj): """ Runs a get request by converting the specified datamodel object into its protocol representation. """ protocolElement = obj.toProtocolElement() jsonString = protocol.toJson(protocolElement) return jsonString
python
def runGetRequest(self, obj): """ Runs a get request by converting the specified datamodel object into its protocol representation. """ protocolElement = obj.toProtocolElement() jsonString = protocol.toJson(protocolElement) return jsonString
[ "def", "runGetRequest", "(", "self", ",", "obj", ")", ":", "protocolElement", "=", "obj", ".", "toProtocolElement", "(", ")", "jsonString", "=", "protocol", ".", "toJson", "(", "protocolElement", ")", "return", "jsonString" ]
Runs a get request by converting the specified datamodel object into its protocol representation.
[ "Runs", "a", "get", "request", "by", "converting", "the", "specified", "datamodel", "object", "into", "its", "protocol", "representation", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L568-L575
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchRequest
def runSearchRequest( self, requestStr, requestClass, responseClass, objectGenerator): """ Runs the specified request. The request is a string containing a JSON representation of an instance of the specified requestClass. We return a string representation of an instance of th...
python
def runSearchRequest( self, requestStr, requestClass, responseClass, objectGenerator): """ Runs the specified request. The request is a string containing a JSON representation of an instance of the specified requestClass. We return a string representation of an instance of th...
[ "def", "runSearchRequest", "(", "self", ",", "requestStr", ",", "requestClass", ",", "responseClass", ",", "objectGenerator", ")", ":", "self", ".", "startProfile", "(", ")", "try", ":", "request", "=", "protocol", ".", "fromJson", "(", "requestStr", ",", "r...
Runs the specified request. The request is a string containing a JSON representation of an instance of the specified requestClass. We return a string representation of an instance of the specified responseClass in JSON format. Objects are filled into the page list using the specified obj...
[ "Runs", "the", "specified", "request", ".", "The", "request", "is", "a", "string", "containing", "a", "JSON", "representation", "of", "an", "instance", "of", "the", "specified", "requestClass", ".", "We", "return", "a", "string", "representation", "of", "an", ...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L577-L608
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runListReferenceBases
def runListReferenceBases(self, requestJson): """ Runs a listReferenceBases request for the specified ID and request arguments. """ # In the case when an empty post request is made to the endpoint # we instantiate an empty ListReferenceBasesRequest. if not request...
python
def runListReferenceBases(self, requestJson): """ Runs a listReferenceBases request for the specified ID and request arguments. """ # In the case when an empty post request is made to the endpoint # we instantiate an empty ListReferenceBasesRequest. if not request...
[ "def", "runListReferenceBases", "(", "self", ",", "requestJson", ")", ":", "# In the case when an empty post request is made to the endpoint", "# we instantiate an empty ListReferenceBasesRequest.", "if", "not", "requestJson", ":", "request", "=", "protocol", ".", "ListReferenceB...
Runs a listReferenceBases request for the specified ID and request arguments.
[ "Runs", "a", "listReferenceBases", "request", "for", "the", "specified", "ID", "and", "request", "arguments", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L610-L651
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetCallSet
def runGetCallSet(self, id_): """ Returns a callset with the given id """ compoundId = datamodel.CallSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) variantSet = dataset.getVariantSet(compoundId.variant_set_id) callSet...
python
def runGetCallSet(self, id_): """ Returns a callset with the given id """ compoundId = datamodel.CallSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) variantSet = dataset.getVariantSet(compoundId.variant_set_id) callSet...
[ "def", "runGetCallSet", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "CallSetCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId", ".", "data...
Returns a callset with the given id
[ "Returns", "a", "callset", "with", "the", "given", "id" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L655-L663
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetInfo
def runGetInfo(self, request): """ Returns information about the service including protocol version. """ return protocol.toJson(protocol.GetInfoResponse( protocol_version=protocol.version))
python
def runGetInfo(self, request): """ Returns information about the service including protocol version. """ return protocol.toJson(protocol.GetInfoResponse( protocol_version=protocol.version))
[ "def", "runGetInfo", "(", "self", ",", "request", ")", ":", "return", "protocol", ".", "toJson", "(", "protocol", ".", "GetInfoResponse", "(", "protocol_version", "=", "protocol", ".", "version", ")", ")" ]
Returns information about the service including protocol version.
[ "Returns", "information", "about", "the", "service", "including", "protocol", "version", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L665-L670
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runAddAnnouncement
def runAddAnnouncement(self, flaskrequest): """ Takes a flask request from the frontend and attempts to parse into an AnnouncePeerRequest. If successful, it will log the announcement to the `announcement` table with some other metadata gathered from the request. """ ...
python
def runAddAnnouncement(self, flaskrequest): """ Takes a flask request from the frontend and attempts to parse into an AnnouncePeerRequest. If successful, it will log the announcement to the `announcement` table with some other metadata gathered from the request. """ ...
[ "def", "runAddAnnouncement", "(", "self", ",", "flaskrequest", ")", ":", "announcement", "=", "{", "}", "# We want to parse the request ourselves to collect a little more", "# data about it.", "try", ":", "requestData", "=", "protocol", ".", "fromJson", "(", "flaskrequest...
Takes a flask request from the frontend and attempts to parse into an AnnouncePeerRequest. If successful, it will log the announcement to the `announcement` table with some other metadata gathered from the request.
[ "Takes", "a", "flask", "request", "from", "the", "frontend", "and", "attempts", "to", "parse", "into", "an", "AnnouncePeerRequest", ".", "If", "successful", "it", "will", "log", "the", "announcement", "to", "the", "announcement", "table", "with", "some", "othe...
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L672-L711
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runListPeers
def runListPeers(self, request): """ Takes a ListPeersRequest and returns a ListPeersResponse using a page_token and page_size if provided. """ return self.runSearchRequest( request, protocol.ListPeersRequest, protocol.ListPeersResponse, ...
python
def runListPeers(self, request): """ Takes a ListPeersRequest and returns a ListPeersResponse using a page_token and page_size if provided. """ return self.runSearchRequest( request, protocol.ListPeersRequest, protocol.ListPeersResponse, ...
[ "def", "runListPeers", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "ListPeersRequest", ",", "protocol", ".", "ListPeersResponse", ",", "self", ".", "peersGenerator", ")" ]
Takes a ListPeersRequest and returns a ListPeersResponse using a page_token and page_size if provided.
[ "Takes", "a", "ListPeersRequest", "and", "returns", "a", "ListPeersResponse", "using", "a", "page_token", "and", "page_size", "if", "provided", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L713-L722
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetVariant
def runGetVariant(self, id_): """ Returns a variant with the given id """ compoundId = datamodel.VariantCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) variantSet = dataset.getVariantSet(compoundId.variant_set_id) gaVaria...
python
def runGetVariant(self, id_): """ Returns a variant with the given id """ compoundId = datamodel.VariantCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) variantSet = dataset.getVariantSet(compoundId.variant_set_id) gaVaria...
[ "def", "runGetVariant", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "VariantCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId", ".", "data...
Returns a variant with the given id
[ "Returns", "a", "variant", "with", "the", "given", "id" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L724-L736
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetBiosample
def runGetBiosample(self, id_): """ Runs a getBiosample request for the specified ID. """ compoundId = datamodel.BiosampleCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) biosample = dataset.getBiosample(id_) return self.r...
python
def runGetBiosample(self, id_): """ Runs a getBiosample request for the specified ID. """ compoundId = datamodel.BiosampleCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) biosample = dataset.getBiosample(id_) return self.r...
[ "def", "runGetBiosample", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "BiosampleCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId", ".", "...
Runs a getBiosample request for the specified ID.
[ "Runs", "a", "getBiosample", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L738-L745
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetIndividual
def runGetIndividual(self, id_): """ Runs a getIndividual request for the specified ID. """ compoundId = datamodel.BiosampleCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) individual = dataset.getIndividual(id_) return se...
python
def runGetIndividual(self, id_): """ Runs a getIndividual request for the specified ID. """ compoundId = datamodel.BiosampleCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) individual = dataset.getIndividual(id_) return se...
[ "def", "runGetIndividual", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "BiosampleCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId", ".", ...
Runs a getIndividual request for the specified ID.
[ "Runs", "a", "getIndividual", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L747-L754
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetFeature
def runGetFeature(self, id_): """ Returns JSON string of the feature object corresponding to the feature compoundID passed in. """ compoundId = datamodel.FeatureCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) featureSet =...
python
def runGetFeature(self, id_): """ Returns JSON string of the feature object corresponding to the feature compoundID passed in. """ compoundId = datamodel.FeatureCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) featureSet =...
[ "def", "runGetFeature", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "FeatureCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId", ".", "data...
Returns JSON string of the feature object corresponding to the feature compoundID passed in.
[ "Returns", "JSON", "string", "of", "the", "feature", "object", "corresponding", "to", "the", "feature", "compoundID", "passed", "in", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L756-L766
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetReadGroupSet
def runGetReadGroupSet(self, id_): """ Returns a readGroupSet with the given id_ """ compoundId = datamodel.ReadGroupSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) readGroupSet = dataset.getReadGroupSet(id_) return se...
python
def runGetReadGroupSet(self, id_): """ Returns a readGroupSet with the given id_ """ compoundId = datamodel.ReadGroupSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) readGroupSet = dataset.getReadGroupSet(id_) return se...
[ "def", "runGetReadGroupSet", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "ReadGroupSetCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId", "....
Returns a readGroupSet with the given id_
[ "Returns", "a", "readGroupSet", "with", "the", "given", "id_" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L768-L775
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetReadGroup
def runGetReadGroup(self, id_): """ Returns a read group with the given id_ """ compoundId = datamodel.ReadGroupCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) readGroupSet = dataset.getReadGroupSet(compoundId.read_group_set_id) ...
python
def runGetReadGroup(self, id_): """ Returns a read group with the given id_ """ compoundId = datamodel.ReadGroupCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) readGroupSet = dataset.getReadGroupSet(compoundId.read_group_set_id) ...
[ "def", "runGetReadGroup", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "ReadGroupCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId", ".", "...
Returns a read group with the given id_
[ "Returns", "a", "read", "group", "with", "the", "given", "id_" ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L777-L785
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetReference
def runGetReference(self, id_): """ Runs a getReference request for the specified ID. """ compoundId = datamodel.ReferenceCompoundId.parse(id_) referenceSet = self.getDataRepository().getReferenceSet( compoundId.reference_set_id) reference = referenceSet.getRe...
python
def runGetReference(self, id_): """ Runs a getReference request for the specified ID. """ compoundId = datamodel.ReferenceCompoundId.parse(id_) referenceSet = self.getDataRepository().getReferenceSet( compoundId.reference_set_id) reference = referenceSet.getRe...
[ "def", "runGetReference", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "ReferenceCompoundId", ".", "parse", "(", "id_", ")", "referenceSet", "=", "self", ".", "getDataRepository", "(", ")", ".", "getReferenceSet", "(", "compoundId", ...
Runs a getReference request for the specified ID.
[ "Runs", "a", "getReference", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L787-L795
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetReferenceSet
def runGetReferenceSet(self, id_): """ Runs a getReferenceSet request for the specified ID. """ referenceSet = self.getDataRepository().getReferenceSet(id_) return self.runGetRequest(referenceSet)
python
def runGetReferenceSet(self, id_): """ Runs a getReferenceSet request for the specified ID. """ referenceSet = self.getDataRepository().getReferenceSet(id_) return self.runGetRequest(referenceSet)
[ "def", "runGetReferenceSet", "(", "self", ",", "id_", ")", ":", "referenceSet", "=", "self", ".", "getDataRepository", "(", ")", ".", "getReferenceSet", "(", "id_", ")", "return", "self", ".", "runGetRequest", "(", "referenceSet", ")" ]
Runs a getReferenceSet request for the specified ID.
[ "Runs", "a", "getReferenceSet", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L797-L802
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetVariantSet
def runGetVariantSet(self, id_): """ Runs a getVariantSet request for the specified ID. """ compoundId = datamodel.VariantSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) variantSet = dataset.getVariantSet(id_) return s...
python
def runGetVariantSet(self, id_): """ Runs a getVariantSet request for the specified ID. """ compoundId = datamodel.VariantSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) variantSet = dataset.getVariantSet(id_) return s...
[ "def", "runGetVariantSet", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "VariantSetCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId", ".", ...
Runs a getVariantSet request for the specified ID.
[ "Runs", "a", "getVariantSet", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L804-L811
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetFeatureSet
def runGetFeatureSet(self, id_): """ Runs a getFeatureSet request for the specified ID. """ compoundId = datamodel.FeatureSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) featureSet = dataset.getFeatureSet(id_) return s...
python
def runGetFeatureSet(self, id_): """ Runs a getFeatureSet request for the specified ID. """ compoundId = datamodel.FeatureSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) featureSet = dataset.getFeatureSet(id_) return s...
[ "def", "runGetFeatureSet", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "FeatureSetCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId", ".", ...
Runs a getFeatureSet request for the specified ID.
[ "Runs", "a", "getFeatureSet", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L813-L820
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetContinuousSet
def runGetContinuousSet(self, id_): """ Runs a getContinuousSet request for the specified ID. """ compoundId = datamodel.ContinuousSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) continuousSet = dataset.getContinuousSet(id_) ...
python
def runGetContinuousSet(self, id_): """ Runs a getContinuousSet request for the specified ID. """ compoundId = datamodel.ContinuousSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) continuousSet = dataset.getContinuousSet(id_) ...
[ "def", "runGetContinuousSet", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "ContinuousSetCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId", ...
Runs a getContinuousSet request for the specified ID.
[ "Runs", "a", "getContinuousSet", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L822-L829
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetDataset
def runGetDataset(self, id_): """ Runs a getDataset request for the specified ID. """ dataset = self.getDataRepository().getDataset(id_) return self.runGetRequest(dataset)
python
def runGetDataset(self, id_): """ Runs a getDataset request for the specified ID. """ dataset = self.getDataRepository().getDataset(id_) return self.runGetRequest(dataset)
[ "def", "runGetDataset", "(", "self", ",", "id_", ")", ":", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "id_", ")", "return", "self", ".", "runGetRequest", "(", "dataset", ")" ]
Runs a getDataset request for the specified ID.
[ "Runs", "a", "getDataset", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L831-L836
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetVariantAnnotationSet
def runGetVariantAnnotationSet(self, id_): """ Runs a getVariantSet request for the specified ID. """ compoundId = datamodel.VariantAnnotationSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) variantSet = dataset.getVariantSet(c...
python
def runGetVariantAnnotationSet(self, id_): """ Runs a getVariantSet request for the specified ID. """ compoundId = datamodel.VariantAnnotationSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) variantSet = dataset.getVariantSet(c...
[ "def", "runGetVariantAnnotationSet", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "VariantAnnotationSetCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "c...
Runs a getVariantSet request for the specified ID.
[ "Runs", "a", "getVariantSet", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L838-L846
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetRnaQuantification
def runGetRnaQuantification(self, id_): """ Runs a getRnaQuantification request for the specified ID. """ compoundId = datamodel.RnaQuantificationCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) rnaQuantificationSet = dataset.getR...
python
def runGetRnaQuantification(self, id_): """ Runs a getRnaQuantification request for the specified ID. """ compoundId = datamodel.RnaQuantificationCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) rnaQuantificationSet = dataset.getR...
[ "def", "runGetRnaQuantification", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "RnaQuantificationCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoun...
Runs a getRnaQuantification request for the specified ID.
[ "Runs", "a", "getRnaQuantification", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L848-L857
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetRnaQuantificationSet
def runGetRnaQuantificationSet(self, id_): """ Runs a getRnaQuantificationSet request for the specified ID. """ compoundId = datamodel.RnaQuantificationSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) rnaQuantificationSet = dat...
python
def runGetRnaQuantificationSet(self, id_): """ Runs a getRnaQuantificationSet request for the specified ID. """ compoundId = datamodel.RnaQuantificationSetCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) rnaQuantificationSet = dat...
[ "def", "runGetRnaQuantificationSet", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "RnaQuantificationSetCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "c...
Runs a getRnaQuantificationSet request for the specified ID.
[ "Runs", "a", "getRnaQuantificationSet", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L859-L866
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runGetExpressionLevel
def runGetExpressionLevel(self, id_): """ Runs a getExpressionLevel request for the specified ID. """ compoundId = datamodel.ExpressionLevelCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) rnaQuantificationSet = dataset.getRnaQuan...
python
def runGetExpressionLevel(self, id_): """ Runs a getExpressionLevel request for the specified ID. """ compoundId = datamodel.ExpressionLevelCompoundId.parse(id_) dataset = self.getDataRepository().getDataset(compoundId.dataset_id) rnaQuantificationSet = dataset.getRnaQuan...
[ "def", "runGetExpressionLevel", "(", "self", ",", "id_", ")", ":", "compoundId", "=", "datamodel", ".", "ExpressionLevelCompoundId", ".", "parse", "(", "id_", ")", "dataset", "=", "self", ".", "getDataRepository", "(", ")", ".", "getDataset", "(", "compoundId"...
Runs a getExpressionLevel request for the specified ID.
[ "Runs", "a", "getExpressionLevel", "request", "for", "the", "specified", "ID", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L868-L879
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchReadGroupSets
def runSearchReadGroupSets(self, request): """ Runs the specified SearchReadGroupSetsRequest. """ return self.runSearchRequest( request, protocol.SearchReadGroupSetsRequest, protocol.SearchReadGroupSetsResponse, self.readGroupSetsGenerator)
python
def runSearchReadGroupSets(self, request): """ Runs the specified SearchReadGroupSetsRequest. """ return self.runSearchRequest( request, protocol.SearchReadGroupSetsRequest, protocol.SearchReadGroupSetsResponse, self.readGroupSetsGenerator)
[ "def", "runSearchReadGroupSets", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchReadGroupSetsRequest", ",", "protocol", ".", "SearchReadGroupSetsResponse", ",", "self", ".", "readGroupSe...
Runs the specified SearchReadGroupSetsRequest.
[ "Runs", "the", "specified", "SearchReadGroupSetsRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L883-L890
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchIndividuals
def runSearchIndividuals(self, request): """ Runs the specified search SearchIndividualsRequest. """ return self.runSearchRequest( request, protocol.SearchIndividualsRequest, protocol.SearchIndividualsResponse, self.individualsGenerator)
python
def runSearchIndividuals(self, request): """ Runs the specified search SearchIndividualsRequest. """ return self.runSearchRequest( request, protocol.SearchIndividualsRequest, protocol.SearchIndividualsResponse, self.individualsGenerator)
[ "def", "runSearchIndividuals", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchIndividualsRequest", ",", "protocol", ".", "SearchIndividualsResponse", ",", "self", ".", "individualsGenera...
Runs the specified search SearchIndividualsRequest.
[ "Runs", "the", "specified", "search", "SearchIndividualsRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L892-L899
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchBiosamples
def runSearchBiosamples(self, request): """ Runs the specified SearchBiosamplesRequest. """ return self.runSearchRequest( request, protocol.SearchBiosamplesRequest, protocol.SearchBiosamplesResponse, self.biosamplesGenerator)
python
def runSearchBiosamples(self, request): """ Runs the specified SearchBiosamplesRequest. """ return self.runSearchRequest( request, protocol.SearchBiosamplesRequest, protocol.SearchBiosamplesResponse, self.biosamplesGenerator)
[ "def", "runSearchBiosamples", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchBiosamplesRequest", ",", "protocol", ".", "SearchBiosamplesResponse", ",", "self", ".", "biosamplesGenerator"...
Runs the specified SearchBiosamplesRequest.
[ "Runs", "the", "specified", "SearchBiosamplesRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L901-L908
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchReads
def runSearchReads(self, request): """ Runs the specified SearchReadsRequest. """ return self.runSearchRequest( request, protocol.SearchReadsRequest, protocol.SearchReadsResponse, self.readsGenerator)
python
def runSearchReads(self, request): """ Runs the specified SearchReadsRequest. """ return self.runSearchRequest( request, protocol.SearchReadsRequest, protocol.SearchReadsResponse, self.readsGenerator)
[ "def", "runSearchReads", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchReadsRequest", ",", "protocol", ".", "SearchReadsResponse", ",", "self", ".", "readsGenerator", ")" ]
Runs the specified SearchReadsRequest.
[ "Runs", "the", "specified", "SearchReadsRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L910-L917
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchReferenceSets
def runSearchReferenceSets(self, request): """ Runs the specified SearchReferenceSetsRequest. """ return self.runSearchRequest( request, protocol.SearchReferenceSetsRequest, protocol.SearchReferenceSetsResponse, self.referenceSetsGenerator)
python
def runSearchReferenceSets(self, request): """ Runs the specified SearchReferenceSetsRequest. """ return self.runSearchRequest( request, protocol.SearchReferenceSetsRequest, protocol.SearchReferenceSetsResponse, self.referenceSetsGenerator)
[ "def", "runSearchReferenceSets", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchReferenceSetsRequest", ",", "protocol", ".", "SearchReferenceSetsResponse", ",", "self", ".", "referenceSe...
Runs the specified SearchReferenceSetsRequest.
[ "Runs", "the", "specified", "SearchReferenceSetsRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L919-L926
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchReferences
def runSearchReferences(self, request): """ Runs the specified SearchReferenceRequest. """ return self.runSearchRequest( request, protocol.SearchReferencesRequest, protocol.SearchReferencesResponse, self.referencesGenerator)
python
def runSearchReferences(self, request): """ Runs the specified SearchReferenceRequest. """ return self.runSearchRequest( request, protocol.SearchReferencesRequest, protocol.SearchReferencesResponse, self.referencesGenerator)
[ "def", "runSearchReferences", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchReferencesRequest", ",", "protocol", ".", "SearchReferencesResponse", ",", "self", ".", "referencesGenerator"...
Runs the specified SearchReferenceRequest.
[ "Runs", "the", "specified", "SearchReferenceRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L928-L935
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchVariantSets
def runSearchVariantSets(self, request): """ Runs the specified SearchVariantSetsRequest. """ return self.runSearchRequest( request, protocol.SearchVariantSetsRequest, protocol.SearchVariantSetsResponse, self.variantSetsGenerator)
python
def runSearchVariantSets(self, request): """ Runs the specified SearchVariantSetsRequest. """ return self.runSearchRequest( request, protocol.SearchVariantSetsRequest, protocol.SearchVariantSetsResponse, self.variantSetsGenerator)
[ "def", "runSearchVariantSets", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchVariantSetsRequest", ",", "protocol", ".", "SearchVariantSetsResponse", ",", "self", ".", "variantSetsGenera...
Runs the specified SearchVariantSetsRequest.
[ "Runs", "the", "specified", "SearchVariantSetsRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L937-L944
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchVariantAnnotationSets
def runSearchVariantAnnotationSets(self, request): """ Runs the specified SearchVariantAnnotationSetsRequest. """ return self.runSearchRequest( request, protocol.SearchVariantAnnotationSetsRequest, protocol.SearchVariantAnnotationSetsResponse, self.var...
python
def runSearchVariantAnnotationSets(self, request): """ Runs the specified SearchVariantAnnotationSetsRequest. """ return self.runSearchRequest( request, protocol.SearchVariantAnnotationSetsRequest, protocol.SearchVariantAnnotationSetsResponse, self.var...
[ "def", "runSearchVariantAnnotationSets", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchVariantAnnotationSetsRequest", ",", "protocol", ".", "SearchVariantAnnotationSetsResponse", ",", "self...
Runs the specified SearchVariantAnnotationSetsRequest.
[ "Runs", "the", "specified", "SearchVariantAnnotationSetsRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L946-L953
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchVariants
def runSearchVariants(self, request): """ Runs the specified SearchVariantRequest. """ return self.runSearchRequest( request, protocol.SearchVariantsRequest, protocol.SearchVariantsResponse, self.variantsGenerator)
python
def runSearchVariants(self, request): """ Runs the specified SearchVariantRequest. """ return self.runSearchRequest( request, protocol.SearchVariantsRequest, protocol.SearchVariantsResponse, self.variantsGenerator)
[ "def", "runSearchVariants", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchVariantsRequest", ",", "protocol", ".", "SearchVariantsResponse", ",", "self", ".", "variantsGenerator", ")" ...
Runs the specified SearchVariantRequest.
[ "Runs", "the", "specified", "SearchVariantRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L955-L962
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchVariantAnnotations
def runSearchVariantAnnotations(self, request): """ Runs the specified SearchVariantAnnotationsRequest. """ return self.runSearchRequest( request, protocol.SearchVariantAnnotationsRequest, protocol.SearchVariantAnnotationsResponse, self.variantAnnotati...
python
def runSearchVariantAnnotations(self, request): """ Runs the specified SearchVariantAnnotationsRequest. """ return self.runSearchRequest( request, protocol.SearchVariantAnnotationsRequest, protocol.SearchVariantAnnotationsResponse, self.variantAnnotati...
[ "def", "runSearchVariantAnnotations", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchVariantAnnotationsRequest", ",", "protocol", ".", "SearchVariantAnnotationsResponse", ",", "self", ".",...
Runs the specified SearchVariantAnnotationsRequest.
[ "Runs", "the", "specified", "SearchVariantAnnotationsRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L964-L971
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchCallSets
def runSearchCallSets(self, request): """ Runs the specified SearchCallSetsRequest. """ return self.runSearchRequest( request, protocol.SearchCallSetsRequest, protocol.SearchCallSetsResponse, self.callSetsGenerator)
python
def runSearchCallSets(self, request): """ Runs the specified SearchCallSetsRequest. """ return self.runSearchRequest( request, protocol.SearchCallSetsRequest, protocol.SearchCallSetsResponse, self.callSetsGenerator)
[ "def", "runSearchCallSets", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchCallSetsRequest", ",", "protocol", ".", "SearchCallSetsResponse", ",", "self", ".", "callSetsGenerator", ")" ...
Runs the specified SearchCallSetsRequest.
[ "Runs", "the", "specified", "SearchCallSetsRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L973-L980
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchDatasets
def runSearchDatasets(self, request): """ Runs the specified SearchDatasetsRequest. """ return self.runSearchRequest( request, protocol.SearchDatasetsRequest, protocol.SearchDatasetsResponse, self.datasetsGenerator)
python
def runSearchDatasets(self, request): """ Runs the specified SearchDatasetsRequest. """ return self.runSearchRequest( request, protocol.SearchDatasetsRequest, protocol.SearchDatasetsResponse, self.datasetsGenerator)
[ "def", "runSearchDatasets", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchDatasetsRequest", ",", "protocol", ".", "SearchDatasetsResponse", ",", "self", ".", "datasetsGenerator", ")" ...
Runs the specified SearchDatasetsRequest.
[ "Runs", "the", "specified", "SearchDatasetsRequest", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L982-L989
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchFeatureSets
def runSearchFeatureSets(self, request): """ Returns a SearchFeatureSetsResponse for the specified SearchFeatureSetsRequest object. """ return self.runSearchRequest( request, protocol.SearchFeatureSetsRequest, protocol.SearchFeatureSetsResponse, ...
python
def runSearchFeatureSets(self, request): """ Returns a SearchFeatureSetsResponse for the specified SearchFeatureSetsRequest object. """ return self.runSearchRequest( request, protocol.SearchFeatureSetsRequest, protocol.SearchFeatureSetsResponse, ...
[ "def", "runSearchFeatureSets", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchFeatureSetsRequest", ",", "protocol", ".", "SearchFeatureSetsResponse", ",", "self", ".", "featureSetsGenera...
Returns a SearchFeatureSetsResponse for the specified SearchFeatureSetsRequest object.
[ "Returns", "a", "SearchFeatureSetsResponse", "for", "the", "specified", "SearchFeatureSetsRequest", "object", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L991-L999
ga4gh/ga4gh-server
ga4gh/server/backend.py
Backend.runSearchFeatures
def runSearchFeatures(self, request): """ Returns a SearchFeaturesResponse for the specified SearchFeaturesRequest object. :param request: JSON string representing searchFeaturesRequest :return: JSON string representing searchFeatureResponse """ return self.runSe...
python
def runSearchFeatures(self, request): """ Returns a SearchFeaturesResponse for the specified SearchFeaturesRequest object. :param request: JSON string representing searchFeaturesRequest :return: JSON string representing searchFeatureResponse """ return self.runSe...
[ "def", "runSearchFeatures", "(", "self", ",", "request", ")", ":", "return", "self", ".", "runSearchRequest", "(", "request", ",", "protocol", ".", "SearchFeaturesRequest", ",", "protocol", ".", "SearchFeaturesResponse", ",", "self", ".", "featuresGenerator", ")" ...
Returns a SearchFeaturesResponse for the specified SearchFeaturesRequest object. :param request: JSON string representing searchFeaturesRequest :return: JSON string representing searchFeatureResponse
[ "Returns", "a", "SearchFeaturesResponse", "for", "the", "specified", "SearchFeaturesRequest", "object", "." ]
train
https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/backend.py#L1001-L1012