This is a test version of Biostars. For the public version, visit https://www.biostars.org.
import of kallisto file into R through IsoformswitchanalyzeR

Can anyone tell me the command for importing my kallisto file in R. I am new in this type of work so please suggest me. I use IsoformswitchanalyzeR to import it so please suggest through this command line .

rna-seq

1 answer

First hit on google: https://rdrr.io/bioc/IsoformSwitchAnalyzeR/man/importIsoformExpression.html

kallistoabundance <- importIsoformExpression(home/aclab/CircRNA/project/kallisto/1/1_AGTCAA_L001_R1_001.out/abundance.tsv ,(package="IsoformSwitchAnalyzeR")) this is correct or not plz tell me becoz it shows error .

shows error is most uninformative. Show it.

The following commands are i used but i didn't import my file in R please suggest me how i import it.

kallistoQuant <- importIsoformExpression( <-"/home/lab/RNA/kallisto/1/1_AGTCAA_L002_R1_005/" ,(package = " IsoformSwitchAnalyzeR ")) Error: unexpected assignment in "kallistoQuant <- importIsoformExpression( <-"

kallistoQuant <- importIsoformExpression("/home/lab/RNA/kallisto/1/1_AGTCAA_L002_R1_005/" ,(package = " IsoformSwitchAnalyzeR ")) Error in importIsoformExpression("/home/lab/RNA//kallisto/1/1_AGTCAA_L002_R1_005.out/", : Only one of the the 'parentDir' and 'sampleVector' argument can be used.

kallistoQuant <- importIsoformExpression(/home/lab/RNA/kallisto/1/1_AGTCAA_L002_R1_005/ ,(package = " IsoformSwitchAnalyzeR ")) Error: unexpected '/' in "kallistoQuant <- importIsoformExpression(/"

kallistoQuant <- importIsoformExpression(home/lab/RNA/kallisto/1/1_AGTCAA_L002_R1_005 ,(package = " IsoformSwitchAnalyzeR ")) Error: unexpected input in "kallistoQuant <- importIsoformExpression(home/lab/RNA/kallisto/1/1_"

kallistoQuant <- importIsoformExpression(home/lab/RNA/kallisto/1/1_AGTCAA_L002_R1_005 ,(package = " IsoformSwitchAnalyzeR ")) Error: unexpected input in "kallistoQuant <- importIsoformExpression(home/lab/RNA/kallisto/1/1_"

please tell me how to solve it thanks

remove package = " IsoformSwitchAnalyzeR as this is only necessary if using example data from the package. Please get familiar with using R tools and how to generally load data as this does seem to be package-related but is a general R problem.

Log in to answer this question.