Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Hyeshik Chang
    Junior Member
    • Apr 2009
    • 6

    Obtaining .CIF or raw images from HiSeq/NextSeq?

    Hi,

    Illumina recently changed the data flow inside their HiSeq and NextSeq machines to reduce I/O burden during sequencing dramatically. It now skips saving .TIFF image files and .CIF intensity files by passing them through internal spaces in shared memory. Illumina technical support confirmed that there will be no way to get .CIF file or .TIFF images in HiSeq/NextSeq, soon.

    As HiSeq Rapid V1, which is the last kit version that allows .CIF generation, is to be discontinued soon, there remains no commercially available kit in large-scale Illumina sequencing kits. MiSeq and GA IIx are still able to produce those files, but they don't meet the modern needs of throughput in many types of experiments.

    If you're using .CIF files or images in your study, how do you deal with this changes? Is there anybody succeed accessing the shared memory or the "web HTTP interface" mentioned in the user guide?
    Last edited by Hyeshik Chang; 07-21-2015, 09:49 PM.
  • ScottC
    Senior Member
    • Jan 2008
    • 244

    #2
    Hi. This is fairly obvious, but did you try changing the configuration files like you would do with the MiSeq? They're not exactly the same, of course, but there's an field <SaveCifs> in NextSeq.Configuration.xml that looks promising. I've never tried with the NextSeq, so I can't say whether it works or not.

    Comment

    • Hyeshik Chang
      Junior Member
      • Apr 2009
      • 6

      #3
      Hi ScottC,

      Thank you for the comment. I could get CIF files from NextSeq by editing the line as you suggested. It looks that they did not change the file format of CIF files except the number of channels in a cycle. Here's my final change set to the configuration file:

      Code:
      --- NextSeq.Configuration.xml.orig	2015-09-09 09:40:53.000000000 +0900
      +++ NextSeq.Configuration.xml	2015-09-09 09:41:35.000000000 +0900
      @@ -24,14 +24,14 @@
           <DataManager>DataManagerAllInMem</DataManager>
           <InterOpManager>InterOpManagerTwoChannel</InterOpManager>
           <AggregateOutput>true</AggregateOutput>
      -    <ThumbnailTileMatch>...0[16]|...12</ThumbnailTileMatch>
      +    <ThumbnailTileMatch>.....</ThumbnailTileMatch>
           <WorkProviderTypes>
             <WorkProviderOptions>ServiceMultiImageBased</WorkProviderOptions> 
           </WorkProviderTypes>
      -    <CifQValTileMatch>1[13].03|12.09|2[13].09|22.03</CifQValTileMatch>
      +    <CifQValTileMatch>.....</CifQValTileMatch>
         </Processing>
         <ColorMatrix>
      -    <SaveCifs>false</SaveCifs>
      +    <SaveCifs>true</SaveCifs>
         </ColorMatrix>
         <Basecalling>
           <Basecaller>BasecallerTwoChannel</Basecaller>

      Comment

      • bilyl
        Member
        • Aug 2013
        • 52

        #4
        Originally posted by Hyeshik Chang View Post
        Hi ScottC,

        Thank you for the comment. I could get CIF files from NextSeq by editing the line as you suggested. It looks that they did not change the file format of CIF files except the number of channels in a cycle. Here's my final change set to the configuration file:

        Code:
        --- NextSeq.Configuration.xml.orig	2015-09-09 09:40:53.000000000 +0900
        +++ NextSeq.Configuration.xml	2015-09-09 09:41:35.000000000 +0900
        @@ -24,14 +24,14 @@
             <DataManager>DataManagerAllInMem</DataManager>
             <InterOpManager>InterOpManagerTwoChannel</InterOpManager>
             <AggregateOutput>true</AggregateOutput>
        -    <ThumbnailTileMatch>...0[16]|...12</ThumbnailTileMatch>
        +    <ThumbnailTileMatch>.....</ThumbnailTileMatch>
             <WorkProviderTypes>
               <WorkProviderOptions>ServiceMultiImageBased</WorkProviderOptions> 
             </WorkProviderTypes>
        -    <CifQValTileMatch>1[13].03|12.09|2[13].09|22.03</CifQValTileMatch>
        +    <CifQValTileMatch>.....</CifQValTileMatch>
           </Processing>
           <ColorMatrix>
        -    <SaveCifs>false</SaveCifs>
        +    <SaveCifs>true</SaveCifs>
           </ColorMatrix>
           <Basecalling>
             <Basecaller>BasecallerTwoChannel</Basecaller>
        Interesting... I wonder if you could implement your own basecaller with the CIFs, especially for specialized assays? Or are these files already too far along in the processing?

        Comment

        • Hyeshik Chang
          Junior Member
          • Apr 2009
          • 6

          #5
          Originally posted by bilyl View Post
          Interesting... I wonder if you could implement your own basecaller with the CIFs, especially for specialized assays? Or are these files already too far along in the processing?
          The purpose of my library was a lot simpler than the general use cases of specialized base calling. Mine was just for rough length measurement of homopolymers (poly(A) tails in mRNA). It was not very difficult to modify my previous codes to take up two channel signals than four channels.

          Comment

          • sklages
            Senior Member
            • May 2008
            • 628

            #6
            Originally posted by bilyl View Post
            Interesting... I wonder if you could implement your own basecaller with the CIFs, especially for specialized assays? Or are these files already too far along in the processing?
            Probably yes, CIFs (among other files) are the basis for illumina's basecaller 'bustard'.

            Comment

            • bilyl
              Member
              • Aug 2013
              • 52

              #7
              Originally posted by sklages View Post
              Probably yes, CIFs (among other files) are the basis for illumina's basecaller 'bustard'.
              Is Bustard still being used on current Illumina systems? I had thought that they are using something else.

              Comment

              • sklages
                Senior Member
                • May 2008
                • 628

                #8
                Originally posted by bilyl View Post
                Is Bustard still being used on current Illumina systems? I had thought that they are using something else.
                No. OLB development has been dropped a few years ago. After 1.9.4 Illumina had plans to develop RTAOLB, which was an "external" RTA (windows) binary. Well, I never saw a working binary :-) That was back in 2012/13. Then Illumina decided to further optimise on-device RTA (e.g. for unbalanced/low complex. libs) that there is no need anymore to use some external application for basecalling (at least from their point of view). They did a quite good job on that (at least IMHO).

                Comment

                • dorix
                  Member
                  • Apr 2012
                  • 13

                  #9
                  Hi,
                  We're planning to save .cif files from NextSeq sequencing. We have been warned that new chemistry is not compatible with it. Your comments seems promising, however I would like to be sure that our instrument configuration is the same. We're using software version 2.0.2 (RTA 2.4.11).

                  Is there anything else we should take into consideration?

                  Comment

                  • dorix
                    Member
                    • Apr 2012
                    • 13

                    #10
                    I've also got the answer from tech support which warned me that .cif files is not supported due to memory limitations. I wonder if you saved .cif files on machine or on external drive and if any problem with data transfer speed occured?

                    Comment

                    • Codemonkey
                      Junior Member
                      • Jan 2016
                      • 2

                      #11
                      Originally posted by dorix View Post
                      I've also got the answer from tech support which warned me that .cif files is not supported due to memory limitations. I wonder if you saved .cif files on machine or on external drive and if any problem with data transfer speed occured?
                      Is there even space on the disk?

                      Comment

                      • sklages
                        Senior Member
                        • May 2008
                        • 628

                        #12
                        Just curious, why do you want to store CIFs on a NextSeq system?

                        Comment

                        • dorix
                          Member
                          • Apr 2012
                          • 13

                          #13
                          Originally posted by Codemonkey View Post
                          Is there even space on the disk?
                          What do you mean?
                          Originally posted by sklages View Post
                          Just curious, why do you want to store CIFs on a NextSeq system?
                          As Hyeshik Chang, we want to analyze homopolymeric sequences.

                          Comment

                          Latest Articles

                          Collapse

                          • SEQadmin2
                            Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
                            by SEQadmin2


                            Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

                            The systematic characterization of the human proteome has
                            ...
                            07-20-2026, 11:48 AM
                          • SEQadmin2
                            Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
                            by SEQadmin2



                            Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
                            ...
                            07-09-2026, 11:10 AM
                          • SEQadmin2
                            Cancer Drug Resistance: The Lingering Barrier to Rising Survival
                            by SEQadmin2



                            Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

                            There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
                            07-08-2026, 05:17 AM

                          ad_right_rmr

                          Collapse

                          News

                          Collapse

                          Topics Statistics Last Post
                          Started by SEQadmin2, 07-24-2026, 12:17 PM
                          0 responses
                          25 views
                          0 reactions
                          Last Post SEQadmin2  
                          Started by SEQadmin2, 07-23-2026, 11:41 AM
                          0 responses
                          19 views
                          0 reactions
                          Last Post SEQadmin2  
                          Started by SEQadmin2, 07-20-2026, 11:10 AM
                          0 responses
                          26 views
                          0 reactions
                          Last Post SEQadmin2  
                          Started by SEQadmin2, 07-13-2026, 10:26 AM
                          0 responses
                          38 views
                          0 reactions
                          Last Post SEQadmin2  
                          Working...