Displaying 1 result from an estimated 1 matches for "chersmergegen".
Did you mean:
chersmergegenes
2010 Jan 21
1
Merging and extracting data from list
...0188976
1.47884233632064 2.88839131446868
chr1.cher3 1 1106364 1106864 human AB
ENSG00000162571 1.83795654418115 3.58404359147275
....
In the second list, I want to add a column with the gene description
(obtained from the first list). I used the following method:
chersMergeGenes <-
data.frame(chersList,description=hSgenes$description[match(chersList$features,
hSgenes$name)],symbol=hSgenes$symbol[match(chersList$features,
hSgenes$name)])
write.table(chersMergeGenes, row.names=F, quote=F, sep="\t",
file="chersMergeGenes.txt")
and it works only...