We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e35c3c commit 2986bdaCopy full SHA for 2986bda
1 file changed
examples/example.c
@@ -24,7 +24,7 @@ int main(){
24
squig_batch_t *batch = squig_sim_batch(sq);
25
26
for(int i=0; i < opt.batch_size; i++){
27
- squig_rec_t *rec = squig_get_rec(sq, batch, i); //thread safe, can be called in parallel
+ squig_rec_t *rec = squig_get_rec(sq, batch, i); //can be called for each i in parallel
28
fprintf(stdout, "%s\t%d\t%.0f\t%.0f\t%.0f\t%.0f\t%ld\t", rec->read_id, rec->read_group, rec->digitisation, rec->offset, rec->range, rec->sampling_rate, rec->len_raw_signal);
29
int64_t raw_signal_sum = 0;
30
for(int j=0; j < rec->len_raw_signal; j++){
0 commit comments