Skip to content

Commit

Permalink
remove duplicate script
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Pfennig committed Sep 7, 2023
1 parent c47f162 commit 493883f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/multiprocess_mgcod.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

def get_command(args):
cwd = sys.path[0]
command = ['{}/mgcod.py'.format(cwd), '-o', args.output, '-p', args.path_to_predictions, '-n',
command = ['{}/mgcod.py'.format(cwd), '-o', args.path_to_output, '-p', args.path_to_predictions, '-n',
str(args.consecutive_windows), '-g', str(args.consecutive_gene_labels), '-w', str(args.window_size),
'-t', str(args.tolerance)]
if args.path_to_plots:
Expand Down Expand Up @@ -69,7 +69,7 @@ def main(argv):
'supporting outputs. If path does not exist, it will be '
'created. If -AA or -NT flag is set, sequences will be '
'saved here, too. [./results/]',
required=False, dest='output', default=f'{cwd}/results/')
required=False, dest='path_to_output', default=f'{cwd}/results/')
optional_args.add_argument('-m', '--path_to_plots', help='Directory where to save plots. Plots logodd ratio per '
'window for different MGM models. Only available with '
'isoform prediction. If path does not exist, it will be '
Expand Down

0 comments on commit 493883f

Please sign in to comment.