apollo feature
Commands to manage features
apollo feature add-child
apollo feature check
apollo feature copy
apollo feature delete
apollo feature edit
apollo feature edit-attribute
apollo feature edit-coords
apollo feature edit-type
apollo feature get
apollo feature get-id
apollo feature import INPUT-FILE
apollo feature search
apollo feature add-child
Add a child feature (e.g. add an exon to an mRNA)
USAGE
$ apollo feature add-child -s <value> -e <value> -t <value> [--profile <value>] [--config-file <value>] [-i <value>]
FLAGS
-e, --end=<value> (required) End coordinate of the child feature (1-based)
-i, --feature-id=<value> [default: -] Add a child to this feature ID; use - to read it from stdin
-s, --start=<value> (required) Start coordinate of the child feature (1-based)
-t, --type=<value> (required) Type of child feature
--config-file=<value> Use this config file (mostly for testing)
--profile=<value> Use credentials from this profile
DESCRIPTION
Add a child feature (e.g. add an exon to an mRNA)
See the other commands under `apollo feature` to retrive the parent ID of interest and to populate the child feature
with attributes.
EXAMPLES
Add an exon at genomic coordinates 10..20 to this feature ID:
$ apollo feature add-child -i 660...73f -t exon -s 10 -e 20
See code: src/commands/feature/add-child.ts
apollo feature check
Get check results
USAGE
$ apollo feature check [--profile <value>] [--config-file <value>] [-i <value>] [-a <value>]
FLAGS
-a, --assembly=<value> Get checks for this assembly
-i, --feature-id=<value>... Get checks for these feature identifiers
--config-file=<value> Use this config file (mostly for testing)
--profile=<value> Use credentials from this profile
DESCRIPTION
Get check results
Use this command to view which features fail checks along with the reason for failing.Use `apollo assembly check` for
managing which checks should be applied to an assembly
EXAMPLES
Get all check results in the database:
$ apollo feature check
Get check results for assembly hg19:
$ apollo feature check -a hg19
See code: src/commands/feature/check.ts