DEXSeq error
0
0
Entering edit mode
21 months ago
Saeed • 0

Hello Folks,

I tried to analysis my RNA seq data using DexSeq which is described in the tutorial "Inferring differential exon usage in RNA-Seq data with the DEXSeq package".

suppressPackageStartupMessages( library( "DEXSeq"))
dxd = DEXSeqDataSetFromHTSeq(
  countFiles,
  sampleData=sampleTable,
  design= ~ sample + exon + condition:exon,
  flattenedfile=flattenedFile )

I got this error when I used the above script

Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
  line 270365 did not have 3 elements

This is head for an .txt output of Counting reads:

"A1CF":"001"    1
"A1CF":"002"    0
"A1CF":"003"    1
"A1CF":"004"    2
"A1CF":"005"    2
"A1CF":"006"    0
"A1CF":"007"    1
"A1CF":"008"    1
"A1CF":"009"    1
"A1CF":"010"    1

Best

DEXSeq Deseq2 RNA-seq • 959 views
ADD COMMENT
0
Entering edit mode

What does line 270365 look like? It looks like there's a single row that's causing the error. Additionally, it might help readability if you formatted your post better using the code chunks.

ADD REPLY
0
Entering edit mode

To be honest with you I dont know what is it? but I think it is in read count .txt files. I used .py scripts to make read count using Hiseq with this [workflow] [https://bioc.ism.ac.jp/packages/3.4/bioc/vignettes/DEXSeq/inst/doc/DEXSeq.pdf][1]and I used following scripts in R to start analysis

countFiles = list.files("../star_output/star_hiseq_count/", pattern="b.txt", full.names=TRUE)
basename(countFiles)

flattenedFile = list.files("../count_htseq/", pattern="gff", full.names=TRUE)
basename(flattenedFile)

sampleTable = data.frame(
row.names = c( "68b", "69b", "70b","71b", "72b", "73b" ),
condition = c("knockdown", "knockdown", "knockdown", 
"control", "control", "control" ))

suppressPackageStartupMessages( library( "DEXSeq"))

dxd = DEXSeqDataSetFromHTSeq(
  countFiles,
  sampleData=sampleTable,
  design= ~ sample + exon + condition:exon,
  flattenedfile=flattenedFile )

Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  : 
  line 270365 did not have 3 elements

really appreciate your help

ADD REPLY
0
Entering edit mode

Don't add answers unless you're answering the top level question. Use Add Comment or Add Reply instead as appropriate. Also, format your code as code using the 101010 button in the toolbar (see image below). I've fixed this for you this time, but please be careful in the future.

About code formatting:

You can use backticks for inline code (`text` becomes text), or select a chunk of text and use the highlighted button to format it as a code block. If your code has long lines with a single command, break those lines into multiple lines with proper escape sequences so they're easier to read and still run when copy-pasted.
code_formatting

ADD REPLY
0
Entering edit mode

Well noted... Thank you very much for your explanation.

ADD REPLY

Login before adding your answer.

Traffic: 1316 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6