• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

t/H03-Jul-2004-1811

ChangesH A D03-Jul-2004144 95

Domain.pmH A D03-Jul-20042.7 KiB12737

MANIFESTH A D26-Sep-200364 87

MacroMol.pmH A D03-Jul-20043 KiB13737

Makefile.PLH A D03-Jul-2004228 1210

READMEH A D03-Jul-20041.1 KiB3926

README

1Chemistry/MacroMol version 0.06
2===============================
3
4For the purposes of this module, a macromolecule is just a molecule that
5consists of several "domains". For example, a protein consists of aminoacid
6residues, or a nucleic acid consists of bases. Therefore Chemistry::MacroMol
7is derived from Chemistry::Mol, with additional methods to handle the domains.
8
9The way things are currently structured, an atom in a macromolecule "belong"
10both to the MacroMol object and to a Domain object. This way you can get all the
11atoms in $protein via $protein->atoms, or to the atoms in residue 123 via
12$protein->domain(123)->atoms.
13
14CHANGES SINCE VERSION 0.06
15        - Fixed a memory leak.
16
17INSTALLATION
18
19To install this module type the following:
20
21   perl Makefile.PL
22   make
23   make test
24   make install
25
26DEPENDENCIES
27
28This module requires these other modules and libraries:
29        Chemistry::Mol      0.24
30        Scalar::Util        0
31
32COPYRIGHT AND LICENSE
33
34Copyright (C) 2004 Ivan Tubert
35
36This library is free software; you can redistribute it and/or modify
37it under the same terms as Perl itself.
38
39