Hi everyone
I am trying to develop a workflow in R that lets me fetch Genbank sequences and then undertakes multiple sequence alignments.
Where I am at, is that I can now use efetch{reutils} to successfully fetch a sequence as a character, "efetch" object.
RABV.fa <- efetch("EU293116", db="nucleotide", retmode="text", rettype="fasta")
the next step is to convert this into a DNAStringSet from the Biostrings library
RABV2.fa <- readDNAStringSet(RABV.fa)
However, I get the error:
> Error in .normarg_input_filepath(filepath) : 'filepath' must be a character vector with no NAs
I have played around with the options for readDNAStringSet - but without success.
Thanks
PS. This question revisits one asked in BioStars a few years ago - R: Parsing Fasta From Strings In R? - but the solution offered by Michael Dondrup no longer works (for me at least. An alternative was provided by Neilfws, but this produces a SeqFastadna file.
Thanks Gungor
Both solutions worked - well done!
Regards