Skip to content

Commit 1e1a0c8

Browse files
committed
Fix Dockerfile pointer for some env files
1 parent 3f198c7 commit 1e1a0c8

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/dockerhub.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
uses: docker/build-push-action@v5
124124
with:
125125
context: .
126-
file: workflow/envs/komplexity.Dockerfile
126+
file: sunbeam/workflow/envs/komplexity.Dockerfile
127127
push: true
128128
tags: ${{ steps.meta.outputs.tags }}
129129
labels: ${{ steps.meta.outputs.labels }}
@@ -151,7 +151,7 @@ jobs:
151151
uses: docker/build-push-action@v5
152152
with:
153153
context: .
154-
file: workflow/envs/qc.Dockerfile
154+
file: sunbeam/workflow/envs/qc.Dockerfile
155155
push: true
156156
tags: ${{ steps.meta.outputs.tags }}
157157
labels: ${{ steps.meta.outputs.labels }}

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
<img src="docs/images/sunbeam_logo.gif" width=120, height=120 align="left" />
1+
<img src="https://github.com/sunbeam-labs/sunbeam/blob/main/docs/images/sunbeam_logo.gif" width=120, height=120 align="left" />
22

33
# Sunbeam: a robust, extensible metagenomic sequencing pipeline
44

55
[![Tests](https://github.com/sunbeam-labs/sunbeam/actions/workflows/pr.yml/badge.svg)](https://github.com/sunbeam-labs/sunbeam/actions/workflows/pr.yml)
66
[![Documentation Status](https://readthedocs.org/projects/sunbeam/badge/?version=stable)](https://sunbeam.readthedocs.io/en/stable/?badge=stable)
7-
[![Release](https://img.shields.io/github/release/sunbeam-labs/sunbeam.svg?style=flat)](https://github.com/sunbeam-labs/sunbeam/releases/latest)
7+
[![PyPI](https://badge.fury.io/py/sunbeamlib.svg)](https://pypi.org/project/sunbeamlib/)
8+
[![Bioconda](https://anaconda.org/bioconda/sunbeamlib/badges/downloads.svg)](https://anaconda.org/bioconda/sunbeamlib/)
89
[![DockerHub](https://img.shields.io/docker/pulls/sunbeamlabs/sunbeam)](https://hub.docker.com/repository/docker/sunbeamlabs/sunbeam/)
910
[![DOI:10.1186/s40168-019-0658-x](https://img.shields.io/badge/Published%20in-Microbiome-1abc9c.svg)](https://doi.org/10.1186/s40168-019-0658-x)
1011

11-
Sunbeam is a pipeline written in [snakemake](http://snakemake.readthedocs.io) that simplifies and automates many of the steps in metagenomic sequencing analysis. It uses [conda](http://conda.io) to manage dependencies, so it doesn't have pre-existing dependencies or admin privileges, and can be deployed on most Linux workstations and clusters. Sunbeam was designed to be modular and extensible, allowing anyone to build off the core functionality. To read more, check out [our paper in Microbiome](https://microbiomejournal.biomedcentral.com/articles/10.1186/s40168-019-0658-x).
12+
Sunbeam is a pipeline written in [snakemake](http://snakemake.readthedocs.io) that simplifies and automates many of the steps in metagenomic sequencing analysis. It can be installed through PyPi (pip), Bioconda (conda), DockerHub (docker), or GitHub (git). Sunbeam was designed to be modular and extensible, allowing anyone to build off the core functionality. To read more, check out [our paper in Microbiome](https://microbiomejournal.biomedcentral.com/articles/10.1186/s40168-019-0658-x).
1213

1314
Sunbeam currently automates the following tasks:
1415

sunbeam/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from pathlib import Path
33

44

5-
__version__ = "5.0.0.c"
5+
__version__ = "5.0.1"
66
__author__ = "Erik Clarke"
77
__license__ = "GPL2+"
88

0 commit comments

Comments
 (0)