-
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.
-Added function to verify GTC file is complete -Automatic check for GTC file completeness in GenotypeCalls constructor -Switch to numpy data types for floating point calculations (e.g., normalized intensities) for improved consistency with Genome Studio final reports.
- Loading branch information
Showing
4 changed files
with
117 additions
and
45 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
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 |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
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.1' | ||
author='Illumina', | ||
author_email='[email protected]', | ||
packages=['IlluminaBeadArrayFiles'], | ||
package_dir={'IlluminaBeadArrayFiles' : 'module'}, | ||
version='1.2.0' | ||
) |