C. Titus Brown
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Repeatability in Practice [toc] --- ## WHOAMI [Lab for Data Intensive Biology](http://ivory.idyll.org/lab/) [Blog](http://ivory.idyll.org/blog/) [Twitter](http://twitter.com/ctitusbrown) --- ## The basic idea ### Goals of repeatability In order of importance, 1. Make it as easy as possible for us to rerun everything from any point in the workflow. 2. Make it as easy as possible to try new things. --- 4. Make it easy to add / adjust analyses in response to reviewers. 5. Make it 100% repeatable. --- ### Some diagrams Tools: ![](https://i.imgur.com/Orzwpt3.png) --- Fitting the tools together: ![](https://i.imgur.com/MloEjg5.png) --- ### What many of us have converged on in the DIB Lab git/GitHub + snakemake + (Jupyter Notebook or R) + conda With this collection of tools, we can generally achieve full repeatability. --- Some points : * we use a diverse array of computing environments: Mac vs Linux, HPC vs cloud (AWS/GCP/Jetstream) vs docker vs binder (dynamically configured docker containers). This approach works across all of them more or less seamlessly. * Software installation was THE last remaining major pain point for us until bioconda came along. This solves almost all of the problems. --- * And, before that, my workflow tool was Makefiles which no one but me liked - until snakemake, which we've more or less converged on. * This stack of software is something that (with minor modifications and sometimes major extensions) most data scientists I talk to have converged on. --- * The Carpentries teaches most of this (not snakemake or conda, but conda is an easy extension) * We ran a whole ~100 person workshop using (bio)conda with only a few failures! --- ## The Journey --- ### Overall strategy For each paper we write, we try to provide a repeatable pipeline on GitHub. Then, for publication, we link the GitHub repo to [Zenodo](http://zenodo.org) and cut a new version, which gives us a DOI to cite for exactly the version of the code used. --- Large raw data files are hosted on specific archival services (e.g. the Sequence Read Archive). Zenodo or figshare or the [Open Science Framework](http://osf.io) serve as nice places to dump intermediate files. --- For figure generation, we tend to use Jupyter Notebooks and/or R scripts that are in the github repo. Where possible we put the summary files used to build the figures in the github repo; if they're bigger than 100MB, we put them on OSF; if they're bigger than 5 GB, we start looking at zenodo. --- Note: to the best of our knowledge, no one has ever bothered to reproduce our papers from scratch. But we feel good about it anyway :). --- ### The Bad Old Days For [Brown and Callan, 2004](http://www.pnas.org/content/101/8/2404), I used a pile of scripts - shell scripts to execute Python scripts to do the heavy lifting. It worked well for the time, but was virtually impossible for anyone else to reproduce unless they were able to compile a specific Python package with C extensions (which at the time was extra hard). --- #### Cool beans Of note, this approach let me determine that a bug in the code didn't significantly affect the published results (I found the bug much later, when I was reusing the pipeline elsewhere). --- ### The Days of Make For many years, I switched to using make. You can see a old-style repo here, [2016-metagenome-assembly-eval](https://github.com/dib-lab/2016-metagenome-assembly-eval) ([see preprint](https://www.biorxiv.org/content/early/2017/07/03/155358)). The repo contains the LaTeX paper source, some notebooks for graphing, and a `pipeline` directory with [a big-arse Makefile](https://github.com/dib-lab/2016-metagenome-assembly-eval/blob/master/pipeline/Makefile) in it. --- I'm actually updating this repo to resubmit in response to reviewers, and we're [now using conda](https://github.com/dib-lab/2016-metagenome-assembly-eval/blob/pipeline/pipeline/Makefile) to manage software installs. --- ### The brief middle: Docker! Docker! Docker! When docker came out, I tried it out for a bunch of blog posts - see [week of khmer](http://ivory.idyll.org/blog/2015-wok-notes.html). This ended up being used in a paper, [Crossing the streams](https://peerj.com/preprints/890/) - see Docker instructions [here](https://github.com/dib-lab/2014-streaming/blob/master/DOCKER.rst). --- I wasn't happy with this because it turns out that it's virtually impossible to get docker installed on clusters. But it sure did make it easy to run the software across a variety of platforms. --- ### The last year or so Now we've converged on an approach that uses conda and snakemake; see [2018 spacegraphcats paper](https://github.com/dib-lab/2018-paper-spacegraphcats/blob/ctb/pipeline-base/Snakefile) - sorry, **private link** for now. --- ## Other things to mention --- ### The importance of libraries We tend to encapsulate our reusable functionality in Python libraries that are well tested, versioned, etc. While this has some flaws, it means that the bits of our code that get reused in multiple (often shared) projects in the lab get progressively better tested. It also makes them available to others. The skillset required is pretty advanced though. (Examples: [khmer](https://github.com/dib-lab/khmer/), [screed](https://github.com/dib-lab/screed/), [sourmash](https://github.com/dib-lab/sourmash)). --- On the flip side, we do not generally apply any kind of formal testing to our per-project scripts. At best, we try to identify small data sets that we can use to run the whole paper-specific pipeline from start to finish. --- ### Binder With relatively little effort, you can make your figure-generating Jupyter Notebooks / RMarkdown executable by anyone with a single click through mybinder.org - see [my example RStudio repo](https://github.com/ngs-docs/2018-ggg-rstudio-bioinformatics-ws/), and try clicking "launch binder". --- ### Lessons from Oslo, 2016 See [this repo](https://2016-oslo-repeatability.readthedocs.io/en/latest/) for some hands-on lessons in Jupyter Notebook, make, and git. --- ### Workflows-as-applications In [this blog post](http://ivory.idyll.org/blog/2018-workflows-applications.html), I talk about how we're using pydoit and snakemake to **write command line applications**. This is a pretty nifty way to tie a pile of code together into soemthing that looks like a pipeline but can take advantage of things like dependency graphs, cluster execution and Kubernetes. --- Here are some links: * [dammit](https://dammit.readthedocs.io/), a transcriptome annotator based around pydoit. * [dahak metagenomics pipeline](https://github.com/dahak-metagenomics/dahak), based around snakemake. * [spacegraphcats](https://github.com/spacegraphcats/spacegraphcats/), a fairly simple command line snakemake wrapper around Snakemake. * [eel pond](https://dib-lab.github.io/eelpond/), an emerging SIMPLE approach to dynamically building up Snakemake dependencies in response to user configuration. --- The downsides to this approach are that we now writing papers that have workflows in them that call out to workflows that use wrapped workflows... workflows all the way down!!! --- ### Why snakemake? --- Pros: * Python-based, so we don't have to use some hacky weird configuration language; everything can be munged in Python. (This is also a downside - things can be come arbitrarily complicated.) * surprisingly simple and clean * surprisingly powerful * can grow the files incrementally as your needs grow --- * ties seamlessly into workflow engines (clusters, kubernetes), conda, docker & singularity. Like, it **actually works**. --- Cons: * a confusing mixture of generic rules and specific rules. For example, [this](https://github.com/spacegraphcats/spacegraphcats/blob/master/conf/Snakefile#L66) is a specific rule for a particular output (configured by user for each workflow and then parameterized from that configuration), while [this](https://github.com/spacegraphcats/spacegraphcats/blob/master/conf/Snakefile#L128) is a general rule that snakemake can parameterize for you. * like anything else, can become a gigantic mess. We haven't yet worked out ways of keeping it clean. * Fast evolving ecosystem. --- ### Using argparse in Python It's a small thing, but I strongly recommend using proper argument parsing - a main() function, with argparse. See [top of this script](https://github.com/spacegraphcats/spacegraphcats/blob/master/scripts/chunk-genomes-to-vectors.py#L17) for an example. --- It makes setting default parameters and adding arguments really easy, and gives good error messages too.

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully