Skip to content
Snippets Groups Projects
Select Git revision
  • 4a8ee435afc44eeabc8e3ed1cf1ad28d42563cef
  • master default protected
2 results

architecture.rst

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    example_run.py 385 B
    #!/usr/bin/env python3
    import pwd
    import sys
    from os import chdir
    import subprocess
    
    
    chdir((sys.argv[0].rsplit('/', 1))[0])
    networkfile = "../data/input/networks/example_network.tsv"
    seedfile = "../data/input/seeds/example_seeds.txt"
    identifier = "example_run"
    command = f'./cami.py -n {networkfile} -s {seedfile} -id {identifier} -img -d -p --f;'
    subprocess.call(command, shell=True)