Run Nextclade on all sequences #36
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 Nextclade on all sequences | |
on: | |
workflow_dispatch: | |
inputs: | |
dockerImage: | |
description: "Specific container image to use for build (will override the default of `nextstrain build`)" | |
required: false | |
type: string | |
jobs: | |
run-build: | |
permissions: | |
id-token: write | |
uses: nextstrain/.github/.github/workflows/pathogen-repo-build.yaml@master | |
secrets: inherit | |
with: | |
runtime: aws-batch | |
env: | | |
NEXTSTRAIN_DOCKER_IMAGE: ${{ inputs.dockerImage }} | |
run: | | |
nextstrain build \ | |
--detach \ | |
--cpus 36 \ | |
--memory 72gib \ | |
. \ | |
upload_all_nextclade_files \ | |
-p \ | |
--configfile profiles/nextclade.yaml \ | |
--set-threads run_nextclade=12 |