gzip -dc dealpdb.tar.gz | tar -pxf -This would create the following files:
dealpdb.f (Main source code) fortran_util_sgi/dec.f (Library source codes) dealpdb_sgi (SGI executible) dealpdb_dec (DEC executible)To compile dealpdb, simply type
f77 -o dealpdb dealpdb.f fortran_util_sgi/dec.f(or use your own favorite fortran compiler)
(try SHIFT+CLICK if CLICK doesn't work)
dealpdb.f (Main source code)
fortran_util_sgi.f (Library source code for SGI)
fortran_util_dec.f (Library source code for DEC)
dealpdb_sgi (SGI executible)
dealpdb_dec (DEC executible)
And compile the program as above.
Top of Page Problem? Let me know
gzip -dc dealmap.tar.gz | tar -pxf -This would create the following files:
dealmap.f (Main source code)
ccp4_rw.f (CCP4 map read/write source code:
-- courtesy Kevin Cowton)
fortran_util_sgi.f (my library)
dealmap (SGI executible)
To compile dealmap, simply type f77 -o dealmap dealmap.f ccp4_rw.f fortran_util_sgi.f $CLIB/libccp4.a($CLIB is the CCP4 library directory)
Top of Page Problem? Let me know
gzip -dc mask_ovlp.tar.gz | tar -pxf -This would create the following files:
mask_ovlp.f (Main source code) mask_rw.f (mask read/write code: borrowed from Gerard Kleywegt) mask.inc (parameter file) libfortran_util_sgi.a (Library) mask_ovlp (SGI executible)To compile mask_ovlp, simply type
f77 -o mask_ovlp mask_ovlp.f mask_rw.f libfortran_util_sgi.a
Top of Page Problem? Let me know
gzip -dc matrix.tar.gz | tar -pxf -This would create the following files:
matrix.f (Main source code) libfortran_util_sgi.a (SGI Library) libfortran_util_dec.a (DEC Library) matrix_sgi (SGI executible) matrix_dec (DEC executible)To compile matrix, simply type
f77 -o matrix matrix.f libfortran_util_sgi/dec.a
Top of Page Problem? Let me know