Description
Create adjacent or sliding windows across a genome or BED file.
This tool generates genomic windows either across entire chromosomes (using a genome file)
or within specific intervals (using a BED file). Windows can be fixed-size or variable-size,
and can be non-overlapping (adjacent) or overlapping (sliding). Useful for creating
genomic bins for analysis, tiling genomes, or generating sliding windows for statistics.
Type
bash_script
License
MIT
Keywords
Contributors
Run the following command to execute this component with Nextflow:
cat > params.yaml <<'EOM'
output: "$id.$key.output.bed"
id: "run"
publish_dir: "output/"
EOM
nextflow run https://packages.viash-hub.com/vsh/biobox.git \
-revision v0.4.1 \
-main-script target/nextflow/bedtools/bedtools_makewindows/main.nf \
-params-file params.yaml Name | Type & Properties |
|---|---|
--genome -g | file |
--input -b | file |
Name | Type & Properties |
|---|---|
--output | file required output |
Name | Type & Properties |
|---|---|
--window_size -w | integer |
--step_size -s | integer |
--num_windows -n | integer |
Name | Type & Properties |
|---|---|
--id_type -i | string |
--reverse | boolean_true |