Skip to content

Commit 6dc1aff

Browse files
committed
[NOP] add licence
1 parent e939d5c commit 6dc1aff

File tree

6 files changed

+177
-3
lines changed

6 files changed

+177
-3
lines changed

License.txt

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
OpenMS is released under a 3 clause BSD license.
2+
The respective license file can be found in the LICENSE file
3+
The source code of OpenMS is available via our homepage http://www.OpenMS.de
4+
5+
OpenMS depends on third party libraries which are listed below.
6+
The source code of these libraries is available from their website or can be
7+
obtained via a "contrib" package, which specifically configures these libraries
8+
for OpenMS and is available on our website.
9+
10+
The respective license files for the contrib libraries can be found
11+
in the "contrib" package root directory or online (see below).
12+
13+
libSVM
14+
- URL: http://www.csie.ntu.edu.tw/~cjlin/libsvm/
15+
- License available at http://www.csie.ntu.edu.tw/~cjlin/libsvm/COPYRIGHT
16+
17+
GLPK
18+
- URL: http://www.gnu.org/s/glpk/
19+
- License available at http://www.gnu.org/copyleft/gpl.html
20+
21+
Qt 4
22+
- URL: http://qt.nokia.com/
23+
- License available at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt
24+
25+
Xerces-C
26+
- URL: http://xerces.apache.org/xerces-c/index.html
27+
- License available at http://www.apache.org/licenses/LICENSE-2.0.html
28+
29+
Boost (headers)
30+
- URL: http://www.boost.org/
31+
- License available at http://www.boost.org/more/license_info.html
32+
33+
ZLib
34+
- URL: http://www.zlib.net
35+
- License available at http://www.zlib.net/zlib_license.html
36+
37+
BZ2Lib
38+
- URL: http://www.bzip.org/
39+
- License.bzip2.txt
40+
41+
Search engines:
42+
43+
OMSSA
44+
- URL: http://pubchem.ncbi.nlm.nih.gov/omssa/
45+
- License: Public Domain
46+
47+
X!Tandem:
48+
- URL and source code: http://www.thegpm.org/tandem/
49+
- License available at: http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt
50+
51+
MyriMatch:
52+
- URL and source code: http://fenchurch.mc.vanderbilt.edu/software.php
53+
- License available at: http://www.apache.org/licenses/LICENSE-2.0.txt
54+

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ that show the different functions of pyOpenMS.
1212
Installation
1313
=============
1414

15-
Installation is best done through PyPI (the Python package index) where binary
16-
packages are provided for the release versions of OpenMS, covering
17-
Linux/Mac/Windows.
15+
Installation is best done through [PyPI](https://pypi.python.org/pypi/pyopenms)
16+
(the Python package index) where binary packages are provided for the release
17+
versions of OpenMS, covering Linux/Mac/Windows.
1818

src/examples/PhosphoScoring.py

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
"""
2+
--------------------------------------------------------------------------
3+
OpenMS -- Open-Source Mass Spectrometry
4+
--------------------------------------------------------------------------
5+
Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
6+
ETH Zurich, and Freie Universitaet Berlin 2002-2013.
7+
8+
This software is released under a three-clause BSD license:
9+
* Redistributions of source code must retain the above copyright
10+
notice, this list of conditions and the following disclaimer.
11+
* Redistributions in binary form must reproduce the above copyright
12+
notice, this list of conditions and the following disclaimer in the
13+
documentation and/or other materials provided with the distribution.
14+
* Neither the name of any author or any participating institution
15+
may be used to endorse or promote products derived from this software
16+
without specific prior written permission.
17+
For a full list of authors, refer to the file AUTHORS.
18+
--------------------------------------------------------------------------
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
23+
INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26+
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28+
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
"""
131
import pyopenms, re
232

333
def convertToRichMSSpectrum(input_):

src/examples/convertToMGF.py

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
"""
2+
--------------------------------------------------------------------------
3+
OpenMS -- Open-Source Mass Spectrometry
4+
--------------------------------------------------------------------------
5+
Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
6+
ETH Zurich, and Freie Universitaet Berlin 2002-2013.
7+
8+
This software is released under a three-clause BSD license:
9+
* Redistributions of source code must retain the above copyright
10+
notice, this list of conditions and the following disclaimer.
11+
* Redistributions in binary form must reproduce the above copyright
12+
notice, this list of conditions and the following disclaimer in the
13+
documentation and/or other materials provided with the distribution.
14+
* Neither the name of any author or any participating institution
15+
may be used to endorse or promote products derived from this software
16+
without specific prior written permission.
17+
For a full list of authors, refer to the file AUTHORS.
18+
--------------------------------------------------------------------------
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
23+
INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26+
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28+
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
"""
131
###########################################################################
232
## Example script to convert any file to MGF
333
###########################################################################

src/examples/peakpicker_scipyFFT.py

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
"""
2+
--------------------------------------------------------------------------
3+
OpenMS -- Open-Source Mass Spectrometry
4+
--------------------------------------------------------------------------
5+
Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
6+
ETH Zurich, and Freie Universitaet Berlin 2002-2013.
7+
8+
This software is released under a three-clause BSD license:
9+
* Redistributions of source code must retain the above copyright
10+
notice, this list of conditions and the following disclaimer.
11+
* Redistributions in binary form must reproduce the above copyright
12+
notice, this list of conditions and the following disclaimer in the
13+
documentation and/or other materials provided with the distribution.
14+
* Neither the name of any author or any participating institution
15+
may be used to endorse or promote products derived from this software
16+
without specific prior written permission.
17+
For a full list of authors, refer to the file AUTHORS.
18+
--------------------------------------------------------------------------
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
23+
INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26+
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28+
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
"""
131
###########################################################################
232
## Create peak-picking figure
333
###########################################################################

src/examples/pymol_example.py

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
"""
2+
--------------------------------------------------------------------------
3+
OpenMS -- Open-Source Mass Spectrometry
4+
--------------------------------------------------------------------------
5+
Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
6+
ETH Zurich, and Freie Universitaet Berlin 2002-2013.
7+
8+
This software is released under a three-clause BSD license:
9+
* Redistributions of source code must retain the above copyright
10+
notice, this list of conditions and the following disclaimer.
11+
* Redistributions in binary form must reproduce the above copyright
12+
notice, this list of conditions and the following disclaimer in the
13+
documentation and/or other materials provided with the distribution.
14+
* Neither the name of any author or any participating institution
15+
may be used to endorse or promote products derived from this software
16+
without specific prior written permission.
17+
For a full list of authors, refer to the file AUTHORS.
18+
--------------------------------------------------------------------------
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
23+
INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26+
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28+
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29+
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30+
"""
131
# Example of displaying a Streptococcal protein and showing peptide coverage
232
import pymol
333
import pyopenms

0 commit comments

Comments
 (0)