Hi All,
I wonder if someone can help me in explaining what to input on the -R <bed file>
argument of the code below?
computeMatrix scale-regions -S <bigwig file(s)> -R <bed file> -b 1000
what I did for example,
- I download the Reference Genome Annotation file(GFF3 format )from https://www.ncbi.nlm.nih.gov/projects/genome/guide/human/index.shtml and saved it hg38.GFF3
- Then, I converted the GFF3 to BED format and I saved it as hg38.bed
- For -S argument I inserted the list of my bigwig files that I generate from bam files
- Then I run the code below to generate the matrix
computeMatrix scale-regions -S 3.bigwig 13.bigwig 19.bigwig -R hg38.bed -b 1000 -p 12 --outFileNameMatrix matrix.mat.gz
I did not encounter errors but my machine is running since yesterday for almost 9 hrs and no result is produced. I would appreciate it if someone can comment on the input files.
Thank you!
As I recall it can take a long time for some of the deepTools tools. As long as the program is actually running i.e. you can see it using CPU cycles in
top
then you may need to be patient.GenoMax , Thanks a lot! I hope the code and the file hg38.bed are fine, right?