|
Revision 6867, 1.0 KB
(checked in by westram, 20 months ago)
|
- ARB GUI (merges [6844] [6845] [6847] [6858] [6861] from refactor)
- new central header cb.h (planned to define ALL callbacks used in ARB here later)
- refactored callback handling for some AW_root callbacks
- AW_root_callback hides function ptr + arguments
- AW_root_cblist hides lists of AW_root_callback
- DRYed AW_RCB
- reduced tight coupling between some of WINDOW/*.hxx (omg)
- removed AWUSE
|
| Line | |
|---|
| 1 | // =============================================================== // |
|---|
| 2 | // // |
|---|
| 3 | // File : di_clusters.hxx // |
|---|
| 4 | // Purpose : Detect clusters of homologous sequences in tree // |
|---|
| 5 | // // |
|---|
| 6 | // Coded by Ralf Westram (coder@reallysoft.de) in October 2009 // |
|---|
| 7 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 8 | // http://www.arb-home.de/ // |
|---|
| 9 | // // |
|---|
| 10 | // =============================================================== // |
|---|
| 11 | |
|---|
| 12 | #ifndef DI_CLUSTERS_HXX |
|---|
| 13 | #define DI_CLUSTERS_HXX |
|---|
| 14 | |
|---|
| 15 | #ifndef AW_BASE_HXX |
|---|
| 16 | #include <aw_base.hxx> |
|---|
| 17 | #endif |
|---|
| 18 | |
|---|
| 19 | void DI_create_cluster_awars(AW_root *aw_root, AW_default def, AW_default db); |
|---|
| 20 | AW_window *DI_create_cluster_detection_window(AW_root *aw_root, AW_CL cl_weightedFilter); |
|---|
| 21 | |
|---|
| 22 | #else |
|---|
| 23 | #error di_clusters.hxx included twice |
|---|
| 24 | #endif // DI_CLUSTERS_HXX |
|---|