Skip to content

Commit

Permalink
added excel files to git ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
jshmu committed Nov 5, 2019
1 parent 870ce48 commit 848c37f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ coverage.xml

# Data from QC tests
*.csv
*.xlsx

# Translations
*.mo
Expand Down
4 changes: 2 additions & 2 deletions modules/thermo-cycler/QC/offset_test/H1_thermometer.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def millis():
parser = optparse.OptionParser(usage='usage: %prog [options] ')
parser.add_option("--time", dest = "time", type = "int",default = 15, help = "time to run")
parser.add_option("--target", dest="target", type = float, default = 0, help ="target temp")
parser.add_option("-p", "--port", dest = "port", type = "str", default = 'COM9', help = "thermometer port")
parser.add_option("-p", "--port", dest = "port", type = "str", default = 'COM11', help = "thermometer port")
(options, args) = parser.parse_args(args = None, values = None)

#Establish thermometers
Expand All @@ -24,7 +24,7 @@ def millis():
thermometer_H1.setup()
#thermometer_H1.temp_read()
#Open CSV file with corresponding
filename = "results/GeneAmp_PCR_40C_to60C_%s_target_%sC.csv"%(datetime.now().strftime("%m-%d-%y_%H-%M"), 'VOL50uL')
filename = "results/OT_PCR_70C-to-72C_P30I20D0_%s_target_%sC.csv"%(datetime.now().strftime("%m-%d-%y_%H-%M"), 'VOL50uL')
print(filename)
count = 0
with open('{}.csv'.format(filename), 'w', newline='') as data_file:
Expand Down

0 comments on commit 848c37f

Please sign in to comment.