Skip to content

Commit

Permalink
Merge pull request #38 from MannLabs/go_analysis
Browse files Browse the repository at this point in the history
Go analysis
  • Loading branch information
elena-krismer authored Nov 14, 2022
2 parents 66ad4be + d52b84b commit bde4978
Show file tree
Hide file tree
Showing 24 changed files with 29,671 additions and 220 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.2.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down
Binary file added .coverage
Binary file not shown.
15 changes: 15 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2

build:
os: "ubuntu-20.04"
tools:
python: "3.9"

# Build from the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py

# Explicitly set the version of Python and its requirements
python:
install:
- requirements: docs/requirements_docs.txt
2 changes: 2 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@
* rawdata renamed to rawinput
* GUI bug fix

## 0.2.0
* Gene Ontology Enrichment Analysis using a GO tool
4 changes: 3 additions & 1 deletion alphastats/DataSet.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

from alphastats.DataSet_Plot import Plot
from alphastats.DataSet_Preprocess import Preprocess
from alphastats.DataSet_Pathway import Enrichment
from alphastats.DataSet_Statistics import Statistics
from alphastats.utils import LoaderError

Expand All @@ -25,7 +26,7 @@
warnings.filterwarnings("ignore", category=UserWarning, module="openpyxl")


class DataSet(Preprocess, Statistics, Plot):
class DataSet(Preprocess, Statistics, Plot, Enrichment):
"""Analysis Object
"""

Expand All @@ -46,6 +47,7 @@ def __init__(self, loader, metadata_path=None, sample_column=None):
self.index_column = loader.index_column
self.intensity_column = loader.intensity_column
self.filter_columns = loader.filter_columns
self.evidence_df = loader.evidence_df
self.gene_names = loader.gene_names

# include filtering before
Expand Down
194 changes: 0 additions & 194 deletions alphastats/DataSet_Pathway

This file was deleted.

Loading

0 comments on commit bde4978

Please sign in to comment.