Skip to content

Command Reference

tsp-maker provides four main commands:

Command Description
parse Convert predictor outputs to intermediate format
build Assemble intermediate format into TSP package
upload Upload TSP package to Zenodo
validate Check TSP package validity

Global Options

--version  Show version and exit
--help     Show help message

Typical Workflow

# 1. Parse prediction outputs
tsp-maker parse af3 /predictions /intermediate

# 2. Build TSP package
tsp-maker build /intermediate /output --name my-dataset --title "My Dataset"

# 3. Validate
tsp-maker validate /output

# 4. Upload
tsp-maker upload /output --token $ZENODO_TOKEN --publish

Getting Help

Each command has its own --help:

tsp-maker --help
tsp-maker parse --help
tsp-maker parse af3 --help
tsp-maker build --help
tsp-maker upload --help