Skip to content

Commit

Permalink
chore: fixup typos and reference in scaladoc
Browse files Browse the repository at this point in the history
  • Loading branch information
clintval committed Apr 29, 2022
1 parent a3a5933 commit c08b560
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/scala/com/fulcrumgenomics/bam/api/SamSource.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ object SamSource {
*
* @param path the path to read the SAM/BAM/CRAM from
* @param index an optional path to read the index from
* @param ref an optional reference sequencing for decoding CRAM files
* @param ref an optional reference sequence for decoding CRAM files
* @param async if true use extra thread(s) to speed up reading
* @param stringency the validation stringency to apply when reading the data
* @param factory a SAMRecordFactory; MUST return classes that mix in [[SamRecord]]
* @param factory a [[SAMRecordFactory]]; MUST return classes that mix in [[SamRecord]]
*/
def apply(path: PathToBam,
index: Option[FilePath] = None,
Expand All @@ -69,10 +69,10 @@ object SamSource {
/** Constructs a [[SamSource]] to read from the provided input stream.
*
* @param stream the input stream of SAM/BAM/CRAM bytes
* @param ref an optional reference sequencing for decoding CRAM files
* @param ref an optional reference sequence for decoding CRAM files
* @param async if true use extra thread(s) to speed up reading
* @param stringency the validation stringency to apply when reading the data
* @param factory a SAMRecordFactory; MUST return classes that mix in [[SamRecord]]
* @param factory a [[SAMRecordFactory]]; MUST return classes that mix in [[SamRecord]]
*/
def apply(
stream: InputStream,
Expand Down

0 comments on commit c08b560

Please sign in to comment.