Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
zmap
Commits
64395167
Commit
64395167
authored
16 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
completely rework column_tags/styles code to use new/better tags.
parent
71442c98
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/zmapServer/acedb/acedbServer.c
+529
-385
529 additions, 385 deletions
src/zmapServer/acedb/acedbServer.c
src/zmapServer/acedb/acedbServer_P.h
+18
-16
18 additions, 16 deletions
src/zmapServer/acedb/acedbServer_P.h
with
547 additions
and
401 deletions
src/zmapServer/acedb/acedbServer.c
+
529
−
385
View file @
64395167
This diff is collapsed.
Click to expand it.
src/zmapServer/acedb/acedbServer_P.h
+
18
−
16
View file @
64395167
...
...
@@ -24,16 +24,16 @@
*
* Description:
* HISTORY:
* Last edited:
Jan 28
14:
57
2009 (edgrif)
* Last edited:
Apr 6
14:
29
2009 (edgrif)
* Created: Wed Mar 17 16:23:17 2004 (edgrif)
* CVS info: $Id: acedbServer_P.h,v 1.2
1
2009-0
2
-0
3
1
4:01:24
edgrif Exp $
* CVS info: $Id: acedbServer_P.h,v 1.2
2
2009-0
4
-0
6
1
3:41:00
edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ACEDB_SERVER_P_H
#define ACEDB_SERVER_P_H
/* This code and the acedb server must stay in step as the two are developed so
/* This code and the acedb server must stay in step as the two are
co-
developed so
* we set a minimum acedb version that the code requires to work properly. */
#define ACEDB_SERVER_MIN_VERSION "4.9.45"
...
...
@@ -46,7 +46,9 @@
/* Some tag labels... */
#define COL_CHILD "Column_child"
#define COL_PARENT "Column_parent"
#define COL_CHILD "Column_child"
#define STYLE "Style"
/* Acedb handling of widths is quite complex: some methods do not have a width and there is
...
...
@@ -62,32 +64,32 @@
typedef
struct
_AcedbServerStruct
{
/* Connection details. */
AceConnection
connection
;
char
*
host
;
int
port
;
AceConnection
connection
;
AceConnStatus
last_err_status
;
/* Needed so we can return err msgs
for aceconn errors. */
/* Needed so we can return err msgs for aceconn errors. */
AceConnStatus
last_err_status
;
char
*
last_err_msg
;
char
*
version_str
;
/* For checking server is at right level. */
gboolean
acedb_styl
es
;
/*
Use old method or new zmap style objects. */
gboolean
fetch_gene_finder_featur
es
;
/*
Need to send additional requests to
server to get these. */
ZMapFeatureContext
req_context
;
GList
*
all_methods
;
/* List of all methods to be used in
seqget/seqfeatures calls. */
GHashTable
*
method_2_style
;
/* Records which style goes with which
method (NULL if acedb_styles == FALSE). */
ZMapFeatureContext
current_context
;
gboolean
has_new_tags
;
/* TRUE => use new column tags/zmap style objects. */
gboolean
fetch_gene_finder_features
;
/*
Need to send additional requests to
server to get these
. */
GHashTable
*
method_2_data
;
/*
Records data for each method
(NULL if acedb_styles == FALSE)
. */
GHashTable
*
method_2_feature_set
;
/* Records the feature set for each method
(NULL if acedb_styles == FALSE). */
ZMapFeatureContext
current_context
;
}
AcedbServerStruct
,
*
AcedbServer
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment