Use when profiling nucleotide content (AT/GC percentages, base counts) of genomic intervals against a FASTA reference.
nucBed -fi reference.fa -bed intervals.bed [options]/home/vimalinx/miniforge3/envs/bio/bin/nucBedreferences/help.md-seq.-pattern, optionally case-insensitive via -C.# 1) Basic nucleotide composition over intervals
nucBed \
-fi reference.fa \
-bed peaks.bed
# 2) Strand-aware sequence composition with extracted sequence
nucBed \
-fi reference.fa \
-bed transcripts.bed \
-s \
-seq
# 3) Count motif occurrences inside intervals
nucBed \
-fi reference.fa \
-bed peaks.bed \
-pattern CG \
-C
-s only when the strand of the intervals matters for interpretation.-fi and -bed are both required.-pattern is case-sensitive unless -C is added.-fullHeader changes FASTA header matching behavior; use it only if the interval identifiers depend on full deflines rather than the first token.-seq increases output width substantially by appending extracted sequence text.-h for help; GNU-style --help / --version calls on these wrappers are noisy.