forked from marbl/canu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtgStoreLoad.C
237 lines (176 loc) · 7.24 KB
/
tgStoreLoad.C
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
230
231
232
233
234
235
236
237
/******************************************************************************
*
* This file is part of canu, a software program that assembles whole-genome
* sequencing reads into contigs.
*
* This software is based on:
* 'Celera Assembler' r4587 (http://wgs-assembler.sourceforge.net)
* the 'kmer package' r1994 (http://kmer.sourceforge.net)
*
* Except as indicated otherwise, this is a 'United States Government Work',
* and is released in the public domain.
*
* File 'README.licenses' in the root directory of this distribution
* contains full conditions and disclaimers.
*/
#include "runtime.H"
#include "sqStore.H"
#include "tgStore.H"
void
dumpFile(vector<char const *> &tigInputs) {
tgTig *tig = new tgTig;
for (uint32 ff=0; ff<tigInputs.size(); ff++) {
fprintf(stderr, "Reading layouts from '%s'.\n", tigInputs[ff]);
FILE *TI = AS_UTL_openInputFile(tigInputs[ff]);
while (tig->loadFromStreamOrLayout(TI) == true)
tig->dumpLayout(stdout);
AS_UTL_closeFile(TI, tigInputs[ff]);
fprintf(stderr, "Reading layouts from '%s' completed.\n", tigInputs[ff]);
}
delete tig;
}
void
testFile(vector<char const *> &tigInputs) {
tgTig *tig = new tgTig;
for (uint32 ff=0; ff<tigInputs.size(); ff++) {
FILE *TI = AS_UTL_openInputFile(tigInputs[ff]);
while (tig->loadFromStreamOrLayout(TI) == true) {
int32 minP = INT32_MAX;
int32 maxP = 0;
for (uint32 ii=0; ii<tig->numberOfChildren(); ii++) {
minP = min(minP, tig->getChild(ii)->min());
maxP = min(maxP, tig->getChild(ii)->max());
}
if ((minP != 0) ||
(maxP != tig->length()))
fprintf(stdout, "BAD %8u layout %8d %8d length %8u\n",
tig->tigID(), minP, maxP, tig->length());
else
fprintf(stdout, "GOOD %8u\n", tig->tigID());
}
AS_UTL_closeFile(TI, tigInputs[ff]);
}
delete tig;
}
void // Create a new store if one doesn't exist, then
createStore(char const *tigName, // add empty versions until we get to the one
int32 tigVers) { // we're supposed to load into.
if (directoryExists(tigName) == false) {
fprintf(stderr, "Creating tig store '%s' version %d\n", tigName, tigVers);
tgStore *tigStore = new tgStore(tigName);
for (int32 vv=1; vv<tigVers; vv++)
tigStore->nextVersion();
delete tigStore;
}
}
void
loadTigs(char const *seqName,
char const *tigName,
int32 tigVers,
tgStoreType tigType,
vector<char const *> &tigInputs) {
sqStore *seqStore = new sqStore(seqName);
tgStore *tigStore = new tgStore(tigName, tigVers, tigType);
tgTig *tig = new tgTig;
for (uint32 ff=0; ff<tigInputs.size(); ff++) {
fprintf(stderr, "Reading layouts from '%s'.\n", tigInputs[ff]);
FILE *TI = AS_UTL_openInputFile(tigInputs[ff]);
while (tig->loadFromStreamOrLayout(TI) == true) {
if (tig->numberOfChildren() > 0) // Insert it!
tigStore->insertTig(tig, false);
else if (tigStore->isDeleted(tig->tigID()) == false) // Delete it!
tigStore->deleteTig(tig->tigID());
}
AS_UTL_closeFile(TI, tigInputs[ff]);
fprintf(stderr, "Reading layouts from '%s' completed.\n", tigInputs[ff]);
}
delete tig;
delete tigStore;
delete seqStore;
}
int
main (int argc, char **argv) {
char const *seqName = NULL;
char const *tigName = NULL;
int32 tigVers = -1;
vector<char const *> tigInputs;
char const *tigInputsFile = NULL;
tgStoreType tigType = tgStoreModify;
bool doDumpFile = false;
bool doTestFile = false;
argc = AS_configure(argc, argv);
vector<char const *> err;
int arg = 1;
while (arg < argc) {
if (strcmp(argv[arg], "-S") == 0) {
seqName = argv[++arg];
} else if (strcmp(argv[arg], "-T") == 0) {
tigName = argv[++arg];
tigVers = atoi(argv[++arg]);
} else if (strcmp(argv[arg], "-L") == 0) {
tigInputsFile = argv[++arg];
AS_UTL_loadFileList(tigInputsFile, tigInputs);
} else if (strcmp(argv[arg], "-n") == 0) {
tigType = tgStoreReadOnly;
} else if (strcmp(argv[arg], "-dump") == 0) {
doDumpFile = true;
} else if (strcmp(argv[arg], "-test") == 0) {
doTestFile = true;
} else if (fileExists(argv[arg])) {
tigInputs.push_back(argv[arg]);
} else {
char *s = new char [1024];
snprintf(s, 1024, "ERROR: Unknown option '%s'.\n", argv[arg]);
err.push_back(s);
}
arg++;
}
if ((doDumpFile == false) && (doTestFile == false) && (seqName == NULL))
err.push_back("ERROR: no sequence store (-S) supplied.\n");
if ((doDumpFile == false) && (doTestFile == false) && (tigName == NULL))
err.push_back("ERROR: no tig store (-T) supplied.\n");
if (tigInputs.size() == 0)
err.push_back("ERROR: no input tig files supplied on command line or via -L option.\n");
if (err.size() > 0) {
fprintf(stderr, "usage: %s -S <seqStore> -T <tigStore> <v> [input.cns]\n", argv[0]);
fprintf(stderr, "\n");
fprintf(stderr, " -S <seqStore> Path to the sequence store\n");
fprintf(stderr, " -T <tigStore> <v> Path to the tigStore and version to add tigs to\n");
fprintf(stderr, "\n");
fprintf(stderr, " -L <file-of-files> Load the tig(s) from files listed in 'file-of-files'\n");
fprintf(stderr, " (WARNING: program will succeed if this file is empty)\n");
fprintf(stderr, "\n");
fprintf(stderr, " -n Don't load into store, just report what would have happened\n");
fprintf(stderr, "\n");
fprintf(stderr, " -dump Dump the cns files as ASCII, don't load into store\n");
fprintf(stderr, " -test Test the cns files for various errors, don't load into store\n");
fprintf(stderr, "\n");
fprintf(stderr, " The primary operation is to replace tigs in the store with ones in a set of input files.\n");
fprintf(stderr, " The input files can be either supplied directly on the command line or listed in\n");
fprintf(stderr, " a text file (-L).\n");
fprintf(stderr, "\n");
fprintf(stderr, " A new store is created if one doesn't exist, otherwise, whatever tigs are there are\n");
fprintf(stderr, " replaced with those in the -R file. If version 'v' doesn't exist, it is created.\n");
fprintf(stderr, "\n");
fprintf(stderr, " Even if -n is supplied, a new store is created if one doesn't exist.\n");
fprintf(stderr, "\n");
fprintf(stderr, " To add a new tig, give it a tig id of -1. New tigs must be added to the latest version.\n");
fprintf(stderr, " To delete a tig, remove all children, and set the number of them to zero.\n");
fprintf(stderr, "\n");
for (uint32 ii=0; ii<err.size(); ii++)
if (err[ii])
fputs(err[ii], stderr);
exit(1);
}
if (doDumpFile == true) {
dumpFile(tigInputs);
}
else if (doTestFile == true) {
testFile(tigInputs);
}
else {
createStore(tigName, tigVers);
loadTigs(seqName, tigName, tigVers, tigType, tigInputs);
}
exit(0);
}