Skip to content

Commit

Permalink
added README and refined docs
Browse files Browse the repository at this point in the history
  • Loading branch information
domonik committed Apr 23, 2024
1 parent d7370bb commit 58e3e9e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion RAPDOR/datastructures.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ def calc_mean_distance(self):
jsd = self._calc_distance_via(self.state.distance_method, rnase_true, rnase_false, axis=-1)
self.df["Mean Distance"] = jsd

def determine_peaks(self, beta: float = 100):
def determine_peaks(self, beta: float = 1000):
"""Determines the Mean Distance, Peak Positions and shift direction.
The Peaks are determined the following way:
Expand Down
Binary file removed RAPDOR/filesystem_backend/cache/cache.db
Binary file not shown.
4 changes: 3 additions & 1 deletion RAPDOR/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,9 @@ def _update_distribution_layout(fig, names, x, offset, yname):
font=dict(family='SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace', size=16)

)

)
fig.update_layout(
showlegend=True
)
return fig

Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# RAPDOR

**R**apid **A**NOSIM using **P**robability **D**istance for estimati**O**n of **R**edistribution (RAPDOR) is a
package to identify changes in distribution profiles originating from two different conditions.

## [Getting Started](https://domonik.github.io/RAPDOR/)

For installation details, documentation and various tutorials please have a look at our documentation page here:

https://domonik.github.io/RAPDOR/

12 changes: 0 additions & 12 deletions docs/source/running_dash.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,4 @@ You can upload your design and intensities files that you prepared earlier
(see :ref:`Data Prepatation<data-prep-tutorial>`) via the upload page.


DISPLAY mode
------------

You can run the app in display mode. This will disable most of the buttons and is ment for displaying pre-analyzed data.
To achieve this you need to set the environment variable :code:`RAPDOR_DISPLAY_MODE=True`.

.. note::

You need to add the pre-analyzed data when you run the dash app e.g. via the :code:`--input` flag.
Otherwise you can setup your own server (see :ref:`Server Setup<server-setup>`)



0 comments on commit 58e3e9e

Please sign in to comment.