(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
import requests | |
import json | |
import string | |
import getpass | |
base_url = 'https://testing2.fair-dom.org' | |
containing_project_id = 1 | |
token = "" |
#!/cvmfs/main.galaxyproject.org/venv/bin/python | |
# | |
# Generate Galaxy Conda mulled hashes (NOT Biocontainers mulled hashes) from a list of requirements | |
# | |
import sys | |
sys.path.insert(0, '/cvmfs/main.galaxyproject.org/galaxy/lib') | |
from galaxy.tools.deps.conda_util import ( |
import os | |
def on_starting(server): | |
""" | |
Attach a set of IDs that can be temporarily re-used. | |
Used on reloads when each worker exists twice. | |
""" | |
server._worker_id_overload = set() |