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
fc906f80
Commit
fc906f80
authored
16 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
fix setting of style mode, accidentally commented out.
parent
df57cbee
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/zmapFeature/zmapFeature.c
+20
-27
20 additions, 27 deletions
src/zmapFeature/zmapFeature.c
with
20 additions
and
27 deletions
src/zmapFeature/zmapFeature.c
+
20
−
27
View file @
fc906f80
...
...
@@ -27,9 +27,9 @@
*
* Exported functions: See zmapView_P.h
* HISTORY:
* Last edited: Feb
9
1
5
:4
7
2009 (
rds
)
* Last edited: Feb
10
1
6
:4
3
2009 (
edgrif
)
* Created: Fri Jul 16 13:05:58 2004 (edgrif)
* CVS info: $Id: zmapFeature.c,v 1.10
5
2009-02-0
9
1
5
:4
8:13 rds
Exp $
* CVS info: $Id: zmapFeature.c,v 1.10
6
2009-02-
1
0 1
6
:4
4:21 edgrif
Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -2833,21 +2833,23 @@ static void addFeatureModeCB(gpointer key, gpointer data, gpointer user_data)
switch
(
feature
->
type
)
{
case
ZMAPSTYLE_MODE_BASIC
:
mode
=
ZMAPSTYLE_MODE_BASIC
;
{
mode
=
ZMAPSTYLE_MODE_BASIC
;
if
(
g_ascii_strcasecmp
(
g_quark_to_string
(
zMapStyleGetID
(
style
)),
"GF_splice"
)
==
0
)
{
mode
=
ZMAPSTYLE_MODE_GLYPH
;
zMapStyleSetGlyphMode
(
style
,
ZMAPSTYLE_GLYPH_SPLICE
)
;
zMapStyleSetColours
(
style
,
ZMAPSTYLE_COLOURTARGET_FRAME0
,
ZMAPSTYLE_COLOURTYPE_NORMAL
,
"red"
,
NULL
,
NULL
)
;
zMapStyleSetColours
(
style
,
ZMAPSTYLE_COLOURTARGET_FRAME1
,
ZMAPSTYLE_COLOURTYPE_NORMAL
,
"blue"
,
NULL
,
NULL
)
;
zMapStyleSetColours
(
style
,
ZMAPSTYLE_COLOURTARGET_FRAME2
,
ZMAPSTYLE_COLOURTYPE_NORMAL
,
"green"
,
NULL
,
NULL
)
;
}
break
;
if
(
g_ascii_strcasecmp
(
g_quark_to_string
(
zMapStyleGetID
(
style
)),
"GF_splice"
)
==
0
)
{
mode
=
ZMAPSTYLE_MODE_GLYPH
;
zMapStyleSetGlyphMode
(
style
,
ZMAPSTYLE_GLYPH_SPLICE
)
;
zMapStyleSetColours
(
style
,
ZMAPSTYLE_COLOURTARGET_FRAME0
,
ZMAPSTYLE_COLOURTYPE_NORMAL
,
"red"
,
NULL
,
NULL
)
;
zMapStyleSetColours
(
style
,
ZMAPSTYLE_COLOURTARGET_FRAME1
,
ZMAPSTYLE_COLOURTYPE_NORMAL
,
"blue"
,
NULL
,
NULL
)
;
zMapStyleSetColours
(
style
,
ZMAPSTYLE_COLOURTARGET_FRAME2
,
ZMAPSTYLE_COLOURTYPE_NORMAL
,
"green"
,
NULL
,
NULL
)
;
}
break
;
}
case
ZMAPSTYLE_MODE_ALIGNMENT
:
{
mode
=
ZMAPSTYLE_MODE_ALIGNMENT
;
...
...
@@ -2875,7 +2877,6 @@ static void addFeatureModeCB(gpointer key, gpointer data, gpointer user_data)
case
ZMAPSTYLE_MODE_PEP_SEQUENCE
:
mode
=
ZMAPSTYLE_MODE_TEXT
;
break
;
/* What about glyph and graph..... AND TEXT!!!! */
case
ZMAPSTYLE_MODE_TEXT
:
case
ZMAPSTYLE_MODE_GLYPH
:
case
ZMAPSTYLE_MODE_GRAPH
:
...
...
@@ -2885,16 +2886,8 @@ static void addFeatureModeCB(gpointer key, gpointer data, gpointer user_data)
zMapAssertNotReached
()
;
break
;
}
#ifdef RDS_DONT_INCLUDE
/* Tricky....we can have features within a single feature set that have _different_
* styles, if this is the case we must be sure to set the mode in feature_set style
* (where in fact its kind of useless as this is a style for the whole column) _and_
* we must set it in the features own style. */
zMapStyleSetMode
(
feature_set
->
style
,
mode
)
;
if
(
feature_set
->
style
!=
style
)
zMapStyleSetMode
(
style
,
mode
)
;
#endif
/* RDS_DONT_INCLUDE */
zMapStyleSetMode
(
style
,
mode
)
;
}
...
...
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