Skip to content

Commit

Permalink
fix reference
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 committed Jan 8, 2025
1 parent 4418dea commit 34a4548
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipes/WDL/workflows/genbank_single.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ workflow genbank_single {

# fetch biosample metadata from NCBI if it's not given to us in tsv form
if(!defined(biosample_attributes_tsv)) {
call ncbi.fetch_biosamples {
call ncbi_tools.fetch_biosamples {
input:
biosample_ids = [biosample_accession],
out_basename = "biosample_attributes-~{biosample_accession}"
}
}
File biosample_attributes = select_first([biosample_attributes_tsv, ncbi_tools.fetch_biosamples.biosample_attributes_tsv])
File biosample_attributes = select_first([biosample_attributes_tsv, fetch_biosamples.biosample_attributes_tsv])

scatter(segment_acc in reference_accessions) {
# scatter these calls in order to preserve original order
Expand Down

0 comments on commit 34a4548

Please sign in to comment.