Skip to content

Commit

Permalink
Rev version numbers and add change log
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Kelley committed Jan 12, 2017
1 parent 0b4f62a commit acee4c2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions change_log.txt
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
2 changes: 1 addition & 1 deletion module/IlluminaBeadArrayFiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
## of the authors and should not be interpreted as representing official policies,
## either expressed or implied, of the FreeBSD Project.

__version__ = "1.0.0"
__version__ = "1.1.0"
import struct
from math import cos,sin,pi,atan2

Expand Down
20 changes: 10 additions & 10 deletions setup.py
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'
)

0 comments on commit acee4c2

Please sign in to comment.