Skip to content

Commit

Permalink
setup updates
Browse files Browse the repository at this point in the history
Updated setup to include pytables
  • Loading branch information
gmiaslab committed Jul 29, 2019
1 parent 09d6b27 commit 524e5ff
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 9 deletions.
Expand Up @@ -258,7 +258,16 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Time Series Classification"
"# Time Series Classification\n",
"\n",
"In the example below we use data in the 'results' directory to illustrate automatic time series classification. Two time series sets of gene expression intensities are available as '.csv' files:\n",
"\n",
"- Hourly1TimeSeries_SLV_KallistoNormedGeneGencodeGC.csv\n",
"- Hourly2TimeSeries_SLV_KallistoNormedGeneGencodeGC.csv\n",
"\n",
"The corresponding times of the sampling are provided in the file \"TimesHourly.csv\" (hourly sampling).\n",
"\n",
"The custom function processDataTempFunction is executed 3 times, once for each time series, and once for a computation of the 'delta' temporal trends (which considers the paired differences between the different time signals for matching identifiers across the two main sets being compared). The temporal trends, classification and results are output in the corresponding results directories."
]
},
{
Expand Down Expand Up @@ -1157,7 +1166,9 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Visibility Graph"
"# Visibility Graph\n",
"\n",
"In this example we calculate the visibility graph of the mean signal of a clustered group. Both a circular as well as a horizontal layout are illustrated. Missing data are imputed to the mean of the time series."
]
},
{
Expand Down Expand Up @@ -1273,7 +1284,9 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Test Quantile transform"
"# Quantile transform\n",
"\n",
"In this example we calculate the quantile normalized values of a given dataframe (column-wise)."
]
},
{
Expand Down Expand Up @@ -1384,7 +1397,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.1"
"version": "3.7.3"
}
},
"nbformat": 4,
Expand Down
21 changes: 17 additions & 4 deletions docs/examples/pyiomica_examples.ipynb
Expand Up @@ -258,7 +258,16 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Time Series Classification"
"# Time Series Classification\n",
"\n",
"In the example below we use data in the 'results' directory to illustrate automatic time series classification. Two time series sets of gene expression intensities are available as '.csv' files:\n",
"\n",
"- Hourly1TimeSeries_SLV_KallistoNormedGeneGencodeGC.csv\n",
"- Hourly2TimeSeries_SLV_KallistoNormedGeneGencodeGC.csv\n",
"\n",
"The corresponding times of the sampling are provided in the file \"TimesHourly.csv\" (hourly sampling).\n",
"\n",
"The custom function processDataTempFunction is executed 3 times, once for each time series, and once for a computation of the 'delta' temporal trends (which considers the paired differences between the different time signals for matching identifiers across the two main sets being compared). The temporal trends, classification and results are output in the corresponding results directories."
]
},
{
Expand Down Expand Up @@ -1157,7 +1166,9 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Visibility Graph"
"# Visibility Graph\n",
"\n",
"In this example we calculate the visibility graph of the mean signal of a clustered group. Both a circular as well as a horizontal layout are illustrated. Missing data are imputed to the mean of the time series."
]
},
{
Expand Down Expand Up @@ -1273,7 +1284,9 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Test Quantile transform"
"# Quantile transform\n",
"\n",
"In this example we calculate the quantile normalized values of a given dataframe (column-wise)."
]
},
{
Expand Down Expand Up @@ -1384,7 +1397,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.1"
"version": "3.7.3"
}
},
"nbformat": 4,
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -20,7 +20,7 @@
author_email='gmiaslab@gmail.com',
license='MIT',
url='https://github.com/gmiaslab/pyiomica',
download_url='https://github.com/gmiaslab/pyiomica/archive/1.0.0.tar.gz',
download_url='https://github.com/gmiaslab/pyiomica/archive/1.0.1.tar.gz',
keywords=['omics', 'longitudinal','bioinformatics'],
classifiers=[
'License :: OSI Approved :: MIT License',
Expand All @@ -45,6 +45,7 @@
'openpyxl>=2.6.2',
'pandas>=0.24.2',
'pymysql>=0.9.3',
'pytables>=3.5.2',
'requests>=2.22.0',
'scikit-learn>=0.21.2',
'scipy>=1.2.1',
Expand Down

0 comments on commit 524e5ff

Please sign in to comment.