Mercurial > repos > kkonganti > cfsan_bettercallsal
diff 0.7.0/modules/kma/index/README.md @ 17:0e7a0053e4a6
planemo upload
author | kkonganti |
---|---|
date | Mon, 15 Jul 2024 10:42:02 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/0.7.0/modules/kma/index/README.md Mon Jul 15 10:42:02 2024 -0400 @@ -0,0 +1,86 @@ +# NextFlow DSL2 Module + +```bash +KMA_INDEX +``` + +## Description + +Run `kma index` alinger on input FASTA files. + +\ + + +### `input:` + +___ + +Type: `tuple` + +Takes in the following tuple of metadata (`meta`) and a FASTA file of type `path` (`fasta`) per sample (`id:`). + +Ex: + +```groovy +[ + [ + id: 'FAL00870', + ], + '/path/to/FAL00870_contigs.fasta' +] +``` + +\ + + +#### `meta` + +Type: Groovy Map + +A Groovy Map containing the metadata about the FASTA file. + +Ex: + +```groovy +[ + id: 'FAL00870' +] +``` + +\ + + +#### `fasta` + +Type: `path` + +NextFlow input type of `path` pointing to the FASTA file on which the `kma index` command should be run. + +\ + + +### `output:` + +___ + +Type: `tuple` + +Outputs a tuple of metadata (`meta` from `input:`) and a folder containing `kma index` files. + +\ + + +#### `idx` + +Type: `path` + +NextFlow output type of `path` pointing to the folder containing `kma index` files per sample (`id:`). + +\ + + +#### `versions` + +Type: `path` + +NextFlow output type of `path` pointing to the `.yml` file storing software versions for this process.