Skip to content

Commit

Permalink
Add more descriptions in detail for CRAM reader option
Browse files Browse the repository at this point in the history
  • Loading branch information
athos committed Mar 21, 2024
1 parent 61237ad commit db30ca3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/cljam/io/cram.clj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
The function also takes an optional argument `option`, which is a map that
consists of:
- reference: a string representing the path to a reference file"
- reference: A string representing the path to the reference file, or
a sequence reader that reads sequences from the reference file.
This may be omitted only when the CRAM file to be read does not
require a reference file."
(^CRAMReader [f] (reader f {}))
(^CRAMReader [f option]
(if (io-util/cram-reader? f)
Expand Down

0 comments on commit db30ca3

Please sign in to comment.