Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am dleehr on github.
  • I am leehro (https://keybase.io/leehro) on keybase.
  • I have a public key whose fingerprint is 1CEC 11F4 F29E 68FC 12A4 B067 8A8B 8EAB EEA0 5DB7

To claim this, I am signing this object:

#!/usr/bin/env cwl-runner
cwlVersion: v1.0
class: ExpressionTool
requirements:
- class: InlineJavascriptRequirement
inputs:
primary:
type: File
@dleehr
dleehr / copy.cwl
Created July 21, 2015 16:37
CWL Boot2Docker permissions
#!/usr/bin/env cwl-runner
class: CommandLineTool
requirements:
- class: DockerRequirement
dockerImageId: 'ubuntu:latest'
inputs:
- id: "#source"
alert('This is on gist.github.com');
@dleehr
dleehr / dryad-code-review-checklist.md
Created August 27, 2014 16:00
Checklist for Dryad Code Review

Code Review Checklist

  • Read through the code to ensure it is:
    • Legible
    • Well-commented
    • Free of any "code smells"
  • Ensure the associated documentation is up to date.
  • Compile it on your local machine and test the new functionality.
  • Verify that the change is accompanied by adequate testing code. Verify that the code passes the tests.