Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Atlas 2.0.3 #13607

Closed
wants to merge 40 commits into from
Closed
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
e46d182
add genome-properties
SilasK Nov 21, 2018
46c507a
added packages to host
SilasK Nov 21, 2018
09addf1
removed import test
SilasK Nov 21, 2018
8d05bd6
Merge pull request #1 from SilasK/genome-properties
SilasK Nov 22, 2018
9c475f2
cat version
SilasK Dec 7, 2018
e7d7108
Merge pull request #3 from bioconda/master
SilasK Dec 12, 2018
b91ce0b
Merge remote-tracking branch 'upstream/master'
SilasK Dec 30, 2018
2617dcc
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes
SilasK Feb 6, 2019
3885394
add recipie
SilasK Feb 6, 2019
7a5bddc
remove genomeprop
SilasK Feb 6, 2019
c504618
added correct shasum
SilasK Feb 6, 2019
84c5748
new try
SilasK Feb 6, 2019
a179126
add import
SilasK Feb 6, 2019
c18dc5d
use snakemake v.5.4 because v5.2 doen't install gitpython
SilasK Feb 6, 2019
5979b94
only help messages
SilasK Feb 6, 2019
8e518eb
Merge branch 'master' of https://github.com/bioconda/bioconda-recipes…
SilasK Feb 6, 2019
6cf5d0b
Update meta.yaml
SilasK Feb 6, 2019
3bfc335
Update meta.yaml
SilasK Feb 6, 2019
a150589
Delete meta.yaml
SilasK Feb 6, 2019
1a77f71
Merge branch 'atlas' of https://github.com/SilasK/bioconda-recipes in…
SilasK Feb 6, 2019
67f0b2f
corrected cat
SilasK Feb 6, 2019
234f09a
add git
SilasK Feb 6, 2019
e6c42c8
v.2.0.1
SilasK Feb 6, 2019
0e06e8d
add unicode prefix
SilasK Feb 6, 2019
52bbc4a
add LC_ALL=en_US.utf8 LANG=en_US.utf8
SilasK Feb 6, 2019
f999d7b
commented out atlas tests only include
SilasK Feb 6, 2019
77ea3d0
extended cont
SilasK Feb 6, 2019
01b36cf
no commands
SilasK Feb 7, 2019
07a41cd
skip osx
SilasK Feb 7, 2019
f12f80e
add comands for testing, build 1
SilasK Feb 7, 2019
32ddfc1
add correct cli
SilasK Feb 7, 2019
f6806e3
updated description
SilasK Feb 7, 2019
95b7951
Merge branch 'master' into atlas
SilasK Feb 7, 2019
2518a7c
add C lang in adition
SilasK Feb 7, 2019
73dcd65
C.utf is not supported
SilasK Feb 7, 2019
d9e8e00
his system lists a couple of UTF-8 supporting locales that
SilasK Feb 7, 2019
3b95f62
remove commands
SilasK Feb 7, 2019
a8ddd74
v. 2.0.2
SilasK Feb 12, 2019
282b869
v2.0.3
SilasK Feb 27, 2019
0cf7260
correct test import
SilasK Feb 27, 2019
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
43 changes: 30 additions & 13 deletions recipes/metagenome-atlas/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set version = "2.0.1" %}
{% set sha256 = "3dbf2283b963237df1181fe4ecfae2fc2cbb6bfde97c01052655a0c508f505bd" %}
{% set version = "2.0.3" %}
{% set sha256 = "2edfbecabb1ce9fd1db4c923429c2ba104cfb44dafc9c846e522ae22d367a30f" %}

package:
name: metagenome-atlas
Expand All @@ -11,9 +11,10 @@ source:

build:
skip: True # [osx]
number: 0
number: 1
entry_points:
- atlas=atlas.main:cli
- atlas=atlas.atlas:cli


requirements:
build:
Expand All @@ -37,23 +38,39 @@ requirements:

test:
imports:
atlas
- atlas
# commands:
# - atlas --version
# - atlas init --help
# - atlas run --help
# extra:
# container:
# # click requires a unicode locale when used with Python 3
# # extended-base generates en_US.UTF-8 locale and sets LC_ALL, LANG properly
# extended-base: true
# - LANG=en_US.utf8 atlas --version
# - LANG=en_US.utf8 atlas init --help
# - LANG=en_US.utf8 atlas run --help

about:
home: https://github.com/metagenome-atlas
license: BSD-3-Clause
license_family: BSD
summary: |
ATLAS - Three commands to start analysing your metagenome data

description: |
Atlas is a easy to use metagenomic pipeline
![scheme of workflow](https://github.com/metagenome-atlas/atlas/blob/f8627545bcfb8f2b55733a35ecd0426ae4bbd5d1/resources/images/ATLAS_scheme.png)

# Quick Start

Three commands to start analysing your metagenome data:
```
conda install -c bioconda -c conda-forge metagenome-atlas
atlas init --db-dir databases path/to/fastq/files
atlas run
```
All databases and dependencies are installed on the fly in the directory `db-dir`.
You want to run these three commands on the example_data on the GitHub repo.
If you have more time, then we recommend you configure atlas according to your needs.
- check the `samples.tsv`
- edit the `config.yaml`
- run atlas on any cluster system
For more details see documentation.

dev_url: https://github.com/metagenome-atlas/atlas
doc_url: https://metagenome-atlas.rtfd.io
extra:
Expand Down