Skip to content

Commit

Permalink
Fix get orientation
Browse files Browse the repository at this point in the history
  • Loading branch information
jmp1985 committed Feb 27, 2025
1 parent 986aaaf commit 14c4376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/whippet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def simulate_and_reconstruct(config: Config):
"""

def get_orientations(all_orientations):
return [3]#list(range(6)) if all_orientations else [0]
return list(range(6)) if all_orientations else [0]

# Loop through all the parameters and do the simulation
for filename in config.pdb:
Expand Down

0 comments on commit 14c4376

Please sign in to comment.