Skip to content

Commit

Permalink
Merge pull request #7 from shenwei356/master
Browse files Browse the repository at this point in the history
fix the ambiguity problem of package name "recycle" and script "recycle.py"
  • Loading branch information
rozovr authored Feb 25, 2017
2 parents d45ef37 + 3e643ef commit 48ea5b5
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
test/*bam
test/*bam.bai
*.pyc
*.directory
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[![install with bioconda](https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg?style=flat-square)](http://bioconda.github.io/recipes/recycler/README.html)

# Getting Recycler
You can download Recycler [here](https://github.com/Shamir-Lab/Recycler/releases/download/v0.61/Recycler-v0.61.zip) or clone it via the link below. In case you download the zip, unzip the file before following the instructions below (ignoring the 'git clone' line)
You can download Recycler [here](https://github.com/Shamir-Lab/Recycler/releases/) or clone it via the link below. In case you download the zip, unzip the file before following the instructions below (ignoring the 'git clone' line)

# Installation
To install Recycler and scripts follow the following instructions.

git clone https://github.com/rozovr/Recycler.git
python setup.py install
cd Recycler
python setup.py install --user


# Quick start
Expand Down
2 changes: 1 addition & 1 deletion bin/make_fasta_from_fastg.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
import re, argparse, os
from recycle.utils import readfq
from recyclelib.utils import readfq

def parse_user_input():
parser = argparse.ArgumentParser(
Expand Down
2 changes: 1 addition & 1 deletion bin/recycle.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python

import argparse, os
from recycle import *
from recyclelib.utils import *
import pysam

def parse_user_input():
Expand Down
Binary file removed recycle/__init__.pyc
Binary file not shown.
Binary file removed recycle/run.pyc
Binary file not shown.
Binary file removed recycle/utils.pyc
Binary file not shown.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from setuptools import setup

setup(name='recycler',
version='0.6',
version='0.62',
description='Recycler: an algorithm for detecting plasmids from de novo assembly graphs',
url='https://github.com/Shamir-Lab/Recycler',
author='Roye Rozov',
author_email = '',
license='BSD-3-Clause',
scripts = ['bin/recycle.py', 'bin/make_fasta_from_fastg.py', 'bin/get_simple_cycs.py'],
packages = ['recycle'],
packages = ['recyclelib'],
requires=['python (<3.0)'],
install_requires=[
'networkx',
Expand Down

0 comments on commit 48ea5b5

Please sign in to comment.