This is a test version of Biostars. For the public version, visit https://www.biostars.org.
what does the bed file in bedtools multicov command refer to ?

Dear bedtools users,

Hope everything is well with you

I want to use multicov mode to get reads count on my chip seq reads

according to beedtools documentation site I've sorted and then indexed the bam file

bedtools multicov [OPTIONS] -bams BAM1 BAM2 BAM3 ... BAMn -bed  <BED/GFF/VCF>

but i don't understand what does the bed file refer to ??

anybody who can help me, please?

thanks in advance

chip-seq beedtols multicov count read

I want to use multicov mode to get reads count on my chip seq reads

Where do you want to measure the read counts ?

i want to reads count histone modification in chip seq file REMC Dataset

The chip-seq data is usually represented as peaks of genomic coordinates in bed file format.

1 answer

It is the intervals to quantify over (= your peaks) in BED format.

I am a newbie in bioinformatic researches i can't understand your comment Can you explain more?

You really should get a solid background first. Check for example the vignette (the manual) of csaw which is a Bioconductor package to analyze ChIP-seq data. It offers a good introduction to ChIP-seq. Also spend time to get familiar with the common file formats (BED, BAM/SAM, GTF, FASTQ etc.). In this case the BED file is the template to count the reads so it is the parts of the genome that bedtools uses to count the reads. It does not automatically screen the entire genome but only the part you specify, e.g.:

chr1      1       450

would be an interval on chromosome 1 that could be a peak. Peaks come from peak calling. See e.g. the macs2 software package for peak calling.

Log in to answer this question.