You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: products/jbrowse-cli/src/commands/add-assembly/index.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ export async function run(args?: string[]) {
15
15
type: {
16
16
type: 'string',
17
17
short: 't',
18
-
description: `type of sequence, by default inferred from sequence file\n\nindexedFasta An index FASTA (e.g. .fa or .fasta) file;\n can optionally specify --faiLocation\n\nbgzipFasta A block-gzipped and indexed FASTA (e.g. .fa.gz or .fasta.gz) file;\n can optionally specify --faiLocation and/or --gziLocation\n\ntwoBit A twoBit (e.g. .2bit) file\n\nchromSizes A chromosome sizes (e.g. .chrom.sizes) file\n\ncustom Either a JSON file location or inline JSON that defines a custom\n sequence adapter; must provide --name if using inline JSON`,
18
+
description: `type of sequence, by default inferred from sequence file\n\nindexedFasta - An index FASTA (e.g. .fa or .fasta) file;can optionally specify --faiLocation\n\nbgzipFasta - A block-gzipped and indexed FASTA (e.g. .fa.gz or .fasta.gz) file;can optionally specify --faiLocation and/or --gziLocation\n\ntwoBit - A twoBit (e.g. .2bit) file\n\nchromSizes - A chromosome sizes (e.g. .chrom.sizes) file\n\ncustom - Either a JSON file location or inline JSON that defines a custom sequence adapter; must provide --name if using inline JSON`,
@@ -28,7 +28,7 @@ export async function run(args?: string[]) {
28
28
type: 'string',
29
29
short: 'a',
30
30
description:
31
-
'An alias for the assembly name (e.g. "hg38" if the name of the assembly is "GRCh38");\ncan be specified multiple times',
31
+
'An alias for the assembly name (e.g. "hg38" if the name of the assembly is "GRCh38"); can be specified multiple times',
32
32
multiple: true,
33
33
},
34
34
displayName: {
@@ -48,24 +48,24 @@ export async function run(args?: string[]) {
48
48
refNameAliases: {
49
49
type: 'string',
50
50
description:
51
-
'Reference sequence name aliases file or URL; assumed to be a tab-separated aliases\nfile unless --refNameAliasesType is specified',
51
+
'Reference sequence name aliases file or URL; assumed to be a tab-separated aliases file unless --refNameAliasesType is specified',
52
52
},
53
53
refNameAliasesType: {
54
54
type: 'string',
55
55
description:
56
-
'Type of aliases defined by --refNameAliases; if "custom", --refNameAliases is either\na JSON file location or inline JSON that defines a custom sequence adapter',
56
+
'Type of aliases defined by --refNameAliases; if "custom", --refNameAliases is either a JSON file location or inline JSON that defines a custom sequence adapter',
57
57
choices: ['aliases','custom'],
58
58
dependsOn: ['refNameAliases'],
59
59
},
60
60
refNameColors: {
61
61
type: 'string',
62
62
description:
63
-
'A comma-separated list of color strings for the reference sequence names; will cycle\nthrough colors if there are fewer colors than sequences',
63
+
'A comma-separated list of color strings for the reference sequence names; will cycle through colors if there are fewer colors than sequences',
64
64
},
65
65
target: {
66
66
type: 'string',
67
67
description:
68
-
'path to config file in JB2 installation directory to write out to.\nCreates ./config.json if nonexistent',
68
+
'path to config file in JB2 installation directory to write out to. Creates ./config.json if nonexistent',
0 commit comments