I have 6 files where I have the number of reads mapping to each gene on chr22. and a a Rnagene file which has number of reads mapping every gene.
How do I create a tab delineated file contianing the number of reads mapping to each gene on chr22 using coverage bed ?
i did it using join but I am unable to add a header to the table
The
join
tool glues columns. You could use a different tool to write a header, such asawk
,echo
, Perl, Python, etc. What else have you tried?