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
b62362fb
Commit
b62362fb
authored
20 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
Make a new struct to hold a complete feature context.
parent
c031cef2
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/include/ZMap/zmapFeature.h
+20
-9
20 additions, 9 deletions
src/include/ZMap/zmapFeature.h
with
20 additions
and
9 deletions
src/include/ZMap/zmapFeature.h
+
20
−
9
View file @
b62362fb
...
...
@@ -25,9 +25,9 @@
* Description: Data structures describing a genetic feature.
*
* HISTORY:
* Last edited: Jun
1
5 1
5:21
2004 (edgrif)
* Last edited: Jun
2
5 1
0:44
2004 (edgrif)
* Created: Fri Jun 11 08:37:19 2004 (edgrif)
* CVS info: $Id: zmapFeature.h,v 1.
1
2004-06-
18 10:57:1
7 edgrif Exp $
* CVS info: $Id: zmapFeature.h,v 1.
2
2004-06-
25 13:32:2
7 edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_FEATURE_H
...
...
@@ -125,12 +125,9 @@ typedef struct
/* zmap-flavour seg structure that holds the data to be displayed */
/* Structure describing a single feature, the feature may be compound (e.g. have exons/introns
* etc.) or a single span or point, e.g. an allele.
* */
typedef
struct
ZMapFeatureStruct_
{
ZMapFeatureID
id
;
/* unique DB identifier. */
...
...
@@ -165,7 +162,7 @@ typedef struct ZMapFeatureStruct_
/* Holds a set of
f
eatures. */
/* Holds a set of
ZMapF
eature
'
s. */
typedef
struct
ZMapFeatureSetStruct_
{
char
*
source
;
/* e.g. "Genewise predictions" */
...
...
@@ -176,6 +173,20 @@ typedef struct ZMapFeatureSetStruct_
/* Holds a set of ZMapFeatureSet's.
* Structure would usually contain a complete set of data from a server for a particular span
* of a sequence. */
typedef
struct
ZMapFeatureContextStruct_
{
char
*
sequence
;
/* The sequence to be displayed. */
int
start
,
end
;
/* start, end coords in the sequence. */
GData
*
features
;
/* A set of ZMapFeatureSet. */
}
ZMapFeatureContextStruct
,
*
ZMapFeatureContext
;
...
...
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