Closed mgabriell1 closed 7 months ago
Comparing with the example data I have found the issue: treat
was derived directly from a phyloseq object leaving the sample_data
class in the resulting data.frame.
Removing it as below seemed to have solved the issue.
treat_ps <- treat
treat<-unclass(treat_ps)
treat<-as.data.frame(treat, row.names = row.names(treat_ps))
I guess this might still be useful to someone. Cheers
Had a similar issue with phyloseq <-> iCAMP and this fix worked! Thanks
Hi, Thanks for developing and maintaining this tool! I'm analyzing some of my own data using iCamp v1.6.5, but I'm having an issue with the command
icamp.bins
in step 10 which gives me the output below:I've looked at the source code and the issue refers to lines 210-212. This is the content of the different columns of the data.frame:
Where
mij.name
has length 1,trti.lev[j]
15 and bothc(procn, rownames(dpij))
andrbind(ptkij, dpij)
7.How can I solve this issue? Thanks for the help!