-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdmx.h
192 lines (157 loc) · 7.36 KB
/
dmx.h
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
// ==========================================================================
// dmx
// ==========================================================================
// Copyright (c) 2012, Jay DePasse, University of Pittsburgh
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Knut Reinert or the FU Berlin nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL KNUT REINERT OR THE FU BERLIN BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
//
// ==========================================================================
// Author: Jay DePasse <[email protected]>
// ==========================================================================
#ifndef SANDBOX_JVD_APPS_DMX_DMX_H_
#define SANDBOX_JVD_APPS_DMX_DMX_H_
#include <stdio.h>
#include <time.h>
#include <sstream>
#include <seqan/basic.h>
#include <seqan/sequence.h>
#include <seqan/misc/misc_cmdparser.h>
#include "dmxCore.h"
using namespace seqan;
// ============================================================================
// Forwards
// ============================================================================
// ============================================================================
// Tags, Classes, Enums
// ============================================================================
struct Options
{
bool showHelp;
bool showVersion;
bool pairedEnd, combinedPairs, sortedPairs;
CharString barcodeFile;
CharString outputPrefix;
int chunkSize, trimSize;
String<CharString> inputFiles;
Options()
{
// Set defaults.
showHelp = false;
showVersion = false;
pairedEnd = false;
combinedPairs = false;
sortedPairs = false;
std::ostringstream oss;
oss << "DMX_OUTPUT_" << time(NULL);
outputPrefix = oss.str();
chunkSize = 10000;
trimSize = 0;
}
};
// ============================================================================
// Metafunctions
// ============================================================================
// ============================================================================
// Functions
// ============================================================================
void setupCommandLineParser(CommandLineParser & parser, Options const & options)
{
addVersionLine(parser, "0.1");
addTitleLine(parser, "**********************");
addTitleLine(parser, "********* dmx ********");
addTitleLine(parser, "**********************");
addTitleLine(parser, "");
addTitleLine(parser, "(c) 2012 by Jay DePasse <[email protected]>");
addUsageLine(parser, "[pcst] -b <barcode file> <fastq input files>");
addSection(parser, "Barcode File Format:");
addHelpLine(parser, "<barcode id> <barcode layout string> <barcode sequence>");
addSection(parser, "Barcode Layout String (similar to CIGAR format; type character, followed by length):");
addHelpLine(parser, "P = final amplification primer sequence");
addHelpLine(parser, "R = random primer ID sequence");
addHelpLine(parser, "B = barcode sequence");
addHelpLine(parser, "N = random SISPA primer");
addHelpLine(parser,"");
addHelpLine(parser, "EXAMPLE: \"P16R4B6N6\" <-- 16 base amplification primer, 4 base random primer ID, 6 base barcode, 6 base random SISPA primer");
addSection(parser, "Options:");
addOption(parser, CommandLineOption("p", "paired", "Files contain (some) paired-end reads.", OptionType::Boolean));
addOption(parser, CommandLineOption("c", "combined", "Paired-end reads contained in a single file.", OptionType::Boolean));
addOption(parser, CommandLineOption("s", "sorted", "Paired-end reads are in sorted order.", OptionType::Boolean));
addOption(parser, CommandLineOption("k", "chunk", "Number of reads per chunk during parallel processing.", OptionType::Integer));
addOption(parser, CommandLineOption("t", "trim", "Number of bases to trim from beginning of all reads before barcode search.", OptionType::Integer));
addOption(parser, CommandLineOption("o", "outputPrefix", "Prefix for all output files.", OptionType::String, options.outputPrefix));
addOption(parser, CommandLineOption("b", "barcodeFile", "Mandatory barcode file.", OptionType::String | OptionType::Mandatory));
requiredArguments(parser, 1);
}
int parseCommandLineAndCheck(Options & options,
CommandLineParser & parser,
int argc,
char const ** argv)
{
int ret = !(parse(parser, argc, argv));
if (ret)
{
if (isSetLong(parser, "help"))
{
options.showHelp = true;
ret = 0;
}
if (isSetLong(parser, "version"))
{
options.showVersion = true;
ret = 0;
}
}
getOptionValueLong(parser, "paired", options.pairedEnd);
getOptionValueLong(parser, "combined", options.combinedPairs);
getOptionValueLong(parser, "sorted", options.sortedPairs);
getOptionValueLong(parser, "outputPrefix", options.outputPrefix);
getOptionValueLong(parser, "barcodeFile", options.barcodeFile);
getOptionValueLong(parser, "chunk", options.chunkSize);
getOptionValueLong(parser, "trim", options.trimSize);
options.inputFiles = getArgumentValues(parser);
return ret;
}
int mainWithOptions(Options & options)
{
typedef Iterator<String<CharString> >::Type TIterator;
std::cout << "\nOptional Arguments:" << std::endl;
std::cout << " paired: \"" << options.pairedEnd << "\"" << std::endl;
std::cout << " combined: \"" << options.combinedPairs << "\"" << std::endl;
std::cout << " sorted: \"" << options.sortedPairs << "\"" << std::endl;
std::cout << " output prefix: \"" << options.outputPrefix << "\"" << std::endl;
std::cout << " chunk size: \"" << options.chunkSize << "\"" << std::endl;
std::cout << " trim size: \"" << options.trimSize << "\"" << std::endl;
std::cout << "\nRequired Arguments:" << std::endl;
std::cout << " barcode file: \"" << options.barcodeFile << "\"" << std::endl;
std::cout << " input files: ";
for (TIterator it = begin(options.inputFiles); it != end(options.inputFiles); ++it)
{
std::cout << " \"" << *it << "\"";
}
std::cout << std::endl << std::endl;;
return 0;
}
#endif // #ifndef SANDBOX_JVD_APPS_DMX_DMX_H_