2021-10-23 16:30:10 +00:00
|
|
|
name: umitools_dedup
|
|
|
|
description: Deduplicate reads based on the mapping co-ordinate and the UMI attached to the read.
|
|
|
|
keywords:
|
2022-02-15 11:15:27 +00:00
|
|
|
- umitools
|
|
|
|
- deduplication
|
2021-10-23 16:30:10 +00:00
|
|
|
tools:
|
2022-02-15 11:15:27 +00:00
|
|
|
- umi_tools:
|
|
|
|
description: >
|
|
|
|
UMI-tools contains tools for dealing with Unique Molecular Identifiers (UMIs)/Random Molecular Tags (RMTs)
|
|
|
|
and single cell RNA-Seq cell barcodes
|
|
|
|
documentation: https://umi-tools.readthedocs.io/en/latest/
|
|
|
|
license: ["MIT"]
|
2021-10-23 16:30:10 +00:00
|
|
|
input:
|
2022-02-15 11:15:27 +00:00
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- bam:
|
|
|
|
type: file
|
|
|
|
description: |
|
|
|
|
BAM file containing reads to be deduplicated via UMIs.
|
|
|
|
pattern: "*.{bam}"
|
|
|
|
- bai:
|
|
|
|
type: file
|
|
|
|
description: |
|
|
|
|
BAM index files corresponding to the input BAM file.
|
|
|
|
pattern: "*.{bai}"
|
2021-10-23 16:30:10 +00:00
|
|
|
output:
|
2022-02-15 11:15:27 +00:00
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- bam:
|
|
|
|
type: file
|
|
|
|
description: BAM file with deduplicated UMIs.
|
|
|
|
pattern: "*.{bam}"
|
2022-03-18 20:21:41 +00:00
|
|
|
- tsv_edit_distance:
|
|
|
|
type: file
|
|
|
|
description: Reports the (binned) average edit distance between the UMIs at each position.
|
|
|
|
pattern: "*edit_distance.tsv"
|
|
|
|
- tsv_per_umi:
|
|
|
|
type: file
|
|
|
|
description: UMI-level summary statistics.
|
|
|
|
pattern: "*per_umi.tsv"
|
|
|
|
- tsv_umi_per_position:
|
|
|
|
type: file
|
|
|
|
description: Tabulates the counts for unique combinations of UMI and position.
|
|
|
|
pattern: "*per_position.tsv"
|
2022-02-15 11:15:27 +00:00
|
|
|
- versions:
|
|
|
|
type: file
|
|
|
|
description: File containing software versions
|
|
|
|
pattern: "versions.yml"
|
2021-10-23 16:30:10 +00:00
|
|
|
|
|
|
|
authors:
|
2022-02-15 11:15:27 +00:00
|
|
|
- "@drpatelh"
|
|
|
|
- "@grst"
|
|
|
|
- "@klkeys"
|