Displaying 10 results from an estimated 10 matches for "operons".
Did you mean:
opterons
2010 May 25
4
R eat my data
HI, Dear R community,
My original file has 1932 lines, but when I read into R, it changed to 1068
lines, how comes?
cdu@nuuk:~/operon$ wc -l id_name_gh5.txt
1932 id_name_gh5.txt
> gene_name<-read.table("/home/cdu/operon/id_name_gh5.txt", sep="\t",
skip=0, header=F, fill=T)
> dim(gene_name)
[1] 1068 3
--
Sincerely,
Changbin
--
Changbin Du
DOE Joint Genome
2010 Sep 24
1
How to read this file into R.
Dear community,
I have one file named ca_boost_feature.txt,
Feature selection (Boosting:0.0025,5)!
H.2.C C.1.D C.3.R E.0.N C.2.S C.0.G H.3.G
log file: ep
If I want to use the second line of this file, how to read it into R?
varr<-read.table("/home/cdu/operon/carbonic/ca_boost_feature.txt", sep=" ",
skip=1, header=F, strip.white=TRUE, nrows=1)
Warning message:
In
2011 Jun 22
1
question about read.columns
HI, Dear R community,
I have a large data set names dd.txt, the columns are: there are 2402
variables.
a1, b1, ..z1, a11, b11, ...z11, a111, b111, ..z111..
IF I dont know the relative position of the columns, but I know I need the
following variables:
var<-c(a1, c1,a11,b11,f111)
Can I use read.columns to read the data into R?
I have tried the following codes, but it does not work
2008 Jul 24
2
Help with which()
Hi,
I'm using which to find the position of a value in my data table, and it is
returning the correct position and the position of another number that differs
by an extra decimal place. For example, when I do:
where1<-which(Operons==3573.1,arr.ind=TRUE)
it returns the position of that number and of 3573.15.
Is it possible to get the function to only return a position if the number
matches exactly?
Thanks,
-Nina
2010 Jun 02
1
how to label the som notes by the majority vote
HI, Dear R community,
I am using the following codes to do the som. I tried to label the notes by
the majority vote. either through mapping or prediction.
I attached my output, the left one dont have any labels in the note, the
right one has more than one label in each note. I need to have only one
label for each note either by majority vote or prediction.
Can anyone give some suggestions or
2008 May 19
0
[BioC] oligo ids
Thanks Sean!
Your reply was very helpful. I already got almost what I wanted. I have some
NA values but I will look if I can find them through bibliography or an
external tool.
Best Regards,
Eleni
On Mon, May 19, 2008 at 6:07 PM, Sean Davis <sdavis2@mail.nih.gov> wrote:
> On Mon, May 19, 2008 at 10:47 AM, Eleni Christodoulou
> <elenichri@gmail.com> wrote:
> > Dear list,
2012 Apr 14
0
Call for Participation: Cloud Futures 2012, Berkeley, CA (May 7-8)
*//*
*//*
*/Cloud Futures: Hot Topics in Research and Education/*
Berkeley, CA | May 7-8, 2012
http://research.microsoft.com/cloudfutures2012/
The Cloud Futures Workshop series brings together thought leaders from
academia, industry, and government to discuss the role of cloud
computing across a variety of research and educational areas---including
computer science, engineering, Earth
2012 Apr 14
0
Call for Participation: Cloud Futures 2012, Berkeley, CA (May 7-8)
*//*
*//*
*/Cloud Futures: Hot Topics in Research and Education/*
Berkeley, CA | May 7-8, 2012
http://research.microsoft.com/cloudfutures2012/
The Cloud Futures Workshop series brings together thought leaders from
academia, industry, and government to discuss the role of cloud
computing across a variety of research and educational areas---including
computer science, engineering, Earth
2007 Sep 11
4
Questions about the new idmap interface
Hi,
I tried to configure the new idmap interface. Currently without much success.
I have two samba domains, trusting each other. Each PDC using it's own LDAP
server. I tried
idmap domains = DOM1, DOM2
idmap config DOM1:default = yes
idmap config DOM1:backend = ldap
idmap config DOM1:ldap_base_dn = ou=Idmap,dc=dom1,dc=mydomain,dc=de
idmap config
2010 Nov 04
4
how to work with long vectors
HI, Dear R community,
I have one data set like this, What I want to do is to calculate the
cumulative coverage. The following codes works for small data set (#rows =
100), but when feed the whole data set, it still running after 24 hours.
Can someone give some suggestions for long vector?
id reads
Contig79:1 4
Contig79:2 8
Contig79:3 13
Contig79:4 14
Contig79:5 17