-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README, demo, setup.py and adjust program output fields
- Loading branch information
1 parent
69fb52b
commit 371a6d7
Showing
4 changed files
with
57 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
============ | ||
Program Demo | ||
============ | ||
|
||
1. Download a WGS bam file:: | ||
|
||
$ wget ftp://ftp-trace.ncbi.nih.gov/1000genomes/ftp/1000G_2504_high_coverage/data/ERR3239883/NA20815.final.cram | ||
$ wget ftp://ftp-trace.ncbi.nih.gov/1000genomes/ftp/1000G_2504_high_coverage/data/ERR3239883/NA20815.final.cram.crai | ||
|
||
2. Make a manifest file:: | ||
|
||
$ echo "$PWD/NA20815.final.cram" > manifest.txt | ||
|
||
3. Run Gauchian, which takes about one to two minutes with single thread:: | ||
|
||
$ gauchian -m manifest.txt -g 38 -o out -p testgba | ||
|
||
4. Check the output file out/testgba.tsv | ||
|
||
============= ========================================= ======================================= ============= ========================== =========================== ======================= | ||
Sample is_biallelic(GBAP1-like_variant_exon9-11) is_carrier(GBAP1-like_variant_exon9-11) CN(GBA+GBAP1) deletion_breakpoint_in_GBA GBAP1-like_variant_exon9-11 other_unphased_variants | ||
============= ========================================= ======================================= ============= ========================== =========================== ======================= | ||
NA20815.final False True 4 N/A L483P/ None | ||
============= ========================================= ======================================= ============= ========================== =========================== ======================= |
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 |
---|---|---|
|
@@ -17,6 +17,7 @@ def readme(): | |
author_email='[email protected]', | ||
license='GPLv3', | ||
packages=['gauchian', 'gauchian.caller', 'gauchian.depth_calling'], | ||
package_data={'gauchian': ['data/*']}, | ||
install_requires=['pysam', 'numpy', 'scipy', 'statsmodels'], | ||
setup_requires=['pytest-runner'], | ||
tests_require=['pytest'], | ||
|