struggling in understanding the meaning of a particular line from a script

Hi friends!!! I am a novice in R. My question may seem silly, but please bear with me. I am trying to understand some codes written with phyloseq package and struggling. Can you please tell me what exactly is meant by the following code and mainly its highlighted portion?
This code actually used to make a heatmap for microbial species relative abundance above a certain threshold limit.

Thanks and regards,

DC7

You did not provide any code.

oops!!! Out of my mind...

keepTaxa <- ((apply(otu_table(human_data.ra) >= 0.005,1,sum,na.rm=TRUE) > 2) | (apply(otu_table(human_data.ra) >= 0.01, 1, sum,na.rm=TRUE) > 0))

table(keepTaxa)

Thanks,
DC7

the key function in that appears to be otu_table so I would start by reading the documentation of phyloseq to understand what that would do. Then the rest is applying cut offs, apply is iteratively over the data and summing sum the results etc.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.