shenlab-sinai / ngsplot

Quick mining and visualization of NGS data by integrating genomic databases
Other
252 stars 65 forks source link

draw multiplot of each group #88

Open neptuneyt opened 5 years ago

neptuneyt commented 5 years ago

I have two group control:c1.bam\c2.bam\c3.bam and case:t1.bam\t2.bam\t3.bam So how to make configure file,it appears not work as follows: c1.bam:c2.bam:3.bam -1 control t1.bam:2.bam:3.bam -1 case

bounlu commented 4 years ago

I think you can't collapse replicates as 1 group but you can compare them in pairwise manner like this:

t1.bam:c1.bam
t2.bam:c2.bam
t3.bam:c3.bam
t1.bam:c2.bam
t1.bam:c3.bam
t2.bam:c1.bam
t2.bam:c3.bam
t3.bam:c1.bam
t3.bam:c2.bam

or you can merge them first by yourself and then compare:

samtools merge t.bam t1.bam t2.bam t3.bam
samtools merge c.bam c1.bam c2.bam c3.bam

t.bam:c.bam