Bam files are only available for some tissues for Chip-seq data. For others only SRA and bed files are available. I don't want to start from scratch with SRA files and do the pipeline all over again. I was wondering if someone has already done it or has successfully converted the tagalign or bed files to bam. Tagalign files don't have much information about mapping quality etc but the bedfiles seem to have some numbers along with read id I don't know what those numbers are but if anybody does do let me know. The bed files for unconsolidated epigenomes is available and looks something like this ;- ` chr1 10084 10283 62BU8AAXX110111:4:104:1337:6620 0 -
chr1 12881 13080 62BU8AAXX110111:4:72:15560:1099 0 -
chr1 16276 16475 62BU8AAXX110111:4:23:16833:6138 0 -
chr1 48005 48204 62BU8AAXX110111:4:108:5179:18053 0 -
` I am trying to do some comparisons with other data using csaw. Unfortunately csaw only takes bamfiles as input.
With bedToBam I need to specify a mapping quality as well thus I am confused as to what to do. Should I just use consolidated tagalign files which look something as given below and give each read a mapping quality > 10 with bedtobam. -Tagalign files. ` chr1 10153 10189 N 1000 -
chr1 10154 10190 N 1000 +
chr1 10156 10192 N 1000 -
chr1 10156 10192 N 1000 - ` Can someone let me know please!