sprocket

Crates.iosprocket
lib.rssprocket
version0.4.0
sourcesrc
created_at2019-07-19 17:06:47.582542
updated_at2024-07-10 14:00:19.161014
descriptionA package manager for the Workflow Description Language files
homepagehttps://github.com/stjude-rust-labs/sprocket
repositoryhttps://github.com/stjude-rust-labs/sprocket
max_upload_size
id150173
size64,881
Andrew Frantz (a-frantz)

documentation

https://docs.rs/sprocket

README

sprocket

CI: Status crates.io version crates.io downloads License: Apache 2.0 License: MIT

A package manager for Workflow Description Language files.

Request Feature · Report Bug · ⭐ Consider starring the repo! ⭐

🎨 Features

  • sprocket check Checks the syntactic validity of Workflow Description Language files.
  • sprocket lint Lint Workflow Description Language files.
  • sprocket explain Explain lint rules.

Guiding Principles

  • Modern, reliable foundation for everyday bioinformatics analysis—written in Rust. sprocket aims to package together a fairly comprehensive set of tools and for developing bioinformatics tasks and workflows using the Workflow Description Language. It is built with modern, multi-core systems in mind and written in Rust.
  • WDL specification focused. We aim to implement the various versions of the OpenWDL specification to the letter. In other words, sprocket aims to be workflow engine independent. In the future, we plan to make sprocket extendable for workflow engine teams.

📚 Getting Started

Installation

Before you can install sprocket, you'll need to install Rust. We recommend using rustup to accomplish this.

Once Rust is installed, you can install the latest version of sprocket by running the following command.

cargo install sprocket

🖥️ Development

To bootstrap a development environment, please use the following commands.

# Clone the repository
git clone git@github.com:stjude-rust-labs/sprocket.git
cd sprocket

# Build the crate in release mode
cargo build --release

# Run the `sprocket` command line tool
cargo run --release

🚧️ Tests

Before submitting any pull requests, please make sure the code passes the following checks (from the root directory).

# Run the project's tests.
cargo test --all-features

# Run the tests for the examples.
cargo test --examples --all-features

# Ensure the project doesn't have any linting warnings.
cargo clippy --all-features

# Ensure the project passes `cargo fmt`.
cargo fmt --check

# Ensure the docs build.
cargo doc

🤝 Contributing

Contributions, issues and feature requests are welcome! Feel free to check issues page.

📝 License

This project is licensed as either Apache 2.0 or MIT at your discretion.

Copyright © 2023-Present St. Jude Children's Research Hospital.

Commit count: 15

cargo fmt