Hi! im trying to get a list of dna sequences of a list of genes that i got from a RNA-seq analysis. I was reading that fastaR could bring me a solution. Then i installed with this
install.packages("remotes")
remotes::install_github("sethiyap/fastaR")
and then performed this
genelist <- scan("genelist.txt", what="character", sep=NULL)
faSomeRecords(gene_list=genelist, fasta_file="genoma.fna", outfile="sc_myGenelist.fa")
but i get this error
faSomeRecords(gene_list=genelist, fasta_file="genoma.fna", outfile="sc_myGenelist.fa")
Error in faSomeRecords(gene_list = genelist, fasta_file = "genoma.fna", :
no se pudo encontrar la función "faSomeRecords"
it is in spanish but means something like "the function faSomeRecords was not found"
What is the problem???
Thank you all!!!
You installed those modules, but did you load them?
thank you for your answer, this is what i performed to laod the libraries
And i got the same error:
Thank you!
if i perform this
i get this
Thanks!