Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • nthmost
    Junior Member
    • Mar 2013
    • 3

    Illuminate: processor for Illumina InterOP Run binaries (in Python)

    Greetings all,

    I work at InVitae and we just publicly released a library called Illuminate.



    The purpose of Illuminate is to emulate the stats you see when you load a run data folder within Illumina SAV, providing programmatic access to these metrics for whatever purposes you may have -- data storage, analysis, automated machine monitoring, and so on.

    This is completely free, open source software (MIT License) written in Python with the intent to be used, tested, and improved upon by the bioinformatics community.

    Features:
    • Simple command-line tool you can use to quickly inspect a run.
    • Built to be easily integrated into other code.
    • Easily extensible even if you think you are "not much of a programmer".
    • Results standardized to pandas DataFrame objects (so if you know how to work in R, you can probably get up to speed quickly with this)


    Here's an example of the smallest python script you could get away with using this tool.

    Code:
    import illuminate
    myDataset = illuminate.InteropDataset('path/to/rundata/')
    print myDataset.meta
    print myDataset.IndexMetrics()
    print myDataset.TileMetrics()
    print myDataset.QualityMetrics()
    And here's an example of how you would use the command-line reporter to do the same thing:

    Code:
    python illuminate --meta --index --tile --quality /path/to/rundata
    You can even have illuminate open up in an interactive iPython shell, where the dataset will be loaded up into an InteropDataset object for you:

    Code:
    python illuminate -i /path/to/rundata
    Not all of the metrics objects are fully fleshed out yet, although all of the binary parsers are "feature complete" in that you can produce a data dictionary and a DataFrame from them.

    I'm hoping that some of you fine folks can pipe up and let me know what might be useful to you -- or better, submit contributions, bug reports, and so on that will help Illuminate become as full-featured as it needs to be.

    This library has been in our production pipeline for several months now, reporting on cluster density, quality, and yield so we can keep tabs on sequencing run quality in an automated fashion.

    If you use it, or you have questions about it, please comment here and let me know!

    Cheers,
    Naomi
  • lingfung.tang
    Member
    • Dec 2010
    • 10

    #2
    interesting, never thought of cracking the bin files.. thanks.

    Comment

    • nthmost
      Junior Member
      • Mar 2013
      • 3

      #3
      Now available through pypi (pip)

      I just pushed the latest stable version of Illuminate to the public pypi server, so you can install it via:
      • pip install illuminate


      Note that, due to weirdness in python packaging, you will probably have to install two of its dependencies manually:
      • pip install numpy
      • pip install pandas


      More detailed instructions can be found on the pypi.python.org page for Illuminate.

      Stable versions will always be found there; development versions will always come from the bitbucket repository (see original post in this thread).

      Cheers,
      Naomi

      Comment

      Latest Articles

      Collapse

      • GATTACAT
        Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
        by GATTACAT
        Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
        07-01-2026, 11:43 AM
      • 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

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, Yesterday, 11:08 AM
      0 responses
      6 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-30-2026, 05:37 AM
      0 responses
      11 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-26-2026, 11:10 AM
      0 responses
      19 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 06-17-2026, 06:09 AM
      0 responses
      53 views
      0 reactions
      Last Post SEQadmin2  
      Working...