|
| 1 | +# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/meta-schema.json |
| 2 | +name: "plastid_make_wiggle" |
| 3 | +description: Create wiggle or bedGraph files from alignment files after |
| 4 | + applying a read mapping rule (e.g. to map ribosome-protected footprints at |
| 5 | + their P-sites), for visualization in a genome browser |
| 6 | +keywords: |
| 7 | + - genomics |
| 8 | + - riboseq |
| 9 | + - psite |
| 10 | + - wiggle |
| 11 | + - bedgraph |
| 12 | +tools: |
| 13 | + - "plastid": |
| 14 | + description: "Nucleotide-resolution analysis of next-generation sequencing and genomics data" |
| 15 | + homepage: "https://github.com/joshuagryphon/plastid" |
| 16 | + documentation: "https://plastid.readthedocs.io/en/latest/" |
| 17 | + tool_dev_url: "https://github.com/joshuagryphon/plastid" |
| 18 | + doi: "http://dx.doi.org/10.1186/s12864-016-3278-x" |
| 19 | + licence: ["BSD-3-clause"] |
| 20 | + identifier: biotools:plastid |
| 21 | + |
| 22 | +input: |
| 23 | + - - meta: |
| 24 | + type: map |
| 25 | + description: | |
| 26 | + Groovy Map containing sample information |
| 27 | + e.g. `[ id:'sample1', single_end:false ]` |
| 28 | + - bam: |
| 29 | + type: file |
| 30 | + description: Genome BAM file |
| 31 | + pattern: "*.bam" |
| 32 | + ontologies: |
| 33 | + - edam: http://edamontology.org/format_2572 # BAM |
| 34 | + - - meta2: |
| 35 | + type: map |
| 36 | + description: | |
| 37 | + Groovy Map containing sample information |
| 38 | + e.g. `[ id:'sample1', single_end:false ]` |
| 39 | + - bam_index: |
| 40 | + type: file |
| 41 | + description: Genome BAM index file |
| 42 | + pattern: "*.bai" |
| 43 | + ontologies: |
| 44 | + - edam: http://edamontology.org/format_3327 # BAI |
| 45 | + - - meta3: |
| 46 | + type: map |
| 47 | + description: | |
| 48 | + Groovy Map containing sample information |
| 49 | + e.g. `[ id:'sample1', single_end:false ]` |
| 50 | + - p_offsets: |
| 51 | + type: file |
| 52 | + description: Selected p-site offset for each read length (output from plastid_psites) |
| 53 | + pattern: "*_p_offsets.txt" |
| 54 | + ontologies: [] |
| 55 | + - min_length: |
| 56 | + type: integer |
| 57 | + description: Minimum length of reads to consider |
| 58 | + - output_format: |
| 59 | + type: string |
| 60 | + description: `variable_step` or `bedgraph` |
| 61 | + - fiveprime_variable: |
| 62 | + type: boolean |
| 63 | + description: | |
| 64 | + Map read alignment to a variable offset from 5' position of read, with |
| 65 | + offset determined by read length |
| 66 | +output: |
| 67 | + tracks: |
| 68 | + - - meta: |
| 69 | + type: map |
| 70 | + description: | |
| 71 | + Groovy Map containing sample information |
| 72 | + e.g. `[ id:'sample1', single_end:false ]` |
| 73 | + - "*.${extension}": |
| 74 | + type: file |
| 75 | + description: wig/bedgraph tracks for forward and reverse strands |
| 76 | + pattern: "*.${extension}" |
| 77 | + ontologies: |
| 78 | + - edam: http://edamontology.org/format_3005 # wig |
| 79 | + - edam: http://edamontology.org/format_3583 # bedgraph |
| 80 | + versions: |
| 81 | + - versions.yml: |
| 82 | + type: file |
| 83 | + description: File containing software versions |
| 84 | + pattern: "versions.yml" |
| 85 | + ontologies: |
| 86 | + - edam: http://edamontology.org/format_3750 # YAML |
| 87 | +authors: |
| 88 | + - "@suhrig" |
| 89 | +maintainers: |
| 90 | + - "@suhrig" |
0 commit comments