Entering edit mode
6.4 years ago
roy.granit
▴
890
This might be a very basic R question..
QDNAseq creates 'readCounts' R object which holds all of the samples, yet I wish to create a chart for each sample at a time
e.g. isobarPlot(readCounts)
But how do I include only a single sample in the plot and not all?
Thanks,
You could do
str(readCounts)
to see the structure of the object. You could post the output of that which may help. Once you identify which part ofreadCounts
contains each sample you should be able toisobarPlot(readCounts$<sample>)
Thanks, but the structure is not so simple and I'm not sure which are the parts that are required by the function to create the plot
P.S. I ended up simply creating a separate object for each sample :)