ここでRの私の問題:
mtable <- read.table(paste(".folder_1362704682.4574","/groups.txt",sep=""),sep="\t",comment.char='',skip=0, header=TRUE, fill=TRUE,check.names=FALSE)
最初のフォルダ部分またはpaste()は通常、デバッグ目的->静的のためにvarでラップされます。
私はいつもメッセージを受け取ります:
Error in read.table(paste(".frunc_1362704682.4574", "/groups.txt", sep = ""), :
duplicate 'row.names' are not allowed
しかし、このヘッダーのあるファイルを見ると、次のようになります。
root_node_name node_name node_id #genes_in_root_node #genes_in_node #genes_with_variable=1_in_root_node #genes_with_variable=1_in_node raw_p_underrepresentation_of_variable=1 raw_p_overrepresentation_ of_variable=1 FWER_underrepresentation FWER_overrepresentation FDR_underrepresentation FDR_overrepresentation
私は重複を見ることができません..:(私は試してみるべきだということについて別の議論で読んだ:
mtable <- read.table(paste(".frunc_1362704682.4574","/groups.txt",sep=""),sep="\t",comment.char='',skip=0, header=TRUE, fill=TRUE,check.names=FALSE,**row.names=NULL**)
これはうまく機能しますが、その後、すべての見出しが1列右にシフトされます。
> head(mtable, n=1)
row.names root_node_name node_name
1 molecular_function trans-hexaprenyltranstransferase activity GO:0000010
node_id #genes_in_root_node #genes_in_node
1 17668 2 2419
#genes_with_variable=1_in_root_node #genes_with_variable=1_in_node
1 0 0.74491
raw_p_underrepresentation_of_variable=1
1 1
raw_p_overrepresentation_of_variable=1 FWER_underrepresentation
1 1 1
FWER_overrepresentation FDR_underrepresentation FDR_overrepresentation
1
それを正しくするためのアイデアはありますか?:(
編集:
コメンテアが言ったように、これは主にthr行の問題です..私はそれがヘッダーから来ていると思ったので愚かです。しかし、私は行に名前を付けたくありません、それはそれらを簡単に読むべきです... oOはそれほど難しいことはできませんか?
ファイルの内容:
molecular_function trans-hexaprenyltranstransferase activity GO:0000010 17668 2 2419 0 0.74491 1 1 1 -1 -1
molecular_function single-stranded DNA specific endodeoxyribonuclease activity GO:0000014 17668 5 2419 0 0.478885 1 1 1 -1 -1
molecular_function lactase activity GO:0000016 17668 1 2419 0 0.863086 1 1 1 -1 -1
molecular_function alpha-1,3-mannosyltransferase activity GO:0000033 17668 3 2419 0 0.64291 1 1 1 -1 -1
molecular_function tRNA binding GO:0000049 17668 27 2419 7 0.975698 0.0663832 1 1 -1 -1
molecular_function fatty-acyl-CoA binding GO:0000062 17668 20 2419 6 0.986407 0.0460431 1 1 -1 -1
molecular_function L-ornithine transmembrane transporter activity GO:0000064 17668 1 2419 0 0.863086 1 1 1 -1 -1
molecular_function S-adenosylmethionine transmembrane transporter activity GO:0000095 17668 1 2419 0 0.863086 1 1 1 -1 -1