Skip to content

Commit 2b7bcc7

Browse files
committed
Version 1.0.0
0 parents  commit 2b7bcc7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+3806
-0
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "assemblerflow/templates"]
2+
path = assemblerflow/templates
3+
url = https://github.com/ODiogoSilva/templates.git

.travis.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: python
2+
3+
python:
4+
- "3.6"
5+
6+
install:
7+
- pip install pytest
8+
- pip install coverage
9+
- pip install pytest-cov
10+
- python setup.py install
11+
12+
script:
13+
- py.test --cov=./
14+
15+
after_success:
16+
- bash <(curl -s https://codecov.io/bash)

LICENSE

+674
Large diffs are not rendered by default.

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# assemblerflow
2+
3+
A nextflow pipeline assembler for bacterial genomics.
4+
5+
![Nextflow version](https://img.shields.io/badge/nextflow->0.26.0-brightgreen.svg)
6+
![Python version](https://img.shields.io/badge/python-3.6-brightgreen.svg)
7+
[![Build Status](https://travis-ci.org/ODiogoSilva/assemblerflow.svg?branch=master)](https://travis-ci.org/ODiogoSilva/assemblerflow)
8+
[![PyPI](https://img.shields.io/pypi/v/assemblerflow.svg)](https://pypi.python.org/pypi/assemblerflow/1.0.0rc3)
9+

assemblerflow/__init__.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
__version__ = "1.0.0rc3"
3+
__build__ = "22012018"
4+
__author__ = "Diogo N. Silva"
5+
__copyright__ = "Diogo N. Silva"
6+
__license__ = "GPL3"
7+
__maintainer__ = "Diogo N. Silva"
8+
__email__ = "[email protected]"

0 commit comments

Comments
 (0)