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 |
|---|---|---|---|---|---|---|---|---|---|---|
tbobm/etnawrapper | etnawrapper/etna.py | EtnaWrapper.get_logs | def get_logs(self, login=None, **kwargs):
"""Get a user's logs.
:param str login: User's login (Default: self._login)
:return: JSON
"""
_login = kwargs.get(
'login',
login
)
log_events_url = GSA_LOGS_URL.format(login=_login)
retur... | python | def get_logs(self, login=None, **kwargs):
"""Get a user's logs.
:param str login: User's login (Default: self._login)
:return: JSON
"""
_login = kwargs.get(
'login',
login
)
log_events_url = GSA_LOGS_URL.format(login=_login)
retur... | [
"def",
"get_logs",
"(",
"self",
",",
"login",
"=",
"None",
",",
"*",
"*",
"kwargs",
")",
":",
"_login",
"=",
"kwargs",
".",
"get",
"(",
"'login'",
",",
"login",
")",
"log_events_url",
"=",
"GSA_LOGS_URL",
".",
"format",
"(",
"login",
"=",
"_login",
"... | Get a user's logs.
:param str login: User's login (Default: self._login)
:return: JSON | [
"Get",
"a",
"user",
"s",
"logs",
"."
] | train | https://github.com/tbobm/etnawrapper/blob/0f1759646a30f658cf75fd521fd6e9cef5cd09c4/etnawrapper/etna.py#L311-L323 |
slok/prometheus-python | prometheus/negotiator.py | Negotiator.negotiate | def negotiate(cls, headers):
""" Process headers dict to return the format class
(not the instance)
"""
# set lower keys
headers = {k.lower(): v for k, v in headers.items()}
accept = headers.get('accept', "*/*")
parsed_accept = accept.split(";")
pars... | python | def negotiate(cls, headers):
""" Process headers dict to return the format class
(not the instance)
"""
# set lower keys
headers = {k.lower(): v for k, v in headers.items()}
accept = headers.get('accept', "*/*")
parsed_accept = accept.split(";")
pars... | [
"def",
"negotiate",
"(",
"cls",
",",
"headers",
")",
":",
"# set lower keys",
"headers",
"=",
"{",
"k",
".",
"lower",
"(",
")",
":",
"v",
"for",
"k",
",",
"v",
"in",
"headers",
".",
"items",
"(",
")",
"}",
"accept",
"=",
"headers",
".",
"get",
"(... | Process headers dict to return the format class
(not the instance) | [
"Process",
"headers",
"dict",
"to",
"return",
"the",
"format",
"class",
"(",
"not",
"the",
"instance",
")"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/negotiator.py#L26-L51 |
slok/prometheus-python | prometheus/registry.py | Registry.register | def register(self, collector):
""" Registers a collector"""
if not isinstance(collector, Collector):
raise TypeError(
"Can't register instance, not a valid type of collector")
if collector.name in self.collectors:
raise ValueError("Collector already exist... | python | def register(self, collector):
""" Registers a collector"""
if not isinstance(collector, Collector):
raise TypeError(
"Can't register instance, not a valid type of collector")
if collector.name in self.collectors:
raise ValueError("Collector already exist... | [
"def",
"register",
"(",
"self",
",",
"collector",
")",
":",
"if",
"not",
"isinstance",
"(",
"collector",
",",
"Collector",
")",
":",
"raise",
"TypeError",
"(",
"\"Can't register instance, not a valid type of collector\"",
")",
"if",
"collector",
".",
"name",
"in",... | Registers a collector | [
"Registers",
"a",
"collector"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/registry.py#L15-L25 |
slok/prometheus-python | prometheus/pusher.py | Pusher.add | def add(self, registry):
""" Add works like replace, but only previously pushed metrics with the
same name (and the same job and instance) will be replaced.
(It uses HTTP method 'POST' to push to the Pushgateway.)
"""
# POST
payload = self.formatter.marshall(regis... | python | def add(self, registry):
""" Add works like replace, but only previously pushed metrics with the
same name (and the same job and instance) will be replaced.
(It uses HTTP method 'POST' to push to the Pushgateway.)
"""
# POST
payload = self.formatter.marshall(regis... | [
"def",
"add",
"(",
"self",
",",
"registry",
")",
":",
"# POST",
"payload",
"=",
"self",
".",
"formatter",
".",
"marshall",
"(",
"registry",
")",
"r",
"=",
"requests",
".",
"post",
"(",
"self",
".",
"path",
",",
"data",
"=",
"payload",
",",
"headers",... | Add works like replace, but only previously pushed metrics with the
same name (and the same job and instance) will be replaced.
(It uses HTTP method 'POST' to push to the Pushgateway.) | [
"Add",
"works",
"like",
"replace",
"but",
"only",
"previously",
"pushed",
"metrics",
"with",
"the",
"same",
"name",
"(",
"and",
"the",
"same",
"job",
"and",
"instance",
")",
"will",
"be",
"replaced",
".",
"(",
"It",
"uses",
"HTTP",
"method",
"POST",
"to"... | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/pusher.py#L31-L38 |
slok/prometheus-python | prometheus/pusher.py | Pusher.replace | def replace(self, registry):
""" Push triggers a metric collection and pushes all collected metrics
to the Pushgateway specified by addr
Note that all previously pushed metrics with the same job and
instance will be replaced with the metrics pushed by this call.
(... | python | def replace(self, registry):
""" Push triggers a metric collection and pushes all collected metrics
to the Pushgateway specified by addr
Note that all previously pushed metrics with the same job and
instance will be replaced with the metrics pushed by this call.
(... | [
"def",
"replace",
"(",
"self",
",",
"registry",
")",
":",
"# PUT",
"payload",
"=",
"self",
".",
"formatter",
".",
"marshall",
"(",
"registry",
")",
"r",
"=",
"requests",
".",
"put",
"(",
"self",
".",
"path",
",",
"data",
"=",
"payload",
",",
"headers... | Push triggers a metric collection and pushes all collected metrics
to the Pushgateway specified by addr
Note that all previously pushed metrics with the same job and
instance will be replaced with the metrics pushed by this call.
(It uses HTTP method 'PUT' to push to the ... | [
"Push",
"triggers",
"a",
"metric",
"collection",
"and",
"pushes",
"all",
"collected",
"metrics",
"to",
"the",
"Pushgateway",
"specified",
"by",
"addr",
"Note",
"that",
"all",
"previously",
"pushed",
"metrics",
"with",
"the",
"same",
"job",
"and",
"instance",
"... | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/pusher.py#L40-L49 |
slok/prometheus-python | prometheus/formats.py | TextFormat.marshall_lines | def marshall_lines(self, collector):
""" Marshalls a collector and returns the storage/transfer format in
a tuple, this tuple has reprensentation format per element.
"""
if isinstance(collector, collectors.Counter):
exec_method = self._format_counter
elif isinsta... | python | def marshall_lines(self, collector):
""" Marshalls a collector and returns the storage/transfer format in
a tuple, this tuple has reprensentation format per element.
"""
if isinstance(collector, collectors.Counter):
exec_method = self._format_counter
elif isinsta... | [
"def",
"marshall_lines",
"(",
"self",
",",
"collector",
")",
":",
"if",
"isinstance",
"(",
"collector",
",",
"collectors",
".",
"Counter",
")",
":",
"exec_method",
"=",
"self",
".",
"_format_counter",
"elif",
"isinstance",
"(",
"collector",
",",
"collectors",
... | Marshalls a collector and returns the storage/transfer format in
a tuple, this tuple has reprensentation format per element. | [
"Marshalls",
"a",
"collector",
"and",
"returns",
"the",
"storage",
"/",
"transfer",
"format",
"in",
"a",
"tuple",
"this",
"tuple",
"has",
"reprensentation",
"format",
"per",
"element",
"."
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/formats.py#L132-L165 |
slok/prometheus-python | prometheus/formats.py | TextFormat.marshall | def marshall(self, registry):
"""Marshalls a full registry (various collectors)"""
blocks = []
for i in registry.get_all():
blocks.append(self.marshall_collector(i))
# Sort? used in tests
blocks = sorted(blocks)
# Needs EOF
blocks.append("")
... | python | def marshall(self, registry):
"""Marshalls a full registry (various collectors)"""
blocks = []
for i in registry.get_all():
blocks.append(self.marshall_collector(i))
# Sort? used in tests
blocks = sorted(blocks)
# Needs EOF
blocks.append("")
... | [
"def",
"marshall",
"(",
"self",
",",
"registry",
")",
":",
"blocks",
"=",
"[",
"]",
"for",
"i",
"in",
"registry",
".",
"get_all",
"(",
")",
":",
"blocks",
".",
"append",
"(",
"self",
".",
"marshall_collector",
"(",
"i",
")",
")",
"# Sort? used in tests... | Marshalls a full registry (various collectors) | [
"Marshalls",
"a",
"full",
"registry",
"(",
"various",
"collectors",
")"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/formats.py#L172-L185 |
slok/prometheus-python | prometheus/formats.py | ProtobufFormat.marshall | def marshall(self, registry):
"""Returns bytes"""
result = b""
for i in registry.get_all():
# Each message needs to be prefixed with a varint with the size of
# the message (MetrycType)
# https://github.com/matttproud/golang_protobuf_extensions/blob/master/ex... | python | def marshall(self, registry):
"""Returns bytes"""
result = b""
for i in registry.get_all():
# Each message needs to be prefixed with a varint with the size of
# the message (MetrycType)
# https://github.com/matttproud/golang_protobuf_extensions/blob/master/ex... | [
"def",
"marshall",
"(",
"self",
",",
"registry",
")",
":",
"result",
"=",
"b\"\"",
"for",
"i",
"in",
"registry",
".",
"get_all",
"(",
")",
":",
"# Each message needs to be prefixed with a varint with the size of",
"# the message (MetrycType)",
"# https://github.com/matttp... | Returns bytes | [
"Returns",
"bytes"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/formats.py#L291-L304 |
slok/prometheus-python | examples/trigonometry_example.py | gather_data | def gather_data(registry):
"""Gathers the metrics"""
# Get the host name of the machine
host = socket.gethostname()
# Create our collectors
trig_metric = Gauge("trigonometry_example",
"Various trigonometry examples.",
{'host': host})
# register ... | python | def gather_data(registry):
"""Gathers the metrics"""
# Get the host name of the machine
host = socket.gethostname()
# Create our collectors
trig_metric = Gauge("trigonometry_example",
"Various trigonometry examples.",
{'host': host})
# register ... | [
"def",
"gather_data",
"(",
"registry",
")",
":",
"# Get the host name of the machine",
"host",
"=",
"socket",
".",
"gethostname",
"(",
")",
"# Create our collectors",
"trig_metric",
"=",
"Gauge",
"(",
"\"trigonometry_example\"",
",",
"\"Various trigonometry examples.\"",
... | Gathers the metrics | [
"Gathers",
"the",
"metrics"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/examples/trigonometry_example.py#L20-L44 |
slok/prometheus-python | prometheus/collectors.py | Collector.set_value | def set_value(self, labels, value):
""" Sets a value in the container"""
if labels:
self._label_names_correct(labels)
with mutex:
self.values[labels] = value | python | def set_value(self, labels, value):
""" Sets a value in the container"""
if labels:
self._label_names_correct(labels)
with mutex:
self.values[labels] = value | [
"def",
"set_value",
"(",
"self",
",",
"labels",
",",
"value",
")",
":",
"if",
"labels",
":",
"self",
".",
"_label_names_correct",
"(",
"labels",
")",
"with",
"mutex",
":",
"self",
".",
"values",
"[",
"labels",
"]",
"=",
"value"
] | Sets a value in the container | [
"Sets",
"a",
"value",
"in",
"the",
"container"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/collectors.py#L38-L45 |
slok/prometheus-python | prometheus/collectors.py | Collector._label_names_correct | def _label_names_correct(self, labels):
"""Raise exception (ValueError) if labels not correct"""
for k, v in labels.items():
# Check reserved labels
if k in RESTRICTED_LABELS_NAMES:
raise ValueError("Labels not correct")
# Check prefixes
... | python | def _label_names_correct(self, labels):
"""Raise exception (ValueError) if labels not correct"""
for k, v in labels.items():
# Check reserved labels
if k in RESTRICTED_LABELS_NAMES:
raise ValueError("Labels not correct")
# Check prefixes
... | [
"def",
"_label_names_correct",
"(",
"self",
",",
"labels",
")",
":",
"for",
"k",
",",
"v",
"in",
"labels",
".",
"items",
"(",
")",
":",
"# Check reserved labels",
"if",
"k",
"in",
"RESTRICTED_LABELS_NAMES",
":",
"raise",
"ValueError",
"(",
"\"Labels not correc... | Raise exception (ValueError) if labels not correct | [
"Raise",
"exception",
"(",
"ValueError",
")",
"if",
"labels",
"not",
"correct"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/collectors.py#L57-L69 |
slok/prometheus-python | prometheus/collectors.py | Collector.get_all | def get_all(self):
""" Returns a list populated by tuples of 2 elements, first one is
a dict with all the labels and the second elemnt is the value
of the metric itself
"""
with mutex:
items = self.values.items()
result = []
for k, v in items:... | python | def get_all(self):
""" Returns a list populated by tuples of 2 elements, first one is
a dict with all the labels and the second elemnt is the value
of the metric itself
"""
with mutex:
items = self.values.items()
result = []
for k, v in items:... | [
"def",
"get_all",
"(",
"self",
")",
":",
"with",
"mutex",
":",
"items",
"=",
"self",
".",
"values",
".",
"items",
"(",
")",
"result",
"=",
"[",
"]",
"for",
"k",
",",
"v",
"in",
"items",
":",
"# Check if is a single value dict (custom empty key)",
"if",
"... | Returns a list populated by tuples of 2 elements, first one is
a dict with all the labels and the second elemnt is the value
of the metric itself | [
"Returns",
"a",
"list",
"populated",
"by",
"tuples",
"of",
"2",
"elements",
"first",
"one",
"is",
"a",
"dict",
"with",
"all",
"the",
"labels",
"and",
"the",
"second",
"elemnt",
"is",
"the",
"value",
"of",
"the",
"metric",
"itself"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/collectors.py#L71-L88 |
slok/prometheus-python | prometheus/collectors.py | Gauge.add | def add(self, labels, value):
""" Add adds the given value to the Gauge. (The value can be
negative, resulting in a decrease of the Gauge.)
"""
try:
current = self.get_value(labels)
except KeyError:
current = 0
self.set_value(labels, current ... | python | def add(self, labels, value):
""" Add adds the given value to the Gauge. (The value can be
negative, resulting in a decrease of the Gauge.)
"""
try:
current = self.get_value(labels)
except KeyError:
current = 0
self.set_value(labels, current ... | [
"def",
"add",
"(",
"self",
",",
"labels",
",",
"value",
")",
":",
"try",
":",
"current",
"=",
"self",
".",
"get_value",
"(",
"labels",
")",
"except",
"KeyError",
":",
"current",
"=",
"0",
"self",
".",
"set_value",
"(",
"labels",
",",
"current",
"+",
... | Add adds the given value to the Gauge. (The value can be
negative, resulting in a decrease of the Gauge.) | [
"Add",
"adds",
"the",
"given",
"value",
"to",
"the",
"Gauge",
".",
"(",
"The",
"value",
"can",
"be",
"negative",
"resulting",
"in",
"a",
"decrease",
"of",
"the",
"Gauge",
".",
")"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/collectors.py#L153-L163 |
slok/prometheus-python | prometheus/collectors.py | Summary.add | def add(self, labels, value):
"""Add adds a single observation to the summary."""
if type(value) not in (float, int):
raise TypeError("Summary only works with digits (int, float)")
# We have already a lock for data but not for the estimator
with mutex:
try:
... | python | def add(self, labels, value):
"""Add adds a single observation to the summary."""
if type(value) not in (float, int):
raise TypeError("Summary only works with digits (int, float)")
# We have already a lock for data but not for the estimator
with mutex:
try:
... | [
"def",
"add",
"(",
"self",
",",
"labels",
",",
"value",
")",
":",
"if",
"type",
"(",
"value",
")",
"not",
"in",
"(",
"float",
",",
"int",
")",
":",
"raise",
"TypeError",
"(",
"\"Summary only works with digits (int, float)\"",
")",
"# We have already a lock for... | Add adds a single observation to the summary. | [
"Add",
"adds",
"a",
"single",
"observation",
"to",
"the",
"summary",
"."
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/collectors.py#L195-L209 |
slok/prometheus-python | prometheus/collectors.py | Summary.get | def get(self, labels):
""" Get gets the data in the form of 0.5, 0.9 and 0.99 percentiles. Also
you get sum and count, all in a dict
"""
return_data = {}
# We have already a lock for data but not for the estimator
with mutex:
e = self.get_value(labels)
... | python | def get(self, labels):
""" Get gets the data in the form of 0.5, 0.9 and 0.99 percentiles. Also
you get sum and count, all in a dict
"""
return_data = {}
# We have already a lock for data but not for the estimator
with mutex:
e = self.get_value(labels)
... | [
"def",
"get",
"(",
"self",
",",
"labels",
")",
":",
"return_data",
"=",
"{",
"}",
"# We have already a lock for data but not for the estimator",
"with",
"mutex",
":",
"e",
"=",
"self",
".",
"get_value",
"(",
"labels",
")",
"# Set invariants data (default to 0.50, 0.90... | Get gets the data in the form of 0.5, 0.9 and 0.99 percentiles. Also
you get sum and count, all in a dict | [
"Get",
"gets",
"the",
"data",
"in",
"the",
"form",
"of",
"0",
".",
"5",
"0",
".",
"9",
"and",
"0",
".",
"99",
"percentiles",
".",
"Also",
"you",
"get",
"sum",
"and",
"count",
"all",
"in",
"a",
"dict"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/prometheus/collectors.py#L211-L231 |
slok/prometheus-python | examples/memory_cpu_usage_example.py | gather_data | def gather_data(registry):
"""Gathers the metrics"""
# Get the host name of the machine
host = socket.gethostname()
# Create our collectors
ram_metric = Gauge("memory_usage_bytes", "Memory usage in bytes.",
{'host': host})
cpu_metric = Gauge("cpu_usage_percent", "CPU usa... | python | def gather_data(registry):
"""Gathers the metrics"""
# Get the host name of the machine
host = socket.gethostname()
# Create our collectors
ram_metric = Gauge("memory_usage_bytes", "Memory usage in bytes.",
{'host': host})
cpu_metric = Gauge("cpu_usage_percent", "CPU usa... | [
"def",
"gather_data",
"(",
"registry",
")",
":",
"# Get the host name of the machine",
"host",
"=",
"socket",
".",
"gethostname",
"(",
")",
"# Create our collectors",
"ram_metric",
"=",
"Gauge",
"(",
"\"memory_usage_bytes\"",
",",
"\"Memory usage in bytes.\"",
",",
"{",... | Gathers the metrics | [
"Gathers",
"the",
"metrics"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/examples/memory_cpu_usage_example.py#L20-L50 |
slok/prometheus-python | examples/timing_write_io_example.py | gather_data | def gather_data(registry):
"""Gathers the metrics"""
# Get the host name of the machine
host = socket.gethostname()
# Create our collectors
io_metric = Summary("write_file_io_example",
"Writing io file in disk example.",
{'host': host})
# regist... | python | def gather_data(registry):
"""Gathers the metrics"""
# Get the host name of the machine
host = socket.gethostname()
# Create our collectors
io_metric = Summary("write_file_io_example",
"Writing io file in disk example.",
{'host': host})
# regist... | [
"def",
"gather_data",
"(",
"registry",
")",
":",
"# Get the host name of the machine",
"host",
"=",
"socket",
".",
"gethostname",
"(",
")",
"# Create our collectors",
"io_metric",
"=",
"Summary",
"(",
"\"write_file_io_example\"",
",",
"\"Writing io file in disk example.\"",... | Gathers the metrics | [
"Gathers",
"the",
"metrics"
] | train | https://github.com/slok/prometheus-python/blob/51c6de3cdcd4e36eae6e1643b136f486b57a18cd/examples/timing_write_io_example.py#L20-L49 |
knipknap/Gelatin | Gelatin/generator/Builder.py | Node.get_child | def get_child(self, name, attribs=None):
"""
Returns the first child that matches the given name and
attributes.
"""
if name == '.':
if attribs is None or len(attribs) == 0:
return self
if attribs == self.attribs:
return sel... | python | def get_child(self, name, attribs=None):
"""
Returns the first child that matches the given name and
attributes.
"""
if name == '.':
if attribs is None or len(attribs) == 0:
return self
if attribs == self.attribs:
return sel... | [
"def",
"get_child",
"(",
"self",
",",
"name",
",",
"attribs",
"=",
"None",
")",
":",
"if",
"name",
"==",
"'.'",
":",
"if",
"attribs",
"is",
"None",
"or",
"len",
"(",
"attribs",
")",
"==",
"0",
":",
"return",
"self",
"if",
"attribs",
"==",
"self",
... | Returns the first child that matches the given name and
attributes. | [
"Returns",
"the",
"first",
"child",
"that",
"matches",
"the",
"given",
"name",
"and",
"attributes",
"."
] | train | https://github.com/knipknap/Gelatin/blob/d2afa85a48034d6ee34580e49e16542f31ad208e/Gelatin/generator/Builder.py#L96-L106 |
knipknap/Gelatin | Gelatin/generator/Builder.py | Builder.create | def create(self, path, data=None):
"""
Creates the given node, regardless of whether or not it already
exists.
Returns the new node.
"""
node = self.current[-1]
path = self._splitpath(path)
n_items = len(path)
for n, item in enumerate(path):
... | python | def create(self, path, data=None):
"""
Creates the given node, regardless of whether or not it already
exists.
Returns the new node.
"""
node = self.current[-1]
path = self._splitpath(path)
n_items = len(path)
for n, item in enumerate(path):
... | [
"def",
"create",
"(",
"self",
",",
"path",
",",
"data",
"=",
"None",
")",
":",
"node",
"=",
"self",
".",
"current",
"[",
"-",
"1",
"]",
"path",
"=",
"self",
".",
"_splitpath",
"(",
"path",
")",
"n_items",
"=",
"len",
"(",
"path",
")",
"for",
"n... | Creates the given node, regardless of whether or not it already
exists.
Returns the new node. | [
"Creates",
"the",
"given",
"node",
"regardless",
"of",
"whether",
"or",
"not",
"it",
"already",
"exists",
".",
"Returns",
"the",
"new",
"node",
"."
] | train | https://github.com/knipknap/Gelatin/blob/d2afa85a48034d6ee34580e49e16542f31ad208e/Gelatin/generator/Builder.py#L174-L199 |
knipknap/Gelatin | Gelatin/generator/Builder.py | Builder.add | def add(self, path, data=None, replace=False):
"""
Creates the given node if it does not exist.
Returns the (new or existing) node.
"""
node = self.current[-1]
for item in self._splitpath(path):
tag, attribs = self._splittag(item)
next_node = node.... | python | def add(self, path, data=None, replace=False):
"""
Creates the given node if it does not exist.
Returns the (new or existing) node.
"""
node = self.current[-1]
for item in self._splitpath(path):
tag, attribs = self._splittag(item)
next_node = node.... | [
"def",
"add",
"(",
"self",
",",
"path",
",",
"data",
"=",
"None",
",",
"replace",
"=",
"False",
")",
":",
"node",
"=",
"self",
".",
"current",
"[",
"-",
"1",
"]",
"for",
"item",
"in",
"self",
".",
"_splitpath",
"(",
"path",
")",
":",
"tag",
","... | Creates the given node if it does not exist.
Returns the (new or existing) node. | [
"Creates",
"the",
"given",
"node",
"if",
"it",
"does",
"not",
"exist",
".",
"Returns",
"the",
"(",
"new",
"or",
"existing",
")",
"node",
"."
] | train | https://github.com/knipknap/Gelatin/blob/d2afa85a48034d6ee34580e49e16542f31ad208e/Gelatin/generator/Builder.py#L201-L221 |
knipknap/Gelatin | Gelatin/generator/Builder.py | Builder.add_attribute | def add_attribute(self, path, name, value):
"""
Creates the given attribute and sets it to the given value.
Returns the (new or existing) node to which the attribute was added.
"""
node = self.add(path)
node.attribs.append((name, value))
return node | python | def add_attribute(self, path, name, value):
"""
Creates the given attribute and sets it to the given value.
Returns the (new or existing) node to which the attribute was added.
"""
node = self.add(path)
node.attribs.append((name, value))
return node | [
"def",
"add_attribute",
"(",
"self",
",",
"path",
",",
"name",
",",
"value",
")",
":",
"node",
"=",
"self",
".",
"add",
"(",
"path",
")",
"node",
".",
"attribs",
".",
"append",
"(",
"(",
"name",
",",
"value",
")",
")",
"return",
"node"
] | Creates the given attribute and sets it to the given value.
Returns the (new or existing) node to which the attribute was added. | [
"Creates",
"the",
"given",
"attribute",
"and",
"sets",
"it",
"to",
"the",
"given",
"value",
".",
"Returns",
"the",
"(",
"new",
"or",
"existing",
")",
"node",
"to",
"which",
"the",
"attribute",
"was",
"added",
"."
] | train | https://github.com/knipknap/Gelatin/blob/d2afa85a48034d6ee34580e49e16542f31ad208e/Gelatin/generator/Builder.py#L223-L230 |
knipknap/Gelatin | Gelatin/generator/Builder.py | Builder.open | def open(self, path):
"""
Creates and enters the given node, regardless of whether it already
exists.
Returns the new node.
"""
self.current.append(self.create(path))
return self.current[-1] | python | def open(self, path):
"""
Creates and enters the given node, regardless of whether it already
exists.
Returns the new node.
"""
self.current.append(self.create(path))
return self.current[-1] | [
"def",
"open",
"(",
"self",
",",
"path",
")",
":",
"self",
".",
"current",
".",
"append",
"(",
"self",
".",
"create",
"(",
"path",
")",
")",
"return",
"self",
".",
"current",
"[",
"-",
"1",
"]"
] | Creates and enters the given node, regardless of whether it already
exists.
Returns the new node. | [
"Creates",
"and",
"enters",
"the",
"given",
"node",
"regardless",
"of",
"whether",
"it",
"already",
"exists",
".",
"Returns",
"the",
"new",
"node",
"."
] | train | https://github.com/knipknap/Gelatin/blob/d2afa85a48034d6ee34580e49e16542f31ad208e/Gelatin/generator/Builder.py#L232-L239 |
knipknap/Gelatin | Gelatin/generator/Builder.py | Builder.enter | def enter(self, path):
"""
Enters the given node. Creates it if it does not exist.
Returns the node.
"""
self.current.append(self.add(path))
return self.current[-1] | python | def enter(self, path):
"""
Enters the given node. Creates it if it does not exist.
Returns the node.
"""
self.current.append(self.add(path))
return self.current[-1] | [
"def",
"enter",
"(",
"self",
",",
"path",
")",
":",
"self",
".",
"current",
".",
"append",
"(",
"self",
".",
"add",
"(",
"path",
")",
")",
"return",
"self",
".",
"current",
"[",
"-",
"1",
"]"
] | Enters the given node. Creates it if it does not exist.
Returns the node. | [
"Enters",
"the",
"given",
"node",
".",
"Creates",
"it",
"if",
"it",
"does",
"not",
"exist",
".",
"Returns",
"the",
"node",
"."
] | train | https://github.com/knipknap/Gelatin/blob/d2afa85a48034d6ee34580e49e16542f31ad208e/Gelatin/generator/Builder.py#L241-L247 |
knipknap/Gelatin | Gelatin/util.py | generate | def generate(converter, input_file, format='xml', encoding='utf8'):
"""
Given a converter (as returned by compile()), this function reads
the given input file and converts it to the requested output format.
Supported output formats are 'xml', 'yaml', 'json', or 'none'.
:type converter: compiler.C... | python | def generate(converter, input_file, format='xml', encoding='utf8'):
"""
Given a converter (as returned by compile()), this function reads
the given input file and converts it to the requested output format.
Supported output formats are 'xml', 'yaml', 'json', or 'none'.
:type converter: compiler.C... | [
"def",
"generate",
"(",
"converter",
",",
"input_file",
",",
"format",
"=",
"'xml'",
",",
"encoding",
"=",
"'utf8'",
")",
":",
"with",
"codecs",
".",
"open",
"(",
"input_file",
",",
"encoding",
"=",
"encoding",
")",
"as",
"thefile",
":",
"return",
"gener... | Given a converter (as returned by compile()), this function reads
the given input file and converts it to the requested output format.
Supported output formats are 'xml', 'yaml', 'json', or 'none'.
:type converter: compiler.Context
:param converter: The compiled converter.
:type input_file: str
... | [
"Given",
"a",
"converter",
"(",
"as",
"returned",
"by",
"compile",
"()",
")",
"this",
"function",
"reads",
"the",
"given",
"input",
"file",
"and",
"converts",
"it",
"to",
"the",
"requested",
"output",
"format",
"."
] | train | https://github.com/knipknap/Gelatin/blob/d2afa85a48034d6ee34580e49e16542f31ad208e/Gelatin/util.py#L56-L75 |
knipknap/Gelatin | Gelatin/util.py | generate_to_file | def generate_to_file(converter,
input_file,
output_file,
format='xml',
in_encoding='utf8',
out_encoding='utf8'):
"""
Like generate(), but writes the output to the given output file
instead.
:type c... | python | def generate_to_file(converter,
input_file,
output_file,
format='xml',
in_encoding='utf8',
out_encoding='utf8'):
"""
Like generate(), but writes the output to the given output file
instead.
:type c... | [
"def",
"generate_to_file",
"(",
"converter",
",",
"input_file",
",",
"output_file",
",",
"format",
"=",
"'xml'",
",",
"in_encoding",
"=",
"'utf8'",
",",
"out_encoding",
"=",
"'utf8'",
")",
":",
"with",
"codecs",
".",
"open",
"(",
"output_file",
",",
"'w'",
... | Like generate(), but writes the output to the given output file
instead.
:type converter: compiler.Context
:param converter: The compiled converter.
:type input_file: str
:param input_file: Name of a file to convert.
:type output_file: str
:param output_file: The output filename.
:ty... | [
"Like",
"generate",
"()",
"but",
"writes",
"the",
"output",
"to",
"the",
"given",
"output",
"file",
"instead",
"."
] | train | https://github.com/knipknap/Gelatin/blob/d2afa85a48034d6ee34580e49e16542f31ad208e/Gelatin/util.py#L78-L105 |
knipknap/Gelatin | Gelatin/util.py | generate_string | def generate_string(converter, input, format='xml'):
"""
Like generate(), but reads the input from a string instead of
from a file.
:type converter: compiler.Context
:param converter: The compiled converter.
:type input: str
:param input: The string to convert.
:type format: str
... | python | def generate_string(converter, input, format='xml'):
"""
Like generate(), but reads the input from a string instead of
from a file.
:type converter: compiler.Context
:param converter: The compiled converter.
:type input: str
:param input: The string to convert.
:type format: str
... | [
"def",
"generate_string",
"(",
"converter",
",",
"input",
",",
"format",
"=",
"'xml'",
")",
":",
"serializer",
"=",
"generator",
".",
"new",
"(",
"format",
")",
"if",
"serializer",
"is",
"None",
":",
"raise",
"TypeError",
"(",
"'invalid output format '",
"+"... | Like generate(), but reads the input from a string instead of
from a file.
:type converter: compiler.Context
:param converter: The compiled converter.
:type input: str
:param input: The string to convert.
:type format: str
:param format: The output format.
:rtype: str
:return: T... | [
"Like",
"generate",
"()",
"but",
"reads",
"the",
"input",
"from",
"a",
"string",
"instead",
"of",
"from",
"a",
"file",
"."
] | train | https://github.com/knipknap/Gelatin/blob/d2afa85a48034d6ee34580e49e16542f31ad208e/Gelatin/util.py#L108-L127 |
knipknap/Gelatin | Gelatin/util.py | generate_string_to_file | def generate_string_to_file(converter,
input,
output_file,
format='xml',
out_encoding='utf8'):
"""
Like generate(), but reads the input from a string instead of
from a file, and writes the output ... | python | def generate_string_to_file(converter,
input,
output_file,
format='xml',
out_encoding='utf8'):
"""
Like generate(), but reads the input from a string instead of
from a file, and writes the output ... | [
"def",
"generate_string_to_file",
"(",
"converter",
",",
"input",
",",
"output_file",
",",
"format",
"=",
"'xml'",
",",
"out_encoding",
"=",
"'utf8'",
")",
":",
"with",
"codecs",
".",
"open",
"(",
"output_file",
",",
"'w'",
",",
"encoding",
"=",
"out_encodin... | Like generate(), but reads the input from a string instead of
from a file, and writes the output to the given output file.
:type converter: compiler.Context
:param converter: The compiled converter.
:type input: str
:param input: The string to convert.
:type output_file: str
:param outpu... | [
"Like",
"generate",
"()",
"but",
"reads",
"the",
"input",
"from",
"a",
"string",
"instead",
"of",
"from",
"a",
"file",
"and",
"writes",
"the",
"output",
"to",
"the",
"given",
"output",
"file",
"."
] | train | https://github.com/knipknap/Gelatin/blob/d2afa85a48034d6ee34580e49e16542f31ad208e/Gelatin/util.py#L130-L154 |
kipe/pycron | pycron/__init__.py | is_now | def is_now(s, dt=None):
'''
A very simple cron-like parser to determine, if (cron-like) string is valid for this date and time.
@input:
s = cron-like string (minute, hour, day of month, month, day of week)
dt = datetime to use as reference time, defaults to now
@output: boolean of result... | python | def is_now(s, dt=None):
'''
A very simple cron-like parser to determine, if (cron-like) string is valid for this date and time.
@input:
s = cron-like string (minute, hour, day of month, month, day of week)
dt = datetime to use as reference time, defaults to now
@output: boolean of result... | [
"def",
"is_now",
"(",
"s",
",",
"dt",
"=",
"None",
")",
":",
"if",
"dt",
"is",
"None",
":",
"dt",
"=",
"datetime",
".",
"now",
"(",
")",
"minute",
",",
"hour",
",",
"dom",
",",
"month",
",",
"dow",
"=",
"s",
".",
"split",
"(",
"' '",
")",
"... | A very simple cron-like parser to determine, if (cron-like) string is valid for this date and time.
@input:
s = cron-like string (minute, hour, day of month, month, day of week)
dt = datetime to use as reference time, defaults to now
@output: boolean of result | [
"A",
"very",
"simple",
"cron",
"-",
"like",
"parser",
"to",
"determine",
"if",
"(",
"cron",
"-",
"like",
")",
"string",
"is",
"valid",
"for",
"this",
"date",
"and",
"time",
"."
] | train | https://github.com/kipe/pycron/blob/25319f5ca175b9db6a5e966e1ab2f75bd57fd269/pycron/__init__.py#L92-L109 |
kipe/pycron | pycron/__init__.py | has_been | def has_been(s, since, dt=None):
'''
A parser to check whether a (cron-like) string has been true during a certain time period.
Useful for applications which cannot check every minute or need to catch up during a restart.
@input:
s = cron-like string (minute, hour, day of month, month, day of we... | python | def has_been(s, since, dt=None):
'''
A parser to check whether a (cron-like) string has been true during a certain time period.
Useful for applications which cannot check every minute or need to catch up during a restart.
@input:
s = cron-like string (minute, hour, day of month, month, day of we... | [
"def",
"has_been",
"(",
"s",
",",
"since",
",",
"dt",
"=",
"None",
")",
":",
"if",
"dt",
"is",
"None",
":",
"dt",
"=",
"datetime",
".",
"now",
"(",
"tz",
"=",
"since",
".",
"tzinfo",
")",
"if",
"dt",
"<",
"since",
":",
"raise",
"ValueError",
"(... | A parser to check whether a (cron-like) string has been true during a certain time period.
Useful for applications which cannot check every minute or need to catch up during a restart.
@input:
s = cron-like string (minute, hour, day of month, month, day of week)
since = datetime to use as refere... | [
"A",
"parser",
"to",
"check",
"whether",
"a",
"(",
"cron",
"-",
"like",
")",
"string",
"has",
"been",
"true",
"during",
"a",
"certain",
"time",
"period",
".",
"Useful",
"for",
"applications",
"which",
"cannot",
"check",
"every",
"minute",
"or",
"need",
"... | train | https://github.com/kipe/pycron/blob/25319f5ca175b9db6a5e966e1ab2f75bd57fd269/pycron/__init__.py#L112-L133 |
Avsecz/kopt | kopt/eval_metrics.py | auprc | def auprc(y_true, y_pred):
"""Area under the precision-recall curve
"""
y_true, y_pred = _mask_value_nan(y_true, y_pred)
return skm.average_precision_score(y_true, y_pred) | python | def auprc(y_true, y_pred):
"""Area under the precision-recall curve
"""
y_true, y_pred = _mask_value_nan(y_true, y_pred)
return skm.average_precision_score(y_true, y_pred) | [
"def",
"auprc",
"(",
"y_true",
",",
"y_pred",
")",
":",
"y_true",
",",
"y_pred",
"=",
"_mask_value_nan",
"(",
"y_true",
",",
"y_pred",
")",
"return",
"skm",
".",
"average_precision_score",
"(",
"y_true",
",",
"y_pred",
")"
] | Area under the precision-recall curve | [
"Area",
"under",
"the",
"precision",
"-",
"recall",
"curve"
] | train | https://github.com/Avsecz/kopt/blob/fe4f929c8938590845306a759547daa5ba8bd7a9/kopt/eval_metrics.py#L49-L53 |
Avsecz/kopt | kopt/hyopt.py | KMongoTrials.best_trial_tid | def best_trial_tid(self, rank=0):
"""Get tid of the best trial
rank=0 means the best model
rank=1 means second best
...
"""
candidates = [t for t in self.trials
if t['result']['status'] == STATUS_OK]
if len(candidates) == 0:
retu... | python | def best_trial_tid(self, rank=0):
"""Get tid of the best trial
rank=0 means the best model
rank=1 means second best
...
"""
candidates = [t for t in self.trials
if t['result']['status'] == STATUS_OK]
if len(candidates) == 0:
retu... | [
"def",
"best_trial_tid",
"(",
"self",
",",
"rank",
"=",
"0",
")",
":",
"candidates",
"=",
"[",
"t",
"for",
"t",
"in",
"self",
".",
"trials",
"if",
"t",
"[",
"'result'",
"]",
"[",
"'status'",
"]",
"==",
"STATUS_OK",
"]",
"if",
"len",
"(",
"candidate... | Get tid of the best trial
rank=0 means the best model
rank=1 means second best
... | [
"Get",
"tid",
"of",
"the",
"best",
"trial"
] | train | https://github.com/Avsecz/kopt/blob/fe4f929c8938590845306a759547daa5ba8bd7a9/kopt/hyopt.py#L129-L143 |
Avsecz/kopt | kopt/hyopt.py | KMongoTrials.count_by_state_unsynced | def count_by_state_unsynced(self, arg):
"""Extends the original object in order to inject checking
for stalled jobs and killing them if they are running for too long
"""
if self.kill_timeout is not None:
self.delete_running(self.kill_timeout)
return super(KMongoTrials... | python | def count_by_state_unsynced(self, arg):
"""Extends the original object in order to inject checking
for stalled jobs and killing them if they are running for too long
"""
if self.kill_timeout is not None:
self.delete_running(self.kill_timeout)
return super(KMongoTrials... | [
"def",
"count_by_state_unsynced",
"(",
"self",
",",
"arg",
")",
":",
"if",
"self",
".",
"kill_timeout",
"is",
"not",
"None",
":",
"self",
".",
"delete_running",
"(",
"self",
".",
"kill_timeout",
")",
"return",
"super",
"(",
"KMongoTrials",
",",
"self",
")"... | Extends the original object in order to inject checking
for stalled jobs and killing them if they are running for too long | [
"Extends",
"the",
"original",
"object",
"in",
"order",
"to",
"inject",
"checking",
"for",
"stalled",
"jobs",
"and",
"killing",
"them",
"if",
"they",
"are",
"running",
"for",
"too",
"long"
] | train | https://github.com/Avsecz/kopt/blob/fe4f929c8938590845306a759547daa5ba8bd7a9/kopt/hyopt.py#L171-L177 |
Avsecz/kopt | kopt/hyopt.py | KMongoTrials.plot_history | def plot_history(self, tid, scores=["loss", "f1", "accuracy"],
figsize=(15, 3)):
"""Plot the loss curves"""
history = self.train_history(tid)
import matplotlib.pyplot as plt
fig = plt.figure(figsize=figsize)
for i, score in enumerate(scores):
plt... | python | def plot_history(self, tid, scores=["loss", "f1", "accuracy"],
figsize=(15, 3)):
"""Plot the loss curves"""
history = self.train_history(tid)
import matplotlib.pyplot as plt
fig = plt.figure(figsize=figsize)
for i, score in enumerate(scores):
plt... | [
"def",
"plot_history",
"(",
"self",
",",
"tid",
",",
"scores",
"=",
"[",
"\"loss\"",
",",
"\"f1\"",
",",
"\"accuracy\"",
"]",
",",
"figsize",
"=",
"(",
"15",
",",
"3",
")",
")",
":",
"history",
"=",
"self",
".",
"train_history",
"(",
"tid",
")",
"i... | Plot the loss curves | [
"Plot",
"the",
"loss",
"curves"
] | train | https://github.com/Avsecz/kopt/blob/fe4f929c8938590845306a759547daa5ba8bd7a9/kopt/hyopt.py#L245-L261 |
Avsecz/kopt | kopt/hyopt.py | KMongoTrials.load_model | def load_model(self, tid, custom_objects=None):
"""Load saved keras model of the trial.
If tid = None, get the best model
Not applicable for trials ran in cross validion (i.e. not applicable
for `CompileFN.cv_n_folds is None`
"""
if tid is None:
tid = self.b... | python | def load_model(self, tid, custom_objects=None):
"""Load saved keras model of the trial.
If tid = None, get the best model
Not applicable for trials ran in cross validion (i.e. not applicable
for `CompileFN.cv_n_folds is None`
"""
if tid is None:
tid = self.b... | [
"def",
"load_model",
"(",
"self",
",",
"tid",
",",
"custom_objects",
"=",
"None",
")",
":",
"if",
"tid",
"is",
"None",
":",
"tid",
"=",
"self",
".",
"best_trial_tid",
"(",
")",
"model_path",
"=",
"self",
".",
"get_trial",
"(",
"tid",
")",
"[",
"\"res... | Load saved keras model of the trial.
If tid = None, get the best model
Not applicable for trials ran in cross validion (i.e. not applicable
for `CompileFN.cv_n_folds is None` | [
"Load",
"saved",
"keras",
"model",
"of",
"the",
"trial",
"."
] | train | https://github.com/Avsecz/kopt/blob/fe4f929c8938590845306a759547daa5ba8bd7a9/kopt/hyopt.py#L263-L275 |
Avsecz/kopt | kopt/hyopt.py | KMongoTrials.n_ok | def n_ok(self):
"""Number of ok trials()
"""
if len(self.trials) == 0:
return 0
else:
return np.sum(np.array(self.statuses()) == "ok") | python | def n_ok(self):
"""Number of ok trials()
"""
if len(self.trials) == 0:
return 0
else:
return np.sum(np.array(self.statuses()) == "ok") | [
"def",
"n_ok",
"(",
"self",
")",
":",
"if",
"len",
"(",
"self",
".",
"trials",
")",
"==",
"0",
":",
"return",
"0",
"else",
":",
"return",
"np",
".",
"sum",
"(",
"np",
".",
"array",
"(",
"self",
".",
"statuses",
"(",
")",
")",
"==",
"\"ok\"",
... | Number of ok trials() | [
"Number",
"of",
"ok",
"trials",
"()"
] | train | https://github.com/Avsecz/kopt/blob/fe4f929c8938590845306a759547daa5ba8bd7a9/kopt/hyopt.py#L277-L283 |
Avsecz/kopt | kopt/hyopt.py | KMongoTrials.get_ok_results | def get_ok_results(self, verbose=True):
"""Return a list of results with ok status
"""
if len(self.trials) == 0:
return []
not_ok = np.where(np.array(self.statuses()) != "ok")[0]
if len(not_ok) > 0 and verbose:
print("{0}/{1} trials were not ok.".format(... | python | def get_ok_results(self, verbose=True):
"""Return a list of results with ok status
"""
if len(self.trials) == 0:
return []
not_ok = np.where(np.array(self.statuses()) != "ok")[0]
if len(not_ok) > 0 and verbose:
print("{0}/{1} trials were not ok.".format(... | [
"def",
"get_ok_results",
"(",
"self",
",",
"verbose",
"=",
"True",
")",
":",
"if",
"len",
"(",
"self",
".",
"trials",
")",
"==",
"0",
":",
"return",
"[",
"]",
"not_ok",
"=",
"np",
".",
"where",
"(",
"np",
".",
"array",
"(",
"self",
".",
"statuses... | Return a list of results with ok status | [
"Return",
"a",
"list",
"of",
"results",
"with",
"ok",
"status"
] | train | https://github.com/Avsecz/kopt/blob/fe4f929c8938590845306a759547daa5ba8bd7a9/kopt/hyopt.py#L285-L300 |
ga4gh/ga4gh-server | oidc-provider/simple_op/src/provider/server/server.py | VerifierMiddleware | def VerifierMiddleware(verifier):
"""Common wrapper for the authentication modules.
* Parses the request before passing it on to the authentication module.
* Sets 'pyoidc' cookie if authentication succeeds.
* Redirects the user to complete the authentication.
* Allows the user to ret... | python | def VerifierMiddleware(verifier):
"""Common wrapper for the authentication modules.
* Parses the request before passing it on to the authentication module.
* Sets 'pyoidc' cookie if authentication succeeds.
* Redirects the user to complete the authentication.
* Allows the user to ret... | [
"def",
"VerifierMiddleware",
"(",
"verifier",
")",
":",
"@",
"wraps",
"(",
"verifier",
".",
"verify",
")",
"def",
"wrapper",
"(",
"environ",
",",
"start_response",
")",
":",
"data",
"=",
"get_post",
"(",
"environ",
")",
"kwargs",
"=",
"dict",
"(",
"urlpa... | Common wrapper for the authentication modules.
* Parses the request before passing it on to the authentication module.
* Sets 'pyoidc' cookie if authentication succeeds.
* Redirects the user to complete the authentication.
* Allows the user to retry authentication if it fails.
:param... | [
"Common",
"wrapper",
"for",
"the",
"authentication",
"modules",
".",
"*",
"Parses",
"the",
"request",
"before",
"passing",
"it",
"on",
"to",
"the",
"authentication",
"module",
".",
"*",
"Sets",
"pyoidc",
"cookie",
"if",
"authentication",
"succeeds",
".",
"*",
... | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/oidc-provider/simple_op/src/provider/server/server.py#L34-L67 |
ga4gh/ga4gh-server | oidc-provider/simple_op/src/provider/server/server.py | pyoidcMiddleware | def pyoidcMiddleware(func):
"""Common wrapper for the underlying pyoidc library functions.
Reads GET params and POST data before passing it on the library and
converts the response from oic.utils.http_util to wsgi.
:param func: underlying library function
"""
def wrapper(environ, start_response... | python | def pyoidcMiddleware(func):
"""Common wrapper for the underlying pyoidc library functions.
Reads GET params and POST data before passing it on the library and
converts the response from oic.utils.http_util to wsgi.
:param func: underlying library function
"""
def wrapper(environ, start_response... | [
"def",
"pyoidcMiddleware",
"(",
"func",
")",
":",
"def",
"wrapper",
"(",
"environ",
",",
"start_response",
")",
":",
"data",
"=",
"get_or_post",
"(",
"environ",
")",
"cookies",
"=",
"environ",
".",
"get",
"(",
"\"HTTP_COOKIE\"",
",",
"\"\"",
")",
"resp",
... | Common wrapper for the underlying pyoidc library functions.
Reads GET params and POST data before passing it on the library and
converts the response from oic.utils.http_util to wsgi.
:param func: underlying library function | [
"Common",
"wrapper",
"for",
"the",
"underlying",
"pyoidc",
"library",
"functions",
".",
"Reads",
"GET",
"params",
"and",
"POST",
"data",
"before",
"passing",
"it",
"on",
"the",
"library",
"and",
"converts",
"the",
"response",
"from",
"oic",
".",
"utils",
"."... | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/oidc-provider/simple_op/src/provider/server/server.py#L70-L83 |
ga4gh/ga4gh-server | oidc-provider/simple_op/src/provider/server/server.py | resp2flask | def resp2flask(resp):
"""Convert an oic.utils.http_util instance to Flask."""
if isinstance(resp, Redirect) or isinstance(resp, SeeOther):
code = int(resp.status.split()[0])
raise cherrypy.HTTPRedirect(resp.message, code)
return resp.message, resp.status, resp.headers | python | def resp2flask(resp):
"""Convert an oic.utils.http_util instance to Flask."""
if isinstance(resp, Redirect) or isinstance(resp, SeeOther):
code = int(resp.status.split()[0])
raise cherrypy.HTTPRedirect(resp.message, code)
return resp.message, resp.status, resp.headers | [
"def",
"resp2flask",
"(",
"resp",
")",
":",
"if",
"isinstance",
"(",
"resp",
",",
"Redirect",
")",
"or",
"isinstance",
"(",
"resp",
",",
"SeeOther",
")",
":",
"code",
"=",
"int",
"(",
"resp",
".",
"status",
".",
"split",
"(",
")",
"[",
"0",
"]",
... | Convert an oic.utils.http_util instance to Flask. | [
"Convert",
"an",
"oic",
".",
"utils",
".",
"http_util",
"instance",
"to",
"Flask",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/oidc-provider/simple_op/src/provider/server/server.py#L86-L91 |
ga4gh/ga4gh-server | oidc-provider/simple_op/src/provider/server/server.py | setup_authentication_methods | def setup_authentication_methods(authn_config, template_env):
"""Add all authentication methods specified in the configuration."""
routing = {}
ac = AuthnBroker()
for authn_method in authn_config:
cls = make_cls_from_name(authn_method["class"])
instance = cls(template_env=template_env, *... | python | def setup_authentication_methods(authn_config, template_env):
"""Add all authentication methods specified in the configuration."""
routing = {}
ac = AuthnBroker()
for authn_method in authn_config:
cls = make_cls_from_name(authn_method["class"])
instance = cls(template_env=template_env, *... | [
"def",
"setup_authentication_methods",
"(",
"authn_config",
",",
"template_env",
")",
":",
"routing",
"=",
"{",
"}",
"ac",
"=",
"AuthnBroker",
"(",
")",
"for",
"authn_method",
"in",
"authn_config",
":",
"cls",
"=",
"make_cls_from_name",
"(",
"authn_method",
"[",... | Add all authentication methods specified in the configuration. | [
"Add",
"all",
"authentication",
"methods",
"specified",
"in",
"the",
"configuration",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/oidc-provider/simple_op/src/provider/server/server.py#L94-L104 |
ga4gh/ga4gh-server | oidc-provider/simple_op/src/provider/server/server.py | setup_endpoints | def setup_endpoints(provider):
"""Setup the OpenID Connect Provider endpoints."""
app_routing = {}
endpoints = [
AuthorizationEndpoint(
pyoidcMiddleware(provider.authorization_endpoint)),
TokenEndpoint(
pyoidcMiddleware(provider.token_endpoint)),
UserinfoEndpo... | python | def setup_endpoints(provider):
"""Setup the OpenID Connect Provider endpoints."""
app_routing = {}
endpoints = [
AuthorizationEndpoint(
pyoidcMiddleware(provider.authorization_endpoint)),
TokenEndpoint(
pyoidcMiddleware(provider.token_endpoint)),
UserinfoEndpo... | [
"def",
"setup_endpoints",
"(",
"provider",
")",
":",
"app_routing",
"=",
"{",
"}",
"endpoints",
"=",
"[",
"AuthorizationEndpoint",
"(",
"pyoidcMiddleware",
"(",
"provider",
".",
"authorization_endpoint",
")",
")",
",",
"TokenEndpoint",
"(",
"pyoidcMiddleware",
"("... | Setup the OpenID Connect Provider endpoints. | [
"Setup",
"the",
"OpenID",
"Connect",
"Provider",
"endpoints",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/oidc-provider/simple_op/src/provider/server/server.py#L107-L126 |
ga4gh/ga4gh-server | oidc-provider/simple_op/src/provider/server/server.py | _webfinger | def _webfinger(provider, request, **kwargs):
"""Handle webfinger requests."""
params = urlparse.parse_qs(request)
if params["rel"][0] == OIC_ISSUER:
wf = WebFinger()
return Response(wf.response(params["resource"][0], provider.baseurl),
headers=[("Content-Type", "appli... | python | def _webfinger(provider, request, **kwargs):
"""Handle webfinger requests."""
params = urlparse.parse_qs(request)
if params["rel"][0] == OIC_ISSUER:
wf = WebFinger()
return Response(wf.response(params["resource"][0], provider.baseurl),
headers=[("Content-Type", "appli... | [
"def",
"_webfinger",
"(",
"provider",
",",
"request",
",",
"*",
"*",
"kwargs",
")",
":",
"params",
"=",
"urlparse",
".",
"parse_qs",
"(",
"request",
")",
"if",
"params",
"[",
"\"rel\"",
"]",
"[",
"0",
"]",
"==",
"OIC_ISSUER",
":",
"wf",
"=",
"WebFing... | Handle webfinger requests. | [
"Handle",
"webfinger",
"requests",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/oidc-provider/simple_op/src/provider/server/server.py#L129-L137 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | Gff3DbBackend.featuresQuery | def featuresQuery(self, **kwargs):
"""
Converts a dictionary of keyword arguments into a tuple
of SQL select statements and the list of SQL arguments
"""
# TODO: Optimize by refactoring out string concatenation
sql = ""
sql_rows = "SELECT * FROM FEATURE WHERE id >... | python | def featuresQuery(self, **kwargs):
"""
Converts a dictionary of keyword arguments into a tuple
of SQL select statements and the list of SQL arguments
"""
# TODO: Optimize by refactoring out string concatenation
sql = ""
sql_rows = "SELECT * FROM FEATURE WHERE id >... | [
"def",
"featuresQuery",
"(",
"self",
",",
"*",
"*",
"kwargs",
")",
":",
"# TODO: Optimize by refactoring out string concatenation",
"sql",
"=",
"\"\"",
"sql_rows",
"=",
"\"SELECT * FROM FEATURE WHERE id > 1 \"",
"sql_args",
"=",
"(",
")",
"if",
"'name'",
"in",
"kwargs... | Converts a dictionary of keyword arguments into a tuple
of SQL select statements and the list of SQL arguments | [
"Converts",
"a",
"dictionary",
"of",
"keyword",
"arguments",
"into",
"a",
"tuple",
"of",
"SQL",
"select",
"statements",
"and",
"the",
"list",
"of",
"SQL",
"arguments"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L79-L114 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | Gff3DbBackend.searchFeaturesInDb | def searchFeaturesInDb(
self, startIndex=0, maxResults=None,
referenceName=None, start=None, end=None,
parentId=None, featureTypes=None,
name=None, geneSymbol=None):
"""
Perform a full features query in database.
:param startIndex: int representin... | python | def searchFeaturesInDb(
self, startIndex=0, maxResults=None,
referenceName=None, start=None, end=None,
parentId=None, featureTypes=None,
name=None, geneSymbol=None):
"""
Perform a full features query in database.
:param startIndex: int representin... | [
"def",
"searchFeaturesInDb",
"(",
"self",
",",
"startIndex",
"=",
"0",
",",
"maxResults",
"=",
"None",
",",
"referenceName",
"=",
"None",
",",
"start",
"=",
"None",
",",
"end",
"=",
"None",
",",
"parentId",
"=",
"None",
",",
"featureTypes",
"=",
"None",
... | Perform a full features query in database.
:param startIndex: int representing first record to return
:param maxResults: int representing number of records to return
:param referenceName: string representing reference name, ex 'chr1'
:param start: int position on reference to start sear... | [
"Perform",
"a",
"full",
"features",
"query",
"in",
"database",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L116-L142 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | Gff3DbBackend.getFeatureById | def getFeatureById(self, featureId):
"""
Fetch feature by featureID.
:param featureId: the FeatureID as found in GFF3 records
:return: dictionary representing a feature object,
or None if no match is found.
"""
sql = "SELECT * FROM FEATURE WHERE id = ?"
... | python | def getFeatureById(self, featureId):
"""
Fetch feature by featureID.
:param featureId: the FeatureID as found in GFF3 records
:return: dictionary representing a feature object,
or None if no match is found.
"""
sql = "SELECT * FROM FEATURE WHERE id = ?"
... | [
"def",
"getFeatureById",
"(",
"self",
",",
"featureId",
")",
":",
"sql",
"=",
"\"SELECT * FROM FEATURE WHERE id = ?\"",
"query",
"=",
"self",
".",
"_dbconn",
".",
"execute",
"(",
"sql",
",",
"(",
"featureId",
",",
")",
")",
"ret",
"=",
"query",
".",
"fetch... | Fetch feature by featureID.
:param featureId: the FeatureID as found in GFF3 records
:return: dictionary representing a feature object,
or None if no match is found. | [
"Fetch",
"feature",
"by",
"featureID",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L144-L157 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | AbstractFeatureSet.toProtocolElement | def toProtocolElement(self):
"""
Returns the representation of this FeatureSet as the corresponding
ProtocolElement.
"""
gaFeatureSet = protocol.FeatureSet()
gaFeatureSet.id = self.getId()
gaFeatureSet.dataset_id = self.getParentContainer().getId()
gaFeatu... | python | def toProtocolElement(self):
"""
Returns the representation of this FeatureSet as the corresponding
ProtocolElement.
"""
gaFeatureSet = protocol.FeatureSet()
gaFeatureSet.id = self.getId()
gaFeatureSet.dataset_id = self.getParentContainer().getId()
gaFeatu... | [
"def",
"toProtocolElement",
"(",
"self",
")",
":",
"gaFeatureSet",
"=",
"protocol",
".",
"FeatureSet",
"(",
")",
"gaFeatureSet",
".",
"id",
"=",
"self",
".",
"getId",
"(",
")",
"gaFeatureSet",
".",
"dataset_id",
"=",
"self",
".",
"getParentContainer",
"(",
... | Returns the representation of this FeatureSet as the corresponding
ProtocolElement. | [
"Returns",
"the",
"representation",
"of",
"this",
"FeatureSet",
"as",
"the",
"corresponding",
"ProtocolElement",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L185-L200 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | AbstractFeatureSet.getCompoundIdForFeatureId | def getCompoundIdForFeatureId(self, featureId):
"""
Returns server-style compound ID for an internal featureId.
:param long featureId: id of feature in database
:return: string representing ID for the specified GA4GH protocol
Feature object in this FeatureSet.
"""
... | python | def getCompoundIdForFeatureId(self, featureId):
"""
Returns server-style compound ID for an internal featureId.
:param long featureId: id of feature in database
:return: string representing ID for the specified GA4GH protocol
Feature object in this FeatureSet.
"""
... | [
"def",
"getCompoundIdForFeatureId",
"(",
"self",
",",
"featureId",
")",
":",
"if",
"featureId",
"is",
"not",
"None",
"and",
"featureId",
"!=",
"\"\"",
":",
"compoundId",
"=",
"datamodel",
".",
"FeatureCompoundId",
"(",
"self",
".",
"getCompoundId",
"(",
")",
... | Returns server-style compound ID for an internal featureId.
:param long featureId: id of feature in database
:return: string representing ID for the specified GA4GH protocol
Feature object in this FeatureSet. | [
"Returns",
"server",
"-",
"style",
"compound",
"ID",
"for",
"an",
"internal",
"featureId",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L202-L215 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | SimulatedFeatureSet.getFeature | def getFeature(self, compoundId):
"""
Fetches a simulated feature by ID.
:param compoundId: any non-null string
:return: A simulated feature with id set to the same value as the
passed-in compoundId.
":raises: exceptions.ObjectWithIdNotFoundException if None is passe... | python | def getFeature(self, compoundId):
"""
Fetches a simulated feature by ID.
:param compoundId: any non-null string
:return: A simulated feature with id set to the same value as the
passed-in compoundId.
":raises: exceptions.ObjectWithIdNotFoundException if None is passe... | [
"def",
"getFeature",
"(",
"self",
",",
"compoundId",
")",
":",
"if",
"compoundId",
"is",
"None",
":",
"raise",
"exceptions",
".",
"ObjectWithIdNotFoundException",
"(",
"compoundId",
")",
"randomNumberGenerator",
"=",
"random",
".",
"Random",
"(",
")",
"randomNum... | Fetches a simulated feature by ID.
:param compoundId: any non-null string
:return: A simulated feature with id set to the same value as the
passed-in compoundId.
":raises: exceptions.ObjectWithIdNotFoundException if None is passed
in for the compoundId. | [
"Fetches",
"a",
"simulated",
"feature",
"by",
"ID",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L254-L271 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | SimulatedFeatureSet.getFeatures | def getFeatures(self, referenceName=None, start=None, end=None,
startIndex=None, maxResults=None,
featureTypes=None, parentId=None,
name=None, geneSymbol=None, numFeatures=10):
"""
Returns a set number of simulated features.
:param ref... | python | def getFeatures(self, referenceName=None, start=None, end=None,
startIndex=None, maxResults=None,
featureTypes=None, parentId=None,
name=None, geneSymbol=None, numFeatures=10):
"""
Returns a set number of simulated features.
:param ref... | [
"def",
"getFeatures",
"(",
"self",
",",
"referenceName",
"=",
"None",
",",
"start",
"=",
"None",
",",
"end",
"=",
"None",
",",
"startIndex",
"=",
"None",
",",
"maxResults",
"=",
"None",
",",
"featureTypes",
"=",
"None",
",",
"parentId",
"=",
"None",
",... | Returns a set number of simulated features.
:param referenceName: name of reference to "search" on
:param start: start coordinate of query
:param end: end coordinate of query
:param startIndex: None or int
:param maxResults: None or int
:param featureTypes: optional list... | [
"Returns",
"a",
"set",
"number",
"of",
"simulated",
"features",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L273-L306 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | Gff3DbFeatureSet.populateFromFile | def populateFromFile(self, dataUrl):
"""
Populates the instance variables of this FeatureSet from the specified
data URL.
"""
self._dbFilePath = dataUrl
self._db = Gff3DbBackend(self._dbFilePath) | python | def populateFromFile(self, dataUrl):
"""
Populates the instance variables of this FeatureSet from the specified
data URL.
"""
self._dbFilePath = dataUrl
self._db = Gff3DbBackend(self._dbFilePath) | [
"def",
"populateFromFile",
"(",
"self",
",",
"dataUrl",
")",
":",
"self",
".",
"_dbFilePath",
"=",
"dataUrl",
"self",
".",
"_db",
"=",
"Gff3DbBackend",
"(",
"self",
".",
"_dbFilePath",
")"
] | Populates the instance variables of this FeatureSet from the specified
data URL. | [
"Populates",
"the",
"instance",
"variables",
"of",
"this",
"FeatureSet",
"from",
"the",
"specified",
"data",
"URL",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L334-L340 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | Gff3DbFeatureSet.populateFromRow | def populateFromRow(self, featureSetRecord):
"""
Populates the instance variables of this FeatureSet from the specified
DB row.
"""
self._dbFilePath = featureSetRecord.dataurl
self.setAttributesJson(featureSetRecord.attributes)
self._db = Gff3DbBackend(self._dbFil... | python | def populateFromRow(self, featureSetRecord):
"""
Populates the instance variables of this FeatureSet from the specified
DB row.
"""
self._dbFilePath = featureSetRecord.dataurl
self.setAttributesJson(featureSetRecord.attributes)
self._db = Gff3DbBackend(self._dbFil... | [
"def",
"populateFromRow",
"(",
"self",
",",
"featureSetRecord",
")",
":",
"self",
".",
"_dbFilePath",
"=",
"featureSetRecord",
".",
"dataurl",
"self",
".",
"setAttributesJson",
"(",
"featureSetRecord",
".",
"attributes",
")",
"self",
".",
"_db",
"=",
"Gff3DbBack... | Populates the instance variables of this FeatureSet from the specified
DB row. | [
"Populates",
"the",
"instance",
"variables",
"of",
"this",
"FeatureSet",
"from",
"the",
"specified",
"DB",
"row",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L342-L349 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | Gff3DbFeatureSet.getFeature | def getFeature(self, compoundId):
"""
Returns a protocol.Feature object corresponding to a compoundId
:param compoundId: a datamodel.FeatureCompoundId object
:return: a Feature object.
:raises: exceptions.ObjectWithIdNotFoundException if invalid
compoundId is provided... | python | def getFeature(self, compoundId):
"""
Returns a protocol.Feature object corresponding to a compoundId
:param compoundId: a datamodel.FeatureCompoundId object
:return: a Feature object.
:raises: exceptions.ObjectWithIdNotFoundException if invalid
compoundId is provided... | [
"def",
"getFeature",
"(",
"self",
",",
"compoundId",
")",
":",
"featureId",
"=",
"long",
"(",
"compoundId",
".",
"featureId",
")",
"with",
"self",
".",
"_db",
"as",
"dataSource",
":",
"featureReturned",
"=",
"dataSource",
".",
"getFeatureById",
"(",
"feature... | Returns a protocol.Feature object corresponding to a compoundId
:param compoundId: a datamodel.FeatureCompoundId object
:return: a Feature object.
:raises: exceptions.ObjectWithIdNotFoundException if invalid
compoundId is provided. | [
"Returns",
"a",
"protocol",
".",
"Feature",
"object",
"corresponding",
"to",
"a",
"compoundId",
":",
"param",
"compoundId",
":",
"a",
"datamodel",
".",
"FeatureCompoundId",
"object",
":",
"return",
":",
"a",
"Feature",
"object",
".",
":",
"raises",
":",
"exc... | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L357-L373 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | Gff3DbFeatureSet._gaFeatureForFeatureDbRecord | def _gaFeatureForFeatureDbRecord(self, feature):
"""
:param feature: The DB Row representing a feature
:return: the corresponding GA4GH protocol.Feature object
"""
gaFeature = protocol.Feature()
gaFeature.id = self.getCompoundIdForFeatureId(feature['id'])
if featu... | python | def _gaFeatureForFeatureDbRecord(self, feature):
"""
:param feature: The DB Row representing a feature
:return: the corresponding GA4GH protocol.Feature object
"""
gaFeature = protocol.Feature()
gaFeature.id = self.getCompoundIdForFeatureId(feature['id'])
if featu... | [
"def",
"_gaFeatureForFeatureDbRecord",
"(",
"self",
",",
"feature",
")",
":",
"gaFeature",
"=",
"protocol",
".",
"Feature",
"(",
")",
"gaFeature",
".",
"id",
"=",
"self",
".",
"getCompoundIdForFeatureId",
"(",
"feature",
"[",
"'id'",
"]",
")",
"if",
"feature... | :param feature: The DB Row representing a feature
:return: the corresponding GA4GH protocol.Feature object | [
":",
"param",
"feature",
":",
"The",
"DB",
"Row",
"representing",
"a",
"feature",
":",
"return",
":",
"the",
"corresponding",
"GA4GH",
"protocol",
".",
"Feature",
"object"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L375-L409 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/sequence_annotations.py | Gff3DbFeatureSet.getFeatures | def getFeatures(self, referenceName=None, start=None, end=None,
startIndex=None, maxResults=None,
featureTypes=None, parentId=None,
name=None, geneSymbol=None):
"""
method passed to runSearchRequest to fulfill the request
:param str ref... | python | def getFeatures(self, referenceName=None, start=None, end=None,
startIndex=None, maxResults=None,
featureTypes=None, parentId=None,
name=None, geneSymbol=None):
"""
method passed to runSearchRequest to fulfill the request
:param str ref... | [
"def",
"getFeatures",
"(",
"self",
",",
"referenceName",
"=",
"None",
",",
"start",
"=",
"None",
",",
"end",
"=",
"None",
",",
"startIndex",
"=",
"None",
",",
"maxResults",
"=",
"None",
",",
"featureTypes",
"=",
"None",
",",
"parentId",
"=",
"None",
",... | method passed to runSearchRequest to fulfill the request
:param str referenceName: name of reference (ex: "chr1")
:param start: castable to int, start position on reference
:param end: castable to int, end position on reference
:param startIndex: none or castable to int
:param ma... | [
"method",
"passed",
"to",
"runSearchRequest",
"to",
"fulfill",
"the",
"request",
":",
"param",
"str",
"referenceName",
":",
"name",
"of",
"reference",
"(",
"ex",
":",
"chr1",
")",
":",
"param",
"start",
":",
"castable",
"to",
"int",
"start",
"position",
"o... | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/sequence_annotations.py#L411-L437 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | AbstractRnaQuantificationSet.addRnaQuantification | def addRnaQuantification(self, rnaQuantification):
"""
Add an rnaQuantification to this rnaQuantificationSet
"""
id_ = rnaQuantification.getId()
self._rnaQuantificationIdMap[id_] = rnaQuantification
self._rnaQuantificationIds.append(id_) | python | def addRnaQuantification(self, rnaQuantification):
"""
Add an rnaQuantification to this rnaQuantificationSet
"""
id_ = rnaQuantification.getId()
self._rnaQuantificationIdMap[id_] = rnaQuantification
self._rnaQuantificationIds.append(id_) | [
"def",
"addRnaQuantification",
"(",
"self",
",",
"rnaQuantification",
")",
":",
"id_",
"=",
"rnaQuantification",
".",
"getId",
"(",
")",
"self",
".",
"_rnaQuantificationIdMap",
"[",
"id_",
"]",
"=",
"rnaQuantification",
"self",
".",
"_rnaQuantificationIds",
".",
... | Add an rnaQuantification to this rnaQuantificationSet | [
"Add",
"an",
"rnaQuantification",
"to",
"this",
"rnaQuantificationSet"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L130-L136 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | AbstractRnaQuantificationSet.toProtocolElement | def toProtocolElement(self):
"""
Converts this rnaQuant into its GA4GH protocol equivalent.
"""
protocolElement = protocol.RnaQuantificationSet()
protocolElement.id = self.getId()
protocolElement.dataset_id = self._parentContainer.getId()
protocolElement.name = se... | python | def toProtocolElement(self):
"""
Converts this rnaQuant into its GA4GH protocol equivalent.
"""
protocolElement = protocol.RnaQuantificationSet()
protocolElement.id = self.getId()
protocolElement.dataset_id = self._parentContainer.getId()
protocolElement.name = se... | [
"def",
"toProtocolElement",
"(",
"self",
")",
":",
"protocolElement",
"=",
"protocol",
".",
"RnaQuantificationSet",
"(",
")",
"protocolElement",
".",
"id",
"=",
"self",
".",
"getId",
"(",
")",
"protocolElement",
".",
"dataset_id",
"=",
"self",
".",
"_parentCon... | Converts this rnaQuant into its GA4GH protocol equivalent. | [
"Converts",
"this",
"rnaQuant",
"into",
"its",
"GA4GH",
"protocol",
"equivalent",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L138-L147 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | SqliteRnaQuantificationSet.populateFromFile | def populateFromFile(self, dataUrl):
"""
Populates the instance variables of this RnaQuantificationSet from the
specified data URL.
"""
self._dbFilePath = dataUrl
self._db = SqliteRnaBackend(self._dbFilePath)
self.addRnaQuants() | python | def populateFromFile(self, dataUrl):
"""
Populates the instance variables of this RnaQuantificationSet from the
specified data URL.
"""
self._dbFilePath = dataUrl
self._db = SqliteRnaBackend(self._dbFilePath)
self.addRnaQuants() | [
"def",
"populateFromFile",
"(",
"self",
",",
"dataUrl",
")",
":",
"self",
".",
"_dbFilePath",
"=",
"dataUrl",
"self",
".",
"_db",
"=",
"SqliteRnaBackend",
"(",
"self",
".",
"_dbFilePath",
")",
"self",
".",
"addRnaQuants",
"(",
")"
] | Populates the instance variables of this RnaQuantificationSet from the
specified data URL. | [
"Populates",
"the",
"instance",
"variables",
"of",
"this",
"RnaQuantificationSet",
"from",
"the",
"specified",
"data",
"URL",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L167-L174 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | SqliteRnaQuantificationSet.populateFromRow | def populateFromRow(self, quantificationSetRecord):
"""
Populates the instance variables of this RnaQuantificationSet from the
specified DB row.
"""
self._dbFilePath = quantificationSetRecord.dataurl
self.setAttributesJson(quantificationSetRecord.attributes)
self.... | python | def populateFromRow(self, quantificationSetRecord):
"""
Populates the instance variables of this RnaQuantificationSet from the
specified DB row.
"""
self._dbFilePath = quantificationSetRecord.dataurl
self.setAttributesJson(quantificationSetRecord.attributes)
self.... | [
"def",
"populateFromRow",
"(",
"self",
",",
"quantificationSetRecord",
")",
":",
"self",
".",
"_dbFilePath",
"=",
"quantificationSetRecord",
".",
"dataurl",
"self",
".",
"setAttributesJson",
"(",
"quantificationSetRecord",
".",
"attributes",
")",
"self",
".",
"_db",... | Populates the instance variables of this RnaQuantificationSet from the
specified DB row. | [
"Populates",
"the",
"instance",
"variables",
"of",
"this",
"RnaQuantificationSet",
"from",
"the",
"specified",
"DB",
"row",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L176-L184 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | AbstractRnaQuantification.toProtocolElement | def toProtocolElement(self):
"""
Converts this rnaQuant into its GA4GH protocol equivalent.
"""
protocolElement = protocol.RnaQuantification()
protocolElement.id = self.getId()
protocolElement.name = self._name
protocolElement.description = self._description
... | python | def toProtocolElement(self):
"""
Converts this rnaQuant into its GA4GH protocol equivalent.
"""
protocolElement = protocol.RnaQuantification()
protocolElement.id = self.getId()
protocolElement.name = self._name
protocolElement.description = self._description
... | [
"def",
"toProtocolElement",
"(",
"self",
")",
":",
"protocolElement",
"=",
"protocol",
".",
"RnaQuantification",
"(",
")",
"protocolElement",
".",
"id",
"=",
"self",
".",
"getId",
"(",
")",
"protocolElement",
".",
"name",
"=",
"self",
".",
"_name",
"protocol... | Converts this rnaQuant into its GA4GH protocol equivalent. | [
"Converts",
"this",
"rnaQuant",
"into",
"its",
"GA4GH",
"protocol",
"equivalent",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L213-L228 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | AbstractRnaQuantification.addRnaQuantMetadata | def addRnaQuantMetadata(self, fields):
"""
data elements are:
Id, annotations, description, name, readGroupId
where annotations is a comma separated list
"""
self._featureSetIds = fields["feature_set_ids"].split(',')
self._description = fields["description"]
... | python | def addRnaQuantMetadata(self, fields):
"""
data elements are:
Id, annotations, description, name, readGroupId
where annotations is a comma separated list
"""
self._featureSetIds = fields["feature_set_ids"].split(',')
self._description = fields["description"]
... | [
"def",
"addRnaQuantMetadata",
"(",
"self",
",",
"fields",
")",
":",
"self",
".",
"_featureSetIds",
"=",
"fields",
"[",
"\"feature_set_ids\"",
"]",
".",
"split",
"(",
"','",
")",
"self",
".",
"_description",
"=",
"fields",
"[",
"\"description\"",
"]",
"self",... | data elements are:
Id, annotations, description, name, readGroupId
where annotations is a comma separated list | [
"data",
"elements",
"are",
":",
"Id",
"annotations",
"description",
"name",
"readGroupId",
"where",
"annotations",
"is",
"a",
"comma",
"separated",
"list"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L230-L249 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | SqliteRnaQuantification.getRnaQuantMetadata | def getRnaQuantMetadata(self):
"""
input is tab file with no header. Columns are:
Id, annotations, description, name, readGroupId
where annotation is a comma separated list
"""
rnaQuantId = self.getLocalId()
with self._db as dataSource:
rnaQuantReturn... | python | def getRnaQuantMetadata(self):
"""
input is tab file with no header. Columns are:
Id, annotations, description, name, readGroupId
where annotation is a comma separated list
"""
rnaQuantId = self.getLocalId()
with self._db as dataSource:
rnaQuantReturn... | [
"def",
"getRnaQuantMetadata",
"(",
"self",
")",
":",
"rnaQuantId",
"=",
"self",
".",
"getLocalId",
"(",
")",
"with",
"self",
".",
"_db",
"as",
"dataSource",
":",
"rnaQuantReturned",
"=",
"dataSource",
".",
"getRnaQuantificationById",
"(",
"rnaQuantId",
")",
"s... | input is tab file with no header. Columns are:
Id, annotations, description, name, readGroupId
where annotation is a comma separated list | [
"input",
"is",
"tab",
"file",
"with",
"no",
"header",
".",
"Columns",
"are",
":",
"Id",
"annotations",
"description",
"name",
"readGroupId",
"where",
"annotation",
"is",
"a",
"comma",
"separated",
"list"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L283-L293 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | SqliteRnaQuantification.populateFromFile | def populateFromFile(self, dataUrl):
"""
Populates the instance variables of this FeatureSet from the specified
data URL.
"""
self._dbFilePath = dataUrl
self._db = SqliteRnaBackend(self._dbFilePath)
self.getRnaQuantMetadata() | python | def populateFromFile(self, dataUrl):
"""
Populates the instance variables of this FeatureSet from the specified
data URL.
"""
self._dbFilePath = dataUrl
self._db = SqliteRnaBackend(self._dbFilePath)
self.getRnaQuantMetadata() | [
"def",
"populateFromFile",
"(",
"self",
",",
"dataUrl",
")",
":",
"self",
".",
"_dbFilePath",
"=",
"dataUrl",
"self",
".",
"_db",
"=",
"SqliteRnaBackend",
"(",
"self",
".",
"_dbFilePath",
")",
"self",
".",
"getRnaQuantMetadata",
"(",
")"
] | Populates the instance variables of this FeatureSet from the specified
data URL. | [
"Populates",
"the",
"instance",
"variables",
"of",
"this",
"FeatureSet",
"from",
"the",
"specified",
"data",
"URL",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L295-L302 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | SqliteRnaQuantification.populateFromRow | def populateFromRow(self, row):
"""
Populates the instance variables of this FeatureSet from the specified
DB row.
"""
self._dbFilePath = row[b'dataUrl']
self._db = SqliteRnaBackend(self._dbFilePath)
self.getRnaQuantMetadata() | python | def populateFromRow(self, row):
"""
Populates the instance variables of this FeatureSet from the specified
DB row.
"""
self._dbFilePath = row[b'dataUrl']
self._db = SqliteRnaBackend(self._dbFilePath)
self.getRnaQuantMetadata() | [
"def",
"populateFromRow",
"(",
"self",
",",
"row",
")",
":",
"self",
".",
"_dbFilePath",
"=",
"row",
"[",
"b'dataUrl'",
"]",
"self",
".",
"_db",
"=",
"SqliteRnaBackend",
"(",
"self",
".",
"_dbFilePath",
")",
"self",
".",
"getRnaQuantMetadata",
"(",
")"
] | Populates the instance variables of this FeatureSet from the specified
DB row. | [
"Populates",
"the",
"instance",
"variables",
"of",
"this",
"FeatureSet",
"from",
"the",
"specified",
"DB",
"row",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L304-L311 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | SqliteRnaQuantification.getExpressionLevels | def getExpressionLevels(
self, threshold=0.0, names=[], startIndex=0, maxResults=0):
"""
Returns the list of ExpressionLevels in this RNA Quantification.
"""
rnaQuantificationId = self.getLocalId()
with self._db as dataSource:
expressionsReturned = dataSou... | python | def getExpressionLevels(
self, threshold=0.0, names=[], startIndex=0, maxResults=0):
"""
Returns the list of ExpressionLevels in this RNA Quantification.
"""
rnaQuantificationId = self.getLocalId()
with self._db as dataSource:
expressionsReturned = dataSou... | [
"def",
"getExpressionLevels",
"(",
"self",
",",
"threshold",
"=",
"0.0",
",",
"names",
"=",
"[",
"]",
",",
"startIndex",
"=",
"0",
",",
"maxResults",
"=",
"0",
")",
":",
"rnaQuantificationId",
"=",
"self",
".",
"getLocalId",
"(",
")",
"with",
"self",
"... | Returns the list of ExpressionLevels in this RNA Quantification. | [
"Returns",
"the",
"list",
"of",
"ExpressionLevels",
"in",
"this",
"RNA",
"Quantification",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L319-L335 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | SqliteRnaBackend.searchRnaQuantificationsInDb | def searchRnaQuantificationsInDb(
self, rnaQuantificationId=""):
"""
:param rnaQuantificationId: string restrict search by id
:return an array of dictionaries, representing the returned data.
"""
sql = ("SELECT * FROM RnaQuantification")
sql_args = ()
... | python | def searchRnaQuantificationsInDb(
self, rnaQuantificationId=""):
"""
:param rnaQuantificationId: string restrict search by id
:return an array of dictionaries, representing the returned data.
"""
sql = ("SELECT * FROM RnaQuantification")
sql_args = ()
... | [
"def",
"searchRnaQuantificationsInDb",
"(",
"self",
",",
"rnaQuantificationId",
"=",
"\"\"",
")",
":",
"sql",
"=",
"(",
"\"SELECT * FROM RnaQuantification\"",
")",
"sql_args",
"=",
"(",
")",
"if",
"len",
"(",
"rnaQuantificationId",
")",
">",
"0",
":",
"sql",
"... | :param rnaQuantificationId: string restrict search by id
:return an array of dictionaries, representing the returned data. | [
":",
"param",
"rnaQuantificationId",
":",
"string",
"restrict",
"search",
"by",
"id",
":",
"return",
"an",
"array",
"of",
"dictionaries",
"representing",
"the",
"returned",
"data",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L353-L369 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | SqliteRnaBackend.getRnaQuantificationById | def getRnaQuantificationById(self, rnaQuantificationId):
"""
:param rnaQuantificationId: the RNA Quantification ID
:return: dictionary representing an RnaQuantification object,
or None if no match is found.
"""
sql = ("SELECT * FROM RnaQuantification WHERE id = ?")
... | python | def getRnaQuantificationById(self, rnaQuantificationId):
"""
:param rnaQuantificationId: the RNA Quantification ID
:return: dictionary representing an RnaQuantification object,
or None if no match is found.
"""
sql = ("SELECT * FROM RnaQuantification WHERE id = ?")
... | [
"def",
"getRnaQuantificationById",
"(",
"self",
",",
"rnaQuantificationId",
")",
":",
"sql",
"=",
"(",
"\"SELECT * FROM RnaQuantification WHERE id = ?\"",
")",
"query",
"=",
"self",
".",
"_dbconn",
".",
"execute",
"(",
"sql",
",",
"(",
"rnaQuantificationId",
",",
... | :param rnaQuantificationId: the RNA Quantification ID
:return: dictionary representing an RnaQuantification object,
or None if no match is found. | [
":",
"param",
"rnaQuantificationId",
":",
"the",
"RNA",
"Quantification",
"ID",
":",
"return",
":",
"dictionary",
"representing",
"an",
"RnaQuantification",
"object",
"or",
"None",
"if",
"no",
"match",
"is",
"found",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L371-L383 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | SqliteRnaBackend.searchExpressionLevelsInDb | def searchExpressionLevelsInDb(
self, rnaQuantId, names=[], threshold=0.0, startIndex=0,
maxResults=0):
"""
:param rnaQuantId: string restrict search by quantification id
:param threshold: float minimum expression values to return
:return an array of dictionaries,... | python | def searchExpressionLevelsInDb(
self, rnaQuantId, names=[], threshold=0.0, startIndex=0,
maxResults=0):
"""
:param rnaQuantId: string restrict search by quantification id
:param threshold: float minimum expression values to return
:return an array of dictionaries,... | [
"def",
"searchExpressionLevelsInDb",
"(",
"self",
",",
"rnaQuantId",
",",
"names",
"=",
"[",
"]",
",",
"threshold",
"=",
"0.0",
",",
"startIndex",
"=",
"0",
",",
"maxResults",
"=",
"0",
")",
":",
"sql",
"=",
"(",
"\"SELECT * FROM Expression WHERE \"",
"\"rna... | :param rnaQuantId: string restrict search by quantification id
:param threshold: float minimum expression values to return
:return an array of dictionaries, representing the returned data. | [
":",
"param",
"rnaQuantId",
":",
"string",
"restrict",
"search",
"by",
"quantification",
"id",
":",
"param",
"threshold",
":",
"float",
"minimum",
"expression",
"values",
"to",
"return",
":",
"return",
"an",
"array",
"of",
"dictionaries",
"representing",
"the",
... | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L385-L406 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/rna_quantification.py | SqliteRnaBackend.getExpressionLevelById | def getExpressionLevelById(self, expressionId):
"""
:param expressionId: the ExpressionLevel ID
:return: dictionary representing an ExpressionLevel object,
or None if no match is found.
"""
sql = ("SELECT * FROM Expression WHERE id = ?")
query = self._dbconn.e... | python | def getExpressionLevelById(self, expressionId):
"""
:param expressionId: the ExpressionLevel ID
:return: dictionary representing an ExpressionLevel object,
or None if no match is found.
"""
sql = ("SELECT * FROM Expression WHERE id = ?")
query = self._dbconn.e... | [
"def",
"getExpressionLevelById",
"(",
"self",
",",
"expressionId",
")",
":",
"sql",
"=",
"(",
"\"SELECT * FROM Expression WHERE id = ?\"",
")",
"query",
"=",
"self",
".",
"_dbconn",
".",
"execute",
"(",
"sql",
",",
"(",
"expressionId",
",",
")",
")",
"try",
... | :param expressionId: the ExpressionLevel ID
:return: dictionary representing an ExpressionLevel object,
or None if no match is found. | [
":",
"param",
"expressionId",
":",
"the",
"ExpressionLevel",
"ID",
":",
"return",
":",
"dictionary",
"representing",
"an",
"ExpressionLevel",
"object",
"or",
"None",
"if",
"no",
"match",
"is",
"found",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/rna_quantification.py#L408-L420 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | CallSet.populateFromRow | def populateFromRow(self, callSetRecord):
"""
Populates this CallSet from the specified DB row.
"""
self._biosampleId = callSetRecord.biosampleid
self.setAttributesJson(callSetRecord.attributes) | python | def populateFromRow(self, callSetRecord):
"""
Populates this CallSet from the specified DB row.
"""
self._biosampleId = callSetRecord.biosampleid
self.setAttributesJson(callSetRecord.attributes) | [
"def",
"populateFromRow",
"(",
"self",
",",
"callSetRecord",
")",
":",
"self",
".",
"_biosampleId",
"=",
"callSetRecord",
".",
"biosampleid",
"self",
".",
"setAttributesJson",
"(",
"callSetRecord",
".",
"attributes",
")"
] | Populates this CallSet from the specified DB row. | [
"Populates",
"this",
"CallSet",
"from",
"the",
"specified",
"DB",
"row",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L61-L66 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | CallSet.toProtocolElement | def toProtocolElement(self):
"""
Returns the representation of this CallSet as the corresponding
ProtocolElement.
"""
variantSet = self.getParentContainer()
gaCallSet = protocol.CallSet(
biosample_id=self.getBiosampleId())
if variantSet.getCreationTime... | python | def toProtocolElement(self):
"""
Returns the representation of this CallSet as the corresponding
ProtocolElement.
"""
variantSet = self.getParentContainer()
gaCallSet = protocol.CallSet(
biosample_id=self.getBiosampleId())
if variantSet.getCreationTime... | [
"def",
"toProtocolElement",
"(",
"self",
")",
":",
"variantSet",
"=",
"self",
".",
"getParentContainer",
"(",
")",
"gaCallSet",
"=",
"protocol",
".",
"CallSet",
"(",
"biosample_id",
"=",
"self",
".",
"getBiosampleId",
"(",
")",
")",
"if",
"variantSet",
".",
... | Returns the representation of this CallSet as the corresponding
ProtocolElement. | [
"Returns",
"the",
"representation",
"of",
"this",
"CallSet",
"as",
"the",
"corresponding",
"ProtocolElement",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L68-L84 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet.addVariantAnnotationSet | def addVariantAnnotationSet(self, variantAnnotationSet):
"""
Adds the specified variantAnnotationSet to this dataset.
"""
id_ = variantAnnotationSet.getId()
self._variantAnnotationSetIdMap[id_] = variantAnnotationSet
self._variantAnnotationSetIds.append(id_) | python | def addVariantAnnotationSet(self, variantAnnotationSet):
"""
Adds the specified variantAnnotationSet to this dataset.
"""
id_ = variantAnnotationSet.getId()
self._variantAnnotationSetIdMap[id_] = variantAnnotationSet
self._variantAnnotationSetIds.append(id_) | [
"def",
"addVariantAnnotationSet",
"(",
"self",
",",
"variantAnnotationSet",
")",
":",
"id_",
"=",
"variantAnnotationSet",
".",
"getId",
"(",
")",
"self",
".",
"_variantAnnotationSetIdMap",
"[",
"id_",
"]",
"=",
"variantAnnotationSet",
"self",
".",
"_variantAnnotatio... | Adds the specified variantAnnotationSet to this dataset. | [
"Adds",
"the",
"specified",
"variantAnnotationSet",
"to",
"this",
"dataset",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L130-L136 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet.getVariantAnnotationSet | def getVariantAnnotationSet(self, id_):
"""
Returns the AnnotationSet in this dataset with the specified 'id'
"""
if id_ not in self._variantAnnotationSetIdMap:
raise exceptions.AnnotationSetNotFoundException(id_)
return self._variantAnnotationSetIdMap[id_] | python | def getVariantAnnotationSet(self, id_):
"""
Returns the AnnotationSet in this dataset with the specified 'id'
"""
if id_ not in self._variantAnnotationSetIdMap:
raise exceptions.AnnotationSetNotFoundException(id_)
return self._variantAnnotationSetIdMap[id_] | [
"def",
"getVariantAnnotationSet",
"(",
"self",
",",
"id_",
")",
":",
"if",
"id_",
"not",
"in",
"self",
".",
"_variantAnnotationSetIdMap",
":",
"raise",
"exceptions",
".",
"AnnotationSetNotFoundException",
"(",
"id_",
")",
"return",
"self",
".",
"_variantAnnotation... | Returns the AnnotationSet in this dataset with the specified 'id' | [
"Returns",
"the",
"AnnotationSet",
"in",
"this",
"dataset",
"with",
"the",
"specified",
"id"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L146-L152 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet.addCallSet | def addCallSet(self, callSet):
"""
Adds the specfied CallSet to this VariantSet.
"""
callSetId = callSet.getId()
self._callSetIdMap[callSetId] = callSet
self._callSetNameMap[callSet.getLocalId()] = callSet
self._callSetIds.append(callSetId)
self._callSetId... | python | def addCallSet(self, callSet):
"""
Adds the specfied CallSet to this VariantSet.
"""
callSetId = callSet.getId()
self._callSetIdMap[callSetId] = callSet
self._callSetNameMap[callSet.getLocalId()] = callSet
self._callSetIds.append(callSetId)
self._callSetId... | [
"def",
"addCallSet",
"(",
"self",
",",
"callSet",
")",
":",
"callSetId",
"=",
"callSet",
".",
"getId",
"(",
")",
"self",
".",
"_callSetIdMap",
"[",
"callSetId",
"]",
"=",
"callSet",
"self",
".",
"_callSetNameMap",
"[",
"callSet",
".",
"getLocalId",
"(",
... | Adds the specfied CallSet to this VariantSet. | [
"Adds",
"the",
"specfied",
"CallSet",
"to",
"this",
"VariantSet",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L192-L200 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet.addCallSetFromName | def addCallSetFromName(self, sampleName):
"""
Adds a CallSet for the specified sample name.
"""
callSet = CallSet(self, sampleName)
self.addCallSet(callSet) | python | def addCallSetFromName(self, sampleName):
"""
Adds a CallSet for the specified sample name.
"""
callSet = CallSet(self, sampleName)
self.addCallSet(callSet) | [
"def",
"addCallSetFromName",
"(",
"self",
",",
"sampleName",
")",
":",
"callSet",
"=",
"CallSet",
"(",
"self",
",",
"sampleName",
")",
"self",
".",
"addCallSet",
"(",
"callSet",
")"
] | Adds a CallSet for the specified sample name. | [
"Adds",
"a",
"CallSet",
"for",
"the",
"specified",
"sample",
"name",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L202-L207 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet.getCallSetByName | def getCallSetByName(self, name):
"""
Returns a CallSet with the specified name, or raises a
CallSetNameNotFoundException if it does not exist.
"""
if name not in self._callSetNameMap:
raise exceptions.CallSetNameNotFoundException(name)
return self._callSetNam... | python | def getCallSetByName(self, name):
"""
Returns a CallSet with the specified name, or raises a
CallSetNameNotFoundException if it does not exist.
"""
if name not in self._callSetNameMap:
raise exceptions.CallSetNameNotFoundException(name)
return self._callSetNam... | [
"def",
"getCallSetByName",
"(",
"self",
",",
"name",
")",
":",
"if",
"name",
"not",
"in",
"self",
".",
"_callSetNameMap",
":",
"raise",
"exceptions",
".",
"CallSetNameNotFoundException",
"(",
"name",
")",
"return",
"self",
".",
"_callSetNameMap",
"[",
"name",
... | Returns a CallSet with the specified name, or raises a
CallSetNameNotFoundException if it does not exist. | [
"Returns",
"a",
"CallSet",
"with",
"the",
"specified",
"name",
"or",
"raises",
"a",
"CallSetNameNotFoundException",
"if",
"it",
"does",
"not",
"exist",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L221-L228 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet.getCallSet | def getCallSet(self, id_):
"""
Returns a CallSet with the specified id, or raises a
CallSetNotFoundException if it does not exist.
"""
if id_ not in self._callSetIdMap:
raise exceptions.CallSetNotFoundException(id_)
return self._callSetIdMap[id_] | python | def getCallSet(self, id_):
"""
Returns a CallSet with the specified id, or raises a
CallSetNotFoundException if it does not exist.
"""
if id_ not in self._callSetIdMap:
raise exceptions.CallSetNotFoundException(id_)
return self._callSetIdMap[id_] | [
"def",
"getCallSet",
"(",
"self",
",",
"id_",
")",
":",
"if",
"id_",
"not",
"in",
"self",
".",
"_callSetIdMap",
":",
"raise",
"exceptions",
".",
"CallSetNotFoundException",
"(",
"id_",
")",
"return",
"self",
".",
"_callSetIdMap",
"[",
"id_",
"]"
] | Returns a CallSet with the specified id, or raises a
CallSetNotFoundException if it does not exist. | [
"Returns",
"a",
"CallSet",
"with",
"the",
"specified",
"id",
"or",
"raises",
"a",
"CallSetNotFoundException",
"if",
"it",
"does",
"not",
"exist",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L236-L243 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet.toProtocolElement | def toProtocolElement(self):
"""
Converts this VariantSet into its GA4GH protocol equivalent.
"""
protocolElement = protocol.VariantSet()
protocolElement.id = self.getId()
protocolElement.dataset_id = self.getParentContainer().getId()
protocolElement.reference_set... | python | def toProtocolElement(self):
"""
Converts this VariantSet into its GA4GH protocol equivalent.
"""
protocolElement = protocol.VariantSet()
protocolElement.id = self.getId()
protocolElement.dataset_id = self.getParentContainer().getId()
protocolElement.reference_set... | [
"def",
"toProtocolElement",
"(",
"self",
")",
":",
"protocolElement",
"=",
"protocol",
".",
"VariantSet",
"(",
")",
"protocolElement",
".",
"id",
"=",
"self",
".",
"getId",
"(",
")",
"protocolElement",
".",
"dataset_id",
"=",
"self",
".",
"getParentContainer",... | Converts this VariantSet into its GA4GH protocol equivalent. | [
"Converts",
"this",
"VariantSet",
"into",
"its",
"GA4GH",
"protocol",
"equivalent",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L251-L264 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet._createGaVariant | def _createGaVariant(self):
"""
Convenience method to set the common fields in a GA Variant
object from this variant set.
"""
ret = protocol.Variant()
if self._creationTime:
ret.created = self._creationTime
if self._updatedTime:
ret.updated... | python | def _createGaVariant(self):
"""
Convenience method to set the common fields in a GA Variant
object from this variant set.
"""
ret = protocol.Variant()
if self._creationTime:
ret.created = self._creationTime
if self._updatedTime:
ret.updated... | [
"def",
"_createGaVariant",
"(",
"self",
")",
":",
"ret",
"=",
"protocol",
".",
"Variant",
"(",
")",
"if",
"self",
".",
"_creationTime",
":",
"ret",
".",
"created",
"=",
"self",
".",
"_creationTime",
"if",
"self",
".",
"_updatedTime",
":",
"ret",
".",
"... | Convenience method to set the common fields in a GA Variant
object from this variant set. | [
"Convenience",
"method",
"to",
"set",
"the",
"common",
"fields",
"in",
"a",
"GA",
"Variant",
"object",
"from",
"this",
"variant",
"set",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L272-L283 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet.getVariantId | def getVariantId(self, gaVariant):
"""
Returns an ID string suitable for the specified GA Variant
object in this variant set.
"""
md5 = self.hashVariant(gaVariant)
compoundId = datamodel.VariantCompoundId(
self.getCompoundId(), gaVariant.reference_name,
... | python | def getVariantId(self, gaVariant):
"""
Returns an ID string suitable for the specified GA Variant
object in this variant set.
"""
md5 = self.hashVariant(gaVariant)
compoundId = datamodel.VariantCompoundId(
self.getCompoundId(), gaVariant.reference_name,
... | [
"def",
"getVariantId",
"(",
"self",
",",
"gaVariant",
")",
":",
"md5",
"=",
"self",
".",
"hashVariant",
"(",
"gaVariant",
")",
"compoundId",
"=",
"datamodel",
".",
"VariantCompoundId",
"(",
"self",
".",
"getCompoundId",
"(",
")",
",",
"gaVariant",
".",
"re... | Returns an ID string suitable for the specified GA Variant
object in this variant set. | [
"Returns",
"an",
"ID",
"string",
"suitable",
"for",
"the",
"specified",
"GA",
"Variant",
"object",
"in",
"this",
"variant",
"set",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L285-L294 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet.getCallSetId | def getCallSetId(self, sampleName):
"""
Returns the callSetId for the specified sampleName in this
VariantSet.
"""
compoundId = datamodel.CallSetCompoundId(
self.getCompoundId(), sampleName)
return str(compoundId) | python | def getCallSetId(self, sampleName):
"""
Returns the callSetId for the specified sampleName in this
VariantSet.
"""
compoundId = datamodel.CallSetCompoundId(
self.getCompoundId(), sampleName)
return str(compoundId) | [
"def",
"getCallSetId",
"(",
"self",
",",
"sampleName",
")",
":",
"compoundId",
"=",
"datamodel",
".",
"CallSetCompoundId",
"(",
"self",
".",
"getCompoundId",
"(",
")",
",",
"sampleName",
")",
"return",
"str",
"(",
"compoundId",
")"
] | Returns the callSetId for the specified sampleName in this
VariantSet. | [
"Returns",
"the",
"callSetId",
"for",
"the",
"specified",
"sampleName",
"in",
"this",
"VariantSet",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L296-L303 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantSet.hashVariant | def hashVariant(cls, gaVariant):
"""
Produces an MD5 hash of the ga variant object to distinguish
it from other variants at the same genomic coordinate.
"""
hash_str = gaVariant.reference_bases + \
str(tuple(gaVariant.alternate_bases))
return hashlib.md5(hash_... | python | def hashVariant(cls, gaVariant):
"""
Produces an MD5 hash of the ga variant object to distinguish
it from other variants at the same genomic coordinate.
"""
hash_str = gaVariant.reference_bases + \
str(tuple(gaVariant.alternate_bases))
return hashlib.md5(hash_... | [
"def",
"hashVariant",
"(",
"cls",
",",
"gaVariant",
")",
":",
"hash_str",
"=",
"gaVariant",
".",
"reference_bases",
"+",
"str",
"(",
"tuple",
"(",
"gaVariant",
".",
"alternate_bases",
")",
")",
"return",
"hashlib",
".",
"md5",
"(",
"hash_str",
")",
".",
... | Produces an MD5 hash of the ga variant object to distinguish
it from other variants at the same genomic coordinate. | [
"Produces",
"an",
"MD5",
"hash",
"of",
"the",
"ga",
"variant",
"object",
"to",
"distinguish",
"it",
"from",
"other",
"variants",
"at",
"the",
"same",
"genomic",
"coordinate",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L306-L313 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | SimulatedVariantSet.generateVariant | def generateVariant(self, referenceName, position, randomNumberGenerator):
"""
Generate a random variant for the specified position using the
specified random number generator. This generator should be seeded
with a value that is unique to this position so that the same variant
w... | python | def generateVariant(self, referenceName, position, randomNumberGenerator):
"""
Generate a random variant for the specified position using the
specified random number generator. This generator should be seeded
with a value that is unique to this position so that the same variant
w... | [
"def",
"generateVariant",
"(",
"self",
",",
"referenceName",
",",
"position",
",",
"randomNumberGenerator",
")",
":",
"variant",
"=",
"self",
".",
"_createGaVariant",
"(",
")",
"variant",
".",
"reference_name",
"=",
"referenceName",
"variant",
".",
"start",
"=",... | Generate a random variant for the specified position using the
specified random number generator. This generator should be seeded
with a value that is unique to this position so that the same variant
will always be produced regardless of the order it is generated in. | [
"Generate",
"a",
"random",
"variant",
"for",
"the",
"specified",
"position",
"using",
"the",
"specified",
"random",
"number",
"generator",
".",
"This",
"generator",
"should",
"be",
"seeded",
"with",
"a",
"value",
"that",
"is",
"unique",
"to",
"this",
"position... | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L394-L434 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet.populateFromRow | def populateFromRow(self, variantSetRecord):
"""
Populates this VariantSet from the specified DB row.
"""
self._created = variantSetRecord.created
self._updated = variantSetRecord.updated
self.setAttributesJson(variantSetRecord.attributes)
self._chromFileMap = {}
... | python | def populateFromRow(self, variantSetRecord):
"""
Populates this VariantSet from the specified DB row.
"""
self._created = variantSetRecord.created
self._updated = variantSetRecord.updated
self.setAttributesJson(variantSetRecord.attributes)
self._chromFileMap = {}
... | [
"def",
"populateFromRow",
"(",
"self",
",",
"variantSetRecord",
")",
":",
"self",
".",
"_created",
"=",
"variantSetRecord",
".",
"created",
"self",
".",
"_updated",
"=",
"variantSetRecord",
".",
"updated",
"self",
".",
"setAttributesJson",
"(",
"variantSetRecord",... | Populates this VariantSet from the specified DB row. | [
"Populates",
"this",
"VariantSet",
"from",
"the",
"specified",
"DB",
"row",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L466-L482 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet.populateFromFile | def populateFromFile(self, dataUrls, indexFiles):
"""
Populates this variant set using the specified lists of data
files and indexes. These must be in the same order, such that
the jth index file corresponds to the jth data file.
"""
assert len(dataUrls) == len(indexFiles... | python | def populateFromFile(self, dataUrls, indexFiles):
"""
Populates this variant set using the specified lists of data
files and indexes. These must be in the same order, such that
the jth index file corresponds to the jth data file.
"""
assert len(dataUrls) == len(indexFiles... | [
"def",
"populateFromFile",
"(",
"self",
",",
"dataUrls",
",",
"indexFiles",
")",
":",
"assert",
"len",
"(",
"dataUrls",
")",
"==",
"len",
"(",
"indexFiles",
")",
"for",
"dataUrl",
",",
"indexFile",
"in",
"zip",
"(",
"dataUrls",
",",
"indexFiles",
")",
":... | Populates this variant set using the specified lists of data
files and indexes. These must be in the same order, such that
the jth index file corresponds to the jth data file. | [
"Populates",
"this",
"variant",
"set",
"using",
"the",
"specified",
"lists",
"of",
"data",
"files",
"and",
"indexes",
".",
"These",
"must",
"be",
"in",
"the",
"same",
"order",
"such",
"that",
"the",
"jth",
"index",
"file",
"corresponds",
"to",
"the",
"jth"... | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L484-L496 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet.populateFromDirectory | def populateFromDirectory(self, vcfDirectory):
"""
Populates this VariantSet by examing all the VCF files in the
specified directory. This is mainly used for as a convenience
for testing purposes.
"""
pattern = os.path.join(vcfDirectory, "*.vcf.gz")
dataFiles = []... | python | def populateFromDirectory(self, vcfDirectory):
"""
Populates this VariantSet by examing all the VCF files in the
specified directory. This is mainly used for as a convenience
for testing purposes.
"""
pattern = os.path.join(vcfDirectory, "*.vcf.gz")
dataFiles = []... | [
"def",
"populateFromDirectory",
"(",
"self",
",",
"vcfDirectory",
")",
":",
"pattern",
"=",
"os",
".",
"path",
".",
"join",
"(",
"vcfDirectory",
",",
"\"*.vcf.gz\"",
")",
"dataFiles",
"=",
"[",
"]",
"indexFiles",
"=",
"[",
"]",
"for",
"vcfFile",
"in",
"g... | Populates this VariantSet by examing all the VCF files in the
specified directory. This is mainly used for as a convenience
for testing purposes. | [
"Populates",
"this",
"VariantSet",
"by",
"examing",
"all",
"the",
"VCF",
"files",
"in",
"the",
"specified",
"directory",
".",
"This",
"is",
"mainly",
"used",
"for",
"as",
"a",
"convenience",
"for",
"testing",
"purposes",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L498-L510 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet.checkConsistency | def checkConsistency(self):
"""
Perform consistency check on the variant set
"""
for referenceName, (dataUrl, indexFile) in self._chromFileMap.items():
varFile = pysam.VariantFile(dataUrl, index_filename=indexFile)
try:
for chrom in varFile.index:
... | python | def checkConsistency(self):
"""
Perform consistency check on the variant set
"""
for referenceName, (dataUrl, indexFile) in self._chromFileMap.items():
varFile = pysam.VariantFile(dataUrl, index_filename=indexFile)
try:
for chrom in varFile.index:
... | [
"def",
"checkConsistency",
"(",
"self",
")",
":",
"for",
"referenceName",
",",
"(",
"dataUrl",
",",
"indexFile",
")",
"in",
"self",
".",
"_chromFileMap",
".",
"items",
"(",
")",
":",
"varFile",
"=",
"pysam",
".",
"VariantFile",
"(",
"dataUrl",
",",
"inde... | Perform consistency check on the variant set | [
"Perform",
"consistency",
"check",
"on",
"the",
"variant",
"set"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L519-L532 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet._populateFromVariantFile | def _populateFromVariantFile(self, varFile, dataUrl, indexFile):
"""
Populates the instance variables of this VariantSet from the specified
pysam VariantFile object.
"""
if varFile.index is None:
raise exceptions.NotIndexedException(dataUrl)
for chrom in varFi... | python | def _populateFromVariantFile(self, varFile, dataUrl, indexFile):
"""
Populates the instance variables of this VariantSet from the specified
pysam VariantFile object.
"""
if varFile.index is None:
raise exceptions.NotIndexedException(dataUrl)
for chrom in varFi... | [
"def",
"_populateFromVariantFile",
"(",
"self",
",",
"varFile",
",",
"dataUrl",
",",
"indexFile",
")",
":",
"if",
"varFile",
".",
"index",
"is",
"None",
":",
"raise",
"exceptions",
".",
"NotIndexedException",
"(",
"dataUrl",
")",
"for",
"chrom",
"in",
"varFi... | Populates the instance variables of this VariantSet from the specified
pysam VariantFile object. | [
"Populates",
"the",
"instance",
"variables",
"of",
"this",
"VariantSet",
"from",
"the",
"specified",
"pysam",
"VariantFile",
"object",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L534-L553 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet._updateVariantAnnotationSets | def _updateVariantAnnotationSets(self, variantFile, dataUrl):
"""
Updates the variant annotation set associated with this variant using
information in the specified pysam variantFile.
"""
# TODO check the consistency of this between VCF files.
if not self.isAnnotated():
... | python | def _updateVariantAnnotationSets(self, variantFile, dataUrl):
"""
Updates the variant annotation set associated with this variant using
information in the specified pysam variantFile.
"""
# TODO check the consistency of this between VCF files.
if not self.isAnnotated():
... | [
"def",
"_updateVariantAnnotationSets",
"(",
"self",
",",
"variantFile",
",",
"dataUrl",
")",
":",
"# TODO check the consistency of this between VCF files.",
"if",
"not",
"self",
".",
"isAnnotated",
"(",
")",
":",
"annotationType",
"=",
"None",
"for",
"record",
"in",
... | Updates the variant annotation set associated with this variant using
information in the specified pysam variantFile. | [
"Updates",
"the",
"variant",
"annotation",
"set",
"associated",
"with",
"this",
"variant",
"using",
"information",
"in",
"the",
"specified",
"pysam",
"variantFile",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L555-L593 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet._updateMetadata | def _updateMetadata(self, variantFile):
"""
Updates the metadata for his variant set based on the specified
variant file
"""
metadata = self._getMetadataFromVcf(variantFile)
if self._metadata is None:
self._metadata = metadata | python | def _updateMetadata(self, variantFile):
"""
Updates the metadata for his variant set based on the specified
variant file
"""
metadata = self._getMetadataFromVcf(variantFile)
if self._metadata is None:
self._metadata = metadata | [
"def",
"_updateMetadata",
"(",
"self",
",",
"variantFile",
")",
":",
"metadata",
"=",
"self",
".",
"_getMetadataFromVcf",
"(",
"variantFile",
")",
"if",
"self",
".",
"_metadata",
"is",
"None",
":",
"self",
".",
"_metadata",
"=",
"metadata"
] | Updates the metadata for his variant set based on the specified
variant file | [
"Updates",
"the",
"metadata",
"for",
"his",
"variant",
"set",
"based",
"on",
"the",
"specified",
"variant",
"file"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L595-L602 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet._checkMetadata | def _checkMetadata(self, variantFile):
"""
Checks that metadata is consistent
"""
metadata = self._getMetadataFromVcf(variantFile)
if self._metadata is not None and self._metadata != metadata:
raise exceptions.InconsistentMetaDataException(
variantFile... | python | def _checkMetadata(self, variantFile):
"""
Checks that metadata is consistent
"""
metadata = self._getMetadataFromVcf(variantFile)
if self._metadata is not None and self._metadata != metadata:
raise exceptions.InconsistentMetaDataException(
variantFile... | [
"def",
"_checkMetadata",
"(",
"self",
",",
"variantFile",
")",
":",
"metadata",
"=",
"self",
".",
"_getMetadataFromVcf",
"(",
"variantFile",
")",
"if",
"self",
".",
"_metadata",
"is",
"not",
"None",
"and",
"self",
".",
"_metadata",
"!=",
"metadata",
":",
"... | Checks that metadata is consistent | [
"Checks",
"that",
"metadata",
"is",
"consistent"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L604-L611 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet._checkCallSetIds | def _checkCallSetIds(self, variantFile):
"""
Checks callSetIds for consistency
"""
if len(self._callSetIdMap) > 0:
callSetIds = set([
self.getCallSetId(sample)
for sample in variantFile.header.samples])
if callSetIds != set(self._ca... | python | def _checkCallSetIds(self, variantFile):
"""
Checks callSetIds for consistency
"""
if len(self._callSetIdMap) > 0:
callSetIds = set([
self.getCallSetId(sample)
for sample in variantFile.header.samples])
if callSetIds != set(self._ca... | [
"def",
"_checkCallSetIds",
"(",
"self",
",",
"variantFile",
")",
":",
"if",
"len",
"(",
"self",
".",
"_callSetIdMap",
")",
">",
"0",
":",
"callSetIds",
"=",
"set",
"(",
"[",
"self",
".",
"getCallSetId",
"(",
"sample",
")",
"for",
"sample",
"in",
"varia... | Checks callSetIds for consistency | [
"Checks",
"callSetIds",
"for",
"consistency"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L613-L623 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet._updateCallSetIds | def _updateCallSetIds(self, variantFile):
"""
Updates the call set IDs based on the specified variant file.
"""
if len(self._callSetIdMap) == 0:
for sample in variantFile.header.samples:
self.addCallSetFromName(sample) | python | def _updateCallSetIds(self, variantFile):
"""
Updates the call set IDs based on the specified variant file.
"""
if len(self._callSetIdMap) == 0:
for sample in variantFile.header.samples:
self.addCallSetFromName(sample) | [
"def",
"_updateCallSetIds",
"(",
"self",
",",
"variantFile",
")",
":",
"if",
"len",
"(",
"self",
".",
"_callSetIdMap",
")",
"==",
"0",
":",
"for",
"sample",
"in",
"variantFile",
".",
"header",
".",
"samples",
":",
"self",
".",
"addCallSetFromName",
"(",
... | Updates the call set IDs based on the specified variant file. | [
"Updates",
"the",
"call",
"set",
"IDs",
"based",
"on",
"the",
"specified",
"variant",
"file",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L632-L638 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet.convertVariant | def convertVariant(self, record, callSetIds):
"""
Converts the specified pysam variant record into a GA4GH Variant
object. Only calls for the specified list of callSetIds will
be included.
"""
variant = self._createGaVariant()
variant.reference_name = record.conti... | python | def convertVariant(self, record, callSetIds):
"""
Converts the specified pysam variant record into a GA4GH Variant
object. Only calls for the specified list of callSetIds will
be included.
"""
variant = self._createGaVariant()
variant.reference_name = record.conti... | [
"def",
"convertVariant",
"(",
"self",
",",
"record",
",",
"callSetIds",
")",
":",
"variant",
"=",
"self",
".",
"_createGaVariant",
"(",
")",
"variant",
".",
"reference_name",
"=",
"record",
".",
"contig",
"if",
"record",
".",
"id",
"is",
"not",
"None",
"... | Converts the specified pysam variant record into a GA4GH Variant
object. Only calls for the specified list of callSetIds will
be included. | [
"Converts",
"the",
"specified",
"pysam",
"variant",
"record",
"into",
"a",
"GA4GH",
"Variant",
"object",
".",
"Only",
"calls",
"for",
"the",
"specified",
"list",
"of",
"callSetIds",
"will",
"be",
"included",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L665-L712 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet.getPysamVariants | def getPysamVariants(self, referenceName, startPosition, endPosition):
"""
Returns an iterator over the pysam VCF records corresponding to the
specified query.
"""
if referenceName in self._chromFileMap:
varFileName = self._chromFileMap[referenceName]
refe... | python | def getPysamVariants(self, referenceName, startPosition, endPosition):
"""
Returns an iterator over the pysam VCF records corresponding to the
specified query.
"""
if referenceName in self._chromFileMap:
varFileName = self._chromFileMap[referenceName]
refe... | [
"def",
"getPysamVariants",
"(",
"self",
",",
"referenceName",
",",
"startPosition",
",",
"endPosition",
")",
":",
"if",
"referenceName",
"in",
"self",
".",
"_chromFileMap",
":",
"varFileName",
"=",
"self",
".",
"_chromFileMap",
"[",
"referenceName",
"]",
"refere... | Returns an iterator over the pysam VCF records corresponding to the
specified query. | [
"Returns",
"an",
"iterator",
"over",
"the",
"pysam",
"VCF",
"records",
"corresponding",
"to",
"the",
"specified",
"query",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L734-L747 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet.getVariants | def getVariants(self, referenceName, startPosition, endPosition,
callSetIds=[]):
"""
Returns an iterator over the specified variants. The parameters
correspond to the attributes of a GASearchVariantsRequest object.
"""
if callSetIds is None:
callSe... | python | def getVariants(self, referenceName, startPosition, endPosition,
callSetIds=[]):
"""
Returns an iterator over the specified variants. The parameters
correspond to the attributes of a GASearchVariantsRequest object.
"""
if callSetIds is None:
callSe... | [
"def",
"getVariants",
"(",
"self",
",",
"referenceName",
",",
"startPosition",
",",
"endPosition",
",",
"callSetIds",
"=",
"[",
"]",
")",
":",
"if",
"callSetIds",
"is",
"None",
":",
"callSetIds",
"=",
"self",
".",
"_callSetIds",
"else",
":",
"for",
"callSe... | Returns an iterator over the specified variants. The parameters
correspond to the attributes of a GASearchVariantsRequest object. | [
"Returns",
"an",
"iterator",
"over",
"the",
"specified",
"variants",
".",
"The",
"parameters",
"correspond",
"to",
"the",
"attributes",
"of",
"a",
"GASearchVariantsRequest",
"object",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L749-L764 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | HtslibVariantSet.getMetadataId | def getMetadataId(self, metadata):
"""
Returns the id of a metadata
"""
return str(datamodel.VariantSetMetadataCompoundId(
self.getCompoundId(), 'metadata:' + metadata.key)) | python | def getMetadataId(self, metadata):
"""
Returns the id of a metadata
"""
return str(datamodel.VariantSetMetadataCompoundId(
self.getCompoundId(), 'metadata:' + metadata.key)) | [
"def",
"getMetadataId",
"(",
"self",
",",
"metadata",
")",
":",
"return",
"str",
"(",
"datamodel",
".",
"VariantSetMetadataCompoundId",
"(",
"self",
".",
"getCompoundId",
"(",
")",
",",
"'metadata:'",
"+",
"metadata",
".",
"key",
")",
")"
] | Returns the id of a metadata | [
"Returns",
"the",
"id",
"of",
"a",
"metadata"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L766-L771 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantAnnotationSet._createGaVariantAnnotation | def _createGaVariantAnnotation(self):
"""
Convenience method to set the common fields in a GA VariantAnnotation
object from this variant set.
"""
ret = protocol.VariantAnnotation()
ret.created = self._creationTime
ret.variant_annotation_set_id = self.getId()
... | python | def _createGaVariantAnnotation(self):
"""
Convenience method to set the common fields in a GA VariantAnnotation
object from this variant set.
"""
ret = protocol.VariantAnnotation()
ret.created = self._creationTime
ret.variant_annotation_set_id = self.getId()
... | [
"def",
"_createGaVariantAnnotation",
"(",
"self",
")",
":",
"ret",
"=",
"protocol",
".",
"VariantAnnotation",
"(",
")",
"ret",
".",
"created",
"=",
"self",
".",
"_creationTime",
"ret",
".",
"variant_annotation_set_id",
"=",
"self",
".",
"getId",
"(",
")",
"r... | Convenience method to set the common fields in a GA VariantAnnotation
object from this variant set. | [
"Convenience",
"method",
"to",
"set",
"the",
"common",
"fields",
"in",
"a",
"GA",
"VariantAnnotation",
"object",
"from",
"this",
"variant",
"set",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L882-L890 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantAnnotationSet.toProtocolElement | def toProtocolElement(self):
"""
Converts this VariantAnnotationSet into its GA4GH protocol equivalent.
"""
protocolElement = protocol.VariantAnnotationSet()
protocolElement.id = self.getId()
protocolElement.variant_set_id = self._variantSet.getId()
protocolElemen... | python | def toProtocolElement(self):
"""
Converts this VariantAnnotationSet into its GA4GH protocol equivalent.
"""
protocolElement = protocol.VariantAnnotationSet()
protocolElement.id = self.getId()
protocolElement.variant_set_id = self._variantSet.getId()
protocolElemen... | [
"def",
"toProtocolElement",
"(",
"self",
")",
":",
"protocolElement",
"=",
"protocol",
".",
"VariantAnnotationSet",
"(",
")",
"protocolElement",
".",
"id",
"=",
"self",
".",
"getId",
"(",
")",
"protocolElement",
".",
"variant_set_id",
"=",
"self",
".",
"_varia... | Converts this VariantAnnotationSet into its GA4GH protocol equivalent. | [
"Converts",
"this",
"VariantAnnotationSet",
"into",
"its",
"GA4GH",
"protocol",
"equivalent",
"."
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L908-L918 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantAnnotationSet.hashVariantAnnotation | def hashVariantAnnotation(cls, gaVariant, gaVariantAnnotation):
"""
Produces an MD5 hash of the gaVariant and gaVariantAnnotation objects
"""
treffs = [treff.id for treff in gaVariantAnnotation.transcript_effects]
return hashlib.md5(
"{}\t{}\t{}\t".format(
... | python | def hashVariantAnnotation(cls, gaVariant, gaVariantAnnotation):
"""
Produces an MD5 hash of the gaVariant and gaVariantAnnotation objects
"""
treffs = [treff.id for treff in gaVariantAnnotation.transcript_effects]
return hashlib.md5(
"{}\t{}\t{}\t".format(
... | [
"def",
"hashVariantAnnotation",
"(",
"cls",
",",
"gaVariant",
",",
"gaVariantAnnotation",
")",
":",
"treffs",
"=",
"[",
"treff",
".",
"id",
"for",
"treff",
"in",
"gaVariantAnnotation",
".",
"transcript_effects",
"]",
"return",
"hashlib",
".",
"md5",
"(",
"\"{}... | Produces an MD5 hash of the gaVariant and gaVariantAnnotation objects | [
"Produces",
"an",
"MD5",
"hash",
"of",
"the",
"gaVariant",
"and",
"gaVariantAnnotation",
"objects"
] | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L929-L938 |
ga4gh/ga4gh-server | ga4gh/server/datamodel/variants.py | AbstractVariantAnnotationSet.getVariantAnnotationId | def getVariantAnnotationId(self, gaVariant, gaAnnotation):
"""
Produces a stringified compoundId representing a variant
annotation.
:param gaVariant: protocol.Variant
:param gaAnnotation: protocol.VariantAnnotation
:return: compoundId String
"""
md5 = s... | python | def getVariantAnnotationId(self, gaVariant, gaAnnotation):
"""
Produces a stringified compoundId representing a variant
annotation.
:param gaVariant: protocol.Variant
:param gaAnnotation: protocol.VariantAnnotation
:return: compoundId String
"""
md5 = s... | [
"def",
"getVariantAnnotationId",
"(",
"self",
",",
"gaVariant",
",",
"gaAnnotation",
")",
":",
"md5",
"=",
"self",
".",
"hashVariantAnnotation",
"(",
"gaVariant",
",",
"gaAnnotation",
")",
"compoundId",
"=",
"datamodel",
".",
"VariantAnnotationCompoundId",
"(",
"s... | Produces a stringified compoundId representing a variant
annotation.
:param gaVariant: protocol.Variant
:param gaAnnotation: protocol.VariantAnnotation
:return: compoundId String | [
"Produces",
"a",
"stringified",
"compoundId",
"representing",
"a",
"variant",
"annotation",
".",
":",
"param",
"gaVariant",
":",
"protocol",
".",
"Variant",
":",
"param",
"gaAnnotation",
":",
"protocol",
".",
"VariantAnnotation",
":",
"return",
":",
"compoundId",
... | train | https://github.com/ga4gh/ga4gh-server/blob/1aa18922ef136db8604f6f098cb1732cba6f2a76/ga4gh/server/datamodel/variants.py#L940-L952 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.