https://github.com/unixjunkie/pardi
Parallel and Distributed execution of command lines, pardi !
https://github.com/unixjunkie/pardi
command-line command-line-tool distributed ocaml-program parallel
Last synced: about 1 month ago
JSON representation
Parallel and Distributed execution of command lines, pardi !
- Host: GitHub
- URL: https://github.com/unixjunkie/pardi
- Owner: UnixJunkie
- Created: 2019-02-04T02:37:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-19T08:51:20.000Z (about 4 years ago)
- Last Synced: 2025-03-27T19:39:37.389Z (2 months ago)
- Topics: command-line, command-line-tool, distributed, ocaml-program, parallel
- Language: OCaml
- Homepage:
- Size: 468 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ParDi
Parallel and Distributed execution of command lines, pardi !
# Example
Compress a file in parallel using 1MB chunks:
```
pardi -d b:1048576 -p -i -o .xz -w 'xz -c -9 %IN > %OUT'
```Standardize molecules in parallel:
```
pip3 install chemo-standardizer
pardi -i input.smi -o output_std.smi -c 400 -d l -ie '.smi' -oe '.smi' \
-w 'standardiser -i %IN -o %OUT 2>/dev/null'
```# Install
For beginners or non opam users: download and execute the latest self-installer
shell script from (https://github.com/UnixJunkie/pardi/releases).Then, execute:
```
./pardi-2.0.1.sh ~/usr/pardi-2.0.1
```This will create ~/usr/pardi-2.0.1/bin/pardi.
For opam users:
```
opam install pardi
```Do not hesitate to contact the author in case of troubles or if
you have any question.