repository_name
stringlengths
5
67
func_path_in_repository
stringlengths
4
234
func_name
stringlengths
0
314
whole_func_string
stringlengths
52
3.87M
language
stringclasses
6 values
func_code_string
stringlengths
52
3.87M
func_code_tokens
listlengths
15
672k
func_documentation_string
stringlengths
1
47.2k
func_documentation_tokens
listlengths
1
3.92k
split_name
stringclasses
1 value
func_code_url
stringlengths
85
339
dnanexus/dx-toolkit
src/python/dxpy/app_builder.py
get_enabled_regions
def get_enabled_regions(app_spec, from_command_line): """Returns a list of the regions in which the app should be enabled. Also validates that app_spec['regionalOptions'], if supplied, is well-formed. :param app_spec: app specification :type app_spec: dict :param from_command_line: The regions...
python
def get_enabled_regions(app_spec, from_command_line): """Returns a list of the regions in which the app should be enabled. Also validates that app_spec['regionalOptions'], if supplied, is well-formed. :param app_spec: app specification :type app_spec: dict :param from_command_line: The regions...
[ "def", "get_enabled_regions", "(", "app_spec", ",", "from_command_line", ")", ":", "enabled_regions", "=", "dxpy", ".", "executable_builder", ".", "get_enabled_regions", "(", "'app'", ",", "app_spec", ",", "from_command_line", ",", "AppBuilderException", ")", "if", ...
Returns a list of the regions in which the app should be enabled. Also validates that app_spec['regionalOptions'], if supplied, is well-formed. :param app_spec: app specification :type app_spec: dict :param from_command_line: The regions specified on the command-line via --region :type f...
[ "Returns", "a", "list", "of", "the", "regions", "in", "which", "the", "app", "should", "be", "enabled", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/app_builder.py#L918-L935
dnanexus/dx-toolkit
src/python/dxpy/utils/local_exec_utils.py
exit_with_error
def exit_with_error(msg): ''' :param msg: string message to print before exiting Print the error message, as well as a blurb on where to find the job workspaces ''' msg += '\n' msg += 'Local job workspaces can be found in: ' + str(environ.get('DX_TEST_JOB_HOMEDIRS')) sys.exit(msg)
python
def exit_with_error(msg): ''' :param msg: string message to print before exiting Print the error message, as well as a blurb on where to find the job workspaces ''' msg += '\n' msg += 'Local job workspaces can be found in: ' + str(environ.get('DX_TEST_JOB_HOMEDIRS')) sys.exit(msg)
[ "def", "exit_with_error", "(", "msg", ")", ":", "msg", "+=", "'\\n'", "msg", "+=", "'Local job workspaces can be found in: '", "+", "str", "(", "environ", ".", "get", "(", "'DX_TEST_JOB_HOMEDIRS'", ")", ")", "sys", ".", "exit", "(", "msg", ")" ]
:param msg: string message to print before exiting Print the error message, as well as a blurb on where to find the job workspaces
[ ":", "param", "msg", ":", "string", "message", "to", "print", "before", "exiting" ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/utils/local_exec_utils.py#L39-L48
dnanexus/dx-toolkit
src/python/dxpy/utils/local_exec_utils.py
has_local_job_refs
def has_local_job_refs(io_hash): ''' :param io_hash: input/output hash :type io_hash: dict :returns: boolean indicating whether any job-based object references are found in *io_hash* ''' q = [] for field in io_hash: if is_job_ref(io_hash[field]): if get_job_from_jbor(io_...
python
def has_local_job_refs(io_hash): ''' :param io_hash: input/output hash :type io_hash: dict :returns: boolean indicating whether any job-based object references are found in *io_hash* ''' q = [] for field in io_hash: if is_job_ref(io_hash[field]): if get_job_from_jbor(io_...
[ "def", "has_local_job_refs", "(", "io_hash", ")", ":", "q", "=", "[", "]", "for", "field", "in", "io_hash", ":", "if", "is_job_ref", "(", "io_hash", "[", "field", "]", ")", ":", "if", "get_job_from_jbor", "(", "io_hash", "[", "field", "]", ")", ".", ...
:param io_hash: input/output hash :type io_hash: dict :returns: boolean indicating whether any job-based object references are found in *io_hash*
[ ":", "param", "io_hash", ":", "input", "/", "output", "hash", ":", "type", "io_hash", ":", "dict", ":", "returns", ":", "boolean", "indicating", "whether", "any", "job", "-", "based", "object", "references", "are", "found", "in", "*", "io_hash", "*" ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/utils/local_exec_utils.py#L50-L82
dnanexus/dx-toolkit
src/python/dxpy/utils/local_exec_utils.py
resolve_job_ref
def resolve_job_ref(jbor, job_outputs={}, should_resolve=True): ''' :param jbor: a dict that is a valid job-based object reference :type jbor: dict :param job_outputs: a dict of finished local jobs to their output hashes :type job_outputs: :class:`collections.OrderedDict` :returns: the reference...
python
def resolve_job_ref(jbor, job_outputs={}, should_resolve=True): ''' :param jbor: a dict that is a valid job-based object reference :type jbor: dict :param job_outputs: a dict of finished local jobs to their output hashes :type job_outputs: :class:`collections.OrderedDict` :returns: the reference...
[ "def", "resolve_job_ref", "(", "jbor", ",", "job_outputs", "=", "{", "}", ",", "should_resolve", "=", "True", ")", ":", "ref_job_id", "=", "get_job_from_jbor", "(", "jbor", ")", "ref_job_field", "=", "get_field_from_jbor", "(", "jbor", ")", "ref_job_index", "=...
:param jbor: a dict that is a valid job-based object reference :type jbor: dict :param job_outputs: a dict of finished local jobs to their output hashes :type job_outputs: :class:`collections.OrderedDict` :returns: the referenced value if present :raises: :exc:`Exception` if the job-based object ref...
[ ":", "param", "jbor", ":", "a", "dict", "that", "is", "a", "valid", "job", "-", "based", "object", "reference", ":", "type", "jbor", ":", "dict", ":", "param", "job_outputs", ":", "a", "dict", "of", "finished", "local", "jobs", "to", "their", "output",...
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/utils/local_exec_utils.py#L84-L121
dnanexus/dx-toolkit
src/python/dxpy/utils/local_exec_utils.py
resolve_job_references
def resolve_job_references(io_hash, job_outputs, should_resolve=True): ''' :param io_hash: an input or output hash in which to resolve any job-based object references possible :type io_hash: dict :param job_outputs: a mapping of finished local jobs to their output hashes :type job_outputs: dict ...
python
def resolve_job_references(io_hash, job_outputs, should_resolve=True): ''' :param io_hash: an input or output hash in which to resolve any job-based object references possible :type io_hash: dict :param job_outputs: a mapping of finished local jobs to their output hashes :type job_outputs: dict ...
[ "def", "resolve_job_references", "(", "io_hash", ",", "job_outputs", ",", "should_resolve", "=", "True", ")", ":", "q", "=", "[", "]", "for", "field", "in", "io_hash", ":", "if", "is_job_ref", "(", "io_hash", "[", "field", "]", ")", ":", "io_hash", "[", ...
:param io_hash: an input or output hash in which to resolve any job-based object references possible :type io_hash: dict :param job_outputs: a mapping of finished local jobs to their output hashes :type job_outputs: dict :param should_resolve: whether it is an error if a job-based object reference in *i...
[ ":", "param", "io_hash", ":", "an", "input", "or", "output", "hash", "in", "which", "to", "resolve", "any", "job", "-", "based", "object", "references", "possible", ":", "type", "io_hash", ":", "dict", ":", "param", "job_outputs", ":", "a", "mapping", "o...
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/utils/local_exec_utils.py#L123-L155
dnanexus/dx-toolkit
src/python/dxpy/utils/local_exec_utils.py
get_implicit_depends_on
def get_implicit_depends_on(input_hash, depends_on): ''' Add DNAnexus links to non-closed data objects in input_hash to depends_on ''' q = [] for field in input_hash: possible_dep = get_nonclosed_data_obj_link(input_hash[field]) if possible_dep is not None: depends_on.ap...
python
def get_implicit_depends_on(input_hash, depends_on): ''' Add DNAnexus links to non-closed data objects in input_hash to depends_on ''' q = [] for field in input_hash: possible_dep = get_nonclosed_data_obj_link(input_hash[field]) if possible_dep is not None: depends_on.ap...
[ "def", "get_implicit_depends_on", "(", "input_hash", ",", "depends_on", ")", ":", "q", "=", "[", "]", "for", "field", "in", "input_hash", ":", "possible_dep", "=", "get_nonclosed_data_obj_link", "(", "input_hash", "[", "field", "]", ")", "if", "possible_dep", ...
Add DNAnexus links to non-closed data objects in input_hash to depends_on
[ "Add", "DNAnexus", "links", "to", "non", "-", "closed", "data", "objects", "in", "input_hash", "to", "depends_on" ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/utils/local_exec_utils.py#L171-L199
dnanexus/dx-toolkit
src/python/dxpy/utils/local_exec_utils.py
queue_entry_point
def queue_entry_point(function, input_hash, depends_on=[], name=None): ''' :param function: function to run :param input_hash: input to new job :param depends_on: list of data object IDs and/or job IDs (local or remote) to wait for before the job can be run :type depends_on: list of strings :par...
python
def queue_entry_point(function, input_hash, depends_on=[], name=None): ''' :param function: function to run :param input_hash: input to new job :param depends_on: list of data object IDs and/or job IDs (local or remote) to wait for before the job can be run :type depends_on: list of strings :par...
[ "def", "queue_entry_point", "(", "function", ",", "input_hash", ",", "depends_on", "=", "[", "]", ",", "name", "=", "None", ")", ":", "ensure_env_vars", "(", ")", "all_job_outputs_path", "=", "os", ".", "path", ".", "join", "(", "environ", "[", "'DX_TEST_J...
:param function: function to run :param input_hash: input to new job :param depends_on: list of data object IDs and/or job IDs (local or remote) to wait for before the job can be run :type depends_on: list of strings :param name: job name (optional) :returns: new local job ID This function shou...
[ ":", "param", "function", ":", "function", "to", "run", ":", "param", "input_hash", ":", "input", "to", "new", "job", ":", "param", "depends_on", ":", "list", "of", "data", "object", "IDs", "and", "/", "or", "job", "IDs", "(", "local", "or", "remote", ...
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/utils/local_exec_utils.py#L228-L275
dnanexus/dx-toolkit
src/python/dxpy/utils/local_exec_utils.py
run_one_entry_point
def run_one_entry_point(job_id, function, input_hash, run_spec, depends_on, name=None): ''' :param job_id: job ID of the local job to run :type job_id: string :param function: function to run :type function: string :param input_hash: input for the job (may include job-based object references) ...
python
def run_one_entry_point(job_id, function, input_hash, run_spec, depends_on, name=None): ''' :param job_id: job ID of the local job to run :type job_id: string :param function: function to run :type function: string :param input_hash: input for the job (may include job-based object references) ...
[ "def", "run_one_entry_point", "(", "job_id", ",", "function", ",", "input_hash", ",", "run_spec", ",", "depends_on", ",", "name", "=", "None", ")", ":", "print", "(", "'======'", ")", "job_homedir", "=", "os", ".", "path", ".", "join", "(", "environ", "[...
:param job_id: job ID of the local job to run :type job_id: string :param function: function to run :type function: string :param input_hash: input for the job (may include job-based object references) :type input_hash: dict :param run_spec: run specification from the dxapp.json of the app :...
[ ":", "param", "job_id", ":", "job", "ID", "of", "the", "local", "job", "to", "run", ":", "type", "job_id", ":", "string", ":", "param", "function", ":", "function", "to", "run", ":", "type", "function", ":", "string", ":", "param", "input_hash", ":", ...
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/utils/local_exec_utils.py#L277-L417
dnanexus/dx-toolkit
src/python/dxpy/utils/local_exec_utils.py
run_entry_points
def run_entry_points(run_spec): ''' :param run_spec: run specification from the dxapp.json of the app :type run_spec: dict Runs all job entry points found in $DX_TEST_JOB_HOMEDIRS/job_queue.json in a first-in, first-out manner until it is an empty array (or an error occurs). ''' job_que...
python
def run_entry_points(run_spec): ''' :param run_spec: run specification from the dxapp.json of the app :type run_spec: dict Runs all job entry points found in $DX_TEST_JOB_HOMEDIRS/job_queue.json in a first-in, first-out manner until it is an empty array (or an error occurs). ''' job_que...
[ "def", "run_entry_points", "(", "run_spec", ")", ":", "job_queue_path", "=", "os", ".", "path", ".", "join", "(", "environ", "[", "'DX_TEST_JOB_HOMEDIRS'", "]", ",", "'job_queue.json'", ")", "all_job_outputs_path", "=", "os", ".", "path", ".", "join", "(", "...
:param run_spec: run specification from the dxapp.json of the app :type run_spec: dict Runs all job entry points found in $DX_TEST_JOB_HOMEDIRS/job_queue.json in a first-in, first-out manner until it is an empty array (or an error occurs).
[ ":", "param", "run_spec", ":", "run", "specification", "from", "the", "dxapp", ".", "json", "of", "the", "app", ":", "type", "run_spec", ":", "dict" ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/utils/local_exec_utils.py#L419-L470
dnanexus/dx-toolkit
src/python/dxpy/api.py
analysis_add_tags
def analysis_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /analysis-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2FaddTags """ return DXHTTPRequest('/%s/add...
python
def analysis_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /analysis-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2FaddTags """ return DXHTTPRequest('/%s/add...
[ "def", "analysis_add_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/addTags'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /analysis-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2FaddTags
[ "Invokes", "the", "/", "analysis", "-", "xxxx", "/", "addTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L13-L19
dnanexus/dx-toolkit
src/python/dxpy/api.py
analysis_describe
def analysis_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /analysis-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/d...
python
def analysis_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /analysis-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/d...
[ "def", "analysis_describe", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/describe'", "%", "object_id", ",", "input_params", ",", "always_retry",...
Invokes the /analysis-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2Fdescribe
[ "Invokes", "the", "/", "analysis", "-", "xxxx", "/", "describe", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L21-L27
dnanexus/dx-toolkit
src/python/dxpy/api.py
analysis_remove_tags
def analysis_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /analysis-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2FremoveTags """ return DXHTTPRequest...
python
def analysis_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /analysis-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2FremoveTags """ return DXHTTPRequest...
[ "def", "analysis_remove_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeTags'", "%", "object_id", ",", "input_params", ",", "always_re...
Invokes the /analysis-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2FremoveTags
[ "Invokes", "the", "/", "analysis", "-", "xxxx", "/", "removeTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L29-L35
dnanexus/dx-toolkit
src/python/dxpy/api.py
analysis_set_properties
def analysis_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /analysis-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2FsetProperties """ return DXHT...
python
def analysis_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /analysis-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2FsetProperties """ return DXHT...
[ "def", "analysis_set_properties", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setProperties'", "%", "object_id", ",", "input_params", ",", "alw...
Invokes the /analysis-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2FsetProperties
[ "Invokes", "the", "/", "analysis", "-", "xxxx", "/", "setProperties", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L37-L43
dnanexus/dx-toolkit
src/python/dxpy/api.py
analysis_terminate
def analysis_terminate(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /analysis-xxxx/terminate API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2Fterminate """ return DXHTTPRequest('/%...
python
def analysis_terminate(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /analysis-xxxx/terminate API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2Fterminate """ return DXHTTPRequest('/%...
[ "def", "analysis_terminate", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/terminate'", "%", "object_id", ",", "input_params", ",", "always_retry...
Invokes the /analysis-xxxx/terminate API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Workflows-and-Analyses#API-method%3A-%2Fanalysis-xxxx%2Fterminate
[ "Invokes", "the", "/", "analysis", "-", "xxxx", "/", "terminate", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L45-L51
dnanexus/dx-toolkit
src/python/dxpy/api.py
app_add_developers
def app_add_developers(app_name_or_id, alias=None, input_params={}, always_retry=True, **kwargs): """ Invokes the /app-xxxx/addDevelopers API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Apps#API-method:-/app-xxxx%5B/yyyy%5D/addDevelopers """ fully_qualified_versio...
python
def app_add_developers(app_name_or_id, alias=None, input_params={}, always_retry=True, **kwargs): """ Invokes the /app-xxxx/addDevelopers API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Apps#API-method:-/app-xxxx%5B/yyyy%5D/addDevelopers """ fully_qualified_versio...
[ "def", "app_add_developers", "(", "app_name_or_id", ",", "alias", "=", "None", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "fully_qualified_version", "=", "app_name_or_id", "+", "(", "(", "'/'", ...
Invokes the /app-xxxx/addDevelopers API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Apps#API-method:-/app-xxxx%5B/yyyy%5D/addDevelopers
[ "Invokes", "the", "/", "app", "-", "xxxx", "/", "addDevelopers", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L71-L78
dnanexus/dx-toolkit
src/python/dxpy/api.py
app_run
def app_run(app_name_or_id, alias=None, input_params={}, always_retry=True, **kwargs): """ Invokes the /app-xxxx/run API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Apps#API-method:-/app-xxxx%5B/yyyy%5D/run """ input_params_cp = Nonce.update_nonce(input_params) ...
python
def app_run(app_name_or_id, alias=None, input_params={}, always_retry=True, **kwargs): """ Invokes the /app-xxxx/run API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Apps#API-method:-/app-xxxx%5B/yyyy%5D/run """ input_params_cp = Nonce.update_nonce(input_params) ...
[ "def", "app_run", "(", "app_name_or_id", ",", "alias", "=", "None", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "input_params_cp", "=", "Nonce", ".", "update_nonce", "(", "input_params", ")", "...
Invokes the /app-xxxx/run API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Apps#API-method:-/app-xxxx%5B/yyyy%5D/run
[ "Invokes", "the", "/", "app", "-", "xxxx", "/", "run", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L197-L205
dnanexus/dx-toolkit
src/python/dxpy/api.py
applet_add_tags
def applet_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FaddTags """ return DXHTTPRequest('/%s/addTags' % object_id, input_...
python
def applet_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FaddTags """ return DXHTTPRequest('/%s/addTags' % object_id, input_...
[ "def", "applet_add_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/addTags'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /applet-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FaddTags
[ "Invokes", "the", "/", "applet", "-", "xxxx", "/", "addTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L243-L249
dnanexus/dx-toolkit
src/python/dxpy/api.py
applet_describe
def applet_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/descr...
python
def applet_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/descr...
[ "def", "applet_describe", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/describe'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /applet-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2Fdescribe
[ "Invokes", "the", "/", "applet", "-", "xxxx", "/", "describe", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L251-L257
dnanexus/dx-toolkit
src/python/dxpy/api.py
applet_get
def applet_get(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/get API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2Fget """ return DXHTTPRequest('/%s/get' % object_id, in...
python
def applet_get(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/get API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2Fget """ return DXHTTPRequest('/%s/get' % object_id, in...
[ "def", "applet_get", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/get'", "%", "object_id", ",", "input_params", ",", "always_retry", "=", "a...
Invokes the /applet-xxxx/get API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2Fget
[ "Invokes", "the", "/", "applet", "-", "xxxx", "/", "get", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L259-L265
dnanexus/dx-toolkit
src/python/dxpy/api.py
applet_get_details
def applet_get_details(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/getDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FgetDetails """ return DXHTTPRequest('/%s/getDet...
python
def applet_get_details(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/getDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FgetDetails """ return DXHTTPRequest('/%s/getDet...
[ "def", "applet_get_details", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/getDetails'", "%", "object_id", ",", "input_params", ",", "always_retr...
Invokes the /applet-xxxx/getDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FgetDetails
[ "Invokes", "the", "/", "applet", "-", "xxxx", "/", "getDetails", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L267-L273
dnanexus/dx-toolkit
src/python/dxpy/api.py
applet_list_projects
def applet_list_projects(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/listProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2FlistProjects """ return DXHTTPRequest('/%s/listProjec...
python
def applet_list_projects(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/listProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2FlistProjects """ return DXHTTPRequest('/%s/listProjec...
[ "def", "applet_list_projects", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/listProjects'", "%", "object_id", ",", "input_params", ",", "always_...
Invokes the /applet-xxxx/listProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2FlistProjects
[ "Invokes", "the", "/", "applet", "-", "xxxx", "/", "listProjects", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L275-L281
dnanexus/dx-toolkit
src/python/dxpy/api.py
applet_remove_tags
def applet_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FremoveTags """ return DXHTTPRequest('/%s/removeTags' % objec...
python
def applet_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FremoveTags """ return DXHTTPRequest('/%s/removeTags' % objec...
[ "def", "applet_remove_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeTags'", "%", "object_id", ",", "input_params", ",", "always_retr...
Invokes the /applet-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FremoveTags
[ "Invokes", "the", "/", "applet", "-", "xxxx", "/", "removeTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L283-L289
dnanexus/dx-toolkit
src/python/dxpy/api.py
applet_rename
def applet_rename(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/rename API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Name#API-method%3A-%2Fclass-xxxx%2Frename """ return DXHTTPRequest('/%s/rename' % object_id, input_param...
python
def applet_rename(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/rename API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Name#API-method%3A-%2Fclass-xxxx%2Frename """ return DXHTTPRequest('/%s/rename' % object_id, input_param...
[ "def", "applet_rename", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/rename'", "%", "object_id", ",", "input_params", ",", "always_retry", "="...
Invokes the /applet-xxxx/rename API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Name#API-method%3A-%2Fclass-xxxx%2Frename
[ "Invokes", "the", "/", "applet", "-", "xxxx", "/", "rename", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L291-L297
dnanexus/dx-toolkit
src/python/dxpy/api.py
applet_validate_batch
def applet_validate_batch(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/validateBatch API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2FvalidateBatch """ return DXHTTPRe...
python
def applet_validate_batch(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/validateBatch API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2FvalidateBatch """ return DXHTTPRe...
[ "def", "applet_validate_batch", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/validateBatch'", "%", "object_id", ",", "input_params", ",", "alway...
Invokes the /applet-xxxx/validateBatch API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2FvalidateBatch
[ "Invokes", "the", "/", "applet", "-", "xxxx", "/", "validateBatch", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L299-L305
dnanexus/dx-toolkit
src/python/dxpy/api.py
applet_run
def applet_run(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/run API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2Frun """ input_params_cp = Nonce.update_nonce(input_par...
python
def applet_run(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/run API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2Frun """ input_params_cp = Nonce.update_nonce(input_par...
[ "def", "applet_run", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "input_params_cp", "=", "Nonce", ".", "update_nonce", "(", "input_params", ")", "return", "DXHTTPRequest", "(", ...
Invokes the /applet-xxxx/run API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fapplet-xxxx%2Frun
[ "Invokes", "the", "/", "applet", "-", "xxxx", "/", "run", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L307-L314
dnanexus/dx-toolkit
src/python/dxpy/api.py
applet_set_properties
def applet_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Properties#API-method%3A-%2Fclass-xxxx%2FsetProperties """ return DXHTTPRequest('/%s/setP...
python
def applet_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /applet-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Properties#API-method%3A-%2Fclass-xxxx%2FsetProperties """ return DXHTTPRequest('/%s/setP...
[ "def", "applet_set_properties", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setProperties'", "%", "object_id", ",", "input_params", ",", "alway...
Invokes the /applet-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Properties#API-method%3A-%2Fclass-xxxx%2FsetProperties
[ "Invokes", "the", "/", "applet", "-", "xxxx", "/", "setProperties", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L316-L322
dnanexus/dx-toolkit
src/python/dxpy/api.py
container_clone
def container_clone(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /container-xxxx/clone API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2Fclone """ return DXHTTPRequest('/%s/clone' % object_id, input...
python
def container_clone(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /container-xxxx/clone API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2Fclone """ return DXHTTPRequest('/%s/clone' % object_id, input...
[ "def", "container_clone", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/clone'", "%", "object_id", ",", "input_params", ",", "always_retry", "...
Invokes the /container-xxxx/clone API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2Fclone
[ "Invokes", "the", "/", "container", "-", "xxxx", "/", "clone", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L333-L339
dnanexus/dx-toolkit
src/python/dxpy/api.py
container_describe
def container_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /container-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Containers-for-Execution#API-method%3A-%2Fcontainer-xxxx%2Fdescribe """ return DXHTTPRequest('...
python
def container_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /container-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Containers-for-Execution#API-method%3A-%2Fcontainer-xxxx%2Fdescribe """ return DXHTTPRequest('...
[ "def", "container_describe", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/describe'", "%", "object_id", ",", "input_params", ",", "always_retry"...
Invokes the /container-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Containers-for-Execution#API-method%3A-%2Fcontainer-xxxx%2Fdescribe
[ "Invokes", "the", "/", "container", "-", "xxxx", "/", "describe", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L341-L347
dnanexus/dx-toolkit
src/python/dxpy/api.py
container_destroy
def container_destroy(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /container-xxxx/destroy API method. """ return DXHTTPRequest('/%s/destroy' % object_id, input_params, always_retry=always_retry, **kwargs)
python
def container_destroy(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /container-xxxx/destroy API method. """ return DXHTTPRequest('/%s/destroy' % object_id, input_params, always_retry=always_retry, **kwargs)
[ "def", "container_destroy", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/destroy'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /container-xxxx/destroy API method.
[ "Invokes", "the", "/", "container", "-", "xxxx", "/", "destroy", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L349-L353
dnanexus/dx-toolkit
src/python/dxpy/api.py
container_list_folder
def container_list_folder(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /container-xxxx/listFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FlistFolder """ return DXHTTPRequest('/...
python
def container_list_folder(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /container-xxxx/listFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FlistFolder """ return DXHTTPRequest('/...
[ "def", "container_list_folder", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/listFolder'", "%", "object_id", ",", "input_params", ",", "always_r...
Invokes the /container-xxxx/listFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FlistFolder
[ "Invokes", "the", "/", "container", "-", "xxxx", "/", "listFolder", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L355-L361
dnanexus/dx-toolkit
src/python/dxpy/api.py
container_move
def container_move(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /container-xxxx/move API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2Fmove """ return DXHTTPRequest('/%s/move' % object_...
python
def container_move(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /container-xxxx/move API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2Fmove """ return DXHTTPRequest('/%s/move' % object_...
[ "def", "container_move", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/move'", "%", "object_id", ",", "input_params", ",", "always_retry", "="...
Invokes the /container-xxxx/move API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2Fmove
[ "Invokes", "the", "/", "container", "-", "xxxx", "/", "move", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L363-L369
dnanexus/dx-toolkit
src/python/dxpy/api.py
container_new_folder
def container_new_folder(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /container-xxxx/newFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FnewFolder """ return DXHTTPRequest('/%s/...
python
def container_new_folder(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /container-xxxx/newFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FnewFolder """ return DXHTTPRequest('/%s/...
[ "def", "container_new_folder", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/newFolder'", "%", "object_id", ",", "input_params", ",", "always_ret...
Invokes the /container-xxxx/newFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FnewFolder
[ "Invokes", "the", "/", "container", "-", "xxxx", "/", "newFolder", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L371-L377
dnanexus/dx-toolkit
src/python/dxpy/api.py
container_remove_folder
def container_remove_folder(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /container-xxxx/removeFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveFolder """ return DXHTTPReq...
python
def container_remove_folder(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /container-xxxx/removeFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveFolder """ return DXHTTPReq...
[ "def", "container_remove_folder", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeFolder'", "%", "object_id", ",", "input_params", ",", "alw...
Invokes the /container-xxxx/removeFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveFolder
[ "Invokes", "the", "/", "container", "-", "xxxx", "/", "removeFolder", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L379-L385
dnanexus/dx-toolkit
src/python/dxpy/api.py
container_remove_objects
def container_remove_objects(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /container-xxxx/removeObjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveObjects """ return DXHTTP...
python
def container_remove_objects(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /container-xxxx/removeObjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveObjects """ return DXHTTP...
[ "def", "container_remove_objects", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeObjects'", "%", "object_id", ",", "input_params", ",", "a...
Invokes the /container-xxxx/removeObjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveObjects
[ "Invokes", "the", "/", "container", "-", "xxxx", "/", "removeObjects", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L387-L393
dnanexus/dx-toolkit
src/python/dxpy/api.py
container_rename_folder
def container_rename_folder(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /container-xxxx/renameFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FrenameFolder """ return DXHTTPReq...
python
def container_rename_folder(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /container-xxxx/renameFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FrenameFolder """ return DXHTTPReq...
[ "def", "container_rename_folder", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/renameFolder'", "%", "object_id", ",", "input_params", ",", "alw...
Invokes the /container-xxxx/renameFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FrenameFolder
[ "Invokes", "the", "/", "container", "-", "xxxx", "/", "renameFolder", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L395-L401
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_add_tags
def database_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FaddTags """ return DXHTTPRequest('/%s/addTags' % object_id, in...
python
def database_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FaddTags """ return DXHTTPRequest('/%s/addTags' % object_id, in...
[ "def", "database_add_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/addTags'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /database-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FaddTags
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "addTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L403-L409
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_add_types
def database_add_types(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/addTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FaddTypes """ return DXHTTPRequest('/%s/addTypes' % object_i...
python
def database_add_types(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/addTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FaddTypes """ return DXHTTPRequest('/%s/addTypes' % object_i...
[ "def", "database_add_types", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/addTypes'", "%", "object_id", ",", "input_params", ",", "always_retry"...
Invokes the /database-xxxx/addTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FaddTypes
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "addTypes", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L411-L417
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_close
def database_close(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/close API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Data-Object-Lifecycle#API-method%3A-%2Fclass-xxxx%2Fclose """ return DXHTTPRequest('/%s/close' % objec...
python
def database_close(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/close API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Data-Object-Lifecycle#API-method%3A-%2Fclass-xxxx%2Fclose """ return DXHTTPRequest('/%s/close' % objec...
[ "def", "database_close", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/close'", "%", "object_id", ",", "input_params", ",", "always_retry", "="...
Invokes the /database-xxxx/close API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Data-Object-Lifecycle#API-method%3A-%2Fclass-xxxx%2Fclose
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "close", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L419-L425
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_describe
def database_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Databases#API-method%3A-%2Fdatabase-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/describe' % ob...
python
def database_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Databases#API-method%3A-%2Fdatabase-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/describe' % ob...
[ "def", "database_describe", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/describe'", "%", "object_id", ",", "input_params", ",", "always_retry",...
Invokes the /database-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Databases#API-method%3A-%2Fdatabase-xxxx%2Fdescribe
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "describe", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L427-L433
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_get_details
def database_get_details(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/getDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FgetDetails """ return DXHTTPRequest('/%s/ge...
python
def database_get_details(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/getDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FgetDetails """ return DXHTTPRequest('/%s/ge...
[ "def", "database_get_details", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/getDetails'", "%", "object_id", ",", "input_params", ",", "always_re...
Invokes the /database-xxxx/getDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FgetDetails
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "getDetails", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L435-L441
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_list_projects
def database_list_projects(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/listProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2FlistProjects """ return DXHTTPRequest('/%s/listPr...
python
def database_list_projects(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/listProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2FlistProjects """ return DXHTTPRequest('/%s/listPr...
[ "def", "database_list_projects", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/listProjects'", "%", "object_id", ",", "input_params", ",", "alway...
Invokes the /database-xxxx/listProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2FlistProjects
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "listProjects", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L443-L449
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_relocate
def database_relocate(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /database-xxxx/relocate API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Databases#API-method%3A-%2Fdatabase-xxxx%2Frelocate """ return DXHTTPRequest('/%s/relocate' % o...
python
def database_relocate(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /database-xxxx/relocate API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Databases#API-method%3A-%2Fdatabase-xxxx%2Frelocate """ return DXHTTPRequest('/%s/relocate' % o...
[ "def", "database_relocate", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/relocate'", "%", "object_id", ",", "input_params", ",", "always_retry"...
Invokes the /database-xxxx/relocate API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Databases#API-method%3A-%2Fdatabase-xxxx%2Frelocate
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "relocate", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L451-L457
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_remove_tags
def database_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FremoveTags """ return DXHTTPRequest('/%s/removeTags' % o...
python
def database_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FremoveTags """ return DXHTTPRequest('/%s/removeTags' % o...
[ "def", "database_remove_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeTags'", "%", "object_id", ",", "input_params", ",", "always_re...
Invokes the /database-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FremoveTags
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "removeTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L459-L465
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_remove_types
def database_remove_types(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/removeTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FremoveTypes """ return DXHTTPRequest('/%s/removeTypes...
python
def database_remove_types(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/removeTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FremoveTypes """ return DXHTTPRequest('/%s/removeTypes...
[ "def", "database_remove_types", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeTypes'", "%", "object_id", ",", "input_params", ",", "always_...
Invokes the /database-xxxx/removeTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FremoveTypes
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "removeTypes", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L467-L473
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_rename
def database_rename(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/rename API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Name#API-method%3A-%2Fclass-xxxx%2Frename """ return DXHTTPRequest('/%s/rename' % object_id, input_p...
python
def database_rename(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/rename API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Name#API-method%3A-%2Fclass-xxxx%2Frename """ return DXHTTPRequest('/%s/rename' % object_id, input_p...
[ "def", "database_rename", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/rename'", "%", "object_id", ",", "input_params", ",", "always_retry", "...
Invokes the /database-xxxx/rename API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Name#API-method%3A-%2Fclass-xxxx%2Frename
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "rename", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L475-L481
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_set_details
def database_set_details(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/setDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FsetDetails """ return DXHTTPRequest('/%s/se...
python
def database_set_details(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/setDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FsetDetails """ return DXHTTPRequest('/%s/se...
[ "def", "database_set_details", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setDetails'", "%", "object_id", ",", "input_params", ",", "always_re...
Invokes the /database-xxxx/setDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FsetDetails
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "setDetails", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L483-L489
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_set_properties
def database_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Properties#API-method%3A-%2Fclass-xxxx%2FsetProperties """ return DXHTTPRequest('/%s/...
python
def database_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Properties#API-method%3A-%2Fclass-xxxx%2FsetProperties """ return DXHTTPRequest('/%s/...
[ "def", "database_set_properties", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setProperties'", "%", "object_id", ",", "input_params", ",", "alw...
Invokes the /database-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Properties#API-method%3A-%2Fclass-xxxx%2FsetProperties
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "setProperties", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L491-L497
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_set_visibility
def database_set_visibility(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/setVisibility API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Visibility#API-method%3A-%2Fclass-xxxx%2FsetVisibility """ return DXHTTPRequest('/%s/...
python
def database_set_visibility(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/setVisibility API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Visibility#API-method%3A-%2Fclass-xxxx%2FsetVisibility """ return DXHTTPRequest('/%s/...
[ "def", "database_set_visibility", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setVisibility'", "%", "object_id", ",", "input_params", ",", "alw...
Invokes the /database-xxxx/setVisibility API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Visibility#API-method%3A-%2Fclass-xxxx%2FsetVisibility
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "setVisibility", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L499-L505
dnanexus/dx-toolkit
src/python/dxpy/api.py
database_list_folder
def database_list_folder(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/listFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Databases#API-method%3A-%2Fdatabase-xxxx%2FlistFolder """ return DXHTTPRequest('/%s/listFol...
python
def database_list_folder(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /database-xxxx/listFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Databases#API-method%3A-%2Fdatabase-xxxx%2FlistFolder """ return DXHTTPRequest('/%s/listFol...
[ "def", "database_list_folder", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/listFolder'", "%", "object_id", ",", "input_params", ",", "always_re...
Invokes the /database-xxxx/listFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Databases#API-method%3A-%2Fdatabase-xxxx%2FlistFolder
[ "Invokes", "the", "/", "database", "-", "xxxx", "/", "listFolder", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L507-L513
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_add_tags
def file_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FaddTags """ return DXHTTPRequest('/%s/addTags' % object_id, input_para...
python
def file_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FaddTags """ return DXHTTPRequest('/%s/addTags' % object_id, input_para...
[ "def", "file_add_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/addTags'", "%", "object_id", ",", "input_params", ",", "always_retry", "=...
Invokes the /file-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FaddTags
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "addTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L515-L521
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_add_types
def file_add_types(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/addTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FaddTypes """ return DXHTTPRequest('/%s/addTypes' % object_id, input...
python
def file_add_types(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/addTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FaddTypes """ return DXHTTPRequest('/%s/addTypes' % object_id, input...
[ "def", "file_add_types", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/addTypes'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /file-xxxx/addTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FaddTypes
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "addTypes", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L523-L529
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_close
def file_close(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/close API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fclose """ return DXHTTPRequest('/%s/close' % object_id, input_params, alway...
python
def file_close(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/close API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fclose """ return DXHTTPRequest('/%s/close' % object_id, input_params, alway...
[ "def", "file_close", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/close'", "%", "object_id", ",", "input_params", ",", "always_retry", "=", ...
Invokes the /file-xxxx/close API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fclose
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "close", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L531-L537
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_describe
def file_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/describe' % object_id, input_p...
python
def file_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/describe' % object_id, input_p...
[ "def", "file_describe", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/describe'", "%", "object_id", ",", "input_params", ",", "always_retry", "...
Invokes the /file-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fdescribe
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "describe", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L539-L545
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_download
def file_download(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/download API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fdownload """ return DXHTTPRequest('/%s/download' % object_id, input_p...
python
def file_download(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/download API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fdownload """ return DXHTTPRequest('/%s/download' % object_id, input_p...
[ "def", "file_download", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/download'", "%", "object_id", ",", "input_params", ",", "always_retry", "...
Invokes the /file-xxxx/download API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fdownload
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "download", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L547-L553
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_get_details
def file_get_details(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/getDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FgetDetails """ return DXHTTPRequest('/%s/getDetails...
python
def file_get_details(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/getDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FgetDetails """ return DXHTTPRequest('/%s/getDetails...
[ "def", "file_get_details", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/getDetails'", "%", "object_id", ",", "input_params", ",", "always_retry"...
Invokes the /file-xxxx/getDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FgetDetails
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "getDetails", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L555-L561
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_list_projects
def file_list_projects(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/listProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2FlistProjects """ return DXHTTPRequest('/%s/listProjects' ...
python
def file_list_projects(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/listProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2FlistProjects """ return DXHTTPRequest('/%s/listProjects' ...
[ "def", "file_list_projects", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/listProjects'", "%", "object_id", ",", "input_params", ",", "always_re...
Invokes the /file-xxxx/listProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2FlistProjects
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "listProjects", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L563-L569
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_remove_tags
def file_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FremoveTags """ return DXHTTPRequest('/%s/removeTags' % object_id...
python
def file_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FremoveTags """ return DXHTTPRequest('/%s/removeTags' % object_id...
[ "def", "file_remove_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeTags'", "%", "object_id", ",", "input_params", ",", "always_retry"...
Invokes the /file-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Tags#API-method%3A-%2Fclass-xxxx%2FremoveTags
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "removeTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L571-L577
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_remove_types
def file_remove_types(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/removeTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FremoveTypes """ return DXHTTPRequest('/%s/removeTypes' % obje...
python
def file_remove_types(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/removeTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FremoveTypes """ return DXHTTPRequest('/%s/removeTypes' % obje...
[ "def", "file_remove_types", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeTypes'", "%", "object_id", ",", "input_params", ",", "always_retr...
Invokes the /file-xxxx/removeTypes API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Types#API-method%3A-%2Fclass-xxxx%2FremoveTypes
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "removeTypes", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L579-L585
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_rename
def file_rename(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/rename API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Name#API-method%3A-%2Fclass-xxxx%2Frename """ return DXHTTPRequest('/%s/rename' % object_id, input_params, a...
python
def file_rename(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/rename API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Name#API-method%3A-%2Fclass-xxxx%2Frename """ return DXHTTPRequest('/%s/rename' % object_id, input_params, a...
[ "def", "file_rename", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/rename'", "%", "object_id", ",", "input_params", ",", "always_retry", "=", ...
Invokes the /file-xxxx/rename API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Name#API-method%3A-%2Fclass-xxxx%2Frename
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "rename", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L587-L593
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_set_details
def file_set_details(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/setDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FsetDetails """ return DXHTTPRequest('/%s/setDetails...
python
def file_set_details(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/setDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FsetDetails """ return DXHTTPRequest('/%s/setDetails...
[ "def", "file_set_details", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setDetails'", "%", "object_id", ",", "input_params", ",", "always_retry"...
Invokes the /file-xxxx/setDetails API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Details-and-Links#API-method%3A-%2Fclass-xxxx%2FsetDetails
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "setDetails", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L595-L601
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_set_properties
def file_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Properties#API-method%3A-%2Fclass-xxxx%2FsetProperties """ return DXHTTPRequest('/%s/setPrope...
python
def file_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Properties#API-method%3A-%2Fclass-xxxx%2FsetProperties """ return DXHTTPRequest('/%s/setPrope...
[ "def", "file_set_properties", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setProperties'", "%", "object_id", ",", "input_params", ",", "always_...
Invokes the /file-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Properties#API-method%3A-%2Fclass-xxxx%2FsetProperties
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "setProperties", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L603-L609
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_set_visibility
def file_set_visibility(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/setVisibility API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Visibility#API-method%3A-%2Fclass-xxxx%2FsetVisibility """ return DXHTTPRequest('/%s/setVisib...
python
def file_set_visibility(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/setVisibility API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Visibility#API-method%3A-%2Fclass-xxxx%2FsetVisibility """ return DXHTTPRequest('/%s/setVisib...
[ "def", "file_set_visibility", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setVisibility'", "%", "object_id", ",", "input_params", ",", "always_...
Invokes the /file-xxxx/setVisibility API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Visibility#API-method%3A-%2Fclass-xxxx%2FsetVisibility
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "setVisibility", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L611-L617
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_upload
def file_upload(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/upload API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fupload """ return DXHTTPRequest('/%s/upload' % object_id, input_params, a...
python
def file_upload(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /file-xxxx/upload API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fupload """ return DXHTTPRequest('/%s/upload' % object_id, input_params, a...
[ "def", "file_upload", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/upload'", "%", "object_id", ",", "input_params", ",", "always_retry", "=", ...
Invokes the /file-xxxx/upload API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile-xxxx%2Fupload
[ "Invokes", "the", "/", "file", "-", "xxxx", "/", "upload", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L619-L625
dnanexus/dx-toolkit
src/python/dxpy/api.py
file_new
def file_new(input_params={}, always_retry=True, **kwargs): """ Invokes the /file/new API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile%2Fnew """ input_params_cp = Nonce.update_nonce(input_params) return DXHTTPRequest('/file/new', inp...
python
def file_new(input_params={}, always_retry=True, **kwargs): """ Invokes the /file/new API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile%2Fnew """ input_params_cp = Nonce.update_nonce(input_params) return DXHTTPRequest('/file/new', inp...
[ "def", "file_new", "(", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "input_params_cp", "=", "Nonce", ".", "update_nonce", "(", "input_params", ")", "return", "DXHTTPRequest", "(", "'/file/new'", ",", ...
Invokes the /file/new API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Files#API-method%3A-%2Ffile%2Fnew
[ "Invokes", "the", "/", "file", "/", "new", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L627-L634
dnanexus/dx-toolkit
src/python/dxpy/api.py
global_workflow_add_authorized_users
def global_workflow_add_authorized_users(name_or_id, alias=None, input_params={}, always_retry=True, **kwargs): """ Invokes the /globalworkflow-xxxx/addAuthorizedUsers API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Global-Workflows#API-method:-/globalworkflow-xxxx%5B/yyy...
python
def global_workflow_add_authorized_users(name_or_id, alias=None, input_params={}, always_retry=True, **kwargs): """ Invokes the /globalworkflow-xxxx/addAuthorizedUsers API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Global-Workflows#API-method:-/globalworkflow-xxxx%5B/yyy...
[ "def", "global_workflow_add_authorized_users", "(", "name_or_id", ",", "alias", "=", "None", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "fully_qualified_version", "=", "name_or_id", "+", "(", "(", ...
Invokes the /globalworkflow-xxxx/addAuthorizedUsers API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Global-Workflows#API-method:-/globalworkflow-xxxx%5B/yyyy%5D/addAuthorizedUsers
[ "Invokes", "the", "/", "globalworkflow", "-", "xxxx", "/", "addAuthorizedUsers", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L636-L643
dnanexus/dx-toolkit
src/python/dxpy/api.py
global_workflow_run
def global_workflow_run(name_or_id, alias=None, input_params={}, always_retry=True, **kwargs): """ Invokes the /globalworkflow-xxxx/run API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Global-Workflows#API-method:-/globalworkflow-xxxx%5B/yyyy%5D/run """ input_param...
python
def global_workflow_run(name_or_id, alias=None, input_params={}, always_retry=True, **kwargs): """ Invokes the /globalworkflow-xxxx/run API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Global-Workflows#API-method:-/globalworkflow-xxxx%5B/yyyy%5D/run """ input_param...
[ "def", "global_workflow_run", "(", "name_or_id", ",", "alias", "=", "None", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "input_params_cp", "=", "Nonce", ".", "update_nonce", "(", "input_params", ...
Invokes the /globalworkflow-xxxx/run API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Global-Workflows#API-method:-/globalworkflow-xxxx%5B/yyyy%5D/run
[ "Invokes", "the", "/", "globalworkflow", "-", "xxxx", "/", "run", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L762-L770
dnanexus/dx-toolkit
src/python/dxpy/api.py
job_add_tags
def job_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /job-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FaddTags """ return DXHTTPRequest('/%s/addTags' % objec...
python
def job_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /job-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FaddTags """ return DXHTTPRequest('/%s/addTags' % objec...
[ "def", "job_add_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/addTags'", "%", "object_id", ",", "input_params", ",", "always_retry", "="...
Invokes the /job-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FaddTags
[ "Invokes", "the", "/", "job", "-", "xxxx", "/", "addTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L790-L796
dnanexus/dx-toolkit
src/python/dxpy/api.py
job_describe
def job_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /job-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/describe' % ob...
python
def job_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /job-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/describe' % ob...
[ "def", "job_describe", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/describe'", "%", "object_id", ",", "input_params", ",", "always_retry", "=...
Invokes the /job-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2Fdescribe
[ "Invokes", "the", "/", "job", "-", "xxxx", "/", "describe", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L798-L804
dnanexus/dx-toolkit
src/python/dxpy/api.py
job_get_log
def job_get_log(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /job-xxxx/getLog API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FgetLog """ return DXHTTPRequest('/%s/getLog' % object_i...
python
def job_get_log(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /job-xxxx/getLog API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FgetLog """ return DXHTTPRequest('/%s/getLog' % object_i...
[ "def", "job_get_log", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/getLog'", "%", "object_id", ",", "input_params", ",", "always_retry", "=",...
Invokes the /job-xxxx/getLog API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FgetLog
[ "Invokes", "the", "/", "job", "-", "xxxx", "/", "getLog", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L806-L812
dnanexus/dx-toolkit
src/python/dxpy/api.py
job_remove_tags
def job_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /job-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FremoveTags """ return DXHTTPRequest('/%s/removeT...
python
def job_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /job-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FremoveTags """ return DXHTTPRequest('/%s/removeT...
[ "def", "job_remove_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeTags'", "%", "object_id", ",", "input_params", ",", "always_retry",...
Invokes the /job-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FremoveTags
[ "Invokes", "the", "/", "job", "-", "xxxx", "/", "removeTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L814-L820
dnanexus/dx-toolkit
src/python/dxpy/api.py
job_set_properties
def job_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /job-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FsetProperties """ return DXHTTPRequest('/%...
python
def job_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /job-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FsetProperties """ return DXHTTPRequest('/%...
[ "def", "job_set_properties", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setProperties'", "%", "object_id", ",", "input_params", ",", "always_r...
Invokes the /job-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2FsetProperties
[ "Invokes", "the", "/", "job", "-", "xxxx", "/", "setProperties", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L822-L828
dnanexus/dx-toolkit
src/python/dxpy/api.py
job_terminate
def job_terminate(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /job-xxxx/terminate API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2Fterminate """ return DXHTTPRequest('/%s/terminate' ...
python
def job_terminate(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /job-xxxx/terminate API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2Fterminate """ return DXHTTPRequest('/%s/terminate' ...
[ "def", "job_terminate", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/terminate'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /job-xxxx/terminate API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Applets-and-Entry-Points#API-method%3A-%2Fjob-xxxx%2Fterminate
[ "Invokes", "the", "/", "job", "-", "xxxx", "/", "terminate", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L830-L836
dnanexus/dx-toolkit
src/python/dxpy/api.py
notifications_get
def notifications_get(input_params={}, always_retry=True, **kwargs): """ Invokes the /notifications/get API method. """ return DXHTTPRequest('/notifications/get', input_params, always_retry=always_retry, **kwargs)
python
def notifications_get(input_params={}, always_retry=True, **kwargs): """ Invokes the /notifications/get API method. """ return DXHTTPRequest('/notifications/get', input_params, always_retry=always_retry, **kwargs)
[ "def", "notifications_get", "(", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/notifications/get'", ",", "input_params", ",", "always_retry", "=", "always_retry", ",", "*"...
Invokes the /notifications/get API method.
[ "Invokes", "the", "/", "notifications", "/", "get", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L847-L851
dnanexus/dx-toolkit
src/python/dxpy/api.py
notifications_mark_read
def notifications_mark_read(input_params={}, always_retry=True, **kwargs): """ Invokes the /notifications/markRead API method. """ return DXHTTPRequest('/notifications/markRead', input_params, always_retry=always_retry, **kwargs)
python
def notifications_mark_read(input_params={}, always_retry=True, **kwargs): """ Invokes the /notifications/markRead API method. """ return DXHTTPRequest('/notifications/markRead', input_params, always_retry=always_retry, **kwargs)
[ "def", "notifications_mark_read", "(", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/notifications/markRead'", ",", "input_params", ",", "always_retry", "=", "always_retry", ...
Invokes the /notifications/markRead API method.
[ "Invokes", "the", "/", "notifications", "/", "markRead", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L853-L857
dnanexus/dx-toolkit
src/python/dxpy/api.py
org_describe
def org_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/describe' % object_id, in...
python
def org_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/describe' % object_id, in...
[ "def", "org_describe", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/describe'", "%", "object_id", ",", "input_params", ",", "always_retry", "=...
Invokes the /org-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2Fdescribe
[ "Invokes", "the", "/", "org", "-", "xxxx", "/", "describe", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L859-L865
dnanexus/dx-toolkit
src/python/dxpy/api.py
org_find_members
def org_find_members(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/findMembers API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FfindMembers """ return DXHTTPRequest('/%s/findMembers' % ...
python
def org_find_members(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/findMembers API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FfindMembers """ return DXHTTPRequest('/%s/findMembers' % ...
[ "def", "org_find_members", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/findMembers'", "%", "object_id", ",", "input_params", ",", "always_retry...
Invokes the /org-xxxx/findMembers API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FfindMembers
[ "Invokes", "the", "/", "org", "-", "xxxx", "/", "findMembers", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L867-L873
dnanexus/dx-toolkit
src/python/dxpy/api.py
org_find_projects
def org_find_projects(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/findProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FfindProjects """ return DXHTTPRequest('/%s/findProjects...
python
def org_find_projects(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/findProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FfindProjects """ return DXHTTPRequest('/%s/findProjects...
[ "def", "org_find_projects", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/findProjects'", "%", "object_id", ",", "input_params", ",", "always_ret...
Invokes the /org-xxxx/findProjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FfindProjects
[ "Invokes", "the", "/", "org", "-", "xxxx", "/", "findProjects", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L875-L881
dnanexus/dx-toolkit
src/python/dxpy/api.py
org_find_apps
def org_find_apps(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/findApps API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FfindApps """ return DXHTTPRequest('/%s/findApps' % object_id, i...
python
def org_find_apps(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/findApps API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FfindApps """ return DXHTTPRequest('/%s/findApps' % object_id, i...
[ "def", "org_find_apps", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/findApps'", "%", "object_id", ",", "input_params", ",", "always_retry", "...
Invokes the /org-xxxx/findApps API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FfindApps
[ "Invokes", "the", "/", "org", "-", "xxxx", "/", "findApps", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L883-L889
dnanexus/dx-toolkit
src/python/dxpy/api.py
org_invite
def org_invite(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/invite API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2Finvite """ return DXHTTPRequest('/%s/invite' % object_id, input_para...
python
def org_invite(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/invite API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2Finvite """ return DXHTTPRequest('/%s/invite' % object_id, input_para...
[ "def", "org_invite", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/invite'", "%", "object_id", ",", "input_params", ",", "always_retry", "=", ...
Invokes the /org-xxxx/invite API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2Finvite
[ "Invokes", "the", "/", "org", "-", "xxxx", "/", "invite", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L891-L897
dnanexus/dx-toolkit
src/python/dxpy/api.py
org_remove_member
def org_remove_member(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/removeMember API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FremoveMember """ return DXHTTPRequest('/%s/removeMember...
python
def org_remove_member(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/removeMember API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FremoveMember """ return DXHTTPRequest('/%s/removeMember...
[ "def", "org_remove_member", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeMember'", "%", "object_id", ",", "input_params", ",", "always_ret...
Invokes the /org-xxxx/removeMember API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FremoveMember
[ "Invokes", "the", "/", "org", "-", "xxxx", "/", "removeMember", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L899-L905
dnanexus/dx-toolkit
src/python/dxpy/api.py
org_set_member_access
def org_set_member_access(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/setMemberAccess API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FsetMemberAccess """ return DXHTTPRequest('/%s/se...
python
def org_set_member_access(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/setMemberAccess API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FsetMemberAccess """ return DXHTTPRequest('/%s/se...
[ "def", "org_set_member_access", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setMemberAccess'", "%", "object_id", ",", "input_params", ",", "alw...
Invokes the /org-xxxx/setMemberAccess API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2FsetMemberAccess
[ "Invokes", "the", "/", "org", "-", "xxxx", "/", "setMemberAccess", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L907-L913
dnanexus/dx-toolkit
src/python/dxpy/api.py
org_update
def org_update(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/update API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2Fupdate """ return DXHTTPRequest('/%s/update' % object_id, input_para...
python
def org_update(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /org-xxxx/update API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2Fupdate """ return DXHTTPRequest('/%s/update' % object_id, input_para...
[ "def", "org_update", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/update'", "%", "object_id", ",", "input_params", ",", "always_retry", "=", ...
Invokes the /org-xxxx/update API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Organizations#API-method%3A-%2Forg-xxxx%2Fupdate
[ "Invokes", "the", "/", "org", "-", "xxxx", "/", "update", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L915-L921
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_add_tags
def project_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FaddTags """ return DXHTTPRequest('/%s/addTags' % object_id...
python
def project_add_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FaddTags """ return DXHTTPRequest('/%s/addTags' % object_id...
[ "def", "project_add_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/addTags'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /project-xxxx/addTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FaddTags
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "addTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L932-L938
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_clone
def project_clone(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/clone API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2Fclone """ return DXHTTPRequest('/%s/clone' % object_id, input_par...
python
def project_clone(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/clone API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2Fclone """ return DXHTTPRequest('/%s/clone' % object_id, input_par...
[ "def", "project_clone", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/clone'", "%", "object_id", ",", "input_params", ",", "always_retry", "="...
Invokes the /project-xxxx/clone API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Cloning#API-method%3A-%2Fclass-xxxx%2Fclone
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "clone", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L940-L946
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_decrease_permissions
def project_decrease_permissions(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/decreasePermissions API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2FdecreasePermissions...
python
def project_decrease_permissions(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/decreasePermissions API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2FdecreasePermissions...
[ "def", "project_decrease_permissions", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/decreasePermissions'", "%", "object_id", ",", "input_params", ...
Invokes the /project-xxxx/decreasePermissions API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2FdecreasePermissions
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "decreasePermissions", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L948-L954
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_describe
def project_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/describe' % object...
python
def project_describe(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2Fdescribe """ return DXHTTPRequest('/%s/describe' % object...
[ "def", "project_describe", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/describe'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /project-xxxx/describe API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2Fdescribe
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "describe", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L956-L962
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_destroy
def project_destroy(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/destroy API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2Fdestroy """ return DXHTTPRequest('/%s/destroy' % object_id,...
python
def project_destroy(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/destroy API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2Fdestroy """ return DXHTTPRequest('/%s/destroy' % object_id,...
[ "def", "project_destroy", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/destroy'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /project-xxxx/destroy API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2Fdestroy
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "destroy", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L964-L970
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_invite
def project_invite(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/invite API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2Finvite """ return DXHTTPRequest('/%s/...
python
def project_invite(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/invite API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2Finvite """ return DXHTTPRequest('/%s/...
[ "def", "project_invite", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/invite'", "%", "object_id", ",", "input_params", ",", "always_retry", "...
Invokes the /project-xxxx/invite API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2Finvite
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "invite", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L972-L978
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_leave
def project_leave(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/leave API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2Fleave """ return DXHTTPRequest('/%s/leav...
python
def project_leave(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/leave API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2Fleave """ return DXHTTPRequest('/%s/leav...
[ "def", "project_leave", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/leave'", "%", "object_id", ",", "input_params", ",", "always_retry", "=",...
Invokes the /project-xxxx/leave API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2Fleave
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "leave", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L980-L986
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_list_folder
def project_list_folder(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/listFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FlistFolder """ return DXHTTPRequest('/%s/l...
python
def project_list_folder(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/listFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FlistFolder """ return DXHTTPRequest('/%s/l...
[ "def", "project_list_folder", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/listFolder'", "%", "object_id", ",", "input_params", ",", "always_ret...
Invokes the /project-xxxx/listFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FlistFolder
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "listFolder", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L988-L994
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_move
def project_move(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/move API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2Fmove """ return DXHTTPRequest('/%s/move' % object_id, ...
python
def project_move(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/move API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2Fmove """ return DXHTTPRequest('/%s/move' % object_id, ...
[ "def", "project_move", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/move'", "%", "object_id", ",", "input_params", ",", "always_retry", "=", ...
Invokes the /project-xxxx/move API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2Fmove
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "move", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L996-L1002
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_new_folder
def project_new_folder(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/newFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FnewFolder """ return DXHTTPRequest('/%s/newF...
python
def project_new_folder(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/newFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FnewFolder """ return DXHTTPRequest('/%s/newF...
[ "def", "project_new_folder", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/newFolder'", "%", "object_id", ",", "input_params", ",", "always_retry...
Invokes the /project-xxxx/newFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FnewFolder
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "newFolder", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L1004-L1010
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_remove_folder
def project_remove_folder(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/removeFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveFolder """ return DXHTTPRequest...
python
def project_remove_folder(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/removeFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveFolder """ return DXHTTPRequest...
[ "def", "project_remove_folder", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeFolder'", "%", "object_id", ",", "input_params", ",", "alway...
Invokes the /project-xxxx/removeFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveFolder
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "removeFolder", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L1012-L1018
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_remove_objects
def project_remove_objects(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/removeObjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveObjects """ return DXHTTPRequ...
python
def project_remove_objects(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/removeObjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveObjects """ return DXHTTPRequ...
[ "def", "project_remove_objects", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeObjects'", "%", "object_id", ",", "input_params", ",", "alw...
Invokes the /project-xxxx/removeObjects API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FremoveObjects
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "removeObjects", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L1020-L1026
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_remove_tags
def project_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FremoveTags """ return DXHTTPRequest('/%s/removeTags'...
python
def project_remove_tags(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FremoveTags """ return DXHTTPRequest('/%s/removeTags'...
[ "def", "project_remove_tags", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/removeTags'", "%", "object_id", ",", "input_params", ",", "always_ret...
Invokes the /project-xxxx/removeTags API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FremoveTags
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "removeTags", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L1028-L1034
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_rename_folder
def project_rename_folder(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/renameFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FrenameFolder """ return DXHTTPRequest...
python
def project_rename_folder(object_id, input_params={}, always_retry=False, **kwargs): """ Invokes the /project-xxxx/renameFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FrenameFolder """ return DXHTTPRequest...
[ "def", "project_rename_folder", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "False", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/renameFolder'", "%", "object_id", ",", "input_params", ",", "alway...
Invokes the /project-xxxx/renameFolder API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Folders-and-Deletion#API-method%3A-%2Fclass-xxxx%2FrenameFolder
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "renameFolder", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L1036-L1042
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_set_properties
def project_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FsetProperties """ return DXHTTPRequest('/%s/se...
python
def project_set_properties(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FsetProperties """ return DXHTTPRequest('/%s/se...
[ "def", "project_set_properties", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/setProperties'", "%", "object_id", ",", "input_params", ",", "alwa...
Invokes the /project-xxxx/setProperties API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FsetProperties
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "setProperties", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L1044-L1050
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_transfer
def project_transfer(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/transfer API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2Ftransfer """ return DXHTTPRequest(...
python
def project_transfer(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/transfer API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2Ftransfer """ return DXHTTPRequest(...
[ "def", "project_transfer", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/transfer'", "%", "object_id", ",", "input_params", ",", "always_retry", ...
Invokes the /project-xxxx/transfer API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Project-Permissions-and-Sharing#API-method%3A-%2Fproject-xxxx%2Ftransfer
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "transfer", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L1052-L1058
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_update
def project_update(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/update API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2Fupdate """ return DXHTTPRequest('/%s/update' % object_id, inp...
python
def project_update(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/update API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2Fupdate """ return DXHTTPRequest('/%s/update' % object_id, inp...
[ "def", "project_update", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/update'", "%", "object_id", ",", "input_params", ",", "always_retry", "=...
Invokes the /project-xxxx/update API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2Fupdate
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "update", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L1060-L1066
dnanexus/dx-toolkit
src/python/dxpy/api.py
project_update_sponsorship
def project_update_sponsorship(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/updateSponsorship API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FupdateSponsorship """ return DXHTTPReq...
python
def project_update_sponsorship(object_id, input_params={}, always_retry=True, **kwargs): """ Invokes the /project-xxxx/updateSponsorship API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FupdateSponsorship """ return DXHTTPReq...
[ "def", "project_update_sponsorship", "(", "object_id", ",", "input_params", "=", "{", "}", ",", "always_retry", "=", "True", ",", "*", "*", "kwargs", ")", ":", "return", "DXHTTPRequest", "(", "'/%s/updateSponsorship'", "%", "object_id", ",", "input_params", ",",...
Invokes the /project-xxxx/updateSponsorship API method. For more info, see: https://wiki.dnanexus.com/API-Specification-v1.0.0/Projects#API-method%3A-%2Fproject-xxxx%2FupdateSponsorship
[ "Invokes", "the", "/", "project", "-", "xxxx", "/", "updateSponsorship", "API", "method", "." ]
train
https://github.com/dnanexus/dx-toolkit/blob/74befb53ad90fcf902d8983ae6d74580f402d619/src/python/dxpy/api.py#L1068-L1074