Skip to content

Commit 5cf2a1c

Browse files
committed
add source
1 parent 2b9ef2c commit 5cf2a1c

File tree

126 files changed

+92557
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+92557
-0
lines changed

proflex/AUTHORS

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
AUTHORS
3+
--=========--
4+
5+
This program was originally developed by:-
6+
7+
Donald J. Jacobs,
8+
Andrew J. Rader,
9+
Brandon M. Hespenheide,
10+
Leslie A. Kuhn, and
11+
M. F. Thorpe.
12+
13+
Any questions about use or distribution should be directed to
14+
the e-mail address 'proflex@sol.bch.msu.edu'
15+
or to Leslie Kuhn:
16+
17+
Telephone : +1 (517) 353-8547
18+
Address : Protein Structural Analysis and Design Laboratory
19+
502C Biochemistry Building
20+
Michigan State University
21+
East Lansing, MI 48824-1319
22+
USA
23+

proflex/COPYING

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
This is the license file for the MSU ProFlex and associated programs.
2+
3+
Any questions about use or distribution should be directed to
4+
the e-mail address 'proflex@sol.bch.msu.edu'
5+
or to Leslie Kuhn:
6+
7+
Telephone : +1 (517) 353-8547
8+
Address : Protein Structural Analysis and Design Laboratory
9+
502C Biochemistry Building
10+
Michigan State University
11+
East Lansing, MI 48824-1319
12+
USA
13+
14+
---------------------------------------------------------------------
15+
All materials contained in this directory and subdirectories are
16+
Copyright (C) 1997-2008 Michigan State University.
17+
18+
This program is free software; you can redistribute it to academic users only,
19+
and/or modify it under the terms of the GNU General Public License (GPL), version 2
20+
as published by the Free Software Foundation.
21+
22+
This program is distributed in the hope that it will be useful,
23+
but WITHOUT ANY WARRANTY; without even the implied warranty of
24+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25+
GNU General Public License for more details.
26+
27+
You should have received a copy of the GNU General Public License
28+
along with this program; if not, write to the Free Software
29+
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA,
30+
or see http://www.gnu.org/licenses/gpl.txt
31+
---------------------------------------------------------------------
32+

proflex/GNU_GPL

Lines changed: 340 additions & 0 deletions
Large diffs are not rendered by default.

proflex/Makefile

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
################################################################################
2+
# MSU ProFlex, formerly called FIRST, is a software developed to predict and #
3+
# analyze protein flexibility. #
4+
# This source file is a part of MSU ProFlex. #
5+
# #
6+
# Copyright (C) 1997 - 2008, Michigan State University. #
7+
# #
8+
# This program is free software; you can redistribute to academic users only, #
9+
# it and/or modify it under the terms of the GNU General Public License, #
10+
# version 2, as published by the Free Software Foundation. #
11+
# #
12+
# This program is distributed in the hope that it will be useful, #
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15+
# GNU General Public License for more details. #
16+
# #
17+
# You should have received a copy of the GNU General Public License #
18+
# along with this program; if not, write to the Free Software #
19+
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA, #
20+
# or see http://www.gnu.org/licenses/gpl.txt #
21+
################################################################################
22+
23+
#This is a top level makefile to execute the makefiles in the
24+
# subdirectories.
25+
26+
all: bindir
27+
(cd ./prog/first/src/c++; make)
28+
(cd ./prog/first/src/fortran; make)
29+
(cd ./prog/hbdilute/src; make )
30+
(cd ./util/; make )
31+
clean:
32+
(cd ./prog/first/src/c++; make clean)
33+
(cd ./prog/first/src/fortran; make clean)
34+
(cd ./prog/hbdilute/src; make clean)
35+
(cd ./util/; make clean )
36+
rm -rf ./bin
37+
38+
bindir:
39+
#creates a bin folder in the proflex directory that contains links to all executables
40+
mkdir -p bin
41+
ln -s ${PROFLEX_HOME}/first/bin/proflex bin/proflex
42+
ln -s ${PROFLEX_HOME}/hbdilute/bin/hbdilute bin/hbdilute
43+
ln -s ${PROFLEX_HOME}/../util/flex_index bin/flex_index
44+
45+

proflex/ProFlex_License.GPL

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
This is the license file for the MSU ProFlex and associated programs.
2+
3+
Any questions about use or distribution should be directed to
4+
the e-mail address 'kuhnlab@msu.edu'
5+
or to Leslie Kuhn:
6+
7+
Telephone : +1 (517) 353-8547
8+
Address : Protein Structural Analysis and Design Laboratory
9+
502C Biochemistry Building
10+
Michigan State University
11+
East Lansing, MI 48824-1319
12+
USA
13+
14+
---------------------------------------------------------------------
15+
All materials contained in this directory and subdirectories are
16+
Copyright (C) 1997-2008 Michigan State University.
17+
18+
This program is free software; you can redistribute it to academic users only,
19+
and/or modify it under the terms of the GNU General Public License (GPL), version 2
20+
as published by the Free Software Foundation.
21+
22+
This program is distributed in the hope that it will be useful,
23+
but WITHOUT ANY WARRANTY; without even the implied warranty of
24+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25+
GNU General Public License for more details.
26+
27+
You should have received a copy of the GNU General Public License
28+
along with this program; if not, write to the Free Software
29+
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA,
30+
or see http://www.gnu.org/licenses/gpl.txt
31+
---------------------------------------------------------------------
32+

0 commit comments

Comments
 (0)