galaxy-iuc / parsec

Access Galaxy at the speed of light with automatically generated BioBlend wrappers
Apache License 2.0
9 stars 9 forks source link

Workflow: publish histories matching a title and grab links #8

Closed hexylena closed 7 years ago

hexylena commented 7 years ago

I almost wrote a tool for this since I've done this for 20+ histories x 3 times this semester. Clearly should be JQ + parsec.

hexylena commented 7 years ago
parsec histories_get_histories | \
    jq '.[] | select(.name | contains("2017.04.27")) | .id'  -r | \
    xargs parsec histories_update_history --importable true
hexylena commented 7 years ago

Fixed in #10