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
c0265db4
Commit
c0265db4
authored
20 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
Add parent length and name to feature context, required for mapping
parent
88903ffe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/include/ZMap/zmapFeature.h
+5
-2
5 additions, 2 deletions
src/include/ZMap/zmapFeature.h
src/zmapGFF/zmapGFF2parser.c
+7
-4
7 additions, 4 deletions
src/zmapGFF/zmapGFF2parser.c
with
12 additions
and
6 deletions
src/include/ZMap/zmapFeature.h
+
5
−
2
View file @
c0265db4
...
...
@@ -25,9 +25,9 @@
* Description: Data structures describing a genetic feature.
*
* HISTORY:
* Last edited: Jul 14 1
0:53
2004 (edgrif)
* Last edited: Jul 14 1
4:01
2004 (edgrif)
* Created: Fri Jun 11 08:37:19 2004 (edgrif)
* CVS info: $Id: zmapFeature.h,v 1.
5
2004-07-14 1
2:54:31
edgrif Exp $
* CVS info: $Id: zmapFeature.h,v 1.
6
2004-07-14 1
3:07:42
edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_FEATURE_H
...
...
@@ -221,6 +221,9 @@ typedef struct ZMapFeatureSetStruct_
typedef
struct
ZMapFeatureContextStruct_
{
char
*
sequence
;
/* The sequence to be displayed. */
char
*
parent
;
/* Name of parent, not be needed ? */
int
parent_length
;
/* Length in bases of parent. */
ZMapMapBlockStruct
sequence_to_parent
;
/* Shows how this sequence maps to its
ultimate parent. */
ZMapMapBlockStruct
features_to_sequence
;
/* Shows how these features map to the
...
...
This diff is collapsed.
Click to expand it.
src/zmapGFF/zmapGFF2parser.c
+
7
−
4
View file @
c0265db4
...
...
@@ -26,9 +26,9 @@
*
* Exported functions: See ZMap/zmapGFF.h
* HISTORY:
* Last edited: Jul 14 1
1:45
2004 (edgrif)
* Last edited: Jul 14 1
4:04
2004 (edgrif)
* Created: Fri May 28 14:25:12 2004 (edgrif)
* CVS info: $Id: zmapGFF2parser.c,v 1.
7
2004-07-14 1
2:53:44
edgrif Exp $
* CVS info: $Id: zmapGFF2parser.c,v 1.
8
2004-07-14 1
3:07:42
edgrif Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -228,12 +228,12 @@ ZMapFeatureContext zmapGFFGetFeatures(ZMapGFFParser parser)
* We assume that we only ask for complete clones....
* */
{
int
tmp_
start
=
100000
;
int
tmp_
pad
=
100000
;
int
clone_length
=
parser
->
features_end
-
parser
->
features_start
+
1
;
feature_context
->
sequence_to_parent
.
c1
=
parser
->
features_start
;
feature_context
->
sequence_to_parent
.
c2
=
parser
->
features_end
;
feature_context
->
sequence_to_parent
.
p1
=
tmp_
start
;
feature_context
->
sequence_to_parent
.
p1
=
tmp_
pad
;
feature_context
->
sequence_to_parent
.
p2
=
feature_context
->
sequence_to_parent
.
p1
+
clone_length
;
...
...
@@ -241,6 +241,9 @@ ZMapFeatureContext zmapGFFGetFeatures(ZMapGFFParser parser)
feature_context
->
features_to_sequence
.
p2
=
parser
->
features_end
;
feature_context
->
features_to_sequence
.
c1
=
parser
->
features_start
;
feature_context
->
features_to_sequence
.
c2
=
parser
->
features_end
;
feature_context
->
parent_length
=
feature_context
->
sequence_to_parent
.
p2
+
tmp_pad
;
feature_context
->
parent
=
"chromsome_99"
;
}
g_datalist_init
(
&
(
feature_context
->
features
))
;
...
...
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