Skip to content
Snippets Groups Projects
Select Git revision
  • 95d3c141be68f8860df86c586fdfa7df14761b46
  • master default protected
  • P_value_too_small
  • new_sample_size_filter
  • 2.3
  • 2.2
  • 2.1
  • 2.0.1
  • 1.0
9 results

setup.py

Blame
  • setup.py 922 B
    from setuptools import setup, find_packages
    
    setup(name='jass_preprocessing',
          version='0.1',
          description='Preprocess and standardize heterogeneous GWAS summary statistic for JASS',
          url='http:https://gitlab.pasteur.fr/statistical-genetics/JASS_Pre-processing',
          author='Hugues Aschard, Hanna Julienne, Vincent Laville',
          author_email='hugues.aschard@pasteur.fr',
          license='MIT',
          #package_dir = {'': 'jass_preprocessing'},
          packages= ['jass_preprocessing'],
          zip_safe=False,
                install_requires=[
              'scipy', 'numpy', 'pandas', 'seaborn'
          ],
          entry_points={
              'console_scripts' : [
                'jass_preprocessing = jass_preprocessing.__main__:main'
              ]
          })
    
    #, "jass_preprocessing.map_gwas","jass_preprocessing.dna_utils", "jass_preprocessing.map_reference","jass_preprocessing.compute_score", "jass_preprocessing.save_output"