-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
233 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,24 @@ | ||
from pathlib import Path | ||
from typing import List | ||
|
||
from pysam import AlignedSegment | ||
from pysam import FastxRecord | ||
|
||
from bwapy.libbwaindex import BwaIndex | ||
|
||
class BwaMemOptions: | ||
_ignore_alt: bool | ||
def __init__(self) -> None: ... | ||
|
||
|
||
class BwMemOptionsBuilder: | ||
_options: BwaMemOptions | ||
_options0: BwaMemOptions | ||
def __init__(self, options: BwaMemOptions | None = None) -> None: ... | ||
def build(self) -> BwaMemOptions: ... | ||
def build(self) -> BwaMemOptions: ... | ||
|
||
class BwaMem: | ||
_index: BwaIndex | ||
def __init__(self, prefix: str | Path | None = None, index: BwaIndex | None = None) -> None: ... | ||
def align( | ||
self, opt: BwaMemOptions, queries: List[FastxRecord] | ||
) -> List[List[AlignedSegment]]: ... |
Oops, something went wrong.