Skip to content

Commit

Permalink
REL: 2020.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ebolyen committed Oct 17, 2020
1 parent ca20ea9 commit 252e728
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: ci
on:
push:
branches:
- master
- r2020.8
paths-ignore:
- 'conda-env-files/**'
pull_request:
branches:
- master
- r2020.8

jobs:
lint:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:

integrate:
needs: build-and-test
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/r2020.8'
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
source "$CONDA/etc/profile.d/conda.sh"
sudo conda install -p ./genome-sampler-env -q \
-c https://packages.qiime2.org/qiime2/unverified/ \
-c qiime2-staging \
-c qiime2 \
-c conda-forge \
-c bioconda \
-c defaults \
Expand All @@ -111,7 +111,7 @@ jobs:

commit-env-files:
needs: integrate
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/r2020.8'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
needs: doc-build
runs-on: ubuntu-latest
# TODO: update the following when cutting a release
if: github.ref == 'refs/heads/some-release-branch'
if: github.ref == 'refs/heads/r2020.8'
steps:
- name: fetch built docs
uses: actions/download-artifact@v1
Expand Down
4 changes: 2 additions & 2 deletions docs/downstream-workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ haven't, you'll be missing files that are needed for this tutorial.
## Obtain reference sequence and alignment mask

```
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/master/snakemake/tutorial-data/alignment-mask.qza --output tutorial-data/alignment-mask.qza
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/master/snakemake/tutorial-data/sarscov2-reference-genome.qza --output tutorial-data/sarscov2-reference-genome.qza
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/r2020.8/snakemake/tutorial-data/alignment-mask.qza --output tutorial-data/alignment-mask.qza
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/r2020.8/snakemake/tutorial-data/sarscov2-reference-genome.qza --output tutorial-data/sarscov2-reference-genome.qza
```

## Align sequences and build a tree
Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ conda install wget
For linux installation environments, please run:

```bash
wget https://raw.githubusercontent.com/caporaso-lab/genome-sampler/master/conda-env-files/genome-sampler-py36-linux-conda.yml
wget https://raw.githubusercontent.com/caporaso-lab/genome-sampler/r2020.8/conda-env-files/genome-sampler-py36-linux-conda.yml
conda env create -n genome-sampler-2020.8 --file genome-sampler-py36-linux-conda.yml
rm genome-sampler-py36-linux-conda.yml
```

For macOS installation environments, please run:

```bash
wget https://raw.githubusercontent.com/caporaso-lab/genome-sampler/master/conda-env-files/genome-sampler-py36-osx-conda.yml
wget https://raw.githubusercontent.com/caporaso-lab/genome-sampler/r2020.8/conda-env-files/genome-sampler-py36-osx-conda.yml
conda env create -n genome-sampler-2020.8 --file genome-sampler-py36-osx-conda.yml
rm genome-sampler-py36-osx-conda.yml
```
Expand Down
12 changes: 6 additions & 6 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ commands:

```
mkdir -p tutorial-data
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/master/snakemake/tutorial-data/focal-seqs.fasta --output tutorial-data/focal-seqs.fasta
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/master/snakemake/tutorial-data/context-seqs.fasta --output tutorial-data/context-seqs.fasta
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/master/snakemake/tutorial-data/focal-metadata.tsv --output tutorial-data/focal-metadata.tsv
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/master/snakemake/tutorial-data/context-metadata.tsv --output tutorial-data/context-metadata.tsv
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/r2020.8/snakemake/tutorial-data/focal-seqs.fasta --output tutorial-data/focal-seqs.fasta
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/r2020.8/snakemake/tutorial-data/context-seqs.fasta --output tutorial-data/context-seqs.fasta
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/r2020.8/snakemake/tutorial-data/focal-metadata.tsv --output tutorial-data/focal-metadata.tsv
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/r2020.8/snakemake/tutorial-data/context-metadata.tsv --output tutorial-data/context-metadata.tsv
```

## Using `genome-sampler` (Snakemake workflow)
Expand All @@ -33,8 +33,8 @@ individually, move on to the next section.
Download the Snakemake and associated config file using `curl` as follows:

```
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/master/snakemake/Snakefile --output Snakefile
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/master/snakemake/config.yaml --output config.yaml
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/r2020.8/snakemake/Snakefile --output Snakefile
curl -sL https://raw.githubusercontent.com/caporaso-lab/genome-sampler/r2020.8/snakemake/config.yaml --output config.yaml
```

Place the resulting Snakemake file in the same folder as the sequence and
Expand Down

0 comments on commit 252e728

Please sign in to comment.