Giter Site home page Giter Site logo

sacmes's Introduction

Andrew J. Bonham, PhD

Biochemistry professor, academic leader, data scientist, and nerd.

Connect with Me

Research LinkedIn Google Scholar


Technology


sacmes's People

Contributors

alshaver avatar amdowns avatar netzlab avatar paradoxdruid avatar sdcurtis avatar

Stargazers

 avatar  avatar

Forkers

erdalmk

sacmes's Issues

Implement better baseline subtraction

Currently, baseline subtraction is based simply on minimum data values; implement polynomial fit or other solution.

Initial thought: divide regressed data into overlapping windows, use Anderson-Darling test for normality to identify peak location, remove peak window and do polynomial fit to remaining baseline.

SACMES/sacmes/animation.py

Lines 638 to 657 in e88ad78

###############################################
# Absolute Max/Min Peak Height Extraction ###
###############################################
# -- If the user selects 'Absolute Max/Min' in the 'Peak Height
# Extraction Settings'
# -- within the Settings toolbar this analysis method will be used for PHE
fit_half = round(len(eval_regress) / 2)
min1 = min(eval_regress[:fit_half])
min2 = min(eval_regress[fit_half:])
max1 = max(eval_regress[:fit_half])
max2 = max(eval_regress[fit_half:])
################################################################
# If the user selected Peak Height Extraction, analyze PHE ###
################################################################
Peak_Height = max(max1, max2) - min(min1, min2)
if cg.SelectedOptions == "Peak Height Extraction":
data = Peak_Height

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.