Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • ymc
    Senior Member
    • Mar 2010
    • 496

    #31
    Find kits and reagents compatible with the NextSeq 500 and NextSeq 550 Systems.


    I find a NextSeq v2 kit here. Is it something new?

    Comment

    • kentawan
      Member
      • Apr 2014
      • 14

      #32
      Originally posted by ymc View Post
      http://www.illumina.com/systems/next...ncer/kits.html

      I find a NextSeq v2 kit here. Is it something new?
      I just gave my local distributor a call. He said that this kit will be ready for shipment on February 2015. Pricing will be the same as the v1 kits!

      Finally some hope for NextSeq 500 users!

      Comment

      • Elsie
        Member
        • Mar 2011
        • 85

        #33
        Hi Brian,

        Thanks so much for this. I am trying to repeat your above commands, using interleaved files, and I get this error, can you help?
        Thanks.

        bbmap.sh maxindel=200 in=trimmed.fq.gz mhist=mhist.txt bhist=bhist.txt qhist=qhist.txt qahist=qahist.txt
        java -Djava.library.path=/bbmap/jni/ -ea -Xmx43110m -cp /bbmap/current/ align2.BBMap build=1 overwrite=true fastareadlen=500 maxindel=200 in=trimmed.fq.gz mhist=mhist.txt bhist=bhist.txt qhist=qhist.txt qahist=qahist.txt
        Executing align2.BBMap [build=1, overwrite=true, fastareadlen=500, maxindel=200, in=trimmed.fq.gz, mhist=mhist.txt, bhist=bhist.txt, qhist=qhist.txt, qahist=qahist.txt]

        BBMap version 34.56
        Set match histogram output to mhist.txt
        Set base content histogram output to bhist.txt
        Set quality histogram output to qhist.txt
        Set quality accuracy histogram output to qahist.txt
        Retaining first best site only for ambiguous mappings.
        No output file.
        Exception in thread "main" java.lang.RuntimeException: Can't find file ref/genome/1/summary.txt
        at fileIO.ReadWrite.getRawInputStream(ReadWrite.java:815)
        at fileIO.ReadWrite.getInputStream(ReadWrite.java:780)
        at fileIO.TextFile.open(TextFile.java:277)
        at fileIO.TextFile.<init>(TextFile.java:94)
        at dna.Data.setGenome2(Data.java:839)
        at dna.Data.setGenome(Data.java:785)
        at align2.BBMap.loadIndex(BBMap.java:302)
        at align2.BBMap.main(BBMap.java:32)

        Comment

        • Brian Bushnell
          Super Moderator
          • Jan 2014
          • 2709

          #34
          Hi Elsie,

          You have to index the reference first. For example:

          bbmap.sh ref=genome.fasta

          Wait for that to finish, then map.

          -Brian

          Comment

          • Elsie
            Member
            • Mar 2011
            • 85

            #35
            Thanks Brian, unfortunately I do not have a reference for this sequence!, so I'm assuming no way around this?

            Comment

            • Brian Bushnell
              Super Moderator
              • Jan 2014
              • 2709

              #36
              The only way around is to try to assemble it first. If it's a bacteria, and you have sufficient coverage, you can get a decent assembly in a few minutes with Velvet. BBMap will not work without an assembly, but it doesn't have to be a good assembly - a quick one with short contigs is fine for this purpose, as long as those contigs are several times larger than read length.

              Comment

              • Elsie
                Member
                • Mar 2011
                • 85

                #37
                Thank you Brian, that is really helpful, and incredibly prompt. Thank you so much.

                Comment

                • Brian Bushnell
                  Super Moderator
                  • Jan 2014
                  • 2709

                  #38
                  You're welcome - let us know if you discover anything interesting!

                  Comment

                  • Elsie
                    Member
                    • Mar 2011
                    • 85

                    #39
                    Hi Brian,
                    sorry, still having issues. I've now switched to some NextSeq data generated with mouse and human data. I'm getting Nas in my histograms, I think there is something wrong with my index, info.txt gives me:
                    #Chromosome sizes
                    #Generated on Fri Mar 06 21:58:51 EST 2015
                    #Version 5
                    #chrom scaffolds contigs length defined undefined startPad stopPad
                    1 4 41 493337098 479857220 13479878 8000 8000
                    2 5 61 512852808 496275279 16577529 8000 8000
                    3 3 70 439025362 428441699 10583663 8000 8000
                    4 3 78 468391081 456374140 12016941 8000 8000
                    5 3 46 424587819 413803382 10784437 8000 8000
                    6 4 155 387396307 372786010 14610297 8000 8000
                    What happened to the other chromosomes? I must be doing something wrong but I am just doing the bbmap ref command as indicated previously.
                    thanks.

                    Comment

                    • GenoMax
                      Senior Member
                      • Feb 2008
                      • 7142

                      #40
                      Originally posted by Elsie View Post
                      Hi Brian,
                      sorry, still having issues. I've now switched to some NextSeq data generated with mouse and human data. I'm getting Nas in my histograms, I think there is something wrong with my index
                      What is Nas? (N's?)

                      The index should be ok. I think Brian is concatenating all chromosomes and then creating the index so that file is not a literal equivalent of human/mouse genome (file I have looks similar to yours).

                      Are you getting an error when you do the mapping?

                      Comment

                      • fanli
                        Senior Member
                        • Jul 2014
                        • 197

                        #41
                        Hi all,

                        Just wanted to add our data as well - this was from an RNA-seq library and I don't have paired HiSeq data. Still, you can see some ambitious reporting of quality scores albeit not nearly as bad as what aeonsim showed.

                        We're hopefully going to run a v2 kit soon and I'll update with those stats when I get them!
                        Attached Files

                        Comment

                        • Brian Bushnell
                          Super Moderator
                          • Jan 2014
                          • 2709

                          #42
                          Originally posted by GenoMax View Post
                          The index should be ok. I think Brian is concatenating all chromosomes and then creating the index so that file is not a literal equivalent of human/mouse genome (file I have looks similar to yours).
                          That's correct. They're called chromosomes for legacy reasons (the chunks used to be one real chromosome each) but it's more efficient to pack them.

                          Comment

                          • aeonsim
                            Member
                            • Jun 2011
                            • 46

                            #43
                            Originally posted by fanli View Post
                            Hi all,

                            Just wanted to add our data as well - this was from an RNA-seq library and I don't have paired HiSeq data. Still, you can see some ambitious reporting of quality scores albeit not nearly as bad as what aeonsim showed.

                            We're hopefully going to run a v2 kit soon and I'll update with those stats when I get them!
                            I'd acctually say they're worse than what we had, considering your using PE80bp and the first 10 or so bases on the forward reads shows an average Quality score drop of ~10 on the Phred Scale (~30 to 20).

                            However our conculsion from our testing is that the NextSeq with V1 chemistry is ok for RNAseq as the reads still map fine and the coverage is high, it's however not suitable for variant calling especially when one is interested in de novo variants or low coverage. As a result it's only being used internally for RNAseq currently.

                            We will aparently get access to the V2 kits as soon as they're available to see if that fixes the issue.
                            Last edited by aeonsim; 03-08-2015, 04:26 AM.

                            Comment

                            • Elsie
                              Member
                              • Mar 2011
                              • 85

                              #44
                              No error, just Nas which is why I think I am missing something:
                              reformat.sh in1=R1.fastq in2=R2.fastq out=interleaved
                              gzip interleaved
                              bbmap.sh ref=hg19.fa
                              bbduk.sh in=interleaved.gz out=trimmed.fq.gz ktrim=r k=23 hdist=1 mink=11 tpe tbo minlen=90 ref=truseq.fa.gz,nextera.fa.gz
                              bbmap.sh maxindex=200 in=trimmed.fq.fq mhist=mhist.txt bhist=bhist.txt qhist=qhist.txt qahist=qahist.txt

                              BBMap version 34.56
                              Set match histogram output to mhist.txt
                              Set base content histogram output to bhist.txt
                              Set quality histogram output to qhist.txt
                              Set quality accuracy histogram output to qahist.txt
                              Retaining first best site only for ambiguous mappings.
                              No output file.
                              Set genome to 1

                              Loaded Reference: 5.025 seconds.
                              Loading index for chunk 1-7, build 1
                              Generated Index: 6.192 seconds.
                              Analyzed Index: 7.512 seconds.
                              Cleared Memory: 0.461 seconds.
                              Processing reads in single-ended mode.
                              Started read stream.
                              Started 16 mapping threads.
                              Detecting finished threads: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15

                              ------------------ Results ------------------

                              Genome: 1
                              Key Length: 13
                              Max Indel: 200
                              Minimum Score Ratio: 0.56
                              Mapping Mode: normal
                              Reads Used: 0 (0 bases)

                              Mapping: 0.447 seconds.
                              Reads/sec: 0.00
                              kBases/sec: 0.00


                              Read 1 data: pct reads num reads pct bases num bases

                              mapped: NaN% 0 NaN% 0
                              unambiguous: NaN% 0 NaN% 0
                              ambiguous: NaN% 0 NaN% 0
                              low-Q discards: NaN% 0 NaN% 0

                              perfect best site: NaN% 0 NaN% 0
                              semiperfect site: NaN% 0 NaN% 0

                              Match Rate: NA NA NaN% 0
                              Error Rate: NaN% 0 NaN% 0
                              Sub Rate: NaN% 0 NaN% 0
                              Del Rate: NaN% 0 NaN% 0
                              Ins Rate: NaN% 0 NaN% 0
                              N Rate: NaN% 0 NaN% 0

                              Total time: 19.975 seconds.

                              Any advice greatly appreciated. thanks.

                              Comment

                              • GenoMax
                                Senior Member
                                • Feb 2008
                                • 7142

                                #45
                                @Elsie: Are you trying to analyze NextSeq500 data or just creating stats? This thread was originally about quality of NextSeq500 reads and the procedure that Brian had posted was to create stats files (not actual alignments).

                                If you are actually trying to analyze real data then there is no need to create interleaved data sets. You can directly trim and then align R1/R2 reads against human genome. You need to specify an output file to store the aligned reads.

                                A minimal command line for doing the mapping would be following. More examples in the BBMap thread: http://seqanswers.com/forums/showthread.php?t=41057
                                Code:
                                $ bbmap.sh -Xmx30g in=trimmedfq.gz path=/path_to_BBMap_index_top_folder_with_ref_directory/ out=sample_ID.sam qin=33
                                Change the path to BBMap index according to your local path. Add additional options (there are plenty) as needed depending on kind of experiment you are analyzing.

                                Comment

                                Latest Articles

                                Collapse

                                • SEQadmin2
                                  Nine Things a Sample Prep Scientist Thinks About Before Sequencing
                                  by SEQadmin2


                                  I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.


                                  Here are nine questions we think about, in roughly the order they matter, before...
                                  06-18-2026, 07:11 AM
                                • SEQadmin2
                                  From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
                                  by SEQadmin2


                                  Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


                                  The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
                                  ...
                                  06-02-2026, 10:05 AM

                                ad_right_rmr

                                Collapse

                                News

                                Collapse

                                Topics Statistics Last Post
                                Started by SEQadmin2, 06-17-2026, 06:09 AM
                                0 responses
                                30 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 06-09-2026, 11:58 AM
                                0 responses
                                96 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 06-05-2026, 10:09 AM
                                0 responses
                                115 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 06-04-2026, 08:59 AM
                                0 responses
                                109 views
                                0 reactions
                                Last Post SEQadmin2  
                                Working...