-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rev version numbers and add change log
- Loading branch information
Ryan Kelley
committed
Jan 12, 2017
1 parent
0b4f62a
commit acee4c2
Showing
3 changed files
with
16 additions
and
11 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
1.1.0 | ||
-Added ability to parse customer and reference strand from manifest | ||
-Added ability to generate forward and plus strand nucleotide calls from genotypes | ||
|
||
1.0.0 |
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,10 +1,10 @@ | ||
from distutils.core import setup | ||
setup( | ||
name='IlluminaBeadArrayFiles', | ||
description='Library to read data format related to Illumina genotyping bead arrays', | ||
author = 'Illumina', | ||
author_email = '[email protected]', | ||
packages = ['IlluminaBeadArrayFiles'], | ||
package_dir = {'IlluminaBeadArrayFiles' : 'module'}, | ||
version = '1.0.0' | ||
) | ||
from distutils.core import setup | ||
setup( | ||
name='IlluminaBeadArrayFiles', | ||
description='Library to read data format related to Illumina genotyping bead arrays', | ||
author = 'Illumina', | ||
author_email = '[email protected]', | ||
packages = ['IlluminaBeadArrayFiles'], | ||
package_dir = {'IlluminaBeadArrayFiles' : 'module'}, | ||
version = '1.1.0' | ||
) |