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
87e322e5
Commit
87e322e5
authored
16 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
move a couple of fields to align struct.
parent
77393680
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/zmapFeature/zmapStyle_I.h
+22
-8
22 additions, 8 deletions
src/zmapFeature/zmapStyle_I.h
with
22 additions
and
8 deletions
src/zmapFeature/zmapStyle_I.h
+
22
−
8
View file @
87e322e5
...
...
@@ -26,9 +26,9 @@
* Description: Private header for style.
*
* HISTORY:
* Last edited:
Oct 28 14:45
2008 (edgrif)
* Last edited:
Nov 12 10:37
2008 (edgrif)
* Created: Mon Feb 26 09:13:30 2007 (edgrif)
* CVS info: $Id: zmapStyle_I.h,v 1.
4
2008-1
0-29 16:22:58
edgrif Exp $
* CVS info: $Id: zmapStyle_I.h,v 1.
5
2008-1
1-13 10:03:44
edgrif Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -91,6 +91,11 @@ typedef struct
ZMapStyleColourStruct
selected
;
}
ZMapStyleFullColourStruct
,
*
ZMapStyleFullColour
;
/* At most 6 colour specs can be given for any one field (i.e. all the combinations of selected,
* normal and draw, fill, border. */
enum
{
ZMAPSTYLE_MAX_COLOUR_SPECS
=
6
}
;
/*! Styles have different modes, e.g. graph, alignment etc, information specific to a particular
* style is held in its own struct. */
...
...
@@ -172,6 +177,8 @@ typedef struct
{
struct
{
unsigned
int
parse_gaps
:
1
;
unsigned
int
align_gaps
:
1
;
unsigned
int
within_align_error
:
1
;
unsigned
int
between_align_error
:
1
;
unsigned
int
pfetchable
:
1
;
...
...
@@ -194,6 +201,9 @@ typedef struct
struct
{
unsigned
int
pfetchable
:
1
;
/* TRUE => alignments have pfetch entries. */
unsigned
int
parse_gaps
:
1
;
unsigned
int
align_gaps
:
1
;
/*!< TRUE: gaps within alignment are displayed,
FALSE: alignment is displayed as a single block. */
}
state
;
}
ZMapStyleAlignmentStruct
,
*
ZMapStyleAlignment
;
...
...
@@ -216,6 +226,8 @@ typedef struct
}
ZMapStyleTranscriptStruct
,
*
ZMapStyleTranscript
;
/* THIS STRUCT NEEDS A MAGIC PTR, ONCE IT HAS ONE THEN ADD A TEST TO zmapStyleIsValid() FOR IT.... */
/*! @struct ZMapFeatureTypeStyle zmapStyle_P.h
* @brief ZMap Style
*
...
...
@@ -268,8 +280,9 @@ typedef struct _zmapFeatureTypeStyleStruct
unsigned
int
showText
:
1
;
unsigned
int
parse_gaps
:
1
;
unsigned
int
align_gaps
:
1
;
unsigned
int
strand_specific
:
1
;
unsigned
int
show_rev_strand
:
1
;
...
...
@@ -348,10 +361,6 @@ typedef struct _zmapFeatureTypeStyleStruct
unsigned
int
showText
:
1
;
/*!< Should feature text be displayed. */
unsigned
int
parse_gaps
:
1
;
unsigned
int
align_gaps
:
1
;
/*!< TRUE: gaps within alignment are displayed,
FALSE: alignment is displayed as a single block. */
/*! Strand, show reverse and frame are all linked: something that is frame specific must be
* strand specific as well.... */
unsigned
int
strand_specific
:
1
;
/*!< Feature that is on one strand of the dna. */
...
...
@@ -404,6 +413,11 @@ ZMAP_ENUM_AS_STRING_DEC(zmapStyleOverlapMode2Str, ZMapStyleOverlapMode);
/*! @} end of zmapstyles docs. */
gboolean
zmapStyleIsValid
(
ZMapFeatureTypeStyle
style
)
;
#endif
/* !ZMAP_STYLE_P_H */
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