Skip to content

Commit

Permalink
Add part05 with support files.
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardomurri committed Jul 12, 2016
1 parent bd24617 commit aa9a7bf
Show file tree
Hide file tree
Showing 7 changed files with 67,680 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docs/programmers/tutorials/workflows/downloads/argp.py
@@ -0,0 +1,26 @@
#! /usr/bin/env python

import os
import sys

from gc3libs.cmdline import SessionBasedScript

if __name__ == '__main__':
from argp import AScript
AScript().run()

class AScript(SessionBasedScript):
"""
Minimal workflow scaffolding.
"""
def __init__(self):
super(AScript, self).__init__(version='1.0')
def new_tasks(self, extra):
return []
def setup_args(self):
# this argument is a string (default type)
self.add_param('input', type=str, help="Input file")
# the `radius` argument is an integer
self.add_param('radius', type=int, help="Convolution radius")
# the `sigma` argument is a floating-point number
self.add_param('sigma', type=float, help="Threshold")
15,905 changes: 15,905 additions & 0 deletions docs/programmers/tutorials/workflows/downloads/topblast/176279.9.PATRIC.faa

Large diffs are not rendered by default.

15,411 changes: 15,411 additions & 0 deletions docs/programmers/tutorials/workflows/downloads/topblast/176280.10.PATRIC.faa

Large diffs are not rendered by default.

18,023 changes: 18,023 additions & 0 deletions docs/programmers/tutorials/workflows/downloads/topblast/359786.13.PATRIC.faa

Large diffs are not rendered by default.

17,841 changes: 17,841 additions & 0 deletions docs/programmers/tutorials/workflows/downloads/topblast/359787.11.PATRIC.faa

Large diffs are not rendered by default.

Binary file added docs/programmers/tutorials/workflows/part05.pdf
Binary file not shown.

0 comments on commit aa9a7bf

Please sign in to comment.