@@ -71,9 +71,9 @@ int main(int argc, const char * argv[])
71
71
1 , // Required?
72
72
1 , // Number of args expected.
73
73
0 , // Delimiter if expecting multiple args.
74
- " * Text file with SNP identifiers in the first column.\n "
75
- " Instead of a file name, you may use 'randomN' with an integer N for"
76
- " a random SNP list of length N.\n " ,
74
+ " * Text file with SNP identifiers in the first column."
75
+ " Instead of a file name, you may use 'randomN' with an integer N for"
76
+ " a random SNP list of length N." ,
77
77
" --snps" // Flag token.
78
78
);
79
79
@@ -83,7 +83,7 @@ int main(int argc, const char * argv[])
83
83
1 , // Number of args expected.
84
84
0 , // Delimiter if expecting multiple args.
85
85
" * Gene matrix file in GCT format. The Name column must contain the"
86
- " same gene identifiers as in --gene-intervals.\n " ,
86
+ " same gene identifiers as in --gene-intervals." ,
87
87
" --gene-matrix" // Flag token.
88
88
);
89
89
@@ -93,7 +93,7 @@ int main(int argc, const char * argv[])
93
93
1 , // Number of args expected.
94
94
0 , // Delimiter if expecting multiple args.
95
95
" * BED file with gene intervals. The fourth column must contain the"
96
- " same gene identifiers as in --gene-matrix.\n " ,
96
+ " same gene identifiers as in --gene-matrix." ,
97
97
" --gene-intervals" // Flag token.
98
98
);
99
99
@@ -103,7 +103,7 @@ int main(int argc, const char * argv[])
103
103
1 , // Number of args expected.
104
104
0 , // Delimiter if expecting multiple args.
105
105
" * BED file with all known SNP intervals. The fourth column must"
106
- " contain the same SNP identifiers as in --snps and --null-snps.\n " ,
106
+ " contain the same SNP identifiers as in --snps and --null-snps." ,
107
107
" --snp-intervals" // Flag token.
108
108
);
109
109
@@ -114,7 +114,7 @@ int main(int argc, const char * argv[])
114
114
0 , // Delimiter if expecting multiple args.
115
115
" * Text file with SNP identifiers to sample when generating null"
116
116
" matched or random SNP sets. These SNPs must be a subset of"
117
- " --snp-intervals.\n " ,
117
+ " --snp-intervals." ,
118
118
" --null-snps" // Flag token.
119
119
);
120
120
@@ -123,7 +123,7 @@ int main(int argc, const char * argv[])
123
123
1 , // Required?
124
124
1 , // Number of args expected.
125
125
0 , // Delimiter if expecting multiple args.
126
- " * Create output files in this directory.\n " , // Help description.
126
+ " * Create output files in this directory." , // Help description.
127
127
" --out" // Flag token.
128
128
);
129
129
@@ -135,7 +135,7 @@ int main(int argc, const char * argv[])
135
135
" * Text file with a list of columns in --gene-matrix to condition on"
136
136
" before calculating p-values. Each column in --gene-matrix is"
137
137
" projected onto each column listed in this file and its projection"
138
- " is subtracted.\n " ,
138
+ " is subtracted." ,
139
139
" --condition" // Flag token.
140
140
);
141
141
@@ -146,7 +146,7 @@ int main(int argc, const char * argv[])
146
146
1 , // Number of args expected.
147
147
0 , // Delimiter if expecting multiple args.
148
148
" * If a SNP overlaps no gene intervals, extend the SNP interval this"
149
- " many nucleotides further and try again.\n [default: 250000]\n " ,
149
+ " many nucleotides further and try again.\n [default: 250000]" ,
150
150
" --slop" , // Flag token.
151
151
vU8
152
152
);
@@ -157,7 +157,7 @@ int main(int argc, const char * argv[])
157
157
0 , // Required?
158
158
1 , // Number of args expected.
159
159
0 , // Delimiter if expecting multiple args.
160
- " * Number of threads to use.\n [default: 1]\n " ,
160
+ " * Number of threads to use. [default: 1]" ,
161
161
" --threads" , // Flag token.
162
162
gt1
163
163
);
@@ -169,7 +169,7 @@ int main(int argc, const char * argv[])
169
169
1 , // Number of args expected.
170
170
0 , // Delimiter if expecting multiple args.
171
171
" * Test this many null matched SNP sets, so you can compare"
172
- " your results to a distribution of null results.\n [default: 10]\n " ,
172
+ " your results to a distribution of null results.\n [default: 10]" ,
173
173
" --null-snpsets" , // Flag token.
174
174
gt0
175
175
);
@@ -182,7 +182,7 @@ int main(int argc, const char * argv[])
182
182
" * Stop testing a column in --gene-matrix after observing this many"
183
183
" null SNP sets with specificity scores greater or equal to those"
184
184
" obtained with the SNP set in --snps. Increase this value to obtain"
185
- " more accurate p-values.\n [default: 25]\n " ,
185
+ " more accurate p-values.\n [default: 25]" ,
186
186
" --min-observations" , // Flag token.
187
187
gt1
188
188
);
@@ -194,7 +194,7 @@ int main(int argc, const char * argv[])
194
194
0 , // Delimiter if expecting multiple args.
195
195
" * Maximum number of null SNP sets tested against each column in"
196
196
" --gene-matrix. Increase this value to resolve smaller p-values."
197
- " \n [default: 1000]\n " ,
197
+ " \n [default: 1000]" ,
198
198
" --max-iterations" , // Flag token.
199
199
gt1
200
200
);
0 commit comments