Skip to content

Commit

Permalink
fixing rule [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
davidebolo1993 committed Apr 3, 2024
1 parent 8ccbb57 commit a19a352
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ cosigt_smk/.snakemake/*
cosigt_smk/workflow/scripts/__pycache__
cosigt_smk/snakemake.run.sh
cosigt_smk/config/*
cosigt_smk/.*
2 changes: 1 addition & 1 deletion cosigt_smk/workflow/rules/odgi.smk
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ rule cluster:
input:
rules.odgi_similarity.output
output:
config['output'] + '/cluster/{region}.json'
config['output'] + '/cluster/{region}.clusters.json'
threads:
1
resources:
Expand Down
4 changes: 2 additions & 2 deletions cosigt_smk/workflow/scripts/organize.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def main():
parse arguments and organize inputs for running cosigt properly without additional efforts from the users
'''

parser = argparse.ArgumentParser(prog='cosigt', description='''COsine SImilarity-based GenoTyper''', epilog='''Developed by Davide Bolognini @ Human Technopole''', formatter_class=CustomFormat)
parser = argparse.ArgumentParser(prog='organize.py', description='''COsine SImilarity-based GenoTyper''', epilog='''Developed by Davide Bolognini @ Human Technopole''', formatter_class=CustomFormat)

required = parser.add_argument_group('Required I/O arguments')

Expand All @@ -126,7 +126,7 @@ def main():
additional = parser.add_argument_group('Additional I/O arguments')
additional.add_argument('--blacklist', help='blacklist of samples (one per line) that should not be included in the analysis [None]', metavar='', required=False, default=None)
additional.add_argument('--path', help='path name in the pangenome graph to be used as a reference [grch38]',type=str, default='grch38')
additional.add_argument('--binds', help='additional paths to bind for singularity in /path/1,/path/2 format', type=str, default='/localscratch')
additional.add_argument('--binds', help='additional paths to bind for singularity in /path/1,/path/2 format [/localscratch]', type=str, default='/localscratch')
additional.add_argument('--output', help='output folder [results]', metavar='FOLDER', default='results')


Expand Down

0 comments on commit a19a352

Please sign in to comment.