skinniderlab / CLM

MIT License
0 stars 0 forks source link

using csv module to parse lines in read_file #204

Closed vineetbansal closed 1 month ago

vineetbansal commented 1 month ago

Fixes issue #203. We're delegating all parsing to the csv module now (still need a new reader for each line to support streaming like we're doing now, with minimal changes).

The gzip mode change from rb to rt is an orthogonal change but that reduces code complexity by a bit.