@bostonian
I am currently struggling with the same issue, did you find a solution for your problem?
Header Leaderboard Ad
Collapse
data format and how to analysis
Collapse
Announcement
Collapse
SEQanswers June Challenge Has Begun!
The competition has begun! We're giving away a $50 Amazon gift card to the member who answers the most questions on our site during the month. We want to encourage our community members to share their knowledge and help each other out by answering questions related to sequencing technologies, genomics, and bioinformatics. The competition is open to all members of the site, and the winner will be announced at the beginning of July. Best of luck!
For a list of the official rules, visit (https://www.seqanswers.com/forum/sit...wledge-and-win)
For a list of the official rules, visit (https://www.seqanswers.com/forum/sit...wledge-and-win)
See more
See less
X
-
@bostonian
I do not use ShortRead however reading the manual ShortRead uses the readAligned part of bioconductor. I am not sure that readAligned will read in your file directly however the fields are similar and I suspect that with some simple data manipulation you could get them read in.
BTW: It is this type of data manipulation that makes bioinformatics such a joy. :-)
Leave a comment:
-
As Rick suggested and they state in the data processing section of each sample, the files are from the Genome Analyzer Pipeline (there are two files for each sample, since this is paired-end data). If you were willing to redo the alignment, you can download the reads from SRA and convert them to fastq with fastq-dump. Alternatively, it wouldn't be difficult to write a small program in perl/python/R/whatever to read in both read files at once and output to SAM. Just make sure that corresponding lines in each file are actually meant to go together (that is, ensure that read names match), as if they kept reads where only one end maps then you would otherwise get really screwy results. So, just put a * in the base quality field and make up an appropriate fake MAPQ value along with the correct flag and you're good to go.
Leave a comment:
-
Thank, Rick. I am trying to avoid doing alignment myself. Since each sequence comes with chromosome number and genomic coordinates in the data file, I assume they are already aligned (?). Is there any tool that I can use to convert the data into some format so that I can read them into some R packages, such as ShortRead or others (?), for further analysis?
Leave a comment:
-
I believe that these are output from "Illumina Genome Analyzer Pipeline". I am not sure if there is a converter from this format to SAM/BAM. Multi-fastA would be trivial. Something like:
cut -f 1,2 file.name | sed -e 's/^/>/' -e 's/\t/\n' > output.file
or
perl -nale 'print ">$F[0]\n$F[1]"' file.name > output.file
Then you could map the reads against a current human genome and go from there.
Leave a comment:
-
Hi, Thanks a lot for your response. The dataset is GSE22260. I do not see any mentioning about the data formet, but maybe it is only because I do not know where to look. Could you also advise how to convert what I have to SAM/BAM format? or how to convert to multi-fasta files? I am fairly familiar with R, so I am hoping I will be able figure the later analysis after I have data in BAM format. Thanks again.
Leave a comment:
-
It'd help if you mentioned the GEO accession number. They probably mention more about the format in the GEO entry. If nothing else, you could probably convert that to SAM/BAM format (the difficulty being whether or not the mappings are actually unique) and then calculate the RPKM. Alternatively, if they provide no further information (or the original fastq file), you could convert that to a multi-fasta file and then realign it.
Leave a comment:
-
data format and how to analysis
Hi,
I am a complete newbie, so please bear with me if my question seems too silly.
I recently downloaded a RNAseq dataset from GEO, it contains paired data files, and in the following format:
readID Seq 0-mi**** 1-mi**** 2-mi**** chr start end strand
HWUSI-EAS230-R:2:99:1151:1802#0/1 GAGCTCATTGGTGGCGTGGTGGCCTTGACCTTCCGG 1 0 0 chr10 70914936 70914971 -
HWUSI-EAS230-R:2:44:642:495#0/1 TTGGCTGCCTTCTGGGGTGAACTTTCTGCTATTTCC 0 0 1 chr7 47298110 47298145 -
......
I googled around but could not figure out what format it is, and how to proceed to analyze. My goal is to produce gene expression values (RPKM) from these data files.
Thanks so much for your help.
Latest Articles
Collapse
-
by seqadmin
Developments in sequencing technologies and methodologies have transformed the field of epigenetics, giving researchers a better way to understand the complex world of gene regulation and heritable modifications. This article explores some of the diverse sequencing methods employed in the study of epigenetics, ranging from classic techniques to cutting-edge innovations while providing a brief overview of their processes, applications, and advances.
Methylation Detect...-
Channel: Articles
05-31-2023, 10:46 AM -
-
Differential Expression and Data Visualization: Recommended Tools for Next-Level Sequencing Analysisby seqadmin
After covering QC and alignment tools in the first segment and variant analysis and genome assembly in the second segment, we’re wrapping up with a discussion about tools for differential gene expression analysis and data visualization. In this article, we include recommendations from the following experts: Dr. Mark Ziemann, Senior Lecturer in Biotechnology and Bioinformatics, Deakin University; Dr. Medhat Mahmoud Postdoctoral Research Fellow at Baylor College of Medicine;...-
Channel: Articles
05-23-2023, 12:26 PM -
-
by seqadmin
Continuing from our previous article, we share variant analysis and genome assembly tools recommended by our experts Dr. Medhat Mahmoud, Postdoctoral Research Fellow at Baylor College of Medicine, and Dr. Ming "Tommy" Tang, Director of Computational Biology at Immunitas and author of From Cell Line to Command Line.
Variant detection and analysis tools
Mahmoud classifies variant detection work into two main groups: short variants (<50...-
Channel: Articles
05-19-2023, 10:03 AM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, 06-01-2023, 08:56 PM
|
0 responses
11 views
0 likes
|
Last Post
by seqadmin
06-01-2023, 08:56 PM
|
||
Deep Sequencing Unearths Novel Genetic Variants: Enhancing Precision Medicine for Vascular Anomalies
by seqadmin
Started by seqadmin, 06-01-2023, 07:33 AM
|
0 responses
52 views
0 likes
|
Last Post
by seqadmin
06-01-2023, 07:33 AM
|
||
Unveiling Genetic Associations Through Transcription Factor Binding Quantitative Trait Loci
by seqadmin
Started by seqadmin, 05-31-2023, 07:50 AM
|
0 responses
91 views
0 likes
|
Last Post
by seqadmin
05-31-2023, 07:50 AM
|
||
Exploring French-Canadian Ancestry: Insights into Migration, Settlement Patterns, and Genetic Structure
by seqadmin
Started by seqadmin, 05-26-2023, 09:22 AM
|
0 responses
95 views
0 likes
|
Last Post
by seqadmin
05-26-2023, 09:22 AM
|
Leave a comment: