Skip to content

Commit

Permalink
fix main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliorighi committed Sep 15, 2023
1 parent 36d4ace commit 6016eff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ jobs:
# Process the input file and create the output file
while IFS=$'\t' read -r col1 rest_of_line; do
if [[ $col1 == "Assembly Accession"]]; then
continue
if [[ "$col1" == "Assembly Accession" ]]; then
continue
fi
url="https://www.ebi.ac.uk/ena/browser/api/fasta/$col1?download=true" # Modify this URL format as needed
if url_exists "$url"; then
Expand Down

0 comments on commit 6016eff

Please sign in to comment.