I have a TCGA CNV data:
chrom loc.start loc.end num.mark seg.mean
1 3218610 3586250 166 0.1112
which I would like to expand as:
chrom loc.start seg.mean
1 3218610 0.1112
1 3218611 0.1112
1 3218612 0.1112
...
...
1 3586250 0.1112
I can easily write a code to do this, but I am afraid I will miss the actual contig numbering. Any tools out there that can do this considering the genomic coordinate information? Thanks!
Awesome! Thank you very much.