On the content analysis front, I realized I needed a script that runs the entire pipeline, from transcription to tf-idf, so I can compare different configurations of that pipeline easily.
It should have been easy, but no, Python. It's very hard to run a Python script in a venv environment inside a bash script. Doing things with `source` just wouldn't work for me. After thirty minutes of trying various things, I realized the bash script could directly run executable stuff in venv/bin instead of trying to get the effects of venv/bin/activate into the current shell in order run a Python script.