File: awt_attributes.hxx

package info (click to toggle)
arb 6.0.6-8
  • links: PTS, VCS
  • area: non-free
  • in suites: sid, trixie
  • size: 66,204 kB
  • sloc: ansic: 394,911; cpp: 250,290; makefile: 19,644; sh: 15,879; perl: 10,473; fortran: 6,019; ruby: 683; xml: 503; python: 53; awk: 32
file content (37 lines) | stat: -rw-r--r-- 1,584 bytes parent folder | download | duplicates (6)
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
//  ==================================================================== //
//                                                                       //
//    File      : awt_attributes.hxx                                     //
//    Purpose   : get attribute colors for species/genes                 //
//                                                                       //
//                                                                       //
//  Coded by Ralf Westram (coder@reallysoft.de) in July 2004             //
//  Copyright Department of Microbiology (Technical University Munich)   //
//                                                                       //
//  Visit our web site at: http://www.arb-home.de/                       //
//                                                                       //
//  ==================================================================== //

#ifndef AWT_ATTRIBUTES_HXX
#define AWT_ATTRIBUTES_HXX

#ifndef ARBDB_BASE_H
#include <arbdb_base.h>
#endif

// find the color of the most dominant attribute of a gene/species
// returns 0 if no such color exists (or if display of attributes is disabled)
// returns 1..n otherwise

int AWT_gene_get_dominant_color(GBDATA *gb_gene);
int AWT_species_get_dominant_color(GBDATA *gb_species);


// check whether a gene/species matches the requirement of an attribute

bool AWT_gene_has_attribute(GBDATA *gb_gene, int attribute_nr);
bool AWT_species_has_attribute(GBDATA *gb_gene, int attribute_nr);

#else
#error awt_attributes.hxx included twice
#endif // AWT_ATTRIBUTES_HXX