Skip to content

Commit 2986bda

Browse files
committed
comment
1 parent 6e35c3c commit 2986bda

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ int main(){
2424
squig_batch_t *batch = squig_sim_batch(sq);
2525

2626
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
27+
squig_rec_t *rec = squig_get_rec(sq, batch, i); //can be called for each i in parallel
2828
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);
2929
int64_t raw_signal_sum = 0;
3030
for(int j=0; j < rec->len_raw_signal; j++){

0 commit comments

Comments
 (0)