Skip to content

Instantly share code, notes, and snippets.

@scottfrazer
Created April 13, 2016 16:17
Show Gist options
  • Save scottfrazer/2fc865fab8f200cf6bb9cf09eb0f1905 to your computer and use it in GitHub Desktop.
Save scottfrazer/2fc865fab8f200cf6bb9cf09eb0f1905 to your computer and use it in GitHub Desktop.
.
├── htcondor
│   ├── project
│   └── src
│   ├── main
│   │   ├── java
│   │   ├── resources
│   │   ├── scala
│   │   │   └── cromwell
│   │   │   └── backend
│   │   │   └── impl
│   │   │   └── htcondor
│   │   │   └── HtCondorBackend.scala
│   │   └── scala-2.11
│   └── test
│   ├── java
│   ├── resources
│   ├── scala
│   └── scala-2.11
├── jes
│   ├── project
│   └── src
│   ├── main
│   │   ├── java
│   │   ├── resources
│   │   ├── scala
│   │   │   └── cromwell
│   │   │   └── backend
│   │   │   └── impl
│   │   │   └── jes
│   │   │   └── JesBackend.scala
│   │   └── scala-2.11
│   └── test
│   ├── java
│   ├── resources
│   ├── scala
│   └── scala-2.11
├── local
│   ├── project
│   └── src
│   ├── main
│   │   ├── java
│   │   ├── resources
│   │   ├── scala
│   │   │   └── cromwell
│   │   │   └── backend
│   │   │   └── impl
│   │   │   └── local
│   │   │   └── LocalBackend.scala
│   │   └── scala-2.11
│   └── test
│   ├── java
│   ├── resources
│   ├── scala
│   └── scala-2.11
└── sge
├── project
└── src
├── main
│   ├── java
│   ├── resources
│   ├── scala
│   │   └── cromwell
│   │   └── backend
│   │   └── impl
│   │   └── sge
│   │   └── SgeBackend.scala
│   └── scala-2.11
└── test
├── java
├── resources
├── scala
└── scala-2.11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment