Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created November 29, 2019 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/1e60301729a625e3f9806b20f2f71c69 to your computer and use it in GitHub Desktop.
Save ryantm/1e60301729a625e3f9806b20f2f71c69 to your computer and use it in GitHub Desktop.
/nix/store/nj589qvzzrg6wagi6v9417glh0d8y3vm-snakemake-5.8.1
├── bin
│   ├── snakemake
│   └── snakemake-bash-completion
├── lib
│   └── python3.7
│   └── site-packages
│   ├── snakemake
│   │   ├── benchmark.py
│   │   ├── caching
│   │   │   ├── hash.py
│   │   │   ├── __init__.py
│   │   │   ├── local.py
│   │   │   ├── __pycache__
│   │   │   │   ├── hash.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── local.cpython-37.pyc
│   │   │   │   └── remote.cpython-37.pyc
│   │   │   └── remote.py
│   │   ├── checkpoints.py
│   │   ├── common.py
│   │   ├── conda.py
│   │   ├── cwl.py
│   │   ├── dag.py
│   │   ├── decorators.py
│   │   ├── exceptions.py
│   │   ├── executors.py
│   │   ├── gui.html
│   │   ├── gui.py
│   │   ├── __init__.py
│   │   ├── io.py
│   │   ├── jobscript.sh
│   │   ├── jobs.py
│   │   ├── logging.py
│   │   ├── __main__.py
│   │   ├── output_index.py
│   │   ├── parser.py
│   │   ├── persistence.py
│   │   ├── __pycache__
│   │   │   ├── benchmark.cpython-37.pyc
│   │   │   ├── checkpoints.cpython-37.pyc
│   │   │   ├── common.cpython-37.pyc
│   │   │   ├── conda.cpython-37.pyc
│   │   │   ├── cwl.cpython-37.pyc
│   │   │   ├── dag.cpython-37.pyc
│   │   │   ├── decorators.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── executors.cpython-37.pyc
│   │   │   ├── gui.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── io.cpython-37.pyc
│   │   │   ├── jobs.cpython-37.pyc
│   │   │   ├── logging.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── output_index.cpython-37.pyc
│   │   │   ├── parser.cpython-37.pyc
│   │   │   ├── persistence.cpython-37.pyc
│   │   │   ├── resources.cpython-37.pyc
│   │   │   ├── rules.cpython-37.pyc
│   │   │   ├── scheduler.cpython-37.pyc
│   │   │   ├── script.cpython-37.pyc
│   │   │   ├── shell.cpython-37.pyc
│   │   │   ├── singularity.cpython-37.pyc
│   │   │   ├── stats.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   ├── _version.cpython-37.pyc
│   │   │   ├── workflow.cpython-37.pyc
│   │   │   └── wrapper.cpython-37.pyc
│   │   ├── remote
│   │   │   ├── AzureStorage.py
│   │   │   ├── dropbox.py
│   │   │   ├── EGA.py
│   │   │   ├── FTP.py
│   │   │   ├── gfal.py
│   │   │   ├── gridftp.py
│   │   │   ├── GS.py
│   │   │   ├── HTTP.py
│   │   │   ├── __init__.py
│   │   │   ├── iRODS.py
│   │   │   ├── NCBI.py
│   │   │   ├── __pycache__
│   │   │   │   ├── AzureStorage.cpython-37.pyc
│   │   │   │   ├── dropbox.cpython-37.pyc
│   │   │   │   ├── EGA.cpython-37.pyc
│   │   │   │   ├── FTP.cpython-37.pyc
│   │   │   │   ├── gfal.cpython-37.pyc
│   │   │   │   ├── gridftp.cpython-37.pyc
│   │   │   │   ├── GS.cpython-37.pyc
│   │   │   │   ├── HTTP.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── iRODS.cpython-37.pyc
│   │   │   │   ├── NCBI.cpython-37.pyc
│   │   │   │   ├── S3.cpython-37.pyc
│   │   │   │   ├── S3Mocked.cpython-37.pyc
│   │   │   │   ├── SFTP.cpython-37.pyc
│   │   │   │   ├── webdav.cpython-37.pyc
│   │   │   │   └── XRootD.cpython-37.pyc
│   │   │   ├── S3Mocked.py
│   │   │   ├── S3.py
│   │   │   ├── SFTP.py
│   │   │   ├── webdav.py
│   │   │   └── XRootD.py
│   │   ├── report
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── report.html
│   │   │   └── table.html
│   │   ├── report.css
│   │   ├── resources.py
│   │   ├── rules.py
│   │   ├── scheduler.py
│   │   ├── script.py
│   │   ├── shell.py
│   │   ├── singularity.py
│   │   ├── stats.py
│   │   ├── utils.py
│   │   ├── _version.py
│   │   ├── workflow.py
│   │   └── wrapper.py
│   └── snakemake-5.8.1.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE.md
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
14 directories, 115 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment