2021-10-27 17:06:06 +00:00
|
|
|
name: fgbio_fastqtobam
|
|
|
|
description: |
|
2022-09-05 09:57:55 +00:00
|
|
|
Using the fgbio tools, converts FASTQ files sequenced into unaligned BAM or CRAM files possibly moving the UMI barcode into the RX field of the reads
|
2021-10-27 17:06:06 +00:00
|
|
|
keywords:
|
|
|
|
- fastqtobam
|
|
|
|
- fgbio
|
|
|
|
tools:
|
|
|
|
- fgbio:
|
|
|
|
description: A set of tools for working with genomic and high throughput sequencing data, including UMIs
|
|
|
|
homepage: http://fulcrumgenomics.github.io/fgbio/
|
|
|
|
documentation: http://fulcrumgenomics.github.io/fgbio/tools/latest/
|
|
|
|
tool_dev_url: https://github.com/fulcrumgenomics/fgbio
|
|
|
|
doi: ""
|
2022-02-15 11:15:27 +00:00
|
|
|
licence: ["MIT"]
|
2021-10-27 17:06:06 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
- reads:
|
|
|
|
type: file
|
|
|
|
description: pair of reads to be converted into BAM file
|
|
|
|
pattern: "*.{fastq.gz}"
|
|
|
|
|
|
|
|
output:
|
|
|
|
- meta:
|
|
|
|
type: map
|
|
|
|
description: |
|
|
|
|
Groovy Map containing sample information
|
|
|
|
e.g. [ id:'test', single_end:false ]
|
|
|
|
- version:
|
|
|
|
type: file
|
|
|
|
description: File containing software version
|
|
|
|
pattern: "*.{version.yml}"
|
2022-09-05 09:57:55 +00:00
|
|
|
- bam:
|
2021-10-27 17:06:06 +00:00
|
|
|
type: file
|
2022-09-05 09:57:55 +00:00
|
|
|
description: Unaligned, unsorted BAM file
|
2021-10-27 17:06:06 +00:00
|
|
|
pattern: "*.{bam}"
|
2022-09-05 09:57:55 +00:00
|
|
|
- cram:
|
|
|
|
type: file
|
|
|
|
description: Unaligned, unsorted CRAM file
|
|
|
|
pattern: "*.{cram}"
|
2021-10-27 17:06:06 +00:00
|
|
|
|
|
|
|
authors:
|
|
|
|
- "@lescai"
|
2022-09-05 09:57:55 +00:00
|
|
|
- "@matthdsm"
|