miga-base 0.3.1.6 → 0.3.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/actions/ncbi_get.rb +57 -42
- data/lib/miga/result/base.rb +7 -0
- data/lib/miga/result/dates.rb +42 -0
- data/lib/miga/result.rb +4 -0
- data/lib/miga/version.rb +1 -1
- data/scripts/essential_genes.bash +5 -4
- data/utils/enveomics/Makefile +1 -1
- data/utils/enveomics/Manifest/Tasks/aasubs.json +75 -75
- data/utils/enveomics/Manifest/Tasks/blasttab.json +194 -185
- data/utils/enveomics/Manifest/Tasks/distances.json +130 -130
- data/utils/enveomics/Manifest/Tasks/fasta.json +51 -3
- data/utils/enveomics/Manifest/Tasks/fastq.json +161 -126
- data/utils/enveomics/Manifest/Tasks/graphics.json +111 -111
- data/utils/enveomics/Manifest/Tasks/mapping.json +30 -0
- data/utils/enveomics/Manifest/Tasks/ogs.json +308 -265
- data/utils/enveomics/Manifest/Tasks/other.json +451 -449
- data/utils/enveomics/Manifest/Tasks/remote.json +1 -1
- data/utils/enveomics/Manifest/Tasks/sequence-identity.json +18 -10
- data/utils/enveomics/Manifest/Tasks/tables.json +250 -250
- data/utils/enveomics/Manifest/Tasks/trees.json +52 -52
- data/utils/enveomics/Manifest/Tasks/variants.json +4 -4
- data/utils/enveomics/Manifest/categories.json +12 -4
- data/utils/enveomics/Manifest/examples.json +1 -1
- data/utils/enveomics/Scripts/BedGraph.tad.rb +71 -0
- data/utils/enveomics/Scripts/BlastTab.recplot2.R +23 -22
- data/utils/enveomics/Scripts/FastA.split.rb +79 -0
- data/utils/enveomics/Scripts/FastQ.test-error.rb +81 -0
- data/utils/enveomics/Scripts/JPlace.to_iToL.rb +272 -258
- data/utils/enveomics/Scripts/aai.rb +13 -6
- data/utils/enveomics/Scripts/ani.rb +2 -2
- data/utils/enveomics/Scripts/clust.rand.rb +102 -0
- data/utils/enveomics/Scripts/lib/enveomics_rb/enveomics.rb +12 -14
- data/utils/enveomics/Scripts/lib/enveomics_rb/jplace.rb +2 -2
- data/utils/enveomics/Scripts/rbm.rb +23 -14
- data/utils/enveomics/enveomics.R/DESCRIPTION +1 -1
- data/utils/enveomics/enveomics.R/R/barplot.R +2 -2
- metadata +9 -2
@@ -73,7 +73,7 @@
|
|
73
73
|
"help_arg": "",
|
74
74
|
"requires": [
|
75
75
|
{
|
76
|
-
|
76
|
+
"perl_lib": "Bio::AlignIO"
|
77
77
|
}
|
78
78
|
],
|
79
79
|
"cite": [["Stajich et al, 2002, GRes",
|
@@ -200,61 +200,63 @@
|
|
200
200
|
"task": "Chao1.pl",
|
201
201
|
"description": ["Takes a table of OTU abundance in one or more samples",
|
202
202
|
"and calculates the chao1 index (with 95% Confidence Interval) for",
|
203
|
-
|
204
|
-
|
203
|
+
"each sample. To use it with Qiime OTU Tables, run it ignoring 1",
|
204
|
+
"left column and with header."],
|
205
|
+
"cite": [["Chao, 1984, Scandinavian J Stat",
|
206
|
+
"http://www.jstor.org/stable/4615964"]],
|
205
207
|
"see_also": ["AlphaDiversity.pl"],
|
206
208
|
"help_arg": "--help",
|
207
209
|
"options": [
|
208
210
|
{
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
211
|
+
"name": "Input file",
|
212
|
+
"opt": "-i",
|
213
|
+
"arg": "in_file",
|
214
|
+
"mandatory": true,
|
215
|
+
"description": "Input table (columns:samples, rows:OTUs)."
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"name": "Rows",
|
219
|
+
"opt": "-r",
|
220
|
+
"arg": "integer",
|
221
|
+
"default": 0,
|
222
|
+
"description": "Number of rows to ignore."
|
223
|
+
},
|
224
|
+
{
|
225
|
+
"name": "Left columns to ignore",
|
226
|
+
"opt": "-c",
|
227
|
+
"arg": "integer",
|
228
|
+
"default": 0,
|
229
|
+
"description": "Number of columns to ignore."
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"name": "Right columns to ignore",
|
233
|
+
"opt": "-C",
|
234
|
+
"arg": "integer",
|
235
|
+
"default": 0,
|
236
|
+
"description": "Number of columns to ignore at the end."
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"name": "Delimiter",
|
240
|
+
"opt": "-d",
|
241
|
+
"arg": "string",
|
242
|
+
"default": "\\t",
|
243
|
+
"description": "Delimiter between columns.",
|
244
|
+
"note": ["Supported escaped characters are: \\t (tabulation),",
|
245
|
+
"and \\0 (null bit)."]
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"name": "Header",
|
249
|
+
"opt": "-h",
|
250
|
+
"description": ["If set, the first row is assumed to have the names",
|
251
|
+
"of the samples."]
|
252
|
+
},
|
253
|
+
">",
|
254
|
+
{
|
255
|
+
"arg": "out_file",
|
256
|
+
"mandatory": true,
|
257
|
+
"description": ["Chao1 index and 95% CI bounds for each sample, in",
|
258
|
+
"tab-delimited format."]
|
259
|
+
}
|
258
260
|
]
|
259
261
|
},
|
260
262
|
{
|
@@ -264,45 +266,45 @@
|
|
264
266
|
"help_arg": "--help",
|
265
267
|
"options": [
|
266
268
|
{
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
269
|
+
"opt": "--table",
|
270
|
+
"arg": "in_file",
|
271
|
+
"mandatory": true,
|
272
|
+
"description": ["Input table containing the states (columns) per",
|
273
|
+
"object (row). It must be tab-delimited and with row and column",
|
274
|
+
"names."]
|
275
|
+
},
|
276
|
+
{
|
277
|
+
"opt": "--key",
|
278
|
+
"arg": "in_file",
|
279
|
+
"mandatory": true,
|
280
|
+
"description": ["Input table containing the dychotomous key in",
|
281
|
+
"linked style, defined in four columns (can contain #-lead comment",
|
282
|
+
"lines): (1) ID of the step, typically a sequential integer. (2)",
|
283
|
+
"Name of character to evaluate. Must coincide with the -t headers.",
|
284
|
+
"(3) First character decision (see below). (4) Second character",
|
285
|
+
"decision (see below).\nA character decision must be formated as:",
|
286
|
+
"state (must coincide with the values in -t), colon (:), step to",
|
287
|
+
"follow. If the state is * (star) any state triggers the decision",
|
288
|
+
"(this should be the norm in column 4). The step to follow should",
|
289
|
+
"be a step ID in square brackets, or the name of the",
|
290
|
+
"classification."]
|
291
|
+
},
|
292
|
+
{
|
293
|
+
"opt": "--classification",
|
294
|
+
"arg": "out_file",
|
295
|
+
"description": ["Two-column table with the classification of the",
|
296
|
+
"input objects."]
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"opt": "--newick",
|
300
|
+
"arg": "out_file",
|
301
|
+
"description": ["Tree containing all the classified objects. This",
|
302
|
+
"only makes sense for synoptic keys."]
|
303
|
+
},
|
304
|
+
{
|
305
|
+
"opt": "--quiet",
|
306
|
+
"description": "Run quietly (no STDERR output)."
|
307
|
+
}
|
306
308
|
]
|
307
309
|
},
|
308
310
|
{
|
@@ -311,157 +313,157 @@
|
|
311
313
|
"help_arg": "--help",
|
312
314
|
"options": [
|
313
315
|
{
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
316
|
+
"opt": "--genbank",
|
317
|
+
"arg": "in_file",
|
318
|
+
"mandatory": true,
|
319
|
+
"description": "Input GenBank file."
|
320
|
+
},
|
321
|
+
{
|
322
|
+
"opt": "--table",
|
323
|
+
"arg": "in_file",
|
324
|
+
"mandatory": true,
|
325
|
+
"description": ["Input file containing the annotations. It must be a",
|
326
|
+
"tab-delimited raw table including a header row with the names of",
|
327
|
+
"the fields."]
|
328
|
+
},
|
329
|
+
{
|
330
|
+
"opt": "--out",
|
331
|
+
"arg": "out_file",
|
332
|
+
"mandatory": true,
|
333
|
+
"description": "Output file containing the annotated GenBank."
|
334
|
+
},
|
335
|
+
{
|
336
|
+
"opt": "--key",
|
337
|
+
"arg": "integer",
|
338
|
+
"default": 1,
|
339
|
+
"description": "Key of the column to use as identifier."
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"opt": "--split",
|
343
|
+
"arg": "string",
|
344
|
+
"default": "#",
|
345
|
+
"description": ["String that separates multiple entries in the",
|
346
|
+
"annotation features."]
|
347
|
+
},
|
348
|
+
{
|
349
|
+
"opt": "--quiet",
|
350
|
+
"description": "Run quietly (no STDERR output)."
|
351
|
+
}
|
350
352
|
]
|
351
353
|
},
|
352
354
|
{
|
353
355
|
"task": "HMM.essential.rb",
|
354
356
|
"description": ["Finds and extracts a collection of essential proteins",
|
355
357
|
"suitable for genome completeness evaluation and phylogenetic",
|
356
|
-
|
358
|
+
"analyses in Archaea and Bacteria."],
|
357
359
|
"warn": ["Most complete bacterial genomes contain only 106/111 genes in",
|
358
360
|
"this collection, therefore producing a completeness of 95.5%, and",
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
361
|
+
"most archaeal genomes only contain 26/111 genes, producing a",
|
362
|
+
"completeness of 23.4%. Use the options --bacteria and/or --archaea to",
|
363
|
+
"ignore models often missing in one or both domains. Note that even",
|
364
|
+
"with these options, some complete archaeal genomes result in very low",
|
365
|
+
"values of completeness (e.g., Nanoarchaeum equitans returns 88.5%)."],
|
364
366
|
"help_arg": "--help",
|
365
367
|
"requires": [
|
366
368
|
{
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
369
|
+
"description": "HMMer 3.0+",
|
370
|
+
"test": "hmmsearch -h",
|
371
|
+
"source_url": "http://hmmer.janelia.org/software"
|
372
|
+
}
|
371
373
|
],
|
372
374
|
"cite": [["Eddy, 2011, PLoS CB",
|
373
375
|
"http://dx.doi.org/10.1371/journal.pcbi.1002195"]],
|
374
376
|
"options": [
|
375
377
|
{
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
378
|
+
"name": "Input file",
|
379
|
+
"opt": "--in",
|
380
|
+
"arg": "in_file",
|
381
|
+
"mandatory": true,
|
382
|
+
"description": "FastA file containing all the proteins in the genome."
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"name": "Output file",
|
386
|
+
"opt": "--out",
|
387
|
+
"arg": "out_file",
|
388
|
+
"description": ["FastA file with the translated essential genes. By",
|
389
|
+
"default the file is not produced."]
|
390
|
+
},
|
391
|
+
{
|
392
|
+
"opt": "--per-model",
|
393
|
+
"arg": "out_file",
|
394
|
+
"description": ["Prefix of translated genes in independent files",
|
395
|
+
"with the name of the model appended. By default files are not",
|
396
|
+
"produced."]
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"opt": "--report",
|
400
|
+
"arg": "out_file",
|
401
|
+
"description": ["Path to the report file. By default, the report is",
|
402
|
+
"sent to the STDOUT."]
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"opt": "--bacteria",
|
406
|
+
"description": "If set, ignores models typically missing in Bacteria."
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"opt": "--archaea",
|
410
|
+
"description": "If set, ignores models typically missing in Archaea."
|
411
|
+
},
|
412
|
+
{
|
413
|
+
"opt": "--genome-eq",
|
414
|
+
"description": ["If set, ignores models not suitable for",
|
415
|
+
"genome-equivalents estimations. See Rodriguez-R et al, 2015, ISME",
|
416
|
+
"J 9(9):1928-1940."],
|
417
|
+
"source_url": "http://www.nature.com/ismej/journal/vaop/ncurrent/full/ismej20155a.html"
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"opt": "--rename",
|
421
|
+
"arg": "string",
|
422
|
+
"description": ["If set, renames the sequences with the string",
|
423
|
+
"provided and appends it with pipe (|) and the gene name (except",
|
424
|
+
"in --per-model files)."]
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"opt": "--no-stats",
|
428
|
+
"description": ["If set, no statistics are reported on genome",
|
429
|
+
"evaluation."]
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"opt": "--no-genes",
|
433
|
+
"description": ["If set, statistics won't include the lists of",
|
434
|
+
"missing/multi-copy genes."]
|
435
|
+
},
|
436
|
+
{
|
437
|
+
"opt": "--metagenome",
|
438
|
+
"description": ["If set, it allows for multiple copies of each gene",
|
439
|
+
"and turns on metagenomic report mode."]
|
440
|
+
},
|
441
|
+
{
|
442
|
+
"opt": "--list-models",
|
443
|
+
"description": ["If set, it only lists the models and exits.",
|
444
|
+
"Compatible with 'Archaea', 'Bacteria', 'Genome eq', and 'Quiet';",
|
445
|
+
"ignores all other parameters."]
|
446
|
+
},
|
447
|
+
{
|
448
|
+
"opt": "--bin",
|
449
|
+
"arg": "in_dir",
|
450
|
+
"description": "Directory containing the binaries of HMMer 3.0+."
|
451
|
+
},
|
452
|
+
{
|
453
|
+
"opt": "--model-file",
|
454
|
+
"arg": "in_file",
|
455
|
+
"description": "External file containing models to search."
|
456
|
+
},
|
457
|
+
{
|
458
|
+
"opt": "--threads",
|
459
|
+
"arg": "integer",
|
460
|
+
"default": 2,
|
461
|
+
"description": "Number of parallel threads to be used."
|
462
|
+
},
|
463
|
+
{
|
464
|
+
"opt": "--quiet",
|
465
|
+
"description": "Run quietly (no STDERR output)."
|
466
|
+
}
|
465
467
|
]
|
466
468
|
},
|
467
469
|
{
|
@@ -471,45 +473,45 @@
|
|
471
473
|
"help_arg": "--help",
|
472
474
|
"options": [
|
473
475
|
{
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
476
|
+
"opt": "--all-evalue",
|
477
|
+
"arg": "float",
|
478
|
+
"description": "Maximum e-value of sequence to report result."
|
479
|
+
},
|
480
|
+
{
|
481
|
+
"opt": "--all-score",
|
482
|
+
"arg": "float",
|
483
|
+
"description": "Minimum score of sequence to report result."
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"opt": "--best-evalue",
|
487
|
+
"arg": "float",
|
488
|
+
"description": "Maximum e-value of best domain to report result."
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"opt": "--best-score",
|
492
|
+
"arg": "float",
|
493
|
+
"description": "Minimum score of best domain to report result."
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"opt": "--no-model",
|
497
|
+
"description": "Do not include the query model in the output list."
|
498
|
+
},
|
499
|
+
{
|
500
|
+
"opt": "--quiet",
|
501
|
+
"description": "Run quietly."
|
502
|
+
},
|
503
|
+
"<",
|
504
|
+
{
|
505
|
+
"arg": "in_file",
|
506
|
+
"mandatory": true,
|
507
|
+
"description": "Input HMMsearch text file."
|
508
|
+
},
|
509
|
+
">",
|
510
|
+
{
|
511
|
+
"arg": "out_file",
|
512
|
+
"mandatory": true,
|
513
|
+
"description": "Output list of IDs."
|
514
|
+
}
|
513
515
|
]
|
514
516
|
},
|
515
517
|
{
|
@@ -520,119 +522,119 @@
|
|
520
522
|
"help_arg": "--help",
|
521
523
|
"options": [
|
522
524
|
{
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
525
|
+
"name": "Input file",
|
526
|
+
"opt": "--in",
|
527
|
+
"arg": "in_file",
|
528
|
+
"mandatory": true,
|
529
|
+
"description": ".jplace input file containing the read placement."
|
530
|
+
},
|
531
|
+
{
|
532
|
+
"name": "Node",
|
533
|
+
"opt": "--node",
|
534
|
+
"arg": "string",
|
535
|
+
"mandatory": true,
|
536
|
+
"description": ["Index (number in curly brackets) of the node to",
|
537
|
+
"which distances should be measured."]
|
538
|
+
},
|
539
|
+
{
|
540
|
+
"name": "Output file",
|
541
|
+
"opt": "--out",
|
542
|
+
"arg": "out_file",
|
543
|
+
"mandatory": true,
|
544
|
+
"description": "Output file in tabular format."
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"opt": "--in-node",
|
548
|
+
"arg": "string",
|
549
|
+
"description": ["Report only reads placed at this node or it's",
|
550
|
+
"children."]
|
551
|
+
},
|
552
|
+
{
|
553
|
+
"opt": "--quiet",
|
554
|
+
"description": "Run quietly (no STDERR output)."
|
555
|
+
}
|
554
556
|
]
|
555
557
|
},
|
556
558
|
{
|
557
559
|
"task": "JPlace.to_iToL.rb",
|
558
560
|
"description": ["Generates iToL-compatible files from a .jplace file",
|
559
561
|
"(produced by RAxML's EPA or pplacer), that can be used to draw",
|
560
|
-
|
562
|
+
"pie-charts in the nodes of the reference tree."],
|
561
563
|
"requires": [ { "ruby_gem": "json" } ],
|
562
564
|
"help_arg": "--help",
|
563
565
|
"options": [
|
564
566
|
{
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
567
|
+
"name": "Input file",
|
568
|
+
"opt": "--in",
|
569
|
+
"arg": "in_file",
|
570
|
+
"mandatory": true,
|
571
|
+
"description": ".jplace input file containing the read placement."
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"name": "Out base",
|
575
|
+
"opt": "--out",
|
576
|
+
"arg": "out_file",
|
577
|
+
"mandatory": true,
|
578
|
+
"description": "Base of the output files."
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"opt": "--unique",
|
582
|
+
"arg": "string",
|
583
|
+
"description": ["Name of the dataset (if only one is used).",
|
584
|
+
"Conflicts with 'Regex' and 'Separator'."]
|
585
|
+
},
|
586
|
+
{
|
587
|
+
"opt": "--regex",
|
588
|
+
"arg": "string",
|
589
|
+
"description": ["Regular expression capturing the sample ID (named",
|
590
|
+
"dataset) in read names. By default: '^(?<dataset>.+?):.*'.",
|
591
|
+
"Conflicts with 'Separator'."]
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"opt": "--separator",
|
595
|
+
"arg": "string",
|
596
|
+
"description": ["String separating the dataset name and the rest of",
|
597
|
+
"the read name. It assumes that the read name starts by the",
|
598
|
+
"dataset name. Conflicts with 'Regex'."]
|
599
|
+
},
|
600
|
+
{
|
601
|
+
"opt": "--metadata",
|
602
|
+
"arg": "in_file",
|
603
|
+
"description": ["Datasets metadata in tab-delimited format with a",
|
604
|
+
"header row. Valid headers: name (required), color (in Hex),",
|
605
|
+
"size (# reads), norm (any float)."]
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"opt": "--norm",
|
609
|
+
"arg": "string",
|
610
|
+
"description": ["Normalization strategy. Must be one of:\n",
|
611
|
+
"none: Direct read counts are reported without normalization.\n",
|
612
|
+
"count (default): The counts are normalized (divided) by the total",
|
613
|
+
"counts per dataset.\n",
|
614
|
+
"size: The counts are normalized (divided) by the size column in",
|
615
|
+
"metadata (must be integer).\n",
|
616
|
+
"norm: The counts are normalized (divided) by the norm column in",
|
617
|
+
"metadata (can be any float)."]
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"opt": "--old-itol",
|
621
|
+
"description": ["Generate output file using the old iToL format",
|
622
|
+
" (pre v3.0)."]
|
623
|
+
},
|
624
|
+
{
|
625
|
+
"opt": "--collapse",
|
626
|
+
"arg": "in_file",
|
627
|
+
"description": "Internal nodes to collapse (requires rootted tree)."
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"opt": "--area",
|
631
|
+
"description": ["If set, the area of the pies is proportional to the",
|
632
|
+
"placements. Otherwise, the radius is."]
|
633
|
+
},
|
634
|
+
{
|
635
|
+
"opt": "--quiet",
|
636
|
+
"description": "Run quietly (no STDERR output)."
|
637
|
+
}
|
636
638
|
]
|
637
639
|
},
|
638
640
|
{
|
@@ -641,28 +643,28 @@
|
|
641
643
|
"help_arg": "",
|
642
644
|
"options": [
|
643
645
|
{
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
646
|
+
"name": "MyTaxa output",
|
647
|
+
"arg": "in_file",
|
648
|
+
"mandatory": true,
|
649
|
+
"description": "Classification file generated by MyTaxa."
|
650
|
+
},
|
651
|
+
{
|
652
|
+
"name": "Taxon",
|
653
|
+
"arg": "string",
|
654
|
+
"mandatory": true,
|
655
|
+
"description": "Taxon to look for."
|
656
|
+
},
|
657
|
+
{
|
658
|
+
"name": "Rank",
|
659
|
+
"arg": "string",
|
660
|
+
"description": "Rank of taxon (optional). By default: any rank."
|
661
|
+
},
|
662
|
+
">",
|
663
|
+
{
|
664
|
+
"arg": "out_file",
|
665
|
+
"mandatory": true,
|
666
|
+
"description": "List of fragment IDs."
|
667
|
+
}
|
666
668
|
]
|
667
669
|
},
|
668
670
|
{
|
@@ -672,22 +674,22 @@
|
|
672
674
|
"help_arg": "--help",
|
673
675
|
"options": [
|
674
676
|
{
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
677
|
+
"name": "MyTaxa",
|
678
|
+
"opt": "--mytaxa",
|
679
|
+
"arg": "in_file",
|
680
|
+
"mandatory": true,
|
681
|
+
"description": "Input MyTaxa file."
|
682
|
+
},
|
683
|
+
{
|
684
|
+
"opt": "--rank",
|
685
|
+
"arg": "string",
|
686
|
+
"default": "genus",
|
687
|
+
"description": "Taxonomic rank."
|
688
|
+
},
|
689
|
+
{
|
690
|
+
"opt": "--quiet",
|
691
|
+
"description": "Run quietly."
|
692
|
+
}
|
691
693
|
]
|
692
694
|
},
|
693
695
|
{
|
@@ -697,49 +699,49 @@
|
|
697
699
|
"help_arg": "--help",
|
698
700
|
"options": [
|
699
701
|
{
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
702
|
+
"opt": "--silvaranks",
|
703
|
+
"arg": "in_file",
|
704
|
+
"mandatory": true,
|
705
|
+
"description": ["Input Silva ranks file (e.g.,",
|
706
|
+
"tax_ranks_ssu_115.txt)."],
|
707
|
+
"source_url": "https://www.arb-silva.de/no_cache/download/archive/release_115/Exports/"
|
708
|
+
},
|
709
|
+
{
|
710
|
+
"opt": "--silvaref",
|
711
|
+
"arg": "in_file",
|
712
|
+
"mandatory": true,
|
713
|
+
"description": ["Input Silva ref alignment file (e.g.,",
|
714
|
+
"SSURef_NR99_115_tax_silva_full_align_trunc.fasta)."],
|
715
|
+
"source_url": "https://www.arb-silva.de/no_cache/download/archive/release_115/Exports/"
|
716
|
+
},
|
717
|
+
{
|
718
|
+
"opt": "--patch",
|
719
|
+
"arg": "in_file",
|
720
|
+
"description": ["If passed, it replaces the paths specified in the",
|
721
|
+
"patch."],
|
722
|
+
"source_url": "http://enve-omics.ce.gatech.edu/data/public_misc/patch_Silva_SSU_r115.txt"
|
723
|
+
},
|
724
|
+
{
|
725
|
+
"opt": "--seqinfo",
|
726
|
+
"arg": "out_file",
|
727
|
+
"description": ["If passed, it creates a CSV seq-info file",
|
728
|
+
"compatible with taxtastic."]
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"opt": "--taxfile",
|
732
|
+
"arg": "out_file",
|
733
|
+
"description": "If passed, it creates a simple TSV taxonomy file."
|
734
|
+
},
|
735
|
+
{
|
736
|
+
"opt": "--ncbi",
|
737
|
+
"arg": "out_dir",
|
738
|
+
"description": ["If passed, output folder for the NCBI dump files",
|
739
|
+
"(e.g., taxdmp)."]
|
740
|
+
},
|
741
|
+
{
|
742
|
+
"opt": "--warns",
|
743
|
+
"description": "Verbously display warnings."
|
744
|
+
}
|
743
745
|
]
|
744
746
|
}
|
745
747
|
]
|