-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·60 lines (47 loc) · 1.91 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·60 lines (47 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="piperna",
version="1.81",
author="Scott Furlan",
author_email="scottfurlan@gmail.com",
description="A python wrapper for fast and parallel processing of bulk RNA Seq data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/scfurl/piperna.git",
packages=setuptools.find_packages(),
package_data={'piperna': ['piperna/data/genomes.json']},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=2.5',
entry_points={'console_scripts': [
'piperna = piperna.__main__:run_piperna',
]},
)
"""
cd '/Users/sfurlan/OneDrive - Fred Hutchinson Cancer Research Center/computation/develop/piperna'
rm dist/*
y
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*
scfurl
**At SCRI do the following**
module load python
python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx install --include-deps --pip-args '--trusted-host pypi.org --trusted-host files.pythonhosted.org' piperna
pipx install --spec git+https://github.com/scfurl/piperna@dev --include-deps piperna --pip-args '--trusted-host pypi.org --trusted-host files.pythonhosted.org'
**At the FHCRC do the following...**
module load Python/3.6.7-foss-2016b-fh1
python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx uninstall piperna
pipx install --spec git+https://github.com/scfurl/piperna --include-deps piperna
pipx install --include-deps piperna
piperna CONCATFASTQ -fc /archive/furlan_s/seq/cellranger/181015-NHPTreg/HHJJ7BGX5/outs/fastq_path,/archive/furlan_s/seq/cellranger/181015-NHPTreg/HWVFMBGX3/outs/fastq_path -o /archive/furlan_s/data_submission
"""