aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-31add scorign to header and paramters and suchCalvin Morrison
2014-03-31update README.md for custom scoringCalvin Morrison
2014-03-31add custom scoringCalvin Morrison
2014-03-31proper sizes with custom mersCalvin Morrison
2014-03-31This closes bug #19. adds variables into the scoring header for later referenceCalvin Morrison
2014-03-31fixCalvin Morrison
2014-03-31fix sortCalvin Morrison
2014-03-31Add feature to have a top-scores file. closes issue #21Calvin Morrison
2014-03-28Update README.mdCalvin Morrison
2014-03-28Update README.mdCalvin Morrison
2014-03-28fix links and headersCalvin Morrison
2014-03-28Add headers, move stuff, tocCalvin Morrison
2014-03-28Spelling fixes in documentationCalvin Morrison
whoop wehhoop
2014-03-28update selected_mers.py portionCalvin Morrison
2014-03-28add a newlineCalvin Morrison
2014-03-28add docsCalvin Morrison
2014-03-27more documentationCalvin Morrison
2014-03-27add docs for commit all combinationsCalvin Morrison
2014-03-27Scoring all mer combinations from a file with a -mCalvin Morrison
2014-03-27add doc for ignore all from fileCalvin Morrison
2014-03-27Add support for ignoring all mers. and moreCalvin Morrison
- add a check for filters. quit if no mers make it - add a final fg mer selection file in the $current_run folder - add a filter/ folder as not to clutter the current run - fix double quote syntax - add option for ignore all for the UI
2014-03-27add ability to ignore all mers from a fileCalvin Morrison
2014-03-27improve output, add number of primers in first colum. this closes #12Calvin Morrison
2014-03-27move stuff aroundCalvin Morrison
2014-03-27Add scoring for specific combinations.Calvin Morrison
- add scoring for specific combos - update readme - add CLI args for score_mers.py - update score_wrapper - use more generic print functions in score_mers
2014-03-26majorly rewrite and revamp the script to support runnign parts at a timeCalvin Morrison
2014-03-26add primer_weight to our score functionCalvin Morrison
2014-03-26use floatCalvin Morrison
2014-03-25Score mer statistics. This closes #6Calvin Morrison
2014-03-25fix tableCalvin Morrison
2014-03-25add fg_weight to SelectiveGenomeAmplificationUICalvin Morrison
2014-03-25update selectivity equation, and update readmeCalvin Morrison
2014-03-25revert makefileCalvin Morrison
2014-03-25add average binding filterCalvin Morrison
2014-03-25don't populate, use the bg conts from selectivityCalvin Morrison
2014-03-25update headerCalvin Morrison
2014-03-25fix lenCalvin Morrison
2014-03-25working upscore_wrapper.shCalvin Morrison
Score wrapper essentially does a few things 1) backgrounds score_mers.py 2) creates an intercept for any Ctrl+C 3) waits for score_mers.py to finish 4) if there's an intercept, send a SEGV to the process and try and exit it works, it might be dirty, you might see some output... but still at least you can exit now
2014-03-25formatting changes, pylint up in this b****Calvin Morrison
2014-03-25remove stray ;Calvin Morrison
2014-03-25add score wrapper and SelectiveGenomeUI to make installCalvin Morrison
2014-03-25start to add debug variable to score_mersCalvin Morrison
2014-03-25Update scoring function.Calvin Morrison
Before we were incorrectly scoring our background. Using the new equation: score = (nb_primers * fg_mean_dist * fg_variance_dist) / (bg_ratio) where bg_ratio is bg_genome_length / count_of_bg_mers This will be faster, and will simplify our code (no whcky appends or anything. It can be even faster if we want to by not even storing the background points, just their hits. Should be relatively easy to do that.
2014-03-24add non-functioning score wrapperCalvin Morrison
2014-03-24Major Updates:Calvin Morrison
SelectiveGenomeAmplication: remove need (again) for any temporary fasta file, instead do all parsing in house with strstreamone and python correctly get reverse compliment. a combination of tac and rev, not just tac add non_melitng and filtered_binding variables to bash for clarity and to reduce clutter score_mers: This should speed up our loading and memory and probably each job since there's less memory overhead. revamp mer points - remove class, save as arrays instead - only allocate mers we need, - don't bother getting counts - reduce command line arguments - use original fasta files now, so it's easier for a user to use (as per issue #5 - remove weird pop_fg/bg functions - add one to total incase of zero div.
2014-03-24use biopython's temperature calculator... slow as dirtCalvin Morrison
2014-03-24fix strstream to work with mers listCalvin Morrison
2014-03-24add below and fix tabsCalvin Morrison
2014-03-23add mer list reading to strstreamCalvin Morrison
2014-03-21add end of sequences in as points in our arrayCalvin Morrison