Skip to content

Commit

Permalink
Merge pull request #211 from TheSkyentist/parallel-groups
Browse files Browse the repository at this point in the history
Fixed incorrect PASSAGE id
  • Loading branch information
gbrammer authored Mar 1, 2024
2 parents 0d5c454 + add2803 commit 7da640e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grizli/pipeline/auto_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -1851,7 +1851,7 @@ def parse_visits(files=[], field_root='', RAW_PATH='../RAW', use_visit=True, com
# Remove visit number from NIRISS parallel visits
for v in visits:
IS_NIS_PARALLEL = v['product'].startswith('indef-03383')
IS_NIS_PARALLEL |= v['product'].startswith('indef-01471')
IS_NIS_PARALLEL |= v['product'].startswith('indef-01571')

ks = v['product'].split('-')

Expand Down

0 comments on commit 7da640e

Please sign in to comment.