Entering edit mode
                    6.3 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