由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Biology版 - A question about R language.
相关主题
Cre line to generate global knockoutGO analysis
master level bioinformatician at Dallas问几个十分十分基础的生物问题, 请好心人解释下。。。包子答谢
能用real time RT-PCR来比较同一细胞的不同gene的含量吗?How to compare three gene lists, each with expression value or relationship?
能用real time RT-PCR来比较同一细胞的不同gene的含量吗?用终端机 (Terminal) run Bioinformatics 程序 的好处
How to exactly define essential gene?Comment on the EST technology
hey here(ZZ) Two Charged with Stealing Genes From Harvard
NIH gene array bankRe: 谁说说什么场合用ortholog,什么场合用homolog?
请推荐一款text mining的工具Good stuff, not too late
相关话题的讨论汇总
话题: actb话题: genes话题: language话题: grep话题: question
进入Biology版参与讨论
1 (共1页)
m****n
发帖数: 1066
1
R language,windows XP
用 FILE menu的(source R code....)打开一个script(saved in C:///...My
Documents)
却总是出现错误信息,
Error in setwd(dirIn) : cannot change working directory
这个怎么回事?
最后我 open script,,, 然后run all 打开了脚本。
但是 source r code 为什么不行呢?
c******d
发帖数: 306
2
set ur work pathway to the folder where the source code is.
m****n
发帖数: 1066
3
Thanks.
m****n
发帖数: 1066
4
did not work.
Thanks.
Anyway, I can load scripts by other means.
l*h
发帖数: 4124
5
verify the directory exist, use full directory path. for example,
setwd("d:\\my_directory")

【在 m****n 的大作中提到】
: did not work.
: Thanks.
: Anyway, I can load scripts by other means.

k********e
发帖数: 448
6
还以为在统计版。。。
l*h
发帖数: 4124
7
or make sure "dirIn" is defined.

【在 m****n 的大作中提到】
: R language,windows XP
: 用 FILE menu的(source R code....)打开一个script(saved in C:///...My
: Documents)
: 却总是出现错误信息,
: Error in setwd(dirIn) : cannot change working directory
: 这个怎么回事?
: 最后我 open script,,, 然后run all 打开了脚本。
: 但是 source r code 为什么不行呢?

l*h
发帖数: 4124
8
看来原帖主想明白了
m****n
发帖数: 1066
9
Thanks, guys. Another question.
....怎么找exact match 呢?....
比如说1000个gene ID, 想找“ACTB", "LACTB"不算match。
# This is not working!!!
应该怎么找exact match呢?
c******d
发帖数: 306
10
suppose you have data set, named array.
you want to find all rows, which have gene ID="ACTB"
just array[geneID=="ACTB",]
相关主题
hey hereGO analysis
NIH gene array bank问几个十分十分基础的生物问题, 请好心人解释下。。。包子答谢
请推荐一款text mining的工具How to compare three gene lists, each with expression value or relationship?
进入Biology版参与讨论
m****n
发帖数: 1066
11
我还在入门阶段,
怎么用 grep 和 charmatch 拿到和array相同的结果呢?
Thanks.
c******d
发帖数: 306
12
没看到具体data,真的很难说.贴一个data的图片上来看看就一目了然了
l*********s
发帖数: 5409
13
能走出这么条非主流的转业本身就很有传奇色彩,Joe Wang值得我们骄傲
l*h
发帖数: 4124
14
grep 是直接搬来的Unix命令,看Unix/Linux里的解释更好懂

【在 m****n 的大作中提到】
: 我还在入门阶段,
: 怎么用 grep 和 charmatch 拿到和array相同的结果呢?
: Thanks.

m****n
发帖数: 1066
15
Thanks a lot.
m****n
发帖数: 1066
16
> genes<- c("ACTB","LACTB", "ACTBCC", "AC-TB", "ACTB$")
> grep("ACTB", genes)
[1] 1 2 3 5
> grep("^ACTB$", genes)
[1] 1
D******n
发帖数: 2836
17
grep(paste('^',Ctrl,'$',sep=''),genes)

ACTB

【在 m****n 的大作中提到】
: > genes<- c("ACTB","LACTB", "ACTBCC", "AC-TB", "ACTB$")
: > grep("ACTB", genes)
: [1] 1 2 3 5
: > grep("^ACTB$", genes)
: [1] 1

m****n
发帖数: 1066
18
so smart.
Thanks.
D******n
发帖数: 2836
19
u should have asked it in stat board.

【在 m****n 的大作中提到】
: so smart.
: Thanks.

l*******d
发帖数: 101
20
Alternatively,
> genes<- c("ACTB","LACTB", "ACTBCC", "AC-TB", "ACTB$")
> which (genes=="ACTB")
[1] 1
> Ctrl = "ACTB"
> which (genes==Ctrl)
[1] 1
m****n
发帖数: 1066
21
Thanks a lot.
我一直觉的生物系人才最多,所以在这里问。
1 (共1页)
进入Biology版参与讨论
相关主题
Good stuff, not too lateHow to exactly define essential gene?
Re: is anyone use RNAi? can be use for any gene?hey here
where to find map positionNIH gene array bank
Re: 果蝇有多少基因??请推荐一款text mining的工具
Cre line to generate global knockoutGO analysis
master level bioinformatician at Dallas问几个十分十分基础的生物问题, 请好心人解释下。。。包子答谢
能用real time RT-PCR来比较同一细胞的不同gene的含量吗?How to compare three gene lists, each with expression value or relationship?
能用real time RT-PCR来比较同一细胞的不同gene的含量吗?用终端机 (Terminal) run Bioinformatics 程序 的好处
相关话题的讨论汇总
话题: actb话题: genes话题: language话题: grep话题: question