Skip to content

Commit 97b756b

Browse files
authored
Merge pull request #11 from SynBioDex/revamp_testing
Revamp testing
2 parents 5e334b6 + d0c023a commit 97b756b

23 files changed

Lines changed: 6465 additions & 13 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Experimental Data Converter
22

3-
The Experimental Data Converter (EDC) is a software tool for experimental data standardization using Excel, Flapjack and SynBioHub. The EDC provides researchers with an Excel standard to capture both experimental results and contextual metadata, which are then converted to a uniform data representation for the SBOL standard and Flapjack’s data model. Through SBOL, users of EDC can store experimental results with all initial sequence, part and metadata information, as well as retrieve and share with others, improving reproducibility and collaboration.
3+
The Experimental Data Converter (XDC) is a software tool for experimental data standardization using Excel, Flapjack and SynBioHub. The XDC provides researchers with an Excel standard to capture both experimental results and contextual metadata, which are then converted to a uniform data representation for the SBOL standard and Flapjack’s data model. Through SBOL, users of XDC can store experimental results with all initial sequence, part and metadata information, as well as retrieve and share with others, improving reproducibility and collaboration.
44

55
## Installation
66

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from setuptools import setup, find_packages
2+
3+
setup (
4+
name='excel2flapjack',
5+
version='1.0.2',
6+
packages=find_packages(where='src'),
7+
package_dir={'':'src'},
8+
)
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
version='0.0.1-alpha-1',
55
url='https://github.com/SynBioDex/Experimental-Data-Converter/',
66
license='BSD 3-clause',
7-
maintainer='Sai Samineni',
8-
maintainer_email='sasa6749@colorado.edu',
97
include_package_data=True,
108
description='upload excel resources to flapjack',
11-
packages=find_packages(include=['excel2flapjack']),
9+
packages=find_packages(where="src"),
10+
package_dir={"":"src"},
1211
long_description=open('README.md').read(),
1312
install_requires=['pyflapjack>=1.0.5',
1413
'numpy>=1.21.2',

src/.DS_Store

8 KB
Binary file not shown.
File renamed without changes.

0 commit comments

Comments
 (0)