latest tool for genome guided assembly
I am not sure about which tool to use for genome guided assembly: cufflinks or stringTie
assembly
• 2,811 views
•
link
written
by
Bioinfonext
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Tools for reference-guided de novo assembly of bacterial genome
written by Bushra BibiDear all, Please suggest which tool should i use for optimal assembly of bacterial fastq reads. Which approach is good if reference genome is available: …
-
Please suggest an appropriate genome-guided transcriptome assembler
written by setaDear all, I have RNA-seq data generated by Illumina Hiseq 2000 as 100bp, PE from human, control and diseased samples. I'm looking for polymorphic simple …
-
Query related to genome guided assembly
written by BioinfonextHi.. Please help me to understand StingTie or cufflinks based assembly, After read mapping to the genome, do they just take only correspondence reference genome …
-
discordantly alignment affect the genome guided assembly
written by BioinfonextHi I am mapping pair end strand-specific libraryof RNAseq to the genome. Should I use option --no-discordant in hisat2 to avoid discordant alignment? Does it …
-
How to map genome guided assembly TRANSCRIPTS to Genome and extract the longest one for each genome…
written by BioinfonextHi, I did genome guided assembly using StringTie, It generate multiple isoforms, Can you please suggest how i can map these transcripts to genome again, …
-
Strand specific pair end sequencing
written by BioinfonextI have a strand-specific pair-end Illumina sequencing data. I am not able to understand which option to use in the different software. For each library …
-
How to compare CDS gff with genome guided assembled gff
written by BioinfonextI am working on plant species transcriptome. Its draft genome is known. We want to identify some new transcripts in genome-guided assembly. I need your …
-
Genome guided assembly using hisat2 and StringTie
written by BioinfonextI map pair end reads to genome using Hisat2 and sam file was sort and converted in bam file. After that I used this command …
-
Genome guided assembly using hisat2 and StingTie
written by BioinfonextI map pair end reads to genome using Hisat2 and sam file was sort and converted in bam file. After that I used this command …
-
what is the basic difference between genome guided transcript assemblyusing Trinity and stringTie/c…
written by BioinfonextI am not able to understand clearly what is the actually difference between genome guided assembly using Trinity and Cufflinks/StringTie? I understand that both generates …
I've never used StringTie, but I do recommend avoiding Cufflinks. However, you will get more useful responses if you provide more information about what you want to do, and what kind of data you have.
Its RNAseq data at different development stages from a plant species.
When asking for advice on assembly, it's useful to say something like...
"I have 20Gbp of 2x150bp Illumina reads, with target 270bp insert size, sequenced as strand-specific RNA-seq using protocol X on a HiSeq2500. This is from a tetraploid plant (P. bulbasaurus) with a genome of 2 Gbp and transcriptome of 100 Mbp, typical intron lengths of 200bp, and an estimated 30000 genes. The sample is wild-type rather than inbred, with a typical het rate of 1/300. Previous attempts at assembly used approach Y and yielded poor continuity with an L50 of 120 bp."
If you provide that kind of information, it's possible to give helpful suggestions.
Hi Brian,
I am having around 200 million pair end reads of 125 bp of Radish. Genome size 530 Mb consist of around 60,000 genes. Min. intron length 21 bp and maximum intron length 21000 bp. I need to estimate insert size from sam file using bbmap but I am having both mapped and unmapped reads in sam file so it not able to estimate and I think bbmap require only mapped.sam file.
Can you suggest how to extract only mapped reads from sam file format to sam format.
With BBMap, you can use "outm=mapped.sam" instead of "out=all.sam", to just get the mapped reads. Alternatively, once you already have a sam file, you can do this:
You can also do similar filtering with samtools. But anyway - it's not clear to me why you need to extract the mapped reads; for your purposes, I would expect a "reference-guided assembler" to just ignore them. Typically, for DNA assembly, I would use a normal assembler like Spades; for RNA assembly, I'd suggest Trinity which is not perfect but seems to do a decent job. I am quite wary of reference-guided assembly as it can yield incorrect results when the sample differs substantially from the reference.
Also, if you want insert-size statistics, you can get those with BBMap using the flag "ihist=ihist.txt".
In case of doubt, try to find a review publication comparing those two tools, or just use both yourself and compare the results you get.