Skip to content
Snippets Groups Projects
Select Git revision
  • 87468754d1bce7cf2007e3dee963ef0c48a2238f
  • main default protected
2 results

plotcounts.py

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)