Entering edit mode
12.5 years ago
wdaali99
▴
10
I have MeDIP-seq read counts that is just an array of numbers for each chromosome. For example chr1.txt is just a text file: 0 1 0 0 0 0 2 4 5 6 7 . ......
The resolution is 100 bp.
My question is how can I convert this text file to 3 tab delimited columns using Matlab:
chr start end read_counts
chr1 1 100 0
chr1 101 200 20
chr1 201 300 0
Thanks !
Amy-
Thank you so much!