I am using the following command to do depthofCoverage
java -jar /Software/GenomeAnalysisTK.jar -I test_R1R2aln.sam.readgrporg_ordered.bam --outputFormat csv -o test_Coverage_summary -T DepthOfCoverage -R /Run1/H.Sapiens/ucsc.hg19.fasta -L testexonbed.list
where -I test_R1R2aln.sam.readgrporg_ordered.bam is aligned R1 and R2 for all samples.
-L testexonbed.list is list of intervals
my output in Coverage_summary comes out like this
Locus Total_Depth Average_Depth_sample Depth_for_sample1
chrx:00004900 34 34.00 34
chrx:00004909 34 34.00 34
chrx:00004910 34 34.00 34
chrx:00004911 34 34.00 34
chrx:00004912 34 34.00 34
chrx:00004913 34 34.00 34
chrx:00004914 34 34.00 34
1- What does it mean
2- How do I know what sample this data is referring to
3- How do I know my forward and reverse reads
another output file sample_interval_summary looks like this
Target total_coverage average_coverage sample1_total_cvg sample1_mean_cvg sample1_granular_Q1 sample1_granular_median sample1_granular_Q3 sample1_%_above_15
chrx:00004900-00005100 9690 46.81 9690 46.81 51 51 51 100.0
chrx:00006100-00006200 7420 140.00 7420 140.00 141 141 141 100.0
chrx:00006800-00007000 10660 65.00 10660 65.00 5 87 87 75.0
chrx:00007000-00007200 23606 159.50 23606 159.50 149 153 153 100.0
java -jar /Software/GenomeAnalysisTK.jar -I test_R1R2aln.sam.readgrporg_ordered.bam --outputFormat csv -o test_Coverage_summary -T DepthOfCoverage -R /Run1/H.Sapiens/ucsc.hg19.fasta -L testexonbed.list
where -I test_R1R2aln.sam.readgrporg_ordered.bam is aligned R1 and R2 for all samples.
-L testexonbed.list is list of intervals
my output in Coverage_summary comes out like this
Locus Total_Depth Average_Depth_sample Depth_for_sample1
chrx:00004900 34 34.00 34
chrx:00004909 34 34.00 34
chrx:00004910 34 34.00 34
chrx:00004911 34 34.00 34
chrx:00004912 34 34.00 34
chrx:00004913 34 34.00 34
chrx:00004914 34 34.00 34
1- What does it mean
2- How do I know what sample this data is referring to
3- How do I know my forward and reverse reads
another output file sample_interval_summary looks like this
Target total_coverage average_coverage sample1_total_cvg sample1_mean_cvg sample1_granular_Q1 sample1_granular_median sample1_granular_Q3 sample1_%_above_15
chrx:00004900-00005100 9690 46.81 9690 46.81 51 51 51 100.0
chrx:00006100-00006200 7420 140.00 7420 140.00 141 141 141 100.0
chrx:00006800-00007000 10660 65.00 10660 65.00 5 87 87 75.0
chrx:00007000-00007200 23606 159.50 23606 159.50 149 153 153 100.0
Comment