seqeralabs / nf-tower

Nextflow Tower system

Home Page:https://tower.nf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow filtering by `User` on Run list

jfy133 opened this issue · comments

I've set up a workshop under organisation for my research group primarily for the purposes of tracking average resources across all pipeline runs, and this is now populated with many different runs executed by many different users.

However this makes it difficult for me to search for all the pipeline runs that I myself may have running at any one time (i.e., when I want a general overview rather than looking for a specific run).

I think it would be useful to be able to filter the list of runs to those from a given User name either in the search box in the Run tab, or from a dropdown that could be on the column title.

image

Other solutions thought about

I could star every one of my runs, but often I use that for particularly urgent runs that I want to monitor.

Hi @jfy133 👋

I'm happy to inform you that we are working on improving the Runs page and this request would also be addressed with it once it is picked up from the backlog.

In the meantime, custom tooling could be built upon the tower-cli, using it's normal TXT output or the optional JSON output.

tw --output json runs list --workspace YOUR_WORKSPACE_ID  | CUSTOM_FILTER_LOGIC

But I agree, having this ability in the UI is ideal.

🎉 awesome to hear! Thanks for the tip too!