|
|
@ -61,8 +61,8 @@ def clipboard_to_changelog(sheet, start_column, start_row): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@click.command() |
|
|
|
@click.command() |
|
|
|
@click.option("-s", "--sheet", prompt=True, required=True) |
|
|
|
@click.option("-s", "--sheet", prompt=True, required=True, default="Input_Data_*") |
|
|
|
@click.option("-w", "--well", prompt=True, required=True) |
|
|
|
@click.option("-w", "--well", prompt=True, required=True, default="A1") |
|
|
|
def cli(sheet, well): |
|
|
|
def cli(sheet, well): |
|
|
|
regex_well = r"(?P<column>[A-Z]{1,2})(?P<row>\d+)" |
|
|
|
regex_well = r"(?P<column>[A-Z]{1,2})(?P<row>\d+)" |
|
|
|
match = re.match(regex_well, well.upper()) |
|
|
|
match = re.match(regex_well, well.upper()) |
|
|
|