2020-11-13 02:42:47 +00:00
name : bedtools_intersect
2021-07-07 08:44:09 +00:00
description : Allows one to screen for overlaps between two sets of genomic features.
2020-11-13 02:42:47 +00:00
keywords :
2022-02-15 11:15:27 +00:00
- bed
- intersect
2020-11-13 02:42:47 +00:00
tools :
2022-02-15 11:15:27 +00:00
- bedtools :
description : |
A set of tools for genomic analysis tasks, specifically enabling genome arithmetic (merge, count, complement) on various file types.
documentation : https://bedtools.readthedocs.io/en/latest/content/tools/intersect.html
licence : [ "MIT" ]
2020-11-13 02:42:47 +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 ]
- intervals1 :
type : file
description : BAM/BED/GFF/VCF
pattern : "*.{bam|bed|gff|vcf}"
- intervals2 :
type : file
description : BAM/BED/GFF/VCF
pattern : "*.{bam|bed|gff|vcf}"
- extension :
type : value
description : Extension of the output file. It is set by the user and corresponds to the file format which depends on arguments (e. g., ".bed", ".bam", ".txt", etc.).
2020-11-13 02:42:47 +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 ]
- intersect :
type : file
description : File containing the description of overlaps found between the two features
pattern : "*.${extension}"
- versions :
type : file
description : File containing software versions
pattern : "versions.yml"
2020-11-13 02:42:47 +00:00
authors :
2022-02-15 11:15:27 +00:00
- "@Emiller88"
- "@sruthipsuresh"
- "@drpatelh"
- "@sidorov-si"