This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from os.path import join | |
| configfile: 'config.yml' | |
| container: config['container'] | |
| rule create_protocol: | |
| input: | |
| bvec = join(config['in_dir'],config['bvec']), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input_images = ['A','B','C'] | |
| shell('touch {input_images}') | |
| max_iters = 4 | |
| #need this to make sure iterations don't go below 0! | |
| wildcard_constraints: | |
| iteration="[0-9]+" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| hours=6 | |
| mem=128000 | |
| gpus=1 | |
| cpus=32 | |
| if [ "$#" -lt 2 ] | |
| then | |
| echo "Usage $0 RULE_NAME NUM_BATCHES <optional snakemake args>" |
NewerOlder