Skip to content

Commit

Permalink
V2.2 (#5)
Browse files Browse the repository at this point in the history
-simplify config files
-prevent non-zero exit code
-minor algorithm improvements
  • Loading branch information
xiao-chen-xc authored Apr 29, 2023
1 parent 775c1d1 commit 52a7f52
Show file tree
Hide file tree
Showing 65 changed files with 5,312 additions and 195,999 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,18 @@ python setup.py install
## Running the program

```bash
paraphase -b input.bam -o output_directory
paraphase -b input.bam -o output_directory -r genome_fasta
```

Alternatively when you have a list of bam files
```bash
paraphase -l list.txt -o output_directory
paraphase -l list.txt -o output_directory -r genome_fasta
```

Required parameters:
- `-b`: Input BAM file or `-l`: text file listing BAM files one per line
- `-o`: Output directory
- `-r`: Path to the reference genome fasta file

Optional parameters:
- `-g`: Gene(s) to analyze. All supported genes will be analyzed if not specified.
Expand Down
2 changes: 1 addition & 1 deletion paraphase/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.1.0"
__version__ = "2.2.1"
8 changes: 7 additions & 1 deletion paraphase/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
from .paraphase import main
from .paraphase import Paraphase


def main():
app = Paraphase()
app.run()


if __name__ == "__main__":
main()
20 changes: 0 additions & 20 deletions paraphase/data/cfc1/cfc1_config.yaml

This file was deleted.

Loading

0 comments on commit 52a7f52

Please sign in to comment.