Add cleavage peptide prediction via NLPPrecursor and DeepPeptide #41
Workflow file for this run
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
name: run-demo-pipeline | |
# This workflow uses the Snakemake GitHub action to test that the Snakemake | |
# pipeline can be run in dryrun mode, as a sanity check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-demo-pipeline: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test workflow | |
uses: snakemake/[email protected] | |
with: | |
directory: . | |
snakefile: ./Snakefile | |
args: "--software-deployment-method conda --show-failed-logs -n" |