Skip to content

Commit

Permalink
1700 now loads from the new output path
Browse files Browse the repository at this point in the history
  • Loading branch information
carljohnsen committed Oct 6, 2024
1 parent 8376869 commit 690da80
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/processing_steps/1700_bic_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@
if __name__ == '__main__':
args = default_parser(__doc__).parse_args()

if args.verbose >= 1: print (f'Loading BICs for {hdf5_root}/processed/bic/{args.sample}_bics.npy')
bics = np.load(f'{hdf5_root}/processed/bic/{args.sample}_bics.npy')
bics_path = f'{hdf5_root}/processed/bics/{args.sample}/{args.sample_scale}x/bics.npy'
if args.verbose >= 1: print (f'Loading BICs for {bics_path}')
bics = np.load(bics_path)

range = ranges[args.sample] // args.sample_scale
new_bics = bics[range[0]:range[1]]
Expand Down

0 comments on commit 690da80

Please sign in to comment.