Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nextclade workflow docs for v3 #70

Merged
merged 2 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nextclade/build-configs/test-dataset/test_dataset.smk
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rule test_dataset:
dataset_dir="datasets/{build_name}",
shell:
"""
nextclade2 run \
nextclade3 run \
{input.sequences} \
--input-dataset {params.dataset_dir} \
--output-all {output.outdir}
Expand Down
28 changes: 15 additions & 13 deletions nextclade/rules/export.smk
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@ export a reference tree and create the Nextclade dataset.

REQUIRED INPUTS:

TODO: Confirm inputs for Nextclade v3
reference = ../shared/reference.fasta
pathogen = config/pathogen.json
genome_annotation = config/genome_annotation.gff3
readme = config/README.md
changelog = config/CHANGELOG.md
metadata = data/metadata.tsv
tree = results/tree.nwk
branch_lengths = results/branch_lengths.json
nt_muts = results/nt_muts.json
aa_muts = results/aa_muts.json
clades = results/clades.json

augur export:
metadata = data/metadata.tsv
tree = results/tree.nwk
branch_lengths = results/branch_lengths.json
nt_muts = results/nt_muts.json
aa_muts = results/aa_muts.json
clades = results/clades.json

Nextclade dataset files:
reference = ../shared/reference.fasta
pathogen = config/pathogen.json
genome_annotation = config/genome_annotation.gff3
readme = config/README.md
changelog = config/CHANGELOG.md
example_sequences = config/sequence.fasta

OUTPUTS:

Expand Down