diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-03 14:59:42 -0500 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-03 14:59:42 -0500 |
commit | ecb8a85eb5cf25e0aba4a3d2d7abf94f63f17297 (patch) | |
tree | 241afb5a58e6004fa6de7d9bc0c8c6072ab05b61 /SelectiveGenomeAmplification | |
parent | 3206ee1ccdcfac65e6af7f0c9913854985b3ee58 (diff) |
update defaults and align variable names with global env variables
Diffstat (limited to 'SelectiveGenomeAmplification')
-rwxr-xr-x | SelectiveGenomeAmplification | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/SelectiveGenomeAmplification b/SelectiveGenomeAmplification index 3047511..bb52626 100755 --- a/SelectiveGenomeAmplification +++ b/SelectiveGenomeAmplification @@ -23,24 +23,36 @@ fi # output directory : ${output_directory=`basename $foreground`_`basename $background`} + # temp directory : ${tmp_directory=$output_directory/.tmp} + # directory to store our counts and sorted counts : ${counts_directory=$tmp_directory} + # range of mers, min and max : ${min_mer_range=6} -: ${max_mer_range=10} +: ${max_mer_range=12} + # max mer distance, the distance between two mers in our selected outputs : ${max_mer_distance=5000} + # min/maximum kmer meling point : ${max_melting_temp=30} -: ${min_melting_temp=18} +: ${min_melting_temp=0} + # minimum mer count : ${min_mer_count=0} + # maximum mers to pick : ${max_select=15} + +# maximum mers to check +: ${max_check=35} + # mers to specifically IGNORE, space delimited : ${ignore_mers=''} + # maximum number of mers that are consecutively binding : ${max_consecutive_binding=4} |