Skip to main content

Acclimatise is a Python library and command-line utility for parsing the help output of a command-line tool and then outputting a description of the tool in a more structured format

Project description

Acclimatise

Acclimatise is a Python library and command-line utility for parsing the help output of a command-line tool and then outputting a description of the tool in a more structured format, for example a Common Workflow Language tool definition.

Currently Acclimatise supports both CWL and WDL outputs, but other formats will be considered in the future, especially pull requests to support them.

Example

Lets say you want to create a CWL workflow containing the common Unix wc (word count) utility. Running wc --help returns:

Usage: wc [OPTION]... [FILE]...
  or: wc [OPTION]... --files0-from=F
Print newline, word, and byte counts for each FILE, and a total line if
more than one FILE is specified.  A word is a non-zero-length sequence of
characters delimited by white space.

With no FILE, or when FILE is -, read standard input.

The options below may be used to select which counts are printed, always in
the following order: newline, word, character, byte, maximum line length.
  -c, --bytes            print the byte counts
  -m, --chars            print the character counts
  -l, --lines            print the newline counts
      --files0-from=F    read input from the files specified by
                           NUL-terminated names in file F;
                           If F is - then read names from standard input
  -L, --max-line-length  print the maximum display width
  -w, --words            print the word counts
      --help display this help and exit
      --version output version information and exit

GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
Full documentation at: <http://www.gnu.org/software/coreutils/wc>
or available locally via: info '(coreutils) wc invocation'

If you run acclimatise -f wdl wc, which means "convert the wc command into wdl", you'll get the following output:

version 1.0

task Wc {
  input {
    Boolean bytesBytes
    Boolean charsChars
    Boolean linesLines
    String filesFiles0From
    Boolean maxMaxLineLength
    Boolean wordsWords
    String? orOr
  }
  command <<<
    wc \
      ~{orOr} \
      ~{true="--bytes" false="" bytesBytes} \
      ~{true="--chars" false="" charsChars} \
      ~{true="--lines" false="" linesLines} \
      ~{if defined(filesFiles0From) then ("--files0-from " +  '"' + filesFiles0From + '"') else ""} \
      ~{true="--max-line-length" false="" maxMaxLineLength} \
      ~{true="--words" false="" wordsWords}
  >>>
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

acclimatise-0.0.12.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

acclimatise-0.0.12-py2-none-any.whl (35.7 kB view details)

Uploaded Python 2

File details

Details for the file acclimatise-0.0.12.tar.gz.

File metadata

  • Download URL: acclimatise-0.0.12.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for acclimatise-0.0.12.tar.gz
Algorithm Hash digest
SHA256 af37e802705bcc6e4609702576c0443133b38866342034f5db6cc44c23f5681c
MD5 519c7ba539cffc41fe48992cb80f893d
BLAKE2b-256 d9ec8dfbdd31275681e5d9d3a3d36b6eb3aae9a1f5ac67606178ebf0ef74d5cd

See more details on using hashes here.

File details

Details for the file acclimatise-0.0.12-py2-none-any.whl.

File metadata

  • Download URL: acclimatise-0.0.12-py2-none-any.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for acclimatise-0.0.12-py2-none-any.whl
Algorithm Hash digest
SHA256 aa8b654c18e1ea81f1ba7a90ff82d9573bcc6bb1f6d4df57e8f2810a611f924c
MD5 107461601f7fa6bd707c50509956a0eb
BLAKE2b-256 1a51401f0c1a8a6f0f6d9f6711fd4138ffc028735b90db3b5d6b99db9529257c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page