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

      • 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
      • 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

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, 07-13-2026, 10:26 AM
      0 responses
      24 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-09-2026, 10:04 AM
      0 responses
      34 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-08-2026, 10:08 AM
      0 responses
      21 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-07-2026, 11:05 AM
      0 responses
      34 views
      0 reactions
      Last Post SEQadmin2  
      Working...