vote up 0 vote down star

Hi,

I am working in R and have a DNA sequence for example:"cgtcgctgtttgtcaaagtcg...." that is possibly 1000+ letters long. However, I only want to look at letters 5 to 200, for example, and to define this subset of the string as a new object. I tried looking at the nchar function, but haven't found something that would do this.

THank you for your help.

Chris

flag
Thanks to everyone for your help. I greatly appreciate it. The substr function is very useful for me. – C_BioInfo Sep 30 at 13:17

4 Answers

vote up 7 vote down check

Try

substr("cgtcgctgtttgtcaa[...]", 5, 200)

See substr().

link|flag
THanks a lot! Chris – C_BioInfo Sep 30 at 13:22
vote up 0 vote down

Could you first just make a temporary string that's a trimmed from the long one?

link|flag
How do I trim it?....sorry for naive question (I am a new user) – C_BioInfo Sep 28 at 23:06
I think you would use substr – lod3n Sep 29 at 15:31
vote up 4 vote down

Use the substring function:

> tmp.string <- paste(LETTERS, collapse="")
> tmp.string <- substr(tmp.string, 4, 10)
> tmp.string
[1] "DEFGHIJ"
link|flag
vote up 1 vote down

See also the Bioconductor package Biostrings that is a good choice if you need to handle large biological sequences or set of sequences.

#source("http://bioconductor.org/biocLite.R");biocLite("Biostrings") 
library(Biostrings)
s <-paste(rep("gtcgctgtttgtcaac",20),collapse="")
d <- DNAString(s)
d[5:200]
as.character(d[5:200])
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.