search for: splc2

Displaying 1 result from an estimated 1 matches for "splc2".

Did you mean: spec2
2011 Aug 10
2
Loops for repetitive task
...##################Code############################### chr2.data<-read.table(file="chr2.out.txt", header=F) colnames(chr2.data)<-c("chr","start","end","base1","base2","totalreads","methylation","strand") splc2<-split(chr2.data, paste(chr2.data$chr)) chr2.df<-as.data.frame(t(sapply(splc2, function(x) list(TR=NROW(x[['totalreads']]), RG1=sum(x[['totalreads']]>=1), percent=(NROW(x[['totalreads']]>=1)/sum(x[['totalreads']])))))) chr2.df.summ<-as.data.frame(t(...