common-workflow-language/cwl2argparse

Name: cwl2argparse

Owner: Common Workflow Language

Description: cwl2argparse generates an argparse definition from CWL tool arguments that can be pasted in a Python program and used

Created: 2016-07-09 09:25:44.0

Updated: 2017-12-26 22:13:56.0

Pushed: 2017-01-25 22:17:15.0

Homepage: null

Size: 41

Language: Python

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

cwl2argparse

cwl2argparse generates an argparse definition from CWL tool arguments that can be pasted in a Python program and used

search.cwl

#!/usr/bin/env cwl-runner
cwlVersion: "cwl:draft-3"
class: CommandLineTool
baseCommand: ['search.py']

description: |
  Toy program to search inverted index and print out each line the term appears
inputs:
  - id: mainfile
  type: File
  description: Text file to be indexed
  inputBinding:
    position: 1

- id: term
  type: string
  description: Term for search
  inputBinding:
    position: 2

outputs:
    []

Result search.py

import argparse


def parser():
    description="""
        Toy program to search inverted index and print out each line the term appears
    """

    parser = argparse.ArgumentParser(description=description)
    arg_mainfile = parser.add_argument("arg_mainfile",
        type=argparse.FileType(),       help="""Text file to be indexed""",)
    arg_term = parser.add_argument("arg_term",
        type=str,       help="""Term for search""",)

    return parser
Installation
$ pip install cwl2argparse
Running
cwl2argparse FILES [FILES ...] [options]

Options:

For instance, providing arg_ as a prefix will result in generating the next lines for the example above:

    arg_mainfile = parser.add_argument("mainfile",
        type=argparse.FileType(),help="""Text file to be indexed""",)
    arg_term = parser.add_argument("term",
        type=str,help="""Term for search""",)

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.