Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliorighi committed Oct 11, 2024
1 parent c6a5643 commit 643c3b5
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/ncbi_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,21 @@ jobs:
- name: Get new NCBI Assemblies
run: |
query_result=query_result.tsv
./datasets summary genome taxon "${{env.TAXID}}" --assembly-level chromosome,complete --annotated --as-json-lines |
./dataformat tsv genome --fields "${{env.FIELDS}}" |
tail -n +2 | head -n 10 > "$query_result"
# query_result=query_result.tsv
head -n 10 "$query_result"
./datasets summary genome taxon "${{env.TAXID}}" --assembly-level chromosome,complete --annotated --as-json-lines |
./dataformat tsv genome --fields "${{env.FIELDS}}"
grep -vFf "${{env.EXISTING_ACCESSIONS}}" > "${{env.NEW_ACCESSIONS}}"
# |
# tail -n +2 | head -n 10 > "$query_result"
# head -n 10 "$query_result"
# grep -vFf "${{env.EXISTING_ACCESSIONS}}" > "${{env.NEW_ACCESSIONS}}"
cat ${{env.NEW_ACCESSIONS}}"
# cat ${{env.NEW_ACCESSIONS}}"
rm ${{env.EXISTING_ACCESSIONS}}"
# rm ${{env.EXISTING_ACCESSIONS}}"
- name: Set FTP paths
run: |
Expand Down

0 comments on commit 643c3b5

Please sign in to comment.