Skip to content
Snippets Groups Projects
Select Git revision
  • 1a077109610d65db7318e981833b42285237a205
  • master default protected
  • updates
  • hierarchical-keywords
  • map
  • topoi
  • layer
  • tsne-layout
8 results

pixi.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    example_run.py 403 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 -t diamond robust;'
    subprocess.call(command, shell=True)