-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
56 lines (36 loc) · 1.48 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
==========
cl-bio
Cyrus Harmon, October 2006
==========
Welcome to the cl-bio project. The idea is that this project will
serve as a trivial lisp-based analog of the BioPerl project. Simple,
light-weight versions of biological objects and methods on these
obejcts will be provided.
==========
Initial biological objects:
Sequences: simple implementations of packed 2-bit DNA and RNA
sequences (A,C,G,T and A,C,G,U, respectively). Currently there are two
kinds of implementation classes for sequences, simple-sequences and
adjustable-seqeuences. The adjustable sequences use the flexichain
data structure to store the residues of the sequence, which allows for
efficient insertion and deletion of residues.
Ranges: directed ranges with a start and an end, as well as double
stranded ranges (ds-range) with an additional strand field, with
options +plus-strand+, +minus-strand+, +unknown-strand+, and
+both-strands+.
Descriptors: Information about sequences.
Identifiers: Subclasses of descriptors that provide a means of naming
sequences
File parsers:
* FASTA
* NCBI Taxonomy Data
* PDB (Protein Data Bank)
This is wholely incomplete, but contains some infrastructure for
parsing PDB files and utility functions for dealing with continued
records and what not.
* Affymetrix CDF files
Again, incomplete, but some of the infrastructure is there.
* Affymetrix Annotation files
==========
Thanks to Robert Strandh for making the flexichain package. Thanks to
the BioPerl group for inspiration.