Originally posted by cbrennan
View Post
Announcement
Collapse
No announcement yet.
X
-
-
Originally posted by sklages View PostIf you don't use an index read, CASAVA is of no use for demultiplexing.
Have a look at 'sabre' (https://github.com/ucdavis-bioinformatics/sabre) or FastX-Toolkit (http://hannonlab.cshl.edu/fastx_tool...splitter_usage) amongst others.
hth, Sven
We actually use Casava v.17 to demultiplex our in-house designed barcodes routinely. We don't use the Illumina index read kit, we just set out detection cycles out past the barcode and use Casava to demultiplex the barcode. It's just a matter of properly formatting the sample sheet. Casava will make you a folder for each barcode and demultiplex the _qseq.txt files to each folder, then you can run Gerald to create the .fastq
Take a look a the demultiplex.pl script in Casava 1.7 and there is an example of the sample sheet format to use on pg 14 in the manual.
Leave a comment:
-
Originally posted by tonio100680 View PostThat's right, I want to use CASAVA 1.7 because the 1.8 is not available in France...
I can not use novobarcode because the output format is not compatible with the input format CASAVA so I'm looking for an alternative demultiplexer "simply" ...
Novobarcode does allow some mismatches in the index tag so it may classify more reads than a perl script.Last edited by sparks; 06-09-2011, 12:33 AM.
Leave a comment:
-
btw, as of CASAVA version 1.8 there is a script called "configureQseqToFastq.pl" to convert a whole folder of qseqs to fastq.
Leave a comment:
-
CASAVA 1.8 is already available at iCom; if you have your tags directly attached to your (first) read, you'll probably need to write your own demultiplexer to write qseq again (shouldn't be too hard if know someone familiar with e.g. perl).
Or a simple one-liner, assuming the barcode sequence 'ACGTACGT' (not removing it),
Code:perl -lane 'print if($F[8]=~/^ACGTACGT/)' SampleABC_qseq.txt > SampleA_NewQseq.txt
Or just a starting point (not tested thoroughly), a simple script looking for all seqs starting with $barcode and removing it from seq and quals:
Code:#!/usr/local/bin/perl use warnings; use strict; my $barcode = shift; my $length = length($barcode); my @line; my ($s,$q); while (<>) { chomp; @line=split; next unless ($line[8]=~/^$barcode/o); $s=substr($line[8],0+$length); $q=substr($line[9],0+$length); print join("\t", @line[0..7]), "\t$s\t$q\t$line[10]\n"; }
E.g.
Code:scriptName.pl ACGTACG *qseq.txt > newQseqFile_ACGTACG.txt
Last edited by sklages; 06-08-2011, 01:09 AM.
Leave a comment:
-
That's right, I want to use CASAVA 1.7 because the 1.8 is not available in France...
I can not use novobarcode because the output format is not compatible with the input format CASAVA so I'm looking for an alternative demultiplexer "simply" ...
Leave a comment:
-
Originally posted by tonio100680 View PostThank you for the help !
After converting my files are formatted QSEQ. To use Novobarcode must convert them FASTQ. If so have you a simple solution?
Earlier version could only accept 2 qseq files and would write demuxed files in fastq format. In this case you run novobarcode twice, once for read1 and index read then again for read2 and the index read. You can still do this with latest version if you wnat qseq to fastq conversion.
Colin
Leave a comment:
-
'bfast', as mentioned in the thread, has its own converter,
BFAST facilitates the fast and accurate mapping of short reads to reference sequences, where mapping billions of short reads with variants is of…
Download the archive, untar it, and look in the 'scripts' directory, there you'll find a perl script called 'ill2fastq.pl'. I never used it, but it should do the job.
There are probably a lot more tools... maybe you could have a look at GALAXY, but I am not sure if they provide qseq-to-fastq conversion.
When I read your original post again, it seems you want to use CASAVA 1.7 for mapping? Be aware that 1.7 needs qseq format for input files, however the fresh 1.8 takes fastq as input ...
hth, Sven
Leave a comment:
-
I really am a bioinformatics novice! I want a simple converter... It's panic. I'm harassed by biologists
Leave a comment:
-
You might want to read the following thread as a starting point,http://seqanswers.com/forums/showthread.php?t=1801
hth, Sven
Leave a comment:
-
Thank you for the help !
After converting my files are formatted QSEQ. To use Novobarcode must convert them FASTQ. If so have you a simple solution?
Leave a comment:
-
You could try Novobarcode. It's included in download of Novoalign at www.novocraft.com. Free to use, no license is required.
Colin
Leave a comment:
-
Originally posted by tonio100680 View PostHello,
I am looking for young bioinformatics. I need tools to perform demultiplexing
tool (script) to sequences from the GAIIx before CASAVA (1.7). We do not use the index provided by Illumina. Thank you in advance for your help
Have a look at 'sabre' (https://github.com/ucdavis-bioinformatics/sabre) or FastX-Toolkit (http://hannonlab.cshl.edu/fastx_tool...splitter_usage) amongst others.
hth, Sven
Leave a comment:
-
Demultiplexing and CASAVA 1.7
Hello,
I am looking for young bioinformatics. I need tools to perform demultiplexing
tool (script) to sequences from the GAIIx before CASAVA (1.7). We do not use the index provided by Illumina. Thank you in advance for your help
Latest Articles
Collapse
-
by seqadmin
At the intersection of cytogenetics and genomics lies the exciting field of cytogenomics. It focuses on studying chromosomes at a molecular scale, involving techniques that analyze either the whole genome or particular DNA sequences to examine variations in structure and behavior at the chromosomal or subchromosomal level. By integrating cytogenetic techniques with genomic analysis, researchers can effectively investigate chromosomal abnormalities related to diseases, particularly...-
Channel: Articles
Yesterday, 06:26 AM -
-
by seqadmin
Cancer research has been transformed through numerous molecular techniques, with RNA sequencing (RNA-seq) playing a crucial role in understanding the complexity of the disease. Maša Ivin, Ph.D., Scientific Writer at Lexogen, and Yvonne Goepel Ph.D., Product Manager at Lexogen, remarked that “The high-throughput nature of RNA-seq allows for rapid profiling and deep exploration of the transcriptome.” They emphasized its indispensable role in cancer research, aiding in biomarker...-
Channel: Articles
09-07-2023, 11:15 PM -
-
by seqadmin
Ribonucleic acid (RNA) represents a range of diverse molecules that play a crucial role in many cellular processes. From serving as a protein template to regulating genes, the complex processes involving RNA make it a focal point of study for many scientists. This article will spotlight various methods scientists have developed to investigate different RNA subtypes and the broader transcriptome.
Whole Transcriptome RNA-seq
Whole transcriptome sequencing...-
Channel: Articles
08-31-2023, 11:07 AM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, Today, 06:57 AM
|
0 responses
6 views
0 likes
|
Last Post
by seqadmin
Today, 06:57 AM
|
||
Started by seqadmin, Yesterday, 07:53 AM
|
0 responses
8 views
0 likes
|
Last Post
by seqadmin
Yesterday, 07:53 AM
|
||
Multiplexed Biomarker Detection with Nanopore Technology: A Leap in Precision Diagnostics
by seqadmin
Started by seqadmin, 09-25-2023, 07:42 AM
|
0 responses
14 views
0 likes
|
Last Post
by seqadmin
09-25-2023, 07:42 AM
|
||
Started by seqadmin, 09-22-2023, 09:05 AM
|
0 responses
43 views
0 likes
|
Last Post
by seqadmin
09-22-2023, 09:05 AM
|
Leave a comment: