|
| 1 | +--- |
| 2 | +# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/meta-schema.json |
| 3 | +name: "autocycler_cluster" |
| 4 | +description: Cluster replicons in compressed assemblies with Autocycler. |
| 5 | +keywords: |
| 6 | + - autocycler |
| 7 | + - genome-assembly |
| 8 | + - clustering |
| 9 | + - long-read |
| 10 | +tools: |
| 11 | + - autocycler: |
| 12 | + description: "A tools for generating consensus long-read assemblies for bacterial genomes." |
| 13 | + homepage: "https://github.com/rrwick/Autocycler/wiki" |
| 14 | + documentation: "https://github.com/rrwick/Autocycler/wiki" |
| 15 | + tool_dev_url: "https://github.com/rrwick/Autocycler" |
| 16 | + doi: "10.1093/bioinformatics/btaf474" |
| 17 | + licence: ["GPL-3.0"] |
| 18 | + |
| 19 | +input: |
| 20 | + - - meta: |
| 21 | + type: map |
| 22 | + description: | |
| 23 | + Groovy Map containing sample information |
| 24 | + e.g. `[ id:'sample1' ]` |
| 25 | + - gfa: |
| 26 | + type: file |
| 27 | + description: | |
| 28 | + Assembly graph files produced by the compression step. |
| 29 | + pattern: "*/*.gfa" |
| 30 | + |
| 31 | +output: |
| 32 | + clusters: |
| 33 | + - - meta: |
| 34 | + type: map |
| 35 | + description: | |
| 36 | + Groovy Map containing sample information |
| 37 | + e.g. `[ id:'sample1' ]` |
| 38 | + - "clustering/qc_pass/*/*.gfa": |
| 39 | + type: file |
| 40 | + description: Aassembly graphs of clustered contigs. |
| 41 | + pattern: "clustering/qc_pass/*/*.gfa" |
| 42 | + ontologies: |
| 43 | + - edam: "http://edamontology.org/format_3975" #GFA1 |
| 44 | + clusterstats: |
| 45 | + - - meta: |
| 46 | + type: map |
| 47 | + description: | |
| 48 | + Groovy Map containing sample information |
| 49 | + e.g. `[ id:'sample1' ]` |
| 50 | + - "clustering/qc_pass/*/*.yaml": |
| 51 | + type: file |
| 52 | + description: Per-cluster metrics reported by Autocycler. |
| 53 | + pattern: "clustering/qc_pass/*/*.yaml" |
| 54 | + ontologies: |
| 55 | + - edam: "http://edamontology.org/format_3750" # YAML |
| 56 | + newick: |
| 57 | + - - meta: |
| 58 | + type: map |
| 59 | + description: | |
| 60 | + Groovy Map containing sample information |
| 61 | + e.g. `[ id:'sample1' ]` |
| 62 | + - "clustering/*.newick": |
| 63 | + type: file |
| 64 | + description: Newick tree relating contigs. |
| 65 | + pattern: "clustering/*.newick" |
| 66 | + tsv: |
| 67 | + - - meta: |
| 68 | + type: map |
| 69 | + description: | |
| 70 | + Groovy Map containing sample information |
| 71 | + e.g. `[ id:'sample1' ]` |
| 72 | + - "clustering/*.tsv": |
| 73 | + type: file |
| 74 | + description: Tabular summary of cluster relationships. |
| 75 | + pattern: "clustering/*.tsv" |
| 76 | + pairwisedistances: |
| 77 | + - - meta: |
| 78 | + type: map |
| 79 | + description: | |
| 80 | + Groovy Map containing sample information |
| 81 | + e.g. `[ id:'sample1' ]` |
| 82 | + - "clustering/*.phylip": |
| 83 | + type: file |
| 84 | + description: Pairwise distance matrix in PHYLIP format. |
| 85 | + pattern: "clustering/*.phylip" |
| 86 | + stats: |
| 87 | + - - meta: |
| 88 | + type: map |
| 89 | + description: | |
| 90 | + Groovy Map containing sample information |
| 91 | + e.g. `[ id:'sample1' ]` |
| 92 | + - "clustering/*.yaml": |
| 93 | + type: file |
| 94 | + description: Run-level statistics for the clustering step. |
| 95 | + pattern: "clustering/*.yaml" |
| 96 | + ontologies: |
| 97 | + - edam: "http://edamontology.org/format_3750" # YAML |
| 98 | + versions: |
| 99 | + - "versions.yml": |
| 100 | + type: file |
| 101 | + description: File containing software versions |
| 102 | + pattern: "versions.yml" |
| 103 | + ontologies: |
| 104 | + - edam: "http://edamontology.org/format_3750" # YAML |
| 105 | + |
| 106 | +authors: |
| 107 | + - "@dwells-eit" |
| 108 | +maintainers: |
| 109 | + - "@dwells-eit" |
0 commit comments