File: csra-pair.c

package info (click to toggle)
sra-sdk 2.9.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 31,724 kB
  • sloc: ansic: 182,592; cpp: 33,717; sh: 5,385; perl: 4,969; makefile: 4,030; python: 3,560; java: 2,363; yacc: 786; lex: 416; lisp: 77; xml: 54
file content (229 lines) | stat: -rw-r--r-- 6,664 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/*===========================================================================
 *
 *                            PUBLIC DOMAIN NOTICE
 *               National Center for Biotechnology Information
 *
 *  This software/database is a "United States Government Work" under the
 *  terms of the United States Copyright Act.  It was written as part of
 *  the author's official duties as a United States Government employee and
 *  thus cannot be copyrighted.  This software/database is freely available
 *  to the public for use. The National Library of Medicine and the U.S.
 *  Government have not placed any restriction on its use or reproduction.
 *
 *  Although all reasonable efforts have been taken to ensure the accuracy
 *  and reliability of the software and data, the NLM and the U.S.
 *  Government do not and cannot warrant the performance or results that
 *  may be obtained by using this software or data. The NLM and the U.S.
 *  Government disclaim all warranties, express or implied, including
 *  warranties of performance, merchantability or fitness for any particular
 *  purpose.
 *
 *  Please cite the author in any work or product based on this material.
 *
 * ===========================================================================
 *
 */

struct cSRAPair;
#define DBPAIR_IMPL struct cSRAPair

#include "csra-pair.h"
#include "csra-tbl.h"
#include "meta-pair.h"
#include "dir-pair.h"
#include "sra-sort.h"
#include "ctx.h"
#include "caps.h"
#include "except.h"
#include "status.h"
#include "mem.h"
#include "map-file.h"

#include <vdb/database.h>
#include <vdb/table.h>
#include <vdb/cursor.h>
#include <klib/printf.h>
#include <klib/text.h>
#include <klib/rc.h>

#include <string.h>


FILE_ENTRY ( csra-pair );


/*--------------------------------------------------------------------------
 * cSRAPair
 */

static
void cSRAPairWhack ( cSRAPair *self, const ctx_t *ctx )
{
    FUNC_ENTRY ( ctx );

    /* destroy me */
    MapFileRelease ( self -> seq_idx, ctx );
    MapFileRelease ( self -> sa_idx, ctx );
    MapFileRelease ( self -> pa_idx, ctx );

    DbPairDestroy ( & self -> dad, ctx );

    MemFree ( ctx, self, sizeof * self );
}

static
TablePair *cSRAPairMakeTablePair ( cSRAPair *self, const ctx_t *ctx,
     const char *member, const char *name, uint32_t align_idx, bool required, bool reorder,
     TablePair* ( * make ) ( DbPair *self, const ctx_t *ctx, const VTable *src, VTable *dst, const char *name, bool reorder ) )
{
    FUNC_ENTRY ( ctx );

    TablePair *tbl;

    if ( name == NULL )
        name = member;

    TRY ( tbl = DbPairMakeTablePair ( & self -> dad, ctx, member, name, required, reorder, make ) )
    {
        if ( tbl != NULL )
        {
            TRY ( DbPairAddTablePair ( & self -> dad, ctx, tbl ) )
            {
                ( ( cSRATblPair* ) tbl ) -> align_idx = align_idx;
                return tbl;
            }

            TablePairRelease ( tbl, ctx );
        }
    }

    return NULL;
}

static
void cSRAPairExplode ( cSRAPair *self, const ctx_t *ctx )
{
    FUNC_ENTRY ( ctx );

    DirPair * dir;
    TablePair * tbl;

    TRY ( tbl = cSRAPairMakeTablePair ( self, ctx, "REFERENCE", NULL, 0, true, false, cSRATblPairMakeRef ) )
    {
        self -> reference = tbl;

        TRY ( tbl = cSRAPairMakeTablePair ( self, ctx, "PRIMARY_ALIGNMENT", NULL, 1, true, true, cSRATblPairMakeAlign ) )
        {
            self -> prim_align = tbl;

#if SEQUENCE_BEFORE_SECONDARY
            TRY ( tbl = cSRAPairMakeTablePair ( self, ctx, NULL, "SEQUENCE", 0, false, true, cSRATblPairMakeSeq ) )
            {
                self -> sequence = tbl;
#endif

                TRY ( tbl = cSRAPairMakeTablePair ( self, ctx, "SECONDARY_ALIGNMENT", NULL, 2, false, true, cSRATblPairMakeAlign ) )
                {
                    self -> sec_align = tbl;

                    TRY ( tbl = cSRAPairMakeTablePair ( self, ctx, NULL, "EVIDENCE_ALIGNMENT", 3, false, false, cSRATblPairMakeAlign ) )
                    {
                        self -> evidence_align = tbl;

#if ! SEQUENCE_BEFORE_SECONDARY
                        TRY ( tbl = cSRAPairMakeTablePair ( self, ctx, NULL, "SEQUENCE", 0, false, true, cSRATblPairMakeSeq ) )
                        {
                            self -> sequence = tbl;
#endif

                            TRY ( dir = DbPairMakeDirPair ( & self -> dad, ctx, "extra", false, DbPairMakeStdDirPair ) )
                            {
                                ON_FAIL ( DbPairAddDirPair ( & self -> dad, ctx, dir ) )
                                    DirPairRelease ( dir, ctx );
                            }
#if ! SEQUENCE_BEFORE_SECONDARY
                        }
#endif
                    }
                }
#if SEQUENCE_BEFORE_SECONDARY
            }
#endif
        }
    }
}

static
const char *cSRAPairGetTblMember ( const cSRAPair *self, const ctx_t *ctx, const VTable *src, const char *name )
{
    FUNC_ENTRY ( ctx );

    /* special kludge for "SEQUENCE" table */
    if ( strcmp ( name, "SEQUENCE" ) == 0 )
    {
        /* determine whether table has CMP_CSREAD */
        rc_t rc;
        const VCursor *curs;

        STATUS ( 4, "determining member name of SEQUENCE table" );

        rc = VTableCreateCursorRead ( src, & curs );
        if ( rc != 0 )
            ERROR ( rc, "VTableOpenCursorRead failed on '%s.%s'", self -> dad . full_spec, name );
        else
        {
            uint32_t idx;
            rc = VCursorAddColumn ( curs, & idx, "CMP_CSREAD" );
            if ( rc == 0 )
            {
                rc = VCursorOpen ( curs );
                if ( rc == 0 )
                    name = "CS_SEQUENCE";
            }

            VCursorRelease ( curs );
        }

        STATUS ( 4, "SEQUENCE table member name determined to be '%s'", name );
    }

    return name;
}

static DbPair_vt cSRAPair_vt =
{
    cSRAPairWhack,
    cSRAPairExplode,
    cSRAPairGetTblMember
};

DbPair *cSRAPairMake ( const ctx_t *ctx,
    const VDatabase *src, VDatabase *dst, const char *name )
{
    FUNC_ENTRY ( ctx );

    cSRAPair *db;

    TRY ( db = MemAlloc ( ctx, sizeof * db, true ) )
    {
        TRY ( DbPairInit ( & db -> dad, ctx, & cSRAPair_vt, src, dst, name, NULL ) )
        {
            static const char *exclude_tbls [] =
            {
                "EVIDENCE_ALIGNMENT",
                "PRIMARY_ALIGNMENT",
                "REFERENCE",
                "SECONDARY_ALIGNMENT",
                "SEQUENCE",
                NULL
            };
            db -> dad . exclude_tbls = exclude_tbls;

            return & db -> dad;
        }

        MemFree ( ctx, db, sizeof * db );
    }

    return NULL;
}