Git Product home page Git Product logo

pymass's Introduction

PyMass

Package for analyzing MS with Python

It can provide the following functionalities now:

  • mzXMLParser for fast and efficient mzXML parse
  • FPIC method for extracting PICs from raw LC-MS dataset effectively and quickly

In future, more file formats will be supported and more methods will be implemented into PyMass package, so researchers can create complex analysis workflows for LC-MS datasets in Python with ease.

Install

Required Dependencies

Download

  • Download pymass
  • Unzip it into pymass directory

Compile

  • Windows:
    • Open "VS2015 x64 Native Tools Command Prompt"

    • Run following commands in the prompt

       cd pymass
       mkdir build
       cd build
       cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release
       nmake
       nmake install
  • Linux:
    • PyMass can be built and run smoothly in Ubuntu Linux 16.04. We provide a bash script to download thirdparty libraries, apply the patches, build pymass automatically
       wget https://github.com/zmzhang/pymass/raw/master/build.sh
       chmod +x build.sh
       ./build.sh

Usage

  • Go to pymass/python directory

  • Download MM14 dataset from this url and unzip it

  • Run following Python code fragment to parse mzXML file and extract PICs from it

     from _pymass import mzXMLParser, FPICs
     import sys
     mzfile="MM14_20um.mzxml"
     mzfile=mzfile.encode(sys.getfilesystemencoding())
     parser=mzXMLParser()
     lcms = parser.parseFile(mzfile)
     pics = FPICs(lcms, 300.0, 100.0, 0.5)

Contact

For any questions, please contact:

[email protected]

pymass's People

Contributors

zmzhang avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

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.