Entering edit mode
5.4 years ago
saadleeshehreen
▴
140
Hi,
I usually use the following command to get GCF_id (Accession) from the NCBI. How Can I retrieve the "organism name/source" from NCBI?
cat NZ_id.txt | while read i; do elink -db nuccore -id $i -target assembly|esummary| xtract -pattern DocumentSummary -element AssemblyAccession ; done
Cheers