techblog2022-05-20

Using UpSet Plots in Python

When showing inclusion relationships between sets, UpSet plots can be more useful than Venn diagrams. Here's how to use them in Python.

techblog2022-05-20

Submit Commands Directly as Jobs via qsub

When using a supercomputer, you often need to submit jobs via qsub. Sometimes you just want to run a one-liner, and having to create a script file first is tedious. Here, I use Python's argparse and subprocess to pseudo-submit commands as jobs directly from the command line.