Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
##########
Change Log
##########

All notable changes to this project are documented in this file.


Added
-----
- Make ``rose2`` python3 compatible
- Make ``rose2`` a callable python function

4 changes: 2 additions & 2 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014 Charles Lin (Bradner Lab)
Copyright (c) 2018 Charles Lin (Bradner Lab)
and Collaborators:
John DiMatteo
Nick Semenkovich | semenko@alum.mit.edu | https://nick.semenkovich.com
Expand All @@ -21,4 +21,4 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include README.md
recursive-include annotation *
recursive-include rose2/annotation *
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,29 @@ Install
=======

```
pip install -e git+https://github.com/linlabbcm/rose2.git#egg=rose2
pip install -e git+https://github.com/linlabbcm/rose2.git
```

Dependencies
============

ROSE 2 requires [Bamliquidator](https://github.com/BradnerLab/pipeline/wiki/bamliquidator).
The CRC software uses the following dependencies:

- ``Bamliquidator``

- ``Samtools``

Usage
=====

As a command line tool:
```
rose2 -g [GENOME] -i [INPUT_REGION_GFF] -r [RANKBY_BAM_FILE] -o [OUTPUT_FOLDER] [OPTIONAL_FLAGS]
```

As a python library:
```
import rose2

rose2.rose(input_file, rankby, output_folder, genome, bams=None, control='', stitch=None, tss=0, mask_file=None)
```
Loading