0-based or 1-based file format using R pipeline?
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Help with find_circ troubles
written by Eduarda •Hello everyone, I am working with the find_circ program for circRNA detection in honey bee transcriptomes. So far, I have successfully generated the following files: …
-
vcf multisample
written by Donald •Hi everyone! I'm searching for publicly available VCF files with genotyped data from more than 10 samples, ideally linked to specific diseases or phenotypes. Does …
-
qsea makeTable()
written by Sophia •Hello! After using the makeTable() function in the qsea package I notice that only some of my samples have NA where the beta values should …
-
Kraken2 nt database build time
written by laczi.krisztian •Hello Everybody, I am currently building a Kraken2 nt database. It has been running for 1.5 months now and still doesn't want to finish. I'm …
-
Gene annotations of mammalian genomes
written by arsala521 •Hello everyone, I want to ask about gene annotations in mammalian genomes. There is genome sequence along with gene annotations available for many mammalian genomes. …
-
Are GD format files (gdtools) 0-based?
written by Matteo SchiavinatoHi guys, I have recently approached the *genomeDiff* file format in my work: http://gensoft.pasteur.fr/docs/breseq/0.23/gd_format.html In the definition of their positions they claim that the positions …
-
Error while importing data into Qiime2
written by jeccy.JHi everyone, I am trying to import fastq files (16s amplicon sequence data) into qiime2 pipeline but some error occurred. Can anyone please help me …
-
Error when running sma3s for proteome annotation
written by l.souzaHello everyone, I have been trying to run sma3s for protein annotation, according to the author's instructions (UPOBioinfo Group). However, when running the command ./sma3s.pl …
-
Network construction methods using Bayesian Network or mutual information
written by zhang.jianhai •Hello, I want to use Bayesian Network (BN) or Mutual Information (MI) based R packages to construct gene network. I have checked BNArray and CLR, …
-
Box-Cox transformation coefficient (lambda) in SPSS or R
written by tesfadej2003 •Hello all, I want to transform one variable, which is skewed, to a normal distribution. An appropriate transformation method should be decided based on Box-Cox …
The question is out of context. Choose the format that your package or tool expects. Like, should the book be in english, french or mandarin, well in the language you understand.
Thank you for your reply.
I'm working with DSS but I couldn't find any specific information regarding the file format it expects so I hesitated.
DSS inputs can just be text files AFAIK? What data are you starting from?
The vignette gives clear examples of the structure of input data
Thank you for your reply as well. I'm using BED files, which are 0-based but I often come across some information like R pipelines require inputs in 1-based file format. That made me confused a bit.
Nah R can read bed files in without any issues - they're just text files with extra rules. I dunno if you're maybe confusing the idea of 0/1 indexing in terms of subsetting? Subsetting/indexing in R starts from 1 not 0 so first column of a matrix would be
[ ,1]EDIT: Yeah it looks like this specifically refers to the way that genomic coordinates are stored in bed-files, rather than some file restriction. See there file spec Section 1.3
No, it was this input file format issue but that's a relief, thank you so much! :)