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
3ed3343d
Commit
3ed3343d
authored
15 years ago
by
mh17
Browse files
Options
Downloads
Patches
Plain Diff
removed unused file
parent
308792c6
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/zmapConfig/zmapConfig_P.h
+0
-86
0 additions, 86 deletions
src/zmapConfig/zmapConfig_P.h
with
0 additions
and
86 deletions
src/zmapConfig/zmapConfig_P.h
deleted
100755 → 0
+
0
−
86
View file @
308792c6
/* File: zmapConfig_P.h
* Author: Ed Griffiths (edgrif@sanger.ac.uk)
* Copyright (c) 2006: Genome Research Ltd.
*-------------------------------------------------------------------
* ZMap is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see the on-line version at http://www.gnu.org/copyleft/gpl.txt
*-------------------------------------------------------------------
* This file is part of the ZMap genome database package
* and was written by
* Ed Griffiths (Sanger Institute, UK) edgrif@sanger.ac.uk and
* Rob Clack (Sanger Institute, UK) rnc@sanger.ac.uk
*
* Description:
* Exported functions: See XXXXXXXXXXXXX.h
* HISTORY:
* Last edited: Feb 17 12:47 2006 (rds)
* Created: Thu Jul 24 14:39:06 2003 (edgrif)
* CVS info: $Id: zmapConfig_P.h,v 1.8 2006-11-08 09:23:49 edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_CONFIG_P_H
#define ZMAP_CONFIG_P_H
#include
<ZMap/zmapConfig.h>
/* A stanza consisting of a name and a set of elements. */
typedef
struct
_ZMapConfigStanzaStruct
{
char
*
name
;
GList
*
elements
;
}
ZMapConfigStanzaStruct
;
/* A set of stanzas held as a list. Note duplication of stanza name, its actually in all the
* the stanzas as a set of stanzas must be of the same name under the current scheme.
* This may need to change of course.... */
typedef
struct
_ZMapConfigStanzaSetStruct
{
char
*
name
;
GList
*
stanzas
;
}
ZMapConfigStanzaSetStruct
;
/* A configuration, including the configuration file and the list of stanzas derived from
* that file. */
typedef
struct
_ZMapConfigStruct
{
char
*
config_dir
;
char
*
config_file
;
GList
*
stanzas
;
}
ZMapConfigStruct
;
/* These functions are internal to zmapConfig and should not be used outside of this package. */
gboolean
zmapGetUserConfig
(
ZMapConfig
config
)
;
gboolean
zmapGetComputedConfig
(
ZMapConfig
config
,
char
*
buffer
)
;
gboolean
zmapMakeUserConfig
(
ZMapConfig
config
)
;
gboolean
zmapGetConfigStanzas
(
ZMapConfig
config
,
ZMapConfigStanza
spec_stanza
,
ZMapConfigStanzaSet
*
stanzas_out
)
;
void
zmapConfigDeleteStanzaSet
(
ZMapConfigStanzaSet
stanzas
)
;
ZMapConfigStanza
zmapConfigCreateStanza
(
char
*
stanza_name
)
;
ZMapConfigStanza
zmapConfigCopyStanza
(
ZMapConfigStanza
stanza_in
)
;
void
zmapConfigDestroyStanza
(
ZMapConfigStanza
stanza
)
;
ZMapConfigStanzaElement
zmapConfigCreateElement
(
char
*
name
,
ZMapConfigElementType
type
)
;
ZMapConfigStanzaElement
zmapConfigCopyElement
(
ZMapConfigStanzaElement
element_in
)
;
void
zmapConfigCopyElementData
(
ZMapConfigStanzaElement
element_in
,
ZMapConfigStanzaElement
element_out
)
;
void
zmapConfigDestroyElement
(
ZMapConfigStanzaElement
element
)
;
#endif
/* !ZMAP_CONFIG_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