search for: all_gen

Displaying 2 results from an estimated 2 matches for "all_gen".

Did you mean: acl_get
2008 Feb 20
1
Problem Using the %in% command
Hello all! I have the following problem with the %in% command: 1) I have a data frame that consists of functions (rows) and genes (columns). The whole has been loaded with the "read.delim" command because of gene-duplications between the different rows. 2) Now, there is another data frame that contains all the genes (only the genes and without duplicates) from all the functions of
2012 Nov 08
1
Extract cell of many values from dataframe cells and sample from them.
...; What I'm trying to do is for each individual, extract the values in > the Effector genes cell to an object. As far as I can tell, > > Ind_Genes<-strsplit(as.character(inds2[1,4]),",") > > Will do this for the first individual or I can get all of them with > > All_Genes<-strsplit(as.character(inds2[,4]),",") > > What I then want to do is according to a generated number for each > individual... > > round(as.numeric(lapply(1:nrow(inds2),function(x) runif(1, min=10, max=50)))) > > ... sample that many genes from Ind_Genes and make...