export MEDCO_SETUP_DIR=~/medco
cd ${MEDCO_SETUP_DIR}/deployments/dev-local-3nodes/
NAME:
medco-cli-client - Command-line query tool for MedCo.
USAGE:
medco-cli-client [global options] command [command options] [arguments...]
VERSION:
dev
COMMANDS:
search Get info about the ontology elements (both concepts and modifiers) whose paths contain the search string passed as argument.
concept-children, con-c Get the concept children (both concepts and modifiers)
modifier-children, mod-c Get the modifier children
concept-info, con-i Get the concept info
modifier-info, mod-i Get the modifier info
query, q Query the MedCo network
ga-get-values, ga-val Get the values of the genomic annotations of type *annotation* whose values contain *value*
ga-get-variant, ga-var Get the variant ID of the genomic annotation of type *annotation* and value *value*
survival-analysis, srva Run a survival analysis
get-saved-cohorts, getsc get cohorts
add-saved-cohorts, addsc Create a new cohort.
update-saved-cohorts, upsc Updates an existing cohort.
remove-saved-cohorts, rmsc Remove a cohort.
cohorts-patient-list, cpl Retrieve patient list belonging to the cohort
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--user value, -u value OIDC user login
--password value, -p value OIDC password login
--token value, -t value OIDC token
--disableTLSCheck Disable check of TLS certificates
--outputFile value, -o value Output file for the result. Printed to stdout if omitted.
--help, -h show help
--version, -v print the version
For a start, you can use the credentials of the default user: username: test, password: test
search
You can use this command to search elements in the MedcCo ontology.
For example:
concept-children
You can use this command to browse the MedCo ontology by getting the children of a concept, both concepts and modifiers.
For example:
modifier-children
You can use this command to browse the MedCo ontology by getting the children of a modifier.
For example:
concept-info
You can use this command to get information about a MedCo concept, including the associated metadata.
For example:
modifier-info
You can use this command to get information about a MedCo modifier, including the associated metadata.
For example:
query
You can use this command to query the MedCo network.
This is the syntax of an example query using the pre-loaded default test data.
You will get something like that:
Query terms can be composed using the logical operators NOT, AND and OR.
Note that, in the queries, the OR operator has the highest priority, so1 AND NOT 2 OR 3 AND 2 is factorised as (1) AND (NOT (2 OR 3)) AND (2)
To each group of OR-ed terms you can also add a timing option ("any", "samevisit", "sameinstancenum") that will override the globally set timing option. For example: ``
1 AND NOT 2 OR 3 samevisit AND 2
Each query term is composed is composed of two mandatory fields, the type field and the content field, and an optional field, the constraint field, all separated by ::.
Possible values of the type field are: enc, clr, file.
When the type field is equal to enc, the content field contains the concept ID. The constraint field is not present in this case.
When the type field is equal to clr, the content field contains the concept field (containing the concept path) and, possibly, the modifier field, which in turn contains the modifier key and applied path fields, all separated by :. The optional constraint field can be present, containing the operator, type and value fields separated by :. The constraint field applies either to the concept or, if the modifier field is present, to the modifier. The possible types are NUMBER and TEXT. The possible operators for numbers are: EQ (equals), NE (not equal), GT (greater than), LT (less than), GE (greater than or equal), LE (less than or equal), BETWEEN (between, in this case the value field is in the format "x and y"). The possible operators for TEXT are LIKE[exact], LIKE[begin], LIKE[contains] and LIKE[end].
When the type field is equal to file, the content field contains the path of the file containing the query terms, one for each row. The query terms contained in the same file are OR-ed together. Besides enc, clr, and file query terms, a file can also contain genomic query terms, each of which is composed by 4 comma separated values.
ga-get-values
You can use this command to get the values of the genomic annotations that MedCo nodes make available for queries.
Then, for example, if you want to know which genomic annotations of type "protein_change" containing the string "g32" are available, you can run:
You will get:
The matching is case-insensitive and it is not possible to use wildcards. At the moment, with the loader v0, only three types of genomic annotations are available: variant_name, protein_change and hugo_gene_symbol.
ga-get-variant
You can use this command to get the variant ID of a certain genomic annotation.
Then, for example, if you want to know the variant ID of the genomic annotation "HTR5A" of type "hugo_gene_symbol" with zygosity "heterozygous" or "homozygous", you can run:
You will get:
The matching is case-insensitive and it is not possible to use wildcards. If you request the ID of an annotation which is not available (e.g, in the previous, example, "HTR5") you will get an error message. At the moment, with the loader v0, only three types of genomic annotations are available: variant_name, protein_change and hugo_gene_symbol.
get-saved-cohorts
You can run this command to get the cohorts that have been previously saved.
You can run:
You will get:
add-saved-cohorts
You can run this command to save a new cohort. The patient set IDs are given from a previous explore request. More precisely, they are taken from the patient_set_id column of explore results. The list of IDs must be given in a coma-separated format, without space. There must as many IDs as there are nodes.
For example, you can run:
update-saved-cohorts
You can run this command to update an existing cohort. The patient set IDs are given from a previous explore request, in the same manner as add-saved-cohort command.
For example, you can run:
remove-saved-cohorts
You can run this command to remove an existing cohort.
For example, you can run:
This command removes the cohort from the node servers and it is not be possible to revert this action.
cohorts-patient-list
You can run this command to get the list of patient belonging to cohort. The cohort is identified by providing its name.
For example, you can run:
You will get something like:
survival-analysis
You can run this command to get information useful to run survival analysis. The relative time points are computed as the difference between absolute dates of start concept and end concept.
Start and concept are determined by the name of the access table concatenated to the full path of the concept.
The default cohort identifier -1 corresponds to test data loaded for end-to-end testing. All future cohort identifiers will be positive integers. Cohorts can be created after a successful MedCo Explore query.
The matching is case-insensitive and it is not possible to use wildcards. If you request the ID of an annotation which is not available (e.g, in the previous, example, "HTR5") you will get an error message. At the moment only three types of genomic annotations are available: variant_name, protein_change and hugo_gene_symbol.
NAME:
medco-cli-client search - Get info about the ontology elements (both concepts and modifiers) whose paths contain the search string passed as argument.
USAGE:
medco-cli-client search searchString
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test search test
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test concept-children --help
NAME:
medco-cli-client concept-children - Get the concept children (both concepts and modifiers)
USAGE:
medco-cli-client concept-children conceptPath
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test concept-children /E2ETEST/e2etest/
PATH TYPE
/E2ETEST/e2etest/1/ concept
/E2ETEST/e2etest/2/ concept
/E2ETEST/e2etest/3/ concept
/E2ETEST/modifiers/ modifier_folder
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test modifier-children --help
NAME:
medco-cli-client modifier-children - Get the modifier children
USAGE:
medco-cli-client modifier-children modifierPath appliedPath appliedConcept
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test modifier-children /E2ETEST/modifiers/ /e2etest/% /E2ETEST/e2etest/1/
PATH TYPE
/E2ETEST/modifiers/1/ modifier
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test concept-info --help
NAME:
medco-cli-client concept-info - Get the concept info
USAGE:
medco-cli-client concept-info conceptPath
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test modifier-info --help
NAME:
medco-cli-client modifier-info - Get the modifier info
USAGE:
medco-cli-client modifier-info modifierPath appliedPath
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test ga-get-values --help
NAME:
medco-cli-client ga-get-values - Get the values of the genomic annotations of type *annotation* whose values contain *value*
USAGE:
medco-cli-client ga-get-values [command options] [-l limit] annotation value
OPTIONS:
--limit value, -l value Maximum number of returned values (default: 0)
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test ga-get-values protein_change g32
G325R
G32E
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test ga-get-variant --help
NAME:
medco-cli-client ga-get-variant - Get the variant ID of the genomic annotation of type *annotation* and value *value*
USAGE:
medco-cli-client ga-get-variant [command options] [-z zygosity] [-e] annotation value
DESCRIPTION:
zygosity can be either heterozygous, homozygous, unknown or a combination of the three separated by |
If omitted, the command will execute as if zygosity was equal to "heterozygous|homozygous|unknown|"
OPTIONS:
--zygosity value, -z value Variant zygosysty
--encrypted, -e Return encrypted variant id
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test ga-get-variant -z "heterozygous|homozygous" hugo_gene_symbol HTR5A
-7039476204566471680
-7039476580443220992
NAME:
medco-cli-client get-saved-cohorts - get cohorts
USAGE:
medco-cli-client get-saved-cohorts [command options] [-l limit]
DESCRIPTION:
Gets the list of cohorts.
OPTIONS:
--limit value, -l value Limits the number of retrieved cohorts. 0 means no limit. (default: 10)
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test getsc
NAME:
medco-cli-client add-saved-cohorts - Create a new cohort.
USAGE:
medco-cli-client add-saved-cohorts [command options] -c cohortName -p patientSetIDs
DESCRIPTION:
Creates a new cohort with given name. The patient set IDs correspond to explore query result IDs.
OPTIONS:
--patientSetIDs value, -p value List of patient set IDs, there must be one per node
--cohortName value, -c value Name of the new cohort
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test addsc -c testCohort2 -p 10,10,10
NAME:
medco-cli-client update-saved-cohorts - Updates an existing cohort.
USAGE:
medco-cli-client update-saved-cohorts [command options] -c cohortName -p patientSetIDs
DESCRIPTION:
Updates a new cohort with given name. The patient set IDs correspond to explore query result IDs.
OPTIONS:
--patientSetIDs value, -p value List of patient set IDs, there must be one per node
--cohortName value, -c value Name of the existing cohort
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test upsc -c testCohort2 -p 9,9,9
NAME:
medco-cli-client remove-saved-cohorts - Remove a cohort.
USAGE:
medco-cli-client remove-saved-cohorts [command options] -c cohortName
DESCRIPTION:
Removes a cohort for a given name. If the user does not have a cohort with this name in DB, an error is sent.
OPTIONS:
--cohortName value, -c value Name of the cohort to remove
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test rmsc -c testCohort2
NAME:
medco-cli-client cohorts-patient-list - Retrieve patient list belonging to the cohort
USAGE:
medco-cli-client cohorts-patient-list [command options] -c cohortName [-d timer dump file]
DESCRIPTION:
Retrieve the encrypted patient list for a given cohort name and locally decrypt it.
OPTIONS:
--cohortName value, -c value Name of the new cohort
--dumpFile value, -d value Output file for the timers CSV. Printed to stdout if omitted.
docker-compose -f docker-compose.tools.yml run medco-cli-client --user test --password test cpl -c testCohort