diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-26 14:16:34 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-26 14:16:34 -0400 |
commit | f6fe059e37d8e8ee0cb6f7acf72c8918473ad3f7 (patch) | |
tree | e3c648763d65abeb1c10c7c8b1aee0e4f0a97eb8 /SelectiveGenomeAmplificationUI | |
parent | 83e9f59e7cb86f12f693b0097aba8fabd58275d4 (diff) |
add primer_weight to our score function
Diffstat (limited to 'SelectiveGenomeAmplificationUI')
-rwxr-xr-x | SelectiveGenomeAmplificationUI | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SelectiveGenomeAmplificationUI b/SelectiveGenomeAmplificationUI index 47a488d..810d0ca 100755 --- a/SelectiveGenomeAmplificationUI +++ b/SelectiveGenomeAmplificationUI @@ -50,8 +50,8 @@ questions = [ { 'question': 'maximum melting temperature for mers?', 'default_str': '30c', 'variable': 'max_melting_temp' }, { 'question': 'minimum melting temperature for mers?', 'default_str': '0c', 'variable': 'min_melting_temp' }, { 'question': 'maximum number of consecutively binding mers in hetero and homodimers?', 'default_str': '4', 'variable': 'max_consecutive_binding' }, - { 'question': 'what extra weight you want for highgly binding primers?', 'default_str': '0', 'variable': 'fg_weight' } - + { 'question': 'what extra weight do you want for highgly binding primers? (0-1)', 'default_str': '0', 'variable': 'fg_weight' }, + { 'question': 'what extra weight do you want for sets with a higher number of primers? (0-1)', 'default_str': '0', 'variable': 'primer_weight'} ] def bool_ask(ask_string, default): |