-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
62 lines (39 loc) · 1.13 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# vi: set ts=2 fdm=marker:
=== Installation ===
{{{
==== Dependencies ====
{{{
- nose (for nosetest)
- for spline alignment, one of the following two:
-- scikit-datasmooth
-- rpy2 and R installation
-- python-xlwt
}}}
==== Instructions ====
{{{
To install you should run
$ python setup.py install
if you would like to install it to a local folder, you can use
$ python setup.py install --prefix=/your/install/path
to install it to any path on your system (just make sure that this path is in
your $PYTHONPATH and add the./bin folder to your $PATH).
}}}
=== Extra packages ===
There are some extra packages that can increase the features and improve the speed of the toolset
==== Fast lowess ====
To get fast lowess performance (several orders of magnitude faster), do the
following
git clone https://github.com/carljv/Will_it_Python.git
cd Will_it_Python/MLFH/CH2/lowess\ work/
python setup.py build
sudo python setup.py install
}}}
=== Testing ===
{{{
run all tests
$ nosetests test
with coverage analysis
$ nosetests test --with-coverage --cover-package=msproteomicstoolslib
no slow tests
$ nosetests -a '!slow' test
}}}