-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
313 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# https://osf.io/tvmf8 files to github release assets | ||
name: OSF data to release assets | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
build: | ||
name: Upload assets to release | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: wget | ||
uses: wei/wget@v1 | ||
with: | ||
args: -O fastq.tar.gz https://osf.io/9mvzw/download | ||
- name: wget fastq.tar.gz to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: fastq.tar.gz | ||
asset_name: fastq.tar.gz | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
- name: wget | ||
uses: wei/wget@v1 | ||
with: | ||
args: -O sorted.tar.gz https://osf.io/dhk5g/download | ||
- name: wget sorted.tar.gz to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: sorted.tar.gz | ||
asset_name: sorted.tar.gz | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
- name: wget | ||
uses: wei/wget@v1 | ||
with: | ||
args: -O taxonomy.tsv.gz https://osf.io/uzk87/download | ||
- name: wget taxonomy.tsv.gz to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: taxonomy.tsv.gz | ||
asset_name: taxonomy.tsv.gz | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
- name: wget | ||
uses: wei/wget@v1 | ||
with: | ||
args: -O coi_blast_db.tar.gz https://osf.io/45zfd/download | ||
- name: wget coi_blast_db.tar.gz to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: coi_blast_db.tar.gz | ||
asset_name: coi_blast_db.tar.gz | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
- name: wget | ||
uses: wei/wget@v1 | ||
with: | ||
args: -O coi_blast_db_20200420.tar.gz https://osf.io/kw9ms/download | ||
- name: wget coi_blast_db_20200420.tar.gz to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: coi_blast_db_20200420.tar.gz | ||
asset_name: coi_blast_db_20200420.tar.gz | ||
tag: ${{ github.ref }} | ||
overwrite: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ python: | |
- "3.6" | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
notifications: | ||
email: false | ||
before_install: | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
biopython | ||
cutadapt==2.10 | ||
cutadapt | ||
jinja2 | ||
pandas | ||
pyyaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.