forked from deweylab/RSEM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simulation.cpp
225 lines (188 loc) · 8.86 KB
/
simulation.cpp
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
#include<cmath>
#include<ctime>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cassert>
#include<string>
#include<iostream>
#include<fstream>
#include<sstream>
#include<vector>
#include "utils.h"
#include "my_assert.h"
#include "Read.h"
#include "SingleRead.h"
#include "SingleReadQ.h"
#include "PairedEndRead.h"
#include "PairedEndReadQ.h"
#include "Model.h"
#include "SingleModel.h"
#include "SingleQModel.h"
#include "PairedEndModel.h"
#include "PairedEndQModel.h"
#include "Refs.h"
#include "Transcript.h"
#include "Transcripts.h"
#include "WriteResults.h"
#include "simul.h"
using namespace std;
bool verbose = true;
bool alleleS;
int OFFSITE;
READ_INT_TYPE N;
int model_type, M;
Refs refs;
Transcripts transcripts;
vector<double> eel;
vector<double> theta, counts;
int n_os;
ostream *os[2];
char outReadF[2][STRLEN];
char refName[STRLEN];
char refF[STRLEN], tiF[STRLEN];
simul *sampler;
void genOutReadStreams(int type, char *outFN) {
switch(type) {
case 0 :
n_os = 1;
sprintf(outReadF[0], "%s.fa", outFN);
break;
case 1 :
n_os = 1;
sprintf(outReadF[0], "%s.fq", outFN);
break;
case 2 :
n_os = 2;
for (int i = 0; i < n_os; i++)
sprintf(outReadF[i], "%s_%d.fa", outFN, i + 1);
break;
case 3 :
n_os = 2;
for (int i = 0; i < n_os; i++)
sprintf(outReadF[i], "%s_%d.fq", outFN, i + 1);
break;
}
for (int i = 0; i < n_os; i++)
os[i] = new ofstream(outReadF[i]);
}
template<class ReadType, class ModelType>
void simulate(char* modelF, char* resultsF) {
ModelType model(&refs);
ReadType read;
int sid;
model.read(modelF);
//calculate eel
calcExpectedEffectiveLengths<ModelType>(M, refs, model, eel);
//generate theta vector
ifstream fin(resultsF);
string line;
double tpm;
double denom = 0.0;
getline(fin, line); // read the first line, which is just column names
for (int i = 1; i <= M; i++) {
getline(fin, line);
size_t pos = 0;
for (int j = 0; j < OFFSITE; j++) pos = line.find_first_of('\t', pos) + 1;
size_t pos2 = line.find_first_of('\t', pos);
if (pos2 == string::npos) pos2 = line.length();
tpm = atof(line.substr(pos, pos2 - pos).c_str());
theta[i] = tpm * eel[i]; // during simulation, there is no check for effL < 0. The reason is for that case, eel[i] here = 0 and therefore no chance to sample from it
denom += theta[i];
}
assert(denom > EPSILON);
fin.close();
for (int i = 1; i <= M; i++) theta[i] = theta[i] / denom * (1.0 - theta[0]);
READ_INT_TYPE resimulation_count = 0;
//simulating...
model.startSimulation(sampler, theta);
for (READ_INT_TYPE i = 0; i < N; i++) {
while (!model.simulate(i, read, sid)) { ++resimulation_count; }
read.write(n_os, os);
++counts[sid];
if ((i + 1) % 1000000 == 0 && verbose) cout<<"GEN "<< i + 1<< endl;
}
model.finishSimulation();
cout<< "Total number of resimulation is "<< resimulation_count<< endl;
}
void releaseOutReadStreams() {
for (int i = 0; i < n_os; i++) {
((ofstream*)os[i])->close();
delete os[i];
}
}
int main(int argc, char* argv[]) {
bool quiet = false;
FILE *fi = NULL;
if (argc < 7 || argc > 10) {
printf("Usage: rsem-simulate-reads reference_name estimated_model_file estimated_isoform_results theta0 N output_name [--seed seed] [-q]\n\n");
printf("Parameters:\n\n");
printf("reference_name: The name of RSEM references, which should be already generated by 'rsem-prepare-reference'\n");
printf("estimated_model_file: This file describes how the RNA-Seq reads will be sequenced given the expression levels. It determines what kind of reads will be simulated (single-end/paired-end, w/o quality score) and includes parameters for fragment length distribution, read start position distribution, sequencing error models, etc. Normally, this file should be learned from real data using 'rsem-calculate-expression'. The file can be found under the 'sample_name.stat' folder with the name of 'sample_name.model'\n");
printf("estimated_isoform_results: This file contains expression levels for all isoforms recorded in the reference. It can be learned using 'rsem-calculate-expression' from real data. The corresponding file users want to use is 'sample_name.isoforms.results'. If simulating from user-designed expression profile is desired, start from a learned 'sample_name.isoforms.results' file and only modify the 'TPM' column. The simulator only reads the TPM column. But keeping the file format the same is required. If the RSEM references built are aware of allele-specific transcripts, 'sample_name.alleles.results' should be used instead.\n");
printf("theta0: This parameter determines the fraction of reads that are coming from background \"noise\" (instead of from a transcript). It can also be estimated using 'rsem-calculate-expression' from real data. Users can find it as the first value of the third line of the file 'sample_name.stat/sample_name.theta'.\n");
printf("N: The total number of reads to be simulated. If 'rsem-calculate-expression' is executed on a real data set, the total number of reads can be found as the 4th number of the first line of the file 'sample_name.stat/sample_name.cnt'.\n");
printf("output_name: Prefix for all output files.\n");
printf("--seed seed: Set seed for the random number generator used in simulation. The seed should be a 32-bit unsigned integer.\n");
printf("-q: Set it will stop outputting intermediate information.\n\n");
printf("Outputs:\n\n");
printf("output_name.sim.isoforms.results, output_name.sim.genes.results: Expression levels estimated by counting where each simulated read comes from.\n");
printf("output_name.sim.alleles.results: Allele-specific expression levels estimated by counting where each simulated read comes from.\n\n");
printf("output_name.fa if single-end without quality score;\noutput_name.fq if single-end with quality score;\noutput_name_1.fa & output_name_2.fa if paired-end without quality score;\noutput_name_1.fq & output_name_2.fq if paired-end with quality score.\n\n");
printf("Format of the header line: Each simulated read's header line encodes where it comes from. The header line has the format:\n\n");
printf("\t{>/@}_rid_dir_sid_pos[_insertL]\n\n");
printf("{>/@}: Either '>' or '@' must appear. '>' appears if FASTA files are generated and '@' appears if FASTQ files are generated\n");
printf("rid: Simulated read's index, numbered from 0\n");
printf("dir: The direction of the simulated read. 0 refers to forward strand ('+') and 1 refers to reverse strand ('-')\n");
printf("sid: Represent which transcript this read is simulated from. It ranges between 0 and M, where M is the total number of transcripts. If sid=0, the read is simulated from the background noise. Otherwise, the read is simulated from a transcript with index sid. Transcript sid's transcript name can be found in the 'transcript_id' column of the 'sample_name.isoforms.results' file (at line sid + 1, line 1 is for column names)\n");
printf("pos: The start position of the simulated read in strand dir of transcript sid. It is numbered from 0\n");
printf("insertL: Only appear for paired-end reads. It gives the insert length of the simulated read.\n\n");
printf("Example:\n\n");
printf("Suppose we want to simulate 50 millon single-end reads with quality scores and use the parameters learned from [Example](#example). In addition, we set theta0 as 0.2 and output_name as 'simulated_reads'. The command is:\n\n");
printf("\trsem-simulate-reads /ref/mouse_125 mmliver_single_quals.stat/mmliver_single_quals.model mmliver_single_quals.isoforms.results 0.2 50000000 simulated_reads\n");
exit(-1);
}
quiet = false;
sampler = NULL;
for (int i = 7; i < argc; i++) {
if (!strcmp(argv[i], "-q")) quiet = true;
if (!strcmp(argv[i], "--seed")) {
assert(i + 1 < argc);
istringstream reader(argv[i + 1]);
unsigned int seed;
assert(reader>> seed);
sampler = new simul(seed);
}
}
verbose = !quiet;
if (sampler == NULL) sampler = new simul(time(NULL));
strcpy(refName, argv[1]);
alleleS = isAlleleSpecific(refName);
OFFSITE = (alleleS ? 6: 5);
//load basic files
sprintf(refF, "%s.seq", argv[1]);
refs.loadRefs(refF);
M = refs.getM();
sprintf(tiF, "%s.ti", argv[1]);
transcripts.readFrom(tiF);
//read model type from modelF
fi = fopen(argv[2], "r");
if (fi == NULL) { fprintf(stderr, "Cannot open %s! It may not exist.\n", argv[2]); exit(-1); }
assert(fscanf(fi, "%d", &model_type) == 1);
fclose(fi);
theta.assign(M + 1, 0.0);
theta[0] = atof(argv[4]);
N = atoi(argv[5]);
genOutReadStreams(model_type, argv[6]);
counts.assign(M + 1, 0.0);
switch(model_type) {
case 0: simulate<SingleRead, SingleModel>(argv[2], argv[3]); break;
case 1: simulate<SingleReadQ, SingleQModel>(argv[2], argv[3]); break;
case 2: simulate<PairedEndRead, PairedEndModel>(argv[2], argv[3]); break;
case 3: simulate<PairedEndReadQ, PairedEndQModel>(argv[2], argv[3]); break;
}
writeResultsSimulation(M, refName, argv[6], transcripts, eel, counts);
releaseOutReadStreams();
delete sampler;
return 0;
}