|
| 1 | +# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/meta-schema.json |
| 2 | +name: "octopusv_plot" |
| 3 | +description: "Plot structural variant statistics using octopusv stat output" |
| 4 | +keywords: |
| 5 | + - summary |
| 6 | + - structural variant |
| 7 | + - statistics |
| 8 | + - plot |
| 9 | +tools: |
| 10 | + - "octopusv": |
| 11 | + description: "End-to-end structural variant post-processing: standardize, merge, |
| 12 | + compare, and export SVs." |
| 13 | + homepage: "https://github.com/ylab-hi/OctopuSV" |
| 14 | + documentation: "https://github.com/ylab-hi/OctopuSV" |
| 15 | + tool_dev_url: "https://github.com/ylab-hi/octopusV" |
| 16 | + doi: "10.1093/bioinformatics/btaf599" |
| 17 | + licence: |
| 18 | + - "MIT" |
| 19 | + identifier: "" |
| 20 | + |
| 21 | +input: |
| 22 | + - - meta: |
| 23 | + type: map |
| 24 | + description: | |
| 25 | + Groovy Map containing sample information |
| 26 | + e.g. `[ id:'sample1' ]` |
| 27 | + - txt: |
| 28 | + type: file |
| 29 | + description: OctopuSV stats text input |
| 30 | + pattern: "*.txt" |
| 31 | + ontologies: |
| 32 | + - edam: "http://edamontology.org/format_2330" # TXT |
| 33 | + |
| 34 | +output: |
| 35 | + sv_sizes_png: |
| 36 | + - - meta: |
| 37 | + type: map |
| 38 | + description: Sample information |
| 39 | + - ${prefix}_sv_sizes.png: |
| 40 | + type: file |
| 41 | + description: SV sizes plot (PNG) |
| 42 | + pattern: "*_sv_sizes.png" |
| 43 | + ontologies: |
| 44 | + - edam: "http://edamontology.org/format_3603" # PNG |
| 45 | + sv_sizes_svg: |
| 46 | + - - meta: |
| 47 | + type: map |
| 48 | + description: Sample information |
| 49 | + - ${prefix}_sv_sizes.svg: |
| 50 | + type: file |
| 51 | + description: SV sizes plot (SVG) |
| 52 | + pattern: "*_sv_sizes.svg" |
| 53 | + ontologies: |
| 54 | + - edam: "http://edamontology.org/format_3604" # SVG |
| 55 | + sv_types_png: |
| 56 | + - - meta: |
| 57 | + type: map |
| 58 | + description: Sample information |
| 59 | + - ${prefix}_sv_types.png: |
| 60 | + type: file |
| 61 | + description: SV types plot (PNG) |
| 62 | + pattern: "*_sv_types.png" |
| 63 | + ontologies: |
| 64 | + - edam: "http://edamontology.org/format_3603" # PNG |
| 65 | + sv_types_svg: |
| 66 | + - - meta: |
| 67 | + type: map |
| 68 | + description: Sample information |
| 69 | + - ${prefix}_sv_types.svg: |
| 70 | + type: file |
| 71 | + description: SV types plot (SVG) |
| 72 | + pattern: "*_sv_types.svg" |
| 73 | + ontologies: |
| 74 | + - edam: "http://edamontology.org/format_3604" # SVG |
| 75 | + chromosome_distribution_png: |
| 76 | + - - meta: |
| 77 | + type: map |
| 78 | + description: Sample information |
| 79 | + - ${prefix}_chromosome_distribution.png: |
| 80 | + type: file |
| 81 | + description: Chromosome distribution plot of structural variants (PNG) |
| 82 | + pattern: "*_chromosome_distribution.png" |
| 83 | + ontologies: |
| 84 | + - edam: "http://edamontology.org/format_3603" # PNG |
| 85 | + chromosome_distribution_svg: |
| 86 | + - - meta: |
| 87 | + type: map |
| 88 | + description: Sample information |
| 89 | + - ${prefix}_chromosome_distribution.svg: |
| 90 | + type: file |
| 91 | + description: Chromosome distribution plot of structural variants (SVG) |
| 92 | + pattern: "*_chromosome_distribution.svg" |
| 93 | + ontologies: |
| 94 | + - edam: "http://edamontology.org/format_3604" # SVG |
| 95 | + versions_octopusv: |
| 96 | + - - ${task.process}: |
| 97 | + type: string |
| 98 | + description: The name of the process |
| 99 | + - octopusv: |
| 100 | + type: string |
| 101 | + description: The name of the tool |
| 102 | + - python -c "import importlib.metadata as m; print(m.version('octopusv'))": |
| 103 | + type: eval |
| 104 | + description: The expression to obtain the version of the tool |
| 105 | + |
| 106 | +topics: |
| 107 | + versions: |
| 108 | + - - ${task.process}: |
| 109 | + type: string |
| 110 | + description: The name of the process |
| 111 | + - octopusv: |
| 112 | + type: string |
| 113 | + description: The name of the tool |
| 114 | + - python -c "import importlib.metadata as m; print(m.version('octopusv'))": |
| 115 | + type: eval |
| 116 | + description: The expression to obtain the version of the tool |
| 117 | +authors: |
| 118 | + - "@manascripts" |
| 119 | +maintainers: |
| 120 | + - "@manascripts" |
0 commit comments