Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

draw multiplot of each group #88

Open
neptuneyt opened this issue Aug 6, 2019 · 1 comment
Open

draw multiplot of each group #88

neptuneyt opened this issue Aug 6, 2019 · 1 comment

Comments

@neptuneyt
Copy link

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
Copy link

bounlu commented Dec 14, 2019

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants