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
9fa2aa0c
Commit
9fa2aa0c
authored
14 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
add code to display text to say an alignment is gapped but we have no gap data.
parent
c602ab83
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/zmapWindow/zmapWindow.c
+13
-5
13 additions, 5 deletions
src/zmapWindow/zmapWindow.c
with
13 additions
and
5 deletions
src/zmapWindow/zmapWindow.c
+
13
−
5
View file @
9fa2aa0c
...
...
@@ -27,9 +27,9 @@
*
* Exported functions: See ZMap/zmapWindow.h
* HISTORY:
* Last edited: Aug 1
0 13:48
2010 (edgrif)
* Last edited: Aug 1
7 08:37
2010 (edgrif)
* Created: Thu Jul 24 14:36:27 2003 (edgrif)
* CVS info: $Id: zmapWindow.c,v 1.33
5
2010-08-1
0 13:53
:4
7
edgrif Exp $
* CVS info: $Id: zmapWindow.c,v 1.33
6
2010-08-1
8 09:20
:4
4
edgrif Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -1500,13 +1500,21 @@ void zmapWindowUpdateInfoPanel(ZMapWindow window,
}
if
(
feature_arg
->
feature
.
homol
.
align
)
select
.
feature_desc
.
sub_feature_none_txt
=
g_strdup
(
"<GAPS NOT SHOWN>"
)
;
{
select
.
feature_desc
.
sub_feature_none_txt
=
g_strdup
(
"GAPPED - NOT DISPLAYED"
)
;
}
else
select
.
feature_desc
.
sub_feature_none_txt
=
g_strdup
(
"<UNGAPPED ALIGNMENT>"
)
;
{
if
(
zMapFeatureAlignmentIsGapped
(
feature_arg
))
select
.
feature_desc
.
sub_feature_none_txt
=
g_strdup
(
"GAPPED - NO DATA"
)
;
else
select
.
feature_desc
.
sub_feature_none_txt
=
g_strdup
(
"UNGAPPED"
)
;
}
}
else
if
(
feature
->
type
==
ZMAPSTYLE_MODE_TRANSCRIPT
)
{
select
.
feature_desc
.
sub_feature_none_txt
=
g_strdup
(
"
<
NO INTRONS
>
"
)
;
select
.
feature_desc
.
sub_feature_none_txt
=
g_strdup
(
"NO INTRONS"
)
;
}
...
...
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