-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Support bedGraph output in only-depth:
This is basically perbase -z output without header and chromosomes sorted by lexographically.
This would allow to create bigwig files relatively easily. (naive sorting takes quite a while instead of reading the reads by chromosome in lexographical order).
perbase only-depth -z ${bam} | tail -n +2 | LC_COLLATE=C sort -k 1,1 -k 2,2n -k 3,3n > ${bedgraph}
bedGraphToBigWig ${bedgraph} ${chrom_sizes} ${bigwig}
bedGraph format:
http://genome.ucsc.edu/goldenPath/help/bedgraph.html
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request