-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial work on an extensible VCF filter
- Loading branch information
James Casbon
committed
Jan 20, 2012
1 parent
0ec7e3e
commit 7f7b7bd
Showing
3 changed files
with
13 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,16 @@ | |
|
||
setup( | ||
name='PyVCF', | ||
py_modules=['vcf'], | ||
scripts=['vcf_melt'], | ||
py_modules=['vcf', 'vcf_filter'], | ||
scripts=['vcf_melt', 'vcf_filter.py'], | ||
author='James Casbon', | ||
author_email='[email protected]', | ||
description='Variant Call Format (VCF) parser for python', | ||
test_suite='test.test_vcf.suite', | ||
requires=requires | ||
requires=requires, | ||
entry_points = { | ||
'vcf.filters': [ | ||
'site_quality = vcf_filter:SiteQuality', | ||
] | ||
} | ||
) |
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