Originally posted by cbrennan
View Post
Seqanswers Leaderboard Ad
Collapse
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
The first FDA-approved CRISPR-based therapy marked the transition of therapeutic gene editing from a dream to reality1. CRISPR technologies have streamlined gene editing, and CRISPR screens have become an important approach for identifying genes involved in disease processes2. This technique introduces targeted mutations across numerous genes, enabling large-scale identification of gene functions, interactions, and pathways3. Identifying the full range...-
Channel: Articles
08-27-2024, 04:44 AM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, 09-06-2024, 08:02 AM
|
0 responses
10 views
0 likes
|
Last Post
by seqadmin
09-06-2024, 08:02 AM
|
||
Started by seqadmin, 09-03-2024, 08:30 AM
|
0 responses
13 views
0 likes
|
Last Post
by seqadmin
09-03-2024, 08:30 AM
|
||
Started by seqadmin, 08-27-2024, 04:40 AM
|
0 responses
21 views
0 likes
|
Last Post
by seqadmin
08-27-2024, 04:40 AM
|
||
New Single-Molecule Sequencing Platform Introduces Advanced Features for High-Throughput Genomics
by seqadmin
Started by seqadmin, 08-22-2024, 05:00 AM
|
0 responses
361 views
0 likes
|
Last Post
by seqadmin
08-22-2024, 05:00 AM
|
Leave a comment: