Skip to content

Commit

Permalink
Add description to output_traces flag
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyshuttleworth committed Jun 26, 2024
1 parent 04a5b9d commit 4610bcb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions scripts/run_herg_qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ def main():
parser.add_argument('--debug', action='store_true')
parser.add_argument('--log_level', default='INFO')
parser.add_argument('--Erev', default=-90.71, type=float)
parser.add_argment('--output_traces', action='store_true')
parser.add_argment('--output_traces', action='store_true',
description="When true output raw and processed traces as .csv files")

args = parser.parse_args()

Expand Down Expand Up @@ -1269,8 +1270,6 @@ def detect_ramp_bounds(times, voltage_sections, ramp_no=0):
@returns tstart, tend: the start and end times for the ramp_no+1^nth ramp
"""

# Decouple this code from syncropatch_export

ramps = [(tstart, tend, vstart, vend) for tstart, tend, vstart, vend
in voltage_sections if vstart != vend]
try:
Expand Down

0 comments on commit 4610bcb

Please sign in to comment.