~ubuntu-branches/ubuntu/precise/ncbi-tools6/precise

« back to all changes in this revision

Viewing changes to biostruc/pdbeast/interface.h

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-03-27 12:00:15 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050327120015-embhesp32nj73p9r
Tags: 6.1.20041020-3
* Fix FTBFS under GCC 4.0 caused by inconsistent use of "static" on
  functions.  (Closes: #295110.)
* Add a watch file, now that we can.  (Upstream's layout needs version=3.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*===========================================================================
 
2
*
 
3
*                            PUBLIC DOMAIN NOTICE
 
4
*               National Center for Biotechnology Information
 
5
*
 
6
*  This software/database is a "United States Government Work" under the
 
7
*  terms of the United States Copyright Act.  It was written as part of
 
8
*  the author's official duties as a United States Government employee and
 
9
*  thus cannot be copyrighted.  This software/database is freely available
 
10
*  to the public for use. The National Library of Medicine and the U.S.
 
11
*  Government have not placed any restriction on its use or reproduction.
 
12
*
 
13
*  Although all reasonable efforts have been taken to ensure the accuracy
 
14
*  and reliability of the software and data, the NLM and the U.S.
 
15
*  Government do not and cannot warrant the performance or results that
 
16
*  may be obtained by using this software or data. The NLM and the U.S.
 
17
*  Government disclaim all warranties, express or implied, including
 
18
*  warranties of performance, merchantability or fitness for any particular
 
19
*  purpose.
 
20
*
 
21
*  Please cite the author in any work or product based on this material.
 
22
*
 
23
* ===========================================================================
 
24
*
 
25
* File Name:  interface.h 
 
26
*
 
27
* Author:  Yanli Wang
 
28
*
 
29
* Initial Version Creation Date: 03/09/1997
 
30
*
 
31
* File Description:
 
32
*         Header for an interactive tool for taxonomy assignment to structure sequence
 
33
*
 
34
*
 
35
* Modifications:
 
36
* --------------------------------------------------------------------------
 
37
* $Log: interface.h,v $
 
38
* Revision 1.1  2002/12/17 15:13:43  ywang
 
39
* pdbeast related tools updated
 
40
*
 
41
*
 
42
* ==========================================================================
 
43
*/
 
44
FILE *seq_list;
 
45
FILE *file_index;
 
46
FILE *log_pdbeast;
 
47
Char files[10][120] = {"all.OCT96", "bioseq.lis"};
 
48
Char seq_entry[MaxEntryNum][12], seq_entry_TaxState[MaxEntryNum];
 
49
Int4 entry_num;
 
50
Int4 current_seq_entry_num;
 
51
Int4 index_num[MaxEntryNum];
 
52
 
 
53
#define dir_index "/net/keystone/usr/people/ywang/work/taxonomy/index/"
 
54
#define dir_pdb "/usr/ncbi/db/pdb/Current/"
 
55
 
 
56
    GrouP g;
 
57
    IteM  i;
 
58
    MenU  m;
 
59
    MenU  edit;
 
60
    PrompT p;
 
61
    WindoW w;
 
62
    WindoW wpdb;
 
63
    Int2 val;
 
64
    ChoicE c;
 
65
    LisT lchain;
 
66
 
 
67
TexT    pdb_source;
 
68
DoC     org;
 
69
DoC     chain_panel;
 
70
DoC     pdbfile_panel;
 
71
Boolean redo = FALSE;
 
72
Boolean EntryListOn = FALSE;