Skip to content

Commit

Permalink
Fixed assumption of serial process
Browse files Browse the repository at this point in the history
  • Loading branch information
dwest77a committed Feb 6, 2024
1 parent d7c8337 commit 0e60c9b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pipeline/scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,12 @@ def scan_config(args):
args.groupdir = get_attribute('GROUPDIR', args, 'groupdir')

proj_code = args.proj_code
proj_dir = f'{args.workdir}/in_progress/{proj_code}'

if args.groupID:
proj_dir = f'{args.workdir}/in_progress/{args.groupID}/{proj_code}'
else:
proj_dir = f'{args.workdir}/in_progress/{proj_code}'

logger.debug(f'Extracted attributes: {proj_code}, {args.workdir}, {proj_dir}')

filelist = f'{proj_dir}/allfiles.txt'
Expand Down

0 comments on commit 0e60c9b

Please sign in to comment.