diff --git a/INSTALL.sh b/INSTALL.sh index 607851de..688d5414 100755 --- a/INSTALL.sh +++ b/INSTALL.sh @@ -11,14 +11,15 @@ mkdir -p $rootdir/bin export PATH=$PATH:$rootdir/bin/ -assembly_tools=( idba spades ) -annotation_tools=( prokka RATT tRNAscan barrnap BLAST+ blastall phageFinder glimmer aragorn prodigal tbl2asn ) -utility_tools=( bedtools R GNU_parallel tabix JBrowse primer3 samtools sratoolkit ) -alignments_tools=( hmmer infernal bowtie2 bwa mummer ) +assembly_tools=( idba spades megahit ) +annotation_tools=( prokka RATT tRNAscan barrnap BLAST+ blastall phageFinder glimmer aragorn prodigal tbl2asn ShortBRED ) +utility_tools=( bedtools R GNU_parallel tabix JBrowse primer3 samtools sratoolkit ea-utils Rpackages) +alignments_tools=( hmmer infernal bowtie2 bwa mummer RAPSearch2 ) taxonomy_tools=( kraken metaphlan kronatools gottcha ) phylogeny_tools=( FastTree RAxML ) perl_modules=( perl_parallel_forkmanager perl_excel_writer perl_archive_zip perl_string_approx perl_pdf_api2 perl_html_template perl_html_parser perl_JSON perl_bio_phylo perl_xml_twig perl_cgi_session ) -all_tools=("${assembly_tools[@]}" "${annotation_tools[@]}" "${utility_tools[@]}" "${alignments_tools[@]}" "${taxonomy_tools[@]}" "${phylogeny_tools[@]}" "${perl_modules[@]}") +python_packages=( Anaconda2 Anaconda3 ) +all_tools=( "${python_packages[@]}" "${assembly_tools[@]}" "${annotation_tools[@]}" "${utility_tools[@]}" "${alignments_tools[@]}" "${taxonomy_tools[@]}" "${phylogeny_tools[@]}" "${perl_modules[@]}") ### Install functions ### install_idba() @@ -53,16 +54,36 @@ echo " install_spades(){ +local VER=3.7.1 echo "------------------------------------------------------------------------------ - Installing SPAdes 3.5.0 + Installing SPAdes $VER ------------------------------------------------------------------------------ " -tar xvzf SPAdes-3.5.0-Linux.tar.gz -ln -sf $rootdir/thirdParty/SPAdes-3.5.0-Linux/bin/spades.py $rootdir/bin/spades.py +tar xvzf SPAdes-$VER-Linux.tar.gz +ln -sf $rootdir/thirdParty/SPAdes-$VER-Linux/bin/spades.py $rootdir/bin/spades.py cd $rootdir/thirdParty echo " ------------------------------------------------------------------------------ - SPAdes installed + SPAdes $VER installed +------------------------------------------------------------------------------ +" +} + +install_megahit(){ +local VER=1.0.3 +## --version MEGAHIT v1.0.3 +echo "------------------------------------------------------------------------------ + Installing megahit $VER +------------------------------------------------------------------------------ +" +tar xvzf megahit-v$VER.tar.gz +cd megahit-$VER +make +cp -f megahit* $rootdir/bin/ +cd $rootdir/thirdParty +echo " +------------------------------------------------------------------------------ + megahit $VER installed ------------------------------------------------------------------------------ " } @@ -145,18 +166,48 @@ echo " install_sratoolkit() { +local VER=2.5.4 echo "------------------------------------------------------------------------------ - Installing sratoolkit.2.4.4-linux64 + Installing sratoolkit.$VER-linux64 +------------------------------------------------------------------------------ +" +tar xvzf sratoolkit.$VER-linux64.tgz +cd sratoolkit.$VER-linux64 +ln -sf $rootdir/thirdParty/sratoolkit.$VER-linux64/bin/fastq-dump $rootdir/bin/fastq-dump +ln -sf $rootdir/thirdParty/sratoolkit.$VER-linux64/bin/vdb-dump $rootdir/bin/vdb-dump +./bin/vdb-config --restore-defaults +./bin/vdb-config -s /repository/user/default-path=$rootdir/edge_ui/ncbi +./bin/vdb-config -s /repository/user/main/public/root=$rootdir/edge_ui/ncbi/public +if [[ -n ${HTTP_PROXY} ]]; then + proxy_without_protocol=${HTTP_PROXY#http://} + ./bin/vdb-config --proxy $proxy_without_protocol +fi +if [[ -n ${http_proxy} ]]; then + proxy_without_protocol=${http_proxy#http://} + ./bin/vdb-config --proxy $proxy_without_protocol +fi + +cd $rootdir/thirdParty +echo " +------------------------------------------------------------------------------ + sratoolkit.$VER-linux64 installed ------------------------------------------------------------------------------ " -tar xvzf sratoolkit.2.4.4-linux64.tgz -cd sratoolkit.2.4.4-linux64 -ln -sf $rootdir/thirdParty/sratoolkit.2.4.4-linux64/bin/fastq-dump $rootdir/bin/fastq-dump -ln -sf $rootdir/thirdParty/sratoolkit.2.4.4-linux64/bin/vdb-dump $rootdir/bin/vdb-dump +} + +install_ea-utils(){ +echo "------------------------------------------------------------------------------ + Installing ea-utils.1.1.2-537 +------------------------------------------------------------------------------ +" +tar xvzf ea-utils.1.1.2-537.tar.gz +cd ea-utils.1.1.2-537 +PREFIX=$rootdir make install + cd $rootdir/thirdParty echo " ------------------------------------------------------------------------------ - sratoolkit.2.4.3-linux64 installed + ea-utils.1.1.2-537 installed ------------------------------------------------------------------------------ " } @@ -164,12 +215,12 @@ echo " install_R() { echo "------------------------------------------------------------------------------ - Compiling R 2.15.3 + Compiling R 3.2.2 ------------------------------------------------------------------------------ " -tar xvzf R-2.15.3.tar.gz -cd R-2.15.3 -./configure --prefix=$rootdir --with-readline=no +tar xvzf R-3.2.2.tar.gz +cd R-3.2.2 +./configure --prefix=$rootdir make make install cd $rootdir/thirdParty @@ -179,6 +230,23 @@ echo " ------------------------------------------------------------------------------ " } +install_Rpackages() +{ +echo "------------------------------------------------------------------------------ + installing R packages +------------------------------------------------------------------------------ +" +echo "if(\"gridExtra\" %in% rownames(installed.packages()) == FALSE) {install.packages(c(\"gtable_0.1.2.tar.gz\",\"gridExtra_2.0.0.tar.gz\"), repos = NULL, type=\"source\")}" | $rootdir/bin/Rscript - +# need internet for following R packages. +echo "if(\"devtools\" %in% rownames(installed.packages()) == FALSE) {install.packages('devtools',repos='https://cran.rstudio.com/')}" | $rootdir/bin/Rscript - +echo "if(\"phyloseq\" %in% rownames(installed.packages()) == FALSE) {source('https://bioconductor.org/biocLite.R'); biocLite('phyloseq')} " | $rootdir/bin/Rscript - +echo "library(devtools); options(unzip='internal'); install_github(repo = 'seninp-bioinfo/MetaComp', ref = 'v1.1');" | $rootdir/bin/Rscript - +echo " +------------------------------------------------------------------------------ + R packages installed +------------------------------------------------------------------------------ +" +} install_GNU_parallel() { @@ -274,15 +342,27 @@ echo "-------------------------------------------------------------------------- ------------------------------------------------------------------------------ " tar xvzf JBrowse-1.11.6.tar.gz -cd JBrowse-1.11.6 -./setup.sh -mkdir -p -m 775 data -cd $rootdir/thirdParty +if [ -e $rootdir/edge_ui/JBrowse/data ] +then + mv $rootdir/edge_ui/JBrowse/data $rootdir/edge_ui/JBrowse_olddata +fi if [ -e $rootdir/edge_ui/JBrowse ] then - rm $rootdir/edge_ui/JBrowse + rm -rf $rootdir/edge_ui/JBrowse +fi + +mv JBrowse-1.11.6 $rootdir/edge_ui/JBrowse +cd $rootdir/edge_ui/JBrowse +./setup.sh +if [ -e $rootdir/edge_ui/JBrowse_olddata ] +then + mv $rootdir/edge_ui/JBrowse_olddata $rootdir/edge_ui/JBrowse/data +else + mkdir -p -m 775 data fi -ln -sf $rootdir/thirdParty/JBrowse-1.11.6 $rootdir/edge_ui/JBrowse + +cd $rootdir/thirdParty +#ln -sf $rootdir/thirdParty/JBrowse-1.11.6 $rootdir/edge_ui/JBrowse echo " ------------------------------------------------------------------------------ JBrowse-1.11.6 installed @@ -364,15 +444,13 @@ echo " install_bowtie2() { echo "------------------------------------------------------------------------------ - Compiling bowtie2 2.1.0 + Compiling bowtie2 2.2.6 ------------------------------------------------------------------------------ " -tar xvzf bowtie2-2.1.0.tar.gz -cd bowtie2-2.1.0 +tar xvzf bowtie2-2.2.6.tar.gz +cd bowtie2-2.2.6 make -cp bowtie2 $rootdir/bin/. -cp bowtie2-build $rootdir/bin/. -cp bowtie2-align $rootdir/bin/. +cp bowtie2* $rootdir/bin/. cd $rootdir/thirdParty echo " ------------------------------------------------------------------------------ @@ -399,6 +477,7 @@ echo " " } + install_metaphlan() { echo "------------------------------------------------------------------------------ @@ -491,6 +570,21 @@ echo " " } +install_ShortBRED() +{ +echo "------------------------------------------------------------------------------ + Installing ShortBRED +------------------------------------------------------------------------------ +" +tar xvzf ShortBRED-0.9.4M.tgz +ln -sf $rootdir/thirdParty/ShortBRED-0.9.4M $rootdir/bin/ShortBRED +echo " +------------------------------------------------------------------------------ + ShortBRED installed +------------------------------------------------------------------------------ +" +} + install_tbl2asn() { echo "------------------------------------------------------------------------------ @@ -538,6 +632,26 @@ echo " " } +install_RAPSearch2() +{ +local VER=2.23 +echo "------------------------------------------------------------------------------ + Compiling RAPSearch2 $VER +------------------------------------------------------------------------------ +" +tar xvzf RAPSearch${VER}_64bits.tar.gz +cd RAPSearch${VER}_64bits +./install +cp bin/rapsearch $rootdir/bin/rapsearch2 +cp bin/prerapsearch $rootdir/bin/. +cd $rootdir/thirdParty +echo " +------------------------------------------------------------------------------ + RAPSearch2 $VER compiled +------------------------------------------------------------------------------ +" +} + install_mummer() { echo "------------------------------------------------------------------------------ @@ -587,19 +701,19 @@ echo " install_kronatools() { echo "------------------------------------------------------------------------------ - Installing KronaTools-2.4 + Installing KronaTools-2.6 ------------------------------------------------------------------------------ " -tar xvzf KronaTools-2.4.tar.gz -cd KronaTools-2.4 +tar xvzf KronaTools-2.6.tar.gz +cd KronaTools-2.6/KronaTools perl install.pl --prefix $rootdir --taxonomy $rootdir/database/Krona_taxonomy #./updateTaxonomy.sh --local cp $rootdir/scripts/microbial_profiling/script/ImportBWA.pl scripts/ -ln -sf $rootdir/thirdParty/KronaTools-2.4/scripts/ImportBWA.pl $rootdir/bin/ktImportBWA +ln -sf $rootdir/thirdParty/KronaTools-2.6/KronaTools/scripts/ImportBWA.pl $rootdir/bin/ktImportBWA cd $rootdir/thirdParty echo " ------------------------------------------------------------------------------ - KronaTools-2.4 Installed + KronaTools-2.6 Installed ------------------------------------------------------------------------------ " } @@ -612,7 +726,7 @@ echo "-------------------------------------------------------------------------- " tar xvzf samtools-0.1.19.tar.gz cd samtools-0.1.19 -make +make CFLAGS='-g -fPIC -Wall -O2' cp samtools $rootdir/bin/. cp bcftools/bcftools $rootdir/bin/. cd $rootdir/thirdParty @@ -855,6 +969,7 @@ echo " " } + install_perl_cgi_session() { echo "------------------------------------------------------------------------------ @@ -874,6 +989,38 @@ echo " " } +install_Anaconda2() +{ +echo "------------------------------------------------------------------------------ + Installing Python Anaconda2 4.1.1 +------------------------------------------------------------------------------ +" +if [ ! -f $rootdir/thirdParty/Anaconda2/bin/python ]; then + bash Anaconda2-4.1.1-Linux-x86_64.sh -b -p $rootdir/thirdParty/Anaconda2/ +fi +anacondabin=$rootdir/thirdParty/Anaconda2/bin/ +ln -fs $anacondabin/python $rootdir/bin +ln -fs $anacondabin/pip $rootdir/bin +ln -fs $anacondabin/conda $rootdir/bin +wget -q --spider https://pypi.python.org/ +online=$? +if [[ $online -eq 0 ]]; then + $anacondabin/conda install -y biopython + $anacondabin/conda install -yc anaconda mysql-connector-python=2.0.3 + $anacondabin/pip install qiime xlsx2csv + $anacondabin/conda install -y --channel https://conda.anaconda.org/bioconda rgi +else + $anacondabin/conda install biopython-1.67-np110py27_0.tar.bz2 + echo "Unable to connect to the internet, not able to install qiime or xlsx2csv" +fi +echo " +------------------------------------------------------------------------------ + Python Anaconda2 4.1.1 Installed +------------------------------------------------------------------------------ +" +} + + checkSystemInstallation() { IFS=: @@ -967,6 +1114,11 @@ print_tools_list() do echo "* $i" done + echo -e "\nPython_Packages" + for i in "${python_packages[@]}" + do + echo "* $i" + done } @@ -974,23 +1126,13 @@ print_tools_list() if ( checkSystemInstallation csh ) then #echo "csh is found" - echo "" + echo -n "" else echo "csh is not found" echo "Please Install csh first, then INSTALL the package" exit 1 fi -if perl -MBio::Root::Version -e 'print $Bio::Root::Version::VERSION,"\n"' >/dev/null 2>&1 -then - #perl -MBio::Root::Version -e 'print "BioPerl Version ", $Bio::Root::Version::VERSION," is found\n"' - echo "" -else - echo "Cannot find a perl Bioperl Module installed" 1>&2 - echo "Please install Bioperl (http://www.bioperl.org/)" - exit 1 -fi - if [ "$#" -ge 1 ] then for f in $@ @@ -1050,22 +1192,29 @@ then install_$tool done echo -e "Perl_Modules installed.\n" - exit 0;; + exit 0 ;; + Python_Packages) + for tool in "${python_packages[@]}" + do + install_$tool + done + echo -e "Python_Packages installed.\n" + exit 0 ;; force) - for tool in "${all_tools[@]}" + for tool in "${all_tools[@]}" do install_$tool done ;; *) - if ( containsElement "$f" "${assembly_tools[@]}" || containsElement "$f" "${annotation_tools[@]}" || containsElement "$f" "${alignments_tools[@]}" || containsElement "$f" "${taxonomy_tools[@]}" || containsElement "$f" "${phylogeny_tools[@]}" || containsElement "$f" "${utility_tools[@]}" || containsElement "$f" "${perl_modules[@]}" ) + if ( containsElement "$f" "${assembly_tools[@]}" || containsElement "$f" "${annotation_tools[@]}" || containsElement "$f" "${alignments_tools[@]}" || containsElement "$f" "${taxonomy_tools[@]}" || containsElement "$f" "${phylogeny_tools[@]}" || containsElement "$f" "${utility_tools[@]}" || containsElement "$f" "${perl_modules[@]}" || containsElement "$f" "${python_packages[@]}" ) then install_$f else echo "$f: no this tool in the list" print_tools_list fi - exit 0;; + exit;; esac done fi @@ -1079,6 +1228,22 @@ else # exit 1 fi +if perl -MBio::Root::Version -e 'print $Bio::Root::Version::VERSION,"\n"' >/dev/null 2>&1 +then + perl -MBio::Root::Version -e 'print "BioPerl Version ", $Bio::Root::Version::VERSION," is found\n"' +else + echo "Cannot find a perl Bioperl Module installed" 1>&2 + echo "Please install Bioperl (http://www.bioperl.org/)" + exit 1 +fi + +if $rootdir/bin/python -c 'import Bio; print Bio.__version__' >/dev/null 2>&1 +then + $rootdir/bin/python -c 'import Bio; print "BioPython Version", Bio.__version__, "is found"' +else + install_Anaconda2 +fi + if [[ "$OSTYPE" == "darwin"* ]] then { @@ -1100,7 +1265,17 @@ else if ( checkLocalInstallation R ) then { - echo "R is found" + R_VER=`$rootdir/bin/R --version | perl -nle 'print $& if m{version \d+\.\d+}'`; + if ( echo $R_VER | awk '{if($2>="3.2") exit 0; else exit 1}' ) + then + { + echo "R $R_VER found" + } + else + { + install_R + } + fi } else { @@ -1110,7 +1285,7 @@ else } fi -echo "if(\"gridExtra\" %in% rownames(installed.packages()) == FALSE) {install.packages(\"gridExtra_0.9.1.tar.gz\", repos = NULL, type=\"source\")}" | Rscript - +install_Rpackages if ( checkSystemInstallation bedtools ) then @@ -1122,10 +1297,23 @@ fi if ( checkSystemInstallation fastq-dump ) then - echo "sratoolkit is found" + sratoolkit_VER=`fastq-dump --version | perl -nle 'print $& if m{\d\.\d\.\d}'`; + if ( echo $sratoolkit_VER | awk '{if($1>="2.5.4") exit 0; else exit 1}' ) + then + echo "sratoolkit $sratoolkit_VER found" + else + install_sratoolkit + fi else echo "sratoolkit is not found" - install_sratoolkit + install_sratoolkit +fi + +if ( checkSystemInstallation fastq-join ) +then + echo "fastq-join is found" +else + install_ea-utils fi if ( checkSystemInstallation parallel ) @@ -1162,7 +1350,13 @@ fi if ( checkLocalInstallation ktImportBLAST ) then - echo "KronaTools is found" + Krona_VER=`$rootdir/bin/ktGetLibPath | perl -nle 'print $& if m{KronaTools-\d\.\d}' | perl -nle 'print $& if m{\d\.\d}'`; + if ( echo $Krona_VER | awk '{if($1>="2.6") exit 0; else exit 1}' ) + then + echo "KronaTools $Krona_VER found" + else + install_kronatools + fi else echo "KronaTools is not found" install_kronatools @@ -1241,6 +1435,14 @@ else install_tbl2asn fi +if ( checkLocalInstallation ShortBRED/shortbred_quantify.py ) +then + echo "ShortBRED is found" +else + echo "ShortBRED is not found" + install_ShortBRED +fi + if ( checkLocalInstallation kraken ) then @@ -1268,12 +1470,33 @@ fi if ( checkSystemInstallation bowtie2 ) then - echo "bowtie2 is found" + bowtie_VER=`bowtie2 --version | grep bowtie | perl -nle 'print $& if m{version \d+\.\d+\.\d+}'`; + if ( echo $bowtie_VER | awk '{if($1>="2.2.4") exit 0; else exit 1}' ) + then + echo "bowtie2 $bowtie_VER found" + else + install_bowtie2 + fi else echo "bowtie2 is not found" install_bowtie2 fi +if ( checkSystemInstallation rapsearch2 ) +then + rapsearch_VER=`rapsearch2 2>&1| grep 'rapsearch v2' | perl -nle 'print $& if m{\d+\.\d+}'`; + if ( echo $rapsearch_VER | awk '{if($1>="2.23") exit 0; else exit 1}' ) + then + echo "RAPSearch2 $rapsearch_VER found" + else + install_RAPSearch2 + fi + +else + echo "RAPSearch2 is not found" + install_RAPSearch2 +fi + if ( checkLocalInstallation bwa ) then echo "bwa is found" @@ -1298,7 +1521,7 @@ else install_mummer fi -if ( checkSystemInstallation wigToBigWig ) +if ( checkLocalInstallation wigToBigWig ) then echo "wigToBigWig is found" else @@ -1323,14 +1546,35 @@ else install_idba fi -if ( checkLocalInstallation spades.py ) +if ( checkSystemInstallation spades.py ) then - echo "SPAdes is found" + spades_VER=`spades.py 2>&1 | perl -nle 'print $& if m{\d\.\d\.\d}'`; + if ( echo $spades_VER | awk '{if($1>="3.7.1") exit 0; else exit 1}' ) + then + echo "SPAdes $spades_VER found" + else + install_spades + fi else echo "SPAdes is not found" install_spades fi +if ( checkSystemInstallation megahit ) +then + ## --version MEGAHIT v1.0.3 + megahit_VER=`megahit --version | perl -nle 'print $& if m{\d\.\d.\d}'`; + if ( echo $megahit_VER | awk '{if($1>="1.0.3") exit 0; else exit 1}' ) + then + echo "megahit $megahit_VER found" + else + install_megahit + fi +else + echo "megahit is not found" + install_megahit +fi + if [ -x $rootdir/thirdParty/phage_finder_v2.1/bin/phage_finder_v2.1.sh ] then echo "phage_finder_v2.1 is found" @@ -1367,10 +1611,10 @@ if ( checkSystemInstallation FastTreeMP ) then FastTree_VER=`FastTreeMP 2>&1 | perl -nle 'print $& if m{version \d+\.\d+\.\d+}'`; if ( echo $FastTree_VER | awk '{if($1>="2.1.8") exit 0; else exit 1}' ) - then + then echo "FastTreeMP is found" else - install_FastTree + install_FastTree fi else echo "FastTreeMP is not found" @@ -1481,7 +1725,7 @@ else install_perl_cgi_session fi -if [ -x $rootdir/thirdParty/JBrowse-1.11.6/bin/prepare-refseqs.pl ] +if [ -x $rootdir/edge_ui/JBrowse/bin/prepare-refseqs.pl ] then echo "JBrowse is found" else @@ -1492,11 +1736,8 @@ fi if [[ "$OSTYPE" == "darwin"* ]] then ln -sf $rootdir/thirdParty/gottcha/bin/splitrim $rootdir/scripts/microbial_profiling/script/splitrim - cp -fR $rootdir/start_edge_ui.sh $HOME/Desktop/EDGE_Python_Server_startup else ln -sf $rootdir/thirdParty/gottcha/bin/splitrim $rootdir/scripts/microbial_profiling/script/splitrim - mkdir -p $HOME/Desktop - sed -e 's,,'"$rootdir"',g' $rootdir/scripts/EDGE.desktop > $HOME/Desktop/EDGE.desktop fi cd $rootdir @@ -1505,29 +1746,57 @@ mkdir -p $rootdir/edge_ui/data perl $rootdir/edge_ui/cgi-bin/edge_build_list.pl $rootdir/edge_ui/data/Host/* > $rootdir/edge_ui/data/host_list.json perl $rootdir/edge_ui/cgi-bin/edge_build_list.pl -sort_by_size -basename $rootdir/database/NCBI_genomes/ > $rootdir/edge_ui/data/Ref_list.json +echo "Setting up EDGE_input" +if [ -d $rootdir/edge_ui/EDGE_input/ ] +then + rsync -a $rootdir/deployment/public $rootdir/edge_ui/EDGE_input/ + ln -sf $rootdir/testData $rootdir/edge_ui/EDGE_input/public/data/ +else + mkdir $HOME/EDGE_input/ + rsync -a $rootdir/deployment/public $rootdir/edge_ui/EDGE_input/ + ln -sf $rootdir/testData $rootdir/edge_ui/EDGE_input/public/data/ +fi +if [ ! -d $rootdir/edge_ui/EDGE_output/ ] +then + echo "Setting up EDGE_output/" + mkdir $HOME/EDGE_output +fi + + +# this may need sudo access +#matplotlibrc=`python -c 'import matplotlib as m; print m.matplotlib_fname()' 2>&1` +#if [ -n $matplotlibrc ] +#then + # echo "" + #perl -i.orig -nle 's/(backend\s+:\s+\w+)/\#${1}\nbackend : Agg/; print;' $matplotlibrc +#fi + if [ -f $HOME/.bashrc ] then { echo "#Added by EDGE pipeline installation" >> $HOME/.bashrc echo "export EDGE_HOME=$rootdir" >> $HOME/.bashrc - echo "export PATH=$rootdir/bin/:$PATH:$rootdir/scripts" >> $HOME/.bashrc + echo "export EDGE_PATH=$rootdir/bin/:$rootdir/bin/Anaconda2/bin/:$rootdir/scripts" >> $HOME/.bashrc + echo "export PATH=\$EDGE_PATH:\$PATH:" >> $HOME/.bashrc } else { echo "#Added by EDGE pipeline installation" >> $HOME/.bash_profile echo "export EDGE_HOME=$rootdir" >> $HOME/.bash_profile - echo "export PATH=$rootdir/bin/:$PATH:$rootdir/scripts" >> $HOME/.bash_profile + echo "export EDGE_PATH=$rootdir/bin/:$rootdir/bin/Anaconda2/bin/:$rootdir/scripts" >> $HOME/.bashrc + echo "export PATH=\$EDGE_PATH:\$PATH:" >> $HOME/.bashrc } fi -sed -i.bak 's,%EDGE_HOME%,'"$rootdir"',g' $rootdir/edge_ui/cgi-bin/edge_config.tmpl +sed -i.bak 's,%EDGE_HOME%,'"$rootdir"',g' $rootdir/edge_ui/sys.properties sed -i.bak 's,%EDGE_HOME%,'"$rootdir"',g' $rootdir/edge_ui/apache_conf/edge_apache.conf +sed -i.bak 's,%EDGE_HOME%,'"$rootdir"',g' $rootdir/edge_ui/apache_conf/edge_httpd.conf TOLCPU=`cat /proc/cpuinfo | grep processor | wc -l`; if [ $TOLCPU -gt 0 ] then { - sed -i.bak 's,%TOTAL_NUM_CPU%,'"$TOLCPU"',g' $rootdir/edge_ui/cgi-bin/edge_config.tmpl + sed -i.bak 's,%TOTAL_NUM_CPU%,'"$TOLCPU"',g' $rootdir/edge_ui/sys.properties DEFAULT_CPU=`echo -n $((TOLCPU/3))`; if [ $DEFAULT_CPU -lt 1 ] then @@ -1542,6 +1811,9 @@ then } fi +# set up a cronjob for project old files clena up +echo "01 00 * * * perl $rootdir/edge_ui/cgi-bin/edge_data_cleanup.pl" | crontab - + echo " All done! Please Restart the Terminal Session. diff --git a/README.Appendix.pdf b/README.Appendix.pdf new file mode 100644 index 00000000..8c21b11d Binary files /dev/null and b/README.Appendix.pdf differ diff --git a/README.md b/README.md index 7496744f..331160ff 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,22 @@ # EDGE Bioinformatics -This is version 1.1.1 of EDGE Bioinformatics, a product of Los Alamos National Laboratory, Naval Medical Research Center, and the Defense Threat Reduction Agency. +This is version 1.5 of EDGE Bioinformatics, a product of Los Alamos National Laboratory, Naval Medical Research Center, and the Defense Threat Reduction Agency. EDGE is a highly adaptable bioinformatics platform that allows laboratories to quickly analyze and interpret genomic sequence data. The bioinformatics platform allows users to address a wide range of use cases including assay validation and the characterization of novel biological threats, clinical samples, and complex environmental samples. -A demonstration version of EDGE is currently available at https://bioedge.lanl.gov/edge_ui/ with example data sets available to the public to view and/or re-run and also allows EDGE runs of SRA/ENA data. (This webserver does not currently support upload of data due in part to LANL security regulations, however local installations are meant to be fully functional.) To run EDGE follow the "GUI" instructions from our documentation, found at https://edge.readthedocs.org/en/v1.1/introduction.html. It is also linked at the bottom of the EDGE homepage. - -For basic information about EDGE, visit the EDGE ABC's, that provide a brief overview of EDGE, the various workflows, and the computational environment restraints for local use. +To demo EDGE, go to https://bioedge.lanl.gov/edge_ui/ and follow the "GUI" instructions from our documentation, found at https://edge.readthedocs.io. It is also linked at the bottom of the EDGE homepage. ## Documentation -[ReadTheDocs](http://edge.readthedocs.org) +[ReadTheDocs](http://edge.readthedocs.io) -[PDF](https://readthedocs.org/projects/edge/downloads/pdf/latest/) +[PDF](https://media.readthedocs.org/pdf/edge/v1.5/edge.pdf) ## Contact Info Chien-Chi Lo: Paul Li: -Joe Anderson (DTRA/NMRC): +Joe Anderson (DTRA/NMRC): +Logan Voegtly (HJF/NMRC): ## Citation diff --git a/config_template.txt b/config_template.txt index d203e6db..88c90a59 100755 --- a/config_template.txt +++ b/config_template.txt @@ -52,11 +52,16 @@ nanoporeFile= [Reads Mapping To Contigs] # Reads mapping to contigs DoReadsMappingContigs=auto +## support bowtie or bwa +edge-r2c-aligner=bowtie +edge-r2c-aligner-options= [Reads Mapping To Reference] # Reads mapping to reference -DoReadsMappingReference=0 -bowtieOptions= +DoReadsMappingReference= +## support bowtie or bwa +edge-r2g-aligner=bowtie +edge-r2g-aligner-options= # reference genbank or fasta file reference= MapUnmappedReads=0 @@ -66,7 +71,7 @@ MapUnmappedReads=0 DoReadsTaxonomy=1 ## If reference genome exists, only use unmapped reads to do Taxonomy Classification. Turn on AllReads=1 will use all reads instead. AllReads=0 -enabledTools=gottcha-genDB-b,gottcha-speDB-b,gottcha-strDB-b,gottcha-genDB-v,gottcha-speDB-v,gottcha-strDB-v,metaphlan,bwa,kraken_mini +enabledTools=gottcha-genDB-b,gottcha-speDB-b,gottcha-strDB-b,gottcha-genDB-v,gottcha-speDB-v,gottcha-strDB-v,metaphlan,bwa,kraken_mini,metascope [Contigs Mapping To Reference] # Contig mapping to reference @@ -99,7 +104,7 @@ annotateSourceGBK= [ProPhage Detection] DoProPhageDetection=1 -[SNP Phylogeny] +[Phylogenetic Analysis] DoSNPtree=1 ## Availabe choices are Ecoli, Yersinia, Francisella, Brucella, Bacillus SNPdbName=Ecoli @@ -107,7 +112,7 @@ SNPdbName=Ecoli SNPGenomes= SNPGenomesFiles= ## A refrence genoem from above two options for reads/contigs mapping -SNPrefGenome= +SNPrefGenome= ## FastTree or RAxML treeMaker=FastTree ## SRA accessions ByrRun, ByExp, BySample, ByStudy diff --git a/deployment/apache2.conf b/deployment/apache2.conf new file mode 100644 index 00000000..93c3628d --- /dev/null +++ b/deployment/apache2.conf @@ -0,0 +1,284 @@ +# This is the main Apache server configuration file. It contains the +# configuration directives that give the server its instructions. +# See http://httpd.apache.org/docs/2.4/ for detailed information about +# the directives and /usr/share/doc/apache2/README.Debian about Debian specific +# hints. +# +# +# Summary of how the Apache 2 configuration works in Debian: +# The Apache 2 web server configuration in Debian is quite different to +# upstream's suggested way to configure the web server. This is because Debian's +# default Apache2 installation attempts to make adding and removing modules, +# virtual hosts, and extra configuration directives as flexible as possible, in +# order to make automating the changes and administering the server as easy as +# possible. + +# It is split into several files forming the configuration hierarchy outlined +# below, all located in the /etc/apache2/ directory: +# +# /etc/apache2/ +# |-- apache2.conf +# | `-- ports.conf +# |-- mods-enabled +# | |-- *.load +# | `-- *.conf +# |-- conf-enabled +# | `-- *.conf +# `-- sites-enabled +# `-- *.conf +# +# +# * apache2.conf is the main configuration file (this file). It puts the pieces +# together by including all remaining configuration files when starting up the +# web server. +# +# * ports.conf is always included from the main configuration file. It is +# supposed to determine listening ports for incoming connections which can be +# customized anytime. +# +# * Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/ +# directories contain particular configuration snippets which manage modules, +# global configuration fragments, or virtual host configurations, +# respectively. +# +# They are activated by symlinking available configuration files from their +# respective *-available/ counterparts. These should be managed by using our +# helpers a2enmod/a2dismod, a2ensite/a2dissite and a2enconf/a2disconf. See +# their respective man pages for detailed information. +# +# * The binary is called apache2. Due to the use of environment variables, in +# the default configuration, apache2 needs to be started/stopped with +# /etc/init.d/apache2 or apache2ctl. Calling /usr/bin/apache2 directly will not +# work with the default configuration. + + +# Global configuration +# + +# +# ServerRoot: The top of the directory tree under which the server's +# configuration, error, and log files are kept. +# +# NOTE! If you intend to place this on an NFS (or otherwise network) +# mounted filesystem then please read the Mutex documentation (available +# at ); +# you will save yourself a lot of trouble. +# +# Do NOT add a slash at the end of the directory path. +# +#ServerRoot "/etc/apache2" + +# +# The accept serialization lock file MUST BE STORED ON A LOCAL DISK. +# +Mutex file:${APACHE_LOCK_DIR} default + +# +# PidFile: The file in which the server should record its process +# identification number when it starts. +# This needs to be set in /etc/apache2/envvars +# +PidFile ${APACHE_PID_FILE} + +# +# Timeout: The number of seconds before receives and sends time out. +# +Timeout 300 + +# +# KeepAlive: Whether or not to allow persistent connections (more than +# one request per connection). Set to "Off" to deactivate. +# +KeepAlive On + +# +# MaxKeepAliveRequests: The maximum number of requests to allow +# during a persistent connection. Set to 0 to allow an unlimited amount. +# We recommend you leave this number high, for maximum performance. +# +MaxKeepAliveRequests 100 + +# +# KeepAliveTimeout: Number of seconds to wait for the next request from the +# same client on the same connection. +# +KeepAliveTimeout 5 + + +# These need to be set in /etc/apache2/envvars +User ${APACHE_RUN_USER} +Group ${APACHE_RUN_GROUP} + +# +# HostnameLookups: Log the names of clients or just their IP addresses +# e.g., www.apache.org (on) or 204.62.129.132 (off). +# The default is off because it'd be overall better for the net if people +# had to knowingly turn this feature on, since enabling it means that +# each client request will result in AT LEAST one lookup request to the +# nameserver. +# +HostnameLookups Off + +# ErrorLog: The location of the error log file. +# If you do not specify an ErrorLog directive within a +# container, error messages relating to that virtual host will be +# logged here. If you *do* define an error logfile for a +# container, that host's errors will be logged there and not here. +# +ErrorLog ${APACHE_LOG_DIR}/error.log + +# +# LogLevel: Control the severity of messages logged to the error_log. +# Available values: trace8, ..., trace1, debug, info, notice, warn, +# error, crit, alert, emerg. +# It is also possible to configure the log level for particular modules, e.g. +# "LogLevel info ssl:warn" +# +LogLevel warn + +# Include module configuration: +IncludeOptional mods-enabled/*.load +IncludeOptional mods-enabled/*.conf + +# Include list of ports to listen on +Include ports.conf + + +# Sets the default security model of the Apache2 HTTPD server. It does +# not allow access to the root filesystem outside of /usr/share and /var/www. +# The former is used by web applications packaged in Debian, +# the latter may be used for local directories served by the web server. If +# your system is serving content from a sub-directory in /srv you must allow +# access here, or in any related virtual host. + + Options FollowSymLinks + AllowOverride None + Require all denied + + + + AllowOverride None + Require all granted + + + + Options Indexes FollowSymLinks + AllowOverride None + Require all granted + + +# +# Options Indexes FollowSymLinks +# AllowOverride None +# Require all granted +# + + Alias / "/home/edge/edge/edge_ui/" + + Options Indexes FollowSymlinks + AllowOverride None + Require all granted + + + + ScriptAlias /cgi-bin/ /home/edge/edge/edge_ui/cgi-bin/ + + AllowOverride None + Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch + AddHandler cgi-script .cgi .pl + Order allow,deny + allow from all + + +#for JBrowse +AddType application/octet-stream .bam .bami + + + mod_gzip_item_exclude "(\.jsonz|\.txtz)" + + + SetEnvIf Request_URI "(\.jsonz|\.txtz)" no-gzip dont-vary + + + + Header onsuccess set Content-Encoding gzip + + + + + AllowOverride FileInfo + + + + ScriptAlias /edge_ui/cgi-bin/ /home/edge/edge/edge_ui/cgi-bin/ + + AllowOverride None + Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch + AddHandler cgi-script .cgi .pl + Order allow,deny + allow from all + + + + + Alias /edge_ui/ "/home/edge/edge/edge_ui/" + + Options Indexes FollowSymlinks + AllowOverride None + Require all granted + + + + + Options -Indexes + + + + Order allow,deny + Allow from all + + + +# AccessFileName: The name of the file to look for in each directory +# for additional configuration directives. See also the AllowOverride +# directive. +# +AccessFileName .htaccess + +# +# The following lines prevent .htaccess and .htpasswd files from being +# viewed by Web clients. +# + + Require all denied + + + +# +# The following directives define some format nicknames for use with +# a CustomLog directive. +# +# These deviate from the Common Log Format definitions in that they use %O +# (the actual bytes sent including headers) instead of %b (the size of the +# requested file), because the latter makes it impossible to detect partial +# requests. +# +# Note that the use of %{X-Forwarded-For}i instead of %h is not recommended. +# Use mod_remoteip instead. +# +LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined +LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined +LogFormat "%h %l %u %t \"%r\" %>s %O" common +LogFormat "%{Referer}i -> %U" referer +LogFormat "%{User-agent}i" agent + +# Include of directories ignores editors' and dpkg's backup files, +# see README.Debian for details. + +# Include generic snippets of statements +IncludeOptional conf-enabled/*.conf + +# Include the virtual host configurations: +IncludeOptional sites-enabled/*.conf + +# vim: syntax=apache ts=4 sw=4 sts=4 sr noet diff --git a/deployment/createDatabase.sql b/deployment/createDatabase.sql new file mode 100644 index 00000000..405e0cf3 --- /dev/null +++ b/deployment/createDatabase.sql @@ -0,0 +1,5 @@ +CREATE DATABASE IF NOT EXIST userManagement; +LOAD ~/edge/userManagement/userManagement_schema.sql; +LOAD ~/edge/userManagement/userManagement_constrains.sql; +CREATE USER 'edge'@'localhost' IDENTIFIED BY 'changePassword'; +GRANT ALL PRIVILEGES ON userManagement.* TO 'edge'@'localhost'; diff --git a/deployment/edge_httpd.conf b/deployment/edge_httpd.conf new file mode 100644 index 00000000..bf16a308 --- /dev/null +++ b/deployment/edge_httpd.conf @@ -0,0 +1,53 @@ + + Alias / "/home/edge/edge/edge_ui/" + + Options Indexes FollowSymlinks + AllowOverride None + Require all granted + + + + + ScriptAlias /cgi-bin/ /home/edge/edge/edge_ui/cgi-bin/ + + AllowOverride None + Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch + AddHandler cgi-script .cgi .pl .php + Order allow,deny + allow from all + + + + + ForceType application/octet-stream + Header set Content-Disposition attachment + + + + Options -Indexes + + +# for user management tomcat server to be visible on port 80 +ProxyPass /userManagement http://localhost:8080/userManagement +ProxyPassReverse /userManagement http://localhost:8080/userManagement +ProxyPass /userManagementWS http://localhost:8080/userManagementWS +ProxyPassReverse /userManagementWS http://localhost:8080/userManagementWS + +#for JBrowse +AddType application/octet-stream .bam .bami + + + mod_gzip_item_exclude "(\.jsonz|\.txtz)" + + + SetEnvIf Request_URI "(\.jsonz|\.txtz)" no-gzip dont-vary + + + + Header onsuccess set Content-Encoding gzip + + + + + AllowOverride FileInfo + diff --git a/deployment/httpd.conf b/deployment/httpd.conf new file mode 100644 index 00000000..5709660b --- /dev/null +++ b/deployment/httpd.conf @@ -0,0 +1,356 @@ +# +# This is the main Apache HTTP server configuration file. It contains the +# configuration directives that give the server its instructions. +# See for detailed information. +# In particular, see +# +# for a discussion of each configuration directive. +# +# Do NOT simply read the instructions in here without understanding +# what they do. They're here only as hints or reminders. If you are unsure +# consult the online docs. You have been warned. +# +# Configuration and logfile names: If the filenames you specify for many +# of the server's control files begin with "/" (or "drive:/" for Win32), the +# server will use that explicit path. If the filenames do *not* begin +# with "/", the value of ServerRoot is prepended -- so 'log/access_log' +# with ServerRoot set to '/www' will be interpreted by the +# server as '/www/log/access_log', where as '/log/access_log' will be +# interpreted as '/log/access_log'. + +# +# ServerRoot: The top of the directory tree under which the server's +# configuration, error, and log files are kept. +# +# Do not add a slash at the end of the directory path. If you point +# ServerRoot at a non-local disk, be sure to specify a local disk on the +# Mutex directive, if file-based mutexes are used. If you wish to share the +# same ServerRoot for multiple httpd daemons, you will need to change at +# least PidFile. +# +ServerRoot "/etc/httpd" + +# +# Listen: Allows you to bind Apache to specific IP addresses and/or +# ports, instead of the default. See also the +# directive. +# +# Change this to Listen on specific IP addresses as shown below to +# prevent Apache from glomming onto all bound IP addresses. +# +#Listen 12.34.56.78:80 +Listen 80 + +# +# Dynamic Shared Object (DSO) Support +# +# To be able to use the functionality of a module which was built as a DSO you +# have to place corresponding `LoadModule' lines at this location so the +# directives contained in it are actually available _before_ they are used. +# Statically compiled modules (those listed by `httpd -l') do not need +# to be loaded here. +# +# Example: +# LoadModule foo_module modules/mod_foo.so +# +Include conf.modules.d/*.conf + +# +# If you wish httpd to run as a different user or group, you must run +# httpd as root initially and it will switch. +# +# User/Group: The name (or #number) of the user/group to run httpd as. +# It is usually good practice to create a dedicated user and group for +# running httpd, as with most system services. +# +User edge +Group edge + +# 'Main' server configuration +# +# The directives in this section set up the values used by the 'main' +# server, which responds to any requests that aren't handled by a +# definition. These values also provide defaults for +# any containers you may define later in the file. +# +# All of these directives may appear inside containers, +# in which case these default settings will be overridden for the +# virtual host being defined. +# + +# Added to close http TRACE XSS attack vulnerability +TraceEnable Off + +# +# ServerAdmin: Your address, where problems with the server should be +# e-mailed. This address appears on some server-generated pages, such +# as error documents. e.g. admin@your-domain.com +# +ServerAdmin root@localhost + +# +# ServerName gives the name and port that the server uses to identify itself. +# This can often be determined automatically, but we recommend you specify +# it explicitly to prevent problems during startup. +# +# If your host doesn't have a registered DNS name, enter its IP address here. +# +ServerName localhost + +# +# Deny access to the entirety of your server's filesystem. You must +# explicitly permit access to web content directories in other +# blocks below. +# + + AllowOverride none + Require all denied + + +# +# Note that from this point forward you must specifically allow +# particular features to be enabled - so if something's not working as +# you might expect, make sure that you have specifically enabled it +# below. +# + +# +# DocumentRoot: The directory out of which you will serve your +# documents. By default, all requests are taken from this directory, but +# symbolic links and aliases may be used to point to other locations. +# +DocumentRoot "/var/www/html" + +# +# Relax access to content within /var/www. +# + + AllowOverride None + # Allow open access: + Require all granted + + +# Further relax access to the default document root: + + # + # Possible values for the Options directive are "None", "All", + # or any combination of: + # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews + # + # Note that "MultiViews" must be named *explicitly* --- "Options All" + # doesn't give it to you. + # + # The Options directive is both complicated and important. Please see + # http://httpd.apache.org/docs/2.4/mod/core.html#options + # for more information. + # + Options Indexes FollowSymLinks + + # + # AllowOverride controls what directives may be placed in .htaccess files. + # It can be "All", "None", or any combination of the keywords: + # Options FileInfo AuthConfig Limit + # + AllowOverride None + + # + # Controls who can get stuff from this server. + # + Require all granted + + +# +# DirectoryIndex: sets the file that Apache will serve if a directory +# is requested. +# + + DirectoryIndex index.html + + +# +# The following lines prevent .htaccess and .htpasswd files from being +# viewed by Web clients. +# + + Require all denied + + +# +# ErrorLog: The location of the error log file. +# If you do not specify an ErrorLog directive within a +# container, error messages relating to that virtual host will be +# logged here. If you *do* define an error logfile for a +# container, that host's errors will be logged there and not here. +# +ErrorLog "logs/error_log" + +# +# LogLevel: Control the number of messages logged to the error_log. +# Possible values include: debug, info, notice, warn, error, crit, +# alert, emerg. +# +LogLevel warn + + + # + # The following directives define some format nicknames for use with + # a CustomLog directive (see below). + # + LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined + LogFormat "%h %l %u %t \"%r\" %>s %b" common + + + # You need to enable mod_logio.c to use %I and %O + LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio + + + # + # The location and format of the access logfile (Common Logfile Format). + # If you do not define any access logfiles within a + # container, they will be logged here. Contrariwise, if you *do* + # define per- access logfiles, transactions will be + # logged therein and *not* in this file. + # + #CustomLog "logs/access_log" common + + # + # If you prefer a logfile with access, agent, and referer information + # (Combined Logfile Format) you can use the following directive. + # + CustomLog "logs/access_log" combined + + + + # + # Redirect: Allows you to tell clients about documents that used to + # exist in your server's namespace, but do not anymore. The client + # will make a new request for the document at its new location. + # Example: + # Redirect permanent /foo http://www.example.com/bar + + # + # Alias: Maps web paths into filesystem paths and is used to + # access content that does not live under the DocumentRoot. + # Example: + # Alias /webpath /full/filesystem/path + # + # If you include a trailing / on /webpath then the server will + # require it to be present in the URL. You will also likely + # need to provide a section to allow access to + # the filesystem path. + + # + # ScriptAlias: This controls which directories contain server scripts. + # ScriptAliases are essentially the same as Aliases, except that + # documents in the target directory are treated as applications and + # run by the server when requested rather than as documents sent to the + # client. The same rules about trailing "/" apply to ScriptAlias + # directives as to Alias. + # + #ScriptAlias /cgi-bin/ "/var/www/cgi-bin/" + + + +# +# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased +# CGI directory exists, if you have that configured. +# + + AllowOverride None + Options None + Require all granted + + + + # + # TypesConfig points to the file containing the list of mappings from + # filename extension to MIME-type. + # + TypesConfig /etc/mime.types + + # + # AddType allows you to add to or override the MIME configuration + # file specified in TypesConfig for specific file types. + # + #AddType application/x-gzip .tgz + # + # AddEncoding allows you to have certain browsers uncompress + # information on the fly. Note: Not all browsers support this. + # + #AddEncoding x-compress .Z + #AddEncoding x-gzip .gz .tgz + # + # If the AddEncoding directives above are commented-out, then you + # probably should define those extensions to indicate media types: + # + AddType application/x-compress .Z + AddType application/x-gzip .gz .tgz + + # + # AddHandler allows you to map certain file extensions to "handlers": + # actions unrelated to filetype. These can be either built into the server + # or added with the Action directive (see below) + # + # To use CGI scripts outside of ScriptAliased directories: + # (You will also need to add "ExecCGI" to the "Options" directive.) + # + AddHandler cgi-script .cgi + + # For type maps (negotiated resources): + #AddHandler type-map var + + # + # Filters allow you to process content before it is sent to the client. + # + # To parse .shtml files for server-side includes (SSI): + # (You will also need to add "Includes" to the "Options" directive.) + # + AddType text/html .shtml + AddOutputFilter INCLUDES .shtml + + +# +# Specify a default charset for all content served; this enables +# interpretation of all content as UTF-8 by default. To use the +# default browser choice (ISO-8859-1), or to allow the META tags +# in HTML content to override this choice, comment out this +# directive: +# +AddDefaultCharset UTF-8 + + + # + # The mod_mime_magic module allows the server to use various hints from the + # contents of the file itself to determine its type. The MIMEMagicFile + # directive tells the module where the hint definitions are located. + # + MIMEMagicFile conf/magic + + +# +# Customizable error responses come in three flavors: +# 1) plain text 2) local redirects 3) external redirects +# +# Some examples: +#ErrorDocument 500 "The server made a boo boo." +#ErrorDocument 404 /missing.html +#ErrorDocument 404 "/cgi-bin/missing_handler.pl" +#ErrorDocument 402 http://www.example.com/subscription_info.html +# + +# +# EnableMMAP and EnableSendfile: On systems that support it, +# memory-mapping or the sendfile syscall may be used to deliver +# files. This usually improves server performance, but must +# be turned off when serving from networked-mounted +# filesystems or if support for these functions is otherwise +# broken on your system. +# Defaults if commented: EnableMMAP On, EnableSendfile Off +# +#EnableMMAP off +EnableSendfile on + +# Supplemental configuration +# +# Load config files in the "/etc/httpd/conf.d" directory, if any. +IncludeOptional conf.d/*.conf diff --git a/deployment/nmrc-deploy.sh b/deployment/nmrc-deploy.sh new file mode 100644 index 00000000..46e372da --- /dev/null +++ b/deployment/nmrc-deploy.sh @@ -0,0 +1,151 @@ +#!/bin/bash +#################################### +## This is the EDGE Bioinformatics Deployment Configurator Script. +## It assumes a bare install of CentOS 7 with Development Tools and GNOME desk- +## top, rebooted through first boot. This is the deployment script used for DoD +## installations. +## +## A network connection with port 80 open is required for installation. You +## must be able to route to centos.org, cpan.org, and fedoraproject.org as a +## minimum. On a low-speed connection, this script may take several hours. +## +## WARNING: If you run this script on a server that's already been configured to +## do something else, it will probably break. If you're running this script +## and you haven't met Joe from NMRC and Patrick from LANL, it's probably not +## time to run this script yet. +## +## This is the work of an employee of the United States Government, performed as +## part of their official duties. No copyright is claimed, this work is entered +## into the public domain without restriction. +## +#################################### + +## Update changePassword to the appropriate password for the system +## Update changePassword in createDatabase.sql to the appropriate password + +## Install pre-reqs +sudo yum install -y epel-release +sudo yum install -y libX11-devel readline-devel libXt-devel ncurses-devel inkscape scipy expat expat-devel freetype freetype-devel zlib zlib-devel perl-App-cpanminus perl-Test-Most python-pip blas-devel atlas-devel lapack-devel numpy numpy-f2py libpng12 libpng12-devel perl-XML-Simple perl-JSON csh gcc gcc-c++ make binutils gd gsl-devel git graphviz java-1.7.0-openjdk perl-Archive-Zip perl-CGI perl-CGI-Session perl-CPAN-Meta-YAML perl-DBI perl-Data-Dumper perl-GD perl-IO-Compress perl-Module-Build perl-XML-LibXML perl-XML-Parser perl-XML-SAX perl-XML-SAX-Writer perl-XML-Twig perl-XML-Writer perl-YAML perl-PerlIO-gzip python-matplotlib python-six libstdc++-static + + + +## Update existing python and perl tools +sudo pip install --upgrade six scipy matplotlib +sudo cpanm App::cpanoutdated +sudo su - +cpan-outdated -p | cpanm +exit + +## Install more Perl modules +## Some of these may fail, that's okay. BioPerl needs to go smoothly. +cpanm Graph Time::Piece BioPerl +cpanm Algorithm::Munkres Archive::Tar Array::Compare Clone Convert::Binary::C +cpanm HTML::Template HTML::TableExtract List::MoreUtils PostScript::TextBlock +cpanm SOAP::Lite SVG SVG::Graph Set::Scalar Sort::Naturally Spreadsheet::ParseExcel +cpanm CGI CGI::Simple GD Graph GraphViz XML::Parser::PerlSAX XML::SAX XML::SAX::Writer XML::Simple XML::Twig XML::Writer + +## Install Apache for the Web GUI +sudo yum install -y httpd httpd-tools + +## Configure firewall for ssh, http, https, and smtp: +sudo firewall-cmd --permanent --add-service=ssh +sudo firewall-cmd --permanent --add-service=http +sudo firewall-cmd --permanent --add-service=https +sudo firewall-cmd --permanent --add-service=smtp + +## Try to clone from the EDGE repo if SSH works +cd ~ +if [ -d /home/edge/edge ]; then + echo "EDGE directory exists at ~/edge, skipping." +elif [ $1 == "SSH" ]; then + echo "SSH deployment from BitBucket, requires registered SSH key." + git clone git@bitbucket.org:nmrcjoe/edge.git +elif [ $1 == "HTTPS" ]; then + echo "HTTPS deployment from BitBucket, expect timeouts." + git clone https://nmrcjoe@bitbucket.org/nmrcjoe/edge.git +elif [ $1 == "NMRC" ]; then + echo "Will use rsync to copy from bigsilver." + rsync -avzhr --progress joe@192.168.20.3:~/edge ~/ +else + echo "Program directory not present, and no valid source specified. Exiting." + exit 0 +fi + +## Do the same for the database files (if not done already) +if ![ -d /home/edge/database ]; then + echo "Retrieving database files from bigsilver." + rsync -avzhr --progress joe@192.168.20.3:~/database ~/ +fi + + +## Disable SELINUX +# sudo sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/sysconfig/selinux +# sudo sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config +sudo setenforce 0 + +## Set default NMRC EDGE params +sed -i 's/opt\/apps/home\/edge/g' /home/edge/edge/edge_ui/cgi-bin/edge_config.tmpl +sed -i 's/user_management=1/user_management=0/g' /home/edge/edge/edge_ui/cgi-bin/edge_config.tmpl + + +## Fix the database directories (Assumes dbs are in ~/database) +## Make sure the database is linked prior to running INSTALL.sh +rm -rf ~/edge/database +ln -s ~/database ~/edge/database +sudo ln -s ~/database/ /database +## This should be done by the INSTALL.sh +#ln -s ~/database/Krona_taxonomy ~/edge/thirdParty/KronaTools-2.4/taxonomy + +## Install LANL EDGE +~/edge/INSTALL.sh + +## Copy the EDGE httpd conf files to the appropriate directories +## This should be done after INSTALL.sh, the script inserts the appropriate paths +sudo cp ~/edge/edge_ui/apache_conf/edge_httpd.conf /etc/httpd/conf.d/ +sudo cp ~/edge/deployment/httpd.conf /etc/httpd/conf/ + +## Setup userManagement +## Install database +sudo yum install mariadb-server mariadb +sudo systemctl start mariadb.service && sudo systemctl enable mariadb.service +## Setup root password on database +sudo mysql_secure_installation + +## Create userManagement database and Load schema/constrains +## Update changePassword within createDatabase.sql to the appropriate password +echo createDatabase.sql | mysql -u root -p + +## Install php +sudo yum install php php-pear +sudo yum install php-mysql +sudo httpd -k restart + +## Install and Configure tomcat +sudo yum install tomcat +sudo cp ~/userManagement/mariadb-java-client-1.2.0.jar /usr/share/tomcat/lib +sudo sed -i 's@@\n\n@g' /usr/share/tomcat/conf/tomcat-users.xml +sudo sed -i 's@.*@4320@g' /usr/share/tomcat/conf/web.xml +sudo sed -i 's@#JAVA_OPTS@JAVA_OPTS="-Xms256m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m"\n#JAVA_OPTS@g' /usr/share/tomcat/conf/tomcat.conf + +## Deploy userManagement to tomcat server +sudo cp ~/userManagement/userManagement*.war /usr/share/tomcat/webapps/ + +## Edit ~/edge/userManagement/userManagementWS.xml then deploy it to /usr/share/tomcat/conf/Catalina/localhost +sed -i 's@username=.*$@username="edge"@' ~/edge/userManagement/userManagementWS.xml +sed -i 's@password=.*$@password="changePasword"@' ~/edge/userManagement/userManagementWS.xml +sed -i 's@driverClassName=.*$@driverClassName="org.mariadb.jdbc.Driver"@' ~/edge/userManagement/userManagementWS.xml +sudo cp ~/userManagement/userManagementWS.xml /usr/share/tomcat/conf/Catalina/localhost/ + +## Edit /usr/share/tomcat/webapps/userManagement/WEB-INF/classes/sys.properties to match the appropriate settings for the server +sudo sed -i 's@host_url=.*$@host_url=http://localhost:8080/userManagement@g' /usr/share/tomcat/webapps/userManagement/WEB-INF/classes/sys.properties +sudo sed -i 's@wsURL=.*$@wsURL=http://localhost:8080/userManagementWS@g' /usr/share/tomcat/webapps/userManagement/WEB-INF/classes/sys.properties +sudo sed -i 's@email_notification=.*$@email_notification=off@g' /usr/share/tomcat/webapps/userManagement/WEB-INF/classes/sys.properties + +## Create admin account for EDGE +## Should this script fail, something is not set up correctly +perl ~/edge/userManagement/createAdminAccount.pl -e admin@edge.com -p changePassword -fn admin -ln edge + +## Enable userManagement in ~/edge/edge_ui/sys.properties +sed -i 's@user_management=.*$@user_management=1@g' ~/edge/edge_ui/sys.properties +sed -i 's@edge_user_management_url=.*$@edge_user_management_url=http://localhost:8080/userManagement@g' ~/edge/edge_ui/sys.properties + diff --git a/edge_ui/EDGE_input/public/data/Reference/Ebolavirus_complete_genomes_20seqs/Ebolavirus_complete_genomes_20seqs.gbk b/deployment/public/data/Reference/Ebolavirus_complete_genomes_20seqs/Ebolavirus_complete_genomes_20seqs.gbk similarity index 100% rename from edge_ui/EDGE_input/public/data/Reference/Ebolavirus_complete_genomes_20seqs/Ebolavirus_complete_genomes_20seqs.gbk rename to deployment/public/data/Reference/Ebolavirus_complete_genomes_20seqs/Ebolavirus_complete_genomes_20seqs.gbk diff --git a/edge_ui/EDGE_input/public/data/Reference/MERS-CoV/MERS_Complete_genomes_24seqs.gbk b/deployment/public/data/Reference/MERS-CoV/MERS_Complete_genomes_24seqs.gbk similarity index 100% rename from edge_ui/EDGE_input/public/data/Reference/MERS-CoV/MERS_Complete_genomes_24seqs.gbk rename to deployment/public/data/Reference/MERS-CoV/MERS_Complete_genomes_24seqs.gbk diff --git a/edge_ui/EDGE_input b/edge_ui/EDGE_input new file mode 120000 index 00000000..7ad9cc32 --- /dev/null +++ b/edge_ui/EDGE_input @@ -0,0 +1 @@ +/home/edge/EDGE_input \ No newline at end of file diff --git a/edge_ui/EDGE_input/public/data/testData b/edge_ui/EDGE_input/public/data/testData deleted file mode 120000 index 19563774..00000000 --- a/edge_ui/EDGE_input/public/data/testData +++ /dev/null @@ -1 +0,0 @@ -../../../../testData/ \ No newline at end of file diff --git a/edge_ui/EDGE_input/public/projects/.gitignore b/edge_ui/EDGE_input/public/projects/.gitignore deleted file mode 100644 index e69de29b..00000000 diff --git a/edge_ui/EDGE_output b/edge_ui/EDGE_output new file mode 120000 index 00000000..d893ce50 --- /dev/null +++ b/edge_ui/EDGE_output @@ -0,0 +1 @@ +/home/edge/EDGE_output \ No newline at end of file diff --git a/edge_ui/apache_conf/README b/edge_ui/apache_conf/README index f7353f5d..9ae5a447 100644 --- a/edge_ui/apache_conf/README +++ b/edge_ui/apache_conf/README @@ -12,7 +12,15 @@ > sudo a2enmod cgid > sudo a2enmod proxy proxy_http -3. Modify sample apache configuration file: $EDGE_HOME/edge_ui/apache_conf/edge_apache.conf alias directories to match install +3. Modify sample apache/httpd configuration file: + + For Ubuntu + > vim $EDGE_HOME/edge_ui/apache_conf/edge_apache.conf + Make sure lines 2,3,13,14,26,51 have the appropriate path + + For CentOS + > vim $EDGE_HOME/edge_ui/apache_conf/edge_httpd.conf + Make sure lines 2,3,11,12,26,51 have the appropriate path 4. Copy edge_apache.conf to the apache or Insert content into httpd.conf @@ -20,14 +28,26 @@ > cp $EDGE_HOME/edge_ui/apache_conf/edge_apache.conf /etc/apache2/conf-available/ > ln -s /etc/apache2/conf-available/edge_apache.conf /etc/apache2/conf-enabled/ For CentOS - /etc/httpd/conf/httpd.conf + > sudo cp $EDGE_HOME/edge_ui/apache_conf/edge_httpd.conf /etc/httpd/conf.d/ -4. Modify permissions: mod permissions on installed directory to match apache user (ex: change from www-data to edge) +4. Modify configuration file: + + For Ubuntu + mod permissions on installed directory to match apache user (ex: change from www-data to edge) + + For CentOS + > sudo vim /etc/httpd/conf/httpd.conf + Modify lines as follows: + 66 modify line: User edge + 67 modify line: Group edge + 95 modify line: ServerName localhost + 247 comment out line: ScriptAlias /cgi-bin/ "/var/www/cgi-bin/" + 294 uncomment line: AddHandler cgi-script .cgi 5. Restart the apache2 to active the new configuration For Ubuntu > service apache2 restart For CentOS - > service http restart + > sudo httpd -k restart diff --git a/edge_ui/apache_conf/centos_httpd.conf b/edge_ui/apache_conf/centos_httpd.conf new file mode 100644 index 00000000..5709660b --- /dev/null +++ b/edge_ui/apache_conf/centos_httpd.conf @@ -0,0 +1,356 @@ +# +# This is the main Apache HTTP server configuration file. It contains the +# configuration directives that give the server its instructions. +# See for detailed information. +# In particular, see +# +# for a discussion of each configuration directive. +# +# Do NOT simply read the instructions in here without understanding +# what they do. They're here only as hints or reminders. If you are unsure +# consult the online docs. You have been warned. +# +# Configuration and logfile names: If the filenames you specify for many +# of the server's control files begin with "/" (or "drive:/" for Win32), the +# server will use that explicit path. If the filenames do *not* begin +# with "/", the value of ServerRoot is prepended -- so 'log/access_log' +# with ServerRoot set to '/www' will be interpreted by the +# server as '/www/log/access_log', where as '/log/access_log' will be +# interpreted as '/log/access_log'. + +# +# ServerRoot: The top of the directory tree under which the server's +# configuration, error, and log files are kept. +# +# Do not add a slash at the end of the directory path. If you point +# ServerRoot at a non-local disk, be sure to specify a local disk on the +# Mutex directive, if file-based mutexes are used. If you wish to share the +# same ServerRoot for multiple httpd daemons, you will need to change at +# least PidFile. +# +ServerRoot "/etc/httpd" + +# +# Listen: Allows you to bind Apache to specific IP addresses and/or +# ports, instead of the default. See also the +# directive. +# +# Change this to Listen on specific IP addresses as shown below to +# prevent Apache from glomming onto all bound IP addresses. +# +#Listen 12.34.56.78:80 +Listen 80 + +# +# Dynamic Shared Object (DSO) Support +# +# To be able to use the functionality of a module which was built as a DSO you +# have to place corresponding `LoadModule' lines at this location so the +# directives contained in it are actually available _before_ they are used. +# Statically compiled modules (those listed by `httpd -l') do not need +# to be loaded here. +# +# Example: +# LoadModule foo_module modules/mod_foo.so +# +Include conf.modules.d/*.conf + +# +# If you wish httpd to run as a different user or group, you must run +# httpd as root initially and it will switch. +# +# User/Group: The name (or #number) of the user/group to run httpd as. +# It is usually good practice to create a dedicated user and group for +# running httpd, as with most system services. +# +User edge +Group edge + +# 'Main' server configuration +# +# The directives in this section set up the values used by the 'main' +# server, which responds to any requests that aren't handled by a +# definition. These values also provide defaults for +# any containers you may define later in the file. +# +# All of these directives may appear inside containers, +# in which case these default settings will be overridden for the +# virtual host being defined. +# + +# Added to close http TRACE XSS attack vulnerability +TraceEnable Off + +# +# ServerAdmin: Your address, where problems with the server should be +# e-mailed. This address appears on some server-generated pages, such +# as error documents. e.g. admin@your-domain.com +# +ServerAdmin root@localhost + +# +# ServerName gives the name and port that the server uses to identify itself. +# This can often be determined automatically, but we recommend you specify +# it explicitly to prevent problems during startup. +# +# If your host doesn't have a registered DNS name, enter its IP address here. +# +ServerName localhost + +# +# Deny access to the entirety of your server's filesystem. You must +# explicitly permit access to web content directories in other +# blocks below. +# + + AllowOverride none + Require all denied + + +# +# Note that from this point forward you must specifically allow +# particular features to be enabled - so if something's not working as +# you might expect, make sure that you have specifically enabled it +# below. +# + +# +# DocumentRoot: The directory out of which you will serve your +# documents. By default, all requests are taken from this directory, but +# symbolic links and aliases may be used to point to other locations. +# +DocumentRoot "/var/www/html" + +# +# Relax access to content within /var/www. +# + + AllowOverride None + # Allow open access: + Require all granted + + +# Further relax access to the default document root: + + # + # Possible values for the Options directive are "None", "All", + # or any combination of: + # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews + # + # Note that "MultiViews" must be named *explicitly* --- "Options All" + # doesn't give it to you. + # + # The Options directive is both complicated and important. Please see + # http://httpd.apache.org/docs/2.4/mod/core.html#options + # for more information. + # + Options Indexes FollowSymLinks + + # + # AllowOverride controls what directives may be placed in .htaccess files. + # It can be "All", "None", or any combination of the keywords: + # Options FileInfo AuthConfig Limit + # + AllowOverride None + + # + # Controls who can get stuff from this server. + # + Require all granted + + +# +# DirectoryIndex: sets the file that Apache will serve if a directory +# is requested. +# + + DirectoryIndex index.html + + +# +# The following lines prevent .htaccess and .htpasswd files from being +# viewed by Web clients. +# + + Require all denied + + +# +# ErrorLog: The location of the error log file. +# If you do not specify an ErrorLog directive within a +# container, error messages relating to that virtual host will be +# logged here. If you *do* define an error logfile for a +# container, that host's errors will be logged there and not here. +# +ErrorLog "logs/error_log" + +# +# LogLevel: Control the number of messages logged to the error_log. +# Possible values include: debug, info, notice, warn, error, crit, +# alert, emerg. +# +LogLevel warn + + + # + # The following directives define some format nicknames for use with + # a CustomLog directive (see below). + # + LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined + LogFormat "%h %l %u %t \"%r\" %>s %b" common + + + # You need to enable mod_logio.c to use %I and %O + LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio + + + # + # The location and format of the access logfile (Common Logfile Format). + # If you do not define any access logfiles within a + # container, they will be logged here. Contrariwise, if you *do* + # define per- access logfiles, transactions will be + # logged therein and *not* in this file. + # + #CustomLog "logs/access_log" common + + # + # If you prefer a logfile with access, agent, and referer information + # (Combined Logfile Format) you can use the following directive. + # + CustomLog "logs/access_log" combined + + + + # + # Redirect: Allows you to tell clients about documents that used to + # exist in your server's namespace, but do not anymore. The client + # will make a new request for the document at its new location. + # Example: + # Redirect permanent /foo http://www.example.com/bar + + # + # Alias: Maps web paths into filesystem paths and is used to + # access content that does not live under the DocumentRoot. + # Example: + # Alias /webpath /full/filesystem/path + # + # If you include a trailing / on /webpath then the server will + # require it to be present in the URL. You will also likely + # need to provide a section to allow access to + # the filesystem path. + + # + # ScriptAlias: This controls which directories contain server scripts. + # ScriptAliases are essentially the same as Aliases, except that + # documents in the target directory are treated as applications and + # run by the server when requested rather than as documents sent to the + # client. The same rules about trailing "/" apply to ScriptAlias + # directives as to Alias. + # + #ScriptAlias /cgi-bin/ "/var/www/cgi-bin/" + + + +# +# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased +# CGI directory exists, if you have that configured. +# + + AllowOverride None + Options None + Require all granted + + + + # + # TypesConfig points to the file containing the list of mappings from + # filename extension to MIME-type. + # + TypesConfig /etc/mime.types + + # + # AddType allows you to add to or override the MIME configuration + # file specified in TypesConfig for specific file types. + # + #AddType application/x-gzip .tgz + # + # AddEncoding allows you to have certain browsers uncompress + # information on the fly. Note: Not all browsers support this. + # + #AddEncoding x-compress .Z + #AddEncoding x-gzip .gz .tgz + # + # If the AddEncoding directives above are commented-out, then you + # probably should define those extensions to indicate media types: + # + AddType application/x-compress .Z + AddType application/x-gzip .gz .tgz + + # + # AddHandler allows you to map certain file extensions to "handlers": + # actions unrelated to filetype. These can be either built into the server + # or added with the Action directive (see below) + # + # To use CGI scripts outside of ScriptAliased directories: + # (You will also need to add "ExecCGI" to the "Options" directive.) + # + AddHandler cgi-script .cgi + + # For type maps (negotiated resources): + #AddHandler type-map var + + # + # Filters allow you to process content before it is sent to the client. + # + # To parse .shtml files for server-side includes (SSI): + # (You will also need to add "Includes" to the "Options" directive.) + # + AddType text/html .shtml + AddOutputFilter INCLUDES .shtml + + +# +# Specify a default charset for all content served; this enables +# interpretation of all content as UTF-8 by default. To use the +# default browser choice (ISO-8859-1), or to allow the META tags +# in HTML content to override this choice, comment out this +# directive: +# +AddDefaultCharset UTF-8 + + + # + # The mod_mime_magic module allows the server to use various hints from the + # contents of the file itself to determine its type. The MIMEMagicFile + # directive tells the module where the hint definitions are located. + # + MIMEMagicFile conf/magic + + +# +# Customizable error responses come in three flavors: +# 1) plain text 2) local redirects 3) external redirects +# +# Some examples: +#ErrorDocument 500 "The server made a boo boo." +#ErrorDocument 404 /missing.html +#ErrorDocument 404 "/cgi-bin/missing_handler.pl" +#ErrorDocument 402 http://www.example.com/subscription_info.html +# + +# +# EnableMMAP and EnableSendfile: On systems that support it, +# memory-mapping or the sendfile syscall may be used to deliver +# files. This usually improves server performance, but must +# be turned off when serving from networked-mounted +# filesystems or if support for these functions is otherwise +# broken on your system. +# Defaults if commented: EnableMMAP On, EnableSendfile Off +# +#EnableMMAP off +EnableSendfile on + +# Supplemental configuration +# +# Load config files in the "/etc/httpd/conf.d" directory, if any. +IncludeOptional conf.d/*.conf diff --git a/edge_ui/apache_conf/edge_apache.conf b/edge_ui/apache_conf/edge_apache.conf index 160d11be..f1c78085 100644 --- a/edge_ui/apache_conf/edge_apache.conf +++ b/edge_ui/apache_conf/edge_apache.conf @@ -27,6 +27,11 @@ Options -Indexes + +Order allow,deny +Deny from all + + # for user management tomcat server to be visible on port 80 ProxyPass /userManagement http://localhost:8080/userManagement ProxyPassReverse /userManagement http://localhost:8080/userManagement diff --git a/edge_ui/apache_conf/edge_httpd.conf b/edge_ui/apache_conf/edge_httpd.conf new file mode 100644 index 00000000..a0dee9b3 --- /dev/null +++ b/edge_ui/apache_conf/edge_httpd.conf @@ -0,0 +1,58 @@ + + ScriptAlias /cgi-bin/ %EDGE_HOME%/edge_ui/cgi-bin/ + + AllowOverride None + Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch + AddHandler cgi-script .cgi .pl .php + Order allow,deny + allow from all + + + + + Alias / "%EDGE_HOME%/edge_ui/" + + Options Indexes FollowSymlinks + AllowOverride None + Require all granted + + + + + ForceType application/octet-stream + Header set Content-Disposition attachment + + + + Options -Indexes + + + +Order allow,deny +Deny from all + + +# for user management tomcat server to be visible on port 80 +ProxyPass /userManagement http://localhost:8080/userManagement +ProxyPassReverse /userManagement http://localhost:8080/userManagement +ProxyPass /userManagementWS http://localhost:8080/userManagementWS +ProxyPassReverse /userManagementWS http://localhost:8080/userManagementWS + +#for JBrowse +AddType application/octet-stream .bam .bami + + + mod_gzip_item_exclude "(\.jsonz|\.txtz)" + + + SetEnvIf Request_URI "(\.jsonz|\.txtz)" no-gzip dont-vary + + + + Header onsuccess set Content-Encoding gzip + + + + + AllowOverride FileInfo + diff --git a/edge_ui/apache_conf/httpd.conf b/edge_ui/apache_conf/httpd.conf new file mode 100644 index 00000000..15dcdf14 --- /dev/null +++ b/edge_ui/apache_conf/httpd.conf @@ -0,0 +1,1074 @@ +# +# This is the main Apache server configuration file. It contains the +# configuration directives that give the server its instructions. +# See for detailed information. +# In particular, see +# +# for a discussion of each configuration directive. +# +# +# Do NOT simply read the instructions in here without understanding +# what they do. They're here only as hints or reminders. If you are unsure +# consult the online docs. You have been warned. +# +# The configuration directives are grouped into three basic sections: +# 1. Directives that control the operation of the Apache server process as a +# whole (the 'global environment'). +# 2. Directives that define the parameters of the 'main' or 'default' server, +# which responds to requests that aren't handled by a virtual host. +# These directives also provide default values for the settings +# of all virtual hosts. +# 3. Settings for virtual hosts, which allow Web requests to be sent to +# different IP addresses or hostnames and have them handled by the +# same Apache server process. +# +# Configuration and logfile names: If the filenames you specify for many +# of the server's control files begin with "/" (or "drive:/" for Win32), the +# server will use that explicit path. If the filenames do *not* begin +# with "/", the value of ServerRoot is prepended -- so "logs/foo.log" +# with ServerRoot set to "/etc/httpd" will be interpreted by the +# server as "/etc/httpd/logs/foo.log". +# + +### Section 1: Global Environment +# +# The directives in this section affect the overall operation of Apache, +# such as the number of concurrent requests it can handle or where it +# can find its configuration files. +# + +# +# Don't give away too much information about all the subcomponents +# we are running. Comment out this line if you don't mind remote sites +# finding out what major optional modules you are running +ServerTokens OS + +# +# ServerRoot: The top of the directory tree under which the server's +# configuration, error, and log files are kept. +# +# NOTE! If you intend to place this on an NFS (or otherwise network) +# mounted filesystem then please read the LockFile documentation +# (available at ); +# you will save yourself a lot of trouble. +# +# Do NOT add a slash at the end of the directory path. +# +ServerRoot "/etc/httpd" + +# +# PidFile: The file in which the server should record its process +# identification number when it starts. Note the PIDFILE variable in +# /etc/sysconfig/httpd must be set appropriately if this location is +# changed. +# +PidFile run/httpd.pid + +# +# Timeout: The number of seconds before receives and sends time out. +# +Timeout 60 + +# +# KeepAlive: Whether or not to allow persistent connections (more than +# one request per connection). Set to "Off" to deactivate. +# +KeepAlive Off + +# +# MaxKeepAliveRequests: The maximum number of requests to allow +# during a persistent connection. Set to 0 to allow an unlimited amount. +# We recommend you leave this number high, for maximum performance. +# +MaxKeepAliveRequests 100 + +# +# KeepAliveTimeout: Number of seconds to wait for the next request from the +# same client on the same connection. +# +KeepAliveTimeout 15 + +## +## Server-Pool Size Regulation (MPM specific) +## + +# prefork MPM +# StartServers: number of server processes to start +# MinSpareServers: minimum number of server processes which are kept spare +# MaxSpareServers: maximum number of server processes which are kept spare +# ServerLimit: maximum value for MaxClients for the lifetime of the server +# MaxClients: maximum number of server processes allowed to start +# MaxRequestsPerChild: maximum number of requests a server process serves + +StartServers 8 +MinSpareServers 5 +MaxSpareServers 20 +ServerLimit 256 +MaxClients 256 +MaxRequestsPerChild 4000 + + +# worker MPM +# StartServers: initial number of server processes to start +# MaxClients: maximum number of simultaneous client connections +# MinSpareThreads: minimum number of worker threads which are kept spare +# MaxSpareThreads: maximum number of worker threads which are kept spare +# ThreadsPerChild: constant number of worker threads in each server process +# MaxRequestsPerChild: maximum number of requests a server process serves + +StartServers 4 +MaxClients 300 +MinSpareThreads 25 +MaxSpareThreads 75 +ThreadsPerChild 25 +MaxRequestsPerChild 0 + + +# +# Listen: Allows you to bind Apache to specific IP addresses and/or +# ports, in addition to the default. See also the +# directive. +# +# Change this to Listen on specific IP addresses as shown below to +# prevent Apache from glomming onto all bound IP addresses (0.0.0.0) +# +#Listen 12.34.56.78:80 +Listen 0.0.0.0:80 + +# +# Dynamic Shared Object (DSO) Support +# +# To be able to use the functionality of a module which was built as a DSO you +# have to place corresponding `LoadModule' lines at this location so the +# directives contained in it are actually available _before_ they are used. +# Statically compiled modules (those listed by `httpd -l') do not need +# to be loaded here. +# +# Example: +# LoadModule foo_module modules/mod_foo.so +# +LoadModule auth_basic_module modules/mod_auth_basic.so +LoadModule auth_digest_module modules/mod_auth_digest.so +LoadModule authn_file_module modules/mod_authn_file.so +LoadModule authn_alias_module modules/mod_authn_alias.so +LoadModule authn_anon_module modules/mod_authn_anon.so +LoadModule authn_dbm_module modules/mod_authn_dbm.so +LoadModule authn_default_module modules/mod_authn_default.so +LoadModule authz_host_module modules/mod_authz_host.so +LoadModule authz_user_module modules/mod_authz_user.so +LoadModule authz_owner_module modules/mod_authz_owner.so +LoadModule authz_groupfile_module modules/mod_authz_groupfile.so +LoadModule authz_dbm_module modules/mod_authz_dbm.so +LoadModule authz_default_module modules/mod_authz_default.so +LoadModule ldap_module modules/mod_ldap.so +LoadModule authnz_ldap_module modules/mod_authnz_ldap.so +LoadModule include_module modules/mod_include.so +LoadModule log_config_module modules/mod_log_config.so +LoadModule logio_module modules/mod_logio.so +LoadModule env_module modules/mod_env.so +LoadModule ext_filter_module modules/mod_ext_filter.so +LoadModule mime_magic_module modules/mod_mime_magic.so +LoadModule expires_module modules/mod_expires.so +LoadModule deflate_module modules/mod_deflate.so +LoadModule headers_module modules/mod_headers.so +LoadModule usertrack_module modules/mod_usertrack.so +LoadModule setenvif_module modules/mod_setenvif.so +LoadModule mime_module modules/mod_mime.so +LoadModule dav_module modules/mod_dav.so +LoadModule status_module modules/mod_status.so +LoadModule autoindex_module modules/mod_autoindex.so +LoadModule info_module modules/mod_info.so +LoadModule dav_fs_module modules/mod_dav_fs.so +LoadModule vhost_alias_module modules/mod_vhost_alias.so +LoadModule negotiation_module modules/mod_negotiation.so +LoadModule dir_module modules/mod_dir.so +LoadModule actions_module modules/mod_actions.so +LoadModule speling_module modules/mod_speling.so +LoadModule userdir_module modules/mod_userdir.so +LoadModule alias_module modules/mod_alias.so +LoadModule substitute_module modules/mod_substitute.so +LoadModule rewrite_module modules/mod_rewrite.so +LoadModule proxy_module modules/mod_proxy.so +LoadModule proxy_balancer_module modules/mod_proxy_balancer.so +LoadModule proxy_ftp_module modules/mod_proxy_ftp.so +LoadModule proxy_http_module modules/mod_proxy_http.so +LoadModule proxy_ajp_module modules/mod_proxy_ajp.so +LoadModule proxy_connect_module modules/mod_proxy_connect.so +LoadModule cache_module modules/mod_cache.so +LoadModule suexec_module modules/mod_suexec.so +LoadModule disk_cache_module modules/mod_disk_cache.so +LoadModule cgi_module modules/mod_cgi.so +LoadModule version_module modules/mod_version.so + +# +# The following modules are not loaded by default: +# +#LoadModule asis_module modules/mod_asis.so +#LoadModule authn_dbd_module modules/mod_authn_dbd.so +#LoadModule cern_meta_module modules/mod_cern_meta.so +LoadModule cgid_module modules/mod_cgid.so +#LoadModule dbd_module modules/mod_dbd.so +#LoadModule dumpio_module modules/mod_dumpio.so +#LoadModule filter_module modules/mod_filter.so +#LoadModule ident_module modules/mod_ident.so +#LoadModule log_forensic_module modules/mod_log_forensic.so +#LoadModule unique_id_module modules/mod_unique_id.so +# + +# +# Load config files from the config directory "/etc/httpd/conf.d". +# +Include conf.d/*.conf + +# +# ExtendedStatus controls whether Apache will generate "full" status +# information (ExtendedStatus On) or just basic information (ExtendedStatus +# Off) when the "server-status" handler is called. The default is Off. +# +#ExtendedStatus On + +# +# If you wish httpd to run as a different user or group, you must run +# httpd as root initially and it will switch. +# +# User/Group: The name (or #number) of the user/group to run httpd as. +# . On SCO (ODT 3) use "User nouser" and "Group nogroup". +# . On HPUX you may not be able to use shared memory as nobody, and the +# suggested workaround is to create a user www and use that user. +# NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET) +# when the value of (unsigned)Group is above 60000; +# don't use Group #-1 on these systems! +# +User edge +Group edge + +### Section 2: 'Main' server configuration +# +# The directives in this section set up the values used by the 'main' +# server, which responds to any requests that aren't handled by a +# definition. These values also provide defaults for +# any containers you may define later in the file. +# +# All of these directives may appear inside containers, +# in which case these default settings will be overridden for the +# virtual host being defined. +# + +# +# ServerAdmin: Your address, where problems with the server should be +# e-mailed. This address appears on some server-generated pages, such +# as error documents. e.g. admin@your-domain.com +# +ServerAdmin root@localhost + +# +# ServerName gives the name and port that the server uses to identify itself. +# This can often be determined automatically, but we recommend you specify +# it explicitly to prevent problems during startup. +# +# If this is not set to valid DNS name for your host, server-generated +# redirections will not work. See also the UseCanonicalName directive. +# +# If your host doesn't have a registered DNS name, enter its IP address here. +# You will have to access it by its address anyway, and this will make +# redirections work in a sensible way. +# +#ServerName www.example.com:80 + +# +# UseCanonicalName: Determines how Apache constructs self-referencing +# URLs and the SERVER_NAME and SERVER_PORT variables. +# When set "Off", Apache will use the Hostname and Port supplied +# by the client. When set "On", Apache will use the value of the +# ServerName directive. +# +UseCanonicalName Off + +# +# DocumentRoot: The directory out of which you will serve your +# documents. By default, all requests are taken from this directory, but +# symbolic links and aliases may be used to point to other locations. +# +DocumentRoot "/data/edge_v1.0/edge_ui" + +# +# Each directory to which Apache has access can be configured with respect +# to which services and features are allowed and/or disabled in that +# directory (and its subdirectories). +# +# First, we configure the "default" to be a very restrictive set of +# features. +# + + Options FollowSymLinks + AllowOverride None + + +# +# Note that from this point forward you must specifically allow +# particular features to be enabled - so if something's not working as +# you might expect, make sure that you have specifically enabled it +# below. +# + +# +# This should be changed to whatever you set DocumentRoot to. +# + + +# +# Possible values for the Options directive are "None", "All", +# or any combination of: +# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews +# +# Note that "MultiViews" must be named *explicitly* --- "Options All" +# doesn't give it to you. +# +# The Options directive is both complicated and important. Please see +# http://httpd.apache.org/docs/2.2/mod/core.html#options +# for more information. +# + Options Indexes FollowSymLinks + +# +# AllowOverride controls what directives may be placed in .htaccess files. +# It can be "All", "None", or any combination of the keywords: +# Options FileInfo AuthConfig Limit +# + AllowOverride None + +# +# Controls who can get stuff from this server. +# + Order allow,deny + Allow from all + + + +# +# UserDir: The name of the directory that is appended onto a user's home +# directory if a ~user request is received. +# +# The path to the end user account 'public_html' directory must be +# accessible to the webserver userid. This usually means that ~userid +# must have permissions of 711, ~userid/public_html must have permissions +# of 755, and documents contained therein must be world-readable. +# Otherwise, the client will only receive a "403 Forbidden" message. +# +# See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden +# + + # + # UserDir is disabled by default since it can confirm the presence + # of a username on the system (depending on home directory + # permissions). + # + UserDir disabled + + # + # To enable requests to /~user/ to serve the user's public_html + # directory, remove the "UserDir disabled" line above, and uncomment + # the following line instead: + # + #UserDir public_html + + + +# +# Control access to UserDir directories. The following is an example +# for a site where these directories are restricted to read-only. +# +# +# AllowOverride FileInfo AuthConfig Limit +# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec +# +# Order allow,deny +# Allow from all +# +# +# Order deny,allow +# Deny from all +# +# + +# +# DirectoryIndex: sets the file that Apache will serve if a directory +# is requested. +# +# The index.html.var file (a type-map) is used to deliver content- +# negotiated documents. The MultiViews Option can be used for the +# same purpose, but it is much slower. +# +DirectoryIndex index.html index.html.var + +# +# AccessFileName: The name of the file to look for in each directory +# for additional configuration directives. See also the AllowOverride +# directive. +# +AccessFileName .htaccess + +# +# The following lines prevent .htaccess and .htpasswd files from being +# viewed by Web clients. +# + + Order allow,deny + Deny from all + Satisfy All + + +# +# TypesConfig describes where the mime.types file (or equivalent) is +# to be found. +# +TypesConfig /etc/mime.types + +# +# DefaultType is the default MIME type the server will use for a document +# if it cannot otherwise determine one, such as from filename extensions. +# If your server contains mostly text or HTML documents, "text/plain" is +# a good value. If most of your content is binary, such as applications +# or images, you may want to use "application/octet-stream" instead to +# keep browsers from trying to display binary files as though they are +# text. +# +DefaultType text/plain + +# +# The mod_mime_magic module allows the server to use various hints from the +# contents of the file itself to determine its type. The MIMEMagicFile +# directive tells the module where the hint definitions are located. +# + +# MIMEMagicFile /usr/share/magic.mime + MIMEMagicFile conf/magic + + +# +# HostnameLookups: Log the names of clients or just their IP addresses +# e.g., www.apache.org (on) or 204.62.129.132 (off). +# The default is off because it'd be overall better for the net if people +# had to knowingly turn this feature on, since enabling it means that +# each client request will result in AT LEAST one lookup request to the +# nameserver. +# +HostnameLookups Off + +# +# EnableMMAP: Control whether memory-mapping is used to deliver +# files (assuming that the underlying OS supports it). +# The default is on; turn this off if you serve from NFS-mounted +# filesystems. On some systems, turning it off (regardless of +# filesystem) can improve performance; for details, please see +# http://httpd.apache.org/docs/2.2/mod/core.html#enablemmap +# +#EnableMMAP off + +# +# EnableSendfile: Control whether the sendfile kernel support is +# used to deliver files (assuming that the OS supports it). +# The default is on; turn this off if you serve from NFS-mounted +# filesystems. Please see +# http://httpd.apache.org/docs/2.2/mod/core.html#enablesendfile +# +#EnableSendfile off + +# +# ErrorLog: The location of the error log file. +# If you do not specify an ErrorLog directive within a +# container, error messages relating to that virtual host will be +# logged here. If you *do* define an error logfile for a +# container, that host's errors will be logged there and not here. +# +ErrorLog logs/error_log + +# +# LogLevel: Control the number of messages logged to the error_log. +# Possible values include: debug, info, notice, warn, error, crit, +# alert, emerg. +# +LogLevel warn + +# +# The following directives define some format nicknames for use with +# a CustomLog directive (see below). +# +LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined +LogFormat "%h %l %u %t \"%r\" %>s %b" common +LogFormat "%{Referer}i -> %U" referer +LogFormat "%{User-agent}i" agent + +# "combinedio" includes actual counts of actual bytes received (%I) and sent (%O); this +# requires the mod_logio module to be loaded. +#LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio + +# +# The location and format of the access logfile (Common Logfile Format). +# If you do not define any access logfiles within a +# container, they will be logged here. Contrariwise, if you *do* +# define per- access logfiles, transactions will be +# logged therein and *not* in this file. +# +#CustomLog logs/access_log common + +# +# If you would like to have separate agent and referer logfiles, uncomment +# the following directives. +# +#CustomLog logs/referer_log referer +#CustomLog logs/agent_log agent + +# +# For a single logfile with access, agent, and referer information +# (Combined Logfile Format), use the following directive: +# +CustomLog logs/access_log combined + +# +# Optionally add a line containing the server version and virtual host +# name to server-generated pages (internal error documents, FTP directory +# listings, mod_status and mod_info output etc., but not CGI generated +# documents or custom error documents). +# Set to "EMail" to also include a mailto: link to the ServerAdmin. +# Set to one of: On | Off | EMail +# +ServerSignature On + +# +# Aliases: Add here as many aliases as you need (with no limit). The format is +# Alias fakename realname +# +# Note that if you include a trailing / on fakename then the server will +# require it to be present in the URL. So "/icons" isn't aliased in this +# example, only "/icons/". If the fakename is slash-terminated, then the +# realname must also be slash terminated, and if the fakename omits the +# trailing slash, the realname must also omit it. +# +# We include the /icons/ alias for FancyIndexed directory listings. If you +# do not use FancyIndexing, you may comment this out. +# +Alias /icons/ "/var/www/icons/" + + + Options Indexes MultiViews FollowSymLinks + AllowOverride None + Order allow,deny + Allow from all + + +# +# WebDAV module configuration section. +# + + # Location of the WebDAV lock database. + DAVLockDB /var/lib/dav/lockdb + + +# +# ScriptAlias: This controls which directories contain server scripts. +# ScriptAliases are essentially the same as Aliases, except that +# documents in the realname directory are treated as applications and +# run by the server when requested rather than as documents sent to the client. +# The same rules about trailing "/" apply to ScriptAlias directives as to +# Alias. +# +#ScriptAlias /cgi-bin/ "/var/www/cgi-bin/" + +# +# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased +# CGI directory exists, if you have that configured. +# + + AllowOverride None + Options None + Order allow,deny + Allow from all + + +# +# Redirect allows you to tell clients about documents which used to exist in +# your server's namespace, but do not anymore. This allows you to tell the +# clients where to look for the relocated document. +# Example: +# Redirect permanent /foo http://www.example.com/bar + +# +# Directives controlling the display of server-generated directory listings. +# + +# +# IndexOptions: Controls the appearance of server-generated directory +# listings. +# +IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable Charset=UTF-8 + +# +# AddIcon* directives tell the server which icon to show for different +# files or filename extensions. These are only displayed for +# FancyIndexed directories. +# +AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip + +AddIconByType (TXT,/icons/text.gif) text/* +AddIconByType (IMG,/icons/image2.gif) image/* +AddIconByType (SND,/icons/sound2.gif) audio/* +AddIconByType (VID,/icons/movie.gif) video/* + +AddIcon /icons/binary.gif .bin .exe +AddIcon /icons/binhex.gif .hqx +AddIcon /icons/tar.gif .tar +AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv +AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip +AddIcon /icons/a.gif .ps .ai .eps +AddIcon /icons/layout.gif .html .shtml .htm .pdf +AddIcon /icons/text.gif .txt +AddIcon /icons/c.gif .c +AddIcon /icons/p.gif .pl .py +AddIcon /icons/f.gif .for +AddIcon /icons/dvi.gif .dvi +AddIcon /icons/uuencoded.gif .uu +AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl +AddIcon /icons/tex.gif .tex +AddIcon /icons/bomb.gif core + +AddIcon /icons/back.gif .. +AddIcon /icons/hand.right.gif README +AddIcon /icons/folder.gif ^^DIRECTORY^^ +AddIcon /icons/blank.gif ^^BLANKICON^^ + +# +# DefaultIcon is which icon to show for files which do not have an icon +# explicitly set. +# +DefaultIcon /icons/unknown.gif + +# +# AddDescription allows you to place a short description after a file in +# server-generated indexes. These are only displayed for FancyIndexed +# directories. +# Format: AddDescription "description" filename +# +#AddDescription "GZIP compressed document" .gz +#AddDescription "tar archive" .tar +#AddDescription "GZIP compressed tar archive" .tgz + +# +# ReadmeName is the name of the README file the server will look for by +# default, and append to directory listings. +# +# HeaderName is the name of a file which should be prepended to +# directory indexes. +ReadmeName README.html +HeaderName HEADER.html + +# +# IndexIgnore is a set of filenames which directory indexing should ignore +# and not include in the listing. Shell-style wildcarding is permitted. +# +IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t + +# +# DefaultLanguage and AddLanguage allows you to specify the language of +# a document. You can then use content negotiation to give a browser a +# file in a language the user can understand. +# +# Specify a default language. This means that all data +# going out without a specific language tag (see below) will +# be marked with this one. You probably do NOT want to set +# this unless you are sure it is correct for all cases. +# +# * It is generally better to not mark a page as +# * being a certain language than marking it with the wrong +# * language! +# +# DefaultLanguage nl +# +# Note 1: The suffix does not have to be the same as the language +# keyword --- those with documents in Polish (whose net-standard +# language code is pl) may wish to use "AddLanguage pl .po" to +# avoid the ambiguity with the common suffix for perl scripts. +# +# Note 2: The example entries below illustrate that in some cases +# the two character 'Language' abbreviation is not identical to +# the two character 'Country' code for its country, +# E.g. 'Danmark/dk' versus 'Danish/da'. +# +# Note 3: In the case of 'ltz' we violate the RFC by using a three char +# specifier. There is 'work in progress' to fix this and get +# the reference data for rfc1766 cleaned up. +# +# Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl) +# English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de) +# Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja) +# Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn) +# Norwegian (no) - Polish (pl) - Portugese (pt) +# Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv) +# Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW) +# +AddLanguage ca .ca +AddLanguage cs .cz .cs +AddLanguage da .dk +AddLanguage de .de +AddLanguage el .el +AddLanguage en .en +AddLanguage eo .eo +AddLanguage es .es +AddLanguage et .et +AddLanguage fr .fr +AddLanguage he .he +AddLanguage hr .hr +AddLanguage it .it +AddLanguage ja .ja +AddLanguage ko .ko +AddLanguage ltz .ltz +AddLanguage nl .nl +AddLanguage nn .nn +AddLanguage no .no +AddLanguage pl .po +AddLanguage pt .pt +AddLanguage pt-BR .pt-br +AddLanguage ru .ru +AddLanguage sv .sv +AddLanguage zh-CN .zh-cn +AddLanguage zh-TW .zh-tw + +# +# LanguagePriority allows you to give precedence to some languages +# in case of a tie during content negotiation. +# +# Just list the languages in decreasing order of preference. We have +# more or less alphabetized them here. You probably want to change this. +# +LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW + +# +# ForceLanguagePriority allows you to serve a result page rather than +# MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback) +# [in case no accepted languages matched the available variants] +# +ForceLanguagePriority Prefer Fallback + +# +# Specify a default charset for all content served; this enables +# interpretation of all content as UTF-8 by default. To use the +# default browser choice (ISO-8859-1), or to allow the META tags +# in HTML content to override this choice, comment out this +# directive: +# +AddDefaultCharset UTF-8 + +# +# AddType allows you to add to or override the MIME configuration +# file mime.types for specific file types. +# +#AddType application/x-tar .tgz + +# +# AddEncoding allows you to have certain browsers uncompress +# information on the fly. Note: Not all browsers support this. +# Despite the name similarity, the following Add* directives have nothing +# to do with the FancyIndexing customization directives above. +# +#AddEncoding x-compress .Z +#AddEncoding x-gzip .gz .tgz + +# If the AddEncoding directives above are commented-out, then you +# probably should define those extensions to indicate media types: +# +AddType application/x-compress .Z +AddType application/x-gzip .gz .tgz + +# +# MIME-types for downloading Certificates and CRLs +# +AddType application/x-x509-ca-cert .crt +AddType application/x-pkcs7-crl .crl + +# +# AddHandler allows you to map certain file extensions to "handlers": +# actions unrelated to filetype. These can be either built into the server +# or added with the Action directive (see below) +# +# To use CGI scripts outside of ScriptAliased directories: +# (You will also need to add "ExecCGI" to the "Options" directive.) +# +#AddHandler cgi-script .cgi + +# +# For files that include their own HTTP headers: +# +#AddHandler send-as-is asis + +# +# For type maps (negotiated resources): +# (This is enabled by default to allow the Apache "It Worked" page +# to be distributed in multiple languages.) +# +AddHandler type-map var + +# +# Filters allow you to process content before it is sent to the client. +# +# To parse .shtml files for server-side includes (SSI): +# (You will also need to add "Includes" to the "Options" directive.) +# +AddType text/html .shtml +AddOutputFilter INCLUDES .shtml + +# +# Action lets you define media types that will execute a script whenever +# a matching file is called. This eliminates the need for repeated URL +# pathnames for oft-used CGI file processors. +# Format: Action media/type /cgi-script/location +# Format: Action handler-name /cgi-script/location +# + +# +# Customizable error responses come in three flavors: +# 1) plain text 2) local redirects 3) external redirects +# +# Some examples: +#ErrorDocument 500 "The server made a boo boo." +#ErrorDocument 404 /missing.html +#ErrorDocument 404 "/cgi-bin/missing_handler.pl" +#ErrorDocument 402 http://www.example.com/subscription_info.html +# + +# +# Putting this all together, we can internationalize error responses. +# +# We use Alias to redirect any /error/HTTP_.html.var response to +# our collection of by-error message multi-language collections. We use +# includes to substitute the appropriate text. +# +# You can modify the messages' appearance without changing any of the +# default HTTP_.html.var files by adding the line: +# +# Alias /error/include/ "/your/include/path/" +# +# which allows you to create your own set of files by starting with the +# /var/www/error/include/ files and +# copying them to /your/include/path/, even on a per-VirtualHost basis. +# + +Alias /error/ "/var/www/error/" + + + + + AllowOverride None + Options IncludesNoExec + AddOutputFilter Includes html + AddHandler type-map var + Order allow,deny + Allow from all + LanguagePriority en es de fr + ForceLanguagePriority Prefer Fallback + + +# ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var +# ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var +# ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var +# ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var +# ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var +# ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var +# ErrorDocument 410 /error/HTTP_GONE.html.var +# ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var +# ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var +# ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var +# ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var +# ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var +# ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var +# ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var +# ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var +# ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var +# ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var + + + + +# +# The following directives modify normal HTTP response behavior to +# handle known problems with browser implementations. +# +BrowserMatch "Mozilla/2" nokeepalive +BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 +BrowserMatch "RealPlayer 4\.0" force-response-1.0 +BrowserMatch "Java/1\.0" force-response-1.0 +BrowserMatch "JDK/1\.0" force-response-1.0 + +# +# The following directive disables redirects on non-GET requests for +# a directory that does not include the trailing slash. This fixes a +# problem with Microsoft WebFolders which does not appropriately handle +# redirects for folders with DAV methods. +# Same deal with Apple's DAV filesystem and Gnome VFS support for DAV. +# +BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully +BrowserMatch "MS FrontPage" redirect-carefully +BrowserMatch "^WebDrive" redirect-carefully +BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully +BrowserMatch "^gnome-vfs/1.0" redirect-carefully +BrowserMatch "^XML Spy" redirect-carefully +BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully + +# +# Allow server status reports generated by mod_status, +# with the URL of http://servername/server-status +# Change the ".example.com" to match your domain to enable. +# +# +# SetHandler server-status +# Order deny,allow +# Deny from all +# Allow from .example.com +# + +# +# Allow remote server configuration reports, with the URL of +# http://servername/server-info (requires that mod_info.c be loaded). +# Change the ".example.com" to match your domain to enable. +# +# +# SetHandler server-info +# Order deny,allow +# Deny from all +# Allow from .example.com +# + +# +# Proxy Server directives. Uncomment the following lines to +# enable the proxy server: +# +# +#ProxyRequests On +# +# +# Order deny,allow +# Deny from all +# Allow from .example.com +# + +# +# Enable/disable the handling of HTTP/1.1 "Via:" headers. +# ("Full" adds the server version; "Block" removes all outgoing Via: headers) +# Set to one of: Off | On | Full | Block +# +#ProxyVia On + +# +# To enable a cache of proxied content, uncomment the following lines. +# See http://httpd.apache.org/docs/2.2/mod/mod_cache.html for more details. +# +# +# CacheEnable disk / +# CacheRoot "/var/cache/mod_proxy" +# +# + +# +# End of proxy directives. + +### Section 3: Virtual Hosts +# +# VirtualHost: If you want to maintain multiple domains/hostnames on your +# machine you can setup VirtualHost containers for them. Most configurations +# use only name-based virtual hosts so the server doesn't need to worry about +# IP addresses. This is indicated by the asterisks in the directives below. +# +# Please see the documentation at +# +# for further details before you try to setup virtual hosts. +# +# You may use the command line option '-S' to verify your virtual host +# configuration. + +# +# Use name-based virtual hosting. +# +#NameVirtualHost *:80 +# +# NOTE: NameVirtualHost cannot be used without a port specifier +# (e.g. :80) if mod_ssl is being used, due to the nature of the +# SSL protocol. +# + +# +# VirtualHost example: +# Almost any Apache directive may go into a VirtualHost container. +# The first VirtualHost section is used for requests without a known +# server name. +# +# +# ServerAdmin webmaster@dummy-host.example.com +# DocumentRoot /www/docs/dummy-host.example.com +# ServerName dummy-host.example.com +# ErrorLog logs/dummy-host.example.com-error_log +# CustomLog logs/dummy-host.example.com-access_log common +# + + + +#Added the edge_apache_conf file right here + + + ScriptAlias /edge_ui/cgi-bin/ /data/edge_v1.0/edge_ui/cgi-bin/ + + AllowOverride None + Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch + AddHandler cgi-script .cgi .pl + Order allow,deny + allow from all + + + + + Alias /edge_ui/ "/data/edge_v1.0/edge_ui/" + + Options Indexes FollowSymlinks + AllowOverride None + #Require all granted + + + + + ForceType application/octet-stream + Header set Content-Disposition attachment + + + + Options -Indexes + + + + Order allow,deny + Allow from all + + +# for user management tomcat server to be visible on port 80 +ProxyPass /userManagement http://localhost:8080/userManagement +ProxyPassReverse /userManagement http://localhost:8080/userManagement +ProxyPass /userManagementWS http://localhost:8080/userManagementWS +ProxyPassReverse /userManagementWS http://localhost:8080/userManagementWS + +#for JBrowse +AddType application/octet-stream .bam .bami + + + mod_gzip_item_exclude "(\.jsonz|\.txtz)" + + + SetEnvIf Request_URI "(\.jsonz|\.txtz)" no-gzip dont-vary + + + + Header onsuccess set Content-Encoding gzip + + + + + AllowOverride FileInfo + + + diff --git a/edge_ui/cgi-bin/batch_run_sra.pl b/edge_ui/cgi-bin/batch_run_sra.pl new file mode 100755 index 00000000..ca6426b9 --- /dev/null +++ b/edge_ui/cgi-bin/batch_run_sra.pl @@ -0,0 +1,153 @@ +#!/usr/bin/env perl + +use strict; +use FindBin qw($RealBin); +use POSIX qw(strftime); +use LWP::Simple; # from CPAN +use JSON qw( decode_json ); # from CPAN + + +if (!@ARGV){ print "$0 [ bsve_sra_tsv_dir | file | ebi ]\n"; exit;} + +my $date_string = strftime "%Y-%m-%d", localtime; +my $proxy = $ENV{HTTP_PROXY} || $ENV{http_proxy}; +$proxy = "--proxy $proxy " if ($proxy); + +my $file; +if ( -d $ARGV[0]){ + my $dir = $ARGV[0]; + $file= "$dir/bsve_$date_string.tsv"; +}elsif( -f $ARGV[0]){ + $file=$ARGV[0]; +}else{ + `mkdir -p $ENV{HOME}/sra_runs`; + $file = "$ENV{HOME}/sra_runs/bsve_$date_string.tsv"; + my $cmd = "/usr/bin/curl $proxy -o $file \"http://www.ebi.ac.uk/ena/data/warehouse/search?query=tax_tree(408169)%20AND%20first_public=$date_string%20AND%20library_strategy=WGS%20AND%20library_selection=RANDOM%20AND%20(library_source=GENOMIC%20OR%20library_source=METAGENOMIC)&result=read_run&fields=run_accession,sample_accession,study_accession,study_title,experiment_title,scientific_name,instrument_model,library_layout,base_count&limit=10000&display=report\" "; + print "Query ebi using REST URL ...\n"; + #print $cmd,"\n"; + system($cmd); +} + +if ( ! -e $file or -z $file){ + print "The $file not exist or empty\n"; +} + +open (my $fh,$file) or die "Cannot open $file. $!\n"; +while(<$fh>){ + chomp; + next if ($_ =~ /run_accession/); + next if ($_ =~ /^\s*$/); + my @array= split /\t/,$_; + my $sra_id = $array[0]; + my $study_id = $array[2]; + my $study = $array[3]; + my $experiment = $array[4]; + my $instrument = $array[6]; + my $projname = "bsve_$sra_id"; + my $projdesc = "$sra_id $study"; + $projdesc =~ s/(['"])/\\$1/g; + #$projdesc =~ s/\(/\\(/g; + #$projdesc =~ s/\)/\\)/g; + next if ( -d "$RealBin/../EDGE_output/$projname"); + + #get sample metadata from ebi by sample id + my $sample_id = $array[1]; + my $cmd = "mkdir -p $ENV{HOME}/sra_runs"; + system($cmd); + my $tmp = "$ENV{HOME}/sra_runs/bsve_metadata_tmp.txt"; + $cmd = "/usr/bin/curl $proxy -o $tmp \"http://www.ebi.ac.uk/ena/data/warehouse/search?query=accession=$sample_id&result=sample&fields=accession,collection_date,country,description,first_public,isolation_source,location,scientific_name,sample_alias,center_name,environment_material,host,host_status,host_sex&display=report\" "; + #print "$cmd\n"; + system($cmd); + open TMP, $tmp; + my $sequencer = $array[6]; + my ($sampleType, $host, $collectionDate, $city, $state, $country, $lat, $lng,$seqPlatform, $gender, $hostCondition, $source, $sampleName, $center, $seqDate, $location); + while() { + chomp; + next if($_ =~ /^accession/); + next if ($_ =~ /^\s*$/); + my @parts = split /\t/, $_; + $collectionDate = $parts[1]; + if($collectionDate =~ /\//) { + my @its = split /\//, $collectionDate; + $collectionDate = $its[1]; + } + $location = $parts[2]; + $country = $location; + if($country =~ /(.*):\s*(.*?),\s*(.*)\s*/) { + $country = $1; + $city = $2; + $state = $3; + } + if($country =~ /(.*):\s*(.*)\s*:\s*(.*)\s*/) { + $country = $1; + $city = $2; + } + elsif($country =~ /(.*):\s*(.*)\s*/) { + $country = $1; + $state= $2; + } + $sampleName = $parts[3]; + $sampleName = $parts[8] unless $sampleName; + $seqDate = $parts[4]; + if($seqDate =~ /\//) { + my @its = split /\//, $seqDate; + $seqDate = $its[1]; + } + $source = $parts[5]; + $source = $parts[10] unless $source; + my $latlng = $parts[6]; + $latlng =~ s/^\s+//; + my @its = split /\s+/, $latlng; + $lat = $its[0]; + $lng = $its[2]; + if($its[1] eq "S") { + $lat = -$lat; + } + if($its[3] eq "W") { + $lng = -$lng; + } + $host = $parts[11]; + $sampleType = "environmental"; + my $stype = lc $parts[7]; + if($stype =~ /human/ || lc($host) =~ /human/ || lc($host) =~ /homo/) { + $sampleType = "human"; + } + elsif($stype =~ /mouse|rat|pig|fish|ant|chicken|bee|frog/ || lc($host) =~ /mouse|rat|pig|fish|ant|chicken|bee|frog/) { + $sampleType = "animal"; + } + $center = $parts[9]; + $hostCondition = $parts[12]; + $gender = $parts[13]; + #get lat,lng from location + if(!$lat && !$lng && $location) { + ($lat,$lng) = getLatLong($location); + } + } + close TMP; + + chdir $RealBin; + $cmd = "$RealBin/edge_submit.cgi $projname $sra_id \"$projdesc\""; + $cmd .= " \"$sampleType\" \"$source\" \"$collectionDate\" \"$city\" \"$state\" \"$country\" \"$lat\" \"$lng\" \"$seqPlatform\" \"$sequencer\" \"$seqDate\" \"$host\" \"$hostCondition\" \"$gender\""; + $cmd .= " SRA \"$sra_id\" \"$study\" \"$sampleName\" \"$experiment\" \"$location\" \"$instrument\" \"$center\" \"$study_id\""; + print $cmd,"\n"; + system($cmd); +} +close $fh; + + +################# +sub getLatLong($){ + my ($address) = @_; + my $format = "json"; #can also to 'xml' + my $geocodeapi = "https://maps.googleapis.com/maps/api/geocode/"; + my $url = $geocodeapi . $format . "?address=" . $address; + my $json = get($url); + my $d_json = decode_json( $json ); + + my $lat = $d_json->{results}->[0]->{geometry}->{location}->{lat}; + my $lng = $d_json->{results}->[0]->{geometry}->{location}->{lng}; + + return ($lat, $lng); +} + +1; diff --git a/edge_ui/cgi-bin/edge_action.cgi b/edge_ui/cgi-bin/edge_action.cgi index 7e31ab68..f606fb4d 100755 --- a/edge_ui/cgi-bin/edge_action.cgi +++ b/edge_ui/cgi-bin/edge_action.cgi @@ -16,19 +16,35 @@ use HTTP::Request::Common; use POSIX qw(strftime); use Data::Dumper; use Digest::MD5 qw(md5_hex); +use Tie::File; + require "edge_user_session.cgi"; +require "../cluster/clusterWrapper.pl"; +##sample metadata +require "../metadata_scripts/metadata_api.pl"; +#END my $cgi = CGI->new; my %opt = $cgi->Vars(); my $pname = $opt{proj}; my $username = $opt{username}; my $password = $opt{password}; +my $new_proj_name = $opt{rename_project}; #getting project name input value from edge.js +my $new_proj_desc = $opt{project_description}; #getting project description input value from edge.js my $action = lc($opt{action}); my $shareEmail = $opt{shareEmail}; my $userType = $opt{userType}||"user"; my $protocol = $opt{protocol}||"http:"; my $sid = $opt{sid}; -my $domain = $ENV{'HTTP_HOST'}; +my $taxa_for_contig_extract = $opt{taxa}; +my $cptool_for_reads_extract = $opt{cptool}; +my $contig_id = $opt{contigID}; +my $blast_params = $opt{"edge-contig-blast-params"} || " -num_alignments 10 -num_descriptions 10 -evalue 1e-10 " ; +my $domain = $ENV{'HTTP_HOST'}|| 'edge-bsve.lanl.gov'; +my ($webhostname) = $domain =~ /^(\S+?)\./; +my $EDGE_HOME = $ENV{EDGE_HOME}; +$EDGE_HOME ||= "$RealBin/../.."; +$ENV{PATH} = "$EDGE_HOME/bin:$ENV{PATH}"; $pname ||= $ARGV[0]; $action ||= $ARGV[1]; @@ -37,38 +53,66 @@ $password ||= $ARGV[3]; $shareEmail ||= $ARGV[4]; $sid ||= $ARGV[5]; $domain ||= $ARGV[6]; +my $umSystemStatus = $ARGV[7]; -# read system params from config template -my $config_tmpl = "$RealBin/edge_config.tmpl"; -my $sys = &getSysParamFromConfig($config_tmpl); +# read system params from sys.properties +my $sysconfig = "$RealBin/../sys.properties"; +my $sys = &getSysParamFromConfig($sysconfig); +$sys->{edgeui_output} = "$sys->{edgeui_output}"."/$webhostname" if ( -d "$sys->{edgeui_output}/$webhostname"); +$sys->{edgeui_input} = "$sys->{edgeui_input}"."/$webhostname" if ( -d "$sys->{edgeui_input}/$webhostname"); my $out_dir = $sys->{edgeui_output}; my $input_dir = $sys->{edgeui_input}; +my $www_root = $sys->{edgeui_wwwroot}; my $um_url = $sys->{edge_user_management_url}; +my $keep_days = $sys->{edgeui_proj_store_days}; $domain ||= "edgeset.lanl.gov"; $um_url ||= "$protocol//$domain/userManagement"; $out_dir ||= "/tmp"; #for security +$umSystemStatus ||= $sys->{user_management} if (! @ARGV); my $info; my $proj_dir = abs_path("$out_dir/$pname"); my $list; my $permission; +#cluster +my $cluster = $sys->{cluster}; +my $cluster_job_prefix = $sys->{cluster_job_prefix}; +my $cluster_qsub_options= $sys->{cluster_qsub_options}; + #check projects vital -my ($vital, $name2pid) = &checkProjVital(); +my ($vital, $name2pid, $error); +if($cluster) { + ($vital, $name2pid, $error) = checkProjVital_cluster($cluster_job_prefix); + if($error) { + $info->{INFO} = "ERROR: $error"; + } +} else { + ($vital, $name2pid) = &checkProjVital(); +} + + my $time = strftime "%F %X", localtime; +my ($memUsage, $cpuUsage, $diskUsage) = &getSystemUsage(); $info->{STATUS} = "FAILURE"; #$info->{INFO} = "Project $pname not found."; - +if ( ($memUsage > 99 or $cpuUsage > 99) and $action ne 'interrupt' and !$cluster){ + $info->{INFO} = "No enough CPU/MEM resource to perform action. Please wait or contact system administrator."; + &returnStatus(); +} #session check my $real_name = $pname; -my $user_proj_dir; -if ( $sys->{user_management} ) +my $projCode; +my $projStatus; +my @projCodes = split /,/,$opt{proj} if ($action eq 'compare'); +my $user_proj_dir = "$input_dir/tmp"; +if ( $umSystemStatus ) { my $valid = verifySession($sid); unless($valid){ $info->{INFO} = "ERROR: Invalid session found."; - &returnStatus(); + &returnStatus() if (!@ARGV); } else{ ($username,$password) = getCredentialsFromSession($sid); @@ -76,8 +120,8 @@ if ( $sys->{user_management} ) $list = &getUserProjFromDB("owner"); - $real_name=getProjNameFromDB($pname); - + ($real_name,$projCode,$projStatus)= &getProjNameFromDB($pname) if ($action ne 'compare'); + $user_proj_dir = "$input_dir/". md5_hex($username)."/MyProjects/$real_name"."_".$pname; #separate permission for future uses. A permission module can be added potentially.. if( defined $list->{$pname} || $userType =~ /admin/){ @@ -91,8 +135,23 @@ if ( $sys->{user_management} ) $permission->{unshare} = 1; $permission->{publish} = 1; $permission->{unpublish} = 1; + $permission->{tarproj} = 1; + $permission->{getcontigbytaxa} = 1; + $permission->{getreadsbytaxa} = 1; + $permission->{metadata} = 1; } #print STDERR "User: $username; Sid: $sid; Valid: $valid; Pname: $pname; Realname: $real_name; List:",Dumper($list),"\n"; +}else{ + ($real_name,$projCode,$projStatus)= &scanProjToList($out_dir,$pname) if ($action ne 'compare'); + if (!$real_name){ + $info->{INFO} = "ERROR: No project with ID $pname."; + &returnStatus(); + } +} + $proj_dir = abs_path("$out_dir/$projCode") if ( -d "$out_dir/$projCode"); + +if ($action eq 'rename' ){ + renameProject(); } if( $action eq 'empty' ){ @@ -101,7 +160,7 @@ if( $action eq 'empty' ){ &returnStatus(); } - if( $name2pid->{$pname} ){ + if( $name2pid->{$pname} || $name2pid->{$projCode}){ $info->{INFO} = "ERROR: Project $real_name is running."; &returnStatus(); } @@ -111,6 +170,7 @@ if( $action eq 'empty' ){ while( defined (my $file = readdir BIN) ) { next if $file eq '.' or $file eq '..'; `rm -rf $proj_dir/$file` if -d "$proj_dir/$file"; + `rm -f $proj_dir/\.run*`; } closedir(BIN); @@ -168,26 +228,35 @@ elsif( $action eq 'delete' ){ $info->{STATUS} = "FAILURE"; $info->{INFO} = "Failed to delete the output directory."; - my $pid = $name2pid->{$pname}; + my $pid = $name2pid->{$pname} || $name2pid->{$projCode}; if( $pid ){ - my $invalid = &killProcess($pid); - if( $invalid ){ - $info->{INFO} = "Failed to kill the running process. (PID: $pid)"; + my $invalid; + if($cluster) { + $invalid = clusterDeleteJob($pid); + if( $invalid ){ + $info->{INFO} = "Failed to kill the running cluster job. (Job ID: $pid)"; + } + } else { + $invalid = &killProcess($pid); + if( $invalid ){ + $info->{INFO} = "Failed to kill the running process. (PID: $pid)"; + } } } - `rm -rf $proj_dir`; - `rm -rf $out_dir/$pname`; - if( !-e $proj_dir && !-e "$out_dir/$pname" ){ - $info->{STATUS} = "SUCCESS"; - $info->{INFO} = "Project $real_name has been deleted."; - } if ($username && $password){ &updateDBProjectStatus($pname,"delete"); `rm -f $user_proj_dir`; `rm -f $input_dir/public/projects/${real_name}_$pname`; `rm -f $input_dir/*/SharedProjects/${real_name}_$pname`; } + `rm -rf $proj_dir`; + `rm -rf $out_dir/$pname`; + `rm -f $input_dir/../JBrowse/data/$pname $input_dir/../JBrowse/data/$projCode`; + if( !-e $proj_dir && !-e "$out_dir/$pname" ){ + $info->{STATUS} = "SUCCESS"; + $info->{INFO} = "Project $real_name has been deleted."; + } } else{ @@ -204,14 +273,24 @@ elsif( $action eq 'interrupt' ){ $info->{STATUS} = "FAILURE"; $info->{INFO} = "Failed to stop EDGE process."; - my $pid = $name2pid->{$pname}; + my $pid = $name2pid->{$pname} || $name2pid->{$projCode} || $projStatus eq "unstarted"; if( $pid ){ - my $invalid = &killProcess($pid); - if( !$invalid ){ - `echo "\n*** [$time] EDGE_UI: This project has been interrupted. ***" |tee -a $proj_dir/process.log >> $proj_dir/process_current.log`; - $info->{STATUS} = "SUCCESS"; - $info->{INFO} = "The process (PID: $pid) has been stopped."; + my $invalid; + if($cluster) { + $invalid = clusterDeleteJob($pid); + if( !$invalid ){ + `echo "\n*** [$time] EDGE_UI: This project has been interrupted. ***" |tee -a $proj_dir/process.log >> $proj_dir/process_current.log`; + $info->{STATUS} = "SUCCESS"; + $info->{INFO} = "The cluster job (JOB ID: $pid) has been stopped."; + } + } else { + $invalid = &killProcess($pid); + if( !$invalid || $projStatus eq "unstarted"){ + `echo "\n*** [$time] EDGE_UI: This project has been interrupted. ***" |tee -a $proj_dir/process.log >> $proj_dir/process_current.log`; + $info->{STATUS} = "SUCCESS"; + $info->{INFO} = "The process (PID: $pid) has been stopped."; + } } } else{ @@ -219,7 +298,7 @@ elsif( $action eq 'interrupt' ){ } } elsif( $action eq 'rerun' ){ - if( $sys->{user_management} && !$permission->{$action} ){ + if( $umSystemStatus && !$permission->{$action} ){ $info->{INFO} = "ERROR: Permission denied. Only project owner can perform this action."; &returnStatus(); } @@ -227,45 +306,72 @@ elsif( $action eq 'rerun' ){ $info->{STATUS} = "FAILURE"; $info->{INFO} = "Failed to rerun project $real_name."; - my $pid = $name2pid->{$pname}; + if( -e "$proj_dir/config.txt.bak"){ + cleanProjectForNewConfig(); + } + + my $pid = $name2pid->{$pname} || $name2pid->{$projCode}; if( ! defined $pid ){ - my $cmd = ""; - open LOG, "$proj_dir/process.log" or die "Can't open process log:$!."; - foreach(){ - chomp; - if( /runPipeline -c / ){ - $cmd = $_; + if($cluster) { + my $cluster_job_script = "$proj_dir/clusterSubmit.sh"; + if(!-e $cluster_job_script) { + $info->{INFO} = "Failed to restart this project. File $cluster_job_script not found."; + } else { + &updateDBProjectStatus($pname,"running") if ($username && $password); + my ($job_id,$error) = clusterSubmitJob($cluster_job_script,$cluster_qsub_options); + if($error) { + $info->{INFO} = "Failed to restart this project: $error"; + } else { + $info->{STATUS} = "SUCCESS"; + $info->{INFO} = "Project $real_name has been restarted (JOB ID: $job_id)."; + $info->{PID} = $job_id; + `echo "\n*** [$time] EDGE_UI: This project has been restarted. (unstarted) ***" |tee -a $proj_dir/process.log >> $proj_dir/process_current.log`; + } } - } - close LOG; - my ($numcpu) = $cmd =~ /-cpu (\d+)/; - my $run = &availableToRun($numcpu); - if (!$run){ - my $time = strftime "%F %X", localtime; - `echo "\n*** [$time] EDGE_UI: This project is queued. ***" |tee -a $proj_dir/process.log >> $proj_dir/process_current.log`; - `echo "$cmd" >> $proj_dir/process.log`; - `echo "\n*** [$time] EDGE_UI: Project unstarted ***" >> $proj_dir/process.log`; - $info->{INFO} = "The server does not have enough CPU available to run this job. The job is queued"; - &returnStatus(); - } - if( $cmd ){ - chdir($proj_dir); - my $newpid = open RUNPIPLINE, "-|", "$cmd > $proj_dir/process_current.log 2>&1 &" or die $!; - close RUNPIPLINE; - if( $newpid ){ - $newpid++; - $info->{STATUS} = "SUCCESS"; - $info->{INFO} = "Project $real_name has been restarted (PID: $newpid)."; - $info->{PID} = $newpid; + } else { + my $cmd = ""; + open LOG, "$proj_dir/process.log" or die "Can't open process log:$!."; + foreach(){ + chomp; + if( /runPipeline -c / ){ + $cmd = $_; + } + } + close LOG; + my ($numcpu) = $cmd =~ /-cpu (\d+)/; + my $run = &availableToRun($numcpu); + if (!$run){ + my $time = strftime "%F %X", localtime; + `echo "\n*** [$time] EDGE_UI: This project is queued. ***" |tee -a $proj_dir/process.log >> $proj_dir/process_current.log`; + `echo "$cmd" >> $proj_dir/process.log`; + `echo "\n*** [$time] EDGE_UI: Project unstarted ***" >> $proj_dir/process.log`; + $info->{INFO} = "The server does not have enough CPU available to run this job. The job is queued"; + &updateDBProjectStatus($pname,"unstarted") if ($username && $password); + &returnStatus(); + } + if( $cmd ){ + chdir($proj_dir); + #remove cached report/status + #`rm -f $proj_dir/.run.complete.status.json`; + `rm -f $proj_dir/HTML_Report/.complete_report_web`; + my $newpid = open RUNPIPLINE, "-|", "$cmd > $proj_dir/process_current.log 2>&1 &" or die $!; + close RUNPIPLINE; + if( $newpid ){ + $newpid++; + $info->{STATUS} = "SUCCESS"; + $info->{INFO} = "Project $real_name has been restarted (PID: $newpid)."; + $info->{PID} = $newpid; + &updateDBProjectStatus($pname,"running") if ($username && $password); + } + else{ + $info->{INFO} = "Failed to restart this project."; + } } else{ - $info->{INFO} = "Failed to restart this project."; + $info->{INFO} = "Failed to restart this project. No runPipeline command found."; } } - else{ - $info->{INFO} = "Failed to restart this project. No runPipeline command found."; - } } else{ $info->{INFO} = "Project $real_name can't be restarted because it's still running (PID: $pid)."; @@ -305,33 +411,294 @@ elsif( $action eq 'archive' ){ $info->{INFO} = "Start archiving project $real_name."; } if ($username && $password){ - &updateDBProjectStatus($pname,"archive"); + &updateDBProjectStatus($pname,"archived"); `rm -f $user_proj_dir`; `rm -f $input_dir/public/projects/${real_name}_$pname`; `rm -f $input_dir/*/SharedProjects/${real_name}_$pname`; } } } +elsif( $action eq 'tarproj'){ + if( $sys->{user_management} && !$permission->{$action} ){ + $info->{INFO} = "ERROR: Permission denied. Only project owner can perform this action."; + &returnStatus(); + } + + my $tarFile = "$proj_dir/$real_name.tgz"; + my $tarDir = "$proj_dir"; + if ($username && $password){ + $tarFile = "$proj_dir/${real_name}_$pname.tgz"; + $tarDir = "$out_dir/${real_name}_$pname"; + } + $tarDir =~ s/$out_dir//; + $tarDir =~ s/^\///; + (my $tarLink = $tarFile ) =~ s/$www_root//; + $tarLink =~ s/^\///; + $info->{STATUS} = "FAILURE"; + $info->{INFO} = "Failed to tar project $real_name $tarLink"; + chdir $out_dir; + if ( ! -e "$proj_dir/.tarfinished" || ! -e $tarLink){ + `ln -s $proj_dir $tarDir` if ($username && $password); + my $cmd = "tar --exclude=\"*gz\" --exclude=\"*.sam\" --exclude=\"*.bam\" --exclude=\"*.fastq\" -cvzf $tarFile $tarDir/* ; touch $proj_dir/.tarfinished "; + my $pid; + if (@ARGV){ + $pid=`$cmd`; + }else{ + $pid = open TARPROJ, "-|", $cmd or die $!; + close TARPROJ; + $pid++; + } + if( $pid ){ + unlink $tarDir if ($username && $password); + $info->{STATUS} = "SUCCESS"; + $info->{INFO} = "$real_name compressed file is ready to "; + $info->{LINK} = "download"; + }else{ + $info->{INFO} = "Project $real_name tar file existed"; + } + } +} +elsif( $action eq 'getcontigbytaxa'){ + if( $sys->{user_management} && !$permission->{$action} ){ + $info->{INFO} = "ERROR: Permission denied. Only project owner can perform this action."; + &returnStatus(); + } + my $assemble_outdir="$proj_dir/AssemblyBasedAnalysis"; + my $taxa_outdir="$assemble_outdir/Taxonomy"; + (my $relative_taxa_outdir=$taxa_outdir) =~ s/$www_root//; + (my $out_fasta_name = $taxa_for_contig_extract) =~ s/[ .']/_/; + $out_fasta_name = "$real_name"."_"."$out_fasta_name.fasta"; + my $cmd = "$EDGE_HOME/scripts/contig_classifier_by_bwa/extract_fasta_by_taxa.pl -fasta $assemble_outdir/${real_name}_contigs.fa -csv $taxa_outdir/$real_name.ctg_class.top.csv -taxa \"$taxa_for_contig_extract\" -rank genus > $taxa_outdir/$out_fasta_name"; + $info->{STATUS} = "FAILURE"; + $info->{INFO} = "Failed to extract $taxa_for_contig_extract contig fasta"; + + if ( -s "$taxa_outdir/$out_fasta_name.fasta"){ + $info->{STATUS} = "SUCCESS"; + $info->{PATH} = "$relative_taxa_outdir/$out_fasta_name"; + }else{ + my $pid = open EXTRACTCONTIG, "-|", $cmd or die $!; + close EXTRACTCONTIG; + $pid++; + + if( $pid ){ + $info->{STATUS} = "SUCCESS"; + $info->{PATH} = "$relative_taxa_outdir/$out_fasta_name"; + } + } +} +elsif( $action eq 'getreadsbytaxa'){ + if( $sys->{user_management} && !$permission->{$action} ){ + $info->{INFO} = "ERROR: Permission denied. Only project owner can perform this action."; + &returnStatus(); + } + my $read_type="allReads"; + my $reads_fastq="$proj_dir/ReadsBasedAnalysis/Taxonomy/$read_type.fastq"; + my $readstaxa_outdir="$proj_dir/ReadsBasedAnalysis/Taxonomy/report/1_$read_type/$cptool_for_reads_extract"; + + if ( -e "$proj_dir/ReadsBasedAnalysis/UnmappedReads/Taxonomy"){ + $read_type="UnmappedReads"; + $reads_fastq="$proj_dir/ReadsBasedAnalysis/$read_type/Taxonomy/$read_type.fastq"; + $readstaxa_outdir="$proj_dir/ReadsBasedAnalysis/$read_type/Taxonomy/report/1_$read_type/$cptool_for_reads_extract"; + + } + (my $relative_taxa_outdir=$readstaxa_outdir) =~ s/$www_root//; + (my $out_fasta_name = $taxa_for_contig_extract) =~ s/[ .']/_/g; + my $extract_from_original_fastq = ($cptool_for_reads_extract =~ /gottcha/i)? " -fastq $reads_fastq " : ""; + $out_fasta_name = "$real_name"."_"."$cptool_for_reads_extract"."_"."$out_fasta_name"; + my $cmd = "$EDGE_HOME/scripts/microbial_profiling/script/bam_to_fastq_by_taxa.pl -rank species -name \"$taxa_for_contig_extract\" -prefix $readstaxa_outdir/$out_fasta_name -se -zip $extract_from_original_fastq $readstaxa_outdir/${read_type}-$cptool_for_reads_extract.bam 1>>$readstaxa_outdir/ReadsExtractLog.txt"; + #GOTTCHA2 Only + if( $cptool_for_reads_extract =~ /gottcha2/i ){ + $cmd = "$EDGE_HOME/thirdParty/gottcha2/gottcha.py -s $readstaxa_outdir/*.sam -m extract -x $taxa_for_contig_extract -c > $readstaxa_outdir/$out_fasta_name.fastq; cd $readstaxa_outdir; zip $out_fasta_name.fastq.zip $out_fasta_name.fastq; rm $out_fasta_name.fastq"; + } + $info->{STATUS} = "FAILURE"; + $info->{INFO} = "Failed to extract $taxa_for_contig_extract reads fastq"; + + if ( -s "$readstaxa_outdir/$out_fasta_name.fastq.zip"){ + $info->{STATUS} = "SUCCESS"; + $info->{PATH} = "$relative_taxa_outdir/$out_fasta_name.fastq.zip"; + }elsif ( ! -e "$readstaxa_outdir/${read_type}-$cptool_for_reads_extract.bam" && ! glob("$readstaxa_outdir/*.sam") ){ + $info->{INFO} = "The result bam does not exist."; + $info->{INFO} .= "If the project is older than $keep_days days, it has been deleted." if ($keep_days); + }else + { + my $pid = open EXTRACTREADS, "-|", $cmd or die $!; + close EXTRACTREADS; + $pid++; + + if( $pid ){ + $info->{STATUS} = "SUCCESS"; + $info->{PATH} = "$relative_taxa_outdir/$out_fasta_name.fastq.zip"; + } + } +} elsif( $action eq 'share' || $action eq 'unshare' ){ if( $sys->{user_management} && !$permission->{$action} ){ $info->{INFO} = "ERROR: Permission denied. Only project owner can perform this action."; &returnStatus(); } - &shareProject($pname,$shareEmail,$action); + &shareProject($pname,$proj_dir,$shareEmail,$action); + my $owner = $list->{$pname}->{OWNER}; + if ($action eq 'share'){ + my $msg = "$owner has shared EDGE project $real_name to you. You can login to $protocol//$domain/edge_ui/ and see the project. Or click link below.\n\n $protocol//$domain/edge_ui/?proj=$projCode\n"; + my $subject = "EDGE project $real_name"; + &sendMail($username,$shareEmail,$subject,$msg); + } } elsif( $action eq 'publish' || $action eq 'unpublish'){ - print STDERR "USERMANAGMENT: $sys->{user_management}; $action: $permission->{$action}"; + #print STDERR "USERMANAGMENT: $sys->{user_management}; $action: $permission->{$action}"; if( $sys->{user_management} && !$permission->{$action} ){ $info->{INFO} = "ERROR: Permission denied. Only project owner can perform this action."; &returnStatus(); } &publishProject($pname,$action); my $public_proj_dir = "$input_dir/public/projects/${real_name}_$pname"; - `ln -sf $out_dir/$pname $public_proj_dir` if ($action eq 'publish' && ! -e "$public_proj_dir"); + `ln -sf $proj_dir $public_proj_dir` if ($action eq 'publish' && ! -e "$public_proj_dir"); `rm -f $public_proj_dir` if ($action eq 'unpublish'); } +elsif( $action eq 'compare'){ + my $compare_out_dir = "$out_dir/ProjectComparison/". md5_hex(join ('',@projCodes)); + my $projects = join(",",map { "$out_dir/$_" } @projCodes); + (my $relative_outdir=$compare_out_dir) =~ s/$www_root//; + $info->{PATH} = "$relative_outdir/compare_project.html"; + $info->{INFO} = "The comparison result is available here"; + if ( -s "$compare_out_dir/compare_project.html"){ + $info->{STATUS} = "SUCCESS"; + }else{ + my $cmd = "$EDGE_HOME/scripts/compare_projects/compare_projects.pl -out_dir $compare_out_dir -projects $projects"; + my $pid = open COMPARE, "-|", $cmd or die $!; + close COMPARE; + $pid++; + if( $pid ){ + my $err = `grep "No Taxonomy Classification" $compare_out_dir/log.txt`; + if ($err){ + $info->{INFO} = "Error: $err"; + `rm -rf $compare_out_dir`; + &returnStatus(); + }else{ + $info->{STATUS} = "SUCCESS"; + } + } + } +}elsif($action eq 'contigblast'){ + my $blast_out_dir="$proj_dir/AssemblyBasedAnalysis/ContigBlast"; + my $contig_file="$proj_dir/AssemblyBasedAnalysis/${real_name}_contigs.fa"; + my $nt_db="$EDGE_HOME/database/nt/nt"; + my $cpu = `grep -a "cpu=" $proj_dir/config.txt | awk -F"=" '{print \$2}'`; + chomp $cpu; + $blast_params =~ s/-num_threads\s+\d+//; + `mkdir -p $blast_out_dir`; + (my $relative_outdir=$blast_out_dir) =~ s/$www_root//; + $info->{PATH} = "$relative_outdir/$contig_id.blastNT.html"; + $info->{INFO} = "The comparison result is available here"; + if ( -s "$blast_out_dir/$contig_id.blastNT.html"){ + $info->{STATUS} = "SUCCESS"; + }else{ + my $cmd = "$EDGE_HOME/scripts/get_seqs.pl $contig_id $contig_file | blastn -query - -db $nt_db $blast_params -out $blast_out_dir/$contig_id.blastNT.html -num_threads $cpu -html "; + + my $pid = open BLAST, "-|", $cmd or die $!; + close BLAST; + + if( $pid ){ + #parent + $pid++; + $info->{STATUS} = "SUCCESS"; + }else{ + #child + close STDOUT; + } + } +}elsif( $action eq 'metadata-delete' ){ +##sample metatdata + $info->{STATUS} = "SUCCESS"; + $info->{INFO} = "Project $real_name sample metadata has been deleted."; + my $metadata = "$proj_dir/sample_metadata.txt"; + if( -e $metadata ){ + if(-w $metadata) { + my $bsveId = `grep -a "bsve_id=" $metadata | awk -F'=' '{print \$2}'`; + chomp $bsveId; + `rm -f $metadata`; + if($bsveId) {#keep bsve_id + open OUT, ">$metadata"; + print OUT "bsve_id=$bsveId"."\n"; + close OUT; + } + } else { + $info->{STATUS} = "FAILURE"; + $info->{INFO} = "Failed to delete the sample metadata."; + } + } +} elsif($action eq 'metadata-bsveadd') { + if( $sys->{user_management} && !$permission->{metadata} ){ + $info->{INFO} = "ERROR: Permission denied. Only project owner can perform this action."; + &returnStatus(); + } + if(pushSampleMetadata("add", $proj_dir, $sys)) { + $info->{STATUS} = "SUCCESS"; + $info->{INFO} = "Project $real_name sample metadata has been submitted to the BSVE server."; + } else { + $info->{STATUS} = "FAILURE"; + $info->{INFO} = "Failed to submit the sample metadata to the BSVE server"; + } + +} elsif($action eq 'metadata-bsveupdate') { + if(pushSampleMetadata("update", $proj_dir, $sys)) { + $info->{STATUS} = "SUCCESS"; + $info->{INFO} = "Project $real_name sample metadata has been updated in the BSVE server."; + } else { + $info->{STATUS} = "FAILURE"; + $info->{INFO} = "Failed to update the sample metadata in the BSVE server"; + } + +} elsif($action eq 'metadata-bsvedelete') { + if(pushSampleMetadata( "delete", $proj_dir, $sys)) { + $info->{STATUS} = "SUCCESS"; + $info->{INFO} = "Project $real_name sample metadata has been deleted from the BSVE server."; + } else { + $info->{STATUS} = "FAILURE"; + $info->{INFO} = "Failed to delete the sample metadata from the BSVE server."; + } +} +#END sample metadata +elsif($action eq 'define-gap-depth'){ + my $gap_depth_cutoff = ($opt{"gap-depth-cutoff"})? $opt{"gap-depth-cutoff"}:0; + my $gap_out_dir="$proj_dir/ReferenceBasedAnalysis/readsMappingToRef"; + my $gap_outfile="$gap_out_dir/readsToRef_d$gap_depth_cutoff.gaps"; + my $gff_file="$proj_dir/Reference/reference.gff"; + my $gap_analysisOutfile="$gap_out_dir/Gap_d${gap_depth_cutoff}VSReference.report.txt"; + my $gap_analysisOutfile_json="$gap_out_dir/Gap_d${gap_depth_cutoff}VSReference.report.json"; + (my $relative_gap_out_dir=$gap_out_dir) =~ s/$www_root//; + + if ( $gap_depth_cutoff == 0 ){ + $info->{STATUS} = "SUCCESS"; + $info->{PATH} = "$relative_gap_out_dir/GapVSReference.report.json"; + &returnStatus(); + } + if ( -s $gap_analysisOutfile_json){ + $info->{STATUS} = "SUCCESS"; + $info->{PATH} = "$relative_gap_out_dir/Gap_d${gap_depth_cutoff}VSReference.report.json"; + &returnStatus(); + } + my $cmd; + unless ( -s $gap_outfile){ + opendir( my $dh, $gap_out_dir); + my @coverage_file = grep { /coverage$/ && -f "$gap_out_dir/$_" } readdir($dh); + closedir $dh; + foreach my $file(@coverage_file){ + $cmd .= "$EDGE_HOME/scripts/gap_count.pl $gap_out_dir/$file $gap_depth_cutoff >> $gap_outfile ;"; + } + } + $cmd .= "$EDGE_HOME/scripts/gap_analysis.pl -gff $gff_file -gap $gap_outfile > $gap_analysisOutfile;"; + $cmd .= "$EDGE_HOME/scripts/tab2Json_for_dataTable.pl -project_dir $proj_dir -limit 0 -mode ref_gap $gap_analysisOutfile > $gap_analysisOutfile_json"; + my $pid = open GAP, "-|",$cmd or die $!; + close GAP; + if( $pid ){ + $pid++; + $info->{STATUS} = "SUCCESS"; + $info->{PATH} = "$relative_gap_out_dir/Gap_d${gap_depth_cutoff}VSReference.report.json"; + } +} &returnStatus(); ###################################################### @@ -378,18 +745,19 @@ sub checkProjVital { } sub availableToRun { - my $num_cpu = shift; - my $cpu_been_used = 0; - return 0 if ($num_cpu > $sys->{edgeui_tol_cpu}); - if( $sys->{edgeui_auto_queue} && $sys->{edgeui_tol_cpu} ){ - foreach my $pid ( keys %$vital ){ - $cpu_been_used += $vital->{$pid}->{CPU}; - return 0 if (($cpu_been_used + $num_cpu) > $sys->{edgeui_tol_cpu}); - } - } - return 1; + my $num_cpu = shift; + my $cpu_been_used = 0; + if( $sys->{edgeui_auto_queue} && $sys->{edgeui_tol_cpu} ){ + foreach my $pid ( keys %$vital ){ + $cpu_been_used += $vital->{$pid}->{CPU}; + return 0 if (($cpu_been_used + $num_cpu) > $sys->{edgeui_tol_cpu}); + } + return 0 if ($num_cpu > $sys->{edgeui_tol_cpu}); + } + return 1; } + sub returnStatus { my $json = "{}"; $json = to_json($info) if $info; @@ -427,10 +795,50 @@ sub getProjNameFromDB{ $info->{INFO} .= $result->{error_msg}."\n";; } else{ - return $result->{name}; + return ($result->{name} , $result->{code}, $result->{status}); } } +sub renameProject{ + my $project_name = $new_proj_name; + my $project_description = $new_proj_desc; + my $pnameID = $pname; + #adjust txt files. (config.txt and process.log ) + my $config_file = $proj_dir."/config.txt"; + tie my @array, 'Tie::File', $config_file or die; + + my %data = ( + email => $username, + password => $password, + project_id => $pnameID, + new_project_name => $project_name, + new_description => $project_description, + ); + + #Encode the data structure to JSON + # #interacts with the java api to access the sql DB tables + my $data = to_json(\%data); + #w Set the request parameters + my $url = $um_url ."WS/project/update"; + my $browser = LWP::UserAgent->new; + my $req = PUT $url; + $req->header('Content-Type' => 'application/json'); + $req->header('Accept' => 'application/json'); + #must set this, otherwise, will get 'Content-Length header value was wrong, fixed at...' warning + $req->header( "Content-Length" => length($data) ); + $req->content($data); + + my $response = $browser->request($req); + my $result_json = $response->decoded_content; + my $result = from_json($result_json); + + if ($result->{status}) + { + $info->{STATUS} = "SUCCESS"; + $info->{INFO} .= " Project has been ${action}d to $project_name."; + } +} + sub updateDBProjectStatus{ my $project = shift; my $status = shift; @@ -461,8 +869,28 @@ sub updateDBProjectStatus{ } } +sub sendMail{ + my $sender=shift; + my $recipients=shift; + my $subject=shift; + my $msg=shift; + $recipients =~ s/ //g; + $recipients = join(',', grep (!/$sender/, split(',',$recipients))); + if (`which sendmail`){ + open(MAIL, "|sendmail -t") or die "$!\n"; + print MAIL "To: $recipients\n"; + print MAIL "From: $sender\n"; + print MAIL "Subject: $subject\n\n"; + # print MAIL "Content-Type: text/html; charset=ISO-8859-1\n"; + # print MAIL "Content-Disposition: inline\n"; + print MAIL "$msg"; + close MAIL; + } +} + sub shareProject{ my $project=shift; + my $proj_dir=shift; my $email=shift; my $action =shift; $email =~ s/ //g; @@ -498,7 +926,7 @@ sub shareProject{ my $shared_proj_dir = "$user_dir/SharedProjects/${real_name}_$project"; if ( $action eq "share"){ `mkdir -p $user_dir/SharedProjects`; - `ln -sf $out_dir/$project $shared_proj_dir` if (!-e $shared_proj_dir); + `ln -sf $proj_dir $shared_proj_dir` if (!-e $shared_proj_dir); }else{# unshare `rm -f $shared_proj_dir` if ( -e $shared_proj_dir); } @@ -593,16 +1021,128 @@ sub getUserProjFromDB{ { my $id = $hash_ref->{id}; my $project_name = $hash_ref->{name}; + my $projCode = $hash_ref->{code}; my $status = $hash_ref->{status}; next if ($status =~ /delete/i); - next if (! -r "$out_dir/$id/process.log"); + next if (! -r "$out_dir/$id/process.log" && ! -r "$out_dir/$projCode/process.log"); $list->{$id}->{PROJNAME} = $id; $list->{$id}->{REAL_PROJNAME} = $project_name; - $list->{$id}->{OWNER} = $hash_ref->{owner_firstname}; + $list->{$id}->{PROJCODE} = $projCode; + $list->{$id}->{OWNER} = "$hash_ref->{owner_firstname} $hash_ref->{owner_lastname}"; $list->{$id}->{OWNER_EMAIL} = $hash_ref->{owner_email}; $list->{$id}->{PROJ_TYPE} = $hash_ref->{type}; } return $list; } +sub scanProjToList{ + my $out_dir = shift; + my $pname = shift; + my $config_file; + my $processLog; + my ($projid,$projCode,$projName,$projStatus); + if ($pname && -d "$out_dir/$pname"){ + $config_file = "$out_dir/$pname/config.txt"; + $processLog = "$out_dir/$pname/process_current.log"; + }else{ + $config_file = `grep -a "projid=$pname" $out_dir/*/config.txt | awk -F':' '{print \$1}'`; + } + chomp $config_file; + return ($projName,$projCode,$projStatus) if ( ! -e $config_file); + if ( -r "$processLog"){ + open (my $fh, $processLog); + while(<$fh>){ + if (/queued/){ + $projStatus="unstarted"; + last; + } + if (/^All Done/){ + $projStatus="finished"; + } + } + close $fh; + } + open (my $fh, $config_file) or die "Cannot read $config_file\n"; + while(<$fh>){ + last if (/^\[Down/); + $projid=$1 if (/^projid=(\S+)/); + $projCode=$1 if (/^projcode=(\S+)/); + $projName=$1 if (/^projname=(\S+)/); + + } + close $fh; + return ($projName,$projid,$projStatus); +} + +sub getSystemUsage { + my $mem = `vmstat -s | awk '\$0 ~/total memory/ {total=\$1 } \$0 ~/free memory/ {free=\$1} \$0 ~/buffer memory/ {buffer=\$1} \$0 ~/cache/ {cache=\$1} END{print (total-free-buffer-cache)/total*100}'`; + my $cpu = `top -bn1 | grep load | awk '{printf "%.1f", \$(NF-2)}'`; + my $disk = `df -h $out_dir | tail -1 | awk '{print \$5}'`; + $disk= `df -h $out_dir | tail -1 | awk '{print \$4}'` if ($disk !~ /\%/); + $cpu = $cpu/$sys->{edgeui_tol_cpu}*100; + $disk =~ s/\%//; + if( $mem || $cpu || $disk ){ + $mem = sprintf "%.1f", $mem; + $cpu = sprintf "%.1f", $cpu; + $disk = sprintf "%.1f", $disk; + return ($mem,$cpu,$disk); + } + else{ + return (0,0,0); + } +} + +sub cleanProjectForNewConfig { + my $module_ctl; + $module_ctl->{"Qiime analysis"} ->{"general"} = "$proj_dir/QiimeAnalysis/runQiimeAnalysis.finished"; + $module_ctl->{"Download SRA"} ->{"general"} = "$proj_dir/SRA_Download/DownloadSRA.finished"; + $module_ctl->{"ProPhage Detection"} ->{"general"} = "$proj_dir/AssemblyBasedAnalysis/Prophage/phageFinder.finished"; + $module_ctl->{"Count Fastq"} ->{"general"} = "$proj_dir/QcReads/countFastq.finished"; + $module_ctl->{"Quality Trim and Filter"} ->{"general"} = "$proj_dir/QcReads/runQC.finished"; + $module_ctl->{"Host Removal"} ->{"general"} = "$proj_dir/HostRemoval/*/run*.finished"; # system("rm -f $outputDir/run${prefix}Removal.finished"); + $module_ctl->{"Assembly"} ->{"Provided"} = "$proj_dir/AssemblyBasedAnalysis/processProvideContigs.finished"; + $module_ctl->{"Assembly"} ->{"SPAdes"} = "$proj_dir/AssemblyBasedAnalysis/runSPAdesAssembly.finished"; #system("rm -f $outputDir/runAPAdesAssembly.finished"); + $module_ctl->{"Assembly"} ->{"Idba"} = "$proj_dir/AssemblyBasedAnalysis/runIdbaAssembly.finished"; + $module_ctl->{"Assembly"} ->{"Idba"} = "$proj_dir/AssemblyBasedAnalysis/runIdbaAssembly.finished"; + $module_ctl->{"Assembly"} ->{"general"} = "$proj_dir/AssemblyBasedAnalysis/runAssembly.finished"; + $module_ctl->{"Reads Mapping To Contigs"} ->{"general"} = "$proj_dir/AssemblyBasedAnalysis/readsMappingToContig/runReadsToContig.finished"; + $module_ctl->{"Reads Mapping To Reference"} ->{"general"} = "$proj_dir/ReadsBasedAnalysis/readsMappingToRef/runReadsToGenome.finished"; + $module_ctl->{"Reads Mapping To Reference"} ->{"UnmappedReads"} = "$proj_dir/ReferenceBasedAnalysis/UnmappedReads/retrieveUnmappedReads.finished"; + $module_ctl->{"Reads Taxonomy Classification"} ->{"AllReads"} = "$proj_dir/ReadsBasedAnalysis/Taxonomy/taxonomyAssignment.finished"; + $module_ctl->{"Reads Taxonomy Classification"} ->{"UnmappedReads"} = "$proj_dir/ReadsBasedAnalysis/UnmappedReads/Taxonomy/taxonomyAssignment.finished"; + $module_ctl->{"Contigs Mapping To Reference"} ->{"general"} = "$proj_dir/AssemblyBasedAnalysis/contigMappingToRef/runContigToGenome.finished"; + $module_ctl->{"Variant Analysis"} ->{"ReadsBased"} = "$proj_dir/ReadsBasedAnalysis/contigMappingToRef/variantAnalysis.finished"; + $module_ctl->{"Variant Analysis"} ->{"AssemblyBased"} = "$proj_dir/AssemblyBasedAnalysis/contigMappingToRef/variantAnalysis.finished"; + $module_ctl->{"Contigs Taxonomy Classification"}->{"general"} = "$proj_dir/AssemblyBasedAnalysis/Taxonomy/ContigsTaxonomy.finished"; + $module_ctl->{"Contigs Blast"} ->{"general"} = "$proj_dir/AssemblyBasedAnalysis/Blast/ContigsBlast.finished"; + $module_ctl->{"Contigs Annotation"} ->{"general"} = "$proj_dir/AssemblyBasedAnalysis/Annotation/runAnnotation.finished"; + $module_ctl->{"Phylogenetic Analysis"} ->{"general"} = "$proj_dir/SNP_Phylogeny/SNPtree.finished"; + $module_ctl->{"Phylogenetic Analysis"} ->{"SRA"} = "$proj_dir/SNP_Phylogeny/SRAreads/download.finished"; + $module_ctl->{"Specialty Genes Profiling"} ->{"general"} = "$proj_dir/.runSpecialtyGenesProfiling.finished"; + $module_ctl->{"Specialty Genes Profiling"} ->{"ReadsBased"} = "$proj_dir/ReadsBasedAnalysis/SpecialtyGenes/runSpecialtyGenesProfiling.finished"; + $module_ctl->{"Specialty Genes Profiling"} ->{"AssemblyBased"} = "$proj_dir/AssemblyBasedAnalysis/SpecialtyGenes/runSpecialtyGenesProfiling.finished"; + $module_ctl->{"Primer Validation"} ->{"general"} = "$proj_dir/AssayCheck/pcrDesign.finished"; + $module_ctl->{"Primer Design"} ->{"general"} = "$proj_dir/AssayCheck/pcrDesign.finished"; + $module_ctl->{"Generate JBrowse Tracks"} ->{"general"} = "$proj_dir/JBrowse/writeJBrowseInfo.finished"; + $module_ctl->{"HTML Report"} ->{"general"} = "$proj_dir/HTML_Report/writeHTMLReport.finished"; + my $new_config = &getSysParamFromConfig( "$proj_dir/config.txt" ); + my $old_config = &getSysParamFromConfig( "$proj_dir/config.txt.bak" ); + + foreach my $module ( keys %$new_config ){ + foreach my $param ( keys %{$new_config->{$module}} ){ + #if one of the parameter in the module changed, reset the whole module + if( $new_config->{$module}->{$param} ne $old_config->{$module}->{$param} ){ + foreach my $task ( keys %{$module_ctl->{$module}} ){ + `rm -f $module_ctl->{$module}->{$task}`; + } + last; + } + } + } + + #remove old config file + `rm -f "$proj_dir/config.txt.bak"`; + + return; +} diff --git a/edge_ui/cgi-bin/edge_config.tmpl b/edge_ui/cgi-bin/edge_config.tmpl index 4bb98bd5..682f9ea8 100755 --- a/edge_ui/cgi-bin/edge_config.tmpl +++ b/edge_ui/cgi-bin/edge_config.tmpl @@ -1,29 +1,14 @@ -[system] -##edge_ui environmental vars -edgeui_wwwroot=%EDGE_HOME%/edge_ui -edgeui_input=%EDGE_HOME%/edge_ui/EDGE_input -edgeui_output=%EDGE_HOME%/edge_ui/EDGE_output -edgeui_archive= -edgeui_tol_cpu=%TOTAL_NUM_CPU% -edgeui_auto_queue=1 -edgeui_auto_run=1 -debug=0 +[project] ##number of cpu cpu= ##store output to [outpath]/[projname] outpath= projname= projdesc= -## configure user management system 1: with 0: without -user_management=0 -## if user management system is not in the same domain with edge -## ex: http://www.someother.com/userManagement -edge_user_management_url= -## configure user upload function 1: able 0: disable -user_upload=1 -## max file size for user upload -user_upload_maxFileSize='5gb' -user_social_login=0 +projid= +projcode= +projowner= +projrunhost= [Download Fastq] DoFastqDownload=auto @@ -72,30 +57,41 @@ similarity= DoAssembly= assembledContigs= minContigSize= -## spades or idba_ud +## spades or idba_ud or megahit assembler= -idbaOptions="--pre_correction --mink --maxk --step --min_contig " +idbaOptions="--pre_correction --mink --maxk --step --min_contig " ## for spades -singleCellMode= -pacbioFile= -nanoporeFile= +SpadesSingleCellMode= +SpadesMetagenomeMode= +SpadesPacbioFile= +SpadesNanoporeFile= +## for megahit +megahit_preset= [Reads Mapping To Contigs] # Reads mapping to contigs DoReadsMappingContigs=auto +## support bowtie or bwa +r2c_aligner= +r2c_aligner_options= +r2c_extract_unmapped= [Reads Mapping To Reference] # Reads mapping to reference DoReadsMappingReference= -bowtieOptions= +## support bowtie or bwa +r2g_aligner= +r2g_aligner_options= window_size=1000 step_size=200 reference= MapUnmappedReads= +r2g_extract_mapped= +r2g_extract_unmapped= [Reads Taxonomy Classification] ## boolean, 1=yes, 0=no -DoTaxonomy= +DoReadsTaxonomy= ## If reference genome exists, only use unmapped reads to do Taxonomy Classification. Turn on AllReads=1 will use all reads instead. AllReads= enabledTools= @@ -130,7 +126,7 @@ annotateProgram= annotateSourceGBK= [ProPhage Detection] -DoProPhageDetection= +DoProPhageDetection=auto [Phylogenetic Analysis] DoSNPtree= @@ -146,6 +142,18 @@ SNPrefGenome= treeMaker= ## SRA accessions ByrRun, ByExp, BySample, ByStudy SNP_SRA_ids= +PhaMEbootstrap= +PhaMEbootstrap_num= + + +[Specialty Genes Profiling] +DoReadsSpecialtyGenes= +DoORFsSpecialtyGenes= +SpecialtyGenesSearchTool= +ShortBREDMinPercIdentity= +ShortBREDMinPercLength= + + [Primer Validation] DoPrimerValidation= @@ -169,7 +177,28 @@ tm_diff= top= [Generate JBrowse Tracks] -DoJBrowse=1 +DoJBrowse= + + +[Qiime analysis] +DoQiimeAnalysis= +qiime_amplicon_type= +qiime_input_dir= +qiime_paired_reads_orientation= +qiime_mapping_file= +qiime_barcode_file= +qiime_barcode_len= +qiime_q_threshold= +qiime_max_n= +qiime_min_per_read_length_fraction= +qiime_UPARSE= +qiime_minimum_otu_size= +qiime_similarity= +qiime_sampling_depth= +qiime_filter_taxa= +qiime_substract_ntc= + + [HTML Report] DoHTMLReport=1 diff --git a/edge_ui/cgi-bin/edge_data_cleanup.pl b/edge_ui/cgi-bin/edge_data_cleanup.pl new file mode 100755 index 00000000..ed741882 --- /dev/null +++ b/edge_ui/cgi-bin/edge_data_cleanup.pl @@ -0,0 +1,63 @@ +#! /usr/bin/env perl + +use strict; +use File::Find; +use FindBin qw($RealBin); +use CGI qw(:standard); + +# read system params from sys.properties +my $sysconfig = "$RealBin/../sys.properties"; +my $sys = &getSysParamFromConfig($sysconfig); +my $keep_days = $sys->{edgeui_proj_store_days}; +my $out_dir = $sys->{edgeui_output}; +my $edgeui_wwwroot = $sys->{edgeui_wwwroot}; +my $input_dir = $sys->{edgeui_input}; +exit if ( $ENV{"REQUEST_METHOD"} ); +exit if (!$keep_days or $keep_days =~ /\D+/); +#my @dirs = ($out_dir,$input_dir); +my $ncbi_tmp = "$edgeui_wwwroot/ncbi"; +my @dirs = ($out_dir); +push @dirs, $ncbi_tmp if (-d $ncbi_tmp); + +my $keep_secs = $keep_days * 24 * 60 * 60; +my $now = time(); + +if (@ARGV){ + find( \&printOldFiles, @dirs); +}else{ + find( \&unwanted, @dirs); +} + +sub unwanted { + $File::Find::name =~ /\.(sam|bam|fastq|fq|gz|tgz|cache)$/i && + $File::Find::name !~ /JBrowse|public/i && + ($now-(stat $_)[9]) > $keep_secs && + unlink $File::Find::name; +} + +sub printOldFiles { + $File::Find::name =~ /\.(sam|bam|fastq|fq|gz|tgz|cache)$/i && + $File::Find::name !~ /JBrowse|public/i && + ($now-(stat $_)[9]) > $keep_secs && + print $File::Find::name; +} + +sub getSysParamFromConfig { + my $config = shift; + my $sys; + open CONF, $config or die "Can't open $config: $!"; + while(){ + if( /^\[system\]/ ){ + while(){ + chomp; + last if /^\[/; + if ( /^([^=]+)=([^=]+)/ ){ + $sys->{$1}=$2; + } + } + } + last; + } + close CONF; + return $sys; +} diff --git a/edge_ui/cgi-bin/edge_dynamic_selection.cgi b/edge_ui/cgi-bin/edge_dynamic_selection.cgi index dae81137..4cfd6176 100755 --- a/edge_ui/cgi-bin/edge_dynamic_selection.cgi +++ b/edge_ui/cgi-bin/edge_dynamic_selection.cgi @@ -11,9 +11,9 @@ my $cgi = CGI->new; my %opt = $cgi->Vars(); my $queries = $opt{'query'} || $ARGV[0]; -# read system params from config template -my $config_tmpl = "$RealBin/edge_config.tmpl"; -my $sys = &getSysParamFromConfig($config_tmpl); +# read system params from sys.properties +my $sysconfig = "$RealBin/../sys.properties"; +my $sys = &getSysParamFromConfig($sysconfig); my $edgeui_wwwroot = $sys->{edgeui_wwwroot}; my $ref_json_file = "$edgeui_wwwroot/data/Ref_list.json"; diff --git a/edge_ui/cgi-bin/edge_info.cgi b/edge_ui/cgi-bin/edge_info.cgi index ccf3acef..db99f918 100755 --- a/edge_ui/cgi-bin/edge_info.cgi +++ b/edge_ui/cgi-bin/edge_info.cgi @@ -1,5 +1,4 @@ #!/usr/bin/env perl -# # Po-E (Paul) Li # Los Alamos National Lab. # 2014-08-07 @@ -17,7 +16,9 @@ use POSIX qw(strftime); use Data::Dumper; use LWP::UserAgent; use HTTP::Request::Common; +use Digest::MD5 qw(md5_hex); require "edge_user_session.cgi"; +require "../cluster/clusterWrapper.pl"; ###################################################################################### # DATA STRUCTURE: @@ -34,11 +35,14 @@ require "edge_user_session.cgi"; # ->{STATUS} // [unfinished|skip|already|running|done|failed] # ->{2}... # +# $info->{INFO}->{CPUU} ... +# ###################################################################################### my $cgi = CGI->new; my %opt = $cgi->Vars(); my $pname = $opt{proj}; +my $init = $opt{init}; $pname ||= $ARGV[0]; my $username = $opt{'username'}|| $ARGV[1]; my $password = $opt{'password'}|| $ARGV[2]; @@ -48,18 +52,31 @@ my $protocol = $opt{protocol} || 'http:'; my $sid = $opt{'sid'}|| $ARGV[4]; my $ip = $ARGV[5]; $ENV{REMOTE_ADDR} = $ip if $ip; - -# read system params from config template -my $config_tmpl = "$RealBin/edge_config.tmpl"; -my $sys = &getSysParamFromConfig($config_tmpl); +my $domain = $ENV{'HTTP_HOST'} || 'edge-dev-master.lanl.gov'; +my ($webhostname) = $domain =~ /^(\S+?)\./; + +# read system params from sys.properties +my $sysconfig = "$RealBin/../sys.properties"; +my $sys = &getSysParamFromConfig($sysconfig); +$sys->{edgeui_output} = "$sys->{edgeui_output}"."/$webhostname" if ( -d "$sys->{edgeui_output}/$webhostname"); +$sys->{edgeui_input} = "$sys->{edgeui_input}"."/$webhostname" if ( -d "$sys->{edgeui_input}/$webhostname"); my $um_url = $sys->{edge_user_management_url}; my $out_dir = $sys->{edgeui_output}; -my $domain = $ENV{'HTTP_HOST'}; +my $www_root = $sys->{edgeui_wwwroot}; +my $edge_total_cpu = $sys->{"edgeui_tol_cpu"}; +my $max_num_jobs = $sys->{"max_num_jobs"}; +my $edge_projlist_num = $sys->{"edgeui_project_list_num"}; my $hideProjFromList = 0; -$domain ||= "edgeset.lanl.gov"; $um_url ||= "$protocol//$domain/userManagement"; +$umSystemStatus ||= $sys->{user_management} if (!@ARGV); +$umSystemStatus = ($umSystemStatus eq "false")?0:$umSystemStatus; +#cluster +my $cluster = $sys->{cluster}; +my $cluster_job_prefix = $sys->{cluster_job_prefix}; +my $cluster_job_max_cpu= $sys->{cluster_job_max_cpu}; my $list; # ref for project list +my @projlist; # project list index my $prog; # progress for latest job my $info; # info to return @@ -68,21 +85,51 @@ $info->{INFO}->{CPUU} = $cpuUsage; $info->{INFO}->{MEMU} = $memUsage; $info->{INFO}->{DISKU} = $diskUsage; -$info->{INFO}->{UPLOAD} = "true" if ( $sys->{user_upload} ); - +my $runcpu = ($cluster)? int(($cluster_job_max_cpu-1)/$max_num_jobs): int(($edge_total_cpu-1)/$max_num_jobs); +$info->{INFO}->{RUNCPU} = ($runcpu>1)? $runcpu :1; + +$info->{INFO}->{PROJLISTNUM} = $edge_projlist_num; + +# module on/off +$info->{INFO}->{UMSYSTEM}= ( $sys->{user_management} )? "true":"false"; +$info->{INFO}->{UPLOAD} = ( $sys->{user_upload} )?"true":"false"; +$info->{INFO}->{ARCHIVE} = ( -w $sys->{edgeui_archive} ) ? "true":"false"; +$info->{INFO}->{MQC} = ( $sys->{m_qc} )?"true":"false"; +$info->{INFO}->{MAA} = ( $sys->{m_assembly_annotation} )?"true":"false"; +$info->{INFO}->{MRBA} = ( $sys->{m_reference_based_analysis} )?"true":"false"; +$info->{INFO}->{MTC} = ( $sys->{m_taxonomy_classfication} )?"true":"false"; +$info->{INFO}->{MPA} = ( $sys->{m_phylogenetic_analysis} )?"true":"false"; +$info->{INFO}->{MSGP} = ( $sys->{m_specialty_genes_profiling} )?"true":"false"; +$info->{INFO}->{MPPA} = ( $sys->{m_pcr_primer_analysis} )?"true":"false"; +$info->{INFO}->{MQIIME} = ( $sys->{m_qiime} )?"true":"false"; + +&returnStatus() if ($init); #($umSystemStatus =~ /true/i)? &getUserProjFromDB():&scanNewProjToList(); +#check projects vital +my ($vital, $name2pid, $error); +if($cluster) { + ($vital, $name2pid, $error) = checkProjVital_cluster($cluster_job_prefix); + if($error) { + $info->{INFO}->{ERROR}= "CLUSTER ERROR: $error"; + } +} else { + ($vital, $name2pid) = &checkProjVital(); +} + # session check -if( $sys->{user_management} ){ +if( $umSystemStatus ){ my $valid = verifySession($sid); if($valid){ ($username,$password,$viewType) = getCredentialsFromSession($sid); + my $user_config = $sys->{edgeui_input}."/". md5_hex($username)."/user.properties"; &getUserProjFromDB(); - &getProjInfoFromDB($pname) if ! defined $list->{$pname}; + &getProjInfoFromDB($pname) if ($pname and ! defined $list->{$pname}); $info->{INFO}->{SESSION_STATUS} = "valid"; } else{ &getUserProjFromDB(); + &getProjInfoFromDB($pname) if ($pname and ! defined $list->{$pname}); $info->{INFO}->{SESSION_STATUS} = "invalid"; } } @@ -90,55 +137,76 @@ else{ &scanNewProjToList(); } - -#check projects vital -my ($vital, $name2pid) = &checkProjVital(); - my $time = strftime "%F %X", localtime; - -if( scalar keys %$list ){ - my $idx; +@projlist = sort {$list->{$b}->{TIME} cmp $list->{$a}->{TIME}} keys %$list; +my $idx; +if( scalar @projlist ){ my $progs; - - foreach my $i ( keys %$list ) { + my $count=0; + + # retrive progress info of a project that is selected by the following priorities: + # 1. assigned project + # 2. latest running project + # 3. lastest project + $idx= ($pname)? (grep $list->{$_}->{NAME} eq $pname, @projlist)[0] : $projlist[0]; + my @running_idxs = grep { $list->{$_}->{STATUS} eq "running" or $list->{$_}->{STATUS} =~ /unstarted|interrupted|in process/ and $list->{$_}->{NAME} ne $pname } @projlist; + $idx = shift @running_idxs if (scalar(@running_idxs) && !$pname); + $idx = $projlist[0] if (!$idx); # when given $pname does not exist. + @projlist = ($idx,@running_idxs); # update running projects and focus project program info. + + foreach my $i ( @projlist ) { + last if ($edge_projlist_num && ++$count > $edge_projlist_num); my $lproj = $list->{$i}->{NAME}; + my $lprojc = $list->{$i}->{PROJCODE}; my $lcpu = $list->{$i}->{CPU}; my $lstatus = $list->{$i}->{STATUS}; my $lpid = $list->{$i}->{PID}; - my $realpid = $name2pid->{$lproj}; + my $realpid = $name2pid->{$lproj}|| $name2pid->{$lprojc}; my $proj_dir = "$out_dir/$lproj"; + $proj_dir = "$out_dir/$lprojc" if ( $lprojc && -d "$out_dir/$lprojc"); my $log = "$proj_dir/process.log"; + my $sjson = "$proj_dir/.run.complete.status.json"; + my $current_log = "$proj_dir/process_current.log"; my $config = "$proj_dir/config.txt"; - $idx = $i if $lproj eq $pname; #remove project from list if output directory has been removed - unless( -e $log ){ + unless( -e $log || -e $config){ delete $list->{$i}; next; } - + + #status JSON + #if( -e $sjson ){ + # my $storedStatus = readListFromJson($sjson); + # $list->{$i} = $storedStatus->{LIST}; + # $progs->{$i} = $storedStatus->{PROG}; + # next; + #} + # update current project status if( -r $log ){ - my ($p_status,$prog,$proj_start,$numcpu,$proj_desc,$proj_name) = &parseProcessLog($log); - $list->{$i}->{TIME} = $proj_start; + my ($p_status,$prog,$proj_start,$numcpu,$proj_desc,$proj_name,$proj_id) = &parseProcessLog($log); + $list->{$i}->{TIME} ||= $proj_start; $list->{$i}->{TIME} ||= strftime "%F %X", localtime; $list->{$i}->{PID} = $realpid; $list->{$i}->{CPU} = $numcpu; $list->{$i}->{DESC} = $proj_desc; + ($list->{$i}->{PROJLOG} = $current_log) =~ s/$www_root//; #for unstarted project, read steps from config file - (my $tmp,$prog,$proj_start,$numcpu,$proj_desc,$proj_name) = &parseProcessLog($config) if $p_status eq "unstarted"; + $p_status = "unknown" if (!$p_status); + (my $tmp,$prog,$proj_start,$numcpu,$proj_desc,$proj_name,$proj_id) = &parseProcessLog($config) if $p_status =~ /unstarted|unknown|interrupted/; $list->{$i}->{CPU} = $numcpu; $list->{$i}->{PROJNAME} = $proj_name; - if( defined $name2pid->{$lproj} ){ #running + if( defined $name2pid->{$lproj} || defined $name2pid->{$lprojc} ){ #running $list->{$i}->{STATUS} = "running"; } elsif( $p_status =~ /running/ ){ # the process log reports it's running, but can't find vital # Unexpected exit detected $list->{$i}->{STATUS} = "failed"; - `echo "\n*** [$time] EDGE_UI: Pipeline failed (PID:$lpid). Unexpected exit detected! ***" |tee -a $log >> $proj_dir/process_current.log`; + `echo "\n*** [$time] EDGE_UI: Pipeline failed (PID:$realpid). Unexpected exit detected! ***" |tee -a $log >> $proj_dir/process_current.log`; } else{ $list->{$i}->{STATUS} = $p_status; @@ -148,43 +216,49 @@ if( scalar keys %$list ){ if ( $list->{$i}->{DBSTATUS} && ($list->{$i}->{STATUS} ne $list->{$i}->{DBSTATUS})){ &updateDBProjectStatus($i, $list->{$i}->{STATUS}); } + + #if( $list->{$i}->{STATUS} eq "finished" && !-e $sjson ){ + # my $storedStatus; + # $storedStatus->{LIST} = $list->{$i}; + # $storedStatus->{PROG} = $progs->{$i}; + # saveListToJason($storedStatus, $sjson); + #} } } - # retrive progress info of a project that is selected by the following priorities: - # 1. assigned project - # 2. latest running project - # 3. lastest project - - unless( $idx ){ - my @idxs1 = grep { $list->{$_}->{STATUS} eq "running" } sort {$list->{$b}->{TIME} cmp $list->{$a}->{TIME}} keys %$list; - my @idxs2 = sort {$list->{$b}->{TIME} cmp $list->{$a}->{TIME}} keys %$list; - my @idxs = (@idxs1,@idxs2); - $idx = shift @idxs; - } $info->{PROG} = $progs->{$idx}; # with user management, NAME becomes unique project id $info->{INFO}->{NAME} = $list->{$idx}->{NAME}; $info->{INFO}->{PROJNAME} = $list->{$idx}->{PROJNAME}; + $info->{INFO}->{PROJCODE} = $list->{$idx}->{PROJCODE}; + $info->{INFO}->{PROJLOG} = $list->{$idx}->{PROJLOG};; $info->{INFO}->{STATUS} = $list->{$idx}->{STATUS}; $info->{INFO}->{TIME} = strftime "%F %X", localtime; $info->{INFO}->{PROJTYPE} = $list->{$idx}->{PROJTYPE} if ($list->{$idx}->{PROJTYPE}); + + ## sample metadata + $info->{INFO}->{SHOWMETA} = $list->{$idx}->{SHOWMETA} if ($list->{$idx}->{SHOWMETA}); + $info->{INFO}->{ISOWNER} = $list->{$idx}->{ISOWNER} if($list->{$idx}->{ISOWNER}); + $info->{INFO}->{HASMETA} = $list->{$idx}->{HASMETA} if ($list->{$idx}->{HASMETA}); + $info->{INFO}->{METABSVE} = $list->{$idx}->{METABSVE} if ($list->{$idx}->{METABSVE}); + ## END sample metadata } #autorun if( scalar keys %$list && $sys->{edgeui_auto_run} ){ - my ( $progs, $proj, $p_status, $proj_start, $proj_dir, $log, $config ); + my ( $progs, $proj, $projCode, $p_status, $proj_start, $proj_dir, $log, $config ); my $num_cpu_used = 0; foreach my $i ( sort {$list->{$a}->{TIME} cmp $list->{$b}->{TIME}} keys %$list ) { $proj = $list->{$i}->{NAME}; - $proj_dir = "$out_dir/$proj"; + $projCode = $list->{$i}->{PROJCODE}; + $proj_dir = "$out_dir/$projCode"; my $run=0; $run = &availableToRun($list->{$i}->{CPU}, $num_cpu_used ) if $list->{$i}->{STATUS} eq "unstarted"; - if($run){ - my $json = `$RealBin/edge_action.cgi $proj rerun "" "" "" $sid $domain 2>> $proj_dir/error.log`; + if($run && ($umSystemStatus eq 'ture'?$sid:1) ){ + my $json = `$RealBin/edge_action.cgi $proj rerun "" "" "" $sid $domain $umSystemStatus 2>> $proj_dir/error.log`; #print STDERR "$json"; my $info = decode_json($json); - $list->{$i}->{STATUS} = "running" if $info->{STATUS} == "SUCCESS"; + $list->{$i}->{STATUS} = "running" if $info->{STATUS} eq "SUCCESS"; $num_cpu_used += $list->{$i}->{CPU}; } } @@ -196,6 +270,27 @@ $info->{LIST} = $list if $list; ###################################################### +sub readListFromJson { + my $json = shift; + my $list = {}; + if( -r $json ){ + open JSON, $json; + flock(JSON, 1); + local $/ = undef; + $list = decode_json(); + close JSON; + } + return $list; +} + +sub saveListToJason { + my ($list, $file) = @_; + open JSON, ">$file" or die "Can't write to file: $file\n"; + my $json = encode_json($list); + print JSON $json; + close JSON; +} + sub getSysParamFromConfig { my $config = shift; my $sys; @@ -225,6 +320,7 @@ sub parseProcessLog { my $proj_start; my $proj_desc; my $proj_name; + my $proj_id; my $numcpu; my ($step,$ord,$do,$status); my %map; @@ -256,9 +352,12 @@ sub parseProcessLog { elsif( /^projname=(.*)/){ $proj_name=$1; } + elsif( /^projid=(.*)/){ + $proj_id=$1; + } elsif( /^\[(.*)\]/ ){ my $step = $1; - next if $step eq "system"; + next if $step eq "system" or $step eq "project"; if( defined $map{"$step"} ){ $ord = $map{"$step"}; @@ -272,9 +371,11 @@ sub parseProcessLog { } elsif( /^Do.*=(.*)$/ ){ my $do = $1; - $prog->{$cnt}->{DO}=$do; - $prog->{$cnt}->{STATUS}="unfinished"; - $prog->{$cnt}->{STATUS}="skip" if $do eq 0; + $prog->{$cnt}->{DO}= 'auto' if ($do eq 'auto'); + $prog->{$cnt}->{DO}= 1 if ($do eq 1); + $prog->{$cnt}->{DO}= 0 if ($do eq 0 && !$prog->{$cnt}->{DO}); + $prog->{$cnt}->{STATUS}="skip"; + $prog->{$cnt}->{STATUS}="unfinished" if ($prog->{$cnt}->{DO}); } elsif( /Finished/ ){ $prog->{$ord}->{STATUS} = "finished"; @@ -305,6 +406,7 @@ sub parseProcessLog { #unstarted project $proj_status = "unstarted" if $lastline =~ /EDGE_UI.*unstarted/; $proj_status = "interrupted" if $lastline =~ /EDGE_UI.*interrupted/; + $proj_status = "archived" if $lastline =~ /EDGE_UI.*archived/; $proj_start = $1 if $lastline =~ /\[(\S+ \S+)\] EDGE_UI/; $prog->{$ord}->{STATUS} = "unfinished" if $proj_status eq "interrupted"; #turn last step to unfinished @@ -319,25 +421,57 @@ sub parseProcessLog { } } - return ($proj_status,$prog,$proj_start,$numcpu,$proj_desc,$proj_name); + return ($proj_status,$prog,$proj_start,$numcpu,$proj_desc,$proj_name,$proj_id); } sub scanNewProjToList { - my $list_idx; - my $cnt = (sort {$b<=>$a} keys %$list)[0]; - - foreach my $i ( keys %$list ) { - my $n = $list->{$i}->{NAME}; - $list_idx->{$n}=$i; - } + my $cnt = 1; opendir(BIN, $out_dir) or die "Can't open $out_dir: $!"; - while( defined (my $file = readdir BIN) ) { - next if $file eq '.' or $file eq '..'; - if ( -d "$out_dir/$file" ) { - next if defined $list_idx->{$file}; - $list->{++$cnt}->{NAME} = $file if -r "$out_dir/$file/process.log"; + my @dirfiles = readdir(BIN); + + foreach my $file (@dirfiles) { + next if ($file eq '.' || $file eq '..' || ! -d "$out_dir/$file/"); + my $config = "$out_dir/$file/config.txt"; + my $processLog = "$out_dir/$file/process_current.log"; + $cnt++; + if (-r "$config"){ + $list->{$cnt}->{NAME} = $file ; + $list->{$cnt}->{TIME} = (stat("$out_dir/$file"))[10]; + $list->{$cnt}->{STATUS} eq "running" if $name2pid->{$file}; + if ( -r "$processLog"){ + open (my $fh, $processLog); + while(<$fh>){ + if (/queued/){ + $list->{$cnt}->{STATUS} = "unstarted"; + } + if (/All Done/){ + $list->{$cnt}->{STATUS} = "finished"; + } + if (/failed/i){ + $list->{$cnt}->{STATUS} = "failed"; + } + } + close $fh; + } + my $projname = $file; + chomp $projname; + $list->{$cnt}->{PROJNAME} = $projname; } + + ## sample metadata + if($sys->{edge_sample_metadata}) { + $list->{$cnt}->{SHOWMETA} = 1; + $list->{$cnt}->{ISOWNER} = 1; + } + my $metaFile = "$out_dir/$file/sample_metadata.txt"; + if(-r $metaFile) { + $list->{$cnt}->{HASMETA} = 1; + my $bsveId = `grep -a "bsve_id=" $metaFile | awk -F'=' '{print \$2}'`; + chomp $bsveId; + $list->{$cnt}->{METABSVE} = $bsveId; + } + ## END sample metadata } closedir(BIN); } @@ -363,12 +497,14 @@ sub availableToRun { sub getSystemUsage { my $mem = `vmstat -s | awk '\$0 ~/total memory/ {total=\$1 } \$0 ~/free memory/ {free=\$1} \$0 ~/buffer memory/ {buffer=\$1} \$0 ~/cache/ {cache=\$1} END{print (total-free-buffer-cache)/total*100}'`; my $cpu = `top -bn1 | grep load | awk '{printf "%.1f", \$(NF-2)}'`; - my $disk = `df -h $out_dir | tail -1 | awk '{printf "%.1f", \$5}'`; + my $disk = `df -h $out_dir | tail -1 | awk '{print \$5}'`; + $disk= `df -h $out_dir | tail -1 | awk '{print \$4}'` if ($disk !~ /\%/); $cpu = $cpu/$sys->{edgeui_tol_cpu}*100; $disk =~ s/\%//; if( $mem || $cpu || $disk ){ $mem = sprintf "%.1f", $mem; $cpu = sprintf "%.1f", $cpu; + $disk = sprintf "%.1f", $disk; return ($mem,$cpu,$disk); } else{ @@ -464,22 +600,47 @@ sub getUserProjFromDB{ foreach my $hash_ref (@$array_ref) { my $id = $hash_ref->{id}; + my $projCode = $hash_ref->{code}; my $project_name = $hash_ref->{name}; my $status = $hash_ref->{status}; - next if (! -r "$out_dir/$id/process.log"); + my $created = $hash_ref->{created}; + next if (! -r "$out_dir/$id/process.log" && ! -r "$out_dir/$projCode/process.log" && !$cluster); next if ( $status =~ /delete/i); $list->{$id}->{NAME} = $id; $list->{$id}->{PROJNAME} = $project_name; + $list->{$id}->{PROJCODE} = $projCode; $list->{$id}->{DBSTATUS} = $status; + $list->{$id}->{STATUS} = $status; + $list->{$id}->{TIME} = $created; $list->{$id}->{OWNER_EMAIL} = $hash_ref->{owner_email}; $list->{$id}->{OWNER_FisrtN} = $hash_ref->{owner_firstname}; $list->{$id}->{OWNER_LastN} = $hash_ref->{owner_lastname}; $list->{$id}->{PROJTYPE} = $hash_ref->{type} if ($username && $password); + + ## sample metadata + if($sys->{edge_sample_metadata}) { + $list->{$id}->{SHOWMETA} = 1; + } + if($username eq $hash_ref->{owner_email}) { + $list->{$id}->{ISOWNER} = 1; + } + my $metaFile = "$out_dir/$id/sample_metadata.txt"; + if(!-e $metaFile) { + $metaFile = "$out_dir/$projCode/sample_metadata.txt"; + } + if(-r $metaFile) { + $list->{$id}->{HASMETA} = 1; + my $bsveId = `grep -a "bsve_id=" $metaFile | awk -F'=' '{print \$2}'`; + chomp $bsveId; + $list->{$id}->{METABSVE} = $bsveId; + } + ## END sample metadata } } sub getProjInfoFromDB{ - my $project=shift; + my $project=shift; + $project = &getProjID($project); my %data = ( email => $username, password => $password, @@ -499,25 +660,45 @@ sub getProjInfoFromDB{ my $response = $browser->request($req); my $result_json = $response->decoded_content; - print $result_json if (@ARGV); + #print $result_json,"\n" if (@ARGV); my $hash_ref = from_json($result_json); my $id = $hash_ref->{id}; my $project_name = $hash_ref->{name}; + my $projCode = $hash_ref->{code}; my $status = $hash_ref->{status}; + my $created = $hash_ref->{created}; my $projtype = ($hash_ref->{isPublished})?"publish":"false"; #next if (! -r "$out_dir/$id/process.log"); #next if ( $status =~ /delete/i); $list->{$id}->{NAME} = $id; $list->{$id}->{PROJNAME} = $project_name; + $list->{$id}->{PROJCODE} = $projCode; $list->{$id}->{DBSTATUS} = $status; + $list->{$id}->{STATUS} = $status; $list->{$id}->{PROJTYPE} = $projtype; + $list->{$id}->{TIME} = $created; +} + +sub getProjID { + my $project=shift; + my $projID = $project; + if ( -d "$out_dir/$project"){ # use ProjCode as dir + open (my $fh, "$out_dir/$project/config.txt") or die "Cannot open $out_dir/$project/config.txt\n"; + while(<$fh>){ + if (/^projid=(\S+)/){ + $projID = $1; + last; + } + } + } + return $projID; } sub returnStatus { my $json; $json = to_json( $info ) if $info; - $json = to_json( $info, { ascii => 1, pretty => 1 } ) if $info && $ARGV[0]; + $json = to_json( $info, { ascii => 1, pretty => 1 } ) if $info && $ARGV[1]; print $cgi->header('application/json'), $json; exit; } diff --git a/edge_ui/cgi-bin/edge_projectspage.cgi b/edge_ui/cgi-bin/edge_projectspage.cgi index 03da6e55..632f08b0 100755 --- a/edge_ui/cgi-bin/edge_projectspage.cgi +++ b/edge_ui/cgi-bin/edge_projectspage.cgi @@ -10,7 +10,7 @@ use CGI qw(:standard); #use CGI::Carp qw(fatalsToBrowser); use POSIX qw(strftime); use Data::Dumper; -use CGI::Pretty; +#use CGI::Pretty; require "edge_user_session.cgi"; my $cgi = CGI->new; @@ -22,15 +22,16 @@ my $userType = $opt{'userType'}|| $ARGV[3]; my $viewType = $opt{'view'}|| $ARGV[4]; my $protocol = $opt{protocol}||'http:'; my $sid = $opt{'sid'}|| $ARGV[5]; +my $domain = $ENV{'HTTP_HOST'} || 'edge-bsve.lanl.gov'; +my ($webhostname) = $domain =~ /^(\S+?)\./; -# read system params from config template -my $config_tmpl = "$RealBin/edge_config.tmpl"; -my $sys = &getSysParamFromConfig($config_tmpl); +# read system params from sys.properties +my $sysconfig = "$RealBin/../sys.properties"; +my $sys = &getSysParamFromConfig($sysconfig); +$sys->{edgeui_output} = "$sys->{edgeui_output}"."/$webhostname" if ( -d "$sys->{edgeui_output}/$webhostname"); my $out_dir = $sys->{edgeui_output}; my $um_config = $sys->{user_management}; my $um_url = $sys->{edge_user_management_url}; -my $domain = $ENV{'HTTP_HOST'}; -$domain ||= "edgeset.lanl.gov"; $um_url ||= "$protocol//$domain/userManagement"; # session check @@ -43,89 +44,78 @@ if( $sys->{user_management} ){ #print Dumper ($list); print $cgi->header( "text/html" ); -if ($userType =~ /admin/i && $viewType !~ /admin/i){ - print "

Project List See Project List as Admin

\n"; -}else{ - print $cgi->h2("Project List"); +print $cgi->h2("Project List"); +if ( $username && $password || $um_config == 0){ + #Action buttons + print "
\n"; + if ($userType =~ /admin/i){ + print 'show-all'; + } + print 'rerun'; + print 'interrupt'; + print 'delete'; + print 'empty'; + if ($sys->{edgeui_archive}){ + print 'archive'; + } + if ($um_config != 0){ + print 'share'; + print 'publish'; + } + print 'compare'; + +# if($sys->{edge_sample_metadata}) { +# print 'metadata-bsveadd'; +# } + print '
'; } -print "
"; +#print "
\n"; +#print "
\n"; if ($umSystemStatus=~ /true/i && $username && $password && $viewType =~ /user/i ){ # My Table my $list = &getUserProjFromDB("owner"); + my $list_g = &getUserProjFromDB("guest"); + my $list_p = &getUserProjFromDB("other_published"); + $list = &ref_merger($list, $list_g) if $list_g; + $list = &ref_merger($list, $list_p) if $list_p; + #print Dumper $list; + #
- print <<"HTML"; -
-

My Projects

-HTML - ; - my @theads = (th("Project Name"),th({-style=>"width: 8%"},"Status"),th("Submission Time"),th("Total Running Time"),th("Type")); - #my @theads = (th("Project Name"),th({-style=>"width: 8%"},"Status"),th("Total Running Time"),th("Type"),th("Action")); + my @theads = (th(""),th("Project Name"),th("Status"),th("Submission Time"),th("Total Running Time"),th("Type"),th("Owner")); my $idxs = &sortList($list); - my $table_id = "edge-project-page-Mytable"; - &printTable($table_id,$idxs,$list,\@theads); - print "\t\t
\n"; - - # Projects shared to me Table - undef $list; - undef $idxs; - $list = &getUserProjFromDB("guest"); - print <<"HTML"; -
-

Projects shared with me

-HTML -; - @theads = (th("Project Name"),th({-style=>"width: 8%"},"Status"),th("Submission Time"),th("Total Running Time"),th("Owner")); - $idxs = &sortList($list); - $table_id = "edge-project-paga-Guesttable"; - &printTable($table_id,$idxs,$list,\@theads); - print "\t\t
\n"; - - # Projects published by others Table - undef $list; - undef $idxs; - $list = &getUserProjFromDB("other_published"); - print <<"HTML"; -
-

Projects published by others

-HTML -; - @theads = (th("Project Name"),th({-style=>"width: 8%"},"Status"),th("Submission Time"),th("Total Running Time"),th("Owner")); - $idxs = &sortList($list); - $table_id = "edge-project-page-OtherPubtable"; + my $table_id = "edge-project-page-table"; &printTable($table_id,$idxs,$list,\@theads); - print "\t\t
\n"; }elsif ($umSystemStatus=~ /true/i) { + # show admin list or published project my $list = &getUserProjFromDB(); my $idxs = &sortList($list); - my @theads = (th("Project Name"),th({-style=>"width: 8%"},"Status"),th("Submission Time"),th("Total Running Time"),th("Owner")); + my @theads = (th(""),th("Project Name"),th("Status"),th("Submission Time"),th("Total Running Time"),th("Owner")); my $table_id = "edge-project-page-table"; &printTable($table_id,$idxs,$list,\@theads); }elsif ($um_config == 0) { # all projects in the EDGE_output my $list= &scanProjToList(); my $idxs = &sortList($list); - my @theads = (th("Project Name"),th({-style=>"width: 8%"},"Status"),th("Submission Time"),th("Total Running Time"),th("Last Run Time")); + my @theads = (th(""),th("Project Name"),th("Status"),th("Submission Time"),th("Total Running Time"),th("Last Run Time")); my $table_id = "edge-project-page-table"; &printTable($table_id,$idxs,$list,\@theads); } -print "\t\t\t
"; # data-filter -#print "
\n"; -#print " \n"; +## END MAIN## -#print $cgi->table( {-id=>"edge-project-page-table" , -class=>"tablesorter"}, sub sortList { my $list = shift; - my @idxs1 = grep { $list->{$_}->{STATUS} eq "running" } sort {$list->{$b}->{TIME} cmp $list->{$a}->{TIME}} keys %$list; - my @idxs2 = grep { $list->{$_}->{STATUS} ne "running" } sort {$list->{$b}->{TIME} cmp $list->{$a}->{TIME}} keys %$list; - my @idxs = (@idxs1,@idxs2); + my @idxs1 = grep { $list->{$_}->{PROJSTATUS} =~ /running/i } sort {$list->{$b}->{TIME} cmp $list->{$a}->{TIME}} keys %$list; + my @idxs2 = grep { $list->{$_}->{PROJSTATUS} =~ /unstarted/i } sort {$list->{$a}->{REAL_PROJNAME} cmp $list->{$b}->{REAL_PROJNAME}} keys %$list; + my @idxs3 = grep { $list->{$_}->{PROJSTATUS} !~ /running|unstarted/i } sort {$list->{$b}->{TIME} cmp $list->{$a}->{TIME}} keys %$list; + my @idxs = (@idxs1,@idxs2,@idxs3); return \@idxs; } @@ -136,7 +126,7 @@ sub printTable { my $theads = shift; my @idxs = @{$idx_ref}; my @tbodys; - return if (@ARGV); + #return if (@ARGV); if ($list->{INFO}->{ERROR}) { print "

$list->{INFO}->{ERROR}

\n"; @@ -145,28 +135,37 @@ sub printTable { { my $projOwner = $list->{$_}->{OWNER}; my $projStatus = $list->{$_}->{PROJSTATUS}; - my $projname = "{$_}->{PROJDESC}\" data-pid=\"$list->{$_}->{PROJNAME}\">$list->{$_}->{REAL_PROJNAME}"; + my $projID = $list->{$_}->{PROJNAME}; + my $projname = "{$_}->{PROJDESC}\" data-pid=\"$projID\">$list->{$_}->{REAL_PROJNAME}"; my $projSubTime = $list->{$_}->{PROJSUBTIME}; my $projRunTime = $list->{$_}->{RUNTIME}; my $projLastRunTime = $list->{$_}->{LASTRUNTIME}; my $projType = $list->{$_}->{PROJ_TYPE}; - my $projAction; + my $projCode = $list->{$_}->{PROJCODE} || $list->{$_}->{REAL_PROJNAME}; + my $checkbox = ""; my $publish_action= ($projType =~ /published/)? "unpublished":"published"; - $projAction = "Share project\n"; - $projAction .= "Unshare project\n"; - $projAction .= "Make project public/private\n"; $projType =~ s/published/public/; my @tds; if ($umSystemStatus=~ /true/i){ - @tds = ($table_id =~ /Mytable/i)? ( td($projname),td($projStatus),td($projSubTime),td($projRunTime),td($projType)): - ( td($projname),td($projStatus),td($projSubTime),td($projRunTime),td($projOwner)); + $checkbox="" if (!$username && !$password); + if( scalar @$theads == 7 ){ + @tds = ( td($checkbox),td($projname),td($projStatus),td($projSubTime),td($projRunTime),td($projType),td($projOwner) ); + } + else{ + @tds = ( td($checkbox), td($projname),td($projStatus),td($projSubTime),td($projRunTime),td($projOwner) ); + } }else{ - @tds = ( td($projname),td($projStatus),td($projSubTime),td($projRunTime),td($projLastRunTime)); + @tds = ( td($checkbox),td($projname),td($projStatus),td($projSubTime),td($projRunTime),td($projLastRunTime)); } push @tbodys, \@tds; } + if (scalar(@idxs)<1){ - my @tds = (td("No Projects"),td(""),td(""),td(""),td("")); + my @tds = (td(""),td("No Projects"),td(""),td(""),td(""),td("")); + if( scalar @$theads == 7 ){ + @tds = (td(""),td("No Projects"),td(""),td(""),td(""),td(""),td("")); + } + push @tbodys, \@tds; } print $cgi->table( @@ -207,8 +206,9 @@ sub scanProjToList { next if $file eq '.' or $file eq '..'; if ( -d "$out_dir/$file" && -r "$out_dir/$file/process.log" ) { ++$cnt; - $list=&pull_summary($file,$cnt,$list); - $list->{$cnt}->{REAL_PROJNAME} = $list->{$cnt}->{PROJNAME}; + $list=&pull_summary("$out_dir/$file/process.log",$cnt,$list); + $list=&pull_summary("$out_dir/$file/config.txt",$cnt,$list) if ($list->{$cnt}->{PROJSTATUS} =~ /unstart/i); + $list->{$cnt}->{REAL_PROJNAME} = $list->{$cnt}->{PROJNAME} || $file; $list->{$cnt}->{PROJNAME} = $file; } } @@ -218,7 +218,7 @@ sub scanProjToList { sub getUserProjFromDB{ my $project_type = shift; - my $list; + my $list = {}; my %data = ( email => $username, password => $password @@ -228,7 +228,7 @@ sub getUserProjFromDB{ my $service; if ($username && $password){ $service= ($viewType =~ /admin/i)? "WS/user/admin/getProjects" :"WS/user/getProjects"; - $data{project_type} = $project_type if ($viewType =~ /user/i); + $data{project_type} = $project_type if ($viewType =~ /user/i && $project_type); }else{ $service="WS/user/publishedProjects"; } @@ -251,17 +251,20 @@ sub getUserProjFromDB{ return; } my $array_ref = from_json($result_json); - print Dumper ($array_ref) if @ARGV; foreach my $hash_ref (@$array_ref) { my $id = $hash_ref->{id}; + my $projCode = $hash_ref->{code}; my $project_name = $hash_ref->{name}; my $status = $hash_ref->{status}; next if ($status =~ /delete/i); - next if (! -r "$out_dir/$id/process.log"); - $list=&pull_summary($id,$id,$list); + next if (! -r "$out_dir/$id/process.log" && ! -r "$out_dir/$projCode/process.log"); + my $processlog=(-r "$out_dir/$projCode/process.log")?"$out_dir/$projCode/process.log":"$out_dir/$id/process.log"; + $list=&pull_summary($processlog,$id,$list); $list->{$id}->{PROJNAME} = $id; - $list->{$id}->{REAL_PROJNAME} = $project_name; + $list->{$id}->{PROJSTATUS} = $status if (!$list->{$id}->{PROJSTATUS}); + $list->{$id}->{REAL_PROJNAME} = $project_name if (!$list->{$id}->{REAL_PROJNAME}); + $list->{$id}->{PROCODE} = $projCode; $list->{$id}->{OWNER} = "$hash_ref->{owner_firstname} $hash_ref->{owner_lastname}"; $list->{$id}->{OWNER_EMAIL} = $hash_ref->{owner_email}; $list->{$id}->{PROJ_TYPE} = $hash_ref->{type}; @@ -271,16 +274,15 @@ sub getUserProjFromDB{ sub pull_summary { - my $pname = shift; + my $log = shift; my $cnt= shift; my $list = shift; my @INFILES; my ($step,$lastline); my $tol_running_sec=0; - $list->{$cnt}->{PROJSTATUS} = "Unfinished"; - open(my $sumfh, "<", "$out_dir/$pname/process.log") or die $!; + open(my $sumfh, "<", "$log") or die $!; while(<$sumfh>) { chomp; #parse input files @@ -317,11 +319,12 @@ sub pull_summary { if( /^\[(.*)\]/ ){ $step = $1; - if( $step eq "system" ){ + if( $step eq "project" or $step eq "system"){ while(<$sumfh>){ chomp; if ( /^([^=]+)=([^=]+)/ ){ $list->{$cnt}->{uc($1)}=$2; + $list->{$cnt}->{REAL_PROJNAME}=$2 if ($1 eq "projname"); } elsif ( /^\[(.*)\]/ ){ $step = $1; @@ -340,7 +343,7 @@ sub pull_summary { $dd = sprintf "%02d", $dd; my $proj_start = "$yyyy-$mm-$dd $hms"; $list->{$cnt}->{TIME} = $proj_start; - #$list->{$cnt}->{PROJSTATUS} = "Finished"; + $list->{$cnt}->{PROJSTATUS} = "Unfinished"; } elsif( /^Do.*=(.*)$/ ){ my $do = $1; @@ -368,6 +371,9 @@ sub pull_summary { $list->{$cnt}->{$step}->{GNLSTATUS} = "Failed"; $list->{$cnt}->{PROJSTATUS} = "Failure"; } + elsif( /All Done/){ + $list->{$cnt}->{PROJSTATUS} = "Complete"; + } $lastline = $_; } @@ -376,35 +382,10 @@ sub pull_summary { $list->{$cnt}->{PROJSTATUS} = "Unstarted" if $lastline =~ /EDGE_UI.*unstarted/; $list->{$cnt}->{PROJSTATUS} = "Interrupted" if $lastline =~ /EDGE_UI.*interrupted/; + $list->{$cnt}->{PROJSTATUS} = "Archived" if $lastline =~ /EDGE_UI.*archived/; $list->{$cnt}->{TIME} = $1 if $lastline =~ /\[(\S+ \S+)\] EDGE_UI/; $list->{$cnt}->{$step}->{GNLSTATUS} = "Interrupted" if $list->{$cnt}->{$step}->{PROJSTATUS} eq "Interrupted"; #turn last step to unfinished - #Reads Taxonomy Classification - my %toolmap; - open PROC_CUR, "<", "$out_dir/$pname/process_current.log" or die $!; - while() { - chomp; - #parse input files - if( /^\[RUN_TOOL\] \[(.*)\] COMMAND/ ){ - $step = $1; - $list->{$cnt}->{"Reads Taxonomy Classification"}->{$step}->{GNLANALYSIS} = "$step"; - $list->{$cnt}->{"Reads Taxonomy Classification"}->{$step}->{GNLRUN} = "On"; - $list->{$cnt}->{"Reads Taxonomy Classification"}->{$step}->{GNLSTATUS} = "Running"; - } - elsif( /^\[RUN_TOOL\] \[(.*)\] Error occured/ ){ - $list->{$cnt}->{"Reads Taxonomy Classification"}->{$step}->{GNLSTATUS} = "Error"; - } - elsif( /^\[RUN_TOOL\] \[(.*)\] Running time: (.*)/ ){ - $list->{$cnt}->{"Reads Taxonomy Classification"}->{$step}->{GNLSTATUS} = "Complete"; - $list->{$cnt}->{"Reads Taxonomy Classification"}->{$step}->{GNLTIME} = $2; - } - elsif( /All Done/){ - $list->{$cnt}->{PROJSTATUS} = "Complete"; - } - } - close PROC_CUR; - - $list->{$cnt}->{INFILES} = join ", ", @INFILES; $list->{$cnt}->{TIME} ||= strftime "%F %X", localtime; @@ -421,3 +402,11 @@ sub check_um_service { return 1; } } + +sub ref_merger { + my ($r1, $r2) = @_; + foreach my $key (keys %$r2){ + $r1->{$key} = $r2->{$key}; + } + return $r1; +} diff --git a/edge_ui/cgi-bin/edge_report.cgi b/edge_ui/cgi-bin/edge_report.cgi index 1f4f71ec..5487dc8d 100755 --- a/edge_ui/cgi-bin/edge_report.cgi +++ b/edge_ui/cgi-bin/edge_report.cgi @@ -6,61 +6,156 @@ # use strict; -#use lib "/Users/paulli/perl5/lib/perl5"; -#use JSON; +use JSON; +use FindBin qw($RealBin); +use lib "$RealBin/../../lib"; use CGI qw(:standard); use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use FindBin qw($RealBin); -#use Data::Dumper; +use Data::Dumper; + +use LWP::UserAgent; +use HTTP::Request::Common; +use POSIX qw(strftime); +use Digest::MD5 qw(md5_hex); +require "edge_user_session.cgi"; my $cgi = CGI->new; my %opt = $cgi->Vars(); my $pname = $opt{proj}; +my $init = $opt{init}; $pname ||= $ARGV[0]; my $EDGE_HOME = $ENV{EDGE_HOME}; $EDGE_HOME ||= "$RealBin/../.."; -# read system params from config template -my $config_tmpl = "$RealBin/edge_config.tmpl"; -my $sys = &getSysParamFromConfig($config_tmpl); +my $username = $opt{'username'}|| $ARGV[1]; +my $password = $opt{'password'}|| $ARGV[2]; +my $viewType = "user"; +my $umSystemStatus = $opt{'umSystem'}|| $ARGV[3]; +my $protocol = $opt{protocol} || 'http:'; +my $sid = $opt{'sid'}|| $ARGV[4]; +my $ip = $ARGV[5]; +$ENV{REMOTE_ADDR} = $ip if $ip; +my $domain = $ENV{'HTTP_HOST'}|| 'edge-bsve.lanl.gov'; +my ($webhostname) = $domain =~ /^(\S+?)\./; + +# read system params from sys.properties +my $sysconfig = "$RealBin/../sys.properties"; +my $sys = &getSysParamFromConfig($sysconfig); +$sys->{edgeui_output} = "$sys->{edgeui_output}"."/$webhostname" if ( -d "$sys->{edgeui_output}/$webhostname"); my $edgeui_wwwroot = $sys->{edgeui_wwwroot}; my $edgeui_output = $sys->{edgeui_output}; + my ($relpath) = $edgeui_output =~ /^$edgeui_wwwroot\/(.*)$/; +my $um_url = $sys->{edge_user_management_url}; +my $out_dir = $sys->{edgeui_output}; +my $projDir; +my $proj_code; +my $proj_status; +# Generates the project list (pname = encoded name) Scans output dir +if( $sys->{user_management} && $pname !~ /\D/ && $sid ){ + ($username,$password,$viewType) = getCredentialsFromSession($sid); + ($proj_code,$proj_status)=&getProjCodeFromDB($pname, $username, $password); + if (!$proj_code){ + my $html = "

The project does not exist

"; + print "Content-Type: text/html\n\n", + $html; + exit 0; + } + $projDir = $relpath ."/". $proj_code; +} +if( !$sys->{user_management} || !$username ){ + if ( -e "$edgeui_output/$pname/config.txt"){ + $projDir = $relpath."/".$pname; + }else{ + my $proj_list=&scanProjToList($edgeui_output); + if( $proj_list->{$pname} ){ + $projDir = $relpath . "/". $proj_list->{$pname}; + }else{ + my $html = "

The project does not exist

"; + print "Content-Type: text/html\n\n", + $html; + exit 0; + } + } +} +generateReport($projDir); -if( -d "$edgeui_output/$pname" ){ - my $cmd = "cd $edgeui_wwwroot; $EDGE_HOME/scripts/munger/outputMunger_w_temp.pl $relpath/$pname $relpath/$pname/HTML_Report/report_web.html"; - `$cmd`; - print STDERR "$cmd"; - open REP, "$edgeui_output/$pname/HTML_Report/report_web.html" or die "Can't open report_web.html: $!"; +exit; + +###################################################### +sub generateReport { + my $projDir = shift; + my $complete_report_exist = 0; + chdir $edgeui_wwwroot; + + if( ! -e "$projDir/HTML_Report/.complete_report_web" ){ + my $cmd = "cd $edgeui_wwwroot; $EDGE_HOME/scripts/munger/outputMunger_w_temp.pl $projDir $projDir/HTML_Report/report_web.html"; + `$cmd`; + #print STDERR "outputMunger_w_temp.pl ran!\n"; + } + else{ + $complete_report_exist = 1; + #print STDERR "outputMunger_w_temp.pl NOT ran!\n"; + } + + open REP, "$projDir/HTML_Report/report_web.html" or die "Can't open report_web.html: $!"; my $pr=0; my @htmls; - while(){ + foreach(){ last if //; push @htmls, $_ if $pr; $pr=1 if /id='edge-content-report'/; + + if( $_ =~ /Project Status: (complete|archived)/i && !$complete_report_exist ){ + `touch $projDir/HTML_Report/.complete_report_web`; + } } close REP; my $html = join "", @htmls; - #$html =~ s/>\s+/tmp/edge_report$$.log"; - #print LOG $test; - #close LOG; } -exit; - -###################################################### +sub scanProjToList { + my $out_dir = shift; + my $list; + opendir(BIN, $out_dir) or die "Can't open $out_dir: $!"; + while( defined (my $file = readdir BIN) ) + { + next if $file eq '.' or $file eq '..'; + my $projid; + my $projCode; + if ( -d "$out_dir/$file" && -r "$out_dir/$file/config.txt" ) + { + open ( CONFIG, "$out_dir/$file/config.txt") or die "Cannot open $out_dir/$file/config.txt\n"; + while() + { + last if (/^\[Down/); + if (/^projid=(\S+)/) + { + $projid=$1; + } + if (/^projcode=(\S+)/) + { + $projCode=$1; + } + } + close CONFIG; + $projid ||= $file; + $list->{$projid} = $file; + $list->{$file} = $file; + $list->{$projCode} = $file; + } + } + closedir(BIN); + return $list; +} sub getSysParamFromConfig { my $config = shift; @@ -83,3 +178,55 @@ sub getSysParamFromConfig { } +sub getProjCodeFromDB{ + my $projectID=shift; + $projectID = &getProjID($projectID); + my $username = shift; + my $password = shift; + + my %data = ( + email => $username, + password => $password, + project_id => $projectID + ); + + $um_url ||= "$protocol//$domain/userManagement"; + # Encode the data structure to JSON + my $data = to_json(\%data); + #w Set the request parameters + my $url = $um_url ."WS/project/getInfo"; + my $browser = LWP::UserAgent->new; + my $req = PUT $url; + $req->header('Content-Type' => 'application/json'); + $req->header('Accept' => 'application/json'); + #must set this, otherwise, will get 'Content-Length header value was wrong, fixed at...' warning + $req->header( "Content-Length" => length($data) ); + $req->content($data); + + my $response = $browser->request($req); + my $result_json = $response->decoded_content; + # print $result_json if (@ARGV); + my $hash_ref = from_json($result_json); + + my $id = $hash_ref->{id}; + my $project_name = $hash_ref->{name}; + my $projCode = $hash_ref->{code}; + my $projStatus = $hash_ref->{status}; + + return ($projCode,$projStatus); +} +sub getProjID { + my $project=shift; + my $projID = $project; + if ( -d "$out_dir/$project"){ # use ProjCode as dir + open (my $fh, "$out_dir/$project/config.txt") or die "Cannot open $out_dir/$project/config.txt\n"; + while(<$fh>){ + if (/^projid=(\S+)/){ + $projID = $1; + last; + } + } + } + return $projID; +} + diff --git a/edge_ui/cgi-bin/edge_sample_metadata.cgi b/edge_ui/cgi-bin/edge_sample_metadata.cgi new file mode 100755 index 00000000..7cf4f343 --- /dev/null +++ b/edge_ui/cgi-bin/edge_sample_metadata.cgi @@ -0,0 +1,217 @@ +#!/usr/bin/env perl + +use strict; +use CGI qw(:standard); +use CGI::Carp qw(warningsToBrowser fatalsToBrowser); +use FindBin qw($RealBin); +use JSON; +require "edge_user_session.cgi"; + +my $cgi = CGI->new; +my %opt = $cgi->Vars(); +my $pname = $opt{proj}; +my $sid = $opt{'sid'}; +my $prealname = $opt{projname}; +my $action = $opt{'action'}; + +my $EDGE_HOME = $ENV{EDGE_HOME}; +$EDGE_HOME ||= "$RealBin/../.."; + +# read system params from sys.properties +my $sysconfig = "$RealBin/../sys.properties"; +my $sys = &getSysParamFromConfig($sysconfig); + +my $info; +if ($action eq "check"){ + if ($sys->{edge_sample_metadata}){ + $info->{metadata} = "on"; + }else{ + $info->{metadata} = "off "; + } + + &returnStatus(); +} +# session check +if( $sys->{user_management} ){ + my $valid = verifySession($sid); + if(!$valid){ + my $html = "Invalid session. Please login again!"; + print "Content-Type: text/html\n\n", + $html; + exit; + } +} + +my $edgeui_wwwroot = $sys->{edgeui_wwwroot}; +my $edgeui_output = $sys->{edgeui_output}; +my ($relpath) = $edgeui_output =~ /^$edgeui_wwwroot\/(.*)$/; +my $proj_list=&scanProjToList($edgeui_output); + +if( $proj_list->{$pname} ){ + if($action eq "edit") { + my $projDir = $relpath . "/". $proj_list->{$pname}; + chdir $edgeui_wwwroot; + my $outHtml = "$projDir/Metadata/update.html"; + my $cmd = "cd $edgeui_wwwroot; $EDGE_HOME/scripts/metadata/outputMetadata_w_temp.pl $projDir $outHtml $prealname"; + `$cmd`; + #print STDERR "$cmd"; + + open REP, "$outHtml" or die "Can't open $outHtml: $!"; + my $pr=0; + my @htmls; + while(){ + last if //; + push @htmls, $_ if $pr; + $pr=1 if /id='edge-content-report'/; + } + + close REP; + + my $html = join "", @htmls; + #$html =~ s/>\s+/tmp/edge_report$$.log"; + #print LOG $html; + #close LOG; + } elsif($action eq "save") { + my $msg; + $msg->{SUBMISSION_STATUS}="success"; + + my $projDir = $edgeui_output . "/". $proj_list->{$pname}; + my $metadata_out = "$projDir/sample_metadata.txt"; + + #get bsveid + my $bsveId; + if( -e $metadata_out ){ + $bsveId = `grep -a "bsve_id=" $metadata_out | awk -F'=' '{print \$2}'`; + chomp $bsveId; + } + #save changes + if(open OUT, ">$metadata_out") { + print OUT "type=".$opt{'edge-sample-type-edit'}."\n" if ( $opt{'edge-sample-type-edit'} ); + if( $opt{'edge-sample-type-edit'} eq "human") { + if($opt{'pg-cb-gender-edit'}) { + print OUT "gender=".$opt{'edge-pg-gender-edit'}."\n"; + } + if($opt{'pg-cb-age-edit'}) { + print OUT "age=".$opt{'edge-pg-age-edit'}."\n"; + } + } + + if( $opt{'edge-sample-type-edit'} eq "human" || $opt{'edge-sample-type-edit'} eq "animal") { + print OUT "host=".$opt{'edge-pg-host-edit'}."\n"; + print OUT "host_condition=".$opt{'edge-pg-host-condition-edit'}."\n"; + print OUT "source=".$opt{'edge-sample-source-host-edit'}."\n"; + } else { + print OUT "source=".$opt{'edge-sample-source-nonhost-edit'}."\n"; + } + print OUT "source_detail=".$opt{'edge-pg-sample-source-detail-edit'}."\n"; + print OUT "collection_date=".$opt{'edge-pg-collection-date-edit'}."\n" if ( $opt{'edge-pg-collection-date-edit'} ); + print OUT "city=".$opt{'locality'}."\n" if ( $opt{'locality'} ); + print OUT "state=".$opt{'administrative_area_level_1'}."\n" if ( $opt{'administrative_area_level_1'} ); + print OUT "country=".$opt{'country'}."\n" if ( $opt{'country'} ); + print OUT "lat=".$opt{'lat'}."\n" if ( $opt{'lat'} ); + print OUT "lng=".$opt{'lng'}."\n" if ( $opt{'lng'} ); + print OUT "seq_platform=".$opt{'edge-pg-seq-platform-edit'}."\n" if ( $opt{'edge-pg-seq-platform-edit'} ); + + if($opt{'edge-pg-seq-platform-edit'} eq "Illumina") { + print OUT "sequencer=".$opt{'edge-pg-sequencer-ill-edit'}."\n"; + } elsif($opt{'edge-pg-seq-platform-edit'} eq "IonTorrent") { + print OUT "sequencer=".$opt{'edge-pg-sequencer-ion-edit'}."\n"; + } elsif($opt{'edge-pg-seq-platform-edit'} eq "Nanopore-edit") { + print OUT "sequencer=".$opt{'edge-pg-sequencer-nan-edit'}."\n"; + } elsif($opt{'edge-pg-seq-platform-edit'} eq "PacBio") { + print OUT "sequencer=".$opt{'edge-pg-sequencer-pac-edit'}."\n"; + } + + print OUT "seq_date=".$opt{'edge-pg-seq-date-edit'}."\n" if ( $opt{'edge-pg-seq-date-edit'} ); + + print OUT "bsve_id=".$bsveId."\n" if ($bsveId); + + close OUT; + } else { + $msg->{SUBMISSION_STATUS}="failure"; + + } + + # return json + my $json = encode_json($msg); + print $cgi->header('application/json'), $json; + } else { + my $msg; + $msg->{SUBMISSION_STATUS}="failure"; + + # return json + my $json = encode_json($msg); + print $cgi->header('application/json'), $json; + } +} + +exit; + +###################################################### + +sub scanProjToList { + my $out_dir = shift; + my $list; + opendir(BIN, $out_dir) or die "Can't open $out_dir: $!"; + while( defined (my $file = readdir BIN) ) { + next if $file eq '.' or $file eq '..'; + my $projid; + my $projCode; + if ( -d "$out_dir/$file" && -r "$out_dir/$file/config.txt" ) { + open ( CONFIG, "$out_dir/$file/config.txt") or die "Cannot open $out_dir/$file/config.txt\n"; + while(){ + last if (/^\[Down/); + if (/^projid=(\S+)/){ + $projid=$1; + } + if (/^projcode=(\S+)/){ + $projCode=$1; + } + } + close CONFIG; + $projid ||= $file; + $list->{$projid} = $file; + $list->{$file} = $file; + $list->{$projCode} = $file; + } + } + closedir(BIN); + return $list; +} + +sub getSysParamFromConfig { + my $config = shift; + my $sys; + open CONF, $config or die "Can't open $config: $!"; + while(){ + if( /^\[system\]/ ){ + while(){ + chomp; + last if /^\[/; + if ( /^([^=]+)=([^=]+)/ ){ + $sys->{$1}=$2; + } + } + } + last; + } + close CONF; + return $sys; +} + + +sub returnStatus { + my $json; + $json = to_json( $info ) if $info; + $json = to_json( $info, { ascii => 1, pretty => 1 } ) if $info && $ARGV[0]; + print $cgi->header('application/json'), $json; + exit; +} diff --git a/edge_ui/cgi-bin/edge_submit.cgi b/edge_ui/cgi-bin/edge_submit.cgi index 7fa530b3..397d77f3 100755 --- a/edge_ui/cgi-bin/edge_submit.cgi +++ b/edge_ui/cgi-bin/edge_submit.cgi @@ -18,8 +18,9 @@ use CGI qw(:standard); #use CGI::Carp qw(fatalsToBrowser); use POSIX qw(strftime); use Digest::MD5 qw(md5_hex); -#use Data::Dumper; +use Data::Dumper; require "edge_user_session.cgi"; +require "../cluster/clusterWrapper.pl"; my $cgi = CGI->new; my %opt = $cgi->Vars(); @@ -30,16 +31,31 @@ $EDGE_HOME ||= "$RealBin/../.."; my $msg; my $excode; -# read system params from config template -my $config_tmpl = "$RealBin/edge_config.tmpl"; -my $sys = &getSysParamFromConfig( -e $opt{"edge-input-config"} ? $opt{"edge-input-config"} : $config_tmpl ); +my $projConfigTmpl = "$RealBin/edge_config.tmpl"; +# read system params from sys.properties +my $sysconfig = "$RealBin/../sys.properties"; +my $sys = &getSysParamFromConfig($sysconfig); my $um_url = $sys->{edge_user_management_url}; -my $protocol = $opt{protocol}; -my $domain = $ENV{'HTTP_HOST'}; +my $protocol = $opt{protocol}|| 'http:'; +my $domain = $ENV{'HTTP_HOST'} || 'edge-bsve.lanl.gov'; $um_url ||= "$protocol//$domain/userManagement"; +my ($webhostname) = $domain =~ /^(\S+?)\./; my $debug = $sys->{debug}; +my $request_uri = $ENV{'REQUEST_URI'}; + +#cluster +my $cluster = $sys->{cluster}; +my $cluster_qsub_options= $sys->{cluster_qsub_options}; +my $cluster_job_resource= $sys->{cluster_job_resource}; +my $cluster_job_max_cpu= $sys->{cluster_job_max_cpu}; +my $cluster_job_notify = $sys->{cluster_job_notify}; +my $cluster_job_prefix = $sys->{cluster_job_prefix}; +my $cluster_tmpl = "$RealBin/../cluster/clusterSubmit.tmpl"; +$sys->{edgeui_input} = "$sys->{edgeui_input}"."/$webhostname" if ( -d "$sys->{edgeui_input}/$webhostname"); +$sys->{edgeui_output} = "$sys->{edgeui_output}"."/$webhostname" if ( -d "$sys->{edgeui_output}/$webhostname"); #init vars +my $pipeline = $opt{pipeline}; my $pname = $opt{'edge-proj-name'} || $ARGV[0]; my $edge_input = $sys->{edgeui_input}; my $input_dir = "$edge_input/public"; @@ -48,10 +64,11 @@ my $out_dir = $opt{"edge-proj-outpath"}; $out_dir ||= $sys->{edgeui_output}; my $edge_total_cpu = $sys->{"edgeui_tol_cpu"}; my $num_cpu = $opt{"edge-proj-cpu"}; -$num_cpu ||= 4; -my $username = $opt{'username'} || $ARGV[1]; -my $password = $opt{'password'} || $ARGV[2]; -my $sid = $opt{'sid'} || $ARGV[3]; +$edge_total_cpu = $cluster_job_max_cpu if ($cluster); +if(!$num_cpu){ $num_cpu=2; $opt{"edge-proj-cpu"}=2; } +my $username = $opt{'username'}; +my $password = $opt{'password'}; +my $sid = $opt{'sid'}; #my $proj_dir = "$out_dir/$opt{'edge-proj-name'}"; #my $config_out = "$proj_dir/config.txt"; @@ -63,8 +80,62 @@ my $hostlist = &readListFromJson($host_list); my @edge_input_pe1 = split /[\x0]/, $opt{"edge-input-pe1[]"}; my @edge_input_pe2 = split /[\x0]/, $opt{"edge-input-pe2[]"}; my @edge_input_se = split /[\x0]/, $opt{"edge-input-se[]"}; +my @edge_qiime_mapping_files = split /[\x0]/, $opt{"edge-qiime-mapping-file-input[]"}; +my $edge_qiime_input_dir = $opt{"edge-qiime-reads-dir-input"}; +my @edge_qiime_barcode_input; my @edge_phylo_ref_input; my @edge_ref_input; +my $projlist; +my @pnames; + +##### Logan add Specialty Gene Options Convert to Percent##### +my $sb_min_id = sprintf("%.3f", $opt{"edge-sg-identity-options"}); +$opt{"edge-sg-identity-options"} = $sb_min_id/100; +my $sb_min_len = sprintf("%.3f", $opt{"edge-sg-length-options"}); +$opt{"edge-sg-length-options"} = $sb_min_len/100; + +##### Chienchi add for batch sra submit ####### +my $batch_sra_run=0; +if ($ARGV[0] && $ARGV[1] && $ARGV[2]){ + $batch_sra_run=1; + $sys->{user_management}=0; + $opt{'edge-proj-name'} = $pname; + $opt{'edge-sra-sw'} =1; + $opt{'edge-sra-acc'} = $ARGV[1]; + $opt{'edge-proj-desc'} = $ARGV[2]; + $opt{'edge-qc-sw'} =1; + $opt{'edge-qc-q'} = 5; + $opt{'edge-qc-minl'} = 50; + $opt{'edge-qc-avgq'} = 0; + $opt{'edge-qc-n'} = 0; + $opt{'edge-qc-lc'} = 0.85; + $opt{'edge-qc-5end'} = 0; + $opt{'edge-qc-3end'} = 0; + + $opt{'edge-assembly-sw'}=0; + $opt{'edge-taxa-allreads'} =1; + $opt{'edge-taxa-enabled-tools'}="gottcha-genDB-b,gottcha-speDB-b,gottcha-strDB-b,gottcha-genDB-v,gottcha-speDB-v,gottcha-strDB-v,bwa"; + + ###sample metadata + $opt{"edge-metadata-sw"} = 1; + $opt{'edge-sample-type'} = $ARGV[3]; + $opt{'edge-sample-source-host'} = $ARGV[4]; + $opt{'edge-sample-source-nonhost'} = $ARGV[4]; + $opt{'edge-pg-collection-date'} = $ARGV[5]; + $opt{'locality'} = $ARGV[6] if $ARGV[6] ne "NA"; + $opt{'administrative_area_level_1'} = $ARGV[7] if $ARGV[7] ne "NA"; + $opt{'country'} = $ARGV[8]; + $opt{'lat'} = $ARGV[9]; + $opt{'lng'} = $ARGV[10]; + $opt{'edge-pg-seq-platform'} = $ARGV[11]; + $opt{'edge-pg-sequencer-ill'} = $ARGV[12]; + $opt{'edge-pg-sequencer-ion'} = $ARGV[12]; + $opt{'edge-pg-sequencer-nan'} = $ARGV[12]; + $opt{'edge-pg-sequencer-pac'} = $ARGV[12]; + #END +} +################### + #check session if( $sys->{user_management} ){ my $valid = verifySession($sid); @@ -74,19 +145,36 @@ if( $sys->{user_management} ){ } else{ ($username,$password) = getCredentialsFromSession($sid); - $input_dir="$edge_input/". md5_hex($username); + $input_dir="$edge_input/". md5_hex($username); #full path to file + } +} + +# Qiime dir submit +if ($edge_qiime_input_dir){ + my ($pe1_file_r,$pe2_file_r,$se_file_r) = &parse_qiime_mapping_files($edge_qiime_input_dir,\@edge_qiime_mapping_files); + @edge_input_pe1 = @{$pe1_file_r}; + @edge_input_pe2 = @{$pe2_file_r}; + @edge_input_se = @{$se_file_r}; + $opt{"edge-qiime-reads-dir-input"}="$input_dir/$edge_qiime_input_dir"; +} + +# Reconfig +if( $opt{"type"} eq "reconfig" ){ + if ($username && $password){ + $pname = $opt{'rec_projname'}; + $projlist->{$pname}->{projCode} = $opt{'rec_projcode'}; } } # batch submit -my $projlist; -my @pnames; -if ($opt{"edge-batch-text-input"}){ - $projlist=&readBatchInput(); +if ($opt{"edge-batch-input-excel"}) +{ + $projlist = &readBatchInput(); @pnames = keys %{$projlist}; }else{ - push @pnames, $pname ; + push @pnames, $pname ; } + my @real_names = @pnames; #init SUBMISSION_STATUS @@ -95,6 +183,13 @@ $msg->{SUBMISSION_STATUS}="success"; # validating parameters &checkParams(); +# if reconfig only +if( $opt{"type"} eq "reconfig" ){ + &createConfig( "reconfig" ) if $msg->{SUBMISSION_STATUS} eq 'success'; + &createSampleMetadataFile() if $msg->{SUBMISSION_STATUS} eq 'success'; + &returnStatus(); +} + if ($msg->{SUBMISSION_STATUS} eq 'success'){ #if user management is on. will replace pnames to unique IDs if ($username && $password){ @@ -106,7 +201,15 @@ if ($msg->{SUBMISSION_STATUS} eq 'success'){ } } -my ($vital, $name2pid) = &checkProjVital(); +my ($vital, $name2pid, $error); +if($cluster) { + ($vital, $name2pid, $error) = checkProjVital_cluster($cluster_job_prefix); + if($error) { + &addMessage("CLUSTER","failure",$error); + } +} else { + ($vital, $name2pid) = &checkProjVital(); +} # check no running duplications &checkRunningProject() if $msg->{SUBMISSION_STATUS} eq 'success'; @@ -117,29 +220,57 @@ my ($vital, $name2pid) = &checkProjVital(); # re-use config or generate one &createConfig() if $msg->{SUBMISSION_STATUS} eq 'success'; +#create sample_metadata.txt file +&createSampleMetadataFile() if $msg->{SUBMISSION_STATUS} eq 'success'; + # run pipeline -&runPipeline() if $msg->{SUBMISSION_STATUS} eq 'success'; +if($cluster) { + &runPipeline_cluster() if $msg->{SUBMISSION_STATUS} eq 'success'; +} else { + &runPipeline() if $msg->{SUBMISSION_STATUS} eq 'success'; +} # return &returnStatus(); ############################################################################ + +#adjust to call python script and pass in path as variable for python sub readBatchInput { - my $list={}; - my $proj_name; - foreach (split /\n/, $opt{"edge-batch-text-input"}) { - if (/^\#/) { next; } - unless (/\w/) { next; } - s/^\s+|\s+$//g; - chomp; - if (/^\[(.*)\]/) { $proj_name=$1; next; } - my ($key, $val) = split(/=/, $_); - if ($key ne "description"){ - $val =~ s/ //g; - } - $val="" if (!$val); - $list->{$proj_name}->{$key} = $val; - } + + my $excel_file = $opt{"edge-batch-input-excel"}; + $excel_file="$input_dir/".$excel_file if ($excel_file =~ /^\w/); + + if ( ! -f $excel_file){ + &addMessage("PARAMS","edge-batch-input-excel","Input error. Path to file incorrect. Check excel file upload"); + &returnStatus(); + } + + my $path_to_script = "$EDGE_HOME/scripts/importBatchExcelFile.py"; + + #open python file which is located in scripts. + #pass in $input_dir as location of xlsx file + my @output = `python $path_to_script $excel_file`; + + #create a hash + my $list; + my $temp_project_name; + + foreach my $test (@output){ + chomp $test; + next if ($test =~ /None/); + + my @data = split ",", $test; + $data[0] =~ s/\s/_/g; + #data[0] = project name, data[1] = q1, data[2] = q2 + #data[3] = desc + + #Nested hash ref + $list->{$data[0]}->{ "q1" }=$data[1]; + $list->{$data[0]}->{ "q2" }=$data[2]; + $list->{$data[0]}->{ "description" }=$data[3]; + } + #return outter hash ref return $list; } @@ -152,7 +283,8 @@ sub getSysParamFromConfig { while(){ chomp; last if /^\[/; - if ( /^([^=]+)=([^=]+)/ ){ + next if(/^#/); + if ( /^([^=]+)=(.*)/ ){ $sys->{$1}=$2; } } @@ -166,6 +298,7 @@ sub getSysParamFromConfig { sub createProjDir { foreach my $pname (@pnames){ my $proj_dir = "$out_dir/$pname"; + $proj_dir = "$out_dir/" . $projlist->{$pname}->{projCode} if ($username && $password); #clean the empty dir before checking the conflicted output path system("rmdir $proj_dir") if ( -d $proj_dir && is_folder_empty($proj_dir)); @@ -179,6 +312,7 @@ sub createProjDir { } foreach my $pname (@pnames){ my $proj_dir = "$out_dir/$pname"; + $proj_dir = "$out_dir/" . $projlist->{$pname}->{projCode} if ($username && $password); #init output directory $excode = system("mkdir -m 755 -p $proj_dir"); @@ -191,7 +325,8 @@ sub createProjDir { } #the user specified output path - if( $proj_dir ne "$sys->{edgeui_output}/$pname" ){ + if ($opt{"edge-proj-outpath"}){ + #if( $proj_dir ne "$sys->{edgeui_output}/$pname" ){ $excode = system("ln -sf $proj_dir $sys->{edgeui_output}/$opt{'edge-proj-name'}"); if( $excode ){ &addMessage("CREATE_OUTPUT","failure","FAILED to create symlink to $sys->{edgeui_output}."); @@ -210,6 +345,14 @@ sub is_folder_empty { sub createConfig { foreach my $pname (@pnames){ my $config_out = "$out_dir/$pname/config.txt"; + my $json_out = "$out_dir/$pname/config.json"; + $config_out = "$out_dir/" . $projlist->{$pname}->{projCode} . "/config.txt" if ($username && $password); + $json_out = "$out_dir/" . $projlist->{$pname}->{projCode} . "/config.json" if ($username && $password); + + #backup config first + `mv $config_out $config_out.bak` if( -e $config_out ); + `mv $json_out $json_out.bak` if( -e $json_out ); + if( defined $opt{"edge-input-config"} && -e $opt{"edge-input-config"} ){ open CFG, $opt{"edge-input-config"}; open CFG_OUT, ">$config_out"; @@ -228,6 +371,9 @@ sub createConfig { elsif( $line =~ /^projdesc=/ ){ $line =~ s/^projdesc=.*/projdesc=$opt{"edge-proj-desc"}/; } + elsif( $line =~ /^projid=/ ){ + $line =~ s/^projdesc=.*/projdesc=$pname/; + } print CFG_OUT "$line\n"; } close CFG_OUT; @@ -243,21 +389,6 @@ sub createConfig { $opt{"edge-hostrm-file"} = join ",", keys %hosts; } - if ( $opt{"edge-ref-sw"} ) - { - my (@refs,@refsl); - if( defined $opt{"edge-ref-file-fromlist"}){ - @refsl = split /[\x0]/, $opt{"edge-ref-file-fromlist"}; - map { my @tmp= `ls -d $EDGE_HOME/database/NCBI_genomes/$_*`; - chomp @tmp; - my @gfiles = `ls $tmp[0]/*gbk`; - chomp @gfiles; - push @refs,@gfiles; - } @refsl; - } - push @refs, @edge_ref_input if @edge_ref_input; - $opt{"edge-ref-file"} = join ",", @refs; - } if ($opt{"edge-phylo-sw"}) { my @snpPhylo_refs; @@ -269,11 +400,18 @@ sub createConfig { $opt{"edge-taxa-enabled-tools"} =~ s/[\x0]/,/g if $opt{"edge-taxa-sw"}; $opt{'edge-sra-acc'} = uc $opt{'edge-sra-acc'}; $opt{'edge-phylo-sra-acc'} = uc $opt{'edge-phylo-sra-acc'}; - $opt{"edge-proj-desc"} = $projlist->{$pname}->{"description"} if ($opt{"edge-batch-text-input"}); - $opt{"edge-proj-name"} = $projlist->{$pname}->{"REALNAME"} if ($opt{"edge-batch-text-input"}); + $opt{'edge-qiime-mapping-files'} = join ",", @edge_qiime_mapping_files if @edge_qiime_mapping_files; + $opt{'edge-qiime-barcode-fq-files'} = join ",", @edge_qiime_barcode_input if @edge_qiime_barcode_input; + + $opt{"edge-proj-desc"} = $projlist->{$pname}->{"description"} if ($opt{"edge-batch-input-excel"}); + $opt{"edge-proj-name"} = $projlist->{$pname}->{"REALNAME"}||$pname if ($opt{"edge-batch-input-excel"}); + $opt{"edge-proj-id"} = $pname; + $opt{"edge-proj-code"} = $projlist->{$pname}->{projCode}; + $opt{"edge-proj-runhost"} = ($request_uri =~ /edge_ui/)?"$protocol//$domain/edge_ui":"$protocol//$domain"; + $opt{"edge-proj-owner"} = $username if ($username); eval { - my $template = HTML::Template->new(filename => $config_tmpl, die_on_bad_params => 0 ); + my $template = HTML::Template->new(filename => $projConfigTmpl, die_on_bad_params => 0 ); $template->param( %opt ); open CONFIG, ">$config_out" or die "Can't write config file: $!"; @@ -288,6 +426,8 @@ sub createConfig { else{ &addMessage("GENERATE_CONFIG","success","Config file generated."); } + + saveListToJason( \%opt, $json_out ); } } } @@ -306,14 +446,16 @@ sub runPipeline { my $proj_count=1; foreach my $pname (@pnames){ my $proj_dir = "$out_dir/$pname"; + $proj_dir = "$out_dir/" . $projlist->{$pname}->{projCode} if ($username && $password); my $config_out = "$proj_dir/config.txt"; my ($paired_files, $single_files) = ("",""); my $process_parameters = "-c $config_out -o $proj_dir -cpu $num_cpu -noColorLog "; - if ($opt{"edge-batch-text-input"}){ - $paired_files = qq|$projlist->{$pname}->{"q1"} $projlist->{$pname}->{"q2"}| if (-f $projlist->{$pname}->{"q1"}); - $single_files = $projlist->{$pname}->{"s"} if (-f $projlist->{$pname}->{"s"}); - }else{ + + if ($opt{"edge-batch-input-excel"}){ + $paired_files = qq|$projlist->{$pname}->{"q1"} $projlist->{$pname}->{"q2"}| if ( -f $projlist->{$pname}->{"q1"}); + $single_files = $projlist->{$pname}->{"s"} if ( -f $projlist->{$pname}->{"s"}); + }else{ for (0..$#edge_input_pe1) { $paired_files .= "$edge_input_pe1[$_] $edge_input_pe2[$_] "; @@ -355,16 +497,92 @@ sub runPipeline { } } +sub runPipeline_cluster { + my $proj_count=1; + if($num_cpu > $cluster_job_max_cpu) { + $num_cpu = $cluster_job_max_cpu; + } + + if($cluster_job_resource =~ //) { + #uge + if($num_cpu %2 == 1) { + $num_cpu --; + } + + my $binding_cpu = $num_cpu/2; + $cluster_job_resource =~ s//$binding_cpu/; + } + $cluster_job_resource =~ s//$num_cpu/; + + foreach my $pname (@pnames){ + my $job_name = $cluster_job_prefix.$pname; + my $proj_dir = "$out_dir/$pname"; + $proj_dir = "$out_dir/" . $projlist->{$pname}->{projCode} if ($username && $password); + my $config_out = "$proj_dir/config.txt"; + my $cluster_job_script = "$proj_dir/clusterSubmit.sh"; + my $cluster_job_log = "$proj_dir/clusterJob.log"; + my ($paired_files, $single_files) = ("",""); + my $process_parameters = "-c $config_out -o $proj_dir -cpu $num_cpu -noColorLog "; + + if ($opt{"edge-batch-input-excel"}){ + $paired_files = qq|$projlist->{$pname}->{"q1"} $projlist->{$pname}->{"q2"}| if ( -f $projlist->{$pname}->{"q1"}); + $single_files = $projlist->{$pname}->{"s"} if ( -f $projlist->{$pname}->{"s"}); + }else{ + for (0..$#edge_input_pe1) + { + $paired_files .= "$edge_input_pe1[$_] $edge_input_pe2[$_] "; + } + + $single_files = join " ", @edge_input_se; + } + $process_parameters .= " --debug " if ($debug); + $process_parameters .= " -p $paired_files " if ($paired_files); + $process_parameters .= " -u $single_files " if ($single_files); + + my $cmd = "$EDGE_HOME/runPipeline $process_parameters > $proj_dir/process_current.log"; + + open CT, $cluster_tmpl; + open CT_OUT, ">$cluster_job_script"; + while() { + chomp; + if(//) { + s//$job_name/; + } elsif (//) { + s//$cluster_job_resource/; + } elsif(//) { + s//$cluster_job_notify/; + } elsif (//) { + s//$cluster_job_log/; + } elsif (//) { + s//$cmd/; + } + print CT_OUT "$_\n"; + } + close CT_OUT; + close CT; + &addMessage("CLUSTER","info","Create job script: clusterSubmit.sh"); + + my ($job_id,$error) = clusterSubmitJob($cluster_job_script,$cluster_qsub_options); + if($error) { + &addMessage("CLUSTER","failure","FAILED to submit $cluster_job_script: $error"); + } else { + &addMessage("CLUSTER","info","job id: $job_id"); + } + $proj_count++; + } +} + sub addProjToDB{ my $desc; foreach my $pname_index (0..$#pnames){ my $pname = $pnames[$pname_index]; - if ($opt{"edge-batch-text-input"}){ + if ($opt{"edge-batch-input-excel"}){ $desc = $projlist->{$pname}->{description}; }else{ $desc = $opt{"edge-proj-desc"}; } $desc =~ s/(['"])/\\$1/g; + my %data = ( email => $username, password => $password, @@ -388,31 +606,62 @@ sub addProjToDB{ #print $result_json,"\n"; my $info = from_json($result_json); my $new_id = $info->{"id"}; + my $projCode = &getProjcode($new_id); $pnames[$pname_index] = $new_id; &addMessage("PROJECT_NAME","info","Assigned project $pname with ID $new_id"); + &addMessage("ASSIGN_PROJ_ID","failure","Database doens't assign $pname a project ID. You may not be logged in properly. Please contact admins.") if (!$new_id); # assign value to new project id. - if ($opt{"edge-batch-text-input"}){ + if ($opt{"edge-batch-input-excel"}){ foreach my $key (keys %{$projlist->{$pname}}){ $projlist->{$new_id}->{$key} = $projlist->{$pname}->{$key}; + $projlist->{$new_id}->{projCode} = $projCode; } } $projlist->{$new_id}->{REALNAME} = $pname; + $projlist->{$new_id}->{projCode} = $projCode; my $user_project_dir = "$input_dir/MyProjects/${pname}_$new_id"; - `ln -sf $edge_output/$new_id $user_project_dir` if (! -e $user_project_dir); + #`ln -sf $edge_output/$new_id $user_project_dir` if (! -e $user_project_dir); + `ln -sf $edge_output/$projCode $user_project_dir` if (! -e $user_project_dir); } } +sub getProjcode { + my $id = shift; + my %data = ( + email => $username, + password => $password, + project_id => $id + ); + # Encode the data structure to JSON + my $data = encode_json(\%data); + + # Set the request parameters + my $url = $um_url. 'WS/project/getInfo'; + my $browser = LWP::UserAgent->new; + my $req = PUT $url; + $req->header('Content-Type' => 'application/json'); + $req->header('Accept' => 'application/json'); + #must set this, otherwise, will get 'Content-Length header value was wrong, fixed at...' warning + $req->header( "Content-Length" => length($data) ); + $req->content($data); + + my $response = $browser->request($req); + my $result_json = $response->decoded_content; + my $info = from_json($result_json); + return $info->{"code"}; +} + sub availableToRun { my $num_cpu = shift; my $cpu_been_used = 0; - return 0 if ($num_cpu > $sys->{edgeui_tol_cpu}); if( $sys->{edgeui_auto_queue} && $sys->{edgeui_tol_cpu} ){ foreach my $pid ( keys %$vital ){ $cpu_been_used += $vital->{$pid}->{CPU}; - return 0 if $cpu_been_used + $num_cpu > $sys->{edgeui_tol_cpu}; + return 0 if (($cpu_been_used + $num_cpu) > $sys->{edgeui_tol_cpu}); } + return 0 if ($num_cpu > $sys->{edgeui_tol_cpu}); } return 1; } @@ -477,49 +726,59 @@ sub addMessage { } sub checkParams { + my %files; if ($num_cpu > $edge_total_cpu){ &addMessage("PARAMS","edge-proj-cpu","The max number of CPU for the EDGE Server is $edge_total_cpu."); } - if ( ($opt{"edge-batch-text-input"}) and ($opt{"edge-proj-desc"} or $opt{"edge-input-pe1[]"} or $opt{"edge-input-pe2[]"} or $opt{"edge-input-se[]"} or $opt{"edge-sra-acc"})){ + if ( ($opt{"edge-batch-input-excel"}) and ($opt{"edge-proj-desc"} or $opt{"edge-input-pe1[]"} or $opt{"edge-input-pe2[]"} or $opt{"edge-input-se[]"} or $opt{"edge-sra-acc"})){ &addMessage("PARAMS","edge-input-sequence","Input error. You have both single project input and batch input."); - } + } - if ( $opt{"edge-batch-text-input"} ){ ## batch input - my %namesUsed; + if ( $opt{"edge-batch-input-excel"} ){ ## batch input + my %namesUsed; foreach my $pname (keys %{$projlist}){ - $projlist->{$pname}->{"q1"} = "$input_dir/$projlist->{$pname}->{'q1'}"; - $projlist->{$pname}->{"q2"} = "$input_dir/$projlist->{$pname}->{'q2'}"; - $projlist->{$pname}->{"s"} = "$input_dir/$projlist->{$pname}->{'s'}"; - my $pe1=$projlist->{$pname}->{"q1"}; - my $pe2=$projlist->{$pname}->{"q2"}; - my $se=$projlist->{$pname}->{"s"}; - - if ($namesUsed{$pname}){ - &addMessage("PARAMS","edge-batch-text-input", "Duplicate project name found."); - }else{ - $namesUsed{$pname}=1; - } - &addMessage("PARAMS","edge-batch-text-input","Invalid project name. Only alphabets, numbers and underscore are allowed in project name.") if ($pname =~ /\W/); - &addMessage("PARAMS","edge-batch-text-input","Invalid project name. Please input at least 3 characters.") if (length($pname) < 3); - &addMessage("PARAMS","edge-batch-text-input","Invalid characters detected in $pe1 of $pname.") if ( -f $pe1 and $pe1 =~ /[\<\>\!\~\@\#\$\^\&\;\*\(\)\"\' ]/); - &addMessage("PARAMS","edge-batch-text-input","Invalid characters detected in $pe2 of $pname.") if ( -f $pe2 and $pe2 =~ /[\<\>\!\~\@\#\$\^\&\;\*\(\)\"\' ]/); - &addMessage("PARAMS","edge-batch-text-input","Invalid characters detected in $pe2 of $pname.") if ( -f $se and $se =~ /[\<\>\!\~\@\#\$\^\&\;\*\(\)\"\' ]/); - &addMessage("PARAMS","edge-batch-text-input","Input error. Please check the q1 file path of $pname.") if ( -f $pe1 && $pe1 !~ /^[http|ftp]/i && ! -e $pe1); - &addMessage("PARAMS","edge-batch-text-input","Input error. Please check the q2 file path of $pname.") if ( -f $pe2 && $pe2 !~ /^[http|ftp]/i && ! -e $pe2); - &addMessage("PARAMS","edge-batch-text-input","Input error. q1 and q2 are identical of $pname.") if ( -f $pe1 && $pe1 eq $pe2); - &addMessage("PARAMS","edge-batch-text-input","Input error. Please check the s file path of $pname.") if (-f $se && $se !~ /^[http|ftp]/i && ! -e $se); - &addMessage("PARAMS","edge-batch-text-input","Input error. Please check the input file path of $pname.") if (! -f $se && ! -f $pe1 && ! -f $pe2); + $projlist->{$pname}->{"q1"} = "$input_dir/$projlist->{$pname}->{'q1'}" if ($projlist->{$pname}->{"q1"} =~ /^\w/); + $projlist->{$pname}->{"q2"} = "$input_dir/$projlist->{$pname}->{'q2'}" if ($projlist->{$pname}->{"q2"} =~ /^\w/); + $projlist->{$pname}->{"s"} = "$input_dir/$projlist->{$pname}->{'s'}" if ($projlist->{$pname}->{"s"} =~ /^\w/); + my $pe1=$projlist->{$pname}->{"q1"}; + my $pe2=$projlist->{$pname}->{"q2"}; + my $se=$projlist->{$pname}->{"s"}; + + if ($namesUsed{$pname}){ + &addMessage("PARAMS","edge-batch-input-excel", "Duplicate project name found."); + }else{ + $namesUsed{$pname}=1; } + &addMessage("PARAMS","edge-batch-input-excel","Invalid project name. Only alphabets, numbers and underscore are allowed in project name.") if ($pname =~ /\W/); + &addMessage("PARAMS","edge-batch-input-excel","Invalid project name. Please input at least 3 characters but less than 30 .") if (length($pname) < 3 || length($pname) > 30); + &addMessage("PARAMS","edge-batch-input-excel","Invalid characters detected in $pe1 of $pname.") if (-f $pe1 and $pe1 =~ /[\<\>\!\~\@\#\$\^\&\;\*\(\)\"\' ]/); + &addMessage("PARAMS","edge-batch-input-excel","Invalid characters detected in $pe2 of $pname.") if (-f $pe2 and $pe2 =~ /[\<\>\!\~\@\#\$\^\&\;\*\(\)\"\' ]/); + &addMessage("PARAMS","edge-batch-input-excel","Invalid characters detected in $pe2 of $pname.") if (-f $se and $se =~ /[\<\>\!\~\@\#\$\^\&\;\*\(\)\"\' ]/); + &addMessage("PARAMS","edge-batch-input-excel","Input error. Please check the q1 file path of $pname.") if (-f $pe1 && $pe1 !~ /^[http|ftp]/i && ! -e $pe1); + &addMessage("PARAMS","edge-batch-input-excel","Input error. Please check the q2 file path of $pname.") if (-f $pe2 && $pe2 !~ /^[http|ftp]/i && ! -e $pe2); + &addMessage("PARAMS","edge-batch-input-excel","Input error. q1 and q2 are identical of $pname.") if ( -f $pe1 && $pe1 eq $pe2); + &addMessage("PARAMS","edge-batch-input-excel","Input error. Please check the s file path of $pname.") if (-f $se && $se !~ /^[http|ftp]/i && ! -e $se); + &addMessage("PARAMS","edge-batch-input-excel","Input error. Please check the input file path of $pname.") if (! -f $se && ! -f $pe1 && ! -f $pe2); + } }else{ ## Single project input - my %files; &addMessage("PARAMS","edge-proj-name","Invalid project name. Only alphabets, numbers, dashs, dot and underscore are allowed in project name.") if( $opt{"edge-proj-name"} =~ /[^a-zA-Z0-9\-_\.]/ ); - &addMessage("PARAMS","edge-proj-name","Invalid project name. Please input at least 3 characters.") if( length($opt{"edge-proj-name"}) < 3 ); + &addMessage("PARAMS","edge-proj-name","Invalid project name. Please input at least 3 characters but less than 30.") if( length($opt{"edge-proj-name"}) < 3 || length($pname) > 30 ); #check invalid character foreach my $param (keys %opt ){ next if $param eq "edge-proj-desc"; - next if $param eq "edge-batch-text-input"; next if $param eq "username"; next if $param eq "password"; + next if $param =~ /aligner-options/; + ##sample metadata + next if $param =~ /edge-pg/; + next if $param =~ /edge-sample/; + next if $param eq "locality"; + next if $param eq "administrative_area_level_1"; + next if $param eq "country"; + next if $param eq "lat"; + next if $param eq "lng"; + next if $param eq "keywords"; + &addMessage("PARAMS","$param","$param Invalid characters detected.") if $opt{$param} =~ /[\<\>\!\~\@\#\$\^\&\;\*\(\)\"\' ]/; } @@ -570,27 +829,61 @@ sub checkParams { &addMessage("PARAMS","edge-sra-acc","Input error. Please input SRA accession") if ( ! $opt{'edge-sra-acc'}); }else{ if (!@edge_input_pe1 && !@edge_input_pe2 && !@edge_input_se){ - &addMessage("PARAMS","edge-input-pe1-1","Input error. Please check the file path."); - &addMessage("PARAMS","edge-input-pe2-1","Input error. Please check the file path."); - &addMessage("PARAMS","edge-input-se1","Input error. Please check the file path."); + &addMessage("PARAMS","edge-input-pe1-1","Input error."); + &addMessage("PARAMS","edge-input-pe2-1","Input error."); + &addMessage("PARAMS","edge-input-se1","Input error."); + } + if ($pipeline eq "qiime" && @edge_input_pe1 && @edge_input_se){ + + &addMessage("PARAMS","edge-input-se1","Input error. Please provide either paired-end Or single-end fastq."); + } + } + if ($pipeline eq "qiime"){ + &addMessage("PARAMS","edge-qiime-mapping-file-input1","Input error. Please check the file path.") if (!@edge_qiime_mapping_files); + foreach my $i (0..$#edge_qiime_mapping_files){ + my $id = "edge-qiime-mapping-file-input". ($i + 1); + $edge_qiime_mapping_files[$i] =~ s/ //g; + $edge_qiime_mapping_files[$i] = "$input_dir/$edge_qiime_mapping_files[$i]" if ($edge_qiime_mapping_files[$i] =~ /^\w/); + &addMessage("PARAMS","$id","Error: duplicated input.") if ($files{$edge_qiime_mapping_files[$i]}); + $files{$edge_qiime_mapping_files[$i]}=1; + if ($edge_qiime_mapping_files[$i] && $edge_input_se[$i] !~ /^[http|ftp]/i && ! -e $edge_qiime_mapping_files[$i]){ + &addMessage("PARAMS","$id","Input error. Please check the file path."); + } } } } #tool parameters if ( $opt{"edge-ref-sw"}){ - $opt{"edge-ref-file"} = $input_dir."/".$opt{"edge-ref-file"} if ( $opt{"edge-ref-file"} =~ /^\w/ ); - &addMessage("PARAMS","edge-ref-file","Reference not found. Please check the input referecne.") if( !-e $opt{"edge-ref-file"} && !defined $opt{"edge-ref-file-fromlist"}); - &addMessage("PARAMS","edge-ref-file-fromlist","Reference not found. Please check the input referecne.") if( !-e $opt{"edge-ref-file"} && !defined $opt{"edge-ref-file-fromlist"}); + my (@refs,@refsl,$num_selected); + if( defined $opt{"edge-ref-file-fromlist"}){ + @refsl = split /[\x0]/, $opt{"edge-ref-file-fromlist"}; + map { my @tmp= `ls -d $EDGE_HOME/database/NCBI_genomes/$_*`; + chomp @tmp; + my @gfiles = `ls $tmp[0]/*gbk`; + chomp @gfiles; + push @refs,@gfiles; + } @refsl; + $num_selected = scalar(@refsl); + } if ($opt{"edge-ref-file"}){ @edge_ref_input = split /[\x0]/, $opt{"edge-ref-file"} if defined $opt{"edge-ref-file"}; for my $i (0..$#edge_ref_input){ $edge_ref_input[$i] = $input_dir."/".$edge_ref_input[$i] if ($edge_ref_input[$i]=~ /^\w/); - my $id = 'edge-ref-file-'. ($i + 1); + my $id = 'edge-ref-file'. ($i + 1); &addMessage("PARAMS",$id,"Invalid input. Fasta or Genbank format required") if ( -e $edge_ref_input[$i] && ! is_fasta($edge_ref_input[$i]) && ! is_genbank($edge_ref_input[$i])); } + $num_selected += scalar(@edge_ref_input); } - + push @refs, @edge_ref_input if @edge_ref_input; + $opt{"edge-ref-file"} = join ",", @refs; + &addMessage("PARAMS","edge-ref-file-1","Reference not found. Please check the input referecne.") if( !-e $opt{"edge-ref-file"} && !defined $opt{"edge-ref-file-fromlist"}); + &addMessage("PARAMS","edge-ref-file-fromlist","Reference not found. Please check the input referecne.") if( !-e $opt{"edge-ref-file"} && !defined $opt{"edge-ref-file-fromlist"}); + + if (defined $sys->{edge_ref_genome_file_max} && $num_selected > $sys->{edge_ref_genome_file_max}){ + &addMessage("PARAMS","edge-ref-file-fromlist","The maximum reference genome is $sys->{edge_ref_genome_file_max}"); + } + } if ( $opt{"edge-taxa-sw"} && scalar split(/[\x0]/,$opt{"edge-taxa-enabled-tools"}) < 1 ){ &addMessage("PARAMS","edge-taxa-tools","You need to choose at least one tool."); @@ -670,13 +963,94 @@ sub checkParams { @edge_phylo_ref_input = split /[\x0]/, $opt{"edge-phylo-ref-file"} if defined $opt{"edge-phylo-ref-file"}; for my $i (0..$#edge_phylo_ref_input){ $edge_phylo_ref_input[$i] = $input_dir."/".$edge_phylo_ref_input[$i] if ($edge_phylo_ref_input[$i]=~ /^\w/); - my $id = 'edge-phylo-ref-file-'. ($i + 1); + my $id = 'edge-phylo-ref-file'. ($i + 1); &addMessage("PARAMS",$id,"Invalid input. Fasta format required") if ( -e $edge_phylo_ref_input[$i] && ! is_fasta($edge_phylo_ref_input[$i]) ); } } } + if ($pipeline eq "qiime"){ + $opt{"edge-qiime-sw"} =1; + $opt{"edge-qc-sw"} =0; + $opt{"edge-hostrm-sw"} =0; + $opt{"edge-assembly-sw"} = 0; + $opt{"edge-ref-sw"} = 0; + $opt{"edge-taxa-sw"} = 0; + $opt{"edge-contig-taxa-sw"} = 0; + $opt{"edge-anno-sw"} = 0 ; + $opt{"edge-phylo-sw"} = 0 ; + $opt{"edge-primer-valid-sw"} = 0 ; + $opt{"edge-primer-adj-sw"} = 0 ; + $opt{"edge-anno-sw"} = 0 ; + $opt{"edge-jbroswe-sw"} = 0 ; + @edge_qiime_barcode_input = split /[\x0]/, $opt{"edge-qiime-barcode-fq-file-input"} if defined $opt{"edge-qiime-barcode-fq-file-input"}; + foreach my $i (0..$#edge_qiime_barcode_input){ + my $id = "edge-qiime-barcode-fq-file-input". ($i + 1); + $edge_qiime_barcode_input[$i] =~ s/ //g; + $edge_qiime_barcode_input[$i] = "$input_dir/$edge_qiime_barcode_input[$i]" if ($edge_qiime_barcode_input[$i] =~ /^\w/); + &addMessage("PARAMS","$id","Error: duplicated input.") if ($files{$edge_qiime_barcode_input[$i]}); + $files{$edge_qiime_barcode_input[$i]}=1; + if ($edge_qiime_barcode_input[$i] && -e $edge_qiime_barcode_input[$i]){ + &addMessage("PARAMS","$id","Input error. FASTQ format required") if ( ! is_fastq($edge_qiime_barcode_input[$i])); + }else{ + &addMessage("PARAMS","$id","Input error. Please check the file path."); + + } + } + &addMessage("PARAMS", "edge-qiime-barcode-length","Invalid input. Natural number required.") unless $opt{"edge-qiime-barcode-length"}=~ /^\d+$/; + &addMessage("PARAMS", "edge-qiime-phred-quality-threshold", "Invalid input. Input should in range 0-41.") unless ( $opt{"edge-qiime-phred-quality-threshold"} >= 0 && $opt{"edge-qiime-phred-quality-threshold"} <=41 ); + &addMessage("PARAMS", "edge-qiime-max-n","Invalid input. Natural number required.") unless $opt{"edge-qiime-max-n"}=~ /^\d+$/; + &addMessage("PARAMS", "edge-qiime-min-per-read-length-fraction","Invalid input. Floating number between 0 and 1 required.") unless ( $opt{"edge-qiime-min-per-read-length-fraction"} >=0 && $opt{"edge-qiime-min-per-read-length-fraction"} <=1 ); + &addMessage("PARAMS", "edge-qiime-minimum-otu-size","Invalid input. Natural number required.") unless $opt{"edge-qiime-minimum-otu-size"}=~ /^\d+$/; + &addMessage("PARAMS", "edge-qiime-similarity","Invalid input. Floating number between 0 and 1 required.") unless ( $opt{"edge-qiime-similarity"} >=0 && $opt{"edge-qiime-similarity"} <=1 ); + &addMessage("PARAMS", "edge-qiime-sampling-depth","Invalid input. Natural number required.") unless $opt{"edge-qiime-sampling-depth"}=~ /^\d+$/; + + + } else {##sample metadata + if ( $sys->{edge_sample_metadata} && $opt{"edge-metadata-sw"}){ + #&addMessage("PARAMS", "country", "Metadata sample location country or lat&lng required.") unless ( $opt{'country'} || ($opt{'lat'} && $opt{'lng'})); + #&addMessage("PARAMS", "edge-pg-collection-date", "Metadata sample collection date is required.") unless ( $opt{'edge-pg-collection-date'} ); + #&addMessage("PARAMS", "edge-pg-seq-date", "Metadata sample sequencing date is required.") unless ( $opt{'edge-pg-seq-date'} ); + } + } } + +sub parse_qiime_mapping_files{ + my $qiime_dir=shift; + my $mapping_files=shift; + my @pe1_files; + my @pe2_files; + my @se_files; + if ( ! -d "$input_dir/$qiime_dir" ){ + my $msg = "ERROR: the input $qiime_dir directroy does not exist or isn't a directory\n"; + exit(1); + } + foreach my $f (@{$mapping_files}){ + my $file_column_index; + open (my $fh, "$input_dir/$f") or die "Cannot read $f\n"; + while(<$fh>){ + chomp; + next if (/^\n/); + if (/SampleID/){ + my @header = split /\t/,$_; + ( $file_column_index )= grep { $header[$_] =~ /files/i } 0..$#header; + }elsif(! /^#/){ + my @array = split /\t/,$_; + my @files = map { "$qiime_dir/$_" } split /,|\s+/,$array[$file_column_index]; + if (scalar(@files) % 2){ + push @se_files,@files; + }else{ + push @pe1_files,$files[0]; + push @pe2_files,$files[1]; + } + } + } + close $fh; + } + return (\@pe1_files,\@pe2_files,\@se_files); +} + + sub is_fastq { $SIG{'PIPE'}=sub{}; @@ -726,3 +1100,67 @@ sub open_file else { $pid=open($fh,'<',$file) or die("$file: $!"); } return ($fh,$pid); } + +##sample metadata +sub createSampleMetadataFile { + foreach my $pname (@pnames){ + my $metadata_out = "$out_dir/$pname/sample_metadata.txt"; + $metadata_out = "$out_dir/" . $projlist->{$pname}->{projCode} . "/sample_metadata.txt" if ($username && $password); + `mv $metadata_out $metadata_out.bak` if( -e $metadata_out ); + if ( $sys->{edge_sample_metadata} && $opt{"edge-metadata-sw"}){ + open OUT, ">$metadata_out"; + print OUT "type=".$opt{'edge-sample-type'}."\n" if ( $opt{'edge-sample-type'} ); + if( $opt{'edge-sample-type'} eq "human") { + if($opt{'pg-cb-gender'}) { + print OUT "gender=".$opt{'edge-pg-gender'}."\n"; + } + if($opt{'pg-cb-age'}) { + print OUT "age=".$opt{'edge-pg-age'}."\n"; + } + } + + if( $opt{'edge-sample-type'} eq "human" || $opt{'edge-sample-type'} eq "animal") { + print OUT "host=".$opt{'edge-pg-host'}."\n"; + print OUT "host_condition=".$opt{'edge-pg-host-condition'}."\n"; + print OUT "source=".$opt{'edge-sample-source-host'}."\n"; + } else { + print OUT "source=".$opt{'edge-sample-source-nonhost'}."\n"; + } + print OUT "source_detail=".$opt{'edge-pg-sample-source-detail'}."\n"; + print OUT "collection_date=".$opt{'edge-pg-collection-date'}."\n" if ( $opt{'edge-pg-collection-date'} ); + print OUT "city=".$opt{'locality'}."\n" if ( $opt{'locality'} ); + print OUT "state=".$opt{'administrative_area_level_1'}."\n" if ( $opt{'administrative_area_level_1'} ); + print OUT "country=".$opt{'country'}."\n" if ( $opt{'country'} ); + print OUT "lat=".$opt{'lat'}."\n" if ( $opt{'lat'} ); + print OUT "lng=".$opt{'lng'}."\n" if ( $opt{'lng'} ); + print OUT "seq_platform=".$opt{'edge-pg-seq-platform'}."\n" if ( $opt{'edge-pg-seq-platform'} ); + + if($opt{'edge-pg-seq-platform'} eq "Illumina") { + print OUT "sequencer=".$opt{'edge-pg-sequencer-ill'}."\n"; + } elsif($opt{'edge-pg-seq-platform'} eq "IonTorrent") { + print OUT "sequencer=".$opt{'edge-pg-sequencer-ion'}."\n"; + } elsif($opt{'edge-pg-seq-platform'} eq "Nanopore") { + print OUT "sequencer=".$opt{'edge-pg-sequencer-nan'}."\n"; + } elsif($opt{'edge-pg-seq-platform'} eq "PacBio") { + print OUT "sequencer=".$opt{'edge-pg-sequencer-pac'}."\n"; + } + + print OUT "seq_date=".$opt{'edge-pg-seq-date'}."\n" if ( $opt{'edge-pg-seq-date'} ); + + close OUT; + } else { + if(-e $metadata_out) { + `rm $metadata_out`; + } + + } + } +} + +sub saveListToJason { + my ($list, $file) = @_; + open JSON, ">$file" or die "Can't write to file: $file\n"; + my $json = to_json($list, {utf8 => 1, pretty => 1}); + print JSON $json; + close JSON; +} diff --git a/edge_ui/cgi-bin/edge_user_management.cgi b/edge_ui/cgi-bin/edge_user_management.cgi index caaacdba..eade4c37 100755 --- a/edge_ui/cgi-bin/edge_user_management.cgi +++ b/edge_ui/cgi-bin/edge_user_management.cgi @@ -16,18 +16,20 @@ my %opt = $cgi->Vars(); my $username = $opt{username}; my $password = $opt{password}; my $action = lc($opt{action}); -my $pname = $opt{proj}; +my @pname = split /,/,$opt{proj}; my $protocol = $opt{protocol}; my $sid = $opt{sid}; $action ||= $ARGV[0]; $username ||= $ARGV[1]; $password ||= $ARGV[2]; -$pname ||= $ARGV[3]; +$pname[0] ||= $ARGV[3]; $sid ||= $ARGV[4]; -# read system params from config template -my $config_tmpl = "$RealBin/edge_config.tmpl"; -my $sys = &getSysParamFromConfig( -e $opt{"edge-input-config"} ? $opt{"edge-input-config"} : $config_tmpl ); +# read system params from sys.properties +my $sysconfig = "$RealBin/../sys.properties"; +my $sys = &getSysParamFromConfig($sysconfig); +my $edgeui_admin = $sys->{edgeui_admin}; +my $edgeui_adminpw = $sys->{edgeui_admin_password}; my $um_switch = $sys->{user_management}; my $um_url = $sys->{edge_user_management_url}; my $edge_input = $sys->{edgeui_input}; @@ -81,6 +83,8 @@ elsif ($action eq "login"){ $info->{SESSION} = $sid; my $user_dir=md5_hex($username); $info->{UserDir} = $user_dir; + my $cronjobs = `crontab -l 2>/dev/null`; + $info->{CleanData} = $sys->{edgeui_proj_store_days} if ($sys->{edgeui_proj_store_days} > 0 && $cronjobs =~ /edge_data_cleanup/); `mkdir -p $edge_input/$user_dir/MyProjects/`; `ln -sf $edge_input/public/data $edge_input/$user_dir/PublicData` if (! -e "$edge_input/$user_dir/PublicData");a `ln -sf $edge_input/public/projects $edge_input/$user_dir/PublicProjects` if (! -e "$edge_input/$user_dir/PublicProjects"); @@ -105,8 +109,8 @@ elsif ($action eq "update"){ elsif ($action eq "sociallogin"){ my %admin_data = ( - admin_email => "edge-admin\@lanl.gov", - admin_password => "852d13c37fec9f0ee004ac121abcf2c5" + admin_email => "$edgeui_admin", + admin_password => "$edgeui_adminpw" ); my $admin_data = to_json(\%admin_data); &um_service($um_url,$admin_data,"WS/user/admin/getUsers"); @@ -148,11 +152,18 @@ elsif ($action eq "share" || $action eq "unshare"){ if( $valid ){ my $service = ($action eq "share")? "WS/project/getNonguests":"WS/project/getGuests"; - %data = ( - email => $username, + %data = ( + email => $username, password => $password, - project_id => $pname - ); + project_id => $pname[0] + ); + if (scalar(@pname)>1 || $pname[0] !~ /\d/ ){ + $service = "WS/user/admin/getUsers"; + %data = ( + admin_email => $edgeui_admin, + admin_password => $edgeui_adminpw, + ); + } my $data = to_json(\%data); &um_service($um_url,$data,$service); } @@ -220,18 +231,18 @@ sub um_service { my $result_json = $response->decoded_content; print $result_json,"\n" if (@ARGV); if ($result_json =~ /\"error_msg\":"(.*)"/) - { - $info->{error}=$1; - return; - } + { + $info->{error}=$1; + return; + } if ($service =~ /login|getInfo/) { - my $tmp_r = from_json($result_json); + my $tmp_r = from_json($result_json); $info->{$_} = $tmp_r->{$_} foreach (keys %$tmp_r); }else{ - my $array_ref = from_json($result_json); - if ($service =~ /getUsers/){ + my $array_ref = from_json($result_json); + if ($action =~ /sociallogin/){ foreach (@$array_ref){ my $email=$_->{email}; $info->{"$email"} = 1; diff --git a/edge_ui/cgi-bin/jqueryFileTree.cgi b/edge_ui/cgi-bin/jqueryFileTree.cgi index 93b9b7df..d9af096f 100755 --- a/edge_ui/cgi-bin/jqueryFileTree.cgi +++ b/edge_ui/cgi-bin/jqueryFileTree.cgi @@ -18,8 +18,8 @@ use HTML::Entities (); # to prevent the whole filesystem to be shown # for ex: the root folder of your webbrowser -# read system params from config template -my $config_tmpl = "$RealBin/edge_config.tmpl"; +# read system params from sys.properties +my $config_tmpl = "$RealBin/../sys.properties"; my $sys = &getSysParamFromConfig($config_tmpl); my $root = $sys->{edgeui_input}; @@ -33,11 +33,11 @@ my $fullDir = $root . $dir; exit if ! -e $fullDir; -opendir(BIN, $fullDir) or die "Can't open $dir: $!"; +opendir(BIN, $fullDir) or die "Can't open $fullDir: $!"; my (@folders, @files); my $total = 0; while( defined (my $file = readdir BIN) ) { - next if $file eq '.' or $file eq '..'; + next if $file =~ /^\./; $total++; if (-d "$fullDir/$file") { push (@folders, $file); @@ -72,9 +72,6 @@ foreach my $file (sort @files) { print "\n"; - - - #-------------------------------------------------------------------------------------------------- sub getCGIParams { my $line; diff --git a/edge_ui/cgi-bin/jqueryFileTree_rel.cgi b/edge_ui/cgi-bin/jqueryFileTree_rel.cgi index efe93e47..d0937d05 100755 --- a/edge_ui/cgi-bin/jqueryFileTree_rel.cgi +++ b/edge_ui/cgi-bin/jqueryFileTree_rel.cgi @@ -18,8 +18,8 @@ use HTML::Entities (); # to prevent the whole filesystem to be shown # for ex: the root folder of your webbrowser -# read system params from config template -my $config_tmpl = "$RealBin/edge_config.tmpl"; +# read system params from sys.properties +my $config_tmpl = "$RealBin/../sys.properties"; my $sys = &getSysParamFromConfig($config_tmpl); my $root = $sys->{edgeui_wwwroot}; @@ -37,7 +37,7 @@ opendir(BIN, $fullDir) or die "Can't open $dir: $!"; my (@folders, @files); my $total = 0; while( defined (my $file = readdir BIN) ) { - next if $file eq '.' or $file eq '..'; + next if $file =~ /^\./; $total++; if (-d "$fullDir/$file") { push (@folders, $file); diff --git a/edge_ui/cgi-bin/upload.php b/edge_ui/cgi-bin/upload.php index 8dd50cb9..69da4eae 100755 --- a/edge_ui/cgi-bin/upload.php +++ b/edge_ui/cgi-bin/upload.php @@ -46,7 +46,7 @@ function read_config($configFile){ return $array; } -$edge_config=read_config(__DIR__."/edge_config.tmpl"); +$edge_config=read_config(__DIR__."/../sys.properties"); // 5 minutes execution time @set_time_limit(5 * 60); @@ -59,7 +59,8 @@ function read_config($configFile){ //$targetDir = 'uploads'; $targetDir = $edge_config["edgeui_input"].$_REQUEST["targetDir"]; $cleanupTargetDir = true; // Remove old files -$maxFileAge = 7 * 24 * 60 * 60; // Temp file age in 7 days +$maxDay = ($edge_config["edgeui_proj_store_days"]>0)? $edge_config["edgeui_proj_store_days"] : 1095; +$maxFileAge = $maxDay * 24 * 60 * 60; // Temp file age in maxday days // Create target dir @@ -98,8 +99,8 @@ function read_config($configFile){ } // Remove temp file if it is older than the max age and is not the current file - if (preg_match('/\.part$/', $file) && (filemtime($tmpfilePath) < time() - $maxFileAge)) { - @unlink($tmpfilePath); + if (preg_match('/\.part$/', $file) || (filemtime($tmpfilePath) < time() - $maxFileAge)) { + unlink($tmpfilePath); } } closedir($dir); @@ -136,7 +137,13 @@ function read_config($configFile){ // Check if file has been uploaded if (!$chunks || $chunk == $chunks - 1) { // Strip the temp .part suffix off - rename("{$filePath}.part", $filePath); + $fileType = mime_content_type("{$filePath}.part"); + if(preg_match("/text/i", $fileType)){ + system("sed 's/\r//' \"{$filePath}.part\" >$filePath"); + unlink("{$filePath}.part"); + }else{ + rename("{$filePath}.part", $filePath); + } } // Return Success JSON-RPC response diff --git a/edge_ui/cluster/clusterSubmit.tmpl b/edge_ui/cluster/clusterSubmit.tmpl new file mode 100644 index 00000000..bd3fc6c7 --- /dev/null +++ b/edge_ui/cluster/clusterSubmit.tmpl @@ -0,0 +1,13 @@ +#!/bin/sh +#$ -S /bin/sh +#$ -N +#$ -l +#$ -m a +#$ -M +#$ -j y +#$ -o + +umask 002 + + + diff --git a/edge_ui/cluster/clusterWrapper.pl b/edge_ui/cluster/clusterWrapper.pl new file mode 100755 index 00000000..51000c46 --- /dev/null +++ b/edge_ui/cluster/clusterWrapper.pl @@ -0,0 +1,100 @@ +#!/usr/bin/perl +use XML::Simple; +use strict; + +my $DEBUG = 0; + +### Need set up for different path +my $BIN="/opt/uge/bin/lx-amd64"; +$ENV{SGE_ROOT} ="/opt/uge"; +$ENV{SGE_CELL} ="seqprod"; +$ENV{SGE_CLUSTER_NAME} ="seqclust"; + +sub clusterSubmitJob {#submit job + my ($in, $opt) = @_; + my $error; + + if(! -e $in) { + $error = "Job script file $in does not exist.\n"; + return ('', $error); + } + + #submit job + print "$BIN/qsub $opt $in\n" if $DEBUG; + my $job = `$BIN/qsub $opt $in`; + print "$job\n" if $DEBUG; + + my $job_id; + #uge format + #Your job 15504 ("Sleeper") has been submitted + if($job =~ /Your job (\d+).*/){ + $job_id = $1; + } + + unless ($job_id) { + $error = "Queuing system error.\n"; + } + + return ($job_id, $error); + +} + +sub clusterGetJobs {#get all jobs + my $error; + my $stats = `$BIN/qstat -xml`; + my $joblist; + + if($stats !~ //) { + $error = "Queuing system error.\n"; + } else { + $joblist = XMLin($stats); + } + return ($joblist,$error); +} + +sub checkProjVital_cluster { + my $cluster_job_prefix = shift; + my $vital; + my $name2pid; + my ($joblist, $error) = clusterGetJobs(); + my ($pid, $proj, $stat, $jobName,$numcpu); + if(!$error) { + foreach my $job (@{$joblist->{queue_info}->{job_list}}) { + $pid = $job->{JB_job_number}; + $jobName = $job->{JB_name}; + $stat = $job->{state}[1]; + if($stat eq 'Eqw') { + $stat = "Cluster Job Error."; + } + + $numcpu = $job->{slots}; + + if($jobName =~ /^$cluster_job_prefix(.*)/) { + $proj = $1; + $vital->{$pid}->{PROJ} = $proj; + $vital->{$pid}->{CPU} = $numcpu; + $vital->{$pid}->{STAT} = $stat; + $name2pid->{$proj} = $pid; + } + } + } + return ($vital,$name2pid,$error); +} + +sub clusterDeleteJob { + my $job_id = shift; + my $status = `$BIN/qdel $job_id 2>&1`; + + # making sure to give enough time for processing deletion request + sleep(3); + print "$status\n" if $DEBUG; + + # checkign success of deletion + if($status =~ /has registered (.*) for deletion/ || $status =~ /job (.*) does not exist/) { + return 0;#success + } else { + return 1;#failure + } +} + +1; diff --git a/edge_ui/css/edge-output.css b/edge_ui/css/edge-output.css index 34e9b7b2..dcc340f7 100755 --- a/edge_ui/css/edge-output.css +++ b/edge_ui/css/edge-output.css @@ -28,7 +28,7 @@ overflow: hidden; } -#edge-content-report ol > li > ol > li { +#edge-content-report ol > li ol > li { list-style-type: lower-roman; color: #333333; } @@ -151,3 +151,37 @@ table.output-table-twocol thead tr th:first-child { background-color: #FFF; overflow-y: auto; } + +/* edge spinner */ +.edge-sp { + width: 24px; + height: 24px; + clear: both; + margin: 10px auto; +} + +/* Spinner Circle Rotation */ +.edge-sp-circle { + border: 4px rgba(80, 162, 83, 0.25) solid; + border-top: 4px #50a253 solid; + border-radius: 50%; + -webkit-animation: spCircRot .6s infinite linear; + animation: spCircRot .6s infinite linear; +} + +@-webkit-keyframes spCircRot { + from { + -webkit-transform: rotate(0deg); + } + to { + -webkit-transform: rotate(359deg); + } +} +@keyframes spCircRot { + from { + transform: rotate(0deg); + } + to { + transform: rotate(359deg); + } +} diff --git a/edge_ui/css/edge-theme.css b/edge_ui/css/edge-theme.css index 57ca8401..508e2b36 100755 --- a/edge_ui/css/edge-theme.css +++ b/edge_ui/css/edge-theme.css @@ -623,7 +623,7 @@ html .ui-bar-c .ui-btn:visited, html .ui-body-c .ui-btn:visited, html body .ui-group-theme-c .ui-btn:visited, html head + body .ui-btn.ui-btn-c:visited { - background-color: #d72a30 /*{c-bup-background-color}*/; + background-color: #4d4d4d /*{c-bup-background-color}*/; border-color: #dddddd /*{c-bup-border}*/; color: #FFF /*{c-bup-color}*/; text-shadow: 0 /*{c-bup-shadow-x}*/ 1px /*{c-bup-shadow-y}*/ 0 /*{c-bup-shadow-radius}*/ #f13138 /*{c-bup-shadow-color}*/; @@ -634,7 +634,7 @@ html .ui-bar-c .ui-btn:hover, html .ui-body-c .ui-btn:hover, html body .ui-group-theme-c .ui-btn:hover, html head + body .ui-btn.ui-btn-c:hover { - background-color: #e04b50 /*{c-bhover-background-color}*/; + background-color: #014AB0 /*{c-bhover-background-color}*/; border-color: #dddddd /*{c-bhover-border}*/; color: #FFF /*{c-bhover-color}*/; text-shadow: 0 /*{c-bhover-shadow-x}*/ 1px /*{c-bhover-shadow-y}*/ 0 /*{c-bhover-shadow-radius}*/ #f5565b /*{c-bhover-shadow-color}*/; diff --git a/edge_ui/css/edge-theme.min.css b/edge_ui/css/edge-theme.min.css index 0a2e0079..cc461e0f 100755 --- a/edge_ui/css/edge-theme.min.css +++ b/edge_ui/css/edge-theme.min.css @@ -214,4 +214,4 @@ html .ui-alt-icon .ui-radio-off:after { .ui-icon-loading { background: url("images/ajax-loader.gif"); background-size: 2.875em 2.875em; -}.ui-bar-a,.ui-page-theme-a .ui-bar-inherit,html .ui-bar-a .ui-bar-inherit,html .ui-body-a .ui-bar-inherit,html body .ui-group-theme-a .ui-bar-inherit{background-color:#e9e9e9 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #eeeeee ;font-weight:bold;}.ui-bar-a{border-width:1px;border-style:solid;}.ui-overlay-a,.ui-page-theme-a,.ui-page-theme-a .ui-panel-wrapper{background-color:#f9f9f9 ;border-color:#bbbbbb ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-body-a,.ui-page-theme-a .ui-body-inherit,html .ui-bar-a .ui-body-inherit,html .ui-body-a .ui-body-inherit,html body .ui-group-theme-a .ui-body-inherit,html .ui-panel-page-container-a{background-color:#ffffff ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-body-a{border-width:1px;border-style:solid;}.ui-page-theme-a a,html .ui-bar-a a,html .ui-body-a a,html body .ui-group-theme-a a{color:#3388cc ;font-weight:bold;}.ui-page-theme-a a:visited,html .ui-bar-a a:visited,html .ui-body-a a:visited,html body .ui-group-theme-a a:visited{ color:#3388cc ;}.ui-page-theme-a a:hover,html .ui-bar-a a:hover,html .ui-body-a a:hover,html body .ui-group-theme-a a:hover{color:#005599 ;}.ui-page-theme-a a:active,html .ui-bar-a a:active,html .ui-body-a a:active,html body .ui-group-theme-a a:active{color:#005599 ;}.ui-page-theme-a .ui-btn,html .ui-bar-a .ui-btn,html .ui-body-a .ui-btn,html body .ui-group-theme-a .ui-btn,html head + body .ui-btn.ui-btn-a,.ui-page-theme-a .ui-btn:visited,html .ui-bar-a .ui-btn:visited,html .ui-body-a .ui-btn:visited,html body .ui-group-theme-a .ui-btn:visited,html head + body .ui-btn.ui-btn-a:visited{background-color:#f6f6f6 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-a .ui-btn:hover,html .ui-bar-a .ui-btn:hover,html .ui-body-a .ui-btn:hover,html body .ui-group-theme-a .ui-btn:hover,html head + body .ui-btn.ui-btn-a:hover{background-color:#ededed ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-a .ui-btn:active,html .ui-bar-a .ui-btn:active,html .ui-body-a .ui-btn:active,html body .ui-group-theme-a .ui-btn:active,html head + body .ui-btn.ui-btn-a:active{background-color:#e8e8e8 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-a .ui-btn.ui-btn-active,html .ui-bar-a .ui-btn.ui-btn-active,html .ui-body-a .ui-btn.ui-btn-active,html body .ui-group-theme-a .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-a.ui-btn-active,.ui-page-theme-a .ui-checkbox-on:after,html .ui-bar-a .ui-checkbox-on:after,html .ui-body-a .ui-checkbox-on:after,html body .ui-group-theme-a .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-a:after,.ui-page-theme-a .ui-flipswitch-active,html .ui-bar-a .ui-flipswitch-active,html .ui-body-a .ui-flipswitch-active,html body .ui-group-theme-a .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-a.ui-flipswitch-active,.ui-page-theme-a .ui-slider-track .ui-btn-active,html .ui-bar-a .ui-slider-track .ui-btn-active,html .ui-body-a .ui-slider-track .ui-btn-active,html body .ui-group-theme-a .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-a .ui-btn-active{background-color:#3388cc ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-a .ui-radio-on:after,html .ui-bar-a .ui-radio-on:after,html .ui-body-a .ui-radio-on:after,html body .ui-group-theme-a .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-a:after{border-color:#3388cc ;}.ui-page-theme-a .ui-btn:focus,html .ui-bar-a .ui-btn:focus,html .ui-body-a .ui-btn:focus,html body .ui-group-theme-a .ui-btn:focus,html head + body .ui-btn.ui-btn-a:focus,.ui-page-theme-a .ui-focus,html .ui-bar-a .ui-focus,html .ui-body-a .ui-focus,html body .ui-group-theme-a .ui-focus,html head + body .ui-btn-a.ui-focus,html head + body .ui-body-a.ui-focus{-webkit-box-shadow:0 0 12px #3388cc ;-moz-box-shadow:0 0 12px #3388cc ;box-shadow:0 0 12px #3388cc ;}.ui-bar-b,.ui-page-theme-b .ui-bar-inherit,html .ui-bar-b .ui-bar-inherit,html .ui-body-b .ui-bar-inherit,html body .ui-group-theme-b .ui-bar-inherit{background-color:#808080 ;border-color:#dddddd ;color:#ffffff ;text-shadow:0 1px 0 #2e2e2e ;font-weight:bold;}.ui-bar-b{border-width:1px;border-style:solid;}.ui-overlay-b,.ui-page-theme-b,.ui-page-theme-b .ui-panel-wrapper{background-color:#4d4d4d ;border-color:#bbbbbb ;color:#e6e6e6 ;text-shadow:0 1px 0 #262626 ;}.ui-body-b,.ui-page-theme-b .ui-body-inherit,html .ui-bar-b .ui-body-inherit,html .ui-body-b .ui-body-inherit,html body .ui-group-theme-b .ui-body-inherit,html .ui-panel-page-container-b{background-color:#4d4d4d ;border-color:#6b6b6b ;color:#f2f2f2 ;text-shadow:0 1px 0 #303030 ;}.ui-body-b{border-width:1px;border-style:solid;}.ui-page-theme-b a,html .ui-bar-b a,html .ui-body-b a,html body .ui-group-theme-b a{color:#3388cc ;font-weight:bold;}.ui-page-theme-b a:visited,html .ui-bar-b a:visited,html .ui-body-b a:visited,html body .ui-group-theme-b a:visited{ color:#3388cc ;}.ui-page-theme-b a:hover,html .ui-bar-b a:hover,html .ui-body-b a:hover,html body .ui-group-theme-b a:hover{color:#005599 ;}.ui-page-theme-b a:active,html .ui-bar-b a:active,html .ui-body-b a:active,html body .ui-group-theme-b a:active{color:#005599 ;}.ui-page-theme-b .ui-btn,html .ui-bar-b .ui-btn,html .ui-body-b .ui-btn,html body .ui-group-theme-b .ui-btn,html head + body .ui-btn.ui-btn-b,.ui-page-theme-b .ui-btn:visited,html .ui-bar-b .ui-btn:visited,html .ui-body-b .ui-btn:visited,html body .ui-group-theme-b .ui-btn:visited,html head + body .ui-btn.ui-btn-b:visited{background-color:#f6f6f6 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-b .ui-btn:hover,html .ui-bar-b .ui-btn:hover,html .ui-body-b .ui-btn:hover,html body .ui-group-theme-b .ui-btn:hover,html head + body .ui-btn.ui-btn-b:hover{background-color:#ededed ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-b .ui-btn:active,html .ui-bar-b .ui-btn:active,html .ui-body-b .ui-btn:active,html body .ui-group-theme-b .ui-btn:active,html head + body .ui-btn.ui-btn-b:active{background-color:#e8e8e8 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-b .ui-btn.ui-btn-active,html .ui-bar-b .ui-btn.ui-btn-active,html .ui-body-b .ui-btn.ui-btn-active,html body .ui-group-theme-b .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-b.ui-btn-active,.ui-page-theme-b .ui-checkbox-on:after,html .ui-bar-b .ui-checkbox-on:after,html .ui-body-b .ui-checkbox-on:after,html body .ui-group-theme-b .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-b:after,.ui-page-theme-b .ui-flipswitch-active,html .ui-bar-b .ui-flipswitch-active,html .ui-body-b .ui-flipswitch-active,html body .ui-group-theme-b .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-b.ui-flipswitch-active,.ui-page-theme-b .ui-slider-track .ui-btn-active,html .ui-bar-b .ui-slider-track .ui-btn-active,html .ui-body-b .ui-slider-track .ui-btn-active,html body .ui-group-theme-b .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-b .ui-btn-active{background-color:#3388cc ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-b .ui-radio-on:after,html .ui-bar-b .ui-radio-on:after,html .ui-body-b .ui-radio-on:after,html body .ui-group-theme-b .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-b:after{border-color:#3388cc ;}.ui-page-theme-b .ui-btn:focus,html .ui-bar-b .ui-btn:focus,html .ui-body-b .ui-btn:focus,html body .ui-group-theme-b .ui-btn:focus,html head + body .ui-btn.ui-btn-b:focus,.ui-page-theme-b .ui-focus,html .ui-bar-b .ui-focus,html .ui-body-b .ui-focus,html body .ui-group-theme-b .ui-focus,html head + body .ui-btn-b.ui-focus,html head + body .ui-body-b.ui-focus{-webkit-box-shadow:0 0 12px #3388cc ;-moz-box-shadow:0 0 12px #3388cc ;box-shadow:0 0 12px #3388cc ;}.ui-bar-c,.ui-page-theme-c .ui-bar-inherit,html .ui-bar-c .ui-bar-inherit,html .ui-body-c .ui-bar-inherit,html body .ui-group-theme-c .ui-bar-inherit{background-color:#e9e9e9 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #eeeeee ;font-weight:bold;}.ui-bar-c{border-width:1px;border-style:solid;}.ui-overlay-c,.ui-page-theme-c,.ui-page-theme-c .ui-panel-wrapper{background-color:#f9f9f9 ;border-color:#bbbbbb ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-body-c,.ui-page-theme-c .ui-body-inherit,html .ui-bar-c .ui-body-inherit,html .ui-body-c .ui-body-inherit,html body .ui-group-theme-c .ui-body-inherit,html .ui-panel-page-container-c{background-color:#d72a30 ;border-color:#dddddd ;color:#FFF ;text-shadow:0 1px 0 #f13138 ;}.ui-body-c{border-width:1px;border-style:solid;}.ui-page-theme-c a,html .ui-bar-c a,html .ui-body-c a,html body .ui-group-theme-c a{color:#fa9e35 ;font-weight:bold;}.ui-page-theme-c a:visited,html .ui-bar-c a:visited,html .ui-body-c a:visited,html body .ui-group-theme-c a:visited{ color:#3388cc ;}.ui-page-theme-c a:hover,html .ui-bar-c a:hover,html .ui-body-c a:hover,html body .ui-group-theme-c a:hover{color:#005599 ;}.ui-page-theme-c a:active,html .ui-bar-c a:active,html .ui-body-c a:active,html body .ui-group-theme-c a:active{color:#005599 ;}.ui-page-theme-c .ui-btn,html .ui-bar-c .ui-btn,html .ui-body-c .ui-btn,html body .ui-group-theme-c .ui-btn,html head + body .ui-btn.ui-btn-c,.ui-page-theme-c .ui-btn:visited,html .ui-bar-c .ui-btn:visited,html .ui-body-c .ui-btn:visited,html body .ui-group-theme-c .ui-btn:visited,html head + body .ui-btn.ui-btn-c:visited{background-color:#d72a30 ;border-color:#dddddd ;color:#FFF ;text-shadow:0 1px 0 #f13138 ;}.ui-page-theme-c .ui-btn:hover,html .ui-bar-c .ui-btn:hover,html .ui-body-c .ui-btn:hover,html body .ui-group-theme-c .ui-btn:hover,html head + body .ui-btn.ui-btn-c:hover{background-color:#e04b50 ;border-color:#dddddd ;color:#FFF ;text-shadow:0 1px 0 #f5565b ;}.ui-page-theme-c .ui-btn:active,html .ui-bar-c .ui-btn:active,html .ui-body-c .ui-btn:active,html body .ui-group-theme-c .ui-btn:active,html head + body .ui-btn.ui-btn-c:active{background-color:#d72a30 ;border-color:#dddddd ;color:#FFF ;text-shadow:0 1px 0 #f13138 ;}.ui-page-theme-c .ui-btn.ui-btn-active,html .ui-bar-c .ui-btn.ui-btn-active,html .ui-body-c .ui-btn.ui-btn-active,html body .ui-group-theme-c .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-c.ui-btn-active,.ui-page-theme-c .ui-checkbox-on:after,html .ui-bar-c .ui-checkbox-on:after,html .ui-body-c .ui-checkbox-on:after,html body .ui-group-theme-c .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-c:after,.ui-page-theme-c .ui-flipswitch-active,html .ui-bar-c .ui-flipswitch-active,html .ui-body-c .ui-flipswitch-active,html body .ui-group-theme-c .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-c.ui-flipswitch-active,.ui-page-theme-c .ui-slider-track .ui-btn-active,html .ui-bar-c .ui-slider-track .ui-btn-active,html .ui-body-c .ui-slider-track .ui-btn-active,html body .ui-group-theme-c .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-c .ui-btn-active{background-color:#ffffff ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-c .ui-radio-on:after,html .ui-bar-c .ui-radio-on:after,html .ui-body-c .ui-radio-on:after,html body .ui-group-theme-c .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-c:after{border-color:#ffffff ;}.ui-page-theme-c .ui-btn:focus,html .ui-bar-c .ui-btn:focus,html .ui-body-c .ui-btn:focus,html body .ui-group-theme-c .ui-btn:focus,html head + body .ui-btn.ui-btn-c:focus,.ui-page-theme-c .ui-focus,html .ui-bar-c .ui-focus,html .ui-body-c .ui-focus,html body .ui-group-theme-c .ui-focus,html head + body .ui-btn-c.ui-focus,html head + body .ui-body-c.ui-focus{-webkit-box-shadow:0 0 12px #ffffff ;-moz-box-shadow:0 0 12px #ffffff ;box-shadow:0 0 12px #ffffff ;}.ui-disabled,.ui-state-disabled,button[disabled],.ui-select .ui-btn.ui-state-disabled{filter:Alpha(Opacity=30);opacity:.3;cursor:default !important;pointer-events:none;}.ui-btn:focus,.ui-btn.ui-focus{outline:0;}.ui-noboxshadow .ui-shadow,.ui-noboxshadow .ui-shadow-inset,.ui-noboxshadow .ui-overlay-shadow,.ui-noboxshadow .ui-shadow-icon.ui-btn:after,.ui-noboxshadow .ui-shadow-icon .ui-btn:after,.ui-noboxshadow .ui-focus,.ui-noboxshadow .ui-btn:focus,.ui-noboxshadow input:focus,.ui-noboxshadow .ui-panel{-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;}.ui-noboxshadow .ui-btn:focus,.ui-noboxshadow .ui-focus{outline-width:1px;outline-style:auto;} \ No newline at end of file +}.ui-bar-a,.ui-page-theme-a .ui-bar-inherit,html .ui-bar-a .ui-bar-inherit,html .ui-body-a .ui-bar-inherit,html body .ui-group-theme-a .ui-bar-inherit{background-color:#e9e9e9 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #eeeeee ;font-weight:bold;}.ui-bar-a{border-width:1px;border-style:solid;}.ui-overlay-a,.ui-page-theme-a,.ui-page-theme-a .ui-panel-wrapper{background-color:#f9f9f9 ;border-color:#bbbbbb ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-body-a,.ui-page-theme-a .ui-body-inherit,html .ui-bar-a .ui-body-inherit,html .ui-body-a .ui-body-inherit,html body .ui-group-theme-a .ui-body-inherit,html .ui-panel-page-container-a{background-color:#ffffff ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-body-a{border-width:1px;border-style:solid;}.ui-page-theme-a a,html .ui-bar-a a,html .ui-body-a a,html body .ui-group-theme-a a{color:#3388cc ;font-weight:bold;}.ui-page-theme-a a:visited,html .ui-bar-a a:visited,html .ui-body-a a:visited,html body .ui-group-theme-a a:visited{ color:#3388cc ;}.ui-page-theme-a a:hover,html .ui-bar-a a:hover,html .ui-body-a a:hover,html body .ui-group-theme-a a:hover{color:#005599 ;}.ui-page-theme-a a:active,html .ui-bar-a a:active,html .ui-body-a a:active,html body .ui-group-theme-a a:active{color:#005599 ;}.ui-page-theme-a .ui-btn,html .ui-bar-a .ui-btn,html .ui-body-a .ui-btn,html body .ui-group-theme-a .ui-btn,html head + body .ui-btn.ui-btn-a,.ui-page-theme-a .ui-btn:visited,html .ui-bar-a .ui-btn:visited,html .ui-body-a .ui-btn:visited,html body .ui-group-theme-a .ui-btn:visited,html head + body .ui-btn.ui-btn-a:visited{background-color:#f6f6f6 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-a .ui-btn:hover,html .ui-bar-a .ui-btn:hover,html .ui-body-a .ui-btn:hover,html body .ui-group-theme-a .ui-btn:hover,html head + body .ui-btn.ui-btn-a:hover{background-color:#ededed ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-a .ui-btn:active,html .ui-bar-a .ui-btn:active,html .ui-body-a .ui-btn:active,html body .ui-group-theme-a .ui-btn:active,html head + body .ui-btn.ui-btn-a:active{background-color:#e8e8e8 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-a .ui-btn.ui-btn-active,html .ui-bar-a .ui-btn.ui-btn-active,html .ui-body-a .ui-btn.ui-btn-active,html body .ui-group-theme-a .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-a.ui-btn-active,.ui-page-theme-a .ui-checkbox-on:after,html .ui-bar-a .ui-checkbox-on:after,html .ui-body-a .ui-checkbox-on:after,html body .ui-group-theme-a .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-a:after,.ui-page-theme-a .ui-flipswitch-active,html .ui-bar-a .ui-flipswitch-active,html .ui-body-a .ui-flipswitch-active,html body .ui-group-theme-a .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-a.ui-flipswitch-active,.ui-page-theme-a .ui-slider-track .ui-btn-active,html .ui-bar-a .ui-slider-track .ui-btn-active,html .ui-body-a .ui-slider-track .ui-btn-active,html body .ui-group-theme-a .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-a .ui-btn-active{background-color:#3388cc ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-a .ui-radio-on:after,html .ui-bar-a .ui-radio-on:after,html .ui-body-a .ui-radio-on:after,html body .ui-group-theme-a .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-a:after{border-color:#3388cc ;}.ui-page-theme-a .ui-btn:focus,html .ui-bar-a .ui-btn:focus,html .ui-body-a .ui-btn:focus,html body .ui-group-theme-a .ui-btn:focus,html head + body .ui-btn.ui-btn-a:focus,.ui-page-theme-a .ui-focus,html .ui-bar-a .ui-focus,html .ui-body-a .ui-focus,html body .ui-group-theme-a .ui-focus,html head + body .ui-btn-a.ui-focus,html head + body .ui-body-a.ui-focus{-webkit-box-shadow:0 0 12px #3388cc ;-moz-box-shadow:0 0 12px #3388cc ;box-shadow:0 0 12px #3388cc ;}.ui-bar-b,.ui-page-theme-b .ui-bar-inherit,html .ui-bar-b .ui-bar-inherit,html .ui-body-b .ui-bar-inherit,html body .ui-group-theme-b .ui-bar-inherit{background-color:#808080 ;border-color:#dddddd ;color:#ffffff ;text-shadow:0 1px 0 #2e2e2e ;font-weight:bold;}.ui-bar-b{border-width:1px;border-style:solid;}.ui-overlay-b,.ui-page-theme-b,.ui-page-theme-b .ui-panel-wrapper{background-color:#4d4d4d ;border-color:#bbbbbb ;color:#e6e6e6 ;text-shadow:0 1px 0 #262626 ;}.ui-body-b,.ui-page-theme-b .ui-body-inherit,html .ui-bar-b .ui-body-inherit,html .ui-body-b .ui-body-inherit,html body .ui-group-theme-b .ui-body-inherit,html .ui-panel-page-container-b{background-color:#4d4d4d ;border-color:#6b6b6b ;color:#f2f2f2 ;text-shadow:0 1px 0 #303030 ;}.ui-body-b{border-width:1px;border-style:solid;}.ui-page-theme-b a,html .ui-bar-b a,html .ui-body-b a,html body .ui-group-theme-b a{color:#3388cc ;font-weight:bold;}.ui-page-theme-b a:visited,html .ui-bar-b a:visited,html .ui-body-b a:visited,html body .ui-group-theme-b a:visited{ color:#3388cc ;}.ui-page-theme-b a:hover,html .ui-bar-b a:hover,html .ui-body-b a:hover,html body .ui-group-theme-b a:hover{color:#005599 ;}.ui-page-theme-b a:active,html .ui-bar-b a:active,html .ui-body-b a:active,html body .ui-group-theme-b a:active{color:#005599 ;}.ui-page-theme-b .ui-btn,html .ui-bar-b .ui-btn,html .ui-body-b .ui-btn,html body .ui-group-theme-b .ui-btn,html head + body .ui-btn.ui-btn-b,.ui-page-theme-b .ui-btn:visited,html .ui-bar-b .ui-btn:visited,html .ui-body-b .ui-btn:visited,html body .ui-group-theme-b .ui-btn:visited,html head + body .ui-btn.ui-btn-b:visited{background-color:#f6f6f6 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-b .ui-btn:hover,html .ui-bar-b .ui-btn:hover,html .ui-body-b .ui-btn:hover,html body .ui-group-theme-b .ui-btn:hover,html head + body .ui-btn.ui-btn-b:hover{background-color:#ededed ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-b .ui-btn:active,html .ui-bar-b .ui-btn:active,html .ui-body-b .ui-btn:active,html body .ui-group-theme-b .ui-btn:active,html head + body .ui-btn.ui-btn-b:active{background-color:#e8e8e8 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-page-theme-b .ui-btn.ui-btn-active,html .ui-bar-b .ui-btn.ui-btn-active,html .ui-body-b .ui-btn.ui-btn-active,html body .ui-group-theme-b .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-b.ui-btn-active,.ui-page-theme-b .ui-checkbox-on:after,html .ui-bar-b .ui-checkbox-on:after,html .ui-body-b .ui-checkbox-on:after,html body .ui-group-theme-b .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-b:after,.ui-page-theme-b .ui-flipswitch-active,html .ui-bar-b .ui-flipswitch-active,html .ui-body-b .ui-flipswitch-active,html body .ui-group-theme-b .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-b.ui-flipswitch-active,.ui-page-theme-b .ui-slider-track .ui-btn-active,html .ui-bar-b .ui-slider-track .ui-btn-active,html .ui-body-b .ui-slider-track .ui-btn-active,html body .ui-group-theme-b .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-b .ui-btn-active{background-color:#3388cc ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-b .ui-radio-on:after,html .ui-bar-b .ui-radio-on:after,html .ui-body-b .ui-radio-on:after,html body .ui-group-theme-b .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-b:after{border-color:#3388cc ;}.ui-page-theme-b .ui-btn:focus,html .ui-bar-b .ui-btn:focus,html .ui-body-b .ui-btn:focus,html body .ui-group-theme-b .ui-btn:focus,html head + body .ui-btn.ui-btn-b:focus,.ui-page-theme-b .ui-focus,html .ui-bar-b .ui-focus,html .ui-body-b .ui-focus,html body .ui-group-theme-b .ui-focus,html head + body .ui-btn-b.ui-focus,html head + body .ui-body-b.ui-focus{-webkit-box-shadow:0 0 12px #3388cc ;-moz-box-shadow:0 0 12px #3388cc ;box-shadow:0 0 12px #3388cc ;}.ui-bar-c,.ui-page-theme-c .ui-bar-inherit,html .ui-bar-c .ui-bar-inherit,html .ui-body-c .ui-bar-inherit,html body .ui-group-theme-c .ui-bar-inherit{background-color:#e9e9e9 ;border-color:#dddddd ;color:#333333 ;text-shadow:0 1px 0 #eeeeee ;font-weight:bold;}.ui-bar-c{border-width:1px;border-style:solid;}.ui-overlay-c,.ui-page-theme-c,.ui-page-theme-c .ui-panel-wrapper{background-color:#f9f9f9 ;border-color:#bbbbbb ;color:#333333 ;text-shadow:0 1px 0 #f3f3f3 ;}.ui-body-c,.ui-page-theme-c .ui-body-inherit,html .ui-bar-c .ui-body-inherit,html .ui-body-c .ui-body-inherit,html body .ui-group-theme-c .ui-body-inherit,html .ui-panel-page-container-c{background-color:#d72a30 ;border-color:#dddddd ;color:#FFF ;text-shadow:0 1px 0 #f13138 ;}.ui-body-c{border-width:1px;border-style:solid;}.ui-page-theme-c a,html .ui-bar-c a,html .ui-body-c a,html body .ui-group-theme-c a{color:#fa9e35 ;font-weight:bold;}.ui-page-theme-c a:visited,html .ui-bar-c a:visited,html .ui-body-c a:visited,html body .ui-group-theme-c a:visited{ color:#3388cc ;}.ui-page-theme-c a:hover,html .ui-bar-c a:hover,html .ui-body-c a:hover,html body .ui-group-theme-c a:hover{color:#005599 ;}.ui-page-theme-c a:active,html .ui-bar-c a:active,html .ui-body-c a:active,html body .ui-group-theme-c a:active{color:#005599 ;}.ui-page-theme-c .ui-btn,html .ui-bar-c .ui-btn,html .ui-body-c .ui-btn,html body .ui-group-theme-c .ui-btn,html head + body .ui-btn.ui-btn-c,.ui-page-theme-c .ui-btn:visited,html .ui-bar-c .ui-btn:visited,html .ui-body-c .ui-btn:visited,html body .ui-group-theme-c .ui-btn:visited,html head + body .ui-btn.ui-btn-c:visited{background-color:#d72a30 ;border-color:#dddddd ;color:#FFF ;text-shadow:0 1px 0 #f13138 ;}.ui-page-theme-c .ui-btn:hover,html .ui-bar-c .ui-btn:hover,html .ui-body-c .ui-btn:hover,html body .ui-group-theme-c .ui-btn:hover,html head + body .ui-btn.ui-btn-c:hover{background-color:#e04b50 ;border-color:#dddddd ;color:#FFF ;text-shadow:0 1px 0 #f5565b ;}.ui-page-theme-c .ui-btn:active,html .ui-bar-c .ui-btn:active,html .ui-body-c .ui-btn:active,html body .ui-group-theme-c .ui-btn:active,html head + body .ui-btn.ui-btn-c:active{background-color:#d72a30 ;border-color:#dddddd ;color:#FFF ;text-shadow:0 1px 0 #f13138 ;}.ui-page-theme-c .ui-btn.ui-btn-active,html .ui-bar-c .ui-btn.ui-btn-active,html .ui-body-c .ui-btn.ui-btn-active,html body .ui-group-theme-c .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-c.ui-btn-active,.ui-page-theme-c .ui-checkbox-on:after,html .ui-bar-c .ui-checkbox-on:after,html .ui-body-c .ui-checkbox-on:after,html body .ui-group-theme-c .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-c:after,.ui-page-theme-c .ui-flipswitch-active,html .ui-bar-c .ui-flipswitch-active,html .ui-body-c .ui-flipswitch-active,html body .ui-group-theme-c .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-c.ui-flipswitch-active,.ui-page-theme-c .ui-slider-track .ui-btn-active,html .ui-bar-c .ui-slider-track .ui-btn-active,html .ui-body-c .ui-slider-track .ui-btn-active,html body .ui-group-theme-c .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-c .ui-btn-active{background-color:#ffffff ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-c .ui-radio-on:after,html .ui-bar-c .ui-radio-on:after,html .ui-body-c .ui-radio-on:after,html body .ui-group-theme-c .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-c:after{border-color:#ffffff ;}.ui-page-theme-c .ui-btn:focus,html .ui-bar-c .ui-btn:focus,html .ui-body-c .ui-btn:focus,html body .ui-group-theme-c .ui-btn:focus,html head + body .ui-btn.ui-btn-c:focus,.ui-page-theme-c .ui-focus,html .ui-bar-c .ui-focus,html .ui-body-c .ui-focus,html body .ui-group-theme-c .ui-focus,html head + body .ui-btn-c.ui-focus,html head + body .ui-body-c.ui-focus{-webkit-box-shadow:0 0 12px #ffffff ;-moz-box-shadow:0 0 12px #ffffff ;box-shadow:0 0 12px #ffffff ;}.ui-disabled,.ui-state-disabled,button[disabled],.ui-select .ui-btn.ui-state-disabled{filter:Alpha(Opacity=30);opacity:.3;cursor:default !important;pointer-events:none;}.ui-btn:focus,.ui-btn.ui-focus{outline:0;}.ui-noboxshadow .ui-shadow,.ui-noboxshadow .ui-shadow-inset,.ui-noboxshadow .ui-overlay-shadow,.ui-noboxshadow .ui-shadow-icon.ui-btn:after,.ui-noboxshadow .ui-shadow-icon .ui-btn:after,.ui-noboxshadow .ui-focus,.ui-noboxshadow .ui-btn:focus,.ui-noboxshadow input:focus,.ui-noboxshadow .ui-panel{-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;}.ui-noboxshadow .ui-btn:focus,.ui-noboxshadow .ui-focus{outline-width:1px;outline-style:auto;}.ui-page-theme-d .ui-btn:visited,html head+body .ui-btn.ui-btn-d:visited{background-color:#4d4d4d;border-color:#ddd;color:#FFF;text-shadow:0 1px 0 #f13138}.ui-page-theme-d .ui-btn:hover,html head+body .ui-btn.ui-btn-d:hover{background-color:#014AB0;border-color:#ddd;color:#FFF;text-shadow:0 1px 0 #f5565b}.ui-page-theme-d .ui-btn:active,html head+body .ui-btn.ui-btn-d:active{background-color:#d72a30;border-color:#ddd;color:#FFF;text-shadow:0 1px 0 #f13138} diff --git a/edge_ui/css/edge.css b/edge_ui/css/edge.css index ddefa991..bda91a25 100755 --- a/edge_ui/css/edge.css +++ b/edge_ui/css/edge.css @@ -115,9 +115,10 @@ div#popupUser a { } /* logo */ .edge-logo { - width: 50%; + width: 25%; margin: 0 auto; position: relative; + float: left; } .edge-logo img { width:36px; @@ -130,6 +131,13 @@ div#popupUser a { width: auto; } +.edge-project-header { + margin: auto; +} +.edge-project-title { + margin: 0 +} + /* tooltip */ .tooltipster-light { border-radius: 5px; @@ -151,13 +159,14 @@ div#popupUser a { font-size: 1.2em; } -/* dialog */ -#edge-input-toggle { - color: #777; +.edge-additional-options-toggle { + color: #777 !important; font-size: 0.9em; - font-weight: 300; + font-weight: 300 !important; text-decoration: none; } + +/* dialog */ .edge-dialog{ width:90%; } @@ -231,6 +240,15 @@ pre code { margin: 1em 1em .75em; float:left; } + +#scroll-up-btn { + position: fixed; + right: 1em; + bottom:4em; + -webkit-border-radius: .3125em; + border-radius: .3125em; +} + .ui-field-contain { border-bottom-width: 0px; } @@ -245,6 +263,13 @@ pre code { opacity: .4; } +.edge-navmenu-panel .edge-proj-active { + background: linear-gradient( to bottom,#0159b0 0,#014AB0 100% ) !important; + background: -webkit-linear-gradient(to bottom,#0159b0 0,#014AB0 100% ) !important; + background: -o-linear-gradient( to bottom,#0159b0 0,#014AB0 100% ) !important; + background: -moz-linear-gradient( to bottom,#0159b0, #014AB0 100% ) !important; +} + /* Content */ .edge-home .edge-content { padding-top: 5em; @@ -459,7 +484,7 @@ div.edge-collapsible-options .ui-btn { } /* buttons for adding/removing inputs */ -.btnDel-edge-input-se { +.btnDel-edge-input { visibility: hidden; } @@ -555,7 +580,7 @@ div.edge-collapsible-options .ui-btn { } .edge-navmenu-panel .ui-panel-inner .ui-listview .ui-listview > li > .edge-project-list { - background: #4d4d4d !important; + background: #4d4d4d; color: #fff; text-shadow: 0 2px 0 #000 !important; opacity: 1 !important; @@ -596,6 +621,9 @@ div.edge-collapsible-options .ui-btn { .edge-time-bg-grey { background-color: #aaa; } +.edge-time-bg-black { + background-color: #000000; +} .edge-fg-green { color: #3eb249; @@ -643,6 +671,7 @@ div.edge-collapsible-options .ui-btn { } .edge-navmenu-panel .ui-icon-recycle:after, +.edge-navmenu-panel .ui-icon-arrow-u-r:after, .edge-navmenu-panel .ui-icon-delete:after, .edge-navmenu-panel .ui-icon-check:after { opacity: 0.9; @@ -775,7 +804,7 @@ div.edge-collapsible-options .ui-btn { .edge-navmenu-panel .ui-collapsible, .edge-navmenu-panel .ui-collapsible-content, .edge-navmenu-panel .ui-btn { - background: none !important; + background: none; border-color: #ddd !important; } @@ -791,6 +820,7 @@ div.edge-collapsible-options .ui-btn { .edge-navmenu-panel .ui-icon-load:after, .edge-navmenu-panel .ui-icon-check:after, + .edge-navmenu-panel .ui-icon-arrow-u-r:after, .edge-navmenu-panel .ui-icon-recycle:after { opacity: 0.9; @@ -898,3 +928,51 @@ div.edge-collapsible-options .ui-btn { font-size: 0.85em; } +.flex-container { + display: -webkit-flex; /* Safari */ + display: flex; + -webkit-flex-wrap: wrap; /* Safari */ + flex-wrap: wrap; +} +.flex-container .ui-btn { + margin:0.2em; +} + +//progressbar +#progressbar-block { + position: relative; + width: 100%; +} +#progressbar-block div.ui-slider { + width: 100%; + height: inherit; + margin: inherit; + display: inline-block; +} +#progressbar-block div.ui-slider-track { + background-color: #ddd; +} +#progressbar-block div.ui-btn-active { + background-image: url("images/progress.gif"), linear-gradient(to right, rgb(0, 0, 0), #2ad) !important; + height: 100%; + filter: alpha(opacity=25) !important; + opacity: 0.25 !important; +} +#progressbar-block div.overlay { + left: 0px; + top: 0px; + width: 100%; + height: 100%; + position: absolute; + z-index: 500; +} +#progressbar-val { + color: white; + text-shadow: 0 2px 0 #111 !important; + left: 0px; + min-width: 100px; + position: absolute; + top: 10px; + text-align: center; + z-index: 600; +} diff --git a/edge_ui/css/geocomplete.css b/edge_ui/css/geocomplete.css new file mode 100644 index 00000000..0025dcc7 --- /dev/null +++ b/edge_ui/css/geocomplete.css @@ -0,0 +1,9 @@ + + +.map_canvas { + width: 600px; + height: 0px; + margin: 10px 20px 10px 0; + float: right; +} + diff --git a/edge_ui/css/images/progress.gif b/edge_ui/css/images/progress.gif new file mode 100644 index 00000000..d441f75e Binary files /dev/null and b/edge_ui/css/images/progress.gif differ diff --git a/edge_ui/css/jquery.dataTables.custom.css b/edge_ui/css/jquery.dataTables.custom.css new file mode 100644 index 00000000..46e2525a --- /dev/null +++ b/edge_ui/css/jquery.dataTables.custom.css @@ -0,0 +1,42 @@ +.dataTables_wrapper { + margin: 1em; +} + +table.dataTable thead th, +table.dataTable thead td { + border-bottom: 1px solid #c9c9c9; +} + +table.dataTable tfoot th, +table.dataTable tfoot td { + border-top: 1px solid #c9c9c9; +} + +table.dataTable.no-footer { + border-bottom: 1px solid #c9c9c9; +} + +.dataTables_info { + font-size: 0.8em; +} + +.dataTables_paginate { + font-size: 0.8em; +} + +.dataTables_length label { + font-size: 0.8em; +} + +.dataTables_filter label { + font-size: 0.8em; +} + +.dataTables_wrapper .dataTables_paginate .paginate_button { + min-width: 1.3em; + padding: 0.3em 0.8em; +} + +table.dataTable tbody tr.selected { + background-color: #FFE867; +} diff --git a/edge_ui/css/jquery.dataTables.min.css b/edge_ui/css/jquery.dataTables.min.css new file mode 100644 index 00000000..9ec6ca31 --- /dev/null +++ b/edge_ui/css/jquery.dataTables.min.css @@ -0,0 +1 @@ +table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{cursor:pointer;*cursor:hand}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px 4px 4px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{margin-left:0.5em}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table,.dataTables_wrapper.no-footer div.dataTables_scrollBody table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}} diff --git a/edge_ui/data/BatchExcelExample.xlsx b/edge_ui/data/BatchExcelExample.xlsx new file mode 100644 index 00000000..0b8108f1 Binary files /dev/null and b/edge_ui/data/BatchExcelExample.xlsx differ diff --git a/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa new file mode 120000 index 00000000..99d08f60 --- /dev/null +++ b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa @@ -0,0 +1 @@ +../../../../database/bwa_index/all_vector.fa \ No newline at end of file diff --git a/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.amb b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.amb new file mode 120000 index 00000000..766a2d3d --- /dev/null +++ b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.amb @@ -0,0 +1 @@ +../../../../database/bwa_index/all_vector.fa.amb \ No newline at end of file diff --git a/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.ann b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.ann new file mode 120000 index 00000000..213bb702 --- /dev/null +++ b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.ann @@ -0,0 +1 @@ +../../../../database/bwa_index/all_vector.fa.ann \ No newline at end of file diff --git a/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.bwt b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.bwt new file mode 120000 index 00000000..2491b8ac --- /dev/null +++ b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.bwt @@ -0,0 +1 @@ +../../../../database/bwa_index/all_vector.fa.bwt \ No newline at end of file diff --git a/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.fai b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.fai new file mode 120000 index 00000000..61c486c5 --- /dev/null +++ b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.fai @@ -0,0 +1 @@ +../../../../database/bwa_index/all_vector.fa.fai \ No newline at end of file diff --git a/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.pac b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.pac new file mode 120000 index 00000000..ba149075 --- /dev/null +++ b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.pac @@ -0,0 +1 @@ +../../../../database/bwa_index/all_vector.fa.pac \ No newline at end of file diff --git a/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.sa b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.sa new file mode 120000 index 00000000..a186b2c0 --- /dev/null +++ b/edge_ui/data/Host/Invertebrate_Vectors_of_Human_Pathogens/all_vector.fa.sa @@ -0,0 +1 @@ +../../../../database/bwa_index/all_vector.fa.sa \ No newline at end of file diff --git a/edge_ui/data/Ref_list.json b/edge_ui/data/Ref_list.json deleted file mode 100644 index 7634f560..00000000 --- a/edge_ui/data/Ref_list.json +++ /dev/null @@ -1,148503 +0,0 @@ -{ - "Hepatitis_B_virus__919071" : [ - "JN040824" - ], - "Cucumber_mosaic_virus__42CM" : [ - "AB368498", - "AB368497", - "AB368496" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5449_2009" : [ - "JF920404" - ], - "Hepatitis_B_virus__O64" : [ - "AM184125" - ], - "Hepatitis_B_virus__919089" : [ - "JN040829" - ], - "Hepatitis_B_virus__DEN6129" : [ - "KF779241" - ], - "Hepatitis_B_virus__GU981" : [ - "GQ161783" - ], - "Macroptilium_yellow_spot_virus__BR_Sti14_11" : [ - "KJ939872" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_13_2011" : [ - "KJ686158" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_B2_4D_P" : [ - "JX570649" - ], - "Feline_calicivirus_FCV_2280" : [ - "KC835209" - ], - "Dengue_virus_2__DENV_2_PE_IDA_1081_2011" : [ - "KC294218" - ], - "Chikungunya_virus_RGCB120_KL07" : [ - "GQ428213" - ], - "Enterobacterial_phage_mEp213" : [ - "NC_019720" - ], - "Rabies_virus__DRV_AH08" : [ - "HQ450385" - ], - "Human_bocavirus__HK14" : [ - "EF450730" - ], - "Hepatitis_B_virus__cxn1034" : [ - "KC774340" - ], - "Classical_swine_fever_virus_CS" : [ - "AF099102" - ], - "Mycobacterium_phage_Sbash" : [ - "NC_026589" - ], - "Hepatitis_B_virus__A2_9" : [ - "GU815568" - ], - "Ceratocystis_resinifera_virus_1" : [ - "NC_010755", - "NC_010754" - ], - "African_cassava_mosaic_virus__MG_MG343B1_11" : [ - "KJ887705" - ], - "Vibrio_phage_VBM1_VBM1" : [ - "NC_020850" - ], - "Gyrovirus_4_D137" : [ - "NC_018401" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7654_2012" : [ - "KF973457" - ], - "Geobacter_FRC_32" : [ - "NC_011979" - ], - "Sewage_associated_gemycircularvirus_7a__BS3939" : [ - "NC_026163" - ], - "Hepatitis_B_virus__patient29" : [ - "EU919171", - "EU919170" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_28__AHEaCV_28_NZ_2426SG_2012" : [ - "KM874364" - ], - "Human_coronavirus_OC43_ATCC_VR_759_OC43" : [ - "NC_005147" - ], - "Human_rhinovirus_B99_ATCC_VR_1299" : [ - "FJ445174" - ], - "Mumps_virus_Miyahara_vaccine_lot3" : [ - "AB744048" - ], - "Tobacco_mosaic_virus__Songtao_1" : [ - "HE818441" - ], - "Hepatitis_B_virus__B15" : [ - "FJ904433" - ], - "Human_poliovirus_2_Sabin_2" : [ - "AY184220" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1698_2007" : [ - "FJ205884" - ], - "Porcine_circovirus_2_BJ0502" : [ - "EF524525" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_2999_2005" : [ - "KJ469588" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_271" : [ - "JQ765571" - ], - "Hepatitis_B_virus_aHepB" : [ - "JN315779" - ], - "Slackia_heliotrinireducens_DSM_20476" : [ - "NC_013165" - ], - "Cauliflower_mosaic_virus__Cabb_D_H" : [ - "MCACGDH" - ], - "Hepatitis_B_virus__M37" : [ - "GQ924619" - ], - "Hepatitis_delta_virus_Miyako_JA_M36" : [ - "AB118845" - ], - "Porcine_circovirus_2__DBN_13" : [ - "FJ660971" - ], - "Bluetongue_virus__K23_08" : [ - "JX399157" - ], - "Dengue_virus_1__DENV_1_VN_BID_V949_2007" : [ - "EU482494" - ], - "Zygocactus_virus_X_B1" : [ - "NC_006059" - ], - "Rice_stripe_virus__ABB07" : [ - "EU931523", - "EU931524", - "EU931525", - "EU931522" - ], - "Seal_anellovirus_3" : [ - "NC_024890" - ], - "Groundnut_rosette_virus_satellite_RNA" : [ - "NC_002738", - "AF202868", - "AF202866", - "AF202867", - "AF202869" - ], - "Providencia_phage_Redjac" : [ - "NC_018832" - ], - "Lake_Victoria_marburgvirus___DRC1999_07DRC99" : [ - "DQ447650" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1656_2007" : [ - "FJ390382" - ], - "Tomato_yellow_leaf_curl_virus__KSCPe6" : [ - "JX456641" - ], - "Enterobacteria_phage_NC1" : [ - "DQ079884" - ], - "Chatanga_virus__Mohko_M07_1" : [ - "KF719224", - "KF719226", - "KF719225" - ], - "Enterococcus_phage_phiEf11" : [ - "NC_013696" - ], - "Infectious_bursal_disease_virus_Faragher_52_70" : [ - "HG974566", - "HG974565" - ], - "Hepatitis_B_virus__WY_HZ_50" : [ - "JX429907" - ], - "Enterovirus_A71_FY0805" : [ - "HQ882182" - ], - "Human_immunodeficiency_virus_1__ZM249M_flE8" : [ - "FJ496213" - ], - "Human_immunodeficiency_virus_1__04ZASK147B1" : [ - "DQ164114" - ], - "Bluetongue_virus_9__TUR2000_04" : [ - "AJ586685" - ], - "Enterovirus_D68__2011_21186" : [ - "KT280503" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_110505" : [ - "KJ425510" - ], - "Rhesus_monkey_rhadinovirus_H26_95__Macaca_mulatta_rhadinovirus_isolate_26_95" : [ - "AF210726" - ], - "West_Nile_virus_Sarafend" : [ - "AY688948" - ], - "Plum_pox_virus_D_Fantasia" : [ - "AY912056" - ], - "Cotton_atypical_red_leaf_virus__IAC25RMD" : [ - "KF906260" - ], - "JC_polyomavirus__AT_8" : [ - "AB048577" - ], - "Hepatitis_delta_virus_dFr2158" : [ - "AM183333" - ], - "Human_herpesvirus_5_HAN16" : [ - "JX512204" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__HL_Nymph_G2" : [ - "KF791961", - "KF791951", - "KF791956" - ], - "Duck_circovirus__LJ07" : [ - "EU499311" - ], - "Hepatitis_B_virus__bne272" : [ - "FN594768" - ], - "Hepatitis_B_virus__HBV_Tw174" : [ - "AB073839" - ], - "Porcine_circovirus_2_Pingtung_4" : [ - "AY180396" - ], - "Ranid_herpesvirus_2_ATCC_VR_568__Rafferty" : [ - "NC_008210" - ], - "Hepatitis_B_virus__LAMr_Pt__2_Adefovir_treated_Pt__2" : [ - "AB367393" - ], - "Tomato_leaf_curl_Bangladesh_virus_TLCV_BD2" : [ - "NC_004614" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3960_2008" : [ - "GU131740" - ], - "Pelargonium_zonate_spot_virus_tomato" : [ - "NC_003651", - "NC_003650", - "NC_003649" - ], - "Hepatitis_B_virus__CONTROL29" : [ - "JQ801521" - ], - "West_Nile_virus_1_CO_2003_1" : [ - "DQ164204" - ], - "Hepatitis_B_virus__E1_8" : [ - "GU815689" - ], - "Nipah_virus__UMMC1" : [ - "AY029767" - ], - "Maize_streak_virus__MSV_B1_Za_Wyl_g190_2006" : [ - "EU628609" - ], - "Porcine_circovirus_2_FMV05_6317" : [ - "DQ220728" - ], - "Dengue_virus_3_BR_DEN3_95_04" : [ - "EF629366" - ], - "Pepper_mottle_virus__205197" : [ - "EU586134" - ], - "Hepatitis_B_virus__919055" : [ - "JN040826" - ], - "Hepatitis_E_virus__HE_Aichi_C1" : [ - "AB602439" - ], - "Human_immunodeficiency_virus_1__YU" : [ - "HIVYU2X", - "HIVYU10X" - ], - "Human_papillomavirus_type_113__DL250" : [ - "FM955842" - ], - "Burkholderia_RPE64" : [ - "NC_021288", - "NC_021295", - "NC_021294", - "NC_021289", - "NC_021287" - ], - "Hepatitis_B_virus__Tibet_37" : [ - "HM750148" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG637A4_11" : [ - "KJ888069" - ], - "Hepatitis_B_virus__G2_2" : [ - "GU815764" - ], - "Dobrava_Belgrade_virus_Esl_29Aa_01" : [ - "AY533118" - ], - "Rice_stripe_virus__YSMi6" : [ - "KP083244", - "KP083236" - ], - "Human_immunodeficiency_virus_1__X2457_2" : [ - "FJ670529" - ], - "Chlamydophila_psittaci_RD1" : [ - "NC_014796", - "NC_014797" - ], - "Bordetella_pertussis_Tohama_I" : [ - "NC_002929" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_33_DRC" : [ - "JX458850" - ], - "Hepatitis_B_virus__GU1374" : [ - "GQ161760" - ], - "Tomato_yellow_leaf_curl_virus__Damyang_34" : [ - "JN183875" - ], - "Human_poliovirus_2_NIE1218418" : [ - "KJ170561" - ], - "Rabies_virus" : [ - "AY956319", - "NC_001542", - "RAVCGA" - ], - "Porcine_circovirus_2_PT_5742_04" : [ - "HQ831521" - ], - "African_horse_sickness_virus_serotype_8_South_African" : [ - "AJ007307" - ], - "Bean_golden_mosaic_virus__BR_Una16_12" : [ - "KJ939836" - ], - "Norovirus_Hu_GII_20196_2009_VNM_Hu_GII_20196_2009_VNM" : [ - "KC409273" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3926_2006" : [ - "GU131925" - ], - "Peanut_stunt_virus_K1" : [ - "JF838186" - ], - "Bacillus_phage_Finn" : [ - "NC_020480" - ], - "Ovine_herpesvirus_2_BJ1035" : [ - "NC_007646" - ], - "Coxsackievirus_A6_SZc173_13" : [ - "KF682362" - ], - "Human_respiratory_syncytial_virus_RSVA_human_USA_A1997_12_35_1997_A1997_12_35" : [ - "JX069800" - ], - "Bacillus_phage_Troll" : [ - "NC_022088" - ], - "Sugarcane_yellow_leaf_virus__Haw87_4094" : [ - "GU570006" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4018_2008" : [ - "GU131780" - ], - "Human_immunodeficiency_virus_1_ES_X1608_8" : [ - "FJ670519" - ], - "Dengue_virus_3__DENV_3_US_BID_V1092_2004" : [ - "EU529705" - ], - "Hepatitis_B_virus__33720" : [ - "AJ627223" - ], - "Vibrio_phage_SIO_2_SIO_2" : [ - "NC_016567" - ], - "Hepatitis_B_virus__2539" : [ - "JN827419" - ], - "Tomato_yellow_leaf_curl_virus_Israel_New_Caledonia_Noumea1_2010" : [ - "HE603241" - ], - "Mycobacterium_phage_Orion" : [ - "NC_008197" - ], - "Rotavirus_A__RVA_Human_wt_DEN_S14953_2011_G9P_8" : [ - "KP013461" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_81E_025_01_1981" : [ - "KP856967" - ], - "Hepatitis_C_virus__HK26" : [ - "KJ470623" - ], - "Ferret_papillomavirus__MpPV1" : [ - "NC_022253" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_81I_123A_01_1981" : [ - "KJ723488" - ], - "West_Nile_virus_Cz_13_329" : [ - "KM203861" - ], - "uncultured_phage_crAssphage" : [ - "NC_024711" - ], - "Human_adenovirus_11a_SGN1222" : [ - "FJ597732" - ], - "Vibrio_phage_X29" : [ - "NC_024369" - ], - "Human_immunodeficiency_virus_1__01AETH04BKM" : [ - "DQ314732" - ], - "Ochrobactrum_anthropi_ATCC_49188" : [ - "NC_009667", - "NC_009669", - "NC_009672", - "NC_009670", - "NC_009668", - "NC_009671" - ], - "West_Nile_virus_Madagascar_AnMg798" : [ - "DQ176636" - ], - "Human_herpesvirus_5__HAN" : [ - "KJ426589" - ], - "Anatid_herpesvirus_1_CHv" : [ - "JQ647509" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3884_2008" : [ - "JF937601" - ], - "Sida_micrantha_mosaic_virus___Rhombifolia__Bolivia_Cerro_Fraile_1_2007__SimMV_rho_Bo_CF1_07" : [ - "HM585437", - "HM585438" - ], - "Human_coxsackievirus_A21_Coe_Coe" : [ - "CXA21CG" - ], - "Hepatitis_C_virus_subtype_2k_1b__HCV_2k1b_GB_BID_G1241" : [ - "JX227952" - ], - "Human_immunodeficiency_virus_1__C_IN_05_NIRT723_1" : [ - "KF766541" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_15_2012" : [ - "KJ672472" - ], - "Hepatitis_C_virus_subtype_6m__C_0208" : [ - "DQ835763" - ], - "Hepatitis_B_virus__bne241" : [ - "FN594755" - ], - "African_cassava_mosaic_virus__CF_CF87BE_07" : [ - "KJ887610" - ], - "Usutu_virus_Italia_2009" : [ - "JF266698" - ], - "Cotton_leaf_curl_Multan_betasatellite__DH" : [ - "KF766952" - ], - "West_Nile_virus__WNV_1_US_BID_V4108_2005" : [ - "HM488119" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2610_2007" : [ - "GQ199876" - ], - "Bacillus_phage_Gemini" : [ - "KC330681" - ], - "Hepatitis_B_virus__116_SE_BRA" : [ - "KJ854685" - ], - "Measles_virus_strain_MVi_California_USA_16_03_MVi_California_USA_16_03" : [ - "JN635410" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPI01306_2011_A" : [ - "KJ627415" - ], - "Vaccinia_virus_Lister" : [ - "DQ121394", - "AY678276" - ], - "Dengue_virus_1_GZ01_95" : [ - "EF032590" - ], - "Southern_rice_black_streaked_dwarf_virus__Ninh_Binh1" : [ - "KM454848" - ], - "Hepatitis_A_virus__hd9" : [ - "KP177965" - ], - "Dengue_virus_2__DENV_2_IND_715394_1971" : [ - "JQ922550" - ], - "West_Nile_virus__WNV_1_US_BID_V6664_2005" : [ - "KJ501404" - ], - "Soybean_mosaic_virus__HGT005" : [ - "KP710862" - ], - "Human_immunodeficiency_virus_1__00BW1921_13" : [ - "AF443101" - ], - "Thermosynechococcus_elongatus_BP_1" : [ - "NC_004113" - ], - "Maize_streak_virus__MSV_A_CF_Bim2_Car18_2008" : [ - "HQ693306" - ], - "JC_polyomavirus__CB_3" : [ - "AB048560" - ], - "Bacillus_cereus_E33L" : [ - "NC_007107", - "NC_007105", - "NC_007103", - "NC_007104", - "NC_007106", - "NC_006274" - ], - "Abutilon_Brazil_virus" : [ - "NC_014139", - "NC_014138" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_155_2012" : [ - "KJ686287" - ], - "Bean_common_mosaic_virus_RU1" : [ - "GQ219793" - ], - "Porcine_circovirus_2__PCV_Y8" : [ - "KC515006" - ], - "JC_polyomavirus__JCV176FLC_05" : [ - "JF424904" - ], - "Human_bocavirus_1__307AR09" : [ - "KJ634207" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_PV_08" : [ - "HQ393456" - ], - "Norovirus_Hu_GII_4_Aomori3_2008_JP_Hu_GII_4_Aomori3_2008_JP" : [ - "AB541223" - ], - "Prochlorococcus_phage_P_SSP7_P_SSP7" : [ - "GU071093" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3848" : [ - "KM233110" - ], - "Muju_virus__11_1" : [ - "JX028271", - "JX028272" - ], - "Hepatitis_B_virus_4435_97" : [ - "EU594389" - ], - "South_African_cassava_mosaic_virus__MG_MG142A6_09" : [ - "KJ887671" - ], - "Norovirus_Hu_GII_4_Sakai1_2008_JP_Hu_GII_4_Sakai1_2008_JP" : [ - "AB541340" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC14E06_2008" : [ - "JF909092" - ], - "Eastern_equine_encephalitis_virus_EEEV_Eudocimus_USA_6_169_1992" : [ - "KJ469605" - ], - "Hepatitis_B_virus__S459_2" : [ - "FJ032335" - ], - "Cucumber_mosaic_virus_M48" : [ - "MCV3ACP" - ], - "Dengue_virus_1_D1_SG_06K2236DK1_2006" : [ - "EU081280" - ], - "Porcine_circovirus_2__ML3" : [ - "HQ202959" - ], - "JC_polyomavirus__JCV135_38" : [ - "JF424863" - ], - "Hepatitis_B_virus__HBV41" : [ - "KC875305" - ], - "Haloarcula_hispanica_pleomorphic_virus_1" : [ - "NC_013758" - ], - "Human_immunodeficiency_virus_1__97VNAG218" : [ - "FJ185255" - ], - "Porcine_circovirus_2_AH0901" : [ - "GU450327" - ], - "Halothece_PCC_7418" : [ - "NC_019779" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__MN11B" : [ - "KP283399" - ], - "Middle_East_respiratory_syndrome_coronavirus__Makkah_C9355_KSA_Makkah_2014_04_15" : [ - "KM027261" - ], - "Cotton_leaf_curl_Multan_betasatellite_CLCuMVB_7X_Pun_beta_7B" : [ - "EU384587" - ], - "Hepatitis_B_virus__C_Tonga_To400_2006" : [ - "HQ700574" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7663_2011" : [ - "KF973482" - ], - "Dengue_virus_2__DENV_2_NI_BID_V553_2005" : [ - "EU482761" - ], - "Desulfosporosinus_acidiphilus_SJ4" : [ - "NC_018066", - "NC_018067", - "NC_018068" - ], - "Hepatitis_B_virus__I62" : [ - "FJ562238" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7691_2012" : [ - "KF973473" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT49E10_2008" : [ - "JF909190" - ], - "Watermelon_chlorotic_stunt_virus__JO1_24" : [ - "KM820194" - ], - "Foot_and_mouth_disease_virus___type_A__IND_17_2009" : [ - "HQ832592" - ], - "Simian_virus_40_GM00637H" : [ - "AF345344", - "AF345345" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota62_2013" : [ - "KJ645658" - ], - "Hepatitis_B_virus__F4_02" : [ - "KJ676693" - ], - "Human_parechovirus_3_VGHKS_2007" : [ - "KM986843" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_9011_2001" : [ - "DQ404168" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4084_2008" : [ - "GU131828" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5443_2009" : [ - "JF937652" - ], - "Hepatitis_B_virus__PW3" : [ - "EU239219" - ], - "Zucchini_yellow_mosaic_virus__G72" : [ - "JN192417" - ], - "Bluetongue_virus_23_IND1988_02" : [ - "JQ771828", - "JQ771827", - "JQ771823", - "JQ771831", - "JQ771829", - "JQ771830", - "JQ771825", - "JQ771826" - ], - "Rotavirus_A_RVA_Human_wt_COD_KisB504_2009_G1P_6" : [ - "KJ870926", - "KJ870924", - "KJ870927", - "KJ870922", - "KJ870925", - "KJ870932", - "KJ870931", - "KJ870923", - "KJ870930", - "KJ870929" - ], - "Zaire_ebolavirus_Kikwit" : [ - "JQ352763" - ], - "Human_papillomavirus_type_25" : [ - "X74471" - ], - "BK_polyomavirus__SJH_LG_310" : [ - "JN192440" - ], - "Hepatitis_B_virus__H31" : [ - "FJ349210" - ], - "Clostridium_phage_phiZP2__phiZP2" : [ - "NC_018084" - ], - "Newcastle_disease_virus_BHG_Sweden_94" : [ - "GQ918280" - ], - "Murine_coronavirus_MHV_3_MHV_3" : [ - "FJ647224" - ], - "Chikungunya_virus_Thailand_2008_CK233" : [ - "KJ796849" - ], - "Geobacter_metallireducens_GS_15" : [ - "NC_007515", - "NC_007517" - ], - "Human_papillomavirus_type_83" : [ - "AF151983" - ], - "Rabies_virus__JX09_17_fb" : [ - "KC762941" - ], - "Uncia_uncia_papillomavirus_type_1" : [ - "DQ180494" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_Asia1_1_asia1_1pak_iso3" : [ - "AY593795" - ], - "Cucumber_mosaic_virus__Lucknow_Gmt" : [ - "EF178298" - ], - "Pennisetum_mosaic_virus__B" : [ - "NC_007147" - ], - "Norovirus_GII_Hu_JP_2012_GII_Pe_GII_4_Sydney2012_Fukuyama_1__Fukuyama_1" : [ - "KJ196293" - ], - "Hepatitis_B_virus__G3_11" : [ - "GU815773" - ], - "Erwinia_phage_phiEaH2" : [ - "NC_019929" - ], - "Hepatitis_B_virus__MY34118" : [ - "KJ803782" - ], - "Hepatitis_B_virus__cur1063" : [ - "KC774239" - ], - "Norovirus_Hu_GII_4_Hunter504D_04O_AU_Hunter504D_04O_Hu_GII_4_Hunter504D_04O_AU" : [ - "DQ078814" - ], - "Human_immunodeficiency_virus_1__671_00T103" : [ - "AY423386" - ], - "Maize_streak_virus__MSV_A_CF_Bou1_Car25_2008" : [ - "HQ693316" - ], - "Coxsackievirus_B3__DH16G_JS_2012" : [ - "KP036480" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1519_2007" : [ - "EU677148" - ], - "Squash_leaf_curl_virus__IL1_6" : [ - "KM595094" - ], - "Tomato_leaf_curl_Sulawesi_virus__FI04_1No1_1" : [ - "FJ237615" - ], - "Porcine_epidemic_diarrhea_virus_USA_NorthCarolina40_2013" : [ - "KJ645646" - ], - "Porcine_circovirus_1__Aust_2" : [ - "AY754013" - ], - "Infectious_salmon_anemia_virus__Bay_of_Fundy_97" : [ - "AF262389" - ], - "Corynebacterium_diphtheriae_C7__beta" : [ - "NC_016801" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PAN_GML903843_1984_ID" : [ - "KC344472" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1333" : [ - "KR534549" - ], - "Japanese_encephalitis_virus_CJN_S1" : [ - "AY303793" - ], - "Anaerolinea_thermophila_UNI_1" : [ - "NC_014960" - ], - "Columbid_circovirus__PL13" : [ - "KF738846" - ], - "Mungbean_yellow_mosaic_virus__VN10" : [ - "JX244180", - "JX244175" - ], - "Dengue_virus_2__DENV_2_NI_BID_V609_2005" : [ - "EU482597" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_2__AHEaCV_2_NZ_3024C3_2012" : [ - "KM874294" - ], - "Dengue_virus_1__ARG9920" : [ - "AY277664" - ], - "Mannheimia_haemolytica_D171" : [ - "NC_021738" - ], - "Hepatitis_B_virus__ZADGM452" : [ - "GQ167301" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA136" : [ - "KF670680" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_WUH1" : [ - "EU187484" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir6_T3X_Cuc_07" : [ - "FJ660441" - ], - "Human_papillomavirus_type_6__115" : [ - "HG793923" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1009" : [ - "KM573773" - ], - "Pseudomonas_stutzeri_DSM_10701" : [ - "NC_018177" - ], - "Pseudomonas_denitrificans_ATCC_13867" : [ - "NC_020829" - ], - "Inkoo_virus_KN3641" : [ - "EU789573" - ], - "Hepatitis_B_virus__HBV_HUS" : [ - "AB073848" - ], - "Stenotrophomonas_phage_phiSHP2" : [ - "NC_015586" - ], - "Rice_stripe_virus__LLi04" : [ - "AJ875056", - "AJ875059" - ], - "Rotavirus_G9_G16" : [ - "AJ250276" - ], - "Hepatitis_B_virus__Os_JP_2011" : [ - "AB933282" - ], - "Dengue_virus_3__81257_BR_PE_02" : [ - "JX669491" - ], - "Ebola_virus__Ebola_virus_H_sapiens_tc_COD_1976_Yambuku_Mayinga" : [ - "KR063671" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_200_2011" : [ - "KJ686133" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3859_2008" : [ - "GU131694" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_80G_664_01_1980" : [ - "KP258725" - ], - "Pestivirus_Burdur_05_TR__Burdur_05_TR" : [ - "KM408491" - ], - "Human_rhinovirus_A100_ATCC_VR_1300" : [ - "FJ445175" - ], - "Human_immunodeficiency_virus_1__03GH173_06" : [ - "AB286851", - "AB286852" - ], - "Isosphaera_pallida_ATCC_43644" : [ - "NC_014962", - "NC_014957" - ], - "African_cassava_mosaic_virus__CF_CF63BN2_07" : [ - "KJ887603" - ], - "Porcine_circovirus_2__PCV2_H_abortion" : [ - "KJ946351" - ], - "Lactobacillus_casei_BD_II" : [ - "NC_017476", - "NC_017474" - ], - "Tomato_aspermy_virus_1" : [ - "TOARNA1SF", - "AJ277269" - ], - "Human_immunodeficiency_virus_1__03ZAPS025MB1" : [ - "DQ351226" - ], - "Hepatitis_B_virus__JFA3892" : [ - "KF779259" - ], - "Gremmeniella_abietina_RNA_virus_L2__SurS4" : [ - "NC_005965" - ], - "Hepatitis_B_virus__2064" : [ - "FJ386616" - ], - "Human_immunodeficiency_virus_1__BREPM12817" : [ - "DQ085874" - ], - "Porcine_circovirus_2__TY3" : [ - "HQ202962" - ], - "Hepatitis_delta_virus__5" : [ - "HQ005364" - ], - "Tobacco_mosaic_virus__Bijie" : [ - "HE818413" - ], - "Hepatitis_B_virus__S5_3" : [ - "EU916221" - ], - "Potato_virus_X__GAF225_SA_CIP" : [ - "KJ534603" - ], - "Coxsackievirus_A6_Finland_2008" : [ - "KM114057" - ], - "Rabies_virus__NJ2262" : [ - "JQ685919" - ], - "Tick_borne_encephalitis_virus_4072" : [ - "KF951037" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2303_2001" : [ - "FJ744717" - ], - "Mycoplasma_synoviae_53" : [ - "NC_007294" - ], - "Zunongwangia_profunda_SM_A87" : [ - "NC_014041" - ], - "Potato_virus_Y_NTN_NIB_NTN" : [ - "AJ585342" - ], - "Azotobacter_vinelandii_CA6" : [ - "NC_021150" - ], - "Dengue_virus_3_D3_SG_05K3305DK1_2005" : [ - "EU081199" - ], - "Chikungunya_virus__CU_Chik009" : [ - "GU301779" - ], - "Human_immunodeficiency_virus_1__SUMA_flC5" : [ - "FJ496145" - ], - "Mumps_virus_Glouc1_UK96" : [ - "AF280799" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLU8925_2007" : [ - "KJ672616" - ], - "Human_immunodeficiency_virus_1__04BRRJ115" : [ - "EU735538" - ], - "Human_respiratory_syncytial_virus_HRSV_B_IC0027_14" : [ - "KP663730" - ], - "Hepatitis_B_virus__CMCL107" : [ - "GU721029" - ], - "JC_polyomavirus__JCV144_25" : [ - "JF424883" - ], - "Wheat_yellow_mosaic_virus__yaan" : [ - "AJ242490" - ], - "West_Nile_virus__WNV_1_US_BID_V6619_2002" : [ - "KJ501514" - ], - "Norovirus_Hu_GII_4_Niigata2_2008_JP_Hu_GII_4_Niigata2_2008_JP" : [ - "AB541312" - ], - "Igbo_Ora_virus_IBH10964" : [ - "AF079457" - ], - "Hepatitis_B_virus__S359" : [ - "FJ386665" - ], - "Human_immunodeficiency_virus_1__plwj2_6" : [ - "GU647198" - ], - "Torque_teno_virus__tth27" : [ - "AJ620224" - ], - "Penicillium_stoloniferum_virus_S" : [ - "NC_005977", - "NC_005976" - ], - "Dengue_virus_1__SV2951_07" : [ - "HM469968" - ], - "Astrovirus_SG__SG" : [ - "NC_025409" - ], - "Rotavirus_A__RVA_Human_wt_DEN_T39267_2009_G6P_14" : [ - "KP013443" - ], - "Hepatitis_B_virus__dlz2100" : [ - "KC774428" - ], - "Porcine_deltacoronavirus__CHN_JS_2014" : [ - "KP757892" - ], - "Feline_immunodeficiency_virus__YM29" : [ - "EF455607" - ], - "Human_papillomavirus_type_16__Qv18158E" : [ - "AY686583" - ], - "Bamboo_mosaic_virus_satellite_RNA" : [ - "NC_003497" - ], - "Human_herpesvirus_5_BE_46_2011" : [ - "KP745682" - ], - "Tomato_yellow_leaf_curl_virus_Mild__Japan_Kisozaki__Kis" : [ - "AB116634" - ], - "Rift_Valley_fever_virus_200803166" : [ - "JF311390", - "JF311381", - "JF311372" - ], - "Hepatitis_B_virus__C9" : [ - "EU939538" - ], - "Hepatitis_B_virus_C_1858_ea4" : [ - "AF223957" - ], - "Hepatitis_B_virus__BOL102" : [ - "AB365450" - ], - "Tomato_yellow_leaf_curl_virus__HB_TS" : [ - "KC312658" - ], - "Ageratum_leaf_curl_betasatellite__Sikar_M_2" : [ - "NC_020889" - ], - "Hepatitis_B_virus__22_165_07" : [ - "EU921418" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__BF_Po_Okra5" : [ - "FN554583" - ], - "Human_herpesvirus_1_KOS" : [ - "JQ673480", - "JQ780693" - ], - "Mopeia_mammarenavirus_AN_21366_BNI" : [ - "JN561685" - ], - "Hepatitis_B_virus__11B18" : [ - "AB674504" - ], - "Mycobacterium_phage_Boomer" : [ - "NC_011054" - ], - "Bean_yellow_mosaic_virus__GB17A" : [ - "HG970852" - ], - "Human_immunodeficiency_virus_1__04ZASK038B1" : [ - "AY878067" - ], - "Vibrio_phage_vB_VpaS_MAR10" : [ - "NC_019713" - ], - "Lettuce_mosaic_virus__ES16" : [ - "KJ161185" - ], - "Rift_Valley_fever_virus_Sudan_SP_2007" : [ - "JQ820479" - ], - "Murine_leukemia_virus__Mus_spicilegus" : [ - "AY818896" - ], - "Maize_streak_virus__MSV_A_ZA_War6_Ta6_2008" : [ - "HQ693446" - ], - "Enterovirus_B_QKM_EV_B_AUS_CV_B4_QKM001_2011" : [ - "KF878966" - ], - "Rice_stripe_virus__YYAn9" : [ - "KP083237", - "KP083245" - ], - "Sri_Lankan_cassava_mosaic_virus__Erode" : [ - "KF898350", - "KF898349" - ], - "Hepatitis_C_virus_subtype_1a__99_38" : [ - "EU781785" - ], - "Bacillus_phage_PBC1" : [ - "NC_017976" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V69_2002" : [ - "EU482868" - ], - "West_Nile_virus__WNV_1_US_BID_V6512_2005" : [ - "KJ501492" - ], - "JC_polyomavirus__SA21_01" : [ - "AY536239" - ], - "Phage_phiJL001" : [ - "NC_006938" - ], - "Foot_and_mouth_disease_virus___type_O_O_GZ_CHA_2010" : [ - "JN998086" - ], - "Rinderpest_virus__strain_Kabete_O__Kabete__O__virulent" : [ - "NC_006296" - ], - "Maize_streak_virus__MSV_A_ZM_Kas_Z23_2008" : [ - "HQ693463" - ], - "Crimean_Congo_hemorrhagic_fever_virus_ArD15786" : [ - "DQ211614", - "DQ211640", - "DQ211627" - ], - "Dengue_virus_2__MKS_WS80" : [ - "KC762680" - ], - "Hepatitis_B_virus__I_T59" : [ - "GU456653" - ], - "Hepatitis_B_virus__B12" : [ - "FJ904431" - ], - "Radish_leaf_curl_virus_Hajipur__IN_Bih06_10___IN_Bih06_10" : [ - "HQ257375" - ], - "Rift_Valley_fever_virus_MP_12" : [ - "DQ375404", - "DQ380154", - "DQ380208" - ], - "Cassava_vein_mosaic_virus" : [ - "CVU20341", - "NC_001648" - ], - "Burkholderia_phage_KL1" : [ - "NC_018278" - ], - "Hepatitis_B_virus__312000345" : [ - "JN792905" - ], - "Hepatitis_B_virus__BD1" : [ - "EU239224" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_179_2012" : [ - "KJ686222" - ], - "Beet_pseudoyellows_virus" : [ - "NC_005209", - "NC_005210" - ], - "Equine_rhinitis_A_virus_ERAV_ON_05" : [ - "JX294351" - ], - "Human_immunodeficiency_virus_1__09YNLC216027sg" : [ - "KC898986" - ], - "Tomato_yellow_leaf_curl_virus__Langfang" : [ - "JF833036" - ], - "Garlic_virus_X__Korea" : [ - "NC_001800" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V265_2005" : [ - "EU255958" - ], - "Hepatitis_B_virus_CLB_DonX" : [ - "GU565217" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__HS3_1" : [ - "GU723734" - ], - "Lordsdale_virus" : [ - "X86557" - ], - "Ageratum_yellow_vein_virus__AFSP4a" : [ - "JN809817" - ], - "South_African_cassava_mosaic_virus__MG_MG411A6_11" : [ - "KJ887715" - ], - "West_Nile_virus__WNV_1_US_BID_V4911_2001" : [ - "HQ671718" - ], - "Porcine_circovirus_2__La_Habana" : [ - "FN398027" - ], - "Tembusu_virus_TMUV_YY1Du" : [ - "AB917088" - ], - "Halomonas_elongata_DSM_2581" : [ - "NC_014532" - ], - "Tomato_yellow_leaf_curl_virus__LNYK" : [ - "KJ754194" - ], - "Bacillus_phage_G_G" : [ - "NC_023719" - ], - "Shigella_flexneri_2a_2457T" : [ - "NC_004741" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Hawkeye7_After" : [ - "EF532814" - ], - "Dengue_virus_2__DENV_2_VN_BID_V720_2006" : [ - "EU482657" - ], - "Human_bocavirus__HK12" : [ - "EF450728" - ], - "Apodemus_sylvaticus_papillomavirus_1" : [ - "NC_024893" - ], - "Foot_and_mouth_disease_virus___type_O__RUS_Jul_2010" : [ - "KF112883" - ], - "Hepatitis_B_virus__I78" : [ - "FJ562333" - ], - "Desulfovibrio_desulfuricans_ND132" : [ - "NC_016803" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1689_2007" : [ - "FJ024459" - ], - "Cotton_leaf_curl_Burewala_virus__7" : [ - "EU384570" - ], - "Spiroplasma_kunkelii_virus_SkV1_CR2_3x" : [ - "NC_009987" - ], - "Hepatitis_B_virus__M41" : [ - "GQ924623" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V35_2004" : [ - "EU155380" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V336_2006" : [ - "EU155248" - ], - "Hepatitis_B_virus__H129" : [ - "FJ349217" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V299_2005" : [ - "EU256083" - ], - "Hepatitis_C_virus_subtype_1b__No__17" : [ - "AB154192" - ], - "Listeria_monocytogenes_Finland_1998" : [ - "NC_017547" - ], - "Human_bocavirus__HBov_sh3" : [ - "JN632513" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2396_2006" : [ - "FJ850088" - ], - "East_African_cassava_mosaic_Cameroon_virus__EACMCV_CM_NG_Ll_06" : [ - "EU685321" - ], - "Pseudomonas_fluorescens_Pf_5" : [ - "NC_004129" - ], - "Grapevine_chrome_mosaic_virus__H6" : [ - "HG939484" - ], - "Hepatitis_B_virus__A5_50132" : [ - "FJ692612" - ], - "Hepatitis_B_virus__8225" : [ - "AY233287" - ], - "Hepatitis_B_virus__I85" : [ - "FJ562252" - ], - "Bhendi_yellow_vein_India_virus__India_Varapamatti_OY171_2006___OY171" : [ - "GU112042" - ], - "Enterobacterial_phage_mEp234" : [ - "NC_019715" - ], - "Cucumber_mosaic_virus_PHz" : [ - "EU723570", - "EU723568", - "EU723569" - ], - "Human_parvovirus_4__T718" : [ - "KM390025" - ], - "Rabies_virus__Pk_23" : [ - "HE802675" - ], - "Clover_yellow_vein_virus_No_30" : [ - "NC_003536" - ], - "Lettuce_mosaic_virus__Tn517" : [ - "KJ161192" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1" : [ - "EF112445" - ], - "Maize_streak_virus__MSV_A_ZA_War9_Ta9_2008" : [ - "HQ693449" - ], - "Dengue_virus_3__DENV_3_LK_BID_V2412_1989" : [ - "FJ882572" - ], - "Japanese_encephalitis_virus_JEV_eq_Tottori_2003" : [ - "AB594829" - ], - "Simian_adenovirus_31_1" : [ - "FJ025906" - ], - "Porcine_circovirus_2_Pingtung_5" : [ - "AY180397" - ], - "Tick_borne_encephalitis_virus_Primorye_69" : [ - "EU816453" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__LN1101" : [ - "KF751238" - ], - "Rhodococcus_opacus_B4" : [ - "NC_012521", - "NC_006970", - "NC_012520", - "NC_006969", - "NC_012522", - "NC_012523" - ], - "Porcine_circovirus_2_BDH" : [ - "HM038017" - ], - "Hepatitis_B_virus__G187" : [ - "JQ040157" - ], - "Enterococcus_phage_phiFL2B_phiFL2B" : [ - "GQ478085" - ], - "Human_metapneumovirus_HMPV_USA_C1_446_2004_A" : [ - "KC562221" - ], - "JC_polyomavirus__JCV183FLC_01" : [ - "JF425488" - ], - "Porcine_kobuvirus_CH_KB_1_2014" : [ - "KM051987" - ], - "Human_coronavirus_HKU1_N15" : [ - "DQ415911" - ], - "Cycloclasticus_zancles_7_ME" : [ - "NC_021917", - "NC_021918" - ], - "Hepatitis_B_virus__dxa2047" : [ - "KC774462" - ], - "Hepatitis_B_virus__cpzcam6" : [ - "FJ798099" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_2__AHEaCV_2_NZ_3024C2_2012" : [ - "KM874293" - ], - "Human_parechovirus_1__K54_94" : [ - "GQ183024" - ], - "Turnip_mosaic_virus_Tu7_CHN_12__Jing_2" : [ - "AY090660" - ], - "Bluetongue_virus_16__RSArrrr_16" : [ - "AJ586719" - ], - "Papaya_leaf_curl_Guandong_virus__BXG4" : [ - "KP876482" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_88I_217A_01_1988" : [ - "KJ723468" - ], - "Human_bocavirus_CBJ" : [ - "KM464731" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_1277_2001" : [ - "KJ469629" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI12_12_DNA_B" : [ - "HE979785" - ], - "Human_immunodeficiency_virus_1_96ZM651" : [ - "AF286224" - ], - "Maize_streak_virus__MSV_A_CF_Bai2_Car13_2008" : [ - "HQ693287" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_MRC_DPRU1289_2007_G1P_8" : [ - "KF636329" - ], - "Hepatitis_B_virus__I169" : [ - "FJ562295" - ], - "Human_parainfluenza_virus_3_HPIV3_FRA_29111069_2009" : [ - "KF530233" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7348_2002" : [ - "KF973331" - ], - "WU_Polyomavirus__W296" : [ - "GU296365" - ], - "Human_adenovirus_15__CH38" : [ - "AB562586" - ], - "Corynebacterium_callunae_DSM_20147" : [ - "NC_020553", - "NC_020523", - "NC_020506" - ], - "Hepatitis_B_virus_4652_97" : [ - "EU594423" - ], - "Hepatitis_B_virus__S852_13" : [ - "EU589342" - ], - "West_Nile_virus__ARC23_06" : [ - "JF957164" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1568_2007" : [ - "FJ024428" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1989_2003" : [ - "FJ639677" - ], - "Borna_disease_virus_CRNP5" : [ - "AY114163" - ], - "Madariaga_virus_MADV_Equus_ferus_caballus_PAN_247188_2010" : [ - "KJ469648" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0075" : [ - "KP759743" - ], - "Acidianus_filamentous_virus_6" : [ - "NC_010152" - ], - "Achromobacter_xylosoxidans" : [ - "NC_021285" - ], - "Human_rotavirus_A_1052_stool" : [ - "AJ236765" - ], - "Tobacco_mosaic_virus__B935A" : [ - "AJ011933" - ], - "Simian_retrovirus_2_D2_RHE_OR" : [ - "AF126467" - ], - "Hepatitis_B_virus_574_1" : [ - "KR013802", - "KR013980" - ], - "Torque_teno_sus_virus_1b__TTV2Bj7_2" : [ - "HM633214" - ], - "Human_bocavirus__HK5" : [ - "EF450721" - ], - "Francolinus_leucoscepus_papillomavirus_1" : [ - "NC_013117" - ], - "Tobacco_yellow_dwarf_virus_A__TYDV_A_AU_2562_2010" : [ - "JN989442" - ], - "Mungbean_yellow_mosaic_India_virus__Varanasi" : [ - "DQ061273" - ], - "Human_immunodeficiency_virus_1__03ZASK117B1" : [ - "DQ056408" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL160A" : [ - "AB985571" - ], - "Okra_leaf_curl_betasatellite__EL37" : [ - "KJ437509" - ], - "Hepatitis_B_virus__IstambulB27" : [ - "AB674413" - ], - "Pseudomonas_phage_phi6__A1" : [ - "DQ785287", - "DQ785292", - "DQ785293" - ], - "Dengue_virus_2__DENV_2_US_BID_V1395_1997" : [ - "EU569713" - ], - "Hepatitis_B_virus__252_95_4" : [ - "EU871979" - ], - "Pseudomonas_aeruginosa_PA1R" : [ - "NC_022806" - ], - "Human_papillomavirus_type_21" : [ - "HPU31779" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9452_2013" : [ - "KJ643523" - ], - "Hepatitis_B_virus__WHZYD" : [ - "JN257185" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7070_2008" : [ - "KJ189286" - ], - "Thermoanaerobacter_X513" : [ - "NC_014538" - ], - "Human_respiratory_syncytial_virus__05_000417" : [ - "JX015486" - ], - "Lymphocystis_disease_virus___isolate_China" : [ - "NC_005902" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1851_2007" : [ - "FJ461312" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__YN57_01" : [ - "KC149950" - ], - "Hepatitis_B_virus__patient_4N" : [ - "EU522066" - ], - "Dengue_virus_2_DENV_2_PR_34DN_1994" : [ - "GQ398303" - ], - "Pseudomonas_phage_phi6" : [ - "NC_003716", - "NC_003715", - "NC_003714" - ], - "Hepatitis_B_virus__IND_2008_12" : [ - "KF214676" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1545_2007" : [ - "EU677170" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_07QN" : [ - "FJ394029" - ], - "Strawberry_mottle_virus" : [ - "NC_003445", - "NC_003446" - ], - "Brachybacterium_faecium_DSM_4810" : [ - "NC_013172" - ], - "Panicum_streak_virus__I_KE_Jic13_KPC" : [ - "GQ415401" - ], - "Dengue_virus_1__MKS_2040" : [ - "KC762645" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2393_2005" : [ - "FJ850085" - ], - "Infectious_bursal_disease_virus__ZZ_11" : [ - "JX682712", - "JX682711" - ], - "Cotton_leafroll_dwarf_virus__ARG" : [ - "NC_014545" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V399_2006" : [ - "EU155270" - ], - "Rubella_virus__RVi_Matsue_JPN_68" : [ - "AB222609" - ], - "Hepatitis_B_virus__D96" : [ - "EU939648" - ], - "Bean_common_mosaic_virus__CD011" : [ - "KM051425" - ], - "Alteromonas_macleodii__Black_Sea_11" : [ - "NC_018692" - ], - "Beak_and_feather_disease_virus__BFDV4" : [ - "GU015015" - ], - "Hepatitis_B_virus__F1_6" : [ - "GU815719" - ], - "Malvastrum_yellow_vein_Yunnan_virus___Y277___Y277" : [ - "AJ971501" - ], - "Human_immunodeficiency_virus_1__ZM246F_flA2" : [ - "FJ496187" - ], - "Cydia_pomonella_granulovirus__CpGV_I07" : [ - "KM217574" - ], - "Grapevine_redleaf_associated_virus__GiGV_WA_MR" : [ - "KC427995" - ], - "West_Nile_virus__WNV_1_US_BID_V7411_2004" : [ - "KJ501123" - ], - "Enterobacteria_phage_phiX174__JACS" : [ - "FJ849058" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1655_2007" : [ - "FJ024449" - ], - "Clostridium_saccharolyticum_WM1" : [ - "NC_014376" - ], - "African_horse_sickness_virus__HS_90_07" : [ - "KP009633", - "KP009637", - "KP009631", - "KP009636", - "KP009639", - "KP009634", - "KP009640", - "KP009638", - "KP009635" - ], - "Human_poliovirus_3_NIE1118497" : [ - "KJ170627" - ], - "Ageratum_leaf_curl_Cameroon_betasatellite__AGLI4B2" : [ - "FN298805" - ], - "Hepatitis_C_virus_subtype_2a__PR63" : [ - "KF676351" - ], - "West_Nile_virus__BSL13_2005" : [ - "DQ666451" - ], - "Hepatitis_B_virus__HBV_Ry1" : [ - "AB073851" - ], - "Maize_streak_virus__UNak_120" : [ - "EF547090" - ], - "Abutilon_mosaic_virus_IN_Udg_JIX12_2010" : [ - "HQ588901" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1199_2007" : [ - "EU569694" - ], - "Porcine_circovirus_2__Aust4156" : [ - "EU886638" - ], - "Gemycircularvirus_SL1_SL1" : [ - "NC_026818" - ], - "Barley_yellow_dwarf_virus_PAV__003" : [ - "EF043235" - ], - "Hepatitis_A_virus__FH1" : [ - "AB020567" - ], - "Encephalomyocarditis_virus_BEL_2887A_91" : [ - "AF356822" - ], - "Wheat_dwarf_virus__SA12EcoFL2" : [ - "AM922262" - ], - "Enterobacteria_phage_HK446" : [ - "NC_019714" - ], - "Zaire_ebolavirus__H_sapiens_tc_GIN_14_WPG_C05" : [ - "KP096420" - ], - "Macroptilium_yellow_spot_virus__BR_Bas1_09" : [ - "JN419005" - ], - "Norovirus_Hu_GII_4_Teralba_NSW881Z_2009_AUS_Hu_GII_4_NSW881Z_2009_AU" : [ - "HM748972" - ], - "Crimean_Congo_hemorrhagic_fever_virus__TAJ_HU8975" : [ - "AY297692" - ], - "Human_immunodeficiency_virus_1__97CNGX_2F" : [ - "AY008714" - ], - "Staphylococcus_phage_29" : [ - "NC_007061" - ], - "Hepatitis_B_virus__S1348_3" : [ - "FJ787484" - ], - "Human_immunodeficiency_virus_1__mIDU103" : [ - "AB097873" - ], - "West_Nile_virus__WNV_1_US_BID_V6405_2001" : [ - "KJ501452" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19089_A76832_2007" : [ - "KR135317" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7081_2009" : [ - "KJ189292" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V337_2006" : [ - "EU155249" - ], - "Hepatitis_B_virus__J231" : [ - "GQ377627" - ], - "Ectromelia_virus_Naval__NAVAL" : [ - "KJ563295" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PR_61A_2008" : [ - "HM748930" - ], - "Newcastle_disease_virus_Du_CH_HLJ_0214_2_2011" : [ - "KP001164" - ], - "Brochothrix_phage_BL3" : [ - "NC_015254" - ], - "Hepatitis_B_virus__JFA3809" : [ - "KF779252" - ], - "Sweet_potato_virus_C_C_C1" : [ - "NC_014742" - ], - "Maize_streak_virus__MSV_A_KE_Nan2_Ke2_2008" : [ - "HQ693330" - ], - "Dengue_virus_2__MKS_2204" : [ - "KC762667" - ], - "Human_papillomavirus_type_123__NJ2501" : [ - "GQ845445" - ], - "Equine_arteritis_virus__S4216" : [ - "GQ903811" - ], - "Beak_and_feather_disease_virus__BFDV_T_PL_328_2007" : [ - "JX221017" - ], - "White_clover_cryptic_virus_2__IPP_Lirepa" : [ - "NC_021094", - "NC_021095" - ], - "European_mountain_ash_ringspot_associated_virus__E52994" : [ - "HG799742" - ], - "Porcine_circovirus_2__TT1" : [ - "HQ202952" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__K2J3" : [ - "JN053452" - ], - "Methylovorus_MP688" : [ - "NC_014733" - ], - "Marinobacter_aquaeolei_VT8" : [ - "NC_008740", - "NC_008739", - "NC_008738" - ], - "Porcine_circovirus_2_NB0301" : [ - "AY391729" - ], - "Tomato_bushy_stunt_virus_satellite_RNA_B10__B10" : [ - "AF022788" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1897_2007" : [ - "FJ461329" - ], - "Mycobacterium_phage_BarrelRoll_BarrelRoll" : [ - "NC_023747" - ], - "African_swine_fever_virus__Odintsovo_02_14" : [ - "KP843857" - ], - "Porcine_circovirus_2__La_Habana_25_herd_B" : [ - "FN687845" - ], - "Bean_yellow_mosaic_virus__NG1" : [ - "HG970869" - ], - "Hepatitis_B_virus__pt3T" : [ - "KM875409" - ], - "Goose_circovirus__TW7_2001" : [ - "AF536937" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK20004_2000_G1P_8_P_4__mixed_genotype" : [ - "KC443316", - "KC443314", - "KC443313" - ], - "Tomato_yellow_leaf_curl_virus__KZPTo20" : [ - "JX456640" - ], - "Hepatitis_B_virus__HK_1325" : [ - "KJ410497" - ], - "Porcine_circovirus_2_No_26" : [ - "AB072302" - ], - "Enterovirus_J_POo_1_Enterovirus_103" : [ - "FJ007373" - ], - "Monkeypox_virus_PCH" : [ - "KJ642616" - ], - "Penicillium_stoloniferum_virus_F" : [ - "NC_007221", - "NC_007222", - "NC_007223" - ], - "Nanovirus_like_particle" : [ - "AM930245", - "AJ512951", - "AJ512961", - "AM930246", - "AJ512957", - "AJ512955", - "AJ512953", - "AJ512963", - "AJ512958", - "AJ512948", - "AJ512962", - "AM884370", - "AJ512956", - "AJ512959", - "AJ512949", - "AJ512950", - "AJ238493", - "AM930244", - "NC_005954", - "AJ512960", - "FN794202", - "AM930247", - "AJ512952", - "AM930248", - "AJ512964" - ], - "Malvastrum_yellow_mosaic_alphasatellite__Hn44" : [ - "AM236766" - ], - "Human_poliovirus_1_NIE1018382" : [ - "KJ170508" - ], - "Enterococcus_phage_phiFL4A_phiFL4A" : [ - "NC_013644" - ], - "Human_herpesvirus_5_HAN2" : [ - "JX512200" - ], - "Dengue_virus_3_den3_88" : [ - "AY858038" - ], - "Dengue_virus_2__DENV_2_NI_BID_V4159_2005" : [ - "HM631868" - ], - "Hepatitis_B_virus__bxa1585" : [ - "KC774400" - ], - "Hepatitis_B_virus__1967" : [ - "FJ386607" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0150" : [ - "KP759696" - ], - "Tomato_yellow_leaf_curl_virus__Dominican_Republic___Dominican_Republic_isolate" : [ - "AF024715" - ], - "Enterobacteria_phage_PR3" : [ - "AY848685" - ], - "Tembusu_virus_WJ_1" : [ - "JX549382" - ], - "Barley_stripe_mosaic_virus_Qasr_Ibrim" : [ - "KJ433977", - "KJ433979", - "KJ433978" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_KWT09_2011" : [ - "KM188464" - ], - "Xanthomonas_phage_Xp10" : [ - "NC_004902" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K303" : [ - "AJ717570" - ], - "Bean_golden_mosaic_virus__BR_Par10_12" : [ - "KJ939810" - ], - "Hepatitis_B_virus__CH_01" : [ - "KP017268" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3949_1" : [ - "KR105209" - ], - "Torque_teno_virus__JT14F" : [ - "AB064601" - ], - "Trematomus_polyomavirus_1__PES6" : [ - "NC_026944" - ], - "Human_herpesvirus_3_11" : [ - "DQ479955" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL053A" : [ - "AB985292", - "AB985523" - ], - "Hepatitis_B_virus__H94" : [ - "FJ349225" - ], - "African_cassava_mosaic_virus__MG_MG18A38_06" : [ - "KJ887838" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__NT0801_P50" : [ - "KJ523896" - ], - "WU_Polyomavirus__CU_302" : [ - "EU358769" - ], - "Feline_calicivirus_GD" : [ - "GU214989" - ], - "Euphorbia_mosaic_virus__Wissadula" : [ - "EU740969" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_120749" : [ - "KJ425493" - ], - "Taylorella_asinigenitalis_14_45" : [ - "NC_021033" - ], - "Cotton_leaf_curl_Burewala_virus__Bihar" : [ - "HM461863", - "HM461862" - ], - "Cebus_albifrons_polyomavirus_1__2141" : [ - "NC_019854" - ], - "Dengue_virus_1__MKS_0056" : [ - "KC762625" - ], - "Hepatitis_B_virus__Ag08" : [ - "KJ843170" - ], - "Tomato_pseudo_curly_top_virus" : [ - "NC_003825" - ], - "Chickpea_redleaf_virus__Qld_22" : [ - "NC_014739" - ], - "Propionibacterium_phage_PHL073M02" : [ - "JX570703" - ], - "Pirital_mammarenavirus_VAV_1743" : [ - "AY575850" - ], - "Bifidobacterium_dentium_Bd1" : [ - "NC_013714" - ], - "Human_polyomavirus_6__606b" : [ - "HM011559" - ], - "Potato_virus_S__Yunnan_YN" : [ - "KC430335" - ], - "Canine_distemper_virus_Ac96I_H358" : [ - "AB753776" - ], - "Yersinia_phage_Y" : [ - "JQ957925" - ], - "Hepatitis_B_virus__GU1520" : [ - "GQ161818" - ], - "Powassan_virus_Partizansk_2006" : [ - "EU543649" - ], - "Chlorobium_phaeovibrioides_DSM_265" : [ - "NC_009337" - ], - "West_Nile_virus__WNV_1_US_BID_V6473_2002" : [ - "KJ501476" - ], - "Human_immunodeficiency_virus_1__WITO_flF4" : [ - "FJ496182" - ], - "Porcine_circovirus_2__NL_PMWS_4" : [ - "AY484416" - ], - "Human_bocavirus__HZ1101" : [ - "KP710202" - ], - "Bat_hepatitis_virus__PEPR13" : [ - "KF939650" - ], - "Hepatitis_B_virus__PNF5279" : [ - "KF779360" - ], - "Classical_swine_fever_virus_CSFV_2_3_wb_CSF1045_2009_Roesrath_CSF1045" : [ - "GU233734" - ], - "Dengue_virus_3__DENV_3_US_BID_V1610_2004" : [ - "FJ024469" - ], - "Pseudomonas_stutzeri_A1501" : [ - "NC_009434" - ], - "Hepatitis_B_virus__Occult_HK317" : [ - "KJ410509" - ], - "Bovine_parainfluenza_virus_3__TVMDL16" : [ - "KJ647285" - ], - "Hepatitis_delta_virus_Miyako_JA_M6" : [ - "AB118822" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0043" : [ - "KP759712" - ], - "Hepatitis_B_virus__I2_M04_0026" : [ - "FJ023664" - ], - "Dengue_virus_1__KDH0030A" : [ - "HG316482" - ], - "Youcai_mosaic_virus__SX" : [ - "JX422022" - ], - "Lactobacillus_phage_A2" : [ - "NC_004112" - ], - "Porcine_circovirus_2_MZL" : [ - "HM038025" - ], - "Arcobacter_butzleri_7h1h" : [ - "NC_021878" - ], - "Human_rhinovirus_B93" : [ - "EF173425" - ], - "Porcine_circovirus_2__YN_8" : [ - "HM776452" - ], - "West_Nile_virus__WNV_1_US_BID_V4203_2002" : [ - "HQ671698" - ], - "African_horse_sickness_virus__Vryheid" : [ - "KP009771", - "KP009775", - "KP009776", - "KP009777", - "KP009779", - "KP009774", - "KP009778", - "KP009773", - "KP009780" - ], - "Duck_Tembusu_virus_GX_2011" : [ - "KC990542" - ], - "Hepatitis_C_virus_subtype_1b_MD26" : [ - "AF207767" - ], - "Hepatitis_B_virus__CONTROL17" : [ - "JQ801509" - ], - "Tobacco_streak_virus__Bangalore" : [ - "FJ608537" - ], - "Grapevine_virus_B__94_971" : [ - "EF583906" - ], - "Dengue_virus_2_DENV_2_PR_10DN_1994" : [ - "GQ398288" - ], - "Groundnut_rosette_virus_MC1" : [ - "NC_003603" - ], - "Hepatitis_B_virus__N205M_e409" : [ - "KJ173424" - ], - "Tomato_leaf_curl_China_betasatellite__Y254" : [ - "AJ971332" - ], - "Vibrio_cholerae_LMA3984_4" : [ - "NC_017270", - "NC_017269" - ], - "Human_T_lymphotropic_virus_1_Aus_Aus_DF" : [ - "KF242505" - ], - "Simian_virus_40_B_2" : [ - "AF155358" - ], - "Beet_curly_top_Iran_virus__IR_Kam_B23K_Sug_08" : [ - "JQ707942" - ], - "Dengue_virus_3__DENV_3_US_BID_V2098_1999" : [ - "FJ547069" - ], - "West_Nile_virus__WNV_1_US_BID_V4346_2002" : [ - "HM488184" - ], - "Escherichia_coli_CFT073" : [ - "NC_004431" - ], - "Hepatitis_B_virus__GSDC_53" : [ - "HM750136" - ], - "Hepatitis_B_virus__cxa2039" : [ - "KC774315" - ], - "Human_herpesvirus_5_BE_5_2011" : [ - "KP745667" - ], - "Hepatitis_B_virus__Saan_2001" : [ - "HQ603071" - ], - "Seoul_virus__LYON_Rn_FRA_2013_LYO852" : [ - "KF387724", - "KF387723", - "KF387725" - ], - "Tobacco_necrosis_virus_D_D_Hungarian" : [ - "NC_003487" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1799_2007" : [ - "FJ410199" - ], - "Bdellovibrio_phage_phi1422" : [ - "NC_019525" - ], - "Human_poliovirus_1_NIE0918315" : [ - "KJ170500" - ], - "Coxsackievirus_A22_USA75_10624" : [ - "DQ995648" - ], - "Hepatitis_B_virus__HBV_IK29902" : [ - "AF121246" - ], - "JC_polyomavirus__JCV176FLC_14" : [ - "JF424897" - ], - "Hepatitis_B_virus__M_2" : [ - "KF425554" - ], - "Hepatitis_B_virus__dxn1003" : [ - "KC774465" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Octa_alpha_9" : [ - "EU384638" - ], - "Bovine_astrovirus_BAstV_GX7_CHN_2014" : [ - "NC_024297" - ], - "Propionibacterium_phage_PHL037M02" : [ - "NC_022339" - ], - "Ovine_adenovirus_D_OAV287_287" : [ - "NC_004037" - ], - "Norovirus_Hu_GII_4_Osaka4_2007_JP_Hu_GII_4_Osaka4_2007_JP" : [ - "AB541325" - ], - "Southern_rice_black_streaked_dwarf_virus__Quang_Tri_2" : [ - "KM576892" - ], - "Sandfly_fever_Sicilian_virus_91045I" : [ - "EF201824" - ], - "Human_metapneumovirus_HMPV_USA_TN_93_32_1993_B" : [ - "KC562223" - ], - "Mopeia_Lassa_virus_reassortant_29_ML29_IGS_15" : [ - "NC_006573", - "NC_006572" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_TP" : [ - "EU864233" - ], - "Hepatitis_E_virus_CH_YT_HEV02" : [ - "KC492825" - ], - "Human_poliovirus_1__TCDCE01_135" : [ - "AF538840" - ], - "Cripavirus_NB_1_2011_HUN_NB_1_2011_HUN" : [ - "NC_025219" - ], - "Salmonella_phage_Ent1" : [ - "NC_019539" - ], - "Maize_streak_virus____Set__Setaria" : [ - "AF007881" - ], - "Enterovirus_A71_Shanghai_64_2009" : [ - "HQ891927" - ], - "Gallid_herpesvirus_1_CEO_TRVX" : [ - "JN580313" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3387_2007" : [ - "GQ868567" - ], - "Japanese_encephalitis_virus__SC0415" : [ - "JN381838" - ], - "Duck_circovirus__DU102" : [ - "HM162351" - ], - "Bluetongue_virus_2__SAD2001_01" : [ - "AJ586672" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3763_2008" : [ - "JN819422" - ], - "WU_Polyomavirus__CU_295" : [ - "EU358768" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2686_2006" : [ - "FJ882517" - ], - "West_Nile_virus__WNV_1_Gallus_BID_V4962_kidney" : [ - "HQ705678" - ], - "Porcine_circovirus_2__KPTE08" : [ - "KJ680345" - ], - "Hepatitis_B_virus__patient_313" : [ - "AF418689", - "AF418684", - "AF418686", - "AF418691", - "AF418688", - "AF418690", - "AF418685", - "AF418692", - "AF418687" - ], - "Salmonella_enterica_serovar_Paratyphi_C_RKS4594" : [ - "NC_012125", - "NC_012124" - ], - "Human_papillomavirus_type_6__63" : [ - "HG793871" - ], - "Hepatitis_B_virus__patient_X104" : [ - "AJ309369", - "AJ309371", - "AJ309370" - ], - "Mouse_parvovirus_3" : [ - "NC_008185" - ], - "Hepatitis_B_virus__Z31_22" : [ - "GQ259588" - ], - "Rhynchosia_golden_mosaic_virus" : [ - "EU339939", - "AF239671", - "EU339938" - ], - "Dengue_virus_2__MD863" : [ - "FM210227" - ], - "East_African_cassava_mosaic_virus_Kenya_TZT" : [ - "AY795985" - ], - "Cucurbit_chlorotic_yellows_virus__Erlun" : [ - "JN126045" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_P3pp6" : [ - "FJ882959" - ], - "Hepatitis_B_virus_99_19" : [ - "KR013881" - ], - "Tomato_ringspot_virus" : [ - "NC_003839" - ], - "Spodoptera_frugiperda_rhabdovirus__Sf" : [ - "NC_025382" - ], - "Porcine_circovirus_2_BJ0804" : [ - "EU921257" - ], - "Wallal_virus_AUS1978_09" : [ - "KJ495745", - "KJ495749", - "KJ495747", - "KJ495750", - "KJ495746", - "KJ495748", - "KJ495751", - "KJ495754", - "KJ495752", - "KJ495753" - ], - "Ectromelia_virus_Moscow" : [ - "NC_004105" - ], - "Human_poliovirus_2_NIE1118427" : [ - "KJ170535" - ], - "Porcine_circovirus_2__DBN_12" : [ - "FJ660970" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3731_2007" : [ - "GQ868524" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PR_60A_2008" : [ - "HM748918" - ], - "Tick_borne_encephalitis_virus__Toro_2003" : [ - "DQ401140" - ], - "Hepatitis_B_virus__J158" : [ - "GQ377598" - ], - "Hepatitis_B_virus__F1_4" : [ - "GU815717" - ], - "Hepatitis_B_virus_2000_00" : [ - "EU594383" - ], - "Bluetongue_virus_24__RSArrrr_24" : [ - "AJ586730" - ], - "Helicobacter_pylori_UM066" : [ - "NC_021218" - ], - "Infectious_bronchitis_virus_CK_CH_LHLJ_141105" : [ - "KP790145" - ], - "Human_parainfluenza_virus_1_Washington_1964" : [ - "NC_003461" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_6" : [ - "JQ647459" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_RTBC_13_1780_055" : [ - "KF385400" - ], - "Tomato_leaf_curl_Joydebpur_betasatellite__India_Varanasi_chilli_2010" : [ - "JF681133" - ], - "JC_polyomavirus__FL_3" : [ - "AB127347" - ], - "Human_poliovirus_2__CHN1078" : [ - "HM107833" - ], - "West_Nile_virus__WNV_1_US_BID_V4581_2003" : [ - "HM488217" - ], - "California_sea_lion_polyomavirus_1_CSL6994" : [ - "NC_013796" - ], - "Rhinovirus_C_HRV_C15_W10" : [ - "GU219984" - ], - "Porcine_circovirus_2_FMV05_7539" : [ - "DQ220737" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_VEN_PHO127_1962_IC" : [ - "KC344528" - ], - "Bitter_gourd_yellow_vein_virus__Kanpur_Lentil" : [ - "KM190927", - "KM190928" - ], - "Rabies_virus__9147FRA" : [ - "EU293115" - ], - "Dengue_virus_4" : [ - "AF375822", - "AF326827", - "AF326826", - "NC_002640" - ], - "Tomato_leaf_curl_New_Delhi_virus_JID27" : [ - "HQ141673" - ], - "Dengue_virus_1__DENV_1_NI_BID_V642_2006" : [ - "FJ024479" - ], - "Human_mastadenovirus_C_human_USA_VT384_2003_1_P1H1F1" : [ - "JX173082" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US80" : [ - "KJ019124" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_297_2012" : [ - "KP308403" - ], - "Hepatitis_B_virus__I67" : [ - "FJ562241" - ], - "Hepatitis_C_virus__L349" : [ - "JX183554" - ], - "Human_poliovirus_3_NIE1018486" : [ - "KJ170634" - ], - "Hepatitis_B_virus__A5_48125" : [ - "FJ692597" - ], - "Fathead_minnow_picornavirus__FHMPV_1" : [ - "KF183915" - ], - "Hepatitis_B_virus__TP42" : [ - "KF192839" - ], - "Escherichia_coli_536" : [ - "NC_008253" - ], - "Torque_teno_sus_virus_1a__TTV1_SC2" : [ - "JF694117" - ], - "Hepatitis_B_virus__3c" : [ - "AF479684" - ], - "Dengue_virus_3_D3_SG_05K805DK1_2005" : [ - "EU081185" - ], - "Bovine_coronavirus_E_AH187_E_AH187" : [ - "EF424619" - ], - "Yersinia_pestis_CO92" : [ - "NC_003132", - "NC_003143", - "NC_003134", - "NC_003131" - ], - "Simian_hemorrhagic_fever_virus_LVR_42_0_M6941_A230_d7" : [ - "KM371108" - ], - "Hepatitis_B_virus__NB129M_m129" : [ - "KJ173302" - ], - "Measles_virus_Changchun_47" : [ - "EF033071", - "FJ416068" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD08_2013" : [ - "KM229806" - ], - "Hepatitis_B_virus__A13" : [ - "FJ904397" - ], - "Hepatitis_B_virus__EI0398" : [ - "DQ315781" - ], - "Classical_swine_fever_virus_Riems__C" : [ - "HCU45477" - ], - "West_Nile_virus__BSL2_2005" : [ - "DQ666452" - ], - "Goose_circovirus__TW5_2001" : [ - "AF536935" - ], - "Maize_streak_virus__MSV_A_ZW_Hel1_Bet36R_2006" : [ - "HQ693470" - ], - "Porcine_circovirus_2_05_30385" : [ - "EF394778" - ], - "Hepatitis_B_virus__MGL215F" : [ - "AB270544" - ], - "Hepatitis_B_virus__bne200" : [ - "FN594754" - ], - "Halovirus_HRTV_7" : [ - "NC_021335" - ], - "Tobacco_mosaic_virus__Tianzhu_2" : [ - "HE818445" - ], - "Squash_leaf_curl_virus__JO3_238" : [ - "KM595211" - ], - "Sweet_potato_chlorotic_stunt_virus_EA_Uganda" : [ - "NC_004123", - "NC_004124" - ], - "Human_rotavirus_A_1029_stool" : [ - "AJ236749" - ], - "Dengue_virus_3__DENV_3_US_BID_V1088_1998" : [ - "EU482566" - ], - "Rhynchosia_golden_mosaic_virus__Chiapas__tobacco" : [ - "AF408199" - ], - "Mycobacterium_phage_SWU1" : [ - "NC_017973" - ], - "West_Nile_virus__WNV_1_US_BID_V4093_2007" : [ - "HM488201" - ], - "Faba_bean_necrotic_yellows_virus_FBNYV_Iran_2_Kermanshah" : [ - "AM493901", - "AM493900" - ], - "Homalodisca_vitripennis_reovirus__NC21" : [ - "GU437851" - ], - "Porcine_circovirus_2__CT_PCV_P6" : [ - "AY099500" - ], - "Bacillus_cereus_NC7401" : [ - "NC_016793", - "NC_016773", - "NC_016771", - "NC_016774", - "NC_016792", - "NC_016772" - ], - "Maize_streak_virus__MSV_B2_Ug_BusA_2005" : [ - "EU628611" - ], - "Bluetongue_virus_16__IND_Goat_2010_16_HSR" : [ - "JQ924822", - "JQ924829", - "JQ924824", - "JQ924823", - "JQ924820", - "JQ924828", - "JQ924827", - "JQ924821", - "JQ924825", - "JQ924826" - ], - "Bean_golden_mosaic_virus__BR_Par21_12" : [ - "KJ939806" - ], - "Middle_East_respiratory_syndrome_coronavirus__Jeddah_C8826_KSA_2014_04_12" : [ - "KM027258" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Culex_aikenii_sensu_lato_PAN_903104_1977_ID" : [ - "KC344503" - ], - "Human_immunodeficiency_virus_1__96GH2911" : [ - "AY093605" - ], - "Human_papillomavirus_type_45__Qv30004" : [ - "EF202160" - ], - "West_Nile_virus__WNV_1_US_BID_V5217_2007" : [ - "JF920746" - ], - "Sacbrood_virus__SXnor1" : [ - "KJ000692" - ], - "Dobrava_Belgrade_virus_DOBV_Ano_Poroia_Afl9_1999" : [ - "NC_005233", - "NC_005234", - "NC_005235" - ], - "Hepatitis_B_virus__WY_HZ_42" : [ - "JX429903" - ], - "Tomato_leaf_curl_Taiwan_virus__LY5" : [ - "GU723710" - ], - "Belliella_baltica_DSM_15883" : [ - "NC_018010" - ], - "Porcine_circovirus_2__Ciego_de_Avila_07" : [ - "FN687852" - ], - "Tomato_yellow_leaf_curl_virus__Gj" : [ - "JQ013091" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT25B20_2003" : [ - "JF909175" - ], - "Microviridae_Fen7786_21__Fen7786_21" : [ - "NC_027644" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9426_2013" : [ - "KJ643503" - ], - "Porcine_circovirus_2__HZ2" : [ - "KC514971" - ], - "Hepatitis_B_virus__EG105" : [ - "AB104710" - ], - "Human_herpesvirus_3_22" : [ - "DQ479956" - ], - "Infectious_bronchitis_virus_Mass41_Vaccine" : [ - "GQ504725" - ], - "West_Nile_virus__WNV_1_US_BID_V5224_2008" : [ - "JF920752" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Abohar4_2010" : [ - "JF502384" - ], - "Newcastle_disease_virus_WF00G" : [ - "FJ754273" - ], - "Porcine_circovirus_2_PT_11751_08" : [ - "HQ831519" - ], - "West_Nile_virus__WNV_1_US_BID_V6058_2010" : [ - "KJ145829" - ], - "Beak_and_feather_disease_virus__2NC92F" : [ - "JX049220" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_A3_5D_V" : [ - "JX570644" - ], - "Dengue_virus_2__DENV_2_Harvard_BID_V2991_2009" : [ - "FJ906967" - ], - "Tomato_yellow_leaf_curl_virus_HBDZ" : [ - "JQ004045" - ], - "African_horse_sickness_virus__HS_23_08" : [ - "KP009681", - "KP009686", - "KP009688", - "KP009684", - "KP009687", - "KP009683", - "KP009690", - "KP009689", - "KP009685" - ], - "Paspalum_striate_mosaic_virus__AU_1657_2004" : [ - "JQ948068" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V279_2004" : [ - "EU256075" - ], - "Porcine_rotavirus_4S" : [ - "PRVVAR4SA", - "PRVVP6C", - "PRVVAR4SC" - ], - "Rotavirus_C_Bristol" : [ - "NC_007574", - "NC_007546", - "NC_007544", - "NC_007572", - "NC_007543", - "NC_007545", - "NC_007547", - "NC_007573" - ], - "Rabies_virus__RV2516" : [ - "KF155000" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_1_2013" : [ - "KF186567" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT57E10_2008" : [ - "JF909194" - ], - "Hepatitis_B_virus__PNF5263" : [ - "KF779358" - ], - "Hantaanvirus_CGAa2_CGAa2" : [ - "EU092223", - "EU092219" - ], - "Decapod_penstyldensovirus_1__Sheyang" : [ - "KF214742" - ], - "Infectious_bronchitis_virus_CK_CH_LSD_05I" : [ - "EU637854" - ], - "Human_immunodeficiency_virus_1__Cu85" : [ - "AY586548" - ], - "Newcastle_disease_virus_Herts_33" : [ - "AY741404" - ], - "SARS_coronavirus_TWC3" : [ - "AY362699" - ], - "Bean_golden_mosaic_virus__BR_Par14_12" : [ - "KJ939791" - ], - "Enterobacteria_phage_G4_sensu_lato" : [ - "NC_001420" - ], - "Hepatitis_B_virus__Jacko_2008" : [ - "HQ603075" - ], - "Encephalomyocarditis_virus__K3" : [ - "EU780148" - ], - "Narcissus_yellow_stripe_virus__ZZ_2" : [ - "JQ911732" - ], - "Freesia_mosaic_virus__FreMV_Kr" : [ - "GU214748" - ], - "African_cassava_mosaic_virus__CF_CF25BE_07" : [ - "KJ887588" - ], - "Toscana_virus_TOSV_Firenze_ITA_1995_1" : [ - "KM275777" - ], - "Clostridium_difficile_ATCC_43255" : [ - "NC_013974" - ], - "Hepatitis_B_virus_1134_12" : [ - "KR014008" - ], - "Hepatitis_B_virus__J147" : [ - "GQ377590" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI0333_2010_A" : [ - "KJ627380" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V363_2006" : [ - "EU155253" - ], - "Plum_bark_necrosis_stem_pitting_associated_virus__Plm_WH_3" : [ - "KJ792853" - ], - "Hepatitis_B_virus__J58" : [ - "GQ377541" - ], - "Foot_and_mouth_disease_virus_O_ES_2001__O_ES_2001" : [ - "AY686687" - ], - "Maize_streak_virus__UHoi_156" : [ - "EF547100" - ], - "Dengue_virus_1__DENV_1_VN_BID_V834_2006" : [ - "EU482828" - ], - "Usutu_virus_6424" : [ - "KJ438736" - ], - "Hepatitis_B_virus__JPN_Bj_A53" : [ - "AB287327" - ], - "Bluetongue_virus_2002" : [ - "AY775159" - ], - "Human_immunodeficiency_virus_1__C_96BW11B01" : [ - "AF110971" - ], - "Barley_yellow_mosaic_virus_BaYMV_IV" : [ - "AB430770", - "AB430769" - ], - "Human_adenovirus_29" : [ - "JN226754" - ], - "Plum_pox_virus_D_Vulcan" : [ - "AY912057" - ], - "Human_poliovirus_2_NIE0110767" : [ - "DQ890386" - ], - "Maize_streak_virus__MSV_A_ZA_Pot3_O27_1979" : [ - "FJ882131" - ], - "Hepatitis_C_virus_subtype_1a__99_31" : [ - "EU781773" - ], - "West_Nile_virus__WNV_1_US_BID_V4227_2005" : [ - "HM488153" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1784_2007" : [ - "FJ432729" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC350" : [ - "KF551590" - ], - "Rickettsia_prowazekii_Katsinyian" : [ - "NC_017050" - ], - "Porcine_circovirus_2_SNUVR000032" : [ - "KF871067" - ], - "Thioalkalivibrio_nitratireducens_DSM_14787" : [ - "NC_019902" - ], - "Serratia_marcescens_WW4" : [ - "NC_020212", - "NC_020211" - ], - "Bamboo_mosaic_virus__BaMV_Bo" : [ - "AB543679" - ], - "Porcine_endogenous_retrovirus_C" : [ - "HM159246", - "EF133960" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V4270_2008" : [ - "GU131930" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD79_2013" : [ - "KM229785" - ], - "Beak_and_feather_disease_virus__BFDV_T_PL_376_2007" : [ - "JX221020" - ], - "Cotton_leaf_curl_Rajasthan_virus__IARI_50" : [ - "KM065514" - ], - "Rabies_virus__2401" : [ - "JQ685934" - ], - "Hepatitis_B_virus__J157" : [ - "GQ377597" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V376_2006" : [ - "EU256064" - ], - "Hepatitis_B_virus__A7" : [ - "FJ904394" - ], - "Duck_hepatitis_B_virus__Indiana" : [ - "AF493986" - ], - "Dengue_virus_2__DENV_2_US_BID_V1410_2007" : [ - "EU596488" - ], - "Dengue_virus_1_D1_SG_05K4604DK1_2005" : [ - "EU081271" - ], - "Hepatitis_B_virus__HBV4" : [ - "KC875338" - ], - "Hepatitis_B_virus__HBV_N10" : [ - "AY707087" - ], - "Yellow_fever_virus__ArD114896" : [ - "JX898871" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PER_IQT1724_1995_ID" : [ - "KC344490" - ], - "Mycobacterium_phage_Phantastic" : [ - "NC_024148" - ], - "HBV_genotype_C__GRS08325" : [ - "AB554022" - ], - "Human_immunodeficiency_virus_1__BREPM2012" : [ - "EF637046" - ], - "Hepatitis_B_virus__P74" : [ - "GQ477490" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2248_2005" : [ - "FJ639811" - ], - "West_Nile_virus__WNV_1_US_BID_V5205_2006" : [ - "JF920735" - ], - "Human_poliovirus_1__EGY1218586" : [ - "KJ155500" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda30_05" : [ - "KC706642", - "KC706658" - ], - "Banana_streak_IM_virus_IRFA910" : [ - "HQ659760" - ], - "Human_immunodeficiency_virus_1__WC10C_8" : [ - "AY314059" - ], - "Acinetobacter_phage_AP205" : [ - "NC_002700" - ], - "Tomato_leaf_curl_Sudan_virus__Had_tob20_89" : [ - "JF919733" - ], - "Mycobacterium_ulcerans_Agy99" : [ - "NC_008611", - "NC_005916" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir3_T4X_Cuc_07" : [ - "FJ660439" - ], - "Clostridium_cf__saccharolyticum_K10" : [ - "NC_021047" - ], - "Canine_kobuvirus_US_PC0082_US_PC0082" : [ - "JN088541" - ], - "Foot_and_mouth_disease_virus___type_O__O_S11KOR_2002" : [ - "KF694741" - ], - "Turnip_mosaic_virus__CAR37" : [ - "DQ648592" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2771_2007" : [ - "GQ199795" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT53B10_2008" : [ - "JF909251" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_O74B_2005" : [ - "JQ319170" - ], - "Porcine_circovirus_2_HZ0301" : [ - "AY510375" - ], - "Propionibacterium_acnes_C1" : [ - "NC_018707" - ], - "Hepatitis_B_virus__I1_M04_3692" : [ - "FJ023660" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ10B00_2005" : [ - "JF909072" - ], - "Feline_coronavirus_FIPV_79_1146_VR_2202__P100" : [ - "DQ010921" - ], - "Buchnera_aphidicola_5A__Acyrthosiphon_pisum" : [ - "NC_011833" - ], - "Hepatitis_B_virus_45088" : [ - "FM199977" - ], - "Human_immunodeficiency_virus_1__pXJDC6291_17" : [ - "KC492738" - ], - "Potato_black_ringspot_virus__PV0056" : [ - "KC832886", - "KC832893" - ], - "Seoul_virus_93HBX12" : [ - "EF192308" - ], - "Candidatus_Arthromitus_SFB_rat_Yit" : [ - "NC_016012" - ], - "Maize_streak_virus__MSV_KKag" : [ - "EU152257" - ], - "Human_immunodeficiency_virus_1__04ZASK204B1" : [ - "DQ056414" - ], - "Human_adenovirus_49" : [ - "DQ393829" - ], - "Sunflower_chlorotic_mottle_virus" : [ - "JN863232", - "JN863233" - ], - "Human_mastadenovirus_B_human_USA_CL_43_1988_7_P7H7F7" : [ - "KF268134" - ], - "Simian_Agent_10" : [ - "HM583801" - ], - "Hepatitis_B_virus__A3_6" : [ - "GU815577" - ], - "Dengue_virus_1__DENV_1_NI_BID_V628_2005" : [ - "FJ024423" - ], - "Staphylococcus_phage_vB_SepS_SEP9" : [ - "NC_023582" - ], - "Hepatitis_B_virus__S1158_8" : [ - "FJ787483" - ], - "Cotton_leaf_curl_Gezira_alphasatellite" : [ - "HM446369" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_C6" : [ - "KC106652" - ], - "Enterobacteria_phage_RB7" : [ - "KM606997" - ], - "Soil_borne_wheat_mosaic_virus_US_Nebraska__1981_wild_type" : [ - "NC_002041" - ], - "Methanococcus_maripaludis_C7" : [ - "NC_009637" - ], - "Hepatitis_B_virus__201" : [ - "HQ603081" - ], - "Sweet_potato_leaf_curl_Spain_virus__ES_CI_BG1_02" : [ - "NC_011052" - ], - "Bluetongue_virus_15__ZIM2003_08" : [ - "AJ586717" - ], - "Mycobacterium_phage_Oaker" : [ - "NC_023578" - ], - "Crimean_Congo_hemorrhagic_fever_virus_C_68031" : [ - "DQ211642", - "DQ211629", - "DQ211616" - ], - "Escherichia_coli_O104_H4_2011C_3493" : [ - "NC_018659", - "NC_018660", - "NC_018666", - "NC_018658" - ], - "Macroptilium_golden_mosaic_virus__Jamaica1_SpanishTown___Spanish_Town" : [ - "FJ981727" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__Y340" : [ - "FN806780" - ], - "Hepatitis_B_virus_1149_1" : [ - "KR014019" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2876_2006" : [ - "FJ898407" - ], - "Enterobacteriaceae_bacterium_FGI_57" : [ - "NC_020063" - ], - "Hepatitis_B_virus__JFA4341" : [ - "KF779278" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HC120904_CHYL" : [ - "KP998409" - ], - "Ageratum_yellow_vein_virus__AFSP5d" : [ - "JN809818" - ], - "WU_Polyomavirus__B7295" : [ - "GU296383" - ], - "Bean_yellow_disorder_virus__Bn_03" : [ - "NC_010561", - "NC_010560" - ], - "Hepatitis_B_virus__I_T39" : [ - "GU456654" - ], - "Newcastle_disease_virus__Chicken_China_Shandong_02_2011" : [ - "KC542909" - ], - "Human_immunodeficiency_virus_1__93br029" : [ - "AF005495" - ], - "Machupo_mammarenavirus_Mallele_USAMRIID_ID_780" : [ - "JN794585", - "JN794586" - ], - "Salmonella_enterica_serovar_Typhimurium_798" : [ - "NC_017046", - "NC_017054" - ], - "Norovirus_Hu_GII_JP_2015_GII_P17_GII_17_Kawasaki308_Hu_GII_JP_2015_GII_P17_GII_17_Kawasaki308" : [ - "LC037415" - ], - "Rotavirus_A_MRC_DPRU2427_RVA_Human_wt_KEN_MRC_DPRU2427_2010_G9P_8" : [ - "JN605456", - "JN605457", - "JN605449", - "JN605451", - "JN605453", - "JN605455", - "JN605458", - "JN605448", - "JN605452", - "JN605450" - ], - "Geobacillus_Y4_1MC1" : [ - "NC_014651", - "NC_014650" - ], - "Hepatitis_B_virus__C185_6" : [ - "FJ899782" - ], - "Human_immunodeficiency_virus_1__03GH189AG" : [ - "AB286862", - "AB286861" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__Y308" : [ - "AM236778" - ], - "West_Nile_virus__WNV_1_US_BID_V5228_2008" : [ - "JF972636" - ], - "Potato_virus_A__TamMV" : [ - "AJ131403" - ], - "Mycobacterium_phage_Muddy" : [ - "NC_022054" - ], - "Tomato_yellow_leaf_curl_virus_SDJN2__SDJN2" : [ - "FN256257" - ], - "African_cassava_mosaic_virus__CF_CF20AN_07" : [ - "KJ887765" - ], - "West_Nile_virus__WNV_1_US_BID_V6384_2003" : [ - "KJ501271" - ], - "Pseudomonas_phage_vB_Pae_Kakheti25" : [ - "NC_017864" - ], - "Marine_gokushovirus__SOG1" : [ - "KC131024" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pakistan_Luffa_Burewala_2011" : [ - "HF567943" - ], - "Bluetongue_virus__Andhra_Pradesh" : [ - "JN006965" - ], - "Hepatitis_delta_virus__D17" : [ - "KJ744231" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_LN" : [ - "EU109502" - ], - "Coxsackievirus_A6__PF1_SH_CHN_2013" : [ - "KJ612513" - ], - "Rhizobium_NGR234" : [ - "NC_012587", - "NC_000914", - "NC_012586" - ], - "Hepatitis_C_virus__2027_FU24" : [ - "EU362881" - ], - "Miscanthus_streak_virus____Japan_96" : [ - "E02258" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_26_2011" : [ - "KJ686217" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3898_2008" : [ - "GU131721" - ], - "Nora_virus" : [ - "DQ321720" - ], - "Hepatitis_B_virus__dxn1026" : [ - "KC774475" - ], - "Gossypium_punctatum_mild_leaf_curl_virus__Punc_15R_B" : [ - "EU384578" - ], - "Hepatitis_B_virus_28027" : [ - "EU414139" - ], - "Robiginitalea_biformata_HTCC2501" : [ - "NC_013222" - ], - "African_cassava_mosaic_virus__CF_CF39BE_07" : [ - "KJ887596" - ], - "HBV_genotype_A1__Mart_B16" : [ - "HE974365" - ], - "Sida_yellow_vein_Vietnam_virus_satellite_DNA_beta" : [ - "NC_009558" - ], - "Rubella_virus_TO_336_vaccine" : [ - "AB047329" - ], - "Human_herpesvirus_5_BE_36_2011" : [ - "KP745687" - ], - "Hepatitis_B_virus__I_3" : [ - "KP027477" - ], - "Flavobacteriaceae_bacterium_3519_10" : [ - "NC_013062" - ], - "Murid_herpesvirus_1_C4D" : [ - "HE610456" - ], - "West_Nile_virus__WNV_1_US_BID_V4371_2005" : [ - "HM488192" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLE8638_2010" : [ - "KJ672544" - ], - "Japanese_eel_endothelial_cells_infecting_virus" : [ - "NC_015123" - ], - "Chatanga_virus__Mohko_M07_2_83" : [ - "KF719229", - "KF719228" - ], - "Hepatitis_B_virus_551_6" : [ - "KR013801" - ], - "Homalodisca_vitripennis_reovirus__Riverside5" : [ - "GU437846" - ], - "Grouper_iridovirus" : [ - "AY666015" - ], - "Watermelon_chlorotic_stunt_virus__Als_5" : [ - "JN624386" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_FR18_2006" : [ - "KM229795" - ], - "Dengue_virus_2_98900666_DSS_DV_2" : [ - "AB189124" - ], - "Squash_leaf_curl_virus__IL2_63" : [ - "KM595113" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5571_1" : [ - "KR105311" - ], - "African_cassava_mosaic_virus__CF_CF247BE_07" : [ - "KJ887624" - ], - "Bluetongue_virus__KUW2010_02" : [ - "JN255161", - "JN255158", - "JN255156", - "JN255160", - "JN255157", - "JN255159", - "JN255162" - ], - "Hepatitis_B_virus_1485_10a" : [ - "KR014077" - ], - "Prochlorococcus_marinus_MIT_9313" : [ - "NC_005071" - ], - "West_Nile_virus_Italy_2013_Padova_34_1" : [ - "KF647251" - ], - "Human_herpesvirus_5__TR_BAC" : [ - "AC146906" - ], - "Human_papillomavirus_type_33__RW136" : [ - "HQ537702" - ], - "Wheat_dwarf_virus__Winter_wheat_120" : [ - "KJ473704" - ], - "Hepatitis_B_virus__NB041C_m42" : [ - "KJ173361" - ], - "Dragonfly_orbiculatusvirus__TO_DF13_2010" : [ - "NC_023854" - ], - "Norovirus_Hu_GII_20230_2009_VNM_Hu_GII_20230_2009_VNM" : [ - "KC409282" - ], - "Dengue_virus_1_D1_SG_05K2887DK1_2005" : [ - "EU081231" - ], - "Chloris_striate_mosaic_virus" : [ - "NC_001466" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3819_2006" : [ - "GQ868634" - ], - "Dengue_virus_2__DENV_2_NI_BID_V518_2005" : [ - "GQ868604" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC22AY2_2004" : [ - "JF909099" - ], - "Porcine_bocavirus_3_HN2" : [ - "KC473563" - ], - "Candidatus_Carsonella_ruddii_DC" : [ - "NC_021894" - ], - "Human_adenovirus_43_1309" : [ - "KC529648" - ], - "Tomato_yellow_leaf_curl_virus__Alb23" : [ - "FJ956703" - ], - "Hepatitis_C_virus__HCV_AD78" : [ - "AJ132996" - ], - "Beet_black_scorch_virus_satellite_RNA__Ir_Bj1sat" : [ - "FN543475" - ], - "Chikungunya_virus__CHIKV_STMWG02" : [ - "KJ679578" - ], - "Switchgrass_mosaic_virus__S1" : [ - "NC_015522" - ], - "Human_rhinovirus_B52__F10" : [ - "FJ445137" - ], - "Maize_streak_virus__MSV_K_Ug_BusD_2005" : [ - "EU628643" - ], - "Mirabilis_jalapa_mottle_virus" : [ - "NC_016080" - ], - "Barley_mild_mosaic_virus__F_SIL" : [ - "AJ544268", - "AJ544272", - "AJ544267", - "AJ544271" - ], - "Hepatitis_B_virus__LDA405" : [ - "KF849727" - ], - "Staphylococcus_phage_G1" : [ - "NC_007066" - ], - "African_swine_fever_virus_E75_E75" : [ - "FN557520" - ], - "Bundibugyo_virus__EboBund_120_2012" : [ - "KC545394" - ], - "Caulobacter_phage_karma" : [ - "NC_019410" - ], - "Sweet_potato_leaf_curl_virus__Y338" : [ - "FN806776" - ], - "Hepatitis_B_virus_genotype_F_VNZ8251" : [ - "AB036910" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_250_2011" : [ - "KJ686255" - ], - "Classical_swine_fever_virus_GXF29_2013" : [ - "KP233070" - ], - "SARS_coronavirus_Taiwan_TC2__TC2" : [ - "AY338175" - ], - "Synechococcus_WH_7803" : [ - "NC_009481" - ], - "Hepatitis_B_virus__LAMr_Pt__36_Adefovir_treated_Pt__18" : [ - "AB367427" - ], - "Human_poliovirus_2_PER8310769" : [ - "DQ890388" - ], - "Dengue_virus_1__DENV_1_VN_BID_V990_2006" : [ - "EU482534" - ], - "Measles_virus_genotype_D4_MVi_Treviso_ITA_03_10_1_D4" : [ - "KC164757" - ], - "Tomato_chino_La_Paz_virus____Baja_California_Sur___B_Czal" : [ - "AY339619" - ], - "Alkhumra_hemorrhagic_fever_virus_200905922" : [ - "JF416967" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5496_2010" : [ - "JF937625" - ], - "BK_polyomavirus__THK_9" : [ - "AB211379" - ], - "Echovirus_E3_OC10_571" : [ - "AB647323" - ], - "Banana_streak_MY_virus__MP" : [ - "KJ013509" - ], - "Hepatitis_B_virus__IND_2008_14" : [ - "KF214662" - ], - "Middle_East_respiratory_syndrome_coronavirus_Abu_Dhabi_Gayathi_UAE_2_2014" : [ - "KP209310" - ], - "Norovirus_Hu_GII_10420_2010_VNM_Hu_GII_10420_2010_VNM" : [ - "KC409244" - ], - "Newcastle_disease_virus_XJ_2_97" : [ - "JN618348" - ], - "Bluetongue_virus_16__G53_ABT_HSR" : [ - "KF664137", - "KF664136", - "KF664140", - "KF664139", - "KF664133", - "KF664142", - "KF664135", - "KF664138", - "KF664141" - ], - "Dengue_virus_2__DENV_2_US_BID_V681_1998" : [ - "EU482738" - ], - "Human_immunodeficiency_virus_1__DR5929" : [ - "AB604951", - "AB604950" - ], - "Potato_leafroll_virus__Canada" : [ - "PLVRC" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3933_2008" : [ - "GU131729" - ], - "Maize_streak_virus__MSV_A4_Zw__Nmg_g168_2006" : [ - "EU628576" - ], - "Porcine_circovirus_2__PMWS_PCV_P4" : [ - "AY099498" - ], - "JC_polyomavirus__JCV135_18" : [ - "JF424849" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLE4303_2009" : [ - "KJ672561" - ], - "Nipah_virus__NV_MY_99_UM_0128" : [ - "AJ564623" - ], - "Echovirus_E6_Echo6_Hokkaido_JPN_19723_2011" : [ - "AB705310" - ], - "Dengue_virus_4__DENV_4_US_BID_V2442_1998" : [ - "FJ882596" - ], - "Turnip_mosaic_virus__WA_Ap" : [ - "KJ936093" - ], - "Norovirus_GII_Hu_JP_2000_GII_P12_GII_12_Saitama_KU16__Saitama_KU16" : [ - "KJ196294" - ], - "Lactobacillus_plantarum_JDM1" : [ - "NC_012984" - ], - "Powassan_virus_64_7062_POWANY64" : [ - "HM440563" - ], - "Hepatitis_B_virus__919056" : [ - "JN040757" - ], - "Cotton_leaf_curl_Gezira_virus__Okra_Gezira___CLCuV_SD_okra" : [ - "AY036006" - ], - "Human_T_lymphotropic_virus_3__Cam2013OK" : [ - "GQ463602" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1512_2007" : [ - "EU687249" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d2om3" : [ - "HQ890536" - ], - "WU_Polyomavirus__T38" : [ - "GU296399" - ], - "Human_papillomavirus_type_45__Qv2356" : [ - "KC470253" - ], - "Human_immunodeficiency_virus_1__CAP239_5w_F1" : [ - "GQ999991" - ], - "Coxsackievirus_A8_Donovan_CA8" : [ - "AY421766" - ], - "Human_poliovirus_1_NIE0918389" : [ - "KJ170503" - ], - "Candidatus_Liberibacter_asiaticus_gxpsy" : [ - "NC_020549" - ], - "Tick_borne_encephalitis_virus__Kolarovo_2008" : [ - "FJ968751" - ], - "Soybean_mosaic_virus__Rsv4_RB3" : [ - "JN416770" - ], - "Porcine_kobuvirus__GS_1_2012_CH" : [ - "KC424639" - ], - "Hepatitis_B_virus__SHB1CA15" : [ - "KJ598643" - ], - "Tomato_severe_rugose_virus__BR_Car232_08" : [ - "KC004084" - ], - "West_Nile_virus__WNV_1_US_BID_V6534_2003" : [ - "KJ501498" - ], - "Mycobacterium_avium_paratuberculosis_K_10" : [ - "NC_002944" - ], - "Staphylococcus_phage_DW2" : [ - "NC_024391" - ], - "Hepatitis_B_virus_adr_Recipient_3_98_May" : [ - "AB026812" - ], - "BK_polyomavirus__NAR_16" : [ - "AB365134" - ], - "Hepatitis_B_virus__IND_2010_21" : [ - "KF214674" - ], - "Hepatitis_B_virus__GU1091" : [ - "GQ161832" - ], - "Bacillus_cereus_ATCC_14579" : [ - "NC_004721", - "NC_004722" - ], - "Hepatitis_B_virus__Warao152" : [ - "DQ899142" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8414_2001" : [ - "KJ627674" - ], - "Pepino_mosaic_virus_EU_tomato" : [ - "FJ940223" - ], - "BK_polyomavirus__NEA_25" : [ - "AB298940" - ], - "Hepatitis_B_virus_544_4" : [ - "KR013963" - ], - "Caulobacter_crescentus_CB15" : [ - "NC_002696" - ], - "Pennisetum_mosaic_virus__CD9" : [ - "JX070157" - ], - "Potato_virus_S_RVC_Andean" : [ - "JX419379" - ], - "Acholeplasma_palmae_J233" : [ - "NC_022538" - ], - "Human_astrovirus_6__Katano" : [ - "HM237363" - ], - "Japanese_encephalitis_virus" : [ - "AB196923", - "GQ199609", - "AB196925", - "AB196926", - "AB196924", - "JEVCMNAA", - "AY585243", - "NC_001437" - ], - "Streptococcus_phage_YMC_2011" : [ - "NC_018285" - ], - "Sorangium_cellulosum__So_ce_56" : [ - "NC_010162" - ], - "Human_immunodeficiency_virus_1__03ZAPS049MB1" : [ - "DQ369986" - ], - "Duck_hepatitis_A_virus_1__MPZJ1206" : [ - "KF924552" - ], - "Dengue_virus_2__DENV_2_US_BID_V679_1994" : [ - "EU482736" - ], - "Pseudomonas_phage_UFV_P2" : [ - "NC_018850" - ], - "Norovirus_Hu_GII_4_Nagano5_2007_JP_Hu_GII_4_Nagano5_2007_JP" : [ - "AB541308" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite__India_Jodhpur_Chilli_2009___India_Jodhpur_Chilli_2009" : [ - "HM007105" - ], - "Potato_virus_Y__IUNG_11" : [ - "JF927759" - ], - "Gallid_herpesvirus_2__LMS" : [ - "JQ314003" - ], - "Gallid_herpesvirus_1_vaccine_LT_Blen" : [ - "JQ083493" - ], - "Yellow_head_virus_YHV1999" : [ - "FJ848675" - ], - "Porcine_circovirus_2_TJ04" : [ - "EF524520" - ], - "Torque_teno_sus_virus_1b__NF9" : [ - "JX535331" - ], - "Sida_micrantha_mosaic_virus__BR_Jai175_08" : [ - "KC706533" - ], - "Human_cyclovirus_VN_like_HC_CGS202" : [ - "KM392288" - ], - "Tomato_severe_rugose_virus__BR_Car237_6_08" : [ - "KC706626", - "KC004088" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2014_2007" : [ - "FJ639696" - ], - "Barley_stripe_mosaic_virus_type_strain__ATCC_PV43" : [ - "NC_003481" - ], - "Potato_virus_Y_O_SD_G" : [ - "JQ663997" - ], - "Hepatitis_B_virus_FMC_16" : [ - "AF411409" - ], - "Human_parainfluenza_virus_4b__SKPIV4" : [ - "EU627591" - ], - "Staphylococcus_phage_80alpha" : [ - "NC_009526" - ], - "Desulfotomaculum_kuznetsovii_DSM_6115" : [ - "NC_015573" - ], - "Dengue_virus_1_ThD1_0081_82" : [ - "AY732481" - ], - "Tomato_severe_rugose_virus__BR_Car218_3_08" : [ - "KC706617" - ], - "Tomato_yellow_leaf_curl_virus__HBLF4" : [ - "HM208334" - ], - "Dengue_virus_2__DENV_2_US_BID_V683_1994" : [ - "EU482740" - ], - "Swine_hepatitis_E_virus__swJB_H7" : [ - "AB481227" - ], - "Cucurbit_chlorotic_yellows_virus" : [ - "NC_018174", - "NC_018173" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_COL_309506_1973_ID" : [ - "KC344520" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Iowa12" : [ - "KP283415" - ], - "Hepatitis_B_virus__10A34" : [ - "AB675675" - ], - "Monkeypox_virus_UTC" : [ - "KJ642614" - ], - "Erwinia_billingiae_Eb661" : [ - "NC_014306", - "NC_014304", - "NC_014305" - ], - "Human_T_lymphotropic_virus_1_BRRP438" : [ - "AY563954" - ], - "Infectious_bronchitis_virus_Beaudette_IBV_EP3" : [ - "DQ001338" - ], - "Hepatitis_B_virus__6_4" : [ - "AY217360" - ], - "Hepatitis_B_virus_258_4a" : [ - "KR013765" - ], - "WU_Polyomavirus__B1164" : [ - "GU296369" - ], - "Salmonella_phage_vB_SalM_SJ2" : [ - "NC_023856" - ], - "Methanosarcina_mazei_Go1" : [ - "NC_003901" - ], - "Hepatitis_B_virus__SHB521" : [ - "KJ598715" - ], - "JC_polyomavirus__JCV135_43" : [ - "JF424868" - ], - "Sugarcane_streak_Egypt_virus____Ben__Beni_Suef" : [ - "AF039529" - ], - "Enterovirus_A71_BJ08_Z004_3" : [ - "FJ606447" - ], - "Pandoravirus_salinus" : [ - "NC_022098" - ], - "Shewanella_sp__phage_1_41" : [ - "NC_025458" - ], - "Streptococcus_suis_BM407" : [ - "NC_012923", - "NC_012926" - ], - "Enterovirus_B74_USA_CA75_10213" : [ - "AY556057" - ], - "Syntrophobacter_fumaroxidans_MPOB" : [ - "NC_008554" - ], - "JC_polyomavirus__JCV161FLC_20" : [ - "JF424928" - ], - "Human_mastadenovirus_B_11p" : [ - "AY598970" - ], - "West_Nile_virus__WNV_1_US_BID_V6438_2002" : [ - "KJ501299" - ], - "Hepatitis_B_virus__HK1896" : [ - "DQ089794" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5517_2010" : [ - "JF937638" - ], - "Hepatitis_C_virus_subtype_1b__No__11" : [ - "AB154186" - ], - "Porcine_kobuvirus_WB_1_HUN_2011_HUN" : [ - "JX177612" - ], - "Chicken_anemia_virus__SD24" : [ - "AY999018" - ], - "Porcine_circovirus_2__Huanan_2" : [ - "EF421967" - ], - "Hepatitis_B_virus__No31" : [ - "AB697508" - ], - "JC_polyomavirus__PML013URNFLC_02" : [ - "JF425552" - ], - "Human_papillomavirus_type_35__QV31639" : [ - "HQ537730" - ], - "Watermelon_chlorotic_stunt_virus__F" : [ - "KJ854916" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC241" : [ - "KF577602" - ], - "West_Nile_virus__WNV_1_US_BID_V6486_2003" : [ - "KJ501323" - ], - "JC_polyomavirus_246D" : [ - "AF363832" - ], - "Streptococcus_agalactiae_ILRI112" : [ - "NC_021507" - ], - "Squash_leaf_curl_virus__JO2_220" : [ - "KM595194" - ], - "Human_poliovirus_2_NIE0611451_JIS06_06" : [ - "JX274999" - ], - "Newcastle_disease_virus_NA_1" : [ - "DQ659677" - ], - "Hepatitis_B_virus_4509_97" : [ - "EU594395" - ], - "MW_polyomavirus_QLDMW13" : [ - "KC549594" - ], - "Human_rhinovirus_A56_ATCC_VR_1166" : [ - "FJ445140" - ], - "Leuconostoc_phage_Ln_8" : [ - "NC_027377" - ], - "Hepatitis_B_virus__6136_0127_ETCvs3TC_Break" : [ - "DQ993709" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4063_2008" : [ - "GU131812" - ], - "Caldicellulosiruptor_lactoaceticus_6A" : [ - "NC_015949" - ], - "Human_bocavirus__TW2715_06" : [ - "EU984232" - ], - "Norovirus_Hu_GII_4_Ehime4_2007_JP_Hu_GII_4_Ehime4_2007_JP" : [ - "AB541241" - ], - "Culex_flavivirus__DG1064" : [ - "JQ308188" - ], - "Porcine_circovirus_2__NB0929" : [ - "GU325770" - ], - "Norovirus_Hu_GII_4_Fukui5_2008_JP_Hu_GII_4_Fukui5_2008_JP" : [ - "AB541250" - ], - "Human_immunodeficiency_virus_1_MCK1_MCK" : [ - "HIVMCK1" - ], - "Human_herpesvirus_3_VZVi_Jena_GER_06_08_Z_1__432_2008" : [ - "JN704695" - ], - "Tomato_yellow_leaf_curl_virus_HBYQ" : [ - "JQ038232" - ], - "Hepatitis_B_virus__MY500621" : [ - "KJ803821" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HUB2" : [ - "EF112446" - ], - "Goose_circovirus__GB26_15" : [ - "KP203871" - ], - "Bainyik_virus_MK7979" : [ - "KM225264" - ], - "Hepatitis_B_virus__J195" : [ - "GQ377619" - ], - "Newcastle_disease_virus__NDV_Chicken_Bareilly_01_10" : [ - "KJ577585" - ], - "Human_coronavirus_OC43_OC43_human_USA_931_85_1993" : [ - "KF530090" - ], - "Natrinema_J7" : [ - "NC_018224", - "NC_018225" - ], - "Norovirus_Hu_GI_1_8FIIa_1968_USA_Hu_GI_1_8FIIa_1968_USA" : [ - "JX023285" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V101_2004" : [ - "EU155213" - ], - "Human_immunodeficiency_virus_1__04CM_1131_03" : [ - "DQ017383" - ], - "Banana_bunchy_top_virus__HaiKou_4" : [ - "HM231314" - ], - "Bat_SARS_like_coronavirus_Rs3367__Rs3367" : [ - "KC881006" - ], - "Human_poliovirus_2_NIE0911443_KDS09_08" : [ - "JX275266" - ], - "Kluyvera_phage_Kvp1" : [ - "NC_011534" - ], - "Dengue_virus_1__DENV_1_VN_BID_V804_2006" : [ - "EU482798" - ], - "Foot_and_mouth_disease_virus___type_C__C_S8p460p5d" : [ - "DQ409191" - ], - "Infectious_pancreatic_necrosis_virus_31_75" : [ - "AJ622822" - ], - "Faba_bean_necrotic_yellows_C9_alphasatellite__SV292_88" : [ - "AJ005966" - ], - "Porcine_circovirus_2__DQ08" : [ - "FJ644928" - ], - "Kobuvirus_SZAL6_KoV_2011_HUN_SZAL6_KoV_2011_HUN" : [ - "KJ934637" - ], - "Huaiyangshan_virus__M_HZM" : [ - "JF951393" - ], - "Hepatitis_B_virus__I214" : [ - "FJ562321" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4739_2009" : [ - "JN000936" - ], - "Porcine_parvovirus_2_BR_GO_ion_09_PPV_2_2011" : [ - "NC_025965" - ], - "Hepatitis_B_virus__S1371_11" : [ - "FJ787466" - ], - "Listeria_phage_B054" : [ - "NC_009813" - ], - "Dengue_virus_1__DENV_1_NI_BID_V606_2005" : [ - "EU596504" - ], - "Hepatitis_B_virus__dlz1025" : [ - "KC774421" - ], - "East_African_cassava_mosaic_virus__CF_CF30B_07" : [ - "KM886004" - ], - "Echovirus_E25_HN_2" : [ - "HM031191" - ], - "Porcine_circovirus_2_PCV2_pig_206" : [ - "EU136716" - ], - "Hepatitis_B_virus__C2_3" : [ - "GU815629" - ], - "Enterobacteria_phage_HX01" : [ - "NC_018855" - ], - "Papaya_leaf_curl_virus" : [ - "FM955602", - "HM143914", - "NC_004147", - "FM955601", - "AJ436992" - ], - "Coxsackievirus_B4_BM24G_NM_CHN_2010" : [ - "KF781525" - ], - "Hepatitis_B_virus__CHN_D12" : [ - "DQ478885" - ], - "Human_immunodeficiency_virus_1__04ZASK156B1" : [ - "DQ011171" - ], - "Human_immunodeficiency_virus_1__CH228_TFa" : [ - "KC156120" - ], - "Hepatitis_B_virus__cxa2074" : [ - "KC774329" - ], - "Yersinia_pseudotuberculosis_IP_32953" : [ - "NC_006155", - "NC_006154", - "NC_006153" - ], - "Hepatitis_B_virus__IBL1219" : [ - "HM363595" - ], - "Maize_streak_virus__MSV_A_ZA_Blu5_Ta32_2008" : [ - "HQ693404" - ], - "Hepatitis_B_virus__FMD137" : [ - "GU332705" - ], - "Hepatitis_B_virus__LAMr_Pt__17_Adefovir_treated_Pt__14" : [ - "AB367408" - ], - "Human_immunodeficiency_virus_1__99ZALT5" : [ - "EU293445" - ], - "Human_rhinovirus_A85_ATCC_VR_1195" : [ - "FJ445163" - ], - "Human_immunodeficiency_virus_1__04RU129005" : [ - "AY751406" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1059" : [ - "KR534529" - ], - "Potato_virus_Y_strain_Wilga_Wilga_5" : [ - "AJ890350" - ], - "Dengue_virus_1__DENV_1_VN_BID_V832_2006" : [ - "EU482826" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1937_2008" : [ - "FJ461335" - ], - "Archaeoglobus_fulgidus_DSM_4304" : [ - "NC_000917" - ], - "Human_immunodeficiency_virus_1__04ZAPS211B1" : [ - "DQ164112" - ], - "Synechococcus_phage_S_MbCM100" : [ - "NC_023584" - ], - "Goose_circovirus__GB21_9" : [ - "KP203869" - ], - "Human_immunodeficiency_virus_1__PRB959_05" : [ - "AY331297" - ], - "Selenomonas_sputigena_ATCC_35185" : [ - "NC_015437" - ], - "Dengue_virus_2__DENV_2_NI_BID_V571_2006" : [ - "EU482684" - ], - "Coxsackievirus_A11__CV_A11_67874" : [ - "JF260919" - ], - "Enterobacteria_phage_Bp4" : [ - "NC_024142" - ], - "Impatiens_necrotic_spot_virus__YSMi_WX" : [ - "FN400772" - ], - "Squirrel_monkey_retrovirus_HLB" : [ - "NC_001514" - ], - "Enterovirus_D68__NY328" : [ - "KP745766" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2234_2004" : [ - "FJ639801" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_6_13_1996" : [ - "KJ469575" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2754_2007" : [ - "GQ199778" - ], - "Myxoma_virus_Aust_Bendigo_7_92_Bendigo" : [ - "JX565565" - ], - "Hepatitis_B_virus__Ia_3" : [ - "AY596111" - ], - "Cotton_leaf_curl_Gezira_betasatellite__CLC32_S" : [ - "AY077798" - ], - "Duck_circovirus__GX1104" : [ - "JX241046" - ], - "Hepatitis_B_virus__BV_78" : [ - "GU563557" - ], - "Cassava_virus_C__IC" : [ - "NC_013113", - "NC_013112", - "NC_013111" - ], - "Hepatitis_B_virus__A1_50013" : [ - "FJ692572" - ], - "Hepatitis_B_virus__HBV_RU313_2" : [ - "AB205127" - ], - "Japanese_encephalitis_virus__YN82BN8219" : [ - "JN381834" - ], - "JC_polyomavirus__NP_15" : [ - "AB262410" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_52_2012" : [ - "KJ686251" - ], - "Macroptilium_yellow_spot_virus__BR_Sti10_11" : [ - "KJ939868" - ], - "Human_immunodeficiency_virus_1__03ZASK113B1" : [ - "DQ351237" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culex_USA_08316A_2000" : [ - "KJ469633" - ], - "Hepatitis_B_virus__HBV_MDQ5" : [ - "JQ272886" - ], - "Hepatitis_B_virus_274_7" : [ - "KR013905" - ], - "Tomato_yellow_leaf_curl_virus__Alb12" : [ - "FJ956701" - ], - "Porcine_circovirus_2_10JX" : [ - "KC336417" - ], - "Maize_streak_virus__MSV_A_ZA_Ros_D2_2006" : [ - "FJ882138" - ], - "Watermelon_chlorotic_stunt_virus__JO3_622" : [ - "KM820232" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL100A" : [ - "AB985313", - "AB985545" - ], - "Dengue_virus_2__DENV_2_NI_BID_V528_2005" : [ - "FJ226066" - ], - "Dengue_virus_4__MKS_0070" : [ - "KC762695" - ], - "Rabies_virus__CA100" : [ - "JQ685909" - ], - "Human_rhinovirus_A18_ATCC_VR_1128" : [ - "FJ445118" - ], - "Enterobacteria_phage_Qbeta_VK" : [ - "FJ483843" - ], - "Infectious_salmon_anemia_virus__Glesvaer_2_90" : [ - "Y10404" - ], - "Human_poliovirus_1_USA10785" : [ - "EF682357" - ], - "Acheta_domesticus_volvovirus__AdVVV_GA" : [ - "KC794539" - ], - "Babanki_virus" : [ - "HM147984" - ], - "Human_immunodeficiency_virus_1__876_14" : [ - "KP718916" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K228" : [ - "AJ717582", - "AJ704966" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E2461_2011_G3P_8__E2461" : [ - "KF371866", - "KF371867", - "KF371861", - "KF371858", - "KF371862", - "KF371859", - "KF371860", - "KF371863", - "KF371864" - ], - "Hepatitis_B_virus__M12" : [ - "GQ924606" - ], - "Murine_norovirus_3_K4" : [ - "FJ446720" - ], - "Torque_teno_virus__TTV_HD23d__rheu212" : [ - "FR751503" - ], - "Chinook_salmon_bafinivirus__NIDO" : [ - "NC_026812" - ], - "Pseudomonas_syringae_tomato_DC3000" : [ - "NC_004632", - "NC_004578", - "NC_004633" - ], - "Porcine_circovirus_2_BJ0802" : [ - "EU921255" - ], - "Hydrogenobaculum_Y04AAS1" : [ - "NC_011126" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4059_2008" : [ - "GU131811" - ], - "Cyanothece_PCC_7424" : [ - "NC_011733", - "NC_011738", - "NC_011729", - "NC_011734", - "NC_011737", - "NC_011730", - "NC_011732" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2231_2004" : [ - "FJ639798" - ], - "Canine_distemper_virus__98_2654" : [ - "AY466011" - ], - "Porcine_circovirus_2__DE264_13" : [ - "KP698400" - ], - "Guanarito_mammarenavirus_CVH_960302" : [ - "AY572555" - ], - "Porcine_circovirus_1_PK" : [ - "DQ650650" - ], - "Bovine_rotavirus" : [ - "ROBP9" - ], - "Maize_white_line_mosaic_satellite_virus" : [ - "NC_003631" - ], - "Enterovirus_A71__PP37_MAL_01" : [ - "DQ341365" - ], - "South_African_cassava_mosaic_virus__MG_MG135A2_09" : [ - "KJ887927" - ], - "Murine_norovirus_GV_CR13_2005_USA__Mu_NoV_GV_CR13_2005_USA" : [ - "EU004680" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2892_2006" : [ - "FJ898412" - ], - "Equine_infectious_anemia_virus_DLV_DLV18_8" : [ - "HM141923" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_68U200_1968_IE" : [ - "KC344435" - ], - "Dengue_virus_4_H780090_DENV_4_ROR7591" : [ - "JQ513340" - ], - "Leuconostoc_phage_Ln_9" : [ - "NC_027358" - ], - "Human_poliovirus_1__CHN_Henan_91_3__CHN_3653HE91" : [ - "AF111983" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1537_2007" : [ - "EU677164" - ], - "Croceibacter_atlanticus_HTCC2559" : [ - "NC_014230" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3945_2008" : [ - "GU131737" - ], - "Human_herpesvirus_5__PH_BAC" : [ - "AC146904" - ], - "Human_poliovirus_1__558_BRA_PE_88" : [ - "KF537633" - ], - "Canine_parvovirus_2c__UY187" : [ - "KM457117" - ], - "Chicken_parvovirus__ADL120035" : [ - "KJ486490" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1210_2007" : [ - "EU482623" - ], - "Maize_streak_virus__MSV_A_NG_ng36_Mil_2011" : [ - "KJ437660" - ], - "Cucumber_green_mottle_mosaic_virus__JSDT12" : [ - "KC852072" - ], - "Hepatitis_B_virus__D_NZL_PA31_1984" : [ - "HQ700473" - ], - "Yersinia_enterocolitica_8081" : [ - "NC_008800", - "NC_008791" - ], - "Avastrovirus_3_TAstV_AK_98" : [ - "EU143843" - ], - "Hepatitis_B_virus__patient_336" : [ - "DQ993684" - ], - "Paspalum_striate_mosaic_virus__AU_QG13_2011" : [ - "JQ948067" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__Asia1_1_YZ_CHA_06" : [ - "HQ631363" - ], - "Tomato_leaf_curl_China_betasatellite__G18" : [ - "AJ704612" - ], - "Hepatitis_B_virus_B0206" : [ - "DQ980550" - ], - "Maize_streak_virus__MSV_A_GH_gh137_Ahy_2010" : [ - "KJ699324" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M33" : [ - "KM110935" - ], - "Maize_streak_virus___B_Tas___Tas" : [ - "AF239962" - ], - "Porcine_circovirus_2__DE143_14" : [ - "KP698404" - ], - "Porcine_circovirus_2__Haian" : [ - "FJ712216" - ], - "Human_papillomavirus_type_146__GH1677" : [ - "HM999998" - ], - "Red_clover_vein_mosaic_virus__Washington" : [ - "NC_012210" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLI1302_2010_A" : [ - "KJ627389" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__09HUB5" : [ - "GU168568" - ], - "Human_poliovirus_1_NIE0918391" : [ - "KJ170478" - ], - "Mungbean_yellow_mosaic_India_virus" : [ - "FM955599", - "FM202446", - "FM208846", - "FM208839", - "AY937195", - "FM208843", - "FM202445", - "KC911720", - "KC911719", - "FM208837", - "FM202444", - "FM958506", - "KC852204", - "FM208841", - "DQ389154", - "FM202440", - "FM955606", - "DQ389153", - "AM992617", - "FM208845", - "FM208836", - "FM202442", - "FM208838", - "FM955609", - "FM161881", - "FM208840", - "JN543395", - "FM955598", - "EU523045", - "FM202447", - "DQ400847", - "FM202441", - "FM955600", - "AY937196", - "FM208844", - "JN543396", - "JX110618", - "FM208834", - "FM208833", - "FM202439", - "FM208842", - "EU523046", - "FM955603", - "FR837935", - "AM950268", - "AY939925", - "FM202443", - "FM208835", - "AM992618", - "FM955605", - "FM955604" - ], - "Chlamydia_trachomatis_E_C599" : [ - "NC_022537" - ], - "Hepatitis_B_virus__PNF4323" : [ - "KF779319" - ], - "Porcine_circovirus_2__YL2" : [ - "HQ202947" - ], - "Human_immunodeficiency_virus_1__C_96BW01B22" : [ - "AF110961" - ], - "JC_polyomavirus__NG_2" : [ - "AB127004" - ], - "Duck_circovirus_YS07" : [ - "EU344806" - ], - "Tomato_yellow_leaf_curl_virus__JN11" : [ - "JX070042" - ], - "Porcine_circovirus_2_HByc_18" : [ - "FJ870973" - ], - "Hepatitis_B_virus_1130_6" : [ - "KR014006" - ], - "Canine_distemper_virus_007Lm_H358p8" : [ - "AB823707" - ], - "Actinobacillus_suis_H91_0380" : [ - "NC_018690" - ], - "European_mountain_ash_ringspot_associated_virus__E53119" : [ - "HG799728" - ], - "Human_papillomavirus_type_16__European_German_131_type" : [ - "AF536179" - ], - "Acinetobacter_baumannii_ATCC_17978" : [ - "NC_009085", - "NC_009084", - "NC_009083" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_25__AHEaCV_25_NZ_3789GA_2012" : [ - "KM874358" - ], - "East_African_cassava_mosaic_virus__Uganda_variant__EACMV_UG_EACMV_UG__Ca055" : [ - "FN668377", - "FN668380" - ], - "Dengue_virus_2__DENV_2_CO_BID_V1596_2005" : [ - "FJ024475" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GX10_48" : [ - "JQ309823" - ], - "South_African_cassava_mosaic_virus__MG_MG475A3_11" : [ - "KJ888021" - ], - "Helicoverpa_armigera_nucleopolyhedrovirus_SP1B" : [ - "KJ701033" - ], - "Human_respiratory_syncytial_virus_05_040399" : [ - "JX576754" - ], - "Sweet_potato_leaf_curl_virus__Merremia_N4" : [ - "DQ644563" - ], - "Human_herpesvirus_3_VZVi_Erfurt_GER_01_05_V_3__3_2005" : [ - "JN704700" - ], - "Ribgrass_mosaic_virus_FSHS_U597" : [ - "JQ319720" - ], - "Dengue_virus_1__DENV_1_VN_BID_V794_2006" : [ - "EU249491" - ], - "Japanese_encephalitis_virus_p3" : [ - "JEU47032" - ], - "Japanese_encephalitis_virus_SA14_14_2" : [ - "AF315119", - "JN604986", - "JEVSAA" - ], - "Hepatitis_C_virus_subtype_2a_MD2a_5" : [ - "AF238484" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7339_2002" : [ - "KF973323" - ], - "Torque_teno_sus_virus_1b__GD_China_2009_TTV2_9" : [ - "JF937659" - ], - "Maize_streak_virus__MSV_A_GH_gh29_Nsa_2010" : [ - "KJ699344" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_CFI1004_2010" : [ - "KJ672559" - ], - "Gossypium_davidsonii_symptomless_alphasatellite__Must_alphaB_1" : [ - "EU384654" - ], - "Mamestra_configurata_nucleopolyhedrovirus_A_90_2" : [ - "NC_003529" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4323_2" : [ - "KR105232" - ], - "JC_polyomavirus__FC_1" : [ - "AB103406" - ], - "East_African_cassava_mosaic_Zanzibar_virus___Kenya__Kilifi" : [ - "AJ516003" - ], - "Feline_coronavirus_WSU_79_1683" : [ - "JN634064" - ], - "Stenotrophomonas_maltophilia_JV3" : [ - "NC_015947" - ], - "Dengue_virus_2__DC687Y12" : [ - "KM279554" - ], - "Hepatitis_B_virus__SHB819" : [ - "KJ598778" - ], - "Tomato_yellow_leaf_curl_virus__Jiroft_Iran___TYLCV_OM_IR_Ji42_06" : [ - "GU076452" - ], - "Human_papillomavirus_type_92" : [ - "NC_004500" - ], - "Acidianus_filamentous_virus_8" : [ - "NC_010154" - ], - "Hepatitis_B_virus__DEN5910" : [ - "KF779220" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6353_2009" : [ - "KJ627369" - ], - "Breda_virus_Breda_1" : [ - "NC_007447" - ], - "Avian_orthoreovirus_attenuated_vaccine_strain_S1133" : [ - "KF741767", - "KF741768", - "KF741773", - "KF741695", - "KF741771", - "KF741766", - "KF741769", - "KF741774", - "KF741770" - ], - "Hepatitis_B_virus__S1572" : [ - "FJ386686" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_O57A_2005" : [ - "JQ319161" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL163A" : [ - "AB985573" - ], - "Simian_adenovirus_46" : [ - "FJ025930" - ], - "Tobacco_vein_banding_mosaic_virus__JN" : [ - "JN621319" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K277" : [ - "AJ717533" - ], - "Seoul_virus_zy27" : [ - "AF406965" - ], - "West_Nile_virus__WNV_1_US_BID_V4614_2003" : [ - "HM488232" - ], - "Porcine_circovirus_2__HL1" : [ - "HQ202970" - ], - "Mojiang_virus__Tongguan1" : [ - "NC_025352" - ], - "JC_polyomavirus__KB_17" : [ - "AB362356" - ], - "Hepatitis_B_virus__PNF4951" : [ - "KF779348" - ], - "Pneumonia_virus_of_mice_J3666_J3666" : [ - "NC_006579" - ], - "Porcine_circovirus_1_IL" : [ - "AY219836" - ], - "Dengue_virus_4_H781363_DENV_4_BHI3581" : [ - "JQ513345" - ], - "Hepatitis_B_virus__S1634_7" : [ - "FJ032361" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2857_2005" : [ - "GQ199838" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2033_2003" : [ - "FJ639703" - ], - "West_Nile_virus__M37012" : [ - "JF415922" - ], - "Serratia_plymuthica_S13" : [ - "NC_021659" - ], - "Dengue_virus_1_HawM2540" : [ - "DQ672562" - ], - "Snake_adeno_associated_virus" : [ - "NC_006148" - ], - "Gooseberry_vein_banding_associated_virus__RC" : [ - "HQ852249" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__PRRSV03" : [ - "FJ175689" - ], - "Tomato_severe_rugose_virus__BR_Flo206_08" : [ - "KC004073" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0106" : [ - "KP759767" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V505_2001" : [ - "EU256105" - ], - "Enterovirus_A71__ENT_PM_SHA71" : [ - "AM396585" - ], - "West_Nile_virus__WNV_1_US_BID_V6566_2001" : [ - "KJ501361" - ], - "Chikungunya_virus_KPA15" : [ - "HQ456254" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1932_2008" : [ - "FJ410260" - ], - "Tomato_black_ring_virus_satellite_RNA" : [ - "X05687", - "X05688" - ], - "Prochlorococcus_marinus_AS9601" : [ - "NC_008816" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1836_2007" : [ - "FJ432749" - ], - "Human_immunodeficiency_virus_1__L8185" : [ - "DQ886036" - ], - "African_cassava_mosaic_virus__CF_CF7AB_07" : [ - "KJ887759" - ], - "Tortoise_ranavirus__1__882_96" : [ - "KP266743" - ], - "JC_polyomavirus__JCV135_42" : [ - "JF424867" - ], - "Torque_teno_virus__TA278" : [ - "AB017610" - ], - "Mycobacterium_phage_Babsiella_Babsiella" : [ - "NC_023697" - ], - "Cronobacter_phage_CR3" : [ - "NC_017974" - ], - "Dengue_virus_3_KJ71" : [ - "AY858044" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8382_2003" : [ - "KJ627666" - ], - "Plum_pox_virus_PPV_Rec_SK_514" : [ - "LN614587" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2725_2007" : [ - "FJ898373" - ], - "Tomato_severe_rugose_virus_Petrolina_de_Goias_Baccatum_9" : [ - "NC_009612" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD195_2013" : [ - "KM229849" - ], - "Dengue_virus_2__DENV_2_US_BID_V5413_2009" : [ - "JF730054" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Bama_Okra" : [ - "FN554541" - ], - "Batai_virus_MS50" : [ - "JX846604", - "JX846606", - "JX846605" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2202_2001" : [ - "FJ882578" - ], - "Crimean_Congo_hemorrhagic_fever_virus__NIVA_118594" : [ - "JN572084", - "JN572087", - "JN572092" - ], - "Temperate_fruit_decay_associated_virus__MFBpe1" : [ - "KJ955450" - ], - "Hepatitis_B_virus__1_91" : [ - "AF043594" - ], - "Porcine_circovirus_2__PCV_A" : [ - "KC515021" - ], - "Feline_coronavirus__27C" : [ - "KP143507" - ], - "Tortoise_picornavirus_124_4_10" : [ - "KM873616" - ], - "Hepatitis_B_virus__EIH21AChinese" : [ - "EF473974" - ], - "Pseudomonas_phage_PaBG" : [ - "NC_022096" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4058_2008" : [ - "GU131810" - ], - "Temperate_fruit_decay_associated_virus__MFBpe35h" : [ - "KR134349" - ], - "Sewage_associated_circular_DNA_molecule__SaCM_9_NZ_BS3553_2012" : [ - "KM877831" - ], - "Dengue_virus_1__DENV_1_TH_BID_V2274_2001" : [ - "FJ687430" - ], - "Sida_golden_mosaic_virus__Florida_isolate" : [ - "NC_002047" - ], - "Barley_yellow_mosaic_virus_2__resistance_breaking__CRW" : [ - "AJ515480" - ], - "Edwardsiella_tarda_FL6_60" : [ - "NC_017309", - "NC_017318" - ], - "Hepatitis_B_virus__A2_7" : [ - "GU815566" - ], - "Mikania_micrantha_mosaic_virus__GZ1" : [ - "NC_011189", - "NC_011190" - ], - "Turnip_mosaic_virus__DEU1" : [ - "AB701699" - ], - "Small_begomovirus_associated_satellite__Sa19_S115" : [ - "KJ859137" - ], - "Plum_pox_virus__El_Amar" : [ - "DQ431465" - ], - "Human_rotavirus_C_GUP188" : [ - "AB499614", - "AB499612", - "AB499613", - "AB499615" - ], - "Dengue_virus_3_TB55i" : [ - "AY858048" - ], - "Dengue_virus_2" : [ - "DENRCG", - "DEN2CGA", - "AB543624", - "JN368476" - ], - "Watermelon_mosaic_virus__FBR04_37" : [ - "EU660586" - ], - "Human_rotavirus_A_RVA_Human_wt_VNM_30378_2009_G26P_19__ID30378" : [ - "HG513048", - "HG513052", - "HG513050", - "HG513046", - "HG513053", - "HG513054", - "HG513051", - "HG513055", - "HG513045", - "HG513047" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI0320_2010_A" : [ - "KJ627377" - ], - "Helicobacter_pylori_BM012S" : [ - "NC_022911" - ], - "VESV_like_calicivirus_Pan_1" : [ - "AF091736" - ], - "GB_virus_C__469_66" : [ - "KP710602" - ], - "Rabbit_hemorrhagic_disease_virus__NY_01" : [ - "EU003581" - ], - "Mycobacterium_phage_SDcharge11" : [ - "NC_021303" - ], - "Rubella_virus__Ulrike" : [ - "AF435865" - ], - "Human_respiratory_syncytial_virus_A_WI_629_DC9_08_09" : [ - "JF920050" - ], - "Cotton_leaf_curl_Gezira_virus__Cotton___CLCuV_SD" : [ - "AF260241" - ], - "Chicken_anemia_virus_GD_H_12" : [ - "KF224932" - ], - "Hepatitis_B_virus__MY677465" : [ - "KJ803799" - ], - "Porcine_circovirus_2__n32eu" : [ - "DQ629115" - ], - "Shewanella_baltica_OS223" : [ - "NC_011664", - "NC_011668", - "NC_011663", - "NC_011665" - ], - "Mammalian_orthoreovirus_3_variant_T3v2" : [ - "JQ599138" - ], - "Terriglobus_saanensis_SP1PR4" : [ - "NC_014963" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1977_2008" : [ - "FJ461341" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V450_2006" : [ - "EU155236" - ], - "Hepatitis_B_virus__A5_HT" : [ - "KP234053" - ], - "Human_mastadenovirus_D_human_USA_Pitts_00150_1992_NEW_P26H56F56" : [ - "KF268313" - ], - "Propionibacterium_propionicum_F0230a" : [ - "NC_018142" - ], - "Human_parainfluenza_virus_1_HPIV1_MEX_495_2003" : [ - "KF530198" - ], - "Human_poliovirus_1__CHN_Jiangxi_89_1__CHN_1338JX89" : [ - "AF111984" - ], - "Maize_streak_virus__MSV_A_LS_Mal3_Les3_2005" : [ - "FJ882097" - ], - "Streptococcus_phage_K13" : [ - "NC_024357" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2476_2008" : [ - "FJ850106" - ], - "Shewanella_denitrificans_OS217" : [ - "NC_007954" - ], - "Enterobacteria_phage_M13" : [ - "NC_003287" - ], - "Human_immunodeficiency_virus_1__867_10" : [ - "KP718927" - ], - "Tomato_leaf_curl_New_Delhi_virus__India_Karnal_OY81A_2004___OY81A" : [ - "GU112082", - "GU112083" - ], - "Rift_Valley_fever_virus_2008_00101" : [ - "HE687305", - "HE687307", - "HE687306" - ], - "Tomato_leaf_curl_Cameroon_virus___Fontem__TFB17" : [ - "HE659516" - ], - "Capra_hircus_papillomavirus_1" : [ - "NC_008032" - ], - "Duck_hepatitis_A_virus_1_X" : [ - "FJ496343" - ], - "Hepatitis_B_virus__clz2015" : [ - "KC774196" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4009_2008" : [ - "GU131773" - ], - "Reticuloendotheliosis_virus_HLJ07I" : [ - "GQ375848" - ], - "Tomato_yellow_leaf_curl_virus_TYLCV_Ir2" : [ - "EU085423" - ], - "Echovirus_E3_OC10_492" : [ - "AB647320" - ], - "Human_bocavirus_JPOC08_011" : [ - "AB481081" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2053_2008" : [ - "FJ639715" - ], - "Newcastle_disease_virus__Chicken_China_Liaoning_01_2008" : [ - "KC542900" - ], - "Erysipelothrix_rhusiopathiae_SY1027" : [ - "NC_021354" - ], - "Zinnia_leaf_curl_virus_associated_DNA_beta" : [ - "NC_005874" - ], - "Armero_virus_Co_Ar_171096" : [ - "HM566140", - "HM566142" - ], - "Serratia_plymuthica_AS9" : [ - "NC_015567" - ], - "Streptococcus_phage_SOCP" : [ - "KJ617393" - ], - "Newcastle_disease_virus_Chicken_China_SD04_2011" : [ - "JQ015296" - ], - "Human_bocavirus_HoBV_Yamagata_JPN_189" : [ - "AB480171" - ], - "Pseudoalteromonas_atlantica_T6c" : [ - "NC_008228" - ], - "Human_parvovirus_B19__KU12" : [ - "KM393169" - ], - "Hepatitis_B_virus__QH_33" : [ - "JF491450" - ], - "Human_immunodeficiency_virus_1__03ZASK010B2" : [ - "DQ164104" - ], - "Human_parainfluenza_virus_3_HPIV3_MEX_1110_2004" : [ - "KF687321" - ], - "Muscovy_duck_parvovirus_FM" : [ - "NC_006147", - "X75093" - ], - "Echovirus_E3_OC10_731" : [ - "AB647324" - ], - "Porcine_circovirus_2__YDBG12" : [ - "KJ680346" - ], - "Merkel_cell_polyomavirus__17b" : [ - "HM011549" - ], - "Human_poliovirus_2__P2S_Mog65_1__20003" : [ - "AY278550" - ], - "Hepatitis_B_virus__DEN6164" : [ - "KF779247" - ], - "Tomato_common_mosaic_virus__BR_Coi7_07" : [ - "KC706578" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1_3P20_2010_c1_3P20" : [ - "KF514422" - ], - "Human_adenovirus_7_CDC228_JM_CHN_2012" : [ - "KJ019884" - ], - "Israel_turkey_meningoencephalomyelitis_virus" : [ - "KC734549" - ], - "Human_immunodeficiency_virus_1__03ZASK094B1" : [ - "AY878070" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1232_2007" : [ - "EU482625" - ], - "Human_immunodeficiency_virus_1__04ZASK164B1" : [ - "DQ056405" - ], - "Bifidobacterium_animalis_lactis_DSM_10140" : [ - "NC_012815" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3860_2008" : [ - "GU131695" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3857_2008" : [ - "GU131693" - ], - "Hepatitis_B_virus__AnkaraE39" : [ - "AB674404" - ], - "Norovirus_Hu_GII_4_Osaka2_2007_JP_Hu_GII_4_Osaka2_2007_JP" : [ - "AB541321" - ], - "Human_poliovirus_2_NIE0911458_BOS09_06" : [ - "JX275238" - ], - "Rice_black_streaked_dwarf_virus__WZ" : [ - "EU111804" - ], - "JC_polyomavirus__JCV144_06" : [ - "JF424877" - ], - "Dengue_virus_2__DENV_2_PE_FPI00073_2010" : [ - "KC294202" - ], - "Hepatitis_B_virus__FMD60" : [ - "GU168595" - ], - "Dengue_virus_1_VE_61006_2006" : [ - "HQ332182" - ], - "Grapevine_vein_clearing_virus__LBC0903" : [ - "NC_015784" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2331_2006" : [ - "FJ850067" - ], - "Hepatitis_B_virus__J179" : [ - "GQ377611" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4861_2009" : [ - "HQ705611" - ], - "Pyrococcus_yayanosii_CH1" : [ - "NC_015680" - ], - "Human_immunodeficiency_virus_1__09YNLX19sg" : [ - "KC899008" - ], - "Chickpea_chlorotic_dwarf_virus__PK32" : [ - "KM377669" - ], - "Human_immunodeficiency_virus_1__CH77E_flC4" : [ - "FJ496004" - ], - "Hantaanvirus_CGAa31MP7_CGAa31MP7" : [ - "EF990925", - "EF990911" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4683_1" : [ - "KR105262" - ], - "Halothiobacillus_neapolitanus_c2" : [ - "NC_013422" - ], - "Rift_Valley_fever_virus_763_70" : [ - "DQ380174", - "DQ380188", - "DQ375426" - ], - "TTV_like_mini_virus__TTMV_LY2" : [ - "JX134045" - ], - "Cucumber_mosaic_virus__Cb7" : [ - "EF216866", - "EF216867" - ], - "Turnip_mosaic_virus__GBR57" : [ - "AB701716" - ], - "Porcine_circovirus_2_TJ_1" : [ - "KC751546" - ], - "Foot_and_mouth_disease_virus___type_O_PanAsia_FRA_1_2001" : [ - "AJ633821" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZtick12_2010" : [ - "JQ684872", - "JQ684871", - "JQ684873" - ], - "Spirochaeta_L21_RPul_D2" : [ - "NC_023035" - ], - "Maize_dwarf_mosaic_virus__OH_2" : [ - "JQ403609" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_MA2494_1977" : [ - "KJ469611" - ], - "Hollyhock_leaf_crumple_virus__Cairo" : [ - "NC_004071" - ], - "Barley_yellow_dwarf_virus_PAV__013" : [ - "EF521834" - ], - "Honeysuckle_yellow_vein_virus" : [ - "GQ477135" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3752_2008" : [ - "GQ868533" - ], - "Torque_teno_virus__tth31" : [ - "AJ620225" - ], - "Porcine_circovirus_2__PCV2_1" : [ - "KJ778679" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_130642" : [ - "KJ425498" - ], - "Dengue_virus_3__PF94_136116" : [ - "AY744685" - ], - "African_cassava_mosaic_virus__KE_mtw_CMD_MI79_12" : [ - "HG530111" - ], - "Swine_hepatitis_E_virus__SW627" : [ - "EU723513" - ], - "Cucumber_mosaic_virus__strain_Ri_8__Ri_8" : [ - "AM183118", - "AM183117", - "AM183119" - ], - "Hepatitis_C_virus_subtype_1b_MD7_2" : [ - "AF165058" - ], - "South_African_cassava_mosaic_virus__MG_MG88A13_06" : [ - "KJ887655" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC27BF1_2009" : [ - "JF909102" - ], - "Gemycircularvirus_SL2_SL2" : [ - "KP133076" - ], - "Human_papillomavirus_type_53__Qv32783" : [ - "EF546480" - ], - "Avian_paramyxovirus_6__mallard_Jilin_127_2011" : [ - "KF267717" - ], - "Maize_streak_virus__MSV_A_ZA_Por6_Ta35_2008" : [ - "HQ693436" - ], - "Sida_leaf_curl_virus_associated_DNA_1__Hn57" : [ - "NC_007640" - ], - "Bean_common_mosaic_virus__DXH017" : [ - "KJ807807" - ], - "Japanese_encephalitis_virus__HN06129" : [ - "JF706277" - ], - "Hepatitis_B_virus__KM2109" : [ - "JQ927384" - ], - "Karshi_virus_LEIV_7192_Tur" : [ - "DQ462443" - ], - "Tomato_leaf_curl_Cameroon_alphasatellite__CM_AGLD1_Ag_09___AGLD1" : [ - "FN675302" - ], - "JC_polyomavirus__JCV161FLC_23" : [ - "JF424931" - ], - "Human_papillomavirus_type_11__CAC246" : [ - "FN907960" - ], - "Human_immunodeficiency_virus_1__DR1348" : [ - "AB287369", - "AB287370" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_110825" : [ - "KJ425488" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1957_2008" : [ - "FJ562103" - ], - "Hepatitis_B_virus_S40U" : [ - "DQ890381" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V259_2003" : [ - "EU255956" - ], - "Influenza_A_virus__A_Hong_Kong_1073_99_H9N2___A_Hong_Kong_1073_99__H9N2" : [ - "NC_004907" - ], - "Corynebacterium_diphtheriae_NCTC_13129" : [ - "NC_002935" - ], - "Dengue_virus_1__DENV_1_NI_BID_V635_2005" : [ - "FJ024484" - ], - "Malvastrum_leaf_curl_virus__G87" : [ - "NC_007724" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4324_1" : [ - "KR105233" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC287" : [ - "KF577605" - ], - "Watermelon_mosaic_virus_WMV_CHN" : [ - "DQ399708" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__ODLAR11" : [ - "FM164728" - ], - "Cucumber_green_mottle_mosaic_virus__DY9" : [ - "KM873786" - ], - "Soybean_dwarf_virus_DP_M96_1" : [ - "AB038150" - ], - "Pseudomonas_phage_vB_PaeS_PAO1_Ab20_Ab20" : [ - "LN610585" - ], - "Caldisphaera_lagunensis_DSM_15908" : [ - "NC_019791" - ], - "Human_immunodeficiency_virus_1__HP_13_04KMK5" : [ - "JQ316126" - ], - "Citrus_sudden_death_associated_virus_P15" : [ - "DQ185573" - ], - "Vaccinia_virus_Acambis_3000_Modified_Virus_Ankara__MVA" : [ - "AY603355" - ], - "Porcine_circovirus_2_JF2" : [ - "HQ402903" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4861_1" : [ - "KR105274" - ], - "Croceibacter_phage_P2559Y" : [ - "NC_023614" - ], - "Human_herpesvirus_5_BE_24_2010" : [ - "KP745679" - ], - "Cauliflower_mosaic_virus__IRN16" : [ - "AB863151" - ], - "Acetobacter_pasteurianus_IFO_3283_26" : [ - "NC_017130", - "NC_017147", - "NC_017131", - "NC_017146", - "NC_017133", - "NC_017148", - "NC_017132" - ], - "Murine_norovirus__O1" : [ - "KF113527" - ], - "Crimean_Congo_hemorrhagic_fever_virus__NIV_11703" : [ - "JN572086" - ], - "Norovirus_Hu_GII_20248_2009_VNM_Hu_GII_20248_2009_VNM" : [ - "KC409284" - ], - "Hepatitis_B_virus__A64_1" : [ - "HQ638218" - ], - "Hepatitis_B_virus__pt12N" : [ - "KM875422" - ], - "Acetobacter_pasteurianus_IFO_3283_01" : [ - "NC_013215", - "NC_013213", - "NC_013214", - "NC_013209", - "NC_013211", - "NC_013210", - "NC_013212" - ], - "Human_poliovirus_3_NIE1118500" : [ - "KJ170595" - ], - "Hepatitis_B_virus__ZADGM50" : [ - "GQ184325" - ], - "Human_immunodeficiency_virus_1__94UFRJ_58" : [ - "AY455785" - ], - "Dengue_virus_1__DENV_1_NI_BID_V2652_2008" : [ - "GQ199859" - ], - "Measles_virus_T11Ve_23" : [ - "AB481088" - ], - "Murine_norovirus_GV_NIH_2411_2005_USA_GV_NIH_2411_2005_USA" : [ - "JF320646" - ], - "Porcine_circovirus_2_09GD" : [ - "HQ395026" - ], - "Hepatitis_B_virus__C85" : [ - "EU939664", - "EU859947" - ], - "Armero_virus_Co_Ar_170396" : [ - "HQ661807", - "HQ661806", - "HQ661805" - ], - "Sweet_potato_golden_vein_associated_virus_Rondonia_SPGVaV_RO_BR_Cac_08" : [ - "HQ393459" - ], - "Alicyclobacillus_acidocaldarius_DSM_446" : [ - "NC_013207", - "NC_013208", - "NC_013206", - "NC_013205" - ], - "Hepatitis_B_virus__S1a" : [ - "KF584161" - ], - "Columbid_circovirus__PL170" : [ - "KF738848" - ], - "Hepatitis_B_virus__CAR137" : [ - "AM494707" - ], - "African_cassava_mosaic_virus__CF_CF87AB1_07" : [ - "KJ887784" - ], - "Terriglobus_roseus_DSM_18391" : [ - "NC_018014" - ], - "Foot_and_mouth_disease_virus___type_O__TUR_883_2010" : [ - "JX040495" - ], - "Ostreococcus_virus_OsV5_OsV5" : [ - "NC_010191" - ], - "JC_polyomavirus_729B" : [ - "AF300954" - ], - "Hepatitis_B_virus__1743" : [ - "FJ386574" - ], - "Bean_golden_mosaic_virus__BR_Pai16_11" : [ - "KJ939752" - ], - "Influenza_A_virus__A_goose_Guangdong_1_1996_H5N1___A_goose_Guangdong_1_1996" : [ - "NC_007363", - "NC_007361", - "NC_007364" - ], - "Hepatitis_B_virus__Tibet_165" : [ - "HM750132" - ], - "Watermelon_chlorotic_stunt_virus__JO2_418" : [ - "KM820213" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3832_2007" : [ - "GU131917" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2289_2001" : [ - "FJ687444" - ], - "Dengue_virus_2__DENV_2_US_BID_V1387_1998" : [ - "EU687212" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC14B73_2008" : [ - "JF909091" - ], - "Human_poliovirus_3_NIE1118526" : [ - "KJ170646" - ], - "Hepatitis_B_virus__34408" : [ - "AJ627228" - ], - "Enterovirus_B85_HT_LYKH202F_XJ_CHN_2011" : [ - "JX898908" - ], - "Cotton_leaf_curl_alphasatellite__IARI_50" : [ - "KM070825" - ], - "Malvastrum_leaf_curl_virus__G100" : [ - "AM260699" - ], - "Human_immunodeficiency_virus_1__96BWMO1_5" : [ - "AF443074" - ], - "JC_polyomavirus__CH_17" : [ - "AB077870" - ], - "Sweet_potato_leaf_curl_Lanzarote_virus__ES_MAL_BG30_06" : [ - "NC_013467" - ], - "Vibrio_phage_VHML" : [ - "NC_004456" - ], - "Porcine_circovirus_2__HN12" : [ - "KM067384" - ], - "Sugarcane_streak_Reunion_virus__SSRV_A_RBas" : [ - "EU244913" - ], - "Dengue_virus_2__DENV_2_VN_BID_V774_2007" : [ - "EU482700" - ], - "Squash_leaf_curl_virus__LB4_8_1" : [ - "KM595129" - ], - "Infectious_bronchitis_virus_H52" : [ - "EU817497" - ], - "Human_immunodeficiency_virus_1_PM213_213" : [ - "HIV2132" - ], - "Yacon_necrotic_mottle_virus__YV1" : [ - "NC_026472" - ], - "Leuconostoc_phage_phiLN04" : [ - "NC_020870" - ], - "Tomato_leaf_curl_China_betasatellite__Y25" : [ - "AJ421619" - ], - "Human_rotavirus_A_1250_stool" : [ - "AJ236756" - ], - "Chikungunya_virus_TH35" : [ - "HM045810" - ], - "Clostridium_lentocellum_DSM_5427" : [ - "NC_015275" - ], - "Hepatitis_B_virus__cxn1029" : [ - "KC774339" - ], - "BK_polyomavirus__LAB_25" : [ - "AB301094" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG633A7_11" : [ - "KJ888068" - ], - "African_horse_sickness_virus__HS32_62_1S" : [ - "KM609470", - "KM609474", - "KM609473", - "KM609472", - "KM609467", - "KM609471", - "KM609469", - "KM609468", - "KM609465" - ], - "Western_equine_encephalitis_virus_CHLV53" : [ - "KJ554976" - ], - "Streptococcus_pyogenes_phage_315_3" : [ - "NC_004586" - ], - "Hepatitis_B_virus__CL150171" : [ - "FJ356716" - ], - "Infectious_bronchitis_virus_ck_CH_LBJ_140402" : [ - "KP118882" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6737_2009" : [ - "KJ627281" - ], - "JC_polyomavirus__GU_4" : [ - "AB081014" - ], - "Hepatitis_B_virus__N07_C_4230B" : [ - "KJ173400" - ], - "Candidatus_Mycoplasma_haemominutum__Birmingham_1" : [ - "NC_021007" - ], - "Enterobacteria_phage_2851" : [ - "FM180578" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3845" : [ - "KM233108" - ], - "Human_papillomavirus_type_29" : [ - "HPU31784" - ], - "Duck_hepatitis_A_virus_1_HDHV1_ZJ" : [ - "FJ157176" - ], - "Human_immunodeficiency_virus_1__C_96BW15C02" : [ - "AF110974" - ], - "Human_immunodeficiency_virus_1__93TH902_1" : [ - "AF164485" - ], - "Hepatitis_B_virus__C2_1" : [ - "GU815627" - ], - "Lunk_virus_NKS_1_NKS_1" : [ - "NC_018710", - "NC_018711" - ], - "Japanese_encephalitis_virus_GP78" : [ - "AF075723" - ], - "Human_poliovirus_2__CHN16019c_Sichuan_CHN_2012" : [ - "KJ419277" - ], - "Listeria_monocytogenes_SLCC7179" : [ - "NC_018593" - ], - "Shallot_yellow_stripe_virus__onion" : [ - "AM267479" - ], - "Maize_streak_virus__MSV_A_ZM_Kab2_Z25_2008" : [ - "HQ693462" - ], - "Hepatitis_B_virus__GD14_2008" : [ - "HQ603061" - ], - "Maize_streak_virus__MSV_A_ZA_Let1_O8_1989" : [ - "FJ882120" - ], - "Hepatitis_B_virus__G2_8" : [ - "GU815770" - ], - "Human_immunodeficiency_virus_1__94BR_RJ_97" : [ - "AY455779" - ], - "Alkaliphilus_metalliredigens_QYMF" : [ - "NC_009633" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_45_68" : [ - "JX869184" - ], - "Beet_yellows_virus_BYV_4" : [ - "AF190581" - ], - "Tobacco_rattle_virus__ORY" : [ - "AF034621" - ], - "Goose_parvovirus_LH" : [ - "KM272560" - ], - "Rat_theilovirus_1_RTV_1" : [ - "EU542581" - ], - "Squash_leaf_curl_virus__PA2_Q346" : [ - "KM595232" - ], - "Human_poliovirus_1_NIE1018320" : [ - "KJ170475" - ], - "Hepatitis_B_virus__PhHCC13" : [ - "AB241113" - ], - "Coconut_foliar_decay_alphasatellite" : [ - "NC_001465" - ], - "Hepatitis_B_virus__N08_C_3547B" : [ - "KJ173438" - ], - "Chickpea_chlorosis_virus_A__3455C" : [ - "NC_014740" - ], - "Gossypium_mustilinum_symptomless_alphasatellite__Mus_alphaB_3" : [ - "EU384657" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_HB155_China_2011" : [ - "JQ733564", - "JQ733563", - "JQ733565" - ], - "Infectious_flacherie_virus__India" : [ - "HM245295" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_M1" : [ - "KP998419" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_6__AHEaCV_6_NZ_3103C3_2012" : [ - "KM874305" - ], - "Tomato_severe_rugose_virus__BR_Vic06_10" : [ - "JX865620" - ], - "Hepatitis_C_virus_subtype_1a__03A" : [ - "EU781790" - ], - "Vernonia_yellow_vein_betasatellite__Madurai" : [ - "NC_013423" - ], - "Classical_swine_fever_virus_Heb52010" : [ - "JQ268754" - ], - "Rhinolophus_affinis_coronavirus__LYRa11" : [ - "KF569996" - ], - "Mycobacterium_massiliense_GO_06" : [ - "NC_018150" - ], - "Hepatitis_B_virus__cww1124" : [ - "KC774274" - ], - "Dengue_virus_2_DENV_2_PR_8DN_1994" : [ - "GQ398273" - ], - "Coxsackievirus_A13__CV_A13_67900" : [ - "JF260921" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2576_2005" : [ - "FJ850054" - ], - "Dengue_virus_2__DENV_2_VN_BID_V717_2006" : [ - "EU482654" - ], - "Potato_virus_Y_strain_C_C_PRI_509" : [ - "EU563512" - ], - "Maize_streak_virus__UNak_118" : [ - "EF547088" - ], - "Sodalis_glossinidius__morsitans" : [ - "NC_007714", - "NC_007712", - "NC_007715", - "NC_007713" - ], - "Hepatitis_B_virus__CAR063" : [ - "AM494697" - ], - "Caulobacter_phage_magneto" : [ - "NC_019407" - ], - "Circoviridae_8_LDMD_2013" : [ - "NC_025713" - ], - "Hepatitis_C_virus_subtype_2a__NDM59" : [ - "AF169005" - ], - "Duck_hepatitis_A_virus_1_GQY07" : [ - "FJ496342" - ], - "Tomato_leaf_curl_Taiwan_virus_Taiwan" : [ - "NC_003898" - ], - "Variola_virus_Botswana_1972__v72_143" : [ - "DQ441417" - ], - "Oligotropha_carboxidovorans_OM4" : [ - "NC_017539", - "NC_017536", - "NC_017538" - ], - "Hepatitis_B_virus__H71" : [ - "FJ349224" - ], - "East_African_cassava_mosaic_virus__EACMV__K9" : [ - "AJ717545" - ], - "Pepper_mottle_virus__205250" : [ - "EU586136" - ], - "Beet_necrotic_yellow_vein_virus_isolate_F13" : [ - "X04197" - ], - "Bacillus_cereus_03BB102" : [ - "NC_012473", - "NC_012472" - ], - "Duck_hepatitis_A_virus_1_HDHV1_HB" : [ - "FJ157180" - ], - "Porcine_circovirus_2__DK411case" : [ - "EF565345" - ], - "Watermelon_chlorotic_stunt_virus__IL3_75" : [ - "KM820265" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8376_2003" : [ - "KJ627664" - ], - "Turkey_stool_associated_circular_ssDNA_virus_TuSCV" : [ - "NC_023887" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2607_2006" : [ - "JN819406" - ], - "Dengue_virus_2_BR_DEN2_01_01" : [ - "JX073928" - ], - "West_Nile_virus__WNV_1_US_BID_V4892_2006" : [ - "HQ671729" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_87P_615_01_1987" : [ - "KP258730" - ], - "Hepatitis_C_virus_subtype_3a__RASILBS4" : [ - "JQ717255" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2285_2001" : [ - "FJ810409" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_24_DRC" : [ - "JX458834" - ], - "JC_polyomavirus__Luz_20" : [ - "AB113133" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_93E_065_01_1993" : [ - "KP258740" - ], - "Hepatitis_B_virus__Vac01_C_m602" : [ - "KJ173392" - ], - "Cucumber_mosaic_virus__CS" : [ - "AY429437", - "AY429435", - "AY429436" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US3" : [ - "KJ019099" - ], - "Agrotis_segetum_granulovirus_DA" : [ - "KR584663" - ], - "Tomato_leaf_curl_betasatellite__In_Var_Pum_08_3" : [ - "HM101175" - ], - "Mammalian_orthoreovirus_1_T1L_Lang" : [ - "EF494445" - ], - "Beet_necrotic_yellow_vein_virus__F75" : [ - "AF197547", - "AF197548" - ], - "Human_mastadenovirus_B_human_USA_Pitts_00102_1988_7_P7H7F7" : [ - "KF429748" - ], - "Bhendi_yellow_vein_India_virus__India_Bamanpura_OY150A_2006___OY150A" : [ - "GU112038" - ], - "Hepatitis_B_virus__clz2123" : [ - "KC774213" - ], - "Torque_teno_tamarin_virus__So_TTV2" : [ - "NC_014085" - ], - "Norwalk_like_virus_SW_NV_swine43_JP" : [ - "AB126320" - ], - "Hepatitis_B_virus_WZJ319" : [ - "AY220703" - ], - "Porcine_circovirus_2__HH20150129" : [ - "KP824714" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1592_37987_5" : [ - "KF955454" - ], - "Enterovirus_A71__GZ_08_03" : [ - "FJ360546" - ], - "Foot_and_mouth_disease_virus___type_O__EGY_10_2011" : [ - "KC440883" - ], - "Chikungunya_virus_SAH2123" : [ - "HM045795" - ], - "Coxsackievirus_B1__CVB1SD2011CHN" : [ - "JX976769" - ], - "Blastococcus_saxobsidens_DD2" : [ - "NC_016943" - ], - "Saffold_virus__Pak_2106" : [ - "AB747254" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V414_2004" : [ - "EU155314" - ], - "Human_immunodeficiency_virus_1__05ZASK247B1" : [ - "DQ369994" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3787" : [ - "KM233074" - ], - "Porcine_circovirus_2_Fh21" : [ - "AY322001" - ], - "Hepatitis_B_virus__1958_8" : [ - "KR013877" - ], - "Orangutan_hepadnavirus_Somad" : [ - "AF193863" - ], - "Hepatitis_B_virus__A3_HBVMS2" : [ - "HPBA3HMS2" - ], - "Human_immunodeficiency_virus_1__99BW3932_12" : [ - "AF443083" - ], - "Hepatitis_B_virus__I146" : [ - "FJ562284" - ], - "Haemophilus_influenzae_F3031" : [ - "NC_014920" - ], - "Dengue_virus_2__DENV_2_VE_BID_V1111_2007" : [ - "EU482608" - ], - "Hepatitis_B_virus__WY_NJ_50" : [ - "JX026883" - ], - "Blainvillea_yellow_spot_virus__BgV06B_1_C82" : [ - "JF694469" - ], - "Helicobacter_pylori_Aklavik86" : [ - "NC_019564", - "NC_019563", - "NC_019565" - ], - "Swinepox_virus__17077_99" : [ - "NC_003389" - ], - "Papaya_leaf_distortion_mosaic_virus" : [ - "NC_005028" - ], - "Chickpea_chlorosis_virus_C__CpCV_C_AU_3494Ib_2002" : [ - "JN989417" - ], - "Tobacco_ringspot_virus_satellite_RNA" : [ - "NC_003889" - ], - "Dengue_virus_2__DENV_2_CO_BID_V1597_2005" : [ - "FJ182012" - ], - "Hepatitis_B_virus__gib645" : [ - "AJ131571" - ], - "Chickpea_chlorotic_dwarf_virus_C_330Vehari" : [ - "KP881605" - ], - "Alenquer_virus" : [ - "HM119402", - "HM119403", - "HM119401" - ], - "Porcine_circovirus_2__DK1990PMWSfree" : [ - "EU148505" - ], - "Haemophilus_phage_HP2" : [ - "NC_003315" - ], - "Rice_ragged_stunt_virus__Thailand" : [ - "NC_003758", - "NC_003757" - ], - "Rabbit_hemorrhagic_disease_virus__CB194_Pt" : [ - "JX886001" - ], - "Hepatitis_B_virus__MMU36" : [ - "DQ111987" - ], - "Porcine_circovirus_2_BJ08" : [ - "FJ608543" - ], - "Hepatitis_B_virus__D_NC_164317_2001" : [ - "HQ700511" - ], - "Human_papillomavirus_type_6__22" : [ - "HG793830" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pun_beta_19" : [ - "EU384579" - ], - "Streptomyces_griseus_NBRC_13350" : [ - "NC_010572" - ], - "Saffold_virus__SAFV_3_NL2007_2690" : [ - "HM181998" - ], - "Roseobacter_denitrificans_OCh_114" : [ - "NC_008386", - "NC_008388", - "NC_008389", - "NC_008387", - "NC_008209" - ], - "Azospirillum_B510" : [ - "NC_013858", - "NC_013854", - "NC_013855", - "NC_013856", - "NC_013857", - "NC_013860", - "NC_013859" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ23AS3_2009" : [ - "JF909207" - ], - "Monkeypox_virus__Boende_DRC_2008" : [ - "KP849469" - ], - "Newcastle_disease_virus__WDK_JX_7793_2004" : [ - "HM125898" - ], - "Eragrostis_curvula_streak_virus__ECSV_ZA_Gre5_Ky6_2008" : [ - "FJ665634" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_KNU_12_KJ4" : [ - "KF555451" - ], - "Vulcanisaeta_moutnovskia_768_28" : [ - "NC_015151" - ], - "Hepatitis_B_virus__RVLA" : [ - "KF199901" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10FUJ_3" : [ - "JQ663548" - ], - "Hepatitis_B_virus__KOR39HCC" : [ - "GQ475343" - ], - "Okra_yellow_mosaic_Mexico_virus__Mezatepec_3" : [ - "NC_014067" - ], - "East_African_cassava_mosaic_virus__CF_CF44B_07" : [ - "KM885991" - ], - "Tobacco_etch_virus__TEV7DA" : [ - "DQ986288" - ], - "Porcine_circovirus_2_BJ0501" : [ - "EF524524" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B133_2008" : [ - "GU936293" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_94E_091_01_1994" : [ - "KP258717" - ], - "Human_immunodeficiency_virus_1__ES_X2210_3__B" : [ - "EU786679" - ], - "JC_polyomavirus_255A" : [ - "AY121910" - ], - "Hepatitis_E_virus_FR_SHEVB3f" : [ - "JN906976" - ], - "Lactobacillus_phage_Sha1" : [ - "NC_019489" - ], - "Tomato_yellow_leaf_curl_virus__SD2" : [ - "GU199587" - ], - "Hepatitis_B_virus__C76_4" : [ - "FJ899770" - ], - "Hepatitis_B_virus__SLC1A0" : [ - "KJ598762" - ], - "Norovirus_Hu_GII_4_CGMH08_2006_TW" : [ - "JN400606" - ], - "Apocheima_cinerarium_nucleopolyhedrovirus" : [ - "NC_018504" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dar_Beta_4" : [ - "EU384602" - ], - "Escherichia_coli_IAI39" : [ - "NC_011750" - ], - "Moloney_murine_sarcoma_virus" : [ - "MLMPROCG", - "NC_001502" - ], - "Porcine_circovirus_2__Matanzas_04" : [ - "FN687854" - ], - "Hepatitis_B_virus__PG_11" : [ - "KF471655" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0012" : [ - "KP759642" - ], - "JC_polyomavirus__328A" : [ - "AY378085" - ], - "Cronobacter_sakazakii_ES15" : [ - "NC_017933" - ], - "Hepatitis_B_virus__HBV_PH25" : [ - "AB116093" - ], - "Human_herpesvirus_5_BE_4_2010" : [ - "KP745728" - ], - "Eastern_equine_encephalitis_virus_EEEV_Anopheles_USA_N155_2005" : [ - "KJ469643" - ], - "Dengue_virus_1__21814_BR_PE_96" : [ - "JX669467" - ], - "Tick_borne_encephalitis_virus_Vasilchenko" : [ - "AF069066" - ], - "Hepatitis_B_virus__DEN6024" : [ - "KF779223" - ], - "Rhizobium_tropici_CIAT_899" : [ - "NC_020059", - "NC_020060", - "NC_020062", - "NC_020061" - ], - "Hepatitis_B_virus_951_2" : [ - "KR013824" - ], - "Barley_yellow_dwarf_virus_PAV__005PAV" : [ - "EF521829" - ], - "Human_immunodeficiency_virus_1__PokA79Ru" : [ - "FJ864679" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_FF2_After" : [ - "EF532807" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3986_2008" : [ - "GU131759" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0031" : [ - "KP759607" - ], - "Dengue_virus_2__DENV_2_UMASS_Medical_BID_V2619_2008" : [ - "GQ199899" - ], - "Hepatitis_B_virus__clz2035" : [ - "KC774197" - ], - "Human_poliovirus_1_Sabin_1_S302" : [ - "GQ984141" - ], - "Hepatitis_B_virus__BOL3" : [ - "AB365446" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP1B" : [ - "JN013988" - ], - "Human_papillomavirus_type_58__Qv00861" : [ - "HQ537755" - ], - "Hepatitis_B_virus__FEN34" : [ - "JF439997" - ], - "Hepatitis_B_virus__MY727093" : [ - "KJ803773" - ], - "Porcine_circovirus_2__IAF_4370" : [ - "AF118097" - ], - "Hepatitis_B_virus__4312v3" : [ - "KF922428" - ], - "Tomato_yellow_leaf_curl_virus__TYLCV_SXYL3" : [ - "KC138544" - ], - "West_Nile_virus__WNV_1_US_BID_V6571_2003" : [ - "KJ501366" - ], - "Desulfobulbus_propionicus_DSM_2032" : [ - "NC_014972" - ], - "JC_polyomavirus__AN_5" : [ - "AB092581" - ], - "Porcine_circovirus_2__MN614" : [ - "GQ404852" - ], - "Tomato_yellow_vein_streak_virus__Ba_3" : [ - "NC_010950", - "NC_010949" - ], - "Dolichos_yellow_mosaic_virus__Bangalore_1" : [ - "AM157412" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__LY1B11" : [ - "FM164727" - ], - "Human_metapneumovirus_HMPV_USA_C1_050_2004_A" : [ - "KC562243" - ], - "Hepatitis_B_virus_1263_15" : [ - "KR013844" - ], - "Human_papillomavirus_type_16__BF236" : [ - "HQ644239" - ], - "Enterobacteria_phage_M13__WT_variety_Rutgers" : [ - "JX412914" - ], - "Coxsackievirus_A6__5084_SH_CHN_2013" : [ - "KJ541154" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V104_2005" : [ - "EU155214" - ], - "Enterovirus_A71_605_SHENZHEN_08_China_HFMD_Severe_2008" : [ - "FJ607338" - ], - "Methanococcus_voltae_A3" : [ - "NC_014222" - ], - "Human_immunodeficiency_virus_1__PS4048_Day143" : [ - "DQ676887" - ], - "Cucumber_mosaic_virus_Trk7" : [ - "AJ007934", - "AJ007933" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__BJEU06_1" : [ - "GU047344" - ], - "South_African_cassava_mosaic_virus__MG_MG414A4_11" : [ - "KJ888013" - ], - "Corynebacterium_ulcerans_0102" : [ - "NC_018101" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_235_2011" : [ - "KJ686136" - ], - "Mycobacterium_phage_Severus" : [ - "NC_021307" - ], - "Porcine_parvovirus_5__IN273" : [ - "JX896319" - ], - "Tobacco_yellow_dwarf_virus_A__TYDV_A_AU_2561_2010" : [ - "JN989441" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2156_2001" : [ - "FJ639831" - ], - "Hepatitis_B_virus__SWT2_3" : [ - "EU916238" - ], - "Tomato_leaf_curl_New_Delhi_virus__India_Aurangabad_OY164A_2006___OY164A" : [ - "GU112089", - "GU112088" - ], - "Puumala_virus_Baltic_205Cg_00" : [ - "AJ314599" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7336_2002" : [ - "KF973320" - ], - "Human_bocavirus__HK20" : [ - "EF450736" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pun_beta_18" : [ - "EU384580" - ], - "Venezuelan_equine_encephalitis_virus_78V_3531" : [ - "AF075257" - ], - "Powassan_virus_wicf9901_DTVWi99" : [ - "HM440558" - ], - "Ageratum_yellow_vein_China_betasatellite__Y274" : [ - "HF569263" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_A2_6D_P" : [ - "JX570642" - ], - "Hepatitis_B_virus__SDAC_047" : [ - "KF170741" - ], - "Tobacco_mosaic_virus__Fenggang_1" : [ - "HE818422" - ], - "Bean_golden_mosaic_virus__BR_Par24_12" : [ - "KJ939811" - ], - "Magnaporthe_oryzae_virus_2" : [ - "NC_010246" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00111_2001_G1P_8" : [ - "JN635551", - "JN635552", - "JN635549", - "JN635554", - "JN635556", - "JN635555", - "JN635553", - "JN635557", - "JN635558", - "JN635550", - "JN635559" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2580_2001" : [ - "KF955487" - ], - "Hepatitis_B_virus__patient3" : [ - "AB300361" - ], - "Human_immunodeficiency_virus_1__CH40E_flC7" : [ - "FJ495821" - ], - "South_African_cassava_mosaic_virus__MG_MG21A1_07" : [ - "KJ887640" - ], - "Japanese_encephalitis_virus__HN0621" : [ - "JN381830" - ], - "Maize_streak_Reunion_virus__MSRV_RE_StP_PR52_2009" : [ - "NC_017917" - ], - "Hepatitis_B_virus__SHB2S4" : [ - "KJ598661" - ], - "Bartonella_quintana_RM_11" : [ - "NC_018533" - ], - "Rhizobium_leguminosarum_bv__trifolii_WSM2304" : [ - "NC_011369", - "NC_011366", - "NC_011368", - "NC_011370", - "NC_011371" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3495Da_2002" : [ - "JN989431" - ], - "Tick_borne_encephalitis_virus_Sorex_18_10" : [ - "KP938507" - ], - "Bat_coronavirus_Cp_Yunnan2011__Cp_Yunnan2011" : [ - "JX993988" - ], - "White_clover_mosaic_virus_RC" : [ - "AB056720" - ], - "West_Nile_virus_Eg101" : [ - "AF260968" - ], - "Treponema_succinifaciens_DSM_2489" : [ - "NC_015385", - "NC_015386" - ], - "Watermelon_chlorotic_stunt_virus__JO3_617" : [ - "KM820238" - ], - "Hepatitis_B_virus__PG_37" : [ - "KF471646" - ], - "Stenotrophomonas_maltophilia_D457" : [ - "NC_017671" - ], - "Human_poliovirus_1_NIE1118398" : [ - "KJ170453" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2158_2005" : [ - "FJ639732" - ], - "Human_papillomavirus_type_31__QV14043" : [ - "HQ537684" - ], - "Tomato_yellow_leaf_curl_virus__LNhud3" : [ - "KJ140789" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_CHE_2014_Makona_GE1" : [ - "KP728283" - ], - "Hepatitis_B_virus__SHB79" : [ - "KJ598745" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V1564_2007" : [ - "EU687195" - ], - "Cyprinid_herpesvirus_1_NG_J1" : [ - "NC_019491" - ], - "Hepatitis_B_virus_Ehi_OK_lam_8_2" : [ - "AB202072" - ], - "Parabacteroides_distasonis_ATCC_8503" : [ - "NC_009615" - ], - "Tomato_yellow_leaf_curl_virus__BJ1" : [ - "KJ125410" - ], - "Enterobacteria_phage_phiX174__3D90" : [ - "EF380022" - ], - "Hepatitis_B_virus__B62" : [ - "FJ904445" - ], - "Porcine_circovirus_2_09AH" : [ - "HQ395022" - ], - "Maize_streak_virus__MSV_A_GH_gh119_Kum_2010" : [ - "KJ699313" - ], - "Hepatitis_B_virus__T1545" : [ - "GQ205387" - ], - "Hepatitis_B_virus__V64" : [ - "HM363606" - ], - "Bovine_parainfluenza_virus_3_Shipping_Fever" : [ - "AF178655" - ], - "Coxsackievirus_B5__1954_85_UK" : [ - "X67706" - ], - "Mycobacterium_phage_Bruin" : [ - "NC_022988" - ], - "Xanthomonas_campestris_ATCC_33913" : [ - "NC_003902" - ], - "Hepatitis_B_virus__Q7_1" : [ - "AY217365" - ], - "JC_polyomavirus__OH_1" : [ - "AB212954" - ], - "Southern_tomato_virus__Mexico_1" : [ - "NC_011591" - ], - "Bluetongue_virus_9_TUR2000_03_Turkey_2000" : [ - "AM778445" - ], - "Trichodesmium_erythraeum_IMS101" : [ - "NC_008312" - ], - "Hepatitis_B_virus__MLT1039" : [ - "KF779304" - ], - "Hepatitis_B_virus__318_97_2" : [ - "EU871983" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ26BP1_2009" : [ - "JF909075" - ], - "Escherichia_coli_PMV_1" : [ - "NC_022371", - "NC_022370" - ], - "Hepatitis_C_virus__H77" : [ - "NC_004102" - ], - "Variola_virus_South_Africa_1965__102_Natal__Ingwavuma" : [ - "DQ441435" - ], - "West_Nile_virus__NY2001_6263" : [ - "KJ786934" - ], - "Human_immunodeficiency_virus_1__06KECst_011" : [ - "FJ623494" - ], - "Bettongia_penicillata_papillomavirus_1" : [ - "NC_014143" - ], - "Porcine_circovirus_2__DK471case" : [ - "EF565359" - ], - "Human_adenovirus_14_de_Wit__ATCC_VR_1091" : [ - "AY803294" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_11NZ_GD" : [ - "JX217036" - ], - "Rotavirus_A_RVA_Human_wt_FRA_E9779_2013_G1P_8__RVA_Human_wt_FRA_E9779_2013_G1P_8" : [ - "HG917364", - "HG917367" - ], - "Cucumber_mosaic_virus_satellite_RNA_TO77" : [ - "X86422" - ], - "Human_poliovirus_2_NIE1018446" : [ - "KJ170554" - ], - "Pepper_mild_mottle_virus__HP1" : [ - "KJ631123" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US85" : [ - "KJ019127" - ], - "Hepatitis_B_virus__HCUCH8" : [ - "HM585189" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2720_2006" : [ - "FJ882543" - ], - "Hepatitis_B_virus__IND_DIB24" : [ - "EU835241" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_77U204_1977_IE" : [ - "KC344527" - ], - "Chicory_yellow_mottle_virus_large_satellite_RNA__C" : [ - "NC_003778" - ], - "Plum_pox_virus__Penn12" : [ - "EF640939" - ], - "Hepatitis_B_virus__KOR31LC" : [ - "GQ475335" - ], - "Hepatitis_B_virus__HB_JAIW05" : [ - "AB266536" - ], - "Rabies_virus__1564NNO" : [ - "JQ944708" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3066_2008" : [ - "GQ199863" - ], - "Chickpea_chlorosis_Australia_virus__CpCV_D_AU_2008_2007" : [ - "JN989418" - ], - "Bluetongue_virus_20__South_Africa_ref" : [ - "AJ585141" - ], - "Soybean_chlorotic_blotch_virus__Cs1" : [ - "GQ472988", - "GQ472987" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_10__AHEaCV_10_NZ_3241C2_2012" : [ - "KM874319" - ], - "Tomato_leaf_curl_Sulawesi_virus__FI014No5" : [ - "FJ237620" - ], - "Hepatitis_B_virus__patient7" : [ - "AB300365" - ], - "African_cassava_mosaic_virus__MG_MG98A3_07" : [ - "KJ887906" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM113" : [ - "KM233040" - ], - "Puumala_virus_DTK_Ufa_97" : [ - "AB297665", - "AB297667", - "AB297666" - ], - "Tomato_leaf_curl_New_Delhi_virus" : [ - "FN432357", - "EF450316", - "AM849548", - "EF620535", - "AM849547", - "AM258977", - "AM778833", - "EF068246", - "FN645905", - "AY939926", - "EF620534", - "DQ169057", - "AM947507", - "HM803117", - "AY939924", - "DQ169056", - "AM947506" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10FUJ_5" : [ - "JQ663550" - ], - "Rabies_virus__RV437" : [ - "KF154997" - ], - "Mesta_yellow_vein_mosaic_virus" : [ - "HE578897", - "FN645922", - "FN645918" - ], - "African_cassava_mosaic_virus__ACMV__NG_So_03" : [ - "EU685322" - ], - "Hepatitis_B_virus__clz2098" : [ - "KC774210" - ], - "Nitrosococcus_watsonii_C_113" : [ - "NC_014317", - "NC_014315", - "NC_014316" - ], - "Watermelon_chlorotic_stunt_virus__JO1_122" : [ - "KM820185" - ], - "SARS_coronavirus_GZ50__GZ50" : [ - "AY304495" - ], - "Hepatitis_B_virus__MY853571" : [ - "KJ803787" - ], - "Human_rhinovirus_B3" : [ - "DQ473485", - "EF173422" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6795_2009" : [ - "KJ627272" - ], - "Tobacco_curly_shoot_alphasatellite__Y130" : [ - "AJ579348" - ], - "Hepatitis_B_virus__WHUB1" : [ - "JN406371" - ], - "Okra_enation_leaf_curl_betasatellite__India_Gandhinagar_2012" : [ - "KC019310" - ], - "Porcine_circovirus_2__QH" : [ - "HM142895" - ], - "Human_rotavirus_A_S2" : [ - "X81428" - ], - "Propionibacterium_phage_PHL150M00__PHL150M00" : [ - "NC_027294" - ], - "Mycobacterium_smegmatis_MC2_155" : [ - "NC_008596" - ], - "Tobacco_mosaic_virus__Xunyang" : [ - "HE818452" - ], - "Parrot_hepatitis_B_virus__P1220" : [ - "JX274030" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD03_2013" : [ - "KM229804" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V240_2005" : [ - "EU155348" - ], - "Hepatitis_B_virus__J160" : [ - "GQ377599" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1913_2008" : [ - "FJ410247" - ], - "Hepatitis_B_virus_1263_5" : [ - "KR013848" - ], - "Human_immunodeficiency_virus_1__BREPM107" : [ - "AY771588" - ], - "Porcine_circovirus_2__LZ_1" : [ - "KC733435" - ], - "Tomato_leaf_curl_Philippines_virus__P118" : [ - "EU487040" - ], - "African_cassava_mosaic_virus__MG_MG215A2_09" : [ - "KJ887956" - ], - "Human_immunodeficiency_virus_1__00BW3876_9" : [ - "AF443111" - ], - "Hepatitis_B_virus__A71a" : [ - "FJ904420" - ], - "Listeria_monocytogenes_07PF0776" : [ - "NC_017728" - ], - "Cyclovirus_VN__ps1" : [ - "KF031470" - ], - "Human_papillomavirus_type_128" : [ - "NC_014952" - ], - "Human_adenovirus_7_K22_JM_CHN_2013" : [ - "KJ019883" - ], - "Hepatitis_B_virus__S445_3" : [ - "FJ032334" - ], - "Hepatitis_B_virus__HK_1204" : [ - "KJ410493" - ], - "Human_immunodeficiency_virus_1__CHU3903" : [ - "KP718932" - ], - "Hepatitis_B_virus__HBV49" : [ - "KC875264" - ], - "Hepatitis_B_virus__A29" : [ - "FJ904403" - ], - "Hepatitis_B_virus__SZ5" : [ - "JF436919" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_CFI1036_2010" : [ - "KJ672613" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9488_2010" : [ - "KJ627296" - ], - "Foot_and_mouth_disease_virus___type_SAT_2__EGY_9_2012" : [ - "JX014255" - ], - "Enterobacteria_phage_phiX174__PhiX_ancestral" : [ - "GQ153915" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_85_2013" : [ - "KJ672471" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir6_T3P_Cuc_07" : [ - "FJ660427" - ], - "Methanococcus_maripaludis_X1" : [ - "NC_015847" - ], - "Hepatitis_B_virus_28119" : [ - "EU414134" - ], - "Coxsackievirus_A24_INDNIV1036731LV476" : [ - "KF667359" - ], - "Enterovirus_B85_HTYT_ARL_AFP02F_XJ_CHN_2011" : [ - "JX898909" - ], - "Enterobacteria_phage_ID21" : [ - "DQ079870" - ], - "Chikungunya_virus_10Mdy105" : [ - "KF590567" - ], - "Broad_bean_wilt_virus_2__RP2" : [ - "JX183224", - "JX183223" - ], - "Salivirus_CH__CH" : [ - "JN379039" - ], - "Honeysuckle_yellow_vein_mosaic_virus__OT1" : [ - "AB178947" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_pool_MEX_MX10_91M8_2010_IE" : [ - "KC344494" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1NA8" : [ - "FJ744147" - ], - "Dengue_virus_2__DENV_2_NI_BID_V4156_2007" : [ - "HM631865" - ], - "JC_polyomavirus__LA_2" : [ - "AB081611" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V292_2002" : [ - "EU256080" - ], - "Human_papillomavirus_type_52__Qv17844" : [ - "HQ537738" - ], - "Dengue_virus_2__ACS538" : [ - "JX286518" - ], - "Propionibacterium_phage_PHL194M00__PHL194M00" : [ - "NC_027392" - ], - "Porcine_circovirus_2_HLJ1_GD" : [ - "EF592576" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V304_2004" : [ - "EU862837" - ], - "Dengue_virus_2__DENV_2_GU_FDA_GUA09_2009" : [ - "HQ999999" - ], - "Porcine_circovirus_2__YZH" : [ - "AY943819" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL121A" : [ - "AB985555", - "AB985323" - ], - "Liberibacter_phage_SC2" : [ - "NC_019550" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI34_12" : [ - "HE979768" - ], - "Swine_hepatitis_E_virus_Arkell" : [ - "AY115488" - ], - "Nerine_virus_X__J" : [ - "NC_007679" - ], - "Streptococcus_suis_SS12" : [ - "NC_017619" - ], - "Human_papillomavirus_type_131__27_49" : [ - "NC_014954" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK4" : [ - "KF287134" - ], - "Methanothermobacter_phage_psiM100" : [ - "NC_002628" - ], - "Penaeid_shrimp_infectious_myonecrosis_virus" : [ - "EF061744", - "NC_007915" - ], - "Heliothis_assulta_cypovirus_14" : [ - "DQ077914" - ], - "Bacteroides_xylanisolvens_XB1A" : [ - "NC_021017" - ], - "Small_begomovirus_associated_satellite__wf_S41" : [ - "KJ859198" - ], - "Hepatitis_B_virus__DEN6227" : [ - "KF779250" - ], - "Thermococcus_sibiricus_MM_739" : [ - "NC_012883" - ], - "Duck_circovirus__LZ01_2011" : [ - "KC460528" - ], - "Francisella_tularensis_holarctica_LVS" : [ - "NC_007880" - ], - "Hepatitis_B_virus__111002943" : [ - "JN792904" - ], - "Rabies_virus__CNM1104D" : [ - "KC252634" - ], - "Beak_and_feather_disease_virus__BFDV12" : [ - "GU015020" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3852_2008" : [ - "GU131688" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota64_2013" : [ - "KJ645660" - ], - "Hepatitis_B_virus__TK55" : [ - "JF754586" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota90_2013" : [ - "KJ645682" - ], - "Soybean_mosaic_virus_G5" : [ - "AY294044" - ], - "Hepatitis_B_virus__CHN_QH3" : [ - "DQ478882" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_PF_09" : [ - "HQ393461" - ], - "Hepatitis_B_virus__G223" : [ - "JQ040166" - ], - "Newcastle_disease_virus__ndv54_Hyderabad" : [ - "KM056352" - ], - "Bean_common_mosaic_virus__DXH025" : [ - "KJ807812" - ], - "Goose_circovirus_yk3" : [ - "DQ192280" - ], - "Pelobacter_carbinolicus_DSM_2380" : [ - "NC_007498" - ], - "Newcastle_disease_virus_northern_pintail_US_OH__87_486_1987" : [ - "GQ288378" - ], - "Japanese_encephalitis_virus__Tengah" : [ - "KM677246" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3990_2008" : [ - "GU131762" - ], - "Human_enterovirus_C99_USA_GA84_10636" : [ - "EF555644" - ], - "Human_immunodeficiency_virus_1__ML013_2_1997" : [ - "AY322185" - ], - "Hepatitis_B_virus__G213" : [ - "JQ040161" - ], - "Tobacco_rattle_virus__BM" : [ - "AY166663" - ], - "Porcine_circovirus_2__DK405case" : [ - "EF565342" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pakistan_Multan_Co1222_08" : [ - "FJ861368" - ], - "Bovine_viral_diarrhea_virus_1_NADL" : [ - "NC_001461" - ], - "Foot_and_mouth_disease_virus___type_SAT_2" : [ - "AF540910" - ], - "Duck_astrovirus_1_DA07" : [ - "FJ919226" - ], - "Eastern_equine_encephalitis_virus_ssp__North_American_variant" : [ - "NC_003899" - ], - "Squash_leaf_curl_virus__PA3_T6" : [ - "KM595238" - ], - "Hepatitis_B_virus__Srb_205" : [ - "JQ687531" - ], - "Hepatitis_B_virus__FOR5" : [ - "DQ823087" - ], - "Classical_swine_fever_virus_C_HVRI" : [ - "AY805221" - ], - "Chicken_anemia_virus__8" : [ - "KJ728819" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Aedes_fulvus_COL_334250_1977_ID" : [ - "KC344487" - ], - "Hepatitis_B_virus__S606" : [ - "FJ386672" - ], - "Pig_stool_associated_circular_ssDNA_virus__HUB1" : [ - "JX305992" - ], - "Porcine_circovirus_2__Xt2008" : [ - "KM624032" - ], - "Sulfolobus_islandicus_filamentous_virus" : [ - "NC_003214" - ], - "Porcine_circovirus_2__ZZf110" : [ - "KJ680356" - ], - "Hepatitis_delta_virus_dTk10_dTk10" : [ - "AM779583" - ], - "Porcine_circovirus_2_HuB08" : [ - "FJ608542" - ], - "Tomato_rugose_yellow_leaf_curl_virus__U3" : [ - "JN381822" - ], - "Hepatitis_B_virus__C_Tonga_To391_2006" : [ - "HQ700571" - ], - "Human_papillomavirus_type_16__Qv02706" : [ - "HQ644261" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__XW001" : [ - "KF632717" - ], - "Mycobacterium_phage_Tweety" : [ - "NC_009820" - ], - "Chickpea_chlorotic_dwarf_virus__Eg002" : [ - "KF692356" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_71_1" : [ - "KP998412" - ], - "Cotton_leaf_curl_Multan_virus__Hi_3" : [ - "KM096469" - ], - "Ralstonia_eutropha_JMP134" : [ - "NC_007337", - "NC_007347", - "NC_007336", - "NC_007348" - ], - "Human_immunodeficiency_virus_1__98BWMC12_2" : [ - "AF443076" - ], - "Hepatitis_E_virus" : [ - "AB290313", - "DQ459342", - "AY575859", - "HPECG", - "AB290312", - "AF076239", - "AB740221", - "HPEGENA", - "AY575857", - "AY575858", - "AF459438", - "AB740220", - "AB740222" - ], - "Human_immunodeficiency_virus_1_ES_X2425_2" : [ - "FJ670525" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_11__AHEaCV_11_NZ_3371C3_2012" : [ - "KM874325" - ], - "Streptococcus_pneumoniae_70585" : [ - "NC_012468" - ], - "Human_rhinovirus_B52" : [ - "EF173424" - ], - "Classical_swine_fever_virus_HEBZ" : [ - "GU592790" - ], - "Chlamydia_trachomatis_J_6276tet1" : [ - "NC_021892" - ], - "Rhesus_adenovirus_51__stool" : [ - "NC_025826" - ], - "Hepatitis_B_virus__bxa2004" : [ - "KC774404" - ], - "Lumbo_virus" : [ - "X73468" - ], - "Hepatitis_B_virus__CH7" : [ - "DQ823091" - ], - "Hepatitis_C_virus__KM35" : [ - "JX183549" - ], - "Foot_and_mouth_disease_virus___type_A_A13_Brazil_a13brazil_iso75" : [ - "AY593753" - ], - "Enterovirus_A71__SB12736_SAR_03" : [ - "DQ341362" - ], - "Equid_herpesvirus_1_00c19" : [ - "KF644576" - ], - "Alkhumra_hemorrhagic_fever_virus_200905916" : [ - "JF416964" - ], - "Norovirus_Hu_GII_4_Shimane3_2007_JP_Hu_GII_4_Shimane3_2007_JP" : [ - "AB541349" - ], - "Enterovirus_A71_MP10_2" : [ - "JF894383" - ], - "West_Nile_virus__WNV_1_US_BID_V5206_2006" : [ - "JF920736" - ], - "Tomato_mosaic_Havana_virus__Quivican" : [ - "NC_003868", - "NC_003867" - ], - "Simian_immunodeficiency_virus__syk173_1_2" : [ - "SIVCOMGNM" - ], - "Potato_virus_M__DSMZ_PV0273" : [ - "EU604672" - ], - "Hepatitis_B_virus__S1092_4" : [ - "FJ787456" - ], - "Dengue_virus_1_D87_116" : [ - "JN638341" - ], - "Human_papillomavirus_type_18__Qv12693" : [ - "KC470227" - ], - "Hepatitis_B_virus__I1_M04_0469" : [ - "FJ023659" - ], - "Mulberry_vein_banding_virus__NN_5" : [ - "KM819705" - ], - "Enterovirus_A71_Shanghai_28_2009" : [ - "HQ891924" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V235_2005" : [ - "EU255949" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y240" : [ - "AJ888451" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2792_2007" : [ - "GQ199812" - ], - "Hepatitis_B_virus__Ag30" : [ - "KJ843191" - ], - "Duck_hepatitis_A_virus_1__HB02" : [ - "JQ031262" - ], - "Porcine_circovirus_2__Imp_1121" : [ - "AJ293868" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4041_2008" : [ - "GU131798" - ], - "Candiru_virus" : [ - "NC_015375", - "NC_015373", - "NC_015374" - ], - "Hepatitis_B_virus_Ehime9__Iyo_529380" : [ - "AB109477" - ], - "Rotavirus_A__RVA_Human_wt_DEN_L23141839_2012_G9P_8" : [ - "KP013468" - ], - "Croton_yellow_vein_mosaic_virus__Pataudi" : [ - "FJ593629" - ], - "Enterobacteria_phage_K1E" : [ - "NC_007637" - ], - "Human_parainfluenza_virus_1_HPIV1_FRA_29221106_2009" : [ - "KF687313" - ], - "Hepatitis_B_virus__M33" : [ - "GQ924616" - ], - "Norovirus_Hu_GII_4_NIHIC2_2_2010_USA_Hu_GII_4_NIHIC2_2_2010_USA" : [ - "KF712510" - ], - "Turnip_mosaic_virus__AUST26" : [ - "AB989640" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5441_2009" : [ - "JF920402" - ], - "Hepatitis_B_virus__FEN94" : [ - "JF440015" - ], - "Human_coronavirus_OC43_OC43_human_USA_971_5_1997" : [ - "KF530099" - ], - "Canine_parvovirus_Laika_1993" : [ - "JN033694" - ], - "Human_herpesvirus_5_BE_41_2011" : [ - "KP745706" - ], - "Hepatitis_B_virus__KOR14CHB" : [ - "GQ475318" - ], - "Porcine_circovirus_2__QZ0927" : [ - "GU325769" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_COL_CoAn59145_1905_ID" : [ - "KC344524" - ], - "Bluetongue_virus_16_ISR2001_18__Israel_2001" : [ - "AM773695" - ], - "Hepatitis_delta_virus__D66" : [ - "KJ744255" - ], - "Tomato_leaf_curl_Malaysia_virus" : [ - "NC_004648" - ], - "Maize_streak_virus__MSV_K_Zw_Mic23_1987" : [ - "EU628644" - ], - "Hepatitis_B_virus__Z31_5" : [ - "GQ227695" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2829_2003" : [ - "FJ882565" - ], - "Porcine_circovirus_2_SD_6" : [ - "EU366326" - ], - "Beet_necrotic_yellow_vein_virus_isolate_F2_for_clone_pBF5___isolate_F13_other_cl" : [ - "X05147" - ], - "Human_immunodeficiency_virus_1__04KBH8" : [ - "DQ054367" - ], - "Hepatitis_B_virus__C122_3" : [ - "FJ899794" - ], - "West_Nile_virus__WNV_1_US_BID_V6188_2001" : [ - "KJ501244" - ], - "Hepatitis_B_virus__Leb43" : [ - "JN642150" - ], - "Porcine_circovirus_2__BLFC12" : [ - "KJ680368" - ], - "Mesta_yellow_vein_mosaic_virus__Barackpore" : [ - "NC_009088" - ], - "Hepatitis_B_virus__A1_48044" : [ - "FJ692562" - ], - "Salmonella_enterica_serovar_Typhimurium_ST4_74" : [ - "NC_017675", - "NC_016858", - "NC_016857", - "NC_016859" - ], - "Hepatitis_B_virus__A1_50015" : [ - "FJ692574" - ], - "Hepatitis_B_virus__dlz2122" : [ - "KC774431" - ], - "Human_immunodeficiency_virus_1__CANB3FULL" : [ - "AY779553" - ], - "Porcine_circovirus_2_B9" : [ - "AF086834" - ], - "Hepatitis_B_virus__M85_80" : [ - "EU330995" - ], - "Porcine_circovirus_2_ZJG1103" : [ - "KC823059" - ], - "BK_polyomavirus_SWC_1" : [ - "AB269863" - ], - "Hepatitis_C_virus_SB" : [ - "KM349851" - ], - "Human_bocavirus__2012GZ2332" : [ - "KJ684073" - ], - "Small_begomovirus_associated_satellite__wf_S1" : [ - "KJ859171" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0101" : [ - "KP759656" - ], - "Streptococcus_dysgalactiae_equisimilis_AC_2713" : [ - "NC_019042" - ], - "Hepatitis_B_virus__RS1" : [ - "HQ236014" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00061_2007_G1P_8" : [ - "KC769354" - ], - "Alkhumra_hemorrhagic_fever_virus_1336" : [ - "JX271892" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7060_2007" : [ - "KJ189276" - ], - "Mycobacterium_phage_Vista_Vista" : [ - "NC_023727" - ], - "JC_polyomavirus__PB_5" : [ - "AB077878" - ], - "Blainvillea_yellow_spot_virus__BR_Vic09_10" : [ - "KC706519" - ], - "Hepatitis_B_virus__25Y07HCC" : [ - "AB014384" - ], - "Human_bocavirus_CQ201101_2" : [ - "JN387083" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_70U55_1970_IE" : [ - "KC344436" - ], - "Hepatitis_B_virus__KOR1CHB" : [ - "GQ475305" - ], - "Human_immunodeficiency_virus_1__CB378" : [ - "AY900574" - ], - "Wheat_dwarf_virus__HBSJZ10_20" : [ - "JQ647473" - ], - "Hepatitis_C_virus_subtype_1a" : [ - "HPCPLYPRE", - "HPCCGAA", - "AF271632" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5442_2009" : [ - "JF920393" - ], - "Bacillus_phage_Hoody_T" : [ - "NC_024205" - ], - "Hepatitis_B_virus__6_024A_8" : [ - "EU871975" - ], - "Maize_streak_virus__MSV_A_MZ_Inh1_Moz9_2007" : [ - "HQ693345" - ], - "Tomato_leaf_deformation_virus__CL_LD_E11_To_2012" : [ - "KC620462" - ], - "Rabbit_hemorrhagic_disease_virus_BS89__BS89" : [ - "X87607" - ], - "Hepatitis_C_virus_subtype_1b_Pt1_98_Q1" : [ - "AB828700" - ], - "Yug_Bogdanovac_virus" : [ - "NC_025378" - ], - "Chikungunya_virus__CHIKV_STMWG01" : [ - "KJ679577" - ], - "Hepatitis_B_virus__PO04v1" : [ - "KF922438" - ], - "Rabies_virus__3645DR" : [ - "JQ685953" - ], - "Drosophila_immigrans_Nora_virus" : [ - "NC_024488" - ], - "Hepatitis_B_virus__bur1055" : [ - "KC774375" - ], - "Duck_circovirus__DB7_17" : [ - "KP229364" - ], - "Human_immunodeficiency_virus_1__03ZASK040B1" : [ - "AY703908" - ], - "Tomato_yellow_leaf_curl_virus__ZJ_HZ" : [ - "KC312671" - ], - "Human_rhinovirus_A53" : [ - "DQ473507" - ], - "SARS_coronavirus_GDH_BJH01_GDH_BJH01" : [ - "DQ640652" - ], - "Human_papillomavirus_type_150__SIBX1" : [ - "FN677755" - ], - "Porcine_circovirus_2__GRE_4" : [ - "DQ915588" - ], - "Human_rhinovirus_A81__F06" : [ - "FJ445158" - ], - "Pseudomonas_resinovorans_NBRC_106553" : [ - "NC_021506", - "NC_021499" - ], - "Bamboo_mosaic_virus__BaMV_Pu" : [ - "AB636266" - ], - "Human_papillomavirus_type_16_ZG03_145" : [ - "JQ067943" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NVDC_NM3" : [ - "KC492505" - ], - "Japanese_encephalitis_virus__YN0911" : [ - "JF706267" - ], - "Hepatitis_B_virus__Nongchai" : [ - "HQ603065" - ], - "Chlamydia_trachomatis_D_EC" : [ - "NC_017434", - "NC_017435" - ], - "Human_herpesvirus_6B_HST" : [ - "AB021506" - ], - "Chaetoceros_tenuissimus_RNA_virus_type_II__SS10_45V" : [ - "AB971663" - ], - "Dengue_virus_1__DENV_1_VN_BID_V781_2006" : [ - "EU482707" - ], - "Porcine_stool_associated_circular_virus_3__3L7" : [ - "NC_021204" - ], - "Sewage_associated_circular_DNA_molecule_1__NZ_BS4111_2012" : [ - "NC_026170" - ], - "Persimmon_virus_B__variant_2" : [ - "AB923925" - ], - "Streptococcus_salivarius_JIM8777" : [ - "NC_017595" - ], - "Turnip_mosaic_virus__DEU2" : [ - "AB701700" - ], - "Hepatitis_C_virus_subtype_3a__RASILBS3" : [ - "JQ717254" - ], - "Dengue_virus_2__DC643Y12" : [ - "KM279541" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_KP" : [ - "GU232735" - ], - "Enterobacteria_phage_SfI" : [ - "NC_027339" - ], - "Dengue_virus_1_D1_SG_05K2402DK1_2005" : [ - "EU081230" - ], - "Snow_goose_hepatitis_B_virus__SGHBV1_13" : [ - "NC_005950" - ], - "Human_herpesvirus_4_HN18" : [ - "AB850660" - ], - "Nocardia_farcinica_IFM_10152" : [ - "NC_006361", - "NC_006362", - "NC_006363" - ], - "Hepatitis_B_virus__S425_20" : [ - "FJ787446" - ], - "Rickettsia_typhi_TH1527" : [ - "NC_017066" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_316_2013" : [ - "KP308458" - ], - "Hepatitis_B_virus__A1_50008" : [ - "FJ692569" - ], - "Puumala_virus_PUUV_Pieksamaki_Mg4_2008" : [ - "JN831946" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__S1" : [ - "DQ459471" - ], - "Rabies_virus__178J09" : [ - "JX473838" - ], - "BK_polyomavirus_NWC_7" : [ - "AB269857" - ], - "Papio_ursinus_cytomegalovirus__OCOM4_52" : [ - "NC_027016" - ], - "Human_mastadenovirus_D_human_USA_MEEI_00078_X_56_P56H56F56" : [ - "KF268209" - ], - "Cymbidium_mosaic_virus__SMi2" : [ - "AM055640" - ], - "Pleurocapsa_PCC_7327" : [ - "NC_019689" - ], - "Cronobacter_phage_ENT39118_ENT39118" : [ - "NC_019934" - ], - "Human_poliovirus_1_NIE1218350" : [ - "KJ170466" - ], - "Duck_circovirus__DB41_18" : [ - "KP229368" - ], - "Turnip_mosaic_virus__POL4" : [ - "AB701732" - ], - "Maize_streak_virus__MSV_B1_Za_ThoA_2005" : [ - "EU628607" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1005_2006" : [ - "EU482450" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2915_2006" : [ - "FJ898428" - ], - "Goose_hemorrhagic_polyomavirus__Toulouse_Muscovy_Duck_2008" : [ - "HQ681904" - ], - "Tobacco_curly_shoot_alphasatellite__Y290" : [ - "AJ888453" - ], - "Enterovirus_A71__02_0_083" : [ - "KP691655" - ], - "Hepatitis_B_virus__TK83" : [ - "JF754602" - ], - "Avian_metapneumovirus__15a" : [ - "NC_007652" - ], - "Choristoneura_murinana_alphabaculovirus_Darmstadt" : [ - "NC_023177" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V393_2006" : [ - "EU256047" - ], - "Hepatitis_B_virus__SK_02" : [ - "KP017270" - ], - "Bluetongue_virus__BT3_2165" : [ - "AY426601" - ], - "Marburg_marburgvirus__MARV_R_aegyptiacus_tc_UGA_2009_843_Qbat" : [ - "JX458855" - ], - "Candidatus_Nitrosopumilus_AR2" : [ - "NC_018656" - ], - "Human_papillomavirus_type_16__HPV16_AH2" : [ - "KF954093" - ], - "Campylobacter_03_427" : [ - "NC_022759" - ], - "Hepatitis_B_virus__HCUCH12" : [ - "HM585193" - ], - "Hepatitis_B_virus__IND_2008_8" : [ - "KF214661" - ], - "SARS_coronavirus_TWC2" : [ - "AY362698" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c3P20_2009_c3P20" : [ - "KF514423" - ], - "Soybean_mosaic_virus__WS209" : [ - "FJ640976" - ], - "East_African_cassava_mosaic_virus____Kenya___K2B__Kenyan_strain_K2B" : [ - "AJ006458" - ], - "Human_papillomavirus_type_11_CU16" : [ - "JQ773408" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD194_2013" : [ - "KM229848" - ], - "West_Nile_virus__M19433" : [ - "JF415919" - ], - "Norovirus_Hu_GII_4_Chiba4_2007_JP_Hu_GII_4_Chiba4_2007_JP" : [ - "AB541232" - ], - "Hepatitis_B_virus_F0691" : [ - "DQ922651" - ], - "Hepatitis_B_virus__SFN0138" : [ - "KF779386" - ], - "Porcine_astrovirus_2_43_USA" : [ - "NC_023674" - ], - "Duck_hepatitis_B_virus_GD3" : [ - "AY536371" - ], - "Coxsackievirus_A16__SD09_05" : [ - "KF193621" - ], - "Cucumber_mosaic_virus__Phy" : [ - "DQ402477", - "DQ412732", - "DQ412731" - ], - "Squash_leaf_curl_virus__JO2_217" : [ - "KM595192" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2323_2001" : [ - "FJ744734" - ], - "Hyposoter_fugitivus_ichnovirus" : [ - "NC_008990", - "NC_008979", - "NC_008964", - "NC_008991", - "NC_008984", - "NC_009001", - "NC_008985", - "NC_008982", - "NC_008953", - "NC_008960", - "NC_008965", - "NC_008967", - "NC_008988", - "NC_008948", - "NC_008981", - "NC_008978", - "NC_008976", - "NC_008954", - "NC_008955", - "NC_008961", - "NC_008995", - "NC_008949", - "NC_008962", - "NC_008946", - "NC_008973", - "NC_008986", - "NC_008950", - "NC_008992", - "NC_008959", - "NC_008970", - "NC_008971", - "NC_008983", - "NC_009002", - "NC_008966", - "NC_008987", - "NC_008989", - "NC_008993", - "NC_008963", - "NC_008980", - "NC_008998", - "NC_008951", - "NC_008969", - "NC_008997", - "NC_008957", - "NC_008996", - "NC_008999", - "NC_009000", - "NC_008977", - "NC_008956", - "NC_008952", - "NC_008947", - "NC_008994", - "NC_008972", - "NC_008968", - "NC_008958", - "NC_009003" - ], - "Torque_teno_sus_virus_1b__TTV2Fj2" : [ - "HM633220" - ], - "West_Nile_virus__WNV_1_US_BID_V6403_2003" : [ - "KJ501280" - ], - "BK_polyomavirus__RYU_3" : [ - "AB211389" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Forecariah_1568" : [ - "KR534565" - ], - "Human_papillomavirus_type_58__LZcc86_58" : [ - "EU918765" - ], - "South_African_cassava_mosaic_virus__MG_MG402A4_11" : [ - "KJ888005" - ], - "Dengue_virus_2__Dak_Ar_D75505" : [ - "EF457904" - ], - "Cyanophage_P_RSM1_P_RSM1" : [ - "NC_021071" - ], - "Newcastle_disease_virus__AQI_ND026" : [ - "DQ060053" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_205_2011" : [ - "KJ686198" - ], - "Bovine_viral_diarrhea_virus_2__NRW_19_13_8_Dup" : [ - "HG426489", - "HG426490" - ], - "Cucumber_mosaic_virus__Aligarh" : [ - "EU642567" - ], - "Spirochaeta_smaragdinae_DSM_11293" : [ - "NC_014364" - ], - "Foot_and_mouth_disease_virus___type_O_O1_Campos_o1campos94_iso94" : [ - "AY593819" - ], - "Rabbit_hemorrhagic_disease_virus__CD_China" : [ - "AY523410" - ], - "Batai_virus_UgMP_6830" : [ - "JX846601", - "JX846603" - ], - "West_Nile_virus__WNV_1_US_BID_V5220_2008" : [ - "JF920749" - ], - "Peanut_stunt_virus_ER" : [ - "NC_002040", - "NC_002039", - "NC_002038" - ], - "BK_polyomavirus__MT_clone_104" : [ - "AB485710" - ], - "Avian_myelocytomatosis_virus_HBI" : [ - "ACMHBIPB" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141241" : [ - "KR653300" - ], - "Feline_coronavirus_UU7_UU7" : [ - "FJ938053" - ], - "Norovirus_Hu_GII_4_Niigata2_2007_JP_Hu_GII_4_Niigata2_2007_JP" : [ - "AB541311" - ], - "Dengue_virus_1_00407_95" : [ - "JN638344" - ], - "Torque_teno_virus__TJN02" : [ - "AB028669" - ], - "Lactococcus_lactis_phage_P475" : [ - "KC182550" - ], - "Temperate_fruit_decay_associated_virus__MFB23" : [ - "KR134321" - ], - "Human_smacovirus_1__Virginia_2_2012_Albemarle_5I17" : [ - "KP233185" - ], - "Porcine_circovirus_2__DK581control" : [ - "EF565367" - ], - "Hepatitis_B_virus__Ag37" : [ - "KJ843198" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V163_2002" : [ - "EU155231" - ], - "Apple_mosaic_virus__Negret_2" : [ - "HG328285" - ], - "HBV_genotype_D__GRS08538" : [ - "AB554024" - ], - "Microlunatus_phosphovorus_NM_1" : [ - "NC_015635" - ], - "Ageratum_yellow_vein_China_betasatellite__G111" : [ - "HF569258" - ], - "Human_immunodeficiency_virus_1__03ZAPS113MB2" : [ - "DQ396365" - ], - "Centrosema_yellow_spot_virus__BR_Car1_09" : [ - "NC_016998" - ], - "SFTS_virus_AH12_AH12" : [ - "HQ141590", - "HQ141591" - ], - "Wheat_dwarf_virus__YNKM07_35" : [ - "KJ536143" - ], - "Porcine_circovirus_2_LN_1" : [ - "JF928005" - ], - "Human_herpesvirus_3_84_7" : [ - "KC847290" - ], - "Hepatitis_B_virus_HB185" : [ - "HM011468" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO05AK2_2009" : [ - "JF909129" - ], - "Squash_leaf_curl_virus__PA2_Q347" : [ - "KM595233" - ], - "Dengue_virus_1__ZH1067" : [ - "EU359008" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD199_2013" : [ - "KM229851" - ], - "Duck_hepatitis_B_virus__3" : [ - "DQ195079" - ], - "Merkel_cell_polyomavirus__R30a" : [ - "HM011557" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota7" : [ - "KP283409" - ], - "Acanthamoeba_polyphaga_mimivirus_Kroon" : [ - "KM982402" - ], - "Human_herpesvirus_4_HN12" : [ - "AB850647" - ], - "Neisseria_meningitidis_alpha710" : [ - "NC_017505" - ], - "Staphylococcus_phage_37" : [ - "NC_007055" - ], - "Tomato_severe_rugose_virus__ToSRV__BR_768Cro3a_08" : [ - "JX415190" - ], - "Chilli_veinal_mottle_virus__Ca" : [ - "AJ972878" - ], - "East_African_cassava_mosaic_virus__EACMV__K312" : [ - "AJ717547" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2880_2006" : [ - "GQ199844" - ], - "Circovirus_like_genome_BBC_A_BBC_A" : [ - "NC_013020" - ], - "Hepatitis_B_virus__clz1023" : [ - "KC774185" - ], - "Norovirus_Hu_GII_20172_2009_VNM_Hu_GII_20172_2009_VNM" : [ - "KC409262" - ], - "Usutu_virus_V66" : [ - "KJ438715" - ], - "Human_immunodeficiency_virus_1__CU38" : [ - "AY588970" - ], - "Porcine_epidemic_diarrhea_virus_USA_Texas31_2013" : [ - "KJ645639" - ], - "Hepatitis_C_virus__QC09" : [ - "KJ470614" - ], - "Malvastrum_yellow_vein_Baoshan_virus__Y281" : [ - "FN386460" - ], - "Porcine_teschovirus__SH1" : [ - "KJ881010" - ], - "Haemophilus_phage_Aaphi23" : [ - "NC_004827" - ], - "Fowl_aviadenovirus_D_A_2A" : [ - "NC_000899" - ], - "Hepatitis_B_virus__MMA_1" : [ - "AM421529" - ], - "West_Nile_virus__WNV_1_US_BID_V4350_2003" : [ - "HM488186" - ], - "Dengue_virus_3__DENV_3_US_BID_V1617_2005" : [ - "FJ182007" - ], - "Hepatitis_B_virus__XJW_12" : [ - "HM750153" - ], - "Hepatitis_B_virus__C_Tonga_To268_2006" : [ - "HQ700567" - ], - "Western_equine_encephalitis_virus_E1416" : [ - "KJ554969" - ], - "Ectropis_obliqua_picorna_like_virus" : [ - "NC_005092" - ], - "Hepatitis_B_virus__B1_7" : [ - "GU815588" - ], - "Hepatitis_B_virus__8034" : [ - "KJ470889" - ], - "Sewage_associated_gemycircularvirus_2__BS3911" : [ - "NC_026167" - ], - "Porcine_circovirus_2__Aust_10" : [ - "AY754021" - ], - "Variola_virus_United_Kingdom_1952_Butler" : [ - "DQ441447" - ], - "Human_adenovirus_41__NY_2010_4845" : [ - "KF303070" - ], - "Simian_immunodeficiency_virus__SIVsunK08_Gab" : [ - "FR751162" - ], - "Porcine_circovirus_2__PCV_HZY34" : [ - "KC514999" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3714_2007" : [ - "GQ868516" - ], - "Human_poliovirus_3_NIE1018461" : [ - "KJ170610" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_LY" : [ - "KM609210" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4254_2007" : [ - "HM181953" - ], - "Squash_leaf_curl_virus__JO1_130" : [ - "KM595166" - ], - "Rhodospirillum_centenum_SW" : [ - "NC_011420" - ], - "Newcastle_disease_virus__99_0868lo" : [ - "AY935496" - ], - "Torque_teno_sus_virus_1a__TTV1_G26" : [ - "GU570202" - ], - "Dengue_virus_2__FGU_Aug_98" : [ - "EU920831" - ], - "Bhendi_yellow_vein_India_virus__India_Jalgov_OY125_2006___OY125" : [ - "GU112028" - ], - "Duck_circovirus__CP12021" : [ - "KP229377" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI21_12_DNA_B" : [ - "HE979788" - ], - "Tick_borne_encephalitis_virus_Primorye_18" : [ - "GQ228395" - ], - "Meno_virus_E9_CI_2004" : [ - "NC_020900" - ], - "Foot_and_mouth_disease_virus___type_A_A_VN_T11D_2013" : [ - "KJ608371" - ], - "Japanese_encephalitis_virus_ML17__live_vaccine__Japan_1981_human" : [ - "AY508812" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_14476_2001" : [ - "DQ404162" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_338" : [ - "KP998404" - ], - "Puumala_virus_Kolodozero" : [ - "AJ238789" - ], - "Lactococcus_lactis_phage_p272" : [ - "KC182549" - ], - "Foot_and_mouth_disease_virus___type_O_O1_Brugge_o1brugge_iso79" : [ - "AY593817" - ], - "Hepatitis_B_virus__MOD_4572" : [ - "GQ183456" - ], - "Hepatitis_B_virus__PNF4913" : [ - "KF779343" - ], - "Panicum_mosaic_satellite_virus" : [ - "NC_003847" - ], - "Hepatitis_B_virus__27Y09HCC" : [ - "AB014386" - ], - "Dengue_virus_2__DENV_2_NI_BID_V693_2005" : [ - "EU482766" - ], - "West_Nile_virus__WNV_1_US_BID_V6565_2003" : [ - "KJ501360" - ], - "Tomato_yellow_leaf_curl_virus__KS2_5" : [ - "JQ807735" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4763_2009" : [ - "HM631857" - ], - "Mycobacterium_canettii_CIPT_140070017" : [ - "NC_019952" - ], - "Hepatitis_delta_virus__SO" : [ - "EF514906" - ], - "Taro_bacilliform_virus" : [ - "NC_004450" - ], - "BK_polyomavirus__SHA_40" : [ - "AB365169" - ], - "Hepatitis_B_virus__patient_A__10_97" : [ - "AY738142", - "AY738139", - "AY738140", - "AY738143", - "AY738141" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2187_2001" : [ - "FJ639757" - ], - "Human_rhinovirus_B52_ATCC_VR_1162" : [ - "FJ445188" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_USA_I05_94_A_2005" : [ - "KJ469561" - ], - "Chilli_leaf_curl_betasatellite__CL_15" : [ - "JN638445" - ], - "Human_papillomavirus_type_6__107" : [ - "HG793915" - ], - "Beak_and_feather_disease_virus__PT09" : [ - "GQ329705" - ], - "Acinetobacter_phage_Acj9" : [ - "NC_014663" - ], - "Human_respiratory_syncytial_virus_12_003981" : [ - "JX576734" - ], - "Lamb_rotavirus_CC0812_1_2008" : [ - "HQ834201", - "HQ834197", - "HQ834206", - "HQ834200", - "HQ834205", - "HQ834204", - "HQ834203", - "HQ834202", - "HQ834207", - "HQ834199", - "HQ834198" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX10_H95_2010_IE" : [ - "KC344470", - "KC344492" - ], - "Foot_and_mouth_disease_virus___type_O__O_S15KOR_2002" : [ - "KF694745" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL062A" : [ - "AB985297", - "AB985528" - ], - "Rabies_virus__SXYL15" : [ - "KR230090" - ], - "Maize_streak_virus__MSV_A_ZW_Mas5_Mic7_1993" : [ - "FJ882146" - ], - "Cleome_golden_mosaic_virus__BA_05" : [ - "NC_015397" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3816" : [ - "KM233090" - ], - "Thermus_phage_phi_OH2" : [ - "NC_021784" - ], - "Chinese_wheat_mosaic_virus__Rongcheng" : [ - "AJ271839", - "AJ271838" - ], - "Human_herpesvirus_5_Merlin_RCMV1677" : [ - "KM192301" - ], - "Newcastle_disease_virus_go_CH_GD_QY_1997" : [ - "KJ782375" - ], - "Enterovirus_J_N125_Simian_picornavirus_strain_N125" : [ - "AF414372" - ], - "Cleome_leaf_crumple_virus__BR_SE_Nps1_09" : [ - "JN103429" - ], - "Coxsackievirus_A10_Kowalik_CA10" : [ - "AY421767" - ], - "Swine_vesicular_disease_virus_NET_1_92" : [ - "AF268065" - ], - "Monkeypox_virus_D14L_knockout" : [ - "HQ857563" - ], - "JC_polyomavirus__JCV135_17" : [ - "JF424848" - ], - "Ageratum_yellow_vein_virus____G129" : [ - "AM940137" - ], - "Hepatitis_C_virus_genotype_3__NZL1" : [ - "NC_009824" - ], - "West_Nile_virus__WNV_1_US_BID_V4231_2006" : [ - "HM488157" - ], - "Tomato_leaf_curl_virus_SA1" : [ - "KF612317" - ], - "Tuber_aestivum_endornavirus__Jaszag" : [ - "NC_014904" - ], - "Swine_cyclovirus_SC_CGS77" : [ - "KM392286" - ], - "Streptococcus_phage_PH10" : [ - "NC_012756" - ], - "Human_bocavirus_isolate_SH2__SH2" : [ - "FJ375128" - ], - "Hemidesmus_yellow_mosaic_virus" : [ - "NC_022073", - "KC898544" - ], - "Human_herpesvirus_5_AF1" : [ - "GU179291" - ], - "Listeria_monocytogenes_J1816" : [ - "NC_021829" - ], - "Simian_virus_40__N128_1" : [ - "AY120890" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2886_2006" : [ - "GQ199849" - ], - "Hepatitis_B_virus__CHIMP_ED" : [ - "AM117397" - ], - "HBV_genotype_C__TRF08029" : [ - "AB554014" - ], - "Chlamydia_psittaci_84_55" : [ - "NC_018633", - "NC_018619" - ], - "Dengue_virus_2__DC812Y12" : [ - "KM279568" - ], - "Norovirus_Hu_GI_1_CHA2A014_2008_USA_Hu_GI_1_CHA2A014_2008_USA" : [ - "KF039728" - ], - "Oropouche_virus__BeH759021" : [ - "KP691607", - "KP691606" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_38_2011" : [ - "KJ686288" - ], - "Watermelon_chlorotic_stunt_virus__IL1_26" : [ - "KM820246" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_111241" : [ - "KJ435284" - ], - "Zucchini_yellow_mosaic_virus__WG" : [ - "AJ316229" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2719_2006" : [ - "FJ882542" - ], - "West_Nile_virus__WNV_1_US_BID_V7417_2004" : [ - "KJ501128" - ], - "Echovirus_E4_AUS250G" : [ - "FJ172447" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1551_2007" : [ - "EU726779" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda5_05" : [ - "KC706667" - ], - "Human_immunodeficiency_virus_1__CH77E_flA1" : [ - "FJ496000" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GBC_11_385" : [ - "KF385410" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20145853" : [ - "KR653290" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2245_2005" : [ - "FJ639808" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_LBC_13_1622_006" : [ - "KF385429" - ], - "Infectious_bursal_disease_virus_KS" : [ - "IBDVKS" - ], - "Murray_Valley_encephalitis_virus_OR156_OR156_P0" : [ - "KC852193" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite" : [ - "FR819709" - ], - "Porcine_circovirus_2__Mal010_11_Perak" : [ - "JF690919" - ], - "Haloarcula_hispanica_ATCC_33960" : [ - "NC_015948", - "NC_015943", - "NC_015944" - ], - "West_Nile_virus_LEIV_72Az" : [ - "JX041628" - ], - "Bovine_viral_diarrhea_virus_2_GBK_E" : [ - "AB894424", - "AB894423" - ], - "Hepatitis_B_virus__J150" : [ - "GQ377593" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9425_2013" : [ - "KJ643502" - ], - "Legionella_pneumophila_2300_99_Alcoy" : [ - "NC_014125" - ], - "Human_immunodeficiency_virus_1__09YNLC492sg" : [ - "KC898989" - ], - "Papaya_leaf_curl_Guandong_virus__W1" : [ - "KF446659" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_11_1" : [ - "KC106637" - ], - "Human_herpesvirus_3_pOka" : [ - "AB097933" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2708_2006" : [ - "FJ882533" - ], - "Impatiens_necrotic_spot_virus__Phalaenopsis" : [ - "GQ336989", - "GQ336991", - "GQ336990" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2181_2001" : [ - "FJ639752" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1008_2006" : [ - "EU482452" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V283_2005" : [ - "EU256077" - ], - "Human_immunodeficiency_virus_1__14300_1" : [ - "DQ853438" - ], - "Usutu_virus_3358" : [ - "KJ438721" - ], - "Hepatitis_B_virus__CX025M_e235n" : [ - "KJ173352" - ], - "Enterovirus_D68_US_MO_14_18948" : [ - "KM851226" - ], - "Mammalian_orthoreovirus_1_Lang_Lang" : [ - "X59945" - ], - "Human_herpesvirus_3_VZVi_Erfurt_GER_20_00_V_5__413_2000" : [ - "JN704704" - ], - "Ovine_papillomavirus_type_2" : [ - "OPU83595" - ], - "Buchnera_aphidicola_Sg__Schizaphis_graminum" : [ - "NC_004061" - ], - "Bacteriovorax_marinus_SJ" : [ - "NC_019100", - "NC_016620" - ], - "Hepatitis_B_virus__JPN_CH1" : [ - "AB453979" - ], - "Human_immunodeficiency_virus_1__B4043_15" : [ - "KP718931" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG295A1_10" : [ - "KJ887691" - ], - "Tomato_yellow_leaf_curl_virus__SDWF_L7" : [ - "KC999850" - ], - "Porcine_circovirus_2_TC1104" : [ - "JX982223" - ], - "Hepatitis_E_virus__hev037" : [ - "X98292" - ], - "West_Nile_virus_B956" : [ - "AY532665" - ], - "Human_immunodeficiency_virus_1__CTL_041" : [ - "EF514711" - ], - "Murine_coronavirus_repA59_RJHM_repA59_RJHM" : [ - "FJ647221" - ], - "Eupatorium_yellow_vein_virus__Japan_Kagawa_Tomato_1997" : [ - "AB433979" - ], - "Norwalk_like_virus__Bo_Dumfries_94_UK" : [ - "AY126474" - ], - "Hepatitis_B_virus__2_B24" : [ - "EU570070" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1989_12_1" : [ - "Z75875" - ], - "Human_immunodeficiency_virus_1__14184_1" : [ - "DQ853442" - ], - "Cauliflower_mosaic_virus__IRNShK57" : [ - "JX912269" - ], - "Propionibacterium_acnes_SK137" : [ - "NC_014039" - ], - "Norovirus_Hu_GII_4_Aichi3_2007_JP_Hu_GII_4_Aichi3_2007_JP" : [ - "AB541205" - ], - "Hepatitis_B_virus__F_5" : [ - "KF373037" - ], - "Hepatitis_B_virus_ChHBV_ChHBV_Ch256" : [ - "AB032432" - ], - "Hepatitis_B_virus__bxn1028" : [ - "KC774417" - ], - "Hepatitis_B_virus__clz1027" : [ - "KC774187" - ], - "Cyclovirus_ZM32_ZM32" : [ - "AB937980" - ], - "Soybean_mosaic_virus__WS37" : [ - "FJ640955" - ], - "SARS_coronavirus_MA15_MA15_d4ym4" : [ - "JF292914" - ], - "Hepatitis_B_virus__MOD_4583" : [ - "GQ183457" - ], - "Hepatitis_B_virus__8504_91" : [ - "DQ060823" - ], - "Hepatitis_B_virus__4070v1" : [ - "KF922424" - ], - "Simian_hemorrhagic_fever_virus_LVR_42_0_M6941_I618_d5" : [ - "KM371110" - ], - "Dengue_virus_2__DENV_2_BZ_BID_V2952_2002" : [ - "FJ898461" - ], - "Middle_East_respiratory_syndrome_coronavirus_Hu_Riyadh_KSA_2466_2015" : [ - "KR011265" - ], - "Gooseberry_vein_banding_associated_virus__BC" : [ - "HQ852250" - ], - "Rice_stripe_virus__YG_JN" : [ - "FJ602687", - "FJ602700" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4260_2007" : [ - "HM181957" - ], - "Human_bocavirus__CZ643" : [ - "DQ457413" - ], - "Hepatitis_A_virus__HAJHM_PapTok11" : [ - "AB909123" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_QUAL1_Before" : [ - "EF536001" - ], - "Hepatitis_B_virus_C_1858_sa4" : [ - "AF223962" - ], - "Human_immunodeficiency_virus_1__WEAU_flF7" : [ - "FJ496165" - ], - "Hepatitis_B_virus_Ehi_OK_lam_8_1" : [ - "AB202071" - ], - "Duck_hepatitis_A_virus_1_HDHV1_GD" : [ - "FJ157179" - ], - "Hepatitis_B_virus_6898" : [ - "FJ518810" - ], - "Hepatitis_B_virus__J197" : [ - "GQ377620" - ], - "Rodent_Torque_teno_virus_2__RN_5_Se5" : [ - "KM668485" - ], - "Maize_streak_virus__MSV_F_NG_ng17_Sam_2011" : [ - "KJ437656" - ], - "Mumps_virus_Jeryl_Lynn" : [ - "AF201473" - ], - "Hepatitis_B_virus__HBV235" : [ - "KJ647354" - ], - "Human_poliovirus_1__TJK35363" : [ - "KC880369", - "KC880367", - "KC880368", - "KC880366" - ], - "Bluetongue_virus_9__BOS2002_02" : [ - "AJ586687" - ], - "Norwalk_like_virus_GIFU_99" : [ - "AB084071" - ], - "Chinese_yam_necrotic_mosaic_virus__FX1" : [ - "KJ789135" - ], - "Staphylococcus_phage_SAP_2" : [ - "NC_009875" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2885_2006" : [ - "GQ199848" - ], - "Panicum_streak_virus__PanSV_A_SFor" : [ - "EU224262" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0119" : [ - "KP759667" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_SCC_W16710" : [ - "KF385419" - ], - "Human_bocavirus__HZ1201" : [ - "KP710205" - ], - "Hepatitis_B_virus__MLT1227" : [ - "KF779307" - ], - "Human_coronavirus_OC43_OC43_human_USA_912_11_1991" : [ - "KF530082" - ], - "Human_adenovirus_21_NHRC_91447" : [ - "KJ364590" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GGC_11_1212" : [ - "KF385404" - ], - "Hepatitis_B_virus__D_F109C_2004" : [ - "HQ700497" - ], - "Synechococcus_phage_S_SKS1" : [ - "NC_020851" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2376_2000" : [ - "FJ850072" - ], - "Chicken_anemia_virus_BD_3" : [ - "AF395114" - ], - "Hepatitis_B_virus__1966" : [ - "FJ386606" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7071_2008" : [ - "KJ189287" - ], - "Pepino_mosaic_virus_US2" : [ - "AY509927" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD217_2013" : [ - "KM229865" - ], - "Liao_ning_virus" : [ - "NC_007738", - "NC_007737", - "NC_007736" - ], - "Enterovirus_D68_JPOC10_378" : [ - "AB601883" - ], - "Hepatitis_B_virus_258_14a" : [ - "KR013894" - ], - "Polytropic_murine_leukemia_virus" : [ - "KJ668271" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3943_2008" : [ - "GU131736" - ], - "Hepatitis_C_virus_subtype_4f_IFBT84" : [ - "EF589160" - ], - "Potato_virus_X__FX21" : [ - "EF423572" - ], - "West_Nile_virus_LEIV_1640Az" : [ - "JX041630" - ], - "Edwardsiella_phage_IW_1" : [ - "AB757801" - ], - "Hepatitis_B_virus__SSC130" : [ - "KJ598700" - ], - "Porcine_circovirus_2_SD_ZB2" : [ - "KJ511876" - ], - "Human_immunodeficiency_virus_1__97CDKTB48" : [ - "AF286238" - ], - "Rabbit_hemorrhagic_disease_virus_Frankfurt5" : [ - "EF558573" - ], - "Human_immunodeficiency_virus_1__04ZAPS170B1" : [ - "DQ164116" - ], - "Dengue_virus_1_D1_Hu_Shizuoka_NIID181_2014" : [ - "LC011949" - ], - "Human_immunodeficiency_virus_1__CTL_018" : [ - "EF514706" - ], - "Hepatitis_B_virus__031_TI_Ngu" : [ - "KF873532" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3903_2008" : [ - "GU131725" - ], - "California_sea_lion_adenovirus_1_Zc11_030" : [ - "NC_024150" - ], - "Equid_herpesvirus_8_wh" : [ - "NC_017826" - ], - "Bat_polyomavirus_6d__6d_1" : [ - "NC_026766" - ], - "Watermelon_chlorotic_stunt_virus__JO1_19" : [ - "KM820195" - ], - "Wheat_dwarf_virus__GSGG09_5" : [ - "KJ536137" - ], - "Human_rotavirus_A__N155" : [ - "EU200797" - ], - "Human_respiratory_syncytial_virus_A_WI_629_2_07" : [ - "JF920046" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1868_2007" : [ - "FJ547064" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culicidae_USA_2708_2007" : [ - "KJ659366" - ], - "Hepatitis_B_virus__MTB160" : [ - "AY902774" - ], - "East_African_cassava_mosaic_virus__EACMV__K268" : [ - "AJ717558", - "AJ704938" - ], - "Foot_and_mouth_disease_virus___type_A_A22_550_Azerbaijan_65" : [ - "X74812" - ], - "Cauliflower_mosaic_virus__TUR2" : [ - "AB863167" - ], - "Human_poliovirus_3_NIE1018505" : [ - "KJ170617" - ], - "Porcine_circovirus_2__ZS03" : [ - "KM360055" - ], - "Bombyx_mori_nucleopolyhedrovirus_Brazilian" : [ - "KJ186100" - ], - "Sida_mosaic_Alagoas_virus__BgV02B_1_C63" : [ - "JF694474" - ], - "Infectious_bronchitis_virus_Cal557_2003" : [ - "FJ904715" - ], - "Human_immunodeficiency_virus_1__BK132" : [ - "AY173951" - ], - "Watermelon_mosaic_virus__Lecce" : [ - "FJ823122" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SDA3" : [ - "JX878380" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_4569_2001" : [ - "DQ404171" - ], - "Human_immunodeficiency_virus_1__09YNLC216036sg" : [ - "KC898988" - ], - "Squash_leaf_curl_Philippines_virus__1_1" : [ - "JF746196", - "JF746195" - ], - "Lactobacillus_paracasei_8700_2" : [ - "NC_022114", - "NC_022123", - "NC_022112" - ], - "Human_respiratory_syncytial_virus_A_WI_629_4071_98" : [ - "JF920065" - ], - "BK_polyomavirus__NAR_13" : [ - "AB298945" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP3A_subpopulation_1" : [ - "JN013991" - ], - "Human_T_lymphotropic_virus_1_RKI3_Ger" : [ - "AF042071" - ], - "Campylobacter_jejuni_81_176" : [ - "NC_008770", - "NC_008790", - "NC_008787" - ], - "Hepatitis_B_virus__PAN011" : [ - "GQ358151" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1801_2007" : [ - "FJ410200" - ], - "Infectious_bronchitis_virus_ck_CH_LJL_130925" : [ - "KP036505" - ], - "Mungbean_yellow_mosaic_virus_Thailand" : [ - "AB017341" - ], - "SARS_coronavirus_MA15_MA15_d2ym1" : [ - "HQ890541" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_268_2012" : [ - "KP308453" - ], - "Human_coronavirus_OC43__3194A_2012" : [ - "KF923906" - ], - "Simian_immunodeficiency_virus__SIVcpzTAN3" : [ - "EF394358" - ], - "Puniceispirillum_phage_HMO_2011" : [ - "NC_021864" - ], - "Gallid_herpesvirus_2_648a_p41" : [ - "JQ809691" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2462_2007" : [ - "FJ873809" - ], - "BK_polyomavirus_FNL_9" : [ - "AB269824" - ], - "Chikungunya_virus_ArA_30548" : [ - "HM045820" - ], - "Maize_streak_virus__MSV_A_RE_Pie4_Mic13_1994" : [ - "HQ693396" - ], - "Hepatitis_B_virus__38Y20HCC" : [ - "AB014397" - ], - "Hepatitis_B_virus__530_00_3" : [ - "EU871997" - ], - "Sweet_potato_leaf_curl_Spain_virus__ES_CI_BG5_02" : [ - "EF456743" - ], - "Bhendi_yellow_vein_India_virus__India_Pandarahalli_OY170_2006___OY170" : [ - "GU112036" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4010_2008" : [ - "GU131774" - ], - "African_cassava_mosaic_virus__ACMV__NG_Rc_03" : [ - "EU685324" - ], - "Soybean_mosaic_virus__6202_2" : [ - "JF833014" - ], - "Halovirus_HRTV_4" : [ - "NC_021329" - ], - "St__Louis_encephalitis_virus_Kern217" : [ - "NC_007580" - ], - "Hepatitis_B_virus__C113" : [ - "HM363610", - "EU939575" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10SS_GD" : [ - "JX192638" - ], - "Human_immunodeficiency_virus_1__07YNLC08sg" : [ - "KC898982" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HuN" : [ - "EF517962" - ], - "Hepatitis_B_virus__S1_2" : [ - "EU916205" - ], - "Hepatitis_B_virus__dxn1043" : [ - "KC774482" - ], - "Human_spumaretrovirus" : [ - "HSU21247" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V83_2003" : [ - "EU256027" - ], - "Streptomyces_bingchenggensis_BCW_1" : [ - "NC_016582" - ], - "Squash_leaf_curl_virus__EG1_4" : [ - "KM595143" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_26_2012" : [ - "KJ672456" - ], - "Turnip_mosaic_virus__ITA4" : [ - "AB701722" - ], - "Citrobacter_phage_Moon" : [ - "NC_027331" - ], - "Norovirus_Hu_GI_1_8MoIIIL_1972_USA_Hu_GI_1_8MoIIIL_1972_USA" : [ - "KF429761" - ], - "Human_T_lymphotropic_virus_1" : [ - "AF139170", - "NC_001436", - "HL1PROP", - "HL1GAPR", - "HL1RHK30X", - "HTVPRCAR", - "AY563953" - ], - "Felid_herpesvirus_1_C_27" : [ - "NC_013590" - ], - "Hepatitis_B_virus__S1556_11" : [ - "EU589339" - ], - "Halovirus_HHTV_2" : [ - "NC_021340" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_33_2012" : [ - "KJ672477" - ], - "Tomato_leaf_curl_New_Delhi_virus__Murcia_11_1" : [ - "KF749225", - "KF749228" - ], - "Enterobacteria_phage_RB3" : [ - "NC_025419" - ], - "Sewage_associated_gemycircularvirus_6__BS4014" : [ - "NC_026162" - ], - "Apricot_latent_virus__LA2" : [ - "HQ339958" - ], - "Enterovirus_A71_AFP2001064_EV71_GX_CHN_2001" : [ - "JQ742001" - ], - "Enterovirus_A71_C7_Osaka_LPS1" : [ - "AB550337" - ], - "Hepatitis_B_virus__H1" : [ - "FJ349206" - ], - "Myxoma_virus_SG33" : [ - "GQ409969" - ], - "Hepatitis_E_virus__IND_HEV_FHF2_2004" : [ - "JF443723" - ], - "Human_immunodeficiency_virus_1__GHNJ193" : [ - "AB231897" - ], - "Influenza_C_virus__C_Ann_Arbor_1_50__C_Ann_Arbor_1_50" : [ - "NC_006307", - "NC_006310", - "NC_006311", - "NC_006309", - "NC_006312", - "NC_006308" - ], - "Crimean_Congo_hemorrhagic_fever_virus__NIV_11704" : [ - "JN627865" - ], - "Dengue_virus_2__DENV_2_US_BID_V592_2002" : [ - "EU482723" - ], - "Human_immunodeficiency_virus_1__pNL4_3" : [ - "AF003888", - "AF003887" - ], - "Human_respiratory_syncytial_virus__RSV_5" : [ - "GU591762" - ], - "West_African_Asystasia_virus_1__ABgV1" : [ - "NC_016576" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZDog01_2011" : [ - "JQ693003" - ], - "Leuconostoc_gelidum_JB7" : [ - "NC_018631" - ], - "Human_rotavirus_A_248_stool" : [ - "AJ236778" - ], - "Dragonfly_cyclovirus_4__DfCyV_4_US_DFKWGX_2012" : [ - "KC512916" - ], - "Tomato_leaf_curl_Bangalore_virus____India_Kerala_II_2005___Kerala_II" : [ - "DQ852623" - ], - "Tomato_severe_rugose_virus__BR_Vic07_10" : [ - "JX865621" - ], - "Melon_chlorotic_mosaic_virus__VE10_101" : [ - "KF670628", - "KF670629" - ], - "Hepatitis_B_virus__D98" : [ - "EU939649" - ], - "Hepatitis_B_virus__HBV47" : [ - "KC875334" - ], - "Porcine_circovirus_2__SZ" : [ - "KC514979" - ], - "Pirital_mammarenavirus_AV_97021016" : [ - "AY573923" - ], - "Cymbidium_ringspot_virus" : [ - "NC_003532" - ], - "Hepatitis_B_virus_HB056" : [ - "HM011465" - ], - "Hepatitis_B_virus__SHB625" : [ - "KJ598738" - ], - "Human_papillomavirus_type_33__Qv18347" : [ - "HQ537695" - ], - "Abutilon_mosaic_Brazil_virus__BgV01A_1_C67" : [ - "JF694481" - ], - "JC_polyomavirus__JCV173FLC_04" : [ - "JF424959" - ], - "Porcine_circovirus_2__SH1001" : [ - "KF850459" - ], - "Coxsackievirus_A13_AUS89_10611" : [ - "DQ995637" - ], - "Cotton_leaf_curl_Burewala_alphasatellite__Sa_3" : [ - "KM103526" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_976" : [ - "KR534525" - ], - "Porcine_circovirus_2__GZ_LZ1" : [ - "KC788503" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_CH8V_J2" : [ - "KP998426" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2854_2005" : [ - "FJ898393" - ], - "Atlantic_salmon_paramyxovirus__ASPV_Yrkje371_95" : [ - "NC_025360" - ], - "Simian_immunodeficiency_virus_Mne_SIVMne027" : [ - "SIU79412" - ], - "Hepatitis_A_virus_HMH" : [ - "AY644337" - ], - "Yersinia_pseudotuberculosis_PB1" : [ - "NC_010635", - "NC_010634" - ], - "Dengue_virus_2__FGU_Jan_00" : [ - "EU920833" - ], - "Methylotenera_mobilis_JLW8" : [ - "NC_012968" - ], - "Porcine_circovirus_2_GD" : [ - "EF619037" - ], - "Sulfurihydrogenibium_azorense_Az_Fu1" : [ - "NC_012438" - ], - "Cauliflower_mosaic_virus__GRC84B" : [ - "AB863194" - ], - "Enterococcus_phage_BC611" : [ - "NC_018086" - ], - "Human_adenovirus_21_PEL0066" : [ - "KJ364587" - ], - "Enterobacter_cloacae_ENHKU01" : [ - "NC_018405" - ], - "Squash_leaf_curl_virus__PA2_Q327" : [ - "KM595224" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V150_2004" : [ - "EU155222" - ], - "Hepatitis_B_virus__CX065C_e313" : [ - "KJ173357" - ], - "Usutu_virus_V49" : [ - "KJ438756" - ], - "Corynebacterium_diphtheriae_INCA_402" : [ - "NC_016783" - ], - "Maize_streak_virus__UMasin_139" : [ - "EF547095" - ], - "Chikungunya_virus_COMJ" : [ - "HQ456252" - ], - "Mycoplasma_haemocanis_Illinois" : [ - "NC_016638" - ], - "Zika_virus_MR_766" : [ - "NC_012532" - ], - "Hepatitis_E_virus_rat_Mu09_0685_DEU_2010" : [ - "JN167537" - ], - "Hepatitis_B_virus__HBV39" : [ - "KC875275" - ], - "Escherichia_phage_vB_EcoP_PhAPEC7" : [ - "NC_024790" - ], - "Cauliflower_mosaic_virus_B29" : [ - "X79465" - ], - "Porcine_circovirus_2__S05_999" : [ - "JX512860" - ], - "Sugarcane_streak_virus____Natal" : [ - "S64567" - ], - "Hepatitis_A_virus__Kor_HAV_F" : [ - "JQ655151" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8456_2001" : [ - "KJ627690" - ], - "Potato_virus_S__SW_14" : [ - "KP089978" - ], - "Beak_and_feather_disease_virus__CPA8_ZA" : [ - "AY450437" - ], - "Hepatitis_delta_virus__TW5132_24" : [ - "AY648957" - ], - "Canna_yellow_streak_virus__BZ1" : [ - "KM882641" - ], - "Bat_SARS_like_coronavirus_WIV1__WIV1" : [ - "KF367457" - ], - "Squash_leaf_curl_virus__PA1_J246" : [ - "KM595219" - ], - "Bluetongue_virus_11__4574" : [ - "JX272518" - ], - "Zamilon_virophage_strain" : [ - "NC_022990" - ], - "Newcastle_disease_virus__ZhJ_3_97" : [ - "FJ766529" - ], - "Sapovirus_GII_PHL_TGO12_028" : [ - "KP067444" - ], - "Dengue_virus_3__DENV_3_US_BID_V1623_2005" : [ - "FJ182038" - ], - "Enterobacteria_phage_mEp235" : [ - "NC_019708" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__K1J3" : [ - "JN053444" - ], - "Hepatitis_B_virus_574_4" : [ - "KR013984" - ], - "Hepatitis_B_virus__KAMCHATKA38" : [ - "AB188242" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_MEX_62_2008" : [ - "KF826844" - ], - "Vibrio_phage_CP_T1__HER373" : [ - "NC_019457" - ], - "Porcine_circovirus_2_GZ0604" : [ - "GU247988" - ], - "Hepatitis_B_virus__HBV_VietA_3" : [ - "AB031262" - ], - "Hepatitis_C_virus_subtype_1b_MD14" : [ - "AF207755" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4184_legs" : [ - "HQ705675" - ], - "Klebsiella_phage_phiKO2" : [ - "NC_005857" - ], - "Dengue_virus_2__DENV_2_NI_BID_V4157_2006" : [ - "HM631866" - ], - "Cotton_leaf_curl_Multan_betasatellite__SZ2" : [ - "JQ963632" - ], - "Mimosa_yellow_leaf_curl_virus_associated_DNA_1" : [ - "NC_009564" - ], - "Sweet_potato_leaf_curl_virus__CTCRI_TVM_M1" : [ - "KM050768" - ], - "Foot_and_mouth_disease_virus___type_A__Lindholm_1_3_PAK3_2006" : [ - "EF117837" - ], - "Porcine_circovirus_2_CHST" : [ - "AY682992" - ], - "Hepatitis_B_virus__YY003C_e104" : [ - "KJ173333" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_37_2012" : [ - "KJ672435" - ], - "Cotesia_congregata_bracovirus" : [ - "NC_006643", - "NC_006642", - "NC_006660", - "NC_006656", - "HF586478", - "NC_006637", - "NC_006655", - "NC_006657", - "NC_006654", - "NC_006653", - "NC_006647", - "NC_006635", - "NC_006645", - "NC_006638", - "NC_006636", - "NC_006633", - "NC_006659", - "NC_006640", - "NC_006650", - "NC_006648", - "NC_006652", - "NC_006646", - "NC_006634", - "NC_006644", - "NC_006661", - "NC_006658", - "NC_006649", - "NC_006651", - "NC_006639", - "NC_006662", - "NC_006641" - ], - "Fowl_aviadenovirus_D__HBQ12" : [ - "KM096545" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_18_2013" : [ - "KJ672479" - ], - "Corynebacterium_terpenotabidum_Y_11" : [ - "NC_021663" - ], - "Hepatitis_B_virus__bur1040" : [ - "KC774372" - ], - "Rubrivivax_gelatinosus_IL144" : [ - "NC_017075" - ], - "Enterovirus_A71_Shanghai_51_2009" : [ - "HQ891926" - ], - "Rose_leaf_rosette_associated_virus__RLRaV_CWR_1" : [ - "NC_024906" - ], - "Dengue_virus_1_D1_SG_05K3908DK1_2005" : [ - "EU081245" - ], - "Human_immunodeficiency_virus_1__CAP30_5w_F4" : [ - "GQ999973" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2399_2007" : [ - "FJ850091" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mansonia_titillans_MEX_MX09_M50_2009_IE" : [ - "KC344479" - ], - "Tomato_leaf_curl_Cebu_virus__P2_1" : [ - "EU487025" - ], - "Mycobacterium_phage_MosMoris" : [ - "NC_024138" - ], - "Plum_pox_virus_PPV_D_Mi1" : [ - "AB576073" - ], - "Duck_circovirus__D12_JW_059" : [ - "KC851816" - ], - "Methanobrevibacter_smithii_ATCC_35061" : [ - "NC_009515" - ], - "Hepatitis_B_virus__919049" : [ - "JN040775" - ], - "Beet_western_yellows_virus_BWYV_Ikeda" : [ - "AB903036" - ], - "Poplar_mosaic_virus__ATCC_PV257__ATCC_PV275" : [ - "X65102" - ], - "Hepatitis_C_virus_subtype_3a__RASILBS5" : [ - "JQ717256" - ], - "Dengue_virus_2__DENV_2_US_BID_V1164_1986" : [ - "EU482568" - ], - "Human_respiratory_syncytial_virus_07_038682" : [ - "JX576748" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1802_2007" : [ - "FJ432739" - ], - "Dengue_virus_4__DENV_4_US_BID_V2430_1994" : [ - "GQ199879" - ], - "European_mountain_ash_ringspot_associated_virus__E51586" : [ - "HG799704" - ], - "Hepatitis_C_virus_subtype_1a__L860P" : [ - "EU781778" - ], - "Foot_and_mouth_disease_virus___type_A_A14_Spain_a14_spain_iso39" : [ - "AY593754" - ], - "Enterovirus_A71_SD07_1_SD_CHN_2007" : [ - "JX678882" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1955_2008" : [ - "FJ410273" - ], - "Hepatitis_B_virus_HB781" : [ - "JQ027331" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K23" : [ - "AJ704960", - "AJ717534" - ], - "Hepatitis_B_virus__IND_2008_15" : [ - "KF214677" - ], - "Japanese_encephalitis_virus_XZ0938" : [ - "HQ652538" - ], - "JC_polyomavirus_736B" : [ - "AY121915" - ], - "Macrobrachium_rosenbergii_nodavirus__Australian" : [ - "JN619369", - "JN619370" - ], - "South_African_cassava_mosaic_virus__MG_MG38A14_06" : [ - "KJ887644" - ], - "Hepatitis_B_virus__Occult_HK4901" : [ - "KJ410517" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V153_2005" : [ - "EU482883" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8491_2001" : [ - "KJ627709" - ], - "Middle_East_respiratory_syndrome_coronavirus__MERS_CoV_Jeddah_human_1" : [ - "KF958702" - ], - "Hepatitis_delta_virus_dTk34_dTk34" : [ - "AM779588" - ], - "Maize_streak_virus__MSV_A_MZ_Map8_Moz3_2007" : [ - "HQ693358" - ], - "GB_virus_C__KY117" : [ - "HQ331233" - ], - "Hepatitis_B_virus__JFA3817" : [ - "KF779253" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_89I_150A_01_1989" : [ - "KJ723464" - ], - "Rotavirus_A__RVA_Human_wt_DEN_L21920792_2011_G9P_8" : [ - "KP013457" - ], - "Tomato_leaf_curl_China_betasatellite__Y298" : [ - "AM260733" - ], - "Cyprinid_herpesvirus_2_ST_J1" : [ - "NC_019495" - ], - "SARS_coronavirus_TW6__TW6" : [ - "AY502929" - ], - "Hepatitis_B_virus__G108" : [ - "EU158263" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD201_2013" : [ - "KM229853" - ], - "Hepatitis_delta_virus__D69" : [ - "KJ744256" - ], - "Mannheimia_phage_vB_MhM_1152AP" : [ - "NC_021778" - ], - "West_Nile_virus__WNV_1_US_BID_V4344_2002" : [ - "JN183891" - ], - "Hepatitis_B_virus__SHB3A1" : [ - "KJ598666" - ], - "Alphapapillomavirus_4" : [ - "NC_001352" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3856_1" : [ - "KM233113" - ], - "Porcine_circovirus_2_SZ1107" : [ - "JX982222" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_311_2012" : [ - "KP308439" - ], - "Human_herpesvirus_3_VZVi_Weimar_GER_16_05_V_1__667_2005" : [ - "JN704693" - ], - "Hepatitis_B_virus__HBV62" : [ - "KC875269" - ], - "Tomato_yellow_leaf_curl_Malaga_virus__H5" : [ - "LN846611" - ], - "Porcine_circovirus_2_GXHK" : [ - "EF675238" - ], - "Koala_retrovirus__Pci_MCZ8574" : [ - "KF786282" - ], - "Yellow_tailflower_mild_mottle_virus__Cervantes" : [ - "NC_022801" - ], - "Ageratum_yellow_leaf_curl_betasatellite__AMBF" : [ - "FM164737" - ], - "Rotavirus_A_RVA_Human_wt_MWI_1473_2001_G8P_4" : [ - "HQ657139", - "HQ657133", - "HQ657141", - "HQ657134", - "HQ657142", - "HQ657135", - "HQ657136", - "HQ657138", - "HQ657143", - "HQ657137", - "HQ657140" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2246_2005" : [ - "FJ639809" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8505_2003" : [ - "KJ627714" - ], - "Hepatitis_C_virus_subtype_6g__HK6554" : [ - "DQ314806" - ], - "Hepatitis_B_virus__P06" : [ - "EU859926" - ], - "Bean_golden_mosaic_virus__BR_Mur5_11" : [ - "KJ939758" - ], - "Bidens_mottle_virus__B12" : [ - "EU250210" - ], - "Abaca_bunchy_top_virus__Q767" : [ - "NC_010314", - "NC_010317", - "NC_010318", - "NC_010316", - "NC_010319", - "NC_010315" - ], - "Citrus_yellow_mosaic_virus" : [ - "NC_003382", - "DQ875213", - "EU884191", - "EU708317" - ], - "Macroptilium_yellow_spot_virus__BR_Agf1_10" : [ - "NC_016999" - ], - "Feline_calicivirus__20879" : [ - "JX519211" - ], - "Staphylococcus_phage_phiMR11" : [ - "NC_010147" - ], - "Marinomonas_posidonica_IVIA_Po_181" : [ - "NC_015559" - ], - "Columbid_circovirus__PL57" : [ - "KF738861" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9450_2013" : [ - "KJ643522" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_Asia1_2_asia1_2isrl3_63_iso6" : [ - "AY593796" - ], - "Human_immunodeficiency_virus_1__INDNARI_0218440" : [ - "EU000512", - "EU000514", - "EU000513" - ], - "Tomato_severe_leaf_curl_virus__Guatemala_96_1" : [ - "NC_004642" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_TY" : [ - "KP998428" - ], - "Cauliflower_mosaic_virus__IRN8" : [ - "AB863143" - ], - "Bean_yellow_mosaic_virus__GDD" : [ - "AY192568" - ], - "Bovine_parainfluenza_virus_3_NM09" : [ - "JQ063064" - ], - "Batai_virus_MM2222" : [ - "JX846597", - "JX846595" - ], - "West_Nile_virus__LEIV_Vlg00_27924" : [ - "AY278442" - ], - "Hepatitis_B_virus__HBV_TJ3_1_1" : [ - "AB205124" - ], - "Porcine_circovirus_2_PCV2_pig_152_157" : [ - "EU136713" - ], - "Mycobacterium_phage_40AC" : [ - "NC_023607" - ], - "African_cassava_mosaic_virus__CF_CF137BE_07" : [ - "KJ887622" - ], - "Infectious_bursal_disease_virus__KT1_99" : [ - "AJ496637", - "AJ427340" - ], - "Hepatitis_B_virus__BV_204" : [ - "GU563550" - ], - "Hepatitis_B_virus__HCUCH6" : [ - "HM585187" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1128" : [ - "KR534580" - ], - "Hepatitis_B_virus__I205" : [ - "FJ562339" - ], - "Hepatitis_B_virus__CHN_L53" : [ - "AY817512" - ], - "West_Nile_virus__AVA1202689" : [ - "KC736492" - ], - "Norovirus_GII_Hu_JP_2012_GII_Pe_GII_4_Sydney2012_Fukuyama_2__Fukuyama_2" : [ - "KJ196280" - ], - "Hepatitis_C_virus__QC215" : [ - "JF735132" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d2ym3" : [ - "HQ890528" - ], - "Sweet_potato_leaf_curl_virus_Puerto_Rico_SPLCV_PR_BR_OPO_08" : [ - "HQ393455" - ], - "Hepatitis_B_virus__N207C_e414" : [ - "KJ173444" - ], - "WU_Polyomavirus__O63" : [ - "GU296407" - ], - "Diplodia_scrobiculata_RNA_virus_1" : [ - "NC_013699" - ], - "Dengue_virus_2__DENV_2_NI_BID_V744_2005" : [ - "EU482769" - ], - "KI_polyomavirus__Brisbane_003" : [ - "EF520289" - ], - "Hepatitis_B_virus__I_T95" : [ - "GU456655" - ], - "Maize_streak_virus__MSV_A_ZM_Chi8_Z12_2008" : [ - "HQ693459" - ], - "Hepatitis_B_virus_99_15" : [ - "KR013880" - ], - "Usutu_virus_V86" : [ - "KJ438781" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3392_2001" : [ - "GU131950" - ], - "Human_immunodeficiency_virus_1__96CMABB009" : [ - "AY169806" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1559_2007" : [ - "EU726782" - ], - "Bean_golden_mosaic_virus__BR_Cri17_12" : [ - "KJ939853" - ], - "Human_immunodeficiency_virus_1__04ZASK151B1" : [ - "AY901977" - ], - "Hepatitis_B_virus__P21" : [ - "EU859920" - ], - "Human_immunodeficiency_virus_1__ES38" : [ - "KC935958" - ], - "Rice_stripe_virus__AD_JJ" : [ - "FJ602697", - "FJ602684" - ], - "Hepatitis_B_virus__I140" : [ - "FJ562279" - ], - "Japanese_encephalitis_virus_attenuated_SA14_12_1_7" : [ - "AF416457" - ], - "Human_immunodeficiency_virus_1__02BR002" : [ - "DQ358805" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3747_2008" : [ - "GQ868531" - ], - "Sputnik_virophage" : [ - "NC_011132" - ], - "Hepatitis_B_virus__WHMSL" : [ - "JN257182" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2291_2001" : [ - "FJ810410" - ], - "Plantago_asiatica_mosaic_virus" : [ - "NC_003849" - ], - "Hepatitis_C_virus_subtype_1a__L8168" : [ - "EU781759" - ], - "Hepatitis_B_virus__Cr08" : [ - "KJ843225" - ], - "Cauliflower_mosaic_virus__TUR214" : [ - "AB863179" - ], - "Myxoma_virus_Aust_Southwell_Hill_9_92_1_SWH" : [ - "JX565576" - ], - "Equine_foamy_virus" : [ - "NC_002201" - ], - "Maize_streak_virus__UMba_38" : [ - "EF547073" - ], - "Newcastle_disease_virus_NDV_peacock_Peru_2011" : [ - "KR732614" - ], - "Cauliflower_mosaic_virus__JPNS1" : [ - "AB863161" - ], - "Simian_adenovirus_A1258_A1258" : [ - "JN880451" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota4" : [ - "KP283411" - ], - "Porcine_circovirus_2__TP" : [ - "HQ202961" - ], - "Alternanthera_yellow_vein_virus__Zin" : [ - "DQ641703" - ], - "Hepatitis_B_virus__051_DR_Pep" : [ - "KF873545" - ], - "Sri_Lankan_cassava_mosaic_virus____Ker20___Adivaram" : [ - "AJ579308", - "AJ579307" - ], - "Beet_necrotic_yellow_vein_virus__I12" : [ - "AF197552", - "AF197551" - ], - "Hepatitis_B_virus__2e" : [ - "AF473543" - ], - "Soybean_mosaic_virus__Aa" : [ - "AB100442" - ], - "Human_immunodeficiency_virus_1__WC10P_6" : [ - "AY314048" - ], - "Human_immunodeficiency_virus_1__DR2192" : [ - "AB253713", - "AB253705", - "AB253708", - "AB253703", - "AB253712", - "AB253714", - "AB253709", - "AB253711", - "AB253706", - "AB253710", - "AB253704", - "AB253715", - "AB253716", - "AB253707" - ], - "Hepatitis_B_virus__I53" : [ - "FJ562237" - ], - "Hepatitis_B_virus_1456_6" : [ - "KR014066" - ], - "Hepatitis_delta_virus__D37_A" : [ - "KJ744243" - ], - "JC_polyomavirus__N2" : [ - "AB048574" - ], - "African_cassava_mosaic_virus__TD_TD3A_08" : [ - "KJ888098" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_18_2010" : [ - "KF430201" - ], - "Southern_bean_mosaic_virus__Sao_Paulo" : [ - "NC_004060" - ], - "Papaya_leaf_crumple_virus__MJS2" : [ - "KR071789" - ], - "Hydrogenobaculum_HO" : [ - "NC_020411" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2400_2007" : [ - "FJ850092" - ], - "Goutanap_virus_F33_CI_2004" : [ - "NC_025357" - ], - "Banana_bract_mosaic_virus" : [ - "NC_009745" - ], - "Puumala_virus_Puu_Kazan" : [ - "Z84204", - "Z84205" - ], - "Feline_coronavirus_Felis_catus_NLD_UU67_2010" : [ - "KF530125" - ], - "Tomato_infectious_chlorosis_virus__TICV_CA4" : [ - "FJ542306", - "JQ973706" - ], - "Porcine_circovirus_2__PCV_38" : [ - "KC515020" - ], - "Enterovirus_A71_Fuyang_0805a" : [ - "HQ188292" - ], - "Steller_sea_lion_vesivirus_V810_SSL2002_379SE" : [ - "EF193004" - ], - "Hepatitis_B_virus__HBV007" : [ - "JN688678" - ], - "Human_papillomavirus_type_52__Qv02575" : [ - "HQ537748" - ], - "Hepatitis_B_virus__No5" : [ - "AB697490" - ], - "Lumpy_skin_disease_virus_NW_LW__Neethling_Warmbaths_LW" : [ - "AF409137" - ], - "Respiratory_syncytial_virus" : [ - "BD137598", - "BD081930", - "BD137602", - "BD081928", - "BD081932", - "BD271635", - "BD091237", - "BD137599", - "BD137600", - "BD081931", - "BD137603", - "BD081927", - "BD081929", - "BD137601", - "BD271636" - ], - "Human_immunodeficiency_virus_1__CH131_TF" : [ - "KC156114" - ], - "JC_polyomavirus_716A" : [ - "AF300966" - ], - "Tobacco_leaf_curl_Yunnan_virus_associated_DNA_1__Y273" : [ - "AJ888454" - ], - "Beet_curly_top_Iran_virus__Yazd___Yazd" : [ - "EU273816" - ], - "Murine_pneumotropic_virus_Kilham__ATCC_45028" : [ - "EF186666" - ], - "Tomato_leaf_curl_China_betasatellite__Y136_2" : [ - "AJ536626" - ], - "Hepatitis_B_virus_616_93" : [ - "DQ986375" - ], - "Hepatitis_delta_virus_Miyako_JA_M5" : [ - "AB118821" - ], - "Tobacco_bushy_top_virus__JC" : [ - "KM016224" - ], - "Porcine_circovirus_2__Ciego_de_Avila_10" : [ - "FN687841" - ], - "Kitasatospora_setae_KM_6054" : [ - "NC_016109" - ], - "Sacbrood_virus__AmSBV_Viet4" : [ - "KM884993" - ], - "Porcine_circovirus_2_Ww" : [ - "DQ322701" - ], - "Duck_Tembusu_virus_GD3325" : [ - "KR604786" - ], - "Rotavirus_A__RVA_Human_wt_DEN_W21578_2010_G9P_8" : [ - "KP013455" - ], - "Measles_virus_SSPE_Kobe_1" : [ - "AB254456" - ], - "Hepatitis_B_virus__SHB78" : [ - "KJ598744" - ], - "Hepatitis_B_virus__HBV_MDQ24" : [ - "JQ272887" - ], - "Duck_hepatitis_A_virus_GHZ04" : [ - "FJ496339" - ], - "Norovirus_Hu_GII_4_Ehime3_2008_JP_Hu_GII_4_Ehime3_2008_JP" : [ - "AB541240" - ], - "Human_metapneumovirus__CAN97_83" : [ - "NC_004148" - ], - "Minute_virus_of_mice" : [ - "X02481" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1_6P20_2010_c1_6P20" : [ - "KF514413" - ], - "Newcastle_disease_virus_Du_CH_LGD_358_2011" : [ - "KM885168" - ], - "Japanese_encephalitis_virus_SA14" : [ - "JEVSAV" - ], - "Ageratum_leaf_curl_Cameroon_betasatellite__AL2B2" : [ - "FN298808" - ], - "Hepatitis_B_virus__TK28" : [ - "JF754624" - ], - "Hepatitis_B_virus__Ag44" : [ - "KJ843204" - ], - "Human_poliovirus_2_NIE1218417" : [ - "KJ170562" - ], - "Narcissus_yellow_stripe_virus__Marijiniup_3" : [ - "JQ395042" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_15__AHEaCV_15_NZ_3424C2_2012" : [ - "KM874337" - ], - "Hepatitis_B_virus__Ag36" : [ - "KJ843197" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1684_2007" : [ - "FJ390385" - ], - "Human_T_lymphotropic_virus_2__G2" : [ - "AF074965" - ], - "Porcine_circovirus_2_JiangYan_boar0710" : [ - "EU503035" - ], - "Foot_and_mouth_disease_virus___type_A_A_Uruguay_2001_A_uruguay_2001_iso98" : [ - "AY593802" - ], - "Watermelon_chlorotic_stunt_virus_Jordan_WmCSV_JOR" : [ - "EU561237" - ], - "Human_poliovirus_1__10092c" : [ - "FJ859061" - ], - "Hepatitis_B_virus__2093" : [ - "FJ386617" - ], - "Carrot_mottle_virus__Weddel" : [ - "NC_011515" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4746_2009" : [ - "JF937631" - ], - "Hepatitis_B_virus__MY604675" : [ - "KJ803802" - ], - "Marburg_marburgvirus_Uganda_331Bat2007_811276" : [ - "FJ750959" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLA4032_2008_A" : [ - "KJ627386" - ], - "Human_enterovirus_C99__HT_XEBGH09F_XJ_CHN_2011" : [ - "KF129411" - ], - "BK_polyomavirus__NAR_15" : [ - "AB365133" - ], - "Hepatitis_B_virus__I174" : [ - "FJ562298" - ], - "Fujinami_sarcoma_virus" : [ - "NC_001403", - "ACF" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1590_2004" : [ - "FJ373304" - ], - "Human_bocavirus__KU3" : [ - "JQ411251" - ], - "West_Nile_virus__WNV_1_US_BID_V4191_2000" : [ - "HM488129" - ], - "Hepatitis_C_virus__QC87" : [ - "KJ439782" - ], - "Squash_leaf_curl_virus__IL2_74" : [ - "KM595115" - ], - "Hepatitis_B_virus__bne9439" : [ - "FN594764" - ], - "East_African_cassava_mosaic_virus__EACMV__K313" : [ - "AJ717549" - ], - "West_Nile_virus__WNV_1_US_BID_V4195_2001" : [ - "HM488133" - ], - "SARS_coronavirus_HKU_39849_HKU_39849_TCVSP_HARROD_00002" : [ - "GU553364" - ], - "Lake_Victoria_marburgvirus___Ci67" : [ - "EF446132" - ], - "Bluetongue_virus_20_RSArrrr_20" : [ - "AM900380" - ], - "Hepatitis_B_virus__A56" : [ - "FJ904412" - ], - "Potato_virus_Y_NTN_NTNHIR3" : [ - "AB711143" - ], - "Nocardia_phage_NBR1" : [ - "NC_016569" - ], - "Porcine_circovirus_2__PCV_45" : [ - "KC514989" - ], - "Porcine_circovirus_2_MDJ" : [ - "HM038031" - ], - "Soybean_dwarf_virus_severe_type_HS99_5" : [ - "AB076038" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Bazega_Okra" : [ - "FN554540" - ], - "Porcine_circovirus_2_09SX123" : [ - "HQ395044" - ], - "Newcastle_disease_virus__NDV_P05" : [ - "HM117720" - ], - "Human_papillomavirus_type_48" : [ - "NC_001690" - ], - "Hepatitis_B_virus__MOD_4609" : [ - "GQ183480" - ], - "Duck_hepatitis_virus_2_strain_04G_04G" : [ - "EF067923" - ], - "Kadipiro_virus_YN0557" : [ - "FJ159105" - ], - "Maize_streak_virus__MSV_A_ZW_Mas3_Mic5_1993" : [ - "FJ882144" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3887_2008" : [ - "GU131717" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kamboinse_Okra2" : [ - "FN554539" - ], - "Porcine_circovirus_2_TJ" : [ - "AY181946" - ], - "Porcine_circovirus_2__PCV_Y22" : [ - "KC515014" - ], - "Dengue_virus_3__DENV_3_PE_BID_V6167_2002" : [ - "KJ189258" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota78_2013" : [ - "KJ645673" - ], - "Dengue_virus_1_03881_92" : [ - "JN638343" - ], - "Hepatitis_B_virus_99_7" : [ - "KR013892" - ], - "Plum_pox_virus_PPV_D_3_30_RB_GF_IVIA" : [ - "KJ849228" - ], - "Culex_pipiens_densovirus" : [ - "NC_012685" - ], - "Vibrio_phage_KSF_1phi" : [ - "NC_006294" - ], - "Hepatitis_B_virus__490_00_3" : [ - "EU871985" - ], - "Dengue_virus_2__ACS721" : [ - "JX286521" - ], - "Escherichia_coli_ED1a" : [ - "NC_011745" - ], - "Anabaena_variabilis_ATCC_29413" : [ - "NC_007410", - "NC_007412", - "NC_007411", - "NC_007413", - "NC_014000" - ], - "Canine_minute_virus_HM_6" : [ - "AB158475" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4263_1" : [ - "KR105227" - ], - "Enterobacteria_phage_K1F" : [ - "NC_007456", - "AM084414" - ], - "Human_respiratory_syncytial_virus_A_WI_629_21_07" : [ - "JF920051" - ], - "Hepatitis_A_virus__TangerangA07_55" : [ - "AB839697" - ], - "Porcine_circovirus_2__DK438case" : [ - "EF565352" - ], - "Cauliflower_mosaic_virus__IRNMM1" : [ - "JX912263" - ], - "Brucella_phage_Fz" : [ - "KC556894" - ], - "MW_polyomavirus_QLDMW02" : [ - "KC549586" - ], - "Human_parainfluenza_virus_3_HPIV3_FRA_31084077_2011" : [ - "KF687355" - ], - "Potato_virus_Y__N_O_L56" : [ - "AY745492" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_5" : [ - "EU384610" - ], - "Wheat_dwarf_virus__Rye4_6" : [ - "KJ473706" - ], - "Human_papillomavirus_type_120__CL3857" : [ - "GQ845442" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_85E_107_01_1985" : [ - "KP258700" - ], - "African_cassava_mosaic_virus__CF_CF92AN_07" : [ - "KJ887787" - ], - "Hepatitis_A_virus__CF53_Berne" : [ - "AY644676" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SD16" : [ - "JX087437" - ], - "Pepper_leaf_curl_virus_isolate_Varanasi__Varanasi" : [ - "EF190217" - ], - "Cellulophaga_phage_phi47_1_phi47_1" : [ - "KC821634" - ], - "Yellow_fever_virus_vaccine_strain_17DD" : [ - "YFU17066" - ], - "Bacillus_halodurans_C_125" : [ - "NC_002570" - ], - "JC_polyomavirus__JCV173FLC_06" : [ - "JF424960" - ], - "Grapevine_Anatolian_ringspot_virus" : [ - "NC_018384" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2957_2003" : [ - "FJ898452" - ], - "Lactobacillus_phage_Lrm1_M_1" : [ - "NC_011104" - ], - "Human_papillomavirus_type_200__HPV200" : [ - "KP692114" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0114" : [ - "KP759596" - ], - "Bovine_viral_diarrhea_virus_3__Italy_68_13cp" : [ - "KJ627180" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141227" : [ - "KR653303" - ], - "Beet_necrotic_yellow_vein_virus__Kas3" : [ - "AF197557", - "AF197556" - ], - "Human_mastadenovirus_C_human_USA_ak31_AdV6_2007_6_P6H6F6" : [ - "JX423389" - ], - "Chikungunya_virus_K0146_95" : [ - "HM045802" - ], - "Pyrococcus_abyssi_GE5" : [ - "NC_000868", - "NC_001773" - ], - "Dengue_virus_1__DENV_1_US_BID_V2128_1995" : [ - "FJ410180" - ], - "Hepatitis_B_virus__C34" : [ - "EU939660" - ], - "Staphylococcus_phage_P954" : [ - "NC_013195" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2758_2007" : [ - "GQ199782" - ], - "Synechococcus_phage_ACG_2014e__Syn7803C85" : [ - "KJ019054" - ], - "Edwardsiella_phage_GF_2" : [ - "NC_026611" - ], - "Bovine_hungarovirus_1_BHUV1_2008_HUN" : [ - "NC_018668" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V1704_2007" : [ - "FJ024086" - ], - "Sweet_potato_chlorotic_stunt_virus_West_African_Chongqing_12_8" : [ - "KC888966" - ], - "Hepatitis_B_virus__H1357_05" : [ - "FJ882613" - ], - "Dengue_virus_2__DENV2_QR94" : [ - "JX966379" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta_SC327_7" : [ - "KC427276" - ], - "Beak_and_feather_disease_virus__BFDV_PT08_2" : [ - "GQ120621" - ], - "Hepatitis_B_virus__C104" : [ - "EU939571" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4151_1" : [ - "KR105215" - ], - "Duck_hepatitis_A_virus_ZJ" : [ - "EU841005" - ], - "Cucumber_mosaic_virus_satellite_RNA_PoSA3" : [ - "AB448701" - ], - "Enterovirus_A71_cmuh_050530_5" : [ - "HM807310" - ], - "Porcine_epidemic_diarrhea_virus_GDS01" : [ - "KM089829" - ], - "Streptomyces_rapamycinicus_NRRL_5491" : [ - "NC_022785" - ], - "African_cassava_mosaic_virus__CF_CF161AB_08" : [ - "KJ887810" - ], - "Bat_SARS_CoV_Rf1_2004__Rf1" : [ - "DQ412042" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00091_1986_NEW_P62H33F17" : [ - "KF268322" - ], - "Human_immunodeficiency_virus_1__J11232" : [ - "EU697905" - ], - "Coxsackievirus_A6__TW_295_09" : [ - "JQ946052" - ], - "St__Augustine_decline_satellite_virus" : [ - "NC_005099" - ], - "Chickpea_chlorosis_Australia_virus__3460E" : [ - "KC172689" - ], - "Porcine_circovirus_2__YC60711" : [ - "FJ158605" - ], - "Mungbean_yellow_mosaic_India_virus_Indonesia__Bogor" : [ - "JN368440", - "JN368432" - ], - "Hepatitis_B_virus__EN32_CHB" : [ - "JN664924" - ], - "Sida_yellow_mosaic_virus__Brazil" : [ - "NC_004639" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_CFI1587_2012" : [ - "KJ672584" - ], - "Wheat_dwarf_virus__HUNGARY_MO10_3" : [ - "JQ647469" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT03B38_2005" : [ - "JF909163" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3985_2008" : [ - "GU131758" - ], - "Rabies_virus__1350KRA" : [ - "JQ944705" - ], - "Human_immunodeficiency_virus_1__0647SV" : [ - "JF804811" - ], - "Yellow_fever_virus_French_neurotropic_virus" : [ - "YFU21055" - ], - "Tomato_leaf_curl_New_Delhi_virus__ToLCNDV_AVT1" : [ - "AY428769" - ], - "Human_papillomavirus_type_6__42" : [ - "HG793850" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3578_2007" : [ - "GU131842" - ], - "Human_poliovirus_3_NIE1118534" : [ - "KJ170637" - ], - "WU_Polyomavirus_WU_Wuerzburg_01_06" : [ - "EU711055" - ], - "Simian_immunodeficiency_virus_SIVdebCM5" : [ - "AY523866" - ], - "Clostridium_saccharoperbutylacetonicum_ATCC_27021" : [ - "NC_020291", - "NC_020292" - ], - "Hepatitis_B_virus__D_NZL_CH02_1984" : [ - "HQ700447" - ], - "Maize_streak_virus__MSV_A_CF_Boss2_Car35_2008" : [ - "HQ693315" - ], - "SFTS_virus_HNXY_293_HNXY_293" : [ - "KC292330", - "KC292276", - "KC292303" - ], - "West_Nile_virus__WNV_1_US_BID_V5197_2006" : [ - "JF920730" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2726_2007" : [ - "FJ898374" - ], - "Maracuja_mosaic_virus" : [ - "NC_008716" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8436_2001" : [ - "KJ627686" - ], - "Broad_bean_wilt_virus_1__Ben" : [ - "AY781171", - "AY781172" - ], - "Beet_soil_borne_mosaic_virus__EA" : [ - "NC_003503", - "NC_003508", - "NC_003507", - "NC_003506" - ], - "Deinococcus_proteolyticus_MRP" : [ - "NC_015161", - "NC_015169", - "NC_015163", - "NC_015162", - "NC_015170" - ], - "Human_immunodeficiency_virus_1__CH293_w8b" : [ - "KC156217" - ], - "Middle_East_respiratory_syndrome_coronavirus_Hu_Riyadh_KSA_2049_2015" : [ - "KR011266" - ], - "Human_adenovirus_Chiba_E086_2012_Chiba_E086_2012" : [ - "AB765926" - ], - "Uukuniemi_virus__SCOT_FT_254" : [ - "KM114250", - "KM114251", - "KM114249" - ], - "Haemophilus_somnus_129PT" : [ - "NC_008309", - "NC_006298" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE7930_2010" : [ - "KJ627269" - ], - "Porcine_circovirus_2__WB_H_4" : [ - "AY874166" - ], - "Dengue_virus_2_ThNH_52_93" : [ - "AF022436" - ], - "Maize_streak_virus__MSV_A_KE_Nye1_Ken11_2008" : [ - "HQ693332" - ], - "Hepatitis_B_virus__P31" : [ - "EU859909", - "GQ477477", - "JX898696" - ], - "Measles_virus_Leningrad_16" : [ - "JF727649", - "JF727650" - ], - "Jatropha_leaf_curl_virus__New_Delhi" : [ - "NC_011268" - ], - "Hepatitis_C_virus_subtype_1a__L836PT" : [ - "EU781791" - ], - "Hepatitis_C_virus_subtype_1a__V030_BN089" : [ - "EU781809" - ], - "Mycobacterium_tuberculosis_RGTB327" : [ - "NC_017026" - ], - "Euphorbia_leaf_curl_virus__G35" : [ - "NC_005319" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7604_2008" : [ - "KJ189335" - ], - "Malvastrum_leaf_curl_Philippines_virus__Mc1" : [ - "NC_021245" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141123" : [ - "KR653291" - ], - "Canine_parvovirus_2c__UY135" : [ - "KM457112" - ], - "Synechococcus_phage_ACG_2014c__Syn7803US88" : [ - "KJ019128" - ], - "Hepatitis_B_virus__M50" : [ - "GQ924628" - ], - "Dengue_virus_2__DC673Y12" : [ - "KM279552" - ], - "West_Nile_virus__WNV_1_US_BID_V5234_2009" : [ - "JF920759" - ], - "Japanese_encephalitis_virus__GSBY0816" : [ - "JN381842" - ], - "Human_poliovirus_3_NIE1118529" : [ - "KJ170643" - ], - "Tomato_leaf_curl_Cotabato_virus__GSD1" : [ - "NC_010441" - ], - "Porcine_bocavirus_4_2_SH17N_2" : [ - "JF429836" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V169_1996" : [ - "EU155338" - ], - "Hepatitis_E_virus__JYU_Oki04L" : [ - "AB291957" - ], - "Maize_streak_virus___A_Vaalhart_maize___VM" : [ - "AF239961" - ], - "Mycobacterium_africanum_GM041182" : [ - "NC_015758" - ], - "Porcine_circovirus_2__PCV2_XFD_Beijing" : [ - "KC447454" - ], - "Hepatitis_B_virus__C226_1" : [ - "FJ899788" - ], - "Tobacco_leaf_curl_disease_associated_sequence" : [ - "NC_005049", - "AJ316034" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD181_2013" : [ - "KM229843" - ], - "Hepatitis_B_virus__A66b" : [ - "FJ904417" - ], - "Dengue_virus_3__DENV_3_US_BID_V1477_2002" : [ - "EU854298" - ], - "Sida_yellow_mosaic_virus__China__associated_DNA_beta__Hn8" : [ - "NC_006267" - ], - "Cauliflower_mosaic_virus__TUR69" : [ - "AB863174" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9519_2013" : [ - "KJ643566" - ], - "Hepatitis_B_virus_genotype_F_VNZ8349" : [ - "AB036914" - ], - "Human_immunodeficiency_virus_1__Cu19" : [ - "AY586542" - ], - "Tomato_leaf_curl_China_virus__G32" : [ - "NC_005320" - ], - "Dengue_virus_1__HNRG37945" : [ - "KC692517" - ], - "Small_begomovirus_associated_satellite__Sa20_S26" : [ - "KJ859147" - ], - "Anaeromyxobacter_K" : [ - "NC_011145" - ], - "Hepatitis_B_virus__dww1008" : [ - "KC774436" - ], - "Human_adenovirus_30__USA_BP_7_1_1959_30__P30H30F30" : [ - "JN226755" - ], - "Hepatitis_B_virus__IND_2009_19" : [ - "KF214667" - ], - "Tomato_yellow_leaf_curl_virus_Oman__Tom_30" : [ - "KF229721" - ], - "Hepatitis_B_virus__12" : [ - "AY233293", - "EU579441" - ], - "Plum_pox_virus_PPV_D_Ou14" : [ - "AB576068" - ], - "Human_immunodeficiency_virus_1__WITO_flE10" : [ - "FJ496177" - ], - "Hepatitis_B_virus__S852_15" : [ - "EU589343" - ], - "Columbid_circovirus__JSNJ" : [ - "KJ704803" - ], - "South_African_cassava_mosaic_virus__MG_MG125A1_09" : [ - "KJ887919" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Dalaba_1211" : [ - "KR534540" - ], - "Dengue_virus_2_DENV_2_PR_24DN_1994" : [ - "GQ398279" - ], - "Chickpea_chlorotic_dwarf_virus__F_YeL6_96" : [ - "KC172673" - ], - "Hepatitis_B_virus_42096" : [ - "FN545835" - ], - "Duck_circovirus__D11_JW_024" : [ - "KC851811" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V216_1990" : [ - "EU155344" - ], - "Alcanivorax_dieselolei_B5" : [ - "NC_018691" - ], - "Kyrpidia_tusciae_DSM_2912" : [ - "NC_014098" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3752" : [ - "KM233061" - ], - "Porcine_circovirus_2__Aust3959" : [ - "EU886637" - ], - "Torque_teno_sus_virus_1a__TTV1Ln23_1" : [ - "HM633258" - ], - "Human_papillomavirus_type_52__IN141070" : [ - "HQ537743" - ], - "Rabies_virus__SM5442" : [ - "JQ685897" - ], - "Hepatitis_B_virus__cxa1076" : [ - "KC774286" - ], - "Hepatitis_B_virus__IND_1963_6" : [ - "KF214651" - ], - "Human_parainfluenza_virus_3_ZMLS_2011" : [ - "AB736166" - ], - "Tomato_common_mosaic_virus__BR_Pda32_05" : [ - "KC706582" - ], - "Enterovirus_A71_FY7VP5_AH_CHN_2008" : [ - "JX025561" - ], - "Porcine_circovirus_2_PT_20750_07" : [ - "HQ831525" - ], - "Coxsackievirus_A17_BAN03_10616" : [ - "DQ995646" - ], - "Hepatitis_B_virus__B1_4" : [ - "GU815585" - ], - "Teredinibacter_turnerae_T7901" : [ - "NC_012997" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT02A06_2005" : [ - "JF909230" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1664_2007" : [ - "FJ182032" - ], - "Chikungunya_virus_SL11131" : [ - "AB455493" - ], - "West_Nile_virus_Chin_01" : [ - "AY490240" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_CWZ_1_F3" : [ - "FJ889130" - ], - "Hepatitis_B_virus_593_4" : [ - "KR013991" - ], - "Bovine_viral_diarrhea_virus_3_Italy_129_07" : [ - "KC788748" - ], - "Potato_latent_virus" : [ - "NC_011525" - ], - "Streptococcus_I_G2" : [ - "NC_022584" - ], - "BK_polyomavirus__FIN_4" : [ - "AB260034" - ], - "Enterovirus_D68__Beijing_R0132" : [ - "KP240936" - ], - "Maize_streak_virus__MSV_A_ZA_Hec2_O11_1989" : [ - "FJ882110" - ], - "Dengue_virus_2__DENV_2_US_BID_V1494_2004" : [ - "EU687242" - ], - "European_mountain_ash_ringspot_associated_virus__E53120" : [ - "HG799729" - ], - "Cymbidium_mosaic_virus__plm1" : [ - "AM055720" - ], - "Japanese_encephalitis_virus__M28" : [ - "JF706279" - ], - "Aeromonas_phage_Aes012" : [ - "NC_020879" - ], - "Beak_and_feather_disease_virus__BFDV_NC13_27" : [ - "KF768548" - ], - "Murine_norovirus_GV_CR6_2005_USA__Mu_NoV_GV_CR6_2005_USA" : [ - "EU004676" - ], - "Dengue_virus_3__DENV_3_US_BID_V2123_2002" : [ - "FJ478456" - ], - "West_Nile_virus__WNV_1_US_BID_V4585_2003" : [ - "HM488219" - ], - "Sewage_associated_circular_DNA_molecule__SaCM_8_NZ_BS3610_2012" : [ - "KM877830" - ], - "Hepatitis_B_virus__F3_6" : [ - "GU815743" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC16B00_2004" : [ - "JF909095" - ], - "Human_immunodeficiency_virus_1__00JPDR2508B" : [ - "AB289587", - "AB289588" - ], - "Human_papillomavirus_type_6__LP26" : [ - "FR751320" - ], - "Torque_teno_virus_3_HEL32" : [ - "NC_014081" - ], - "Human_immunodeficiency_virus_1__WEAU_flA11" : [ - "FJ496158" - ], - "Human_papillomavirus_type_6__27" : [ - "HG793835" - ], - "Human_immunodeficiency_virus_1__03ZASK048B2" : [ - "DQ164128" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD180_2013" : [ - "KM229842" - ], - "West_Nile_virus__WNV_1_US_BID_V5225_2008" : [ - "JF920753" - ], - "Wallal_virus__927" : [ - "NC_022558", - "NC_022559", - "NC_022560", - "NC_022553", - "NC_022554", - "NC_022562", - "NC_022555", - "NC_022561", - "NC_022557", - "NC_022556" - ], - "Porcine_epidemic_diarrhea_virus_USA_Illinois98_2013" : [ - "KJ645690" - ], - "Dengue_virus_1__DENV_1_US_BID_V2140_1996" : [ - "FJ410189" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2922_2007" : [ - "FJ898479" - ], - "Human_mastadenovirus_B_human_EGY_ak37_AdV11a_2001_55_P14H11F14" : [ - "JX423385" - ], - "West_Nile_virus__Ast99_901" : [ - "AY278441" - ], - "Newcastle_disease_virus__Chicken_China_Xinjiang_01_2007" : [ - "KC542896" - ], - "Hepatitis_B_virus_327_6" : [ - "KR013775" - ], - "Potato_leafroll_virus__PLRV_IM" : [ - "KC456052" - ], - "Porcine_circovirus_2__BJ0901a" : [ - "GU001709" - ], - "Hepatitis_B_virus__P94" : [ - "GQ477496" - ], - "Feline_foamy_virus_Chatul_2" : [ - "AJ564745" - ], - "BK_polyomavirus__BKV_HI_u8" : [ - "AY628238" - ], - "Human_poliovirus_1_USA10783" : [ - "EF682358" - ], - "Asterionellopsis_glacialis_RNA_virus__AglaRNAV" : [ - "NC_024489" - ], - "Hepatitis_B_virus__HBV_I_020_HIV_HBV" : [ - "KM524351" - ], - "Human_immunodeficiency_virus_1_ES_X2456_2" : [ - "FJ670526" - ], - "Squash_leaf_curl_virus__JO3_116" : [ - "KM595200" - ], - "Human_immunodeficiency_virus_1__04013226_2_flB10" : [ - "FJ496074" - ], - "Sacbrood_virus_AmSBV_Kor2" : [ - "KP296801" - ], - "Enterovirus_A71_BJ303" : [ - "HM002487" - ], - "secondary_endosymbiont_of_Ctenarytaina_eucalypti" : [ - "NC_018419" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3950_2008" : [ - "JN000935" - ], - "Hepatitis_C_virus__QC115" : [ - "JF735124" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_Cau2_09" : [ - "HQ393463" - ], - "Dengue_virus_1__DENV_1_VN_BID_V946_2007" : [ - "EU482491" - ], - "Enterobacteria_phage_S13__Anc" : [ - "AF274751" - ], - "Bacillus_anthracis_Sterne" : [ - "NC_005945" - ], - "JC_polyomavirus__JCV183FLC_16" : [ - "JF425502" - ], - "Salmonella_enterica_serovar_Typhimurium_LT2" : [ - "NC_003197", - "NC_003277" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B157_2008" : [ - "GU936289" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dav_alpha_22" : [ - "EU384630" - ], - "West_Nile_virus__WNV_1_US_BID_V6196_2009" : [ - "KJ501250" - ], - "Gremmeniella_abietina_type_B_RNA_virus_XL1__AU58" : [ - "NC_007920" - ], - "Munia_coronavirus_HKU13_3514" : [ - "NC_011550" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K238" : [ - "AJ717577", - "AJ704969" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3591_2007" : [ - "GU131870" - ], - "Bluetongue_virus__South_Africa" : [ - "FJ969720", - "BTVVP6", - "FJ969719", - "FJ969725", - "FJ969723", - "FJ969728", - "FJ969724", - "FJ969726", - "FJ969721", - "FJ969722", - "FJ969727" - ], - "Aichi_virus_1__Goiania_GO_03_01_Brazil" : [ - "DQ028632" - ], - "Human_immunodeficiency_virus_1__CH58E_flA1" : [ - "FJ495937" - ], - "Hepatitis_B_virus__SHB614" : [ - "KJ598729" - ], - "West_Nile_virus__WNV_1_US_BID_V7400_2007" : [ - "KJ501112" - ], - "Escherichia_coli_B_REL606" : [ - "NC_012967" - ], - "Reticuloendotheliosis_virus_SNV" : [ - "DQ003591" - ], - "Hepatitis_B_virus__204_1113_Nature1_1_unSero" : [ - "DQ993690" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5494_2010" : [ - "JF937646" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__1312" : [ - "KF444100" - ], - "Hepatitis_B_virus__D3_10" : [ - "GU815667" - ], - "BK_polyomavirus__SHA_10" : [ - "AB365161" - ], - "Hepatitis_B_virus__HK515" : [ - "DQ089761" - ], - "Dengue_virus_1__HNRG14635" : [ - "KC692509" - ], - "Human_immunodeficiency_virus_1__03ZASK226B1" : [ - "DQ164108" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0047" : [ - "KP759632" - ], - "West_Nile_virus_Greece_2013_Xanthi_2" : [ - "KJ883344" - ], - "Squash_leaf_curl_virus__JO3_127" : [ - "KM595203" - ], - "Hepatitis_B_virus__Irish_13" : [ - "DQ991753" - ], - "Bat_hepatitis_virus__M005" : [ - "JX941467" - ], - "Enterovirus_A71_BJ398" : [ - "HM002489" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B127_2008" : [ - "GU936296" - ], - "Pseudomonas_phage_RWG" : [ - "KM411958" - ], - "Hepatitis_B_virus__D_KI191P_2004" : [ - "HQ700537" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5_2P20_2010_c5_2P20" : [ - "KF514405" - ], - "Rotavirus_A_RVA_Human_wt_IND_N138_2003_G10P_11" : [ - "KC174926", - "KC174917" - ], - "Porcine_circovirus_2_PM168" : [ - "KJ094603" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_1232_2011" : [ - "JX221007" - ], - "Human_immunodeficiency_virus_1__97VNAG212" : [ - "FJ185252" - ], - "Dengue_virus_2__DENV_2_NI_BID_V618_2005" : [ - "EU482599" - ], - "Cucumber_mosaic_virus_satellite_RNA_CMV_TFN" : [ - "X65455" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3881_2008" : [ - "GU131713" - ], - "Enterobacteria_phage_If1" : [ - "NC_001954" - ], - "Human_herpesvirus_5_BE_15_2012" : [ - "KP745693" - ], - "Hepatitis_B_virus__MY502457" : [ - "KJ803824" - ], - "Human_poliovirus_2__CHN1054" : [ - "HM107832" - ], - "West_Nile_virus__WNV_1_US_BID_V5157_2009" : [ - "JF488095" - ], - "Human_immunodeficiency_virus_1__JRC03B" : [ - "AB565496", - "AB565495" - ], - "Hepatitis_B_virus__Cuba53a" : [ - "KM606741" - ], - "Hepatitis_B_virus__4007_0810_Nature2_1_unSero" : [ - "DQ993692" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2464_2007" : [ - "FJ850102" - ], - "Soybean_mosaic_virus__WS155" : [ - "FJ640970" - ], - "Tomato_leaf_curl_Vietnam_virus" : [ - "DQ641705", - "NC_004153" - ], - "Azospirillum_lipoferum_4B" : [ - "NC_016588", - "NC_016585", - "NC_016587", - "NC_016624", - "NC_016622", - "NC_016623", - "NC_016586" - ], - "Klebsiella_variicola_At_22" : [ - "NC_013850" - ], - "Borna_disease_virus_CRP3B" : [ - "AY114162" - ], - "Foot_and_mouth_disease_virus___type_O__persistent_OUKG_49dpc" : [ - "KR265072" - ], - "Foot_and_mouth_disease_virus___type_A_A24_Cruzeiro_a24cruzeiro_iso71" : [ - "AY593768" - ], - "Pseudoalteromonas_phage_PM2" : [ - "NC_000867" - ], - "Bacillus_cereus_Q1" : [ - "NC_011969", - "NC_011973", - "NC_011971" - ], - "Enterococcus_faecalis_OG1RF" : [ - "NC_017316" - ], - "Delftia_Cs1_4" : [ - "NC_015563" - ], - "Porcine_circovirus_2_SNUVR130689" : [ - "KJ133547" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC21AT2_2004" : [ - "JF909098" - ], - "Tomato_leaf_curl_Bangalore_virus_Cotton__Fatehabad" : [ - "AY456684" - ], - "FTLS_virus__YSC3" : [ - "KF356535", - "KF356547", - "KF356523" - ], - "Cotton_leaf_curl_Gezira_betasatellite__BF_Kap_Okra3" : [ - "FN554576" - ], - "Tomato_leaf_curl_China_betasatellite__G103" : [ - "AM050557" - ], - "Cotton_leaf_curl_Multan_virus__GX21" : [ - "HQ455357" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c13P1_2009_c13P1" : [ - "KF514406" - ], - "Commelina_yellow_mottle_virus" : [ - "NC_001343" - ], - "Human_polyomavirus_6__607a" : [ - "NC_014406" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__Asia1_YS_CHA_05" : [ - "GU931682" - ], - "Venezuelan_equine_encephalitis_virus_MX01_22" : [ - "AY823299" - ], - "Banana_bunchy_top_virus__TO124" : [ - "JF957627", - "JF957687", - "JF957651", - "JF957663", - "JF957675", - "JF957639" - ], - "Coxsackievirus_A6__TW_399_10" : [ - "JQ946054" - ], - "Hepatitis_B_virus__N203C_e406" : [ - "KJ173421" - ], - "Dengue_virus_2__DC389Y11" : [ - "KM279582" - ], - "Enterovirus_A90__F950027" : [ - "AY773285" - ], - "Porcine_circovirus_2__GRE_3" : [ - "DQ915587" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P3pp53" : [ - "FJ882956" - ], - "Rubella_virus_RVi_HoChiMinh_VNM_5_12_RVV128_2B_CRS_RVV128_vero_22w" : [ - "AB928203" - ], - "Hepatitis_B_virus__I95" : [ - "FJ562256" - ], - "Helicoverpa_SNPV_AC53_AC53" : [ - "NC_024688" - ], - "Hepatitis_B_virus__cxa2052" : [ - "KC774321" - ], - "Coxsackievirus_A4_CVA4_SZ_CHN_09" : [ - "HQ728260" - ], - "Citrobacter_koseri_ATCC_BAA_895" : [ - "NC_009793", - "NC_009794", - "NC_009792" - ], - "Heliconius_erato_iflavirus_HeratoCRSEC" : [ - "NC_024016" - ], - "Lactococcus_Phage_ASCC284" : [ - "JQ740790" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_SriGanganagar_2005" : [ - "JF502375" - ], - "Human_bocavirus_FZ40" : [ - "GQ455987" - ], - "South_African_cassava_mosaic_virus__MG_MG698A1_11" : [ - "KJ887745" - ], - "Hepatitis_B_virus_HBV_P5" : [ - "KC510643" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG656A2_11" : [ - "KJ888087" - ], - "Potato_virus_Y__GBVC_PVY_34_N_Wi" : [ - "JQ969041" - ], - "Hepatitis_B_virus_1346_30" : [ - "KR014039" - ], - "Acidiphilium_cryptum_JF_5" : [ - "NC_009472", - "NC_009484", - "NC_009470", - "NC_009468", - "NC_009474", - "NC_009471", - "NC_009469", - "NC_009473", - "NC_009467" - ], - "Maize_streak_virus__MSV_A_CF_Bang1_Car39_2008" : [ - "HQ693295" - ], - "Dengue_virus_2_Jamaica_N_1409" : [ - "DEN2JAMCG" - ], - "Japanese_encephalitis_virus_CH1392" : [ - "AF254452" - ], - "Wheat_dwarf_virus__HNZZ08_4" : [ - "KJ536093" - ], - "JC_polyomavirus__JCV144_47" : [ - "JF424893" - ], - "Cotton_leaf_curl_Multan_virus__Faisalabad1__Pakistan" : [ - "X98995" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8614_2010" : [ - "KJ627270" - ], - "Equid_herpesvirus_9_P19" : [ - "NC_011644" - ], - "Human_poliovirus_3_NIE1218536" : [ - "KJ170605" - ], - "Japanese_encephalitis_virus_JaOAr72" : [ - "AB569990" - ], - "Human_papillomavirus_type_58_CNZJ_1" : [ - "KC860269" - ], - "Hepatitis_B_virus__clz2144" : [ - "KC774219" - ], - "Human_bocavirus__2011GZ8500" : [ - "KJ684067" - ], - "Dengue_virus_1__DENV_1_VN_BID_V823_2006" : [ - "EU482817" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_142_2012" : [ - "KJ686216" - ], - "Tomato_spotted_wilt_virus__SPAIN_1" : [ - "AY744492", - "AY744479" - ], - "Papaya_ringspot_virus__PRSV_HNVb" : [ - "KF791028" - ], - "Fig_badnavirus_1__Arkansas_1" : [ - "NC_017830" - ], - "Blainvillea_yellow_spot_virus__BR_Rla5_10" : [ - "JX871391" - ], - "Human_polyomavirus_6__QLD_61Br" : [ - "KM655817" - ], - "Hepatitis_B_virus__I217" : [ - "FJ562323" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2763_2007" : [ - "GQ199787" - ], - "Burkholderia_phage_BcepB1A" : [ - "NC_005886" - ], - "Tomato_yellow_leaf_curl_virus_HNWH" : [ - "JQ038237" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLU5725_2007" : [ - "KJ627352" - ], - "Tick_borne_encephalitis_virus_Tomsk_M202" : [ - "KJ914683" - ], - "Hepatitis_B_virus__IND_1963_2" : [ - "KF214679" - ], - "Sewage_associated_circular_DNA_virus_28__SaCV_28_NZ_BS4064a_2012" : [ - "NC_026273" - ], - "Sebaldella_termitidis_ATCC_33386" : [ - "NC_013518", - "NC_013519", - "NC_013517" - ], - "Tomato_leaf_curl_China_betasatellite__Y64" : [ - "AJ421483" - ], - "Hepatitis_B_virus__FF11" : [ - "KF485390" - ], - "Wheat_dwarf_virus__SXHC07_19" : [ - "KJ536110" - ], - "Hepatitis_B_virus__B1_3" : [ - "GU815584" - ], - "Chikungunya_virus_RSU1" : [ - "HM045797" - ], - "Hepatitis_B_virus__EN13_LC" : [ - "JN664944" - ], - "Maize_dwarf_mosaic_virus__SP" : [ - "AM110758" - ], - "Oropouche_virus__BeH759022" : [ - "KP691610", - "KP691609" - ], - "Hepatitis_B_virus__G3_2" : [ - "GU815777" - ], - "Acidianus_rod_shaped_virus_1" : [ - "NC_009965" - ], - "Rabies_virus__CQ92" : [ - "GU345746" - ], - "Hepatitis_B_virus__PNF5187" : [ - "KF779357" - ], - "West_Nile_virus__WNV_1_Gallus_BID_V4958_kidney" : [ - "HQ671691" - ], - "Human_adenovirus_29__BP6" : [ - "AB562587" - ], - "African_cassava_mosaic_virus__ACMV_Ybi3_Cm" : [ - "FN435277" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1582_2007" : [ - "FJ024441" - ], - "Dengue_virus_3__339_BR_PE_05" : [ - "JX669493" - ], - "Hepatitis_B_virus__EICI_37" : [ - "KF679995" - ], - "Soybean_mosaic_virus__WS116" : [ - "FJ640961" - ], - "Human_rhinovirus_A55" : [ - "DQ473511" - ], - "Human_adenovirus_56" : [ - "HM770721" - ], - "Hepatitis_B_virus_3782_91" : [ - "EU594388" - ], - "Bluetongue_virus_2__SUD1985_01" : [ - "AJ586666" - ], - "Lactococcus_Phage_ASCC497" : [ - "JQ740808" - ], - "Beak_and_feather_disease_virus__6IT09" : [ - "KF723384" - ], - "Bacteroides_fragilis_638R" : [ - "NC_016776" - ], - "Dengue_virus_3_C0360_94" : [ - "KJ737429", - "AY923865" - ], - "Vibrio_cholerae_M66_2" : [ - "NC_012578", - "NC_012580" - ], - "Citrus_mosaic_sadwavirus_strain_ND_1__ND_1" : [ - "AB465582" - ], - "Prevotella_oral_taxon_299_F0039" : [ - "NC_022124", - "NC_022111" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9863_2010" : [ - "KJ627275" - ], - "Bluetongue_virus_23__IND1997_01" : [ - "AJ586728" - ], - "Maize_streak_virus__MSV_A_GH_gh123_Bes_2010" : [ - "KJ699315" - ], - "Hepatitis_B_virus__A2_8" : [ - "GU815567" - ], - "Simian_immunodeficiency_virus__SIVmnd5440" : [ - "AY159322" - ], - "Enterovirus_A71_C4a_70365_TW_2010" : [ - "KJ186973" - ], - "Bovine_viral_diarrhea_virus_3_LVRI_cont_1" : [ - "KC297709" - ], - "Mopeia_mammarenavirus_Mozambique" : [ - "DQ328875", - "DQ328874" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V54_2004" : [ - "EU155239" - ], - "Dengue_virus_1__40604_BR_PE_97" : [ - "JX669468" - ], - "Avian_leukosis_virus_HPRS103_HPRS103__subgroup_J" : [ - "Z46390" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d2ym1" : [ - "HQ890526" - ], - "Tomato_leaf_curl_Patna_betasatellite_India_PUSA_2_2010_Pusa_Bihar" : [ - "HQ180394" - ], - "Rabbitpox_virus" : [ - "AY484669" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_OQ28" : [ - "AB627955", - "AB627952" - ], - "Malvastrum_leaf_curl_virus__Fujian" : [ - "FJ712189", - "EF554783" - ], - "Dengue_virus_3__MKS_0172" : [ - "KC762686" - ], - "Lactobacillus_casei_ATCC_334" : [ - "NC_008502", - "NC_008526" - ], - "Human_immunodeficiency_virus_1__POC44951" : [ - "AB485637", - "AB485636" - ], - "Subterranean_clover_mottle_virus_satellite_RNA" : [ - "NC_003851", - "SUVSATA" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00096_1984_NEW_P22H38F17" : [ - "KF268312" - ], - "Hepatitis_B_virus__KWgib7" : [ - "AB823659" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_131142" : [ - "KJ425501" - ], - "Rabies_virus_SAG_2" : [ - "EF206719" - ], - "Escherichia_phage_HY01" : [ - "NC_027349" - ], - "African_cassava_mosaic_Burkina_Faso_virus__BF_Oua_BF127_08" : [ - "HE616777", - "HE616778" - ], - "Cymbidium_mosaic_virus" : [ - "JQ860108", - "NC_001812", - "AB197937" - ], - "Human_poliovirus_1_NIE1118400" : [ - "KJ170492" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_LIBR0116" : [ - "KR006948" - ], - "Human_papillomavirus_type_18__CU12" : [ - "GQ180788" - ], - "Hepatitis_B_virus__S142_5" : [ - "EU589335" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Hawkeye2_After" : [ - "EF532810" - ], - "Yellow_fever_virus__ArD181250" : [ - "JX898878" - ], - "Staphylococcus_phage_phiNM_phiNM1" : [ - "NC_008583" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5511_2010" : [ - "JF937621" - ], - "Porcine_circovirus_2_SXXYB_01" : [ - "KC800643" - ], - "Puumala_virus__Puu_Virrat_25Cg_95" : [ - "Z69985" - ], - "Human_papillomavirus_type_165__KC7" : [ - "JX444072" - ], - "Hepatitis_B_virus_FMU005" : [ - "AY206376" - ], - "Tomato_common_mosaic_virus__BR_Pda55_05" : [ - "KC706587" - ], - "Infectious_pancreatic_necrosis_virus_6B1a" : [ - "AY780926", - "AY780919" - ], - "Hepatitis_B_virus_1904_99" : [ - "EU594403" - ], - "JC_polyomavirus__KB_21" : [ - "AB362357" - ], - "Chlamydia_trachomatis_RC_L2_s_46" : [ - "NC_021887" - ], - "Norovirus_Hu_GII_30199_2009_VNM_Hu_GII_30199_2009_VNM" : [ - "KC409311" - ], - "Hepatitis_C_virus__isolate_VAT96___HCV_VAT96" : [ - "AB031663" - ], - "West_Nile_virus__WNV_1_US_BID_V6453_2002" : [ - "KJ501467" - ], - "Human_immunodeficiency_virus_1__J112MA" : [ - "AY838568" - ], - "Usutu_virus_4356" : [ - "KJ438737" - ], - "Soybean_mosaic_virus__L_RB" : [ - "EU871725" - ], - "Cotton_leaf_curl_Rajasthan_virus____Sirsa_04" : [ - "AY765254" - ], - "Macroptilium_yellow_vein_virus__BR_Pai30_11" : [ - "KJ939910" - ], - "Monkeypox_virus__DRC_07_0275" : [ - "JX878419" - ], - "Hepatitis_B_virus__EICI_74" : [ - "KF679991" - ], - "Human_immunodeficiency_virus_1__WC10P_9" : [ - "AY314051" - ], - "Human_rotavirus_A_GX82" : [ - "KF447866", - "KF447863", - "KF447861", - "KF447862", - "KF447870", - "KF447869", - "KF447871", - "KF447868", - "KF447865" - ], - "Raspberry_bushy_dwarf_virus__RR_1" : [ - "EU796088" - ], - "Bluetongue_virus__BT12_JAM2016" : [ - "AY426595" - ], - "Hepatitis_B_virus__919031" : [ - "JN040803" - ], - "Pig_stool_associated_circular_ssDNA_virus__HUB2" : [ - "JX305993" - ], - "Chili_leaf_curl_virus_Oman__Tom_27" : [ - "KF229719" - ], - "Taura_syndrome_virus__Th04Lv" : [ - "AY997025" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V186_1990" : [ - "EU482850" - ], - "Human_T_lymphotropic_virus_2_IIb_patient_Gu" : [ - "X89270" - ], - "Norovirus_Hu_GII_4_Ehime2_2007_JP_Hu_GII_4_Ehime2_2007_JP" : [ - "AB541238" - ], - "Hepatitis_B_virus__IR_IPI_21" : [ - "AY741797" - ], - "Clostridium_botulinum_BKT015925" : [ - "NC_015417", - "NC_015425", - "NC_015419", - "NC_015418", - "NC_015426", - "NC_015427" - ], - "Human_immunodeficiency_virus_1__17" : [ - "EF363125" - ], - "SARS_coronavirus_BJ182_12" : [ - "EU371564" - ], - "Hepatitis_B_virus__WY_HZ_48" : [ - "JX429906" - ], - "Adeno_associated_virus___3_3H" : [ - "NC_001729" - ], - "Bean_golden_mosaic_virus__BR_Par28_12" : [ - "KJ939816" - ], - "Taura_syndrome_virus" : [ - "DQ212790", - "GQ502201", - "NC_003005" - ], - "Chickpea_chlorotic_dwarf_virus__K_ErC345_05" : [ - "KC172681" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0135" : [ - "KP759602" - ], - "Maize_streak_virus__MSV_B1_Za_Bai_g22_2006" : [ - "EU628578" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2745_2007" : [ - "GQ868608" - ], - "Tomato_leaf_curl_Sudan_virus" : [ - "EF110891" - ], - "Human_poliovirus_1_NIE1118328" : [ - "KJ170480" - ], - "Human_bocavirus__HK13" : [ - "EF450729" - ], - "Pepper_yellow_leaf_curl_Indonesia_virus__Ageratum" : [ - "AB267838", - "AB267839" - ], - "Human_poliovirus_3_NIE1118508" : [ - "KJ170603" - ], - "Tomato_yellow_leaf_curl_virus__To" : [ - "JQ013089" - ], - "Porcine_circovirus_2__HD2" : [ - "KC514969" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE8237_2010_A" : [ - "KJ627384" - ], - "Hepatitis_B_virus__N005v7" : [ - "KF922420" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C49" : [ - "KJ019032" - ], - "Hepatitis_delta_virus_dFr2380_dFr2380" : [ - "AM902173" - ], - "Hepatitis_B_virus__HBV_VT101" : [ - "AB112063" - ], - "Visna_maedi_virus_Icelandic_1514__Icelandic_LV1_1" : [ - "VLVCG" - ], - "Hantaanvirus_CGRn5310_CGRn5310" : [ - "EF990920", - "EF990906" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0051" : [ - "KP759633" - ], - "Cyanophage_PSS2_PSS2" : [ - "GU071090" - ], - "Hepatitis_B_virus__I12" : [ - "FJ562220" - ], - "Hepatitis_B_virus__09hgg" : [ - "EF464098" - ], - "Bean_common_mosaic_virus_strain_peanut_stripe__blotch" : [ - "PSU05771" - ], - "Human_immunodeficiency_virus_1__04ZAPS205B1" : [ - "DQ093599" - ], - "Human_poliovirus_2_NIE1218449" : [ - "KJ170574" - ], - "Human_poliovirus_1_NIE1018362" : [ - "KJ170441" - ], - "Tomato_leaf_curl_Bangalore_virus__18" : [ - "GU474418" - ], - "Porcine_epidemic_diarrhea_virus_USA_Iowa96_2013" : [ - "KJ645688" - ], - "African_cassava_mosaic_virus__ACMV_Ybi3_Pr" : [ - "FN435273" - ], - "Rift_Valley_fever_virus_Sudan_1_2007" : [ - "JQ840745" - ], - "West_Nile_virus_NY99_385_99" : [ - "NC_009942" - ], - "Dechloromonas_aromatica_RCB" : [ - "NC_007298" - ], - "Murine_norovirus_GV_CR7_2005_USA__Mu_NoV_GV_CR7_2005_USA" : [ - "EU004677" - ], - "Merkel_cell_polyomavirus__20b" : [ - "HM011551" - ], - "Bovine_polyomavirus" : [ - "NC_001442" - ], - "Streptococcus_gordonii_Challis_substr__CH1" : [ - "NC_009785" - ], - "Broad_bean_wilt_virus_2__BB9" : [ - "KC625508", - "KC625494" - ], - "Hepatitis_B_virus_genotype_F_VNZ8255" : [ - "AB036911" - ], - "Maize_streak_virus__MSV_A_RE_Reu_1997" : [ - "HQ693399" - ], - "Rift_Valley_fever_virus_ZM_657" : [ - "DQ380204", - "DQ380146", - "DQ375409" - ], - "Foot_and_mouth_disease_virus___type_O__O_S03KOR_2002" : [ - "KF694733" - ], - "Hepatitis_B_virus__KOR7CHB" : [ - "GQ475311" - ], - "Human_immunodeficiency_virus_1__US4" : [ - "AY173955" - ], - "Honeysuckle_yellow_vein_beta__Japan_Fukui_2001___Fukui" : [ - "NC_009449" - ], - "Hepatitis_B_virus__919033" : [ - "JN040752" - ], - "Squash_leaf_curl_virus__JO1_136" : [ - "KM595169" - ], - "Hepatitis_B_virus__patient15" : [ - "AB300373" - ], - "Hepatitis_B_virus__IND_1963_1" : [ - "KF214648" - ], - "Chikungunya_virus_RGCB80_KL07" : [ - "GQ428212" - ], - "Hepatitis_B_virus__D_NZL_MI26_1984" : [ - "HQ700466" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PAN_8138_1962_ID" : [ - "KC344471" - ], - "Lates_calcarifer_nervous_necrosis_virus_BVN4" : [ - "GU953669" - ], - "Maize_streak_virus__UHoi_158" : [ - "EF547101" - ], - "Simian_adenovirus_39" : [ - "FJ025924" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_241_2011" : [ - "KJ686200" - ], - "Porcine_circovirus_2__Uy35" : [ - "KP867046" - ], - "Hepatitis_B_virus__WHBRH1" : [ - "JN257211" - ], - "Hepatitis_B_virus_1346_8" : [ - "KR013857" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PR_50A_2008" : [ - "HM748935" - ], - "Broad_bean_wilt_virus_1" : [ - "AF225955" - ], - "Capraria_yellow_spot_Yucatan_virus" : [ - "NC_022008", - "NC_022007" - ], - "Archaeoglobus_veneficus_SNP6" : [ - "NC_015320" - ], - "Porcine_parvovirus_4" : [ - "GU978967", - "GU978964", - "GU978966", - "NC_014665", - "GU978968", - "GU978965" - ], - "Feline_calicivirus_FCV_DD_2006_GE" : [ - "DQ424892" - ], - "South_African_cassava_mosaic_virus__MG_MG409A2_11" : [ - "KJ888009" - ], - "Feline_calicivirus__1874" : [ - "JX519214" - ], - "Turnip_mosaic_virus__USA5" : [ - "AB701740" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_212_2011" : [ - "KJ686237" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10BJ_5" : [ - "JQ663545" - ], - "Hepatitis_B_virus__S129_6" : [ - "FJ787436" - ], - "Porcine_circovirus_2__WB_H_3" : [ - "AY874165" - ], - "Watermelon_chlorotic_stunt_virus__C" : [ - "KJ854913" - ], - "Mungbean_yellow_mosaic_India_virus_Indonesia__Brebes_2" : [ - "JN368436", - "JN368444" - ], - "Hepatitis_B_virus_pre_core_variant__adw__patient_4" : [ - "X97850" - ], - "Wheat_streak_mosaic_virus__Marmagne" : [ - "HG810953" - ], - "Human_adenovirus_7_GZ08" : [ - "GQ478341" - ], - "Banana_bract_mosaic_virus__TRY" : [ - "HM131454" - ], - "Hepatitis_B_virus__D146" : [ - "EU939681" - ], - "Enterobacteria_phage_phiP27" : [ - "NC_003356" - ], - "West_Nile_virus__WNV_1_US_BID_V4704_2002" : [ - "HQ671722" - ], - "Simian_adenovirus_42_3" : [ - "FJ025925" - ], - "Hepatitis_B_virus__BAJT2006_1S" : [ - "AB298720" - ], - "Alternanthera_mosaic_virus" : [ - "NC_007731" - ], - "Hepatitis_B_virus__LAMr_Pt__33" : [ - "AB367424" - ], - "Strawberry_chlorotic_fleck_associated_virus" : [ - "NC_008366" - ], - "Human_herpesvirus_5_3301" : [ - "GQ466044" - ], - "Porcine_rubulavirus" : [ - "NC_009640" - ], - "Human_metapneumovirus_HMPV_USA_TN_95_111_1995_B" : [ - "KC562239" - ], - "Norovirus_Hu_GII_4_CGMH04_2006_TW" : [ - "JN400602" - ], - "Human_papillomavirus_type_6__50" : [ - "HG793858" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL069A" : [ - "AB985531", - "AB985300" - ], - "Porcine_circovirus_2__CH2" : [ - "HQ202957" - ], - "Tanapox_virus__TPV_RoC" : [ - "EF420157" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4783_2009" : [ - "HM181974" - ], - "Human_poliovirus_3_NIE1218539" : [ - "KJ170606" - ], - "Mycobacterium_phage_Inventum" : [ - "NC_026596" - ], - "Human_immunodeficiency_virus_1__03ZASK118B1" : [ - "DQ011169" - ], - "JC_polyomavirus__MN_3" : [ - "AB077879" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_243_2011" : [ - "KJ686273" - ], - "Hepatitis_B_virus__IND_1963_10" : [ - "KF214654" - ], - "Human_poliovirus_1_NIE1018395" : [ - "KJ170506" - ], - "Cotton_leaf_curl_Multan_betasatellite" : [ - "HE965445", - "HE601946", - "HE965456", - "GQ503176", - "HG428708", - "HE978342", - "HG003877", - "HE978339", - "HE978341", - "HF952156", - "HQ257373", - "HF542911", - "FR877537", - "HE601938", - "FJ607041", - "HE601940", - "HE965440", - "HE965449", - "HE601942", - "HE601943", - "HE965435", - "HF564603", - "HE978343", - "HE601939", - "HE978340", - "HE965454", - "HQ257372", - "HF564598", - "HE965444", - "HE601948", - "HE963748", - "HE965447", - "HE601945", - "HE601944", - "HE965451", - "HE965453", - "HE965441", - "AM490309", - "HG000665", - "HE965448", - "HE978344", - "HF564596", - "HE601941", - "HE965436", - "HF564604", - "HE601947", - "HF565180", - "HE965437", - "HF564597", - "HE965455", - "HE965452", - "HE965443", - "HE965439", - "HF564599", - "HE965442", - "HE965446", - "HE965450", - "HE965438" - ], - "Dengue_virus_1__DENV_1_VN_BID_V786_2007" : [ - "EU482712" - ], - "Brochothrix_phage_NF5" : [ - "NC_015252" - ], - "SARS_coronavirus_ShanghaiQXC2_ShanghaiQXC2" : [ - "AY463060" - ], - "Sulfolobus_islandicus_REY15A" : [ - "NC_017276" - ], - "Reticuloendotheliosis_virus_HA9901" : [ - "NC_006934" - ], - "Dengue_virus_2__DENV_2_US_BID_V1188_1990" : [ - "EU482587" - ], - "Hepatitis_B_virus__B107" : [ - "EU939584" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLI1381_2010" : [ - "KJ627250" - ], - "Radish_leaf_curl_virus__Varanasi" : [ - "HQ698591", - "HQ682190", - "NC_010238" - ], - "Ancient_caribou_feces_associated_virus__AnCFV" : [ - "NC_024907" - ], - "Anaerococcus_prevotii_DSM_20548" : [ - "NC_013171", - "NC_013164" - ], - "Hepatitis_C_virus_J33" : [ - "HPCJRNA" - ], - "Sendai_virus_BB1" : [ - "DQ219803" - ], - "Citrus_tristeza_virus__NZ_B18" : [ - "FJ525436" - ], - "Cucumber_vein_yellowing_virus_ALM32" : [ - "NC_006941" - ], - "Subterranean_clover_mottle_virus__MJ" : [ - "AY376453" - ], - "Ljungan_virus_87_012" : [ - "NC_003976" - ], - "Porcine_circovirus_2_SH0710" : [ - "GQ358997" - ], - "Mumps_virus_JL5_JL_CK3" : [ - "JQ946552" - ], - "Grapevine_Algerian_latent_virus" : [ - "KJ534082" - ], - "Parvo_like_hybrid_virus_UC11_UC11" : [ - "KF214638" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_FR15_2008" : [ - "KM229768" - ], - "Hepatitis_B_virus_1303_2" : [ - "KR014028" - ], - "Synechococcus_phage_ACG_2014c" : [ - "NC_019444" - ], - "Blattabacterium__Blatta_orientalis__Tarazona" : [ - "NC_020196", - "NC_020195" - ], - "Hepatitis_B_virus__pt6T" : [ - "KM875413" - ], - "Tomato_leaf_curl_Taiwan_virus__87_1" : [ - "GU723713" - ], - "Cyclovirus_ZM50a_ZM50a" : [ - "AB937985" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_A4_12D_V" : [ - "JX570645" - ], - "Enterovirus_A71__S10862_SAR_98" : [ - "DQ341359" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2256_2005" : [ - "FJ639816" - ], - "Hepatitis_B_virus__MY741196" : [ - "KJ803775" - ], - "Black_raspberry_virus_F__CRUB_9013" : [ - "NC_009890" - ], - "Coxsackievirus_B4_E2_variant" : [ - "AF311939" - ], - "Norovirus_Hu_GII_20271_2009_VNM_Hu_GII_20271_2009_VNM" : [ - "KC409287" - ], - "Paspalum_striate_mosaic_virus" : [ - "NC_018530" - ], - "Cauliflower_mosaic_virus__TUR94" : [ - "AB863177" - ], - "Foot_and_mouth_disease_virus___type_O_O_GSLX_2010" : [ - "JQ900581" - ], - "Norovirus_Hu_GII_20413_2010_VNM_Hu_GII_20413_2010_VNM" : [ - "KC409296" - ], - "Hydrangea_ringspot_virus__PD_109" : [ - "NC_006943" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir7_T11X_Cuc_07" : [ - "FJ660438" - ], - "Rotavirus_F_chicken_03V0568_DEU_2003_03V0568" : [ - "NC_021635" - ], - "Hepatitis_B_virus__TK63" : [ - "JF754608" - ], - "Pyrobaculum_spherical_virus" : [ - "NC_005872" - ], - "Norovirus_Hu_GII_4_Aichi4_2006_JP_Hu_GII_4_Aichi4_2006_JP" : [ - "AB447447" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3872_2008" : [ - "GU131707" - ], - "Watermelon_mosaic_virus__WMV_1_SDE_FF" : [ - "KP164988" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_45_2012" : [ - "KJ686291" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2699_2006" : [ - "FJ882525" - ], - "Hepatitis_B_virus__SLK126" : [ - "GQ358154" - ], - "Human_immunodeficiency_virus_1__WEAU_flE3" : [ - "FJ496160" - ], - "JC_polyomavirus__CN_28" : [ - "AB081010" - ], - "Hepatitis_B_virus__2_D1_5_2" : [ - "GU815647" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2069_2008" : [ - "GQ868625" - ], - "Hepatitis_B_virus__J239" : [ - "GQ377631" - ], - "Candidatus_Blochmannia_vafer_BVAF" : [ - "NC_014909" - ], - "Hepatitis_B_virus__SHB413" : [ - "KJ598687" - ], - "Hepatitis_B_virus__Vac06_M_m619" : [ - "KJ173395" - ], - "Hepatitis_B_virus__C119" : [ - "EU939578" - ], - "Hepatitis_B_virus__cww2157" : [ - "KC774279" - ], - "Usutu_virus_V399" : [ - "KJ438742" - ], - "JC_polyomavirus__MN_6" : [ - "AB077866" - ], - "Hepatitis_B_virus__G56" : [ - "FM209516" - ], - "Hepatitis_B_virus__J022" : [ - "GQ358155" - ], - "Citrus_tristeza_virus__FS703_VT" : [ - "KC517492" - ], - "Tomato_leaf_curl_Taiwan_virus__NT1_4" : [ - "GU723709" - ], - "Hepatitis_B_virus_C1198" : [ - "DQ980548" - ], - "South_African_cassava_mosaic_virus__MG_MG144A1_09" : [ - "KJ887672" - ], - "African_horse_sickness_virus_serotype_9" : [ - "NC_006016" - ], - "Hepatitis_C_virus_subtype_4o__HCV_4o_GB_BID_G2037" : [ - "JX227977" - ], - "Porcine_circovirus_2_GY1203" : [ - "KC823054" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V162_2002" : [ - "EU256090" - ], - "Ralstonia_phage_RSS20" : [ - "NC_021866" - ], - "Human_papillomavirus_type_16__JPD058" : [ - "AB889488" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10SD" : [ - "JQ663555" - ], - "African_cassava_mosaic_virus____Nigeria__Nigerian" : [ - "X17095", - "X17096" - ], - "Hepatitis_B_virus__JPN_Ba_51" : [ - "AB287328" - ], - "Hepatitis_B_virus__TK77" : [ - "JF754605" - ], - "Mycoplasma_phage_P1" : [ - "NC_002515" - ], - "Simian_adenovirus_28_2" : [ - "FJ025915" - ], - "Tobacco_mosaic_virus__Shanxi" : [ - "JF920727" - ], - "Hepatitis_delta_virus__Brazil_1" : [ - "KC590319" - ], - "Hepatitis_B_virus__N199v2" : [ - "KF922411" - ], - "Dengue_virus_2__ACS542" : [ - "JX286519" - ], - "Simian_adenovirus_40_1" : [ - "FJ025907" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3918_2005" : [ - "GU131923" - ], - "Grapevine_redleaf_associated_virus__GiGV_WA_CF" : [ - "KC427996" - ], - "Hepatitis_B_virus__7_2" : [ - "AY217370" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2830_2003" : [ - "GQ199830" - ], - "Sweet_potato_chlorotic_stunt_virus__Guangdong" : [ - "KC146842", - "KC146843" - ], - "Wheat_dwarf_virus__Cz19" : [ - "AM296019" - ], - "Hepatitis_B_virus__cur1027" : [ - "KC774230" - ], - "Hepatitis_B_virus__H0756_04" : [ - "FJ882615" - ], - "Dickeya_dadantii_Ech703" : [ - "NC_012880" - ], - "Malvastrum_yellow_vein_betasatellite__Y47" : [ - "NC_004733" - ], - "Northern_cereal_mosaic_virus" : [ - "NC_002251" - ], - "Human_adenovirus_21_CDC_RU8176" : [ - "KJ364577" - ], - "Hepatitis_B_virus__ES71_9" : [ - "JF828929" - ], - "Orientia_tsutsugamushi_Ikeda" : [ - "NC_010793" - ], - "Rabies_virus__240K09" : [ - "JX473841" - ], - "Bean_golden_mosaic_virus__BR_Pai4_11" : [ - "KJ939740" - ], - "Hepatitis_B_virus__PG_8" : [ - "KF471656" - ], - "Hepatitis_B_virus__HBV_VH24" : [ - "AB231908" - ], - "Middle_East_respiratory_syndrome_coronavirus__Florida_USA_2_Saudi_Arabia_2014" : [ - "KP223131" - ], - "Porcine_circovirus_2__JN" : [ - "HM142900" - ], - "Euphorbia_mosaic_virus" : [ - "FJ807783", - "FJ807782", - "NC_008305" - ], - "Rotavirus_G9_US321" : [ - "AJ250275" - ], - "Hepatitis_B_virus__A1_G1862T_Mutant_SA" : [ - "KM519452" - ], - "Bluetongue_virus__IVRI_a" : [ - "AM261980" - ], - "Synechococcus_RCC307" : [ - "NC_009482" - ], - "Hepatitis_B_virus_1368_46" : [ - "KR014052" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SHE" : [ - "GQ461593" - ], - "Norovirus_Hu_NLV_Oxford_B4S6_2002_UK__Hu_NLV_Oxford_B4S6_2002_UK" : [ - "AY587985" - ], - "Human_immunodeficiency_virus_1_11111583_patient_B" : [ - "KC852172" - ], - "Hepatitis_B_virus__919005" : [ - "JN040823" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC03B13_2005" : [ - "JF909079" - ], - "Norovirus_Hu_GII_4_Aichi4_2007_JP_Hu_GII_4_Aichi4_2007_JP" : [ - "AB541207" - ], - "Hepatitis_B_virus__M30b" : [ - "GQ924613" - ], - "Human_parainfluenza_virus_3_HPIV3_MEX_4159_2008" : [ - "KF687329" - ], - "Maize_streak_virus__MSV_A_ZW_Maz2_Bet33_2006" : [ - "HQ693472" - ], - "Hepatitis_delta_virus__D39_A" : [ - "KJ744245" - ], - "Pepper_golden_mosaic_virus_Tamaulipas" : [ - "NC_004101" - ], - "Human_poliovirus_2_NIE0918442" : [ - "KJ170573" - ], - "Bluetongue_virus_12217_00" : [ - "AY775161" - ], - "Hepatitis_B_virus__S541_21" : [ - "EU554539" - ], - "Chickpea_chlorotic_dwarf_virus__BGR_3" : [ - "FR687960" - ], - "Porcine_circovirus_2_DY" : [ - "GU017735" - ], - "Hepatitis_B_virus__IBL1455" : [ - "HM363585" - ], - "Bhendi_yellow_vein_betasatellite__Madurai_MKU_1" : [ - "KR068483" - ], - "Dengue_virus_1__DENV_1_TH_BID_V2275_2001" : [ - "FJ687431" - ], - "Hepatitis_B_virus_HB299" : [ - "JQ027315" - ], - "Porcine_epidemic_diarrhea_virus_USA_Iowa23_57_2013" : [ - "KJ645649" - ], - "Tomato_severe_rugose_virus__BR_Car236_1_08" : [ - "KC004087" - ], - "Macrobrachium_rosenbergii_nodavirus" : [ - "AY231436", - "NC_005094", - "FJ751225", - "NC_005095" - ], - "Hepatitis_B_virus__No19" : [ - "AB697501" - ], - "Hepatitis_C_virus_subtype_3i__HCV_3i_GB_BID_G1244" : [ - "JX227955" - ], - "Trichomonas_vaginalis_virus_2" : [ - "NC_003873" - ], - "West_Nile_virus__WNV_1_US_BID_V6461_2002" : [ - "KJ501311" - ], - "Infectious_bronchitis_virus_Georgia_1998_pass8" : [ - "GQ504722" - ], - "Hepatitis_B_virus__HBNAT049" : [ - "KJ638664" - ], - "Hepatitis_B_virus__Patient__4014__PNN1" : [ - "AB219426" - ], - "Acinetobacter_calcoaceticus_PHEA_2" : [ - "NC_016603" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo170s_08" : [ - "KC706545" - ], - "Hepatitis_B_virus_1149_9" : [ - "KR013834" - ], - "Enterovirus_D68__37_99" : [ - "EF107098" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__P129" : [ - "AF494042" - ], - "Coxsackievirus_A13__CV_A13_68145" : [ - "JF260923" - ], - "Kyuri_green_mottle_mosaic_virus__YM" : [ - "AB162006" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_17" : [ - "EU384620" - ], - "Hepatitis_B_virus__J249" : [ - "GQ377637" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG55" : [ - "FJ914395" - ], - "Foot_and_mouth_disease_virus_C4_C4_Argentina_C4_Tierra_del_Fuego_iso2" : [ - "AY593808" - ], - "Faecal_associated_gemycircularvirus_2__as5" : [ - "NC_025738" - ], - "Marine_RNA_virus_SOG" : [ - "NC_009756" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1991_3_1" : [ - "Z75884" - ], - "Bluetongue_virus_9_RSArrrr_09" : [ - "AM900375" - ], - "Hepatitis_B_virus__C74" : [ - "FJ349239", - "EU939663" - ], - "Hepatitis_B_virus__M54" : [ - "GQ924632" - ], - "Bluetongue_virus_4__RSAvvv3_04" : [ - "AJ586676" - ], - "Tobacco_leaf_curl_Japan_virus" : [ - "EF620536", - "NC_004654" - ], - "Hepatitis_B_virus__V144" : [ - "HM363599" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1691_2007" : [ - "FJ205881" - ], - "Lyssavirus_Ozernoe_Ozernoe" : [ - "NC_025408" - ], - "Hepatitis_B_virus__Tibet_1887" : [ - "KP276254" - ], - "Human_immunodeficiency_virus_1__5096_86" : [ - "AY835749" - ], - "Human_rhinovirus_A43_ATCC_VR_1153" : [ - "FJ445131" - ], - "BK_polyomavirus__KOM_7" : [ - "AB211388" - ], - "Dengue_virus_1_D1_SG_05K3911DK1_2005" : [ - "EU081247" - ], - "Hepatitis_B_virus_49224" : [ - "FM199979" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y244" : [ - "AJ888449" - ], - "Rhodococcus_jostii_RHA1" : [ - "NC_008271", - "NC_008269", - "NC_008268", - "NC_008270" - ], - "Dengue_virus_2__MD1504" : [ - "FM210213" - ], - "Turnip_mosaic_virus__CDN_1" : [ - "AY227024" - ], - "Enterobacteria_phage_RB9" : [ - "KM606998" - ], - "Tobacco_mosaic_virus__WT_L3" : [ - "KF972430" - ], - "Hepatitis_B_virus__bne12" : [ - "FN594750" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SI3C_3" : [ - "FJ914399" - ], - "Dengue_virus_3__98TW364" : [ - "DQ675524" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir5_T51P_Cuc_08" : [ - "FJ660428" - ], - "Hepatitis_B_virus__312000473" : [ - "JN792907" - ], - "Simian_immunodeficiency_virus__TAN5" : [ - "JN091691" - ], - "Turkey_adenovirus_5__1277BT" : [ - "NC_022613" - ], - "Hepatitis_B_virus__SHB81" : [ - "KJ598766" - ], - "Hepatitis_B_virus__10B6" : [ - "JF899338" - ], - "Small_begomovirus_associated_satellite__wf_S51" : [ - "KJ859206" - ], - "Mamestra_brassicae_multiple_nucleopolyhedrovirus_K1" : [ - "NC_023681" - ], - "Tomato_leaf_curl_New_Delhi_virus__TN_TDK_CHOU2" : [ - "KP191047" - ], - "Bluetongue_virus_9_RSAvvvv_09_South_Africa_Vaccine" : [ - "AM778442" - ], - "Dragonfly_associated_mastrevirus__PR_NZ70_2009" : [ - "NC_019497" - ], - "Streptococcus_pneumoniae_Taiwan19F_14" : [ - "NC_012469" - ], - "Newcastle_disease_virus_TS09_C" : [ - "JX110635" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V305_2003" : [ - "EU256085" - ], - "Hepatitis_C_virus_subtype_6a_6a69" : [ - "DQ480521" - ], - "Hepatitis_B_virus__W17" : [ - "EU787440" - ], - "Human_enterovirus_C118_ISR10" : [ - "JX961708" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4238_2006" : [ - "HM181940" - ], - "Tomato_leaf_curl_Barka_virus__Tom_74" : [ - "KF260968" - ], - "Macroptilium_yellow_spot_virus__BR_Sti20_11" : [ - "KJ939877" - ], - "Barley_yellow_dwarf_virus_PAV__020" : [ - "EF521836" - ], - "Human_papillomavirus_type_16__Qv22478" : [ - "HQ644277" - ], - "African_cassava_mosaic_virus__CF_CF29BN_07" : [ - "KJ887592" - ], - "Acidovorax_ebreus_TPSY" : [ - "NC_011992" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__BxJ4" : [ - "JN053436" - ], - "Dengue_virus_2_TB16i" : [ - "AY858036" - ], - "Bifidobacterium_longum_JCM_1217" : [ - "NC_015067" - ], - "Human_rhinovirus_A8_ATCC_VR_1118" : [ - "FJ445113" - ], - "Simian_endogenous_retrovirus" : [ - "STU85505" - ], - "Newcastle_disease_virus__JS_7_05_Ch" : [ - "FJ430159" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ15AK2_2009" : [ - "JF909203" - ], - "Hepatitis_B_virus_99_3" : [ - "KR013885" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2183_2001" : [ - "FJ639754" - ], - "Dengue_virus_2__DENV_2_NI_BID_V575_2006" : [ - "EU482688" - ], - "Human_immunodeficiency_virus_1__03KGS5" : [ - "JQ316132" - ], - "Rabies_virus_ERA_VC" : [ - "FJ913470" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir5_T51X_Cuc_08" : [ - "FJ660432" - ], - "Human_rotavirus_A_HCR3" : [ - "ROHVP4G" - ], - "Tomato_leaf_curl_New_Delhi_virus__Murcia_8_1" : [ - "KF749224", - "KF749227" - ], - "Hepatitis_B_virus__GU865" : [ - "GQ161769" - ], - "Prunus_necrotic_ringspot_virus" : [ - "S78312", - "NC_004363", - "NC_004362", - "FJ610344" - ], - "Chicken_anemia_virus_China" : [ - "JQ690762" - ], - "Hepatitis_B_virus__P07" : [ - "EU859915" - ], - "Maize_rayado_fino_virus__US" : [ - "KM523134" - ], - "Enzootic_nasal_tumour_virus_of_goats_ENTV_SC" : [ - "HM104174" - ], - "Dengue_virus_3__98TW182" : [ - "DQ675520" - ], - "Bean_yellow_mosaic_virus__GB42C" : [ - "HG970853" - ], - "Dengue_virus_3__D3PY_SUS_2003" : [ - "JF808122" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3867_2008" : [ - "GU131702" - ], - "Citrus_tristeza_virus_HA18_9" : [ - "GQ454869" - ], - "Hepatitis_B_virus__G3_7" : [ - "GU815781" - ], - "Norovirus_Hu_NLV_Oxford_B2S16_2002_UK__Hu_NLV_Oxford_B2S16_2002_UK" : [ - "AY587989" - ], - "JC_polyomavirus__TD_4" : [ - "AB077862" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3732_2007" : [ - "GU131978" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4056_2008" : [ - "GU131808" - ], - "Dengue_virus_2__DENV_2_NI_BID_V520_2005" : [ - "EU482752" - ], - "OkLCV_satDNA_10__Homra" : [ - "KJ396939" - ], - "Hepatitis_B_virus__3_D1_5_3" : [ - "GU815648" - ], - "Hepatitis_B_virus__cww1029" : [ - "KC774250" - ], - "Hepatitis_B_virus__dlz2143" : [ - "KC774433" - ], - "Hepatitis_B_virus__IND_2011_22" : [ - "KF214668" - ], - "Hepatitis_B_virus__HBV17" : [ - "KC875286" - ], - "Human_immunodeficiency_virus_1__ML415_2_1997" : [ - "AY322189" - ], - "Tomato_leaf_curl_China_betasatellite__Y262" : [ - "AM260720" - ], - "Border_disease_virus_X818__Clover_Lane" : [ - "NC_003679" - ], - "Enterovirus_A71__06_KOR_00" : [ - "DQ341355" - ], - "Burkholderia_383" : [ - "NC_007509", - "NC_007511", - "NC_007510" - ], - "Porcine_circovirus_2_09SX142" : [ - "HQ395045" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V229_2006" : [ - "EU256069" - ], - "Spiroplasma_phage_4" : [ - "NC_003438" - ], - "Dengue_virus_3__DENV_3_US_BID_V1451_1999" : [ - "EU781136" - ], - "Human_coronavirus_229E__0349" : [ - "JX503060" - ], - "Rice_dwarf_virus__Yunnan" : [ - "AY847464" - ], - "Porcine_circovirus_2_PCV2_P2" : [ - "FJ667582" - ], - "Salmonella_phage_vB_SosS_Oslo" : [ - "NC_018279" - ], - "Usutu_virus_V211" : [ - "KJ438764" - ], - "Leishmania_RNA_virus_2___1" : [ - "NC_002064" - ], - "Koala_retrovirus__Pci_QMJ6480" : [ - "KF786284" - ], - "Bacillus_phage_Megatron" : [ - "NC_024211" - ], - "BK_polyomavirus_AS" : [ - "PLYCGAS" - ], - "Human_poliovirus_2__PV2_Bel" : [ - "FJ517648" - ], - "Junin_mammarenavirus_Candid1_rec" : [ - "HQ126700", - "HQ126701" - ], - "Propionibacterium_phage_B5" : [ - "NC_003460" - ], - "Hepatitis_C_virus_subtype_1a__BR554_P17_10_21_04" : [ - "EF032890" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Henan_1" : [ - "EU200962" - ], - "Porcine_circovirus_2__GP1111" : [ - "KJ680341" - ], - "West_Nile_virus__WNV_1_US_BID_V6402_2003" : [ - "KJ501451" - ], - "Rickettsia_prowazekii_Breinl" : [ - "NC_020993" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3864_2008" : [ - "GU131699" - ], - "Kennedya_yellow_mosaic_virus__Jervis_Bay" : [ - "NC_001746" - ], - "Aeromonas_phage_phiAS4" : [ - "NC_014635" - ], - "South_African_cassava_mosaic_virus__MG_MG511A1_11" : [ - "KJ887728" - ], - "Dengue_virus_2__DENV_2_VE_BID_V1107_2007" : [ - "EU482607" - ], - "Hepatitis_B_virus__blz1107" : [ - "KC774362" - ], - "Human_metapneumovirus_HMPVgz01" : [ - "GQ153651" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4831_2009" : [ - "HQ705617" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_VEN_ZPC727_1997_ID" : [ - "KC344513" - ], - "Bean_yellow_mosaic_virus_MB4" : [ - "NC_003492" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_11__AHEaCV_11_NZ_2256TU_2012" : [ - "NC_026637" - ], - "Hepatitis_B_virus__S1426_1" : [ - "FJ787468" - ], - "Rat_coronavirus__681" : [ - "JF792616" - ], - "Cassava_associated_cicular_DNA_virus__G5" : [ - "JQ412057" - ], - "Bean_pod_mottle_virus_K_Hancock1" : [ - "AF394606", - "AF394607" - ], - "Sugarcane_white_streak_virus__SD_USDA_2013" : [ - "KJ187745" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US95" : [ - "KJ019131" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI1235_2011_A" : [ - "KJ627429" - ], - "Japanese_encephalitis_virus_JaTAn2_91" : [ - "AB551992" - ], - "Human_poliovirus_1_NIE1218345" : [ - "KJ170464" - ], - "Hepatitis_B_virus__S7_4" : [ - "EU916229" - ], - "Tomato_yellow_leaf_curl_virus_SH3__SH3" : [ - "FN256258" - ], - "Eggplant_mosaic_virus__SCRI" : [ - "KJ690172" - ], - "South_African_cassava_mosaic_virus__MG_MG503B1_11" : [ - "KJ888026" - ], - "Dengue_virus_3__98TWmosq" : [ - "DQ675532" - ], - "JC_polyomavirus__J2_24" : [ - "AB081601" - ], - "Feline_coronavirus_UU34" : [ - "HQ012372" - ], - "Torque_teno_sus_virus_1b__TTV2_G64" : [ - "GU570208" - ], - "Porcine_circovirus_2_SoPCV2R2" : [ - "FJ233910" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP6A_subpopulation_1" : [ - "JN014002" - ], - "Enterovirus_5666_sin_002209" : [ - "AF352027" - ], - "Enterovirus_B__HB92" : [ - "KP638484" - ], - "Human_papillomavirus_type_97__Qv28597" : [ - "DQ080080" - ], - "Hepatitis_B_virus__C1_4" : [ - "GU815621" - ], - "Pseudomonas_aeruginosa_SCV20265" : [ - "NC_023149" - ], - "Crimean_Congo_hemorrhagic_fever_virus_SCT_ex_Afghanistan" : [ - "JX908640", - "KC344855", - "KC344856" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V442_2001" : [ - "EU155280" - ], - "Dengue_virus_1__DENV_1_VN_BID_V830_2006" : [ - "EU482824" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_41_2012" : [ - "KJ672482" - ], - "Lesavirus_2__Nai108015_2012" : [ - "NC_026316" - ], - "Human_immunodeficiency_virus_1__97ZA003" : [ - "AY118165" - ], - "Hepatitis_B_virus__J236" : [ - "GQ377630" - ], - "Coxsackievirus_A6__1827_SH_CHN_2011" : [ - "KJ541166" - ], - "Hepatitis_B_virus__B126" : [ - "EU939585" - ], - "Hepatitis_C_virus__Eg7" : [ - "DQ988076" - ], - "Foot_and_mouth_disease_virus___type_A_A_Brazil_abrazil_iso67" : [ - "AY593788" - ], - "Paprika_mild_mottle_virus_Japanese" : [ - "NC_004106" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_G66" : [ - "LN846604" - ], - "Siphoviridae_phage_YD_2008_s" : [ - "NC_027383" - ], - "Cucumber_mosaic_virus__Cah1" : [ - "FJ268746", - "FJ268745", - "FJ268744" - ], - "Human_poliovirus_1__CHN_Yunnan_92__CHN_6421YN92" : [ - "AF111982" - ], - "Hepatitis_A_virus__HAV6" : [ - "EU526088" - ], - "Ageratum_yellow_vein_China_betasatellite__Hn12" : [ - "AM048836" - ], - "Infectious_bronchitis_virus_GX_C" : [ - "KC008600" - ], - "Watermelon_chlorotic_stunt_virus__IL2_118" : [ - "KM820257" - ], - "Enterovirus_A71__EV090_07" : [ - "HQ647169" - ], - "Tembusu_virus__AHQY" : [ - "KJ740748" - ], - "Coxsackievirus_A22_438913" : [ - "JN542510" - ], - "Human_rotavirus_A_L26__P_4___G12" : [ - "AJ311732" - ], - "Cotton_leaf_curl_Gezira_betasatellite__CLC55_C" : [ - "NC_006935" - ], - "Burkholderia_phage_Bcep176" : [ - "NC_007497" - ], - "Hepatitis_B_virus__LL010169" : [ - "FJ356715" - ], - "BK_polyomavirus__NGY_19" : [ - "AB365147" - ], - "Norovirus_Hu_GII_4_Shimane2_2007_JP_Hu_GII_4_Shimane2_2007_JP" : [ - "AB541347" - ], - "Hepatitis_B_virus__JPN_CH10" : [ - "AB453988" - ], - "Monkeypox_virus_USA_2003_039" : [ - "DQ011157" - ], - "Hepatitis_B_virus__919053" : [ - "JN040764" - ], - "West_Nile_virus__WNV_1_US_BID_V6673_2008" : [ - "KJ501411" - ], - "Tomato_yellow_leaf_curl_virus__KB18_7" : [ - "HE819240" - ], - "Human_immunodeficiency_virus_1__04ZASK154B1" : [ - "AY878071" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V308_2005" : [ - "EU155374" - ], - "Clerodendrum_golden_mosaic_China_virus__Fz7" : [ - "NC_011346", - "NC_011347" - ], - "Porcine_circovirus_2__PMWS_PCV_P1" : [ - "AY099495" - ], - "Hepatitis_B_virus_258_3" : [ - "KR013763" - ], - "Human_immunodeficiency_virus_1__92NG003" : [ - "U88825" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pun_beta_17" : [ - "EU384581" - ], - "Sulfolobus_islandicus_Y_N_15_51" : [ - "NC_012624", - "NC_012623" - ], - "Hepatitis_B_virus__MY5113" : [ - "KJ803766" - ], - "Ngari_virus_9800521" : [ - "JX857325", - "JX857327" - ], - "Dolphin_rhabdovirus__pxV1_1992" : [ - "NC_025406" - ], - "Porcine_epidemic_diarrhea_virus_SQ2014" : [ - "KP728470" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1787_2007" : [ - "FJ432732" - ], - "Hepatitis_B_virus__G2_12" : [ - "GU815762" - ], - "Human_rhinovirus_B84_ATCC_VR_1194" : [ - "FJ445162" - ], - "Bdellovibrio_bacteriovorus_Tiberius" : [ - "NC_019567" - ], - "Hepatitis_B_virus__J145" : [ - "GQ377589" - ], - "Glypta_fumiferanae_ichnovirus" : [ - "NC_008842", - "NC_008869", - "NC_008866", - "NC_008862", - "NC_008852", - "NC_008913", - "NC_008899", - "NC_008883", - "NC_008892", - "NC_008906", - "NC_008894", - "NC_008847", - "NC_008867", - "NC_008861", - "NC_008844", - "NC_008843", - "NC_008864", - "NC_008900", - "NC_008915", - "NC_008849", - "NC_008924", - "NC_008840", - "NC_008868", - "NC_008898", - "NC_008888", - "NC_008931", - "NC_008902", - "NC_008889", - "NC_008865", - "AB295392", - "NC_008909", - "NC_008845", - "NC_008910", - "NC_008916", - "NC_008923", - "NC_008878", - "NC_008893", - "NC_008926", - "NC_008880", - "NC_008904", - "NC_008870", - "NC_008858", - "NC_008884", - "NC_008875", - "NC_008901", - "NC_008882", - "NC_008876", - "NC_008934", - "NC_008925", - "NC_008859", - "NC_008911", - "NC_008933", - "NC_008907", - "NC_008853", - "NC_008917", - "NC_008905", - "NC_008897", - "NC_008877", - "NC_008914", - "NC_008932", - "NC_008838", - "NC_008860", - "NC_008874", - "NC_008937", - "NC_008881", - "NC_008941", - "NC_008873", - "NC_008850", - "NC_008863", - "NC_008846", - "NC_008928", - "NC_008922", - "NC_008908", - "NC_008912", - "NC_008879", - "NC_008935", - "NC_008855", - "NC_008895", - "NC_008872", - "NC_008886", - "NC_008921", - "NC_008891", - "NC_008896", - "NC_008918", - "NC_008938", - "NC_008857", - "NC_008851", - "NC_008919", - "NC_008848", - "NC_008927", - "NC_008839", - "NC_008939", - "NC_008940", - "NC_008929", - "NC_008841", - "NC_008856", - "NC_008930", - "NC_008903", - "NC_008837", - "NC_008885", - "NC_008920", - "NC_008871", - "NC_008936", - "NC_008854", - "NC_008890", - "NC_008887" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_22__AHEaCV_22_NZ_2138TU_2012" : [ - "NC_026649" - ], - "SARS_coronavirus_TW4__TW4" : [ - "AY502927" - ], - "Tobacco_mosaic_virus__Fengjie_1" : [ - "HE818423" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2661_2000" : [ - "JN819416" - ], - "Swine_hepatitis_E_virus__CHN_XJ_SW33" : [ - "GU119960" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT72B18_2008" : [ - "JF909255" - ], - "Human_immunodeficiency_virus_1__06KECst_013" : [ - "FJ623485" - ], - "Porcine_epidemic_diarrhea_virus_USA_NorthCarolina91_2013" : [ - "KJ645683" - ], - "Potato_virus_Y_strain_NTN_NTN_Satina" : [ - "AJ890347" - ], - "Hepatitis_B_virus_ayw_patient_4" : [ - "X80924", - "X80925" - ], - "Human_papillomavirus_type_6__35" : [ - "HG793843" - ], - "Hepatitis_B_virus__No8" : [ - "AB697493" - ], - "Porcine_circovirus_2__TC1" : [ - "HQ202948" - ], - "Hepatitis_B_virus__HBV13" : [ - "KC875282" - ], - "Cotton_leaf_curl_Burewala_betasatellite__RCIMB" : [ - "HF912232" - ], - "Hepatitis_B_virus__V70" : [ - "HM363574" - ], - "JC_polyomavirus__CH_12" : [ - "AB262413" - ], - "West_Nile_virus__WNV_1_US_BID_V6640_2007" : [ - "KJ501518" - ], - "Human_papillomavirus_type_39__Rw20" : [ - "KC470245" - ], - "Muscovy_duck_reovirus_89330_89330" : [ - "AJ293969" - ], - "Prochlorococcus_marinus_MIT_9312" : [ - "NC_007577" - ], - "West_Nile_virus__WNV_1_US_BID_V6171_2010" : [ - "KJ501438" - ], - "Culex_flavivirus__DG1007" : [ - "JQ308190" - ], - "Streptococcus_phage_phiNJ2" : [ - "NC_019418" - ], - "JC_polyomavirus__MO_5" : [ - "AB048552" - ], - "Ramie_mosaic_virus__GD" : [ - "KC171652", - "KC171653" - ], - "Hepatitis_E_virus__MO" : [ - "JQ655733" - ], - "Wheat_streak_mosaic_virus__ID99" : [ - "AF511619" - ], - "Human_papillomavirus_type_6__PV2530" : [ - "JN252319" - ], - "Human_rhinovirus_A68_ATCC_VR_1178" : [ - "FJ445150" - ], - "Human_coronavirus_OC43_OC43_human_USA_007_11_2000" : [ - "KF530068" - ], - "Cellulomonas_fimi_ATCC_484" : [ - "NC_015514" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4751_2009" : [ - "HQ671178" - ], - "Hepatitis_B_virus__E2_6" : [ - "GU815696" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2871_2006" : [ - "FJ898405" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir_T65X_Cuc_08" : [ - "JF501720" - ], - "Chikungunya_virus_0611aTw" : [ - "FJ807896" - ], - "Hamster_polyomavirus__2756" : [ - "JX416851" - ], - "Hepatitis_B_virus__I143" : [ - "FJ562281" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4262_2007" : [ - "HM181959" - ], - "Hepatitis_B_virus__SHB61" : [ - "KJ598720" - ], - "Clostridium_stercorarium_DSM_8532" : [ - "NC_020134" - ], - "Human_poliovirus_3_NIE1018463" : [ - "KJ170611" - ], - "Hepatitis_B_virus__J134" : [ - "GQ377585" - ], - "Hepatitis_B_virus__J80" : [ - "GQ377549" - ], - "Porcine_circovirus_2__265_08_3" : [ - "HQ591376" - ], - "Human_immunodeficiency_virus_1__05ZASK245B1" : [ - "DQ369982" - ], - "Rubella_virus_RVi_Boston_MA_USA_13_07_1G" : [ - "JN635289" - ], - "Sweet_potato_leaf_curl_virus__Nonsan_445_2" : [ - "HM754636" - ], - "Human_adenovirus_42" : [ - "JN226761" - ], - "Norovirus_Hu_GII_30206_2009_VNM_Hu_GII_30206_2009_VNM" : [ - "KC409313" - ], - "Torque_teno_mini_virus_5__TGP96" : [ - "NC_014089" - ], - "Hepatitis_B_virus_NDJ" : [ - "EU139543" - ], - "Porcine_circovirus_2_A" : [ - "FJ598045" - ], - "African_cassava_mosaic_virus__CF_CF127BN_07" : [ - "KJ887620" - ], - "African_cassava_mosaic_virus__TD_TD6AB_08" : [ - "KJ888100" - ], - "Hepatitis_B_virus__KDI04" : [ - "GQ358145" - ], - "Kakugo_virus" : [ - "NC_005876" - ], - "Hepatitis_C_virus_subtype_3a_S310_A" : [ - "AB691595" - ], - "Bean_common_mosaic_virus__NKY019" : [ - "KJ807818" - ], - "Newcastle_disease_virus__anhinga_U_S__Fl__44083_93" : [ - "AY562986" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V423_2003" : [ - "EU239715" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V358_2006" : [ - "EU155250" - ], - "SARS_coronavirus_PC4_13" : [ - "AY613948" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Tie_Okra2" : [ - "FN554520" - ], - "Cotton_leaf_curl_Gezira_beta____Sudan_Okra_43_1996___Gezira" : [ - "AY044141" - ], - "Canine_parvovirus_2a__UY250" : [ - "KM457133" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT07B51_2005" : [ - "JF909167" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC47BZ2_2009" : [ - "JF909121" - ], - "Reticuloendotheliosis_virus__SY1209" : [ - "KJ909530" - ], - "Enterobacteria_phage_ID2_Moscow_ID_2001" : [ - "NC_007817" - ], - "Human_papillomavirus_type_16_ZG01_118" : [ - "JN565302" - ], - "BK_polyomavirus__ANY_3" : [ - "AB464954" - ], - "Staphylococcus_aureus_11819_97" : [ - "NC_017351", - "NC_017350" - ], - "Cauliflower_mosaic_virus__IRN11" : [ - "AB863146" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1P10_2009_c1P10" : [ - "KF514419" - ], - "Liao_ning_virus__LNV_NE9712" : [ - "NC_007739", - "NC_007743", - "NC_007740", - "NC_007744", - "NC_007746", - "NC_007747", - "NC_007741", - "NC_007742", - "NC_007745" - ], - "Newcastle_disease_virus_Du_CH_LZJ_068_2011" : [ - "KM885150" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c3P10_2009_c3P10" : [ - "KF514396" - ], - "Dengue_virus_2_D2_AS_UH73_1972" : [ - "HM582107" - ], - "Potato_aucuba_mosaic_virus" : [ - "NC_003632" - ], - "Bhendi_yellow_vein_India_virus__India_Varapamatti_OY171A_2006___OY171A" : [ - "GU112043" - ], - "Newcastle_disease_virus__Chicken_China_Shandong_01_2011" : [ - "KC542908" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC26AA1_2009" : [ - "JF909216" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_785_2009" : [ - "JX221041" - ], - "Taylorella_equigenitalis_ATCC_35865" : [ - "NC_018108" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG137A10_09" : [ - "KJ887930" - ], - "Dengue_virus_4_GZ_9809_2012" : [ - "KC333651" - ], - "Squash_leaf_curl_virus__JO1_610" : [ - "KM595171" - ], - "Maize_streak_virus__MSV_A_MZ_Lib1_Moz30_2007" : [ - "HQ693347" - ], - "Measles_virus_genotype_G3_MVi_Venice_ITA_06_11_1_G3" : [ - "KC164758" - ], - "Salmonid_alphavirus_subtype_3__SAV3_5_H_10" : [ - "KC122920" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V400_2006" : [ - "EU862831" - ], - "Bhendi_yellow_vein_India_betasatellite__Co" : [ - "KJ462077" - ], - "African_cassava_mosaic_virus__CF_CF149AB2_07" : [ - "KJ887807" - ], - "Human_coronavirus_OC43_OC43_human_USA_912_10_1991" : [ - "KF530067" - ], - "Small_begomovirus_associated_satellite__wf_S39" : [ - "KJ859195" - ], - "Variola_virus_Japan_1951__Harper__Masterseed" : [ - "DQ441430" - ], - "Hepatitis_B_virus__A47" : [ - "FJ904407" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1690" : [ - "KR534574" - ], - "Turnip_mosaic_virus__ITA2" : [ - "AB701721" - ], - "Tomato_leaf_curl_Taiwan_virus__LS8" : [ - "GU723717" - ], - "Yellow_fever_virus_BeAR378600" : [ - "JF912179" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_CFI0314_2010" : [ - "KJ627357" - ], - "Tomato_yellow_leaf_curl_Saudi_virus__Hail1" : [ - "NC_022229" - ], - "Hepatitis_C_virus_HC_J4_HC_J4_83" : [ - "HPCJ483" - ], - "Hepatitis_B_virus__Tibet705" : [ - "AY057947" - ], - "Hepatitis_B_virus__2190" : [ - "FJ386625" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1669_2007" : [ - "FJ024452" - ], - "Hepatitis_B_virus__490A_4" : [ - "EU871995" - ], - "Tursiops_truncatus_papillomavirus_1" : [ - "NC_011109" - ], - "Human_coronavirus_OC43_ATCC_VR_759" : [ - "AY585228" - ], - "Escherichia_coli_APEC_O1" : [ - "NC_009838", - "NC_009837", - "NC_008563" - ], - "Sowbane_mosaic_virus" : [ - "GQ845002", - "NC_011187" - ], - "Hepatitis_B_virus__S1248_9" : [ - "FJ787458" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_40_2013" : [ - "KJ672460" - ], - "Oat_blue_dwarf_virus" : [ - "NC_001793" - ], - "Maize_streak_virus__MSV_A_ZM_Kab1_Z24_2008" : [ - "HQ693461" - ], - "Chikungunya_virus__LK_EH_CH7708" : [ - "FJ513657" - ], - "Duck_hepatitis_A_virus_1_HDHV1_SH" : [ - "FJ157178" - ], - "Human_rotavirus_A_CAU05_202" : [ - "JF766573", - "JF766582", - "JF766574", - "JF766578", - "JF766575", - "JF766583", - "JF766579", - "JF766580", - "JF766577", - "JF766581", - "JF766576" - ], - "Coxsackievirus_B3_AH30" : [ - "KC481610" - ], - "Rhodococcus_phage_REQ3" : [ - "NC_016654" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1862_2008" : [ - "FJ410220" - ], - "Aichi_virus_1__A846_88" : [ - "NC_001918" - ], - "Brassica_yellows_virus__BrYV_AJS" : [ - "HQ388350" - ], - "Human_poliovirus_1_NIE0918387" : [ - "KJ170523" - ], - "Dengue_virus_3_D3_SG_05K843DK1_2005" : [ - "EU081187" - ], - "Hepatitis_B_virus__25UC" : [ - "AB493827" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9512_2013" : [ - "KJ643562" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7640_2011" : [ - "KF973453" - ], - "Hepatitis_B_virus__SHB1C10" : [ - "KJ598640" - ], - "Hepatitis_B_virus__FH10" : [ - "AF461362" - ], - "Circoviridae_13_LDMD_2013" : [ - "NC_025717" - ], - "Molluscum_contagiosum_virus_subtype_1" : [ - "NC_001731" - ], - "Sulfolobus_turreted_icosahedral_virus_1" : [ - "NC_005892" - ], - "Human_herpesvirus_3_VZVi_Erfurt_GER_19_04_V_5__875_2004" : [ - "JN704705" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_100_2013" : [ - "KJ672457" - ], - "Hepatitis_B_virus_4383_97" : [ - "EU594396" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2919_2006" : [ - "FJ898431" - ], - "Potato_virus_Y_NTN_11289_1" : [ - "KC614702" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2316_2001" : [ - "FJ744730" - ], - "Cotton_leaf_curl_Rajasthan_virus__Si_17" : [ - "KM096467" - ], - "West_Nile_virus__AVA1204579" : [ - "KC736498" - ], - "Hepatitis_C_virus_subtype_1a__03D" : [ - "EU781760" - ], - "WU_Polyomavirus__MN2174" : [ - "GU296403" - ], - "Dengue_virus_2__3275_BR_PE_95" : [ - "JX669480" - ], - "Cleome_leaf_crumple_virus__BgV05B_1_C52" : [ - "NC_016572" - ], - "Sweet_potato_leaf_curl_virus__F_p2" : [ - "FJ515897" - ], - "Tula_virus__Tula_Kosice144_Ma_95" : [ - "Y13979" - ], - "MW_polyomavirus__TEDDY_01" : [ - "KC690147" - ], - "Hepatitis_B_virus__E2_8" : [ - "GU815698" - ], - "Brucella_suis_VBI22" : [ - "NC_016797", - "NC_016775" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3378_1999" : [ - "GQ868561" - ], - "Hepatitis_B_virus__patient_7" : [ - "KF767452" - ], - "Kenaf_leaf_curl_betasatellite__4AK" : [ - "LK028572" - ], - "West_Nile_virus__AZ_2004" : [ - "DQ164201" - ], - "South_African_cassava_mosaic_virus__MG_MG467A1_11" : [ - "KJ888017" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_6__AHEaCV_6_NZ_4645GA_2012" : [ - "KM874308" - ], - "Peanut_stunt_virus_J" : [ - "PSVJ1A", - "PSVJ2A" - ], - "Yam_mild_mosaic_virus__YB3_NC_2" : [ - "KJ125477" - ], - "Hepatitis_B_virus__dxn1086" : [ - "KC774491" - ], - "Human_immunodeficiency_virus_1__C_ZA_1162MB" : [ - "AY463224" - ], - "Bluetongue_virus_P635" : [ - "GQ506488", - "GQ506494", - "GQ506491", - "GQ506492", - "GQ506497", - "GQ506493", - "GQ506495", - "GQ506490", - "GQ506489", - "GQ506496" - ], - "West_Nile_virus__WNV_1_US_BID_V4373_2005" : [ - "HM488193" - ], - "Human_poliovirus_1__TJK35389" : [ - "KC880375", - "KC880376" - ], - "Dengue_virus_2__DENV_2_US_BID_V1431_2004" : [ - "EU677146" - ], - "Human_immunodeficiency_virus_1__97CNGX_6F" : [ - "AY008715" - ], - "Tomato_severe_rugose_virus__BR_Car224_08" : [ - "KC004079" - ], - "Paramecium_bursaria_Chlorella_virus_1" : [ - "NC_000852" - ], - "Okra_yellow_crinkle_Cameroon_alphasatellite__CM_Njo5sp2_09___Njo5sp2" : [ - "FN675287" - ], - "Hepatitis_B_virus_genotype_F_VNZ8624" : [ - "AB036920" - ], - "Bluetongue_virus_8__8438" : [ - "JX272548" - ], - "Cotton_leaf_curl_Multan_DNA_betasatellite____India_Barrackpore_01_Kenaf_2006" : [ - "EF620564" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2465_2007" : [ - "FJ882579" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1_7P20_2010_c1_7P20" : [ - "KF514415" - ], - "Human_immunodeficiency_virus_1__DR1120" : [ - "AB480698" - ], - "Tobacco_vein_banding_mosaic_virus__YND" : [ - "NC_009994" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V512_2005" : [ - "EU155281" - ], - "Hepatitis_B_virus__ES72_3" : [ - "JF828934" - ], - "Newcastle_disease_virus__Du_CH_SD_2009_134" : [ - "KJ600786" - ], - "Dengue_virus_1_ThD1_0102_01" : [ - "AY732479" - ], - "Hepatitis_B_virus__N10_M_6641M" : [ - "KJ173403" - ], - "Dengue_virus_2__DENV_2_PE_FSL699_2002" : [ - "KC294216" - ], - "Hepatitis_B_virus__G2_10" : [ - "GU815760" - ], - "Plum_pox_virus__BOR_3" : [ - "AY028309" - ], - "Sweet_potato_virus_2__SCN20" : [ - "KP115619" - ], - "Hepatitis_B_virus__Patient__4148__PNN5" : [ - "AB219430" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19090_D39650_2008" : [ - "KR135318" - ], - "Temperate_fruit_decay_associated_virus__MFB15S2" : [ - "KR134350" - ], - "Hepatitis_B_virus__B3_3" : [ - "GU815608" - ], - "Turnip_mosaic_virus__AUST19" : [ - "AB989636" - ], - "Canine_parvovirus_2c__UY55" : [ - "KM457106" - ], - "Porcine_circovirus_2_PCV2_RP7" : [ - "FJ667595" - ], - "JC_polyomavirus_721B" : [ - "AF300946" - ], - "Streptococcus_pneumoniae_D39" : [ - "NC_008533" - ], - "Norovirus_GII_Hu_JP_2001_GII_P22_GII_5_Saitama_T49__Saitama_T49" : [ - "KJ196277" - ], - "Acinetobacter_baumannii_BJAB07104" : [ - "NC_021728", - "NC_021727", - "NC_021726" - ], - "Dengue_virus_1__MKS_2094" : [ - "KC762644" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_AH0701" : [ - "GU461292" - ], - "Enterovirus_A71_SDLY107_E" : [ - "JX244186" - ], - "Mycoplasma_gallisepticum_WI01_2001_043_13_2P" : [ - "NC_018410" - ], - "Maize_streak_virus__MSV_A_MZ_Map3_Moz24_2007" : [ - "HQ693353" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_59_2012" : [ - "KJ686306" - ], - "Rice_dwarf_virus_Chinese" : [ - "NC_003767", - "NC_003772" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5471_2010" : [ - "JF920409" - ], - "Dengue_virus_2__DENV_2_VN_BID_V725_2006" : [ - "EU482662" - ], - "Rodent_Torque_teno_virus_2__RN_2_Se15" : [ - "NC_025966" - ], - "Cucumber_mosaic_virus_Pepo" : [ - "MCVCMVC" - ], - "Hepatitis_B_virus__pt8N" : [ - "KM875414" - ], - "Grapevine_rupestris_stem_pitting_associated_virus__GRSPaV_WA" : [ - "KC427107" - ], - "Toscana_virus__SI_51903" : [ - "EU003178" - ], - "Sulfolobus_turreted_icosahedral_virus_2" : [ - "NC_014099" - ], - "Human_poliovirus_3_NIE1118533" : [ - "KJ170657" - ], - "Ruegeria_TM1040" : [ - "NC_008044", - "NC_008043", - "NC_008042" - ], - "Dobrava_Belgrade_virus_GRW_Aa" : [ - "JQ026206", - "JQ026204", - "JQ026205" - ], - "Dengue_virus_1__DENV_1_NI_BID_V5067_2009" : [ - "JF937644" - ], - "Wongabel_virus_CS264" : [ - "NC_011639" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_TY1" : [ - "KP998424" - ], - "Acheta_domestica_densovirus__AdEu04" : [ - "KF015274" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0140" : [ - "KP759603" - ], - "Enterovirus_A71_4_SHENZHEN_08_China_HFMD_2008" : [ - "FJ607335" - ], - "South_African_cassava_mosaic_virus__MG_MG328A1_10" : [ - "KJ887982" - ], - "Cotton_leaf_curl_betasatellite__Haryana" : [ - "KP015742" - ], - "Tomato_yellow_leaf_distortion_virus" : [ - "NC_017913", - "NC_011348" - ], - "Human_herpesvirus_3_VZVi_Jena_GER_02_07_Z_3__52_2007" : [ - "JN704701" - ], - "Cucumber_mosaic_virus__Ca_P1" : [ - "DQ777747" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_VR_2332" : [ - "FJ524376", - "DQ217415", - "FJ524377" - ], - "Hepatitis_B_virus__SHB613" : [ - "KJ598728" - ], - "Sulfolobus_acidocaldarius_SUSAZ" : [ - "NC_023069" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_D_SD_FR29_2008" : [ - "KM229786" - ], - "Human_immunodeficiency_virus_1_06FR_CRN" : [ - "EU448296" - ], - "Foot_and_mouth_disease_virus_C1_C1_Noville_c1noville_iso56" : [ - "AY593804" - ], - "Cronobacter_phage_Dev2" : [ - "NC_023558" - ], - "Usutu_virus_V261" : [ - "KJ438717" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0016" : [ - "KP759742" - ], - "Potato_virus_Y_9703_5" : [ - "KC296433" - ], - "Spodoptera_exigua_multiple_nucleopolyhedrovirus__VT_SeAl1" : [ - "HG425343" - ], - "Porcine_circovirus_2_FMV05_7388" : [ - "DQ220733" - ], - "Dengue_virus_1__DENV_1_VN_BID_V953_2007" : [ - "EU482498" - ], - "Porcine_circovirus_2_SH0819" : [ - "GQ359010" - ], - "Norovirus_Hu_GII_4_Ehime5_2006_JP_Hu_GII_4_Ehime5_2006_JP" : [ - "AB447455" - ], - "Bacillus_phage_vB_BceM_Bc431v3" : [ - "NC_020873" - ], - "Banana_bunchy_top_virus__MY03" : [ - "AB252644", - "AB252641" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3712_2007" : [ - "GU131973" - ], - "Bombyx_mori_nucleopolyhedrovirus__C1" : [ - "KF306215" - ], - "South_African_cassava_mosaic_virus__MG_MG419B2_11" : [ - "KJ888014" - ], - "Enterobacteria_phage_NC10" : [ - "DQ079906" - ], - "Human_immunodeficiency_virus_1__CB471" : [ - "AY900575" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Po_Okra3" : [ - "FN554533" - ], - "Porcine_circovirus_2__XT" : [ - "HM161711" - ], - "Gallid_herpesvirus_2_RB_1B" : [ - "EF523390" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E2422_2010_G3P_8__E2422" : [ - "KF371839", - "KF371836", - "KF371845", - "KF371838", - "KF371842", - "KF371844", - "KF371840", - "KF371841", - "KF371837" - ], - "Labidocera_aestiva_circovirus" : [ - "NC_017843" - ], - "Rotavirus_A_RF" : [ - "KF729635", - "KF729697", - "KF729638", - "KF729647", - "KF729689", - "KF729650", - "KF729695", - "KF729642", - "KF729643", - "KF729664", - "KF729674", - "KF729639", - "KF729685", - "KF729668", - "KF729662", - "KF729676", - "KF729659", - "KF729665", - "KF729696", - "KF729669", - "KF729640", - "KF729648", - "KF729651", - "KF729675", - "KF729690", - "KF729660", - "KF729637", - "KF729677", - "KF729694", - "KF729684", - "KF729692", - "KF729672", - "KF729641", - "KF729658", - "KF729652", - "KF729686", - "KF729678", - "KF729680", - "KF729671", - "KF729646", - "KF729644", - "KF729670", - "KF729634", - "KF729682", - "KF729661", - "KF729688", - "KF729687", - "KF729663", - "KF729693", - "KF729667", - "KF729645", - "KF729683", - "KF729636", - "KF729679", - "KF729649", - "KF729666", - "KF729681", - "KF729673" - ], - "Hepatitis_B_virus_4460" : [ - "EU796070" - ], - "Hepatitis_B_virus__5205" : [ - "JN827421" - ], - "Clostridium_pasteurianum_BC1" : [ - "NC_021182", - "NC_021183" - ], - "Infectious_salmon_anemia_virus__Varaldsoy_96" : [ - "AF262388" - ], - "Porcine_circovirus_2_FMV05_8574" : [ - "DQ220727" - ], - "Maize_streak_virus__MSV_B3_Re_Bap_R3_2006" : [ - "EU628614" - ], - "Human_adenovirus_31" : [ - "AM749299" - ], - "Bluetongue_virus_2" : [ - "BTVSEQUA", - "S78452" - ], - "Gossypium_davidsonii_symptomless_alphasatellite__Must_alphaB_1B" : [ - "NC_013011" - ], - "Human_immunodeficiency_virus_1__03ZASK071B1" : [ - "DQ056407" - ], - "Torque_teno_virus_10__BIS8_17" : [ - "GU797360" - ], - "Escherichia_phage_Lw1" : [ - "NC_021344" - ], - "Human_papillomavirus_type_18__CU14" : [ - "GQ180790" - ], - "Clostridium_difficile_R20291" : [ - "NC_013316" - ], - "Carnation_mottle_virus__Dixie" : [ - "AJ304989" - ], - "Hepatitis_delta_virus__TW1025_14" : [ - "AY648954" - ], - "Variola_virus_South_Africa_1965__103_T_vaal__Nelspruit" : [ - "DQ441436" - ], - "Toscana_virus_TOSV_Siena_ITA_1982_2" : [ - "KM275786" - ], - "Maize_streak_virus____Raw__MSV_D_MSV_Raw" : [ - "AF329889" - ], - "Pepper_golden_mosaic_virus__Guanajuato2" : [ - "GU128149" - ], - "Rift_Valley_fever_virus_Sudan_B_2007" : [ - "JQ840746" - ], - "Foot_and_mouth_disease_virus___type_O__persistent_OUKG_77dpc" : [ - "KR265073" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_5__AHEaCV_5_NZ_3091C2_2012" : [ - "NC_026629" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_77U208_1977_IE" : [ - "KC344437" - ], - "Burkholderia_cenocepacia_AU_1054" : [ - "NC_008062", - "NC_008061", - "NC_008060" - ], - "Hepatitis_E_virus__JKK_Sap" : [ - "AB074917" - ], - "Tomato_leaf_curl_Taiwan_virus__YL10_3_1" : [ - "GU723720" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_382_2012" : [ - "KP308457" - ], - "Mamastrovirus_1__SH1" : [ - "FJ375759" - ], - "Candidatus_Pelagibacter_IMCC9063" : [ - "NC_015380" - ], - "Hepatitis_delta_virus_dFr2406_dFr2406" : [ - "AM902175" - ], - "Marburg_marburgvirus_pp3_guinea_pig_lethal_variant_Musoke_Kenya__1980" : [ - "AY430365" - ], - "Human_immunodeficiency_virus_1__C_96BW16B01" : [ - "AF110976" - ], - "Enterovirus_A71_BrCr_TR" : [ - "AB204852" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_A2MC2" : [ - "JQ087873" - ], - "Hepatitis_B_virus__MLT0606" : [ - "KF779286" - ], - "Maize_streak_virus__MSV_A_ZA_Jac_D7_2006" : [ - "HQ693415" - ], - "Rabbit_hemorrhagic_disease_virus__RHDV_N11" : [ - "KM878681" - ], - "Bacillus_phage_B5S" : [ - "JN797796" - ], - "Potato_leafroll_virus__VIRUBRA_1_047" : [ - "EU313202" - ], - "Enterobacteria_phage_f1__NBRC_20015" : [ - "AB334721" - ], - "Omsk_hemorrhagic_fever_virus_Guriev" : [ - "AB507800" - ], - "Beak_and_feather_disease_virus__CS08_450_OBP_TAS_19183" : [ - "KF188688" - ], - "Rosellinia_necatrix_fusarivirus_1_NW10" : [ - "NC_024485" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0019" : [ - "KP759754" - ], - "Blainvillea_yellow_spot_virus__BR_Vic08_10" : [ - "KC706524", - "KC706518" - ], - "Sida_mottle_Alagoas_virus__BR_Vsa1_10" : [ - "JX871384" - ], - "Snowshoe_hare_virus" : [ - "SSHS", - "SSHM", - "EU294510" - ], - "Propionibacterium_phage_ATCC29399B_C" : [ - "NC_018851" - ], - "Middle_East_respiratory_syndrome_coronavirus__Qatar3" : [ - "KF961221" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_99_2013" : [ - "KJ672437" - ], - "Hepatitis_B_virus__IVa" : [ - "AY167098" - ], - "Hepatitis_B_virus__HBV_TJ1_1_2" : [ - "AB205118" - ], - "Norovirus_Hu_GII_4_Miyazaki4_2008_JP_Hu_GII_4_Miyazaki4_2008_JP" : [ - "AB541295" - ], - "Cotton_leaf_curl_Gezira_betasatellite__BF_Tie_Okra2" : [ - "FN554573" - ], - "Hepatitis_C_virus__QC274" : [ - "FJ839870" - ], - "Bean_golden_mosaic_virus__BR_Par6_12" : [ - "KJ939800" - ], - "Mycobacterium_phage_Puhltonio" : [ - "GQ303264" - ], - "Duck_hepatitis_B_virus__DHBVQCA34" : [ - "NC_001344" - ], - "Wheat_dwarf_virus__Shahrekord" : [ - "JN791095" - ], - "Sugarcane_mosaic_virus__Seehausen" : [ - "JX185303" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PR_51A_2008" : [ - "HM748934" - ], - "Mungbean_yellow_mosaic_India_virus_Indonesia__Brebes_3" : [ - "JN368446", - "JN368438" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__1" : [ - "X63015", - "X63016" - ], - "Hepatitis_B_virus__KAMCHATKA25" : [ - "AB188241" - ], - "Human_papillomavirus_type_16__Qv00370" : [ - "HQ644256" - ], - "Hepatitis_B_virus__HB13_0666" : [ - "AB937794" - ], - "Grapevine_geminivirus__JRT_456_17NOV10" : [ - "NC_017918" - ], - "Hepatitis_B_virus__137" : [ - "JQ023665" - ], - "Synechococcus_phage_ACG_2014g__Syn7803US105" : [ - "NC_026924" - ], - "Hepatitis_B_virus__FMD138" : [ - "GU332706" - ], - "Infectious_bursal_disease_virus_B87" : [ - "DQ906922", - "DQ906921" - ], - "Borna_disease_virus_CRP3A" : [ - "AY114161" - ], - "Human_parainfluenza_virus_3_HPIV3_USA_10991B_2010" : [ - "KF530232" - ], - "JC_polyomavirus__JCV144_34" : [ - "JF424887" - ], - "Dengue_virus_3__DENV_3_VE_BID_V903_2001" : [ - "EU529688" - ], - "Human_immunodeficiency_virus_2__96FR12034" : [ - "AY530889" - ], - "Hepatitis_C_virus_subtype_2c__HCV_2c_GB_BID_G1293" : [ - "JX227965" - ], - "SARS_coronavirus_HZS2_Bb__HZS2_Bb" : [ - "AY395004" - ], - "Maize_streak_virus__MSV_E_Za_MitA_g125_2006" : [ - "EU628626" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1818_2007" : [ - "FJ410208" - ], - "Lactococcus_Phage_ASCC544" : [ - "JQ740814" - ], - "Nemesia_ring_necrosis_virus" : [ - "NC_011538" - ], - "Japanese_encephalitis_virus__SH045" : [ - "JN381866" - ], - "Hepatitis_B_virus__HBV_IND8" : [ - "AB116087" - ], - "Hepatitis_B_virus__MY402913" : [ - "KJ803813" - ], - "Norovirus_Hu_GII_30201_2009_VNM_Hu_GII_30201_2009_VNM" : [ - "KC409312" - ], - "Porcine_circovirus_2_HR" : [ - "AF381176" - ], - "Aura_virus" : [ - "NC_003900" - ], - "Staphylococcus_epidermidis_RP62A" : [ - "NC_006663", - "NC_002976" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2767_2007" : [ - "GQ199791" - ], - "Hepatitis_B_virus__TP55" : [ - "KF192837" - ], - "Japanese_encephalitis_virus__HN0411" : [ - "JN381831" - ], - "Squash_leaf_curl_Philippines_virus__P88" : [ - "EU487033" - ], - "Foot_and_mouth_disease_virus___type_O__SAR_19_2000" : [ - "AJ539140" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_377_2012" : [ - "KP308412" - ], - "Tomato_yellow_leaf_curl_virus__ES_Mlg_TY11_Pep2003" : [ - "KC953602" - ], - "Hepatitis_B_virus__PNF4864" : [ - "KF779341" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_97_2012" : [ - "KJ686180" - ], - "Papiine_herpesvirus_2_OU4_8" : [ - "KF908243" - ], - "Hepatitis_B_virus__JPN_CH2" : [ - "AB453980" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V47_2002" : [ - "EU256008" - ], - "Duck_hepatitis_A_virus_3_GD" : [ - "GQ122332" - ], - "Human_bocavirus__CU74" : [ - "EF203922" - ], - "Mokola_virus__RV4" : [ - "KF155005" - ], - "Human_immunodeficiency_virus_1__ID17" : [ - "AB485653", - "AB485652" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Jam2" : [ - "AB811787" - ], - "GB_virus_C_K1668" : [ - "D87714" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2803_2007" : [ - "FJ882552" - ], - "BK_polyomavirus__ANY_33" : [ - "AB464959" - ], - "Rabies_virus__BR_AL1" : [ - "AB519641" - ], - "Porcine_circovirus_2_PCV2_P4_1" : [ - "FJ667588" - ], - "Hepatitis_B_virus__cww1053" : [ - "KC774256" - ], - "Simian_adenovirus_22_ATCC_VR_591" : [ - "AY530876" - ], - "Mesta_yellow_vein_mosaic_virus_associated_DNA_beta__Basirhat" : [ - "NC_009903" - ], - "Dengue_virus_2__DENV_2_CO_BID_V3372_2005" : [ - "GQ868556" - ], - "Perina_nuda_virus" : [ - "NC_003113" - ], - "Hepatitis_B_virus__SamsunD50" : [ - "AB674426" - ], - "Rubella_virus_RVi_Kalamazoo_MI_USA_4_07_2B" : [ - "JN635292" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10GX_5" : [ - "JQ663562" - ], - "Temperate_fruit_decay_associated_virus__MFPpe6" : [ - "KR134330" - ], - "Bean_yellow_mosaic_virus__FB" : [ - "HG970867" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_91E_611_01_1991" : [ - "KP258710" - ], - "Norovirus_Hu_GII_4_Miyagi5_2008_JP_Hu_GII_4_Miyagi5_2008_JP" : [ - "AB541284" - ], - "Hepatitis_B_virus__Tbblack" : [ - "AY330916" - ], - "Dengue_virus_1_VE_61063_2006" : [ - "HQ332181" - ], - "Chlamydia_psittaci_NJ1" : [ - "NC_018637", - "NC_018626" - ], - "JC_polyomavirus__RH_3" : [ - "AB262409" - ], - "Human_poliovirus_1__DOR00013" : [ - "AF405690" - ], - "West_Nile_virus__WNV_1_US_BID_V5214_2007" : [ - "JF920743" - ], - "Hepatitis_B_virus__clz1031" : [ - "KC774190" - ], - "SARS_coronavirus_LLJ_2004" : [ - "AY595412" - ], - "Meleagris_gallopavo_enteric_parvovirus__TuPV_1085" : [ - "KM598419" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2874_2006" : [ - "GQ199841" - ], - "Human_poliovirus_1_NIE1018393" : [ - "KJ170501" - ], - "Hepatitis_B_virus__Leb57" : [ - "JN642158" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2736_2007" : [ - "FJ906964" - ], - "Synechococcus_phage_ACG_2014a__Syn7803US102" : [ - "KJ019068" - ], - "Dengue_virus_3__DENV_3_US_BID_V1044_2006" : [ - "EU529692" - ], - "Jatropha_curcas_mosaic_virus__JC_3" : [ - "JN692494" - ], - "Mycobacterium_phage_Audrey" : [ - "KJ194581" - ], - "Mayaro_virus_MAYLC" : [ - "DQ001069" - ], - "Ethiopian_tobacco_bushy_top_virus__18_2" : [ - "NC_024808" - ], - "Tomato_leaf_curl_Joydebpur_betasatellite__India_Kolkata_Chilli_2007___India_Kolkata_Chilli_2007" : [ - "HM007110" - ], - "Hepatitis_C_virus__160526" : [ - "KC248195" - ], - "Lake_Victoria_marburgvirus___DRC1999_09DRC99" : [ - "DQ447652" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL108A" : [ - "AB985550", - "AB985318" - ], - "Tobacco_mosaic_virus__Yihan_1" : [ - "HE818455" - ], - "Sweet_potato_virus_G__WT325" : [ - "KF790759" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V250_2002" : [ - "EU482856" - ], - "Human_parainfluenza_virus_3_HPIV3_MEX_4601_2009" : [ - "KF687331" - ], - "Bifidobacterium_longum_DJO10A" : [ - "NC_010816", - "NC_004252", - "NC_004253" - ], - "South_African_cassava_mosaic_virus__MG_MG409A1_11" : [ - "KJ887714" - ], - "Human_poliovirus_2__VDPV_MAD005" : [ - "AM884184" - ], - "Hepatitis_B_virus__IR_IPI_P4" : [ - "AY741798" - ], - "Hepatitis_B_virus__GU1405" : [ - "GQ161821" - ], - "Human_betacoronavirus_2c_Jordan_N3_2012_Jordan_N3_2012" : [ - "KC776174" - ], - "Hepatitis_B_virus__WHYSR" : [ - "JN257210" - ], - "Bluetongue_virus_11_BTV_11_MQ" : [ - "JQ972862", - "JQ972865", - "JQ972861", - "JQ972866", - "JQ972864", - "JQ972869", - "JQ972867", - "JQ972868", - "JQ972863", - "JQ972870" - ], - "African_cassava_mosaic_virus__CF_CF114AB1_07" : [ - "KJ887793" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V374_2006" : [ - "EU155259" - ], - "Duck_hepatitis_A_virus_1_JX" : [ - "EF093502", - "EU371557" - ], - "Hepatitis_B_virus__MOD_4568" : [ - "GQ183486" - ], - "Hepatitis_B_virus__No37" : [ - "AB697512" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_684_2008" : [ - "JX221036" - ], - "Human_immunodeficiency_virus_1___227" : [ - "AB428555" - ], - "Hepatitis_C_virus_subtype_1b__No__7" : [ - "AB154182" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_SCC_W0610" : [ - "KF385418" - ], - "La_Crosse_virus_LACV_human_1960" : [ - "EF485031", - "EF485030", - "EF485032" - ], - "Cauliflower_mosaic_virus__IRN3" : [ - "AB863138" - ], - "Coxsackievirus_A6_SZc294_13" : [ - "KF682363" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V180_1990" : [ - "EU255973" - ], - "Reston_ebolavirus___Reston_Reston08_E" : [ - "FJ621585" - ], - "Hepatitis_B_virus__P006_C_B1" : [ - "KJ173367" - ], - "Porcine_circovirus_2__CC1" : [ - "JQ955679" - ], - "Alphapapillomavirus_12" : [ - "NC_001678" - ], - "Human_immunodeficiency_virus_1__pXJDC6291_2_6" : [ - "KC503852" - ], - "Zucchini_tigre_mosaic_virus__Re01_25" : [ - "NC_023175" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1881_2007" : [ - "FJ410228" - ], - "West_Nile_virus__WNV_1_US_BID_V4631_2008" : [ - "HM488242" - ], - "Hepatitis_B_virus__A2_3" : [ - "GU815562" - ], - "Porcine_coronavirus_HKU15_HKU15_155" : [ - "JQ065043" - ], - "West_Nile_virus__WNV_1_US_BID_V6698_2002" : [ - "KJ501426" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3996_2008" : [ - "JF937610" - ], - "Hepatitis_B_virus__C_PNG_H086A_2004" : [ - "HQ700522" - ], - "Human_papillomavirus_type_35__Rw862" : [ - "HQ537720" - ], - "Classical_swine_fever_virus_CSFV_1_1_dp_CSF0382_XXXX_Koslov" : [ - "HM237795" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1814_2007" : [ - "FJ410207" - ], - "Human_respiratory_syncytial_virus__03_033338" : [ - "JQ901456" - ], - "Tomato_yellow_leaf_curl_virus__Alb76" : [ - "FJ956706" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_353_2012" : [ - "KP308409" - ], - "Groundnut_rosette_virus_Nigerian_green_satellite_RNA" : [ - "Z29705" - ], - "Human_herpesvirus_5_BE_20_2011" : [ - "KP745698" - ], - "Bocavirus_gorilla_GBoV1_2009__GBoV1" : [ - "NC_014358" - ], - "Porcine_circovirus_2__LFNI2" : [ - "KF374705" - ], - "Rabies_virus_CTNCEC25" : [ - "KJ466147" - ], - "Sugarcane_yellow_leaf_virus__IND2" : [ - "JF925153" - ], - "Enterovirus_C__V3_Tul_1" : [ - "HQ738296" - ], - "Hepatitis_C_virus__EBW424" : [ - "KC248197" - ], - "Human_papillomavirus_type_6__29" : [ - "HG793837" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3893_2008" : [ - "HM181962" - ], - "Tomato_yellow_leaf_curl_virus_Israel_New_Caledonia_Noumea4_2010" : [ - "HE603244" - ], - "Human_immunodeficiency_virus_1__A025" : [ - "AF408626" - ], - "Bluetongue_virus_9__MBN" : [ - "JF443156" - ], - "Bifidobacterium_bifidum_BGN4" : [ - "NC_017999" - ], - "GB_virus_C__920_49" : [ - "KP710603" - ], - "Hepatitis_B_virus__SHB89" : [ - "KJ598771" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HUN4" : [ - "EF635006" - ], - "TTV_like_mini_virus__TLMV_CBD231" : [ - "AB026930" - ], - "Homalodisca_vitripennis_reovirus__NC22" : [ - "GU437852" - ], - "Hepatitis_B_virus_513_30a" : [ - "KR013794" - ], - "Human_metapneumovirus_Sabana" : [ - "HM197719" - ], - "European_brown_hare_syndrome_virus_EBHSV_GD" : [ - "NC_002615" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00083_1986_17_P17H17F17" : [ - "KF268330" - ], - "Helicobacter_cetorum_MIT_99_5656" : [ - "NC_017735", - "NC_017736" - ], - "Hepatitis_C_virus__166212" : [ - "KC248196" - ], - "Myxoma_virus_Aust_Corowa_12_52_2_KM13" : [ - "JX565569" - ], - "JC_polyomavirus__ML_2" : [ - "AB198950" - ], - "Hepatitis_B_virus_FE_929_MO" : [ - "EU054331" - ], - "Saffold_virus__Pak_3641" : [ - "AB747250" - ], - "Hepatitis_delta_virus__C06" : [ - "KF660599" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1667_2007" : [ - "FJ182034" - ], - "Dugbe_virus__ArD44313" : [ - "NC_004158", - "NC_004159" - ], - "Yersinia_phage_YpsP_G" : [ - "JQ965703" - ], - "Hepatitis_B_virus__S142" : [ - "FJ386656" - ], - "Chickpea_chlorotic_dwarf_virus__F_YeV26_96" : [ - "KC172671" - ], - "Human_papillomavirus_type_31__QV18335" : [ - "HQ537667" - ], - "Bacillus_phage_Staley" : [ - "NC_022767" - ], - "Human_adenovirus_43" : [ - "JN226762" - ], - "Staphylococcus_phage_96" : [ - "NC_007057" - ], - "Hepatitis_B_virus__Ag31" : [ - "KJ843192" - ], - "Japanese_encephalitis_virus_RP9_190" : [ - "KF907505" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3495D_2002" : [ - "JN989430" - ], - "Enterovirus_A71_KM186_09" : [ - "HQ423143" - ], - "Streptococcus_agalactiae_NEM316" : [ - "NC_004368" - ], - "Hepatitis_B_virus_UZNV24_UZNV24" : [ - "AB222711" - ], - "Toscana_virus_TOSV_Firenze_ITA_2009_3" : [ - "KM275781" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_80E_188_01_1980" : [ - "KP258738" - ], - "Human_mastadenovirus_B_human_USA_CL_45_1988_3_P3H7F3" : [ - "KF268132" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3487H_2002" : [ - "JN989427" - ], - "Clostridium_phage_phiCP34O" : [ - "NC_019508" - ], - "West_Nile_virus__WNV_1_US_BID_V6197_2009" : [ - "KJ501251" - ], - "WU_Polyomavirus__B41" : [ - "GU296385" - ], - "Porcine_circovirus_1_SC_11" : [ - "EF493843" - ], - "Porcine_circovirus_2__A4205" : [ - "JF317576" - ], - "Avian_leukosis_virus_SDAU09C1" : [ - "HM452339" - ], - "Bluetongue_virus_1__IND1999_01" : [ - "AJ586662" - ], - "Leuconostoc_mesenteroides_ATCC_8293" : [ - "NC_008531", - "NC_008496" - ], - "Dengue_virus_1__MKS_0352" : [ - "KC762637" - ], - "Avian_paramyxovirus_4__APMV_4_KR_YJ_06" : [ - "EU877976" - ], - "Hepatitis_B_virus__462_4_1979" : [ - "DQ463793" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3719_2007" : [ - "KF955395" - ], - "West_Nile_virus__WNV_1_US_BID_V5216_2007" : [ - "JF920745" - ], - "Hepatitis_B_virus__cpzcam17" : [ - "FJ798098" - ], - "Saccharothrix_espanaensis_DSM_44229" : [ - "NC_019673" - ], - "Turnip_mosaic_virus__TANX2" : [ - "EU734433" - ], - "BK_polyomavirus__FIN_11" : [ - "AB260029" - ], - "Simian_immunodeficiency_virus_SIVmac239_96123" : [ - "AY611487" - ], - "Marinomonas_MWYL1" : [ - "NC_009654" - ], - "Hepatitis_B_virus__V137" : [ - "HM363583" - ], - "Hepatitis_B_virus__214_1" : [ - "GU434374" - ], - "Bat_coronavirus_HKU9_10_2" : [ - "HM211101" - ], - "Porcine_circovirus_2_HSH1" : [ - "DQ910866" - ], - "Human_rhinovirus_A58_ATCC_VR_1168" : [ - "FJ445142" - ], - "Pseudomonas_phage_Pa2" : [ - "NC_027345" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1527_2007" : [ - "EU677155" - ], - "Hepatitis_B_virus__I82" : [ - "FJ562334" - ], - "West_Nile_virus__WNV_1_US_BID_V6442_2002" : [ - "KJ501463" - ], - "Rabies_virus_SAD_Bern__Lysvulpen" : [ - "EF206708" - ], - "Propionibacterium_freudenreichii_shermanii_CIRM_BIA1" : [ - "NC_014215" - ], - "Hyphomicrobium_nitrativorans_NL23" : [ - "NC_022997" - ], - "Hepatitis_B_virus__S6_2" : [ - "EU916224" - ], - "Carnobacterium_WN1359" : [ - "NC_022607", - "NC_022601", - "NC_022602", - "NC_022603", - "NC_022608", - "NC_022606" - ], - "Cowpox_virus_GRI_90" : [ - "X94355" - ], - "Graminella_nigrifrons_virus_1__Ohio" : [ - "NC_026733" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2969_2003" : [ - "FJ898472" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1330" : [ - "KM573774" - ], - "Bluetongue_virus_22__NIG1982_11" : [ - "AJ586726" - ], - "Variola_virus_Ethiopia_1972__Eth16_R14_1X_72_Addis" : [ - "DQ441424" - ], - "Middle_East_respiratory_syndrome_coronavirus__Camel_UAE_D1164_11_2014" : [ - "KP719929" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20142856" : [ - "KR653302" - ], - "Mythimna_loreyi_densovirus" : [ - "NC_005341" - ], - "Pepper_mottle_virus__205205" : [ - "EU586135" - ], - "Hepatitis_E_virus_genotype_3_JIO_swJ19_2" : [ - "AB443624" - ], - "Tomato_enation_leaf_curl_virus__TC14" : [ - "NC_026761" - ], - "Hepatitis_B_virus__HBV128" : [ - "JN688695" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2852_2005" : [ - "FJ898391" - ], - "Caldicellulosiruptor_bescii_DSM_6725" : [ - "NC_012034", - "NC_012036", - "NC_012037" - ], - "Streptomyces_flavogriseus_ATCC_33331" : [ - "NC_016115", - "NC_016114", - "NC_016110" - ], - "Cauliflower_mosaic_virus__IRNKEC17" : [ - "KF357594" - ], - "BK_polyomavirus__KT_867_USA" : [ - "KF055892" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HLJ_09" : [ - "HQ843178" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2184_2001" : [ - "FJ639755" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V409_2006" : [ - "EU155275" - ], - "Human_rhinovirus_B92_ATCC_VR_1293" : [ - "FJ445169" - ], - "Hepatitis_E_virus__JE03_1760F_p0" : [ - "AB362841" - ], - "Porcine_circovirus_2__HKS03_04" : [ - "DQ997816" - ], - "Dengue_virus_1__SG_EHI_D1210Y03" : [ - "FJ469908" - ], - "Beet_mild_yellowing_virus__Broom_s_Barn" : [ - "EF107543" - ], - "Euphorbia_mosaic_virus__Eu4" : [ - "JQ963887", - "JQ963888" - ], - "Schlumbergera_virus_X__Palma_PE" : [ - "KP090203" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_130630" : [ - "KP036504" - ], - "Natranaerobius_thermophilus_JW_NM_WN_LF" : [ - "NC_010715", - "NC_010724", - "NC_010718" - ], - "Hepatitis_B_virus_593_1" : [ - "KR013987" - ], - "Human_herpesvirus_3_VZVi_Jena_GER_37_05_V_VIII__1483_2005" : [ - "JN704709" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V699_2007" : [ - "EU255942" - ], - "Hepatitis_B_virus__SHB713" : [ - "KJ598747" - ], - "Anaerobaculum_mobile_DSM_13181" : [ - "NC_018024" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ21AI3_2009" : [ - "JF909206" - ], - "Dengue_virus_1__DENV_1_TH_BID_V2276_2001" : [ - "FJ687432" - ], - "Hepatitis_B_virus__cur1031" : [ - "KC774232" - ], - "Papaya_ringspot_virus__PG" : [ - "EU126128" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3385_2006" : [ - "GQ868565" - ], - "Tomato_leaf_curl_Oman_virus__Alb22" : [ - "NC_014542" - ], - "Banana_bunchy_top_virus__Kerala_1" : [ - "FJ009239", - "FJ009238" - ], - "Porcine_circovirus_2__DHY077" : [ - "KJ680342" - ], - "Watermelon_mosaic_virus__C06_526" : [ - "JF273462" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1807_2007" : [ - "FJ410202" - ], - "Sugarcane_yellow_leaf_virus__BRA_YL1" : [ - "AM072750" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2894_2006" : [ - "FJ898413" - ], - "Maize_chlorotic_mottle_virus__Sichuan" : [ - "JQ982470" - ], - "European_mountain_ash_ringspot_associated_virus__E52278" : [ - "HG799713" - ], - "Norovirus_Hu_GII_4_Sutherland_NSW505G_2007_AUS_Hu_GII_4_NSW505G_2007_AU" : [ - "GQ845368" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_159_2012" : [ - "KJ686253" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_128_2001" : [ - "DQ404177" - ], - "Foot_and_mouth_disease_virus___type_O__Israel_07_6391" : [ - "FJ175665" - ], - "Maize_streak_virus__MSV_A1_Mz_ChiA_g200_2007" : [ - "EU628565" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_73_2013" : [ - "KJ672454" - ], - "Hepatitis_B_virus__N15_C_4159b" : [ - "KJ173412" - ], - "Rabies_virus__184VNO" : [ - "JQ944704" - ], - "Human_papillomavirus_type_18__CU16" : [ - "GQ180792" - ], - "Hepatitis_B_virus__EI0423" : [ - "DQ315782" - ], - "Streptomyces_phage_phiBT1" : [ - "NC_004664" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3847_2008" : [ - "GU131685" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_156_2012" : [ - "KJ686271" - ], - "Enterovirus_D68__2011_21286" : [ - "KT306743" - ], - "Hepatitis_B_virus__MMA_20" : [ - "AM421548" - ], - "Israeli_acute_paralysis_virus_Wus_China_2008" : [ - "HQ897161" - ], - "Soybean_mosaic_virus__XFQ001" : [ - "KP710871" - ], - "Hepatitis_B_virus__17UC" : [ - "AB493846" - ], - "Helicobacter_pylori_PeCan4" : [ - "NC_014555", - "NC_014556" - ], - "Abutilon_mosaic_virus__FP" : [ - "LN611625", - "LN611623" - ], - "Hepatitis_E_virus__T1" : [ - "AJ272108" - ], - "Human_rotavirus_A_262_stool" : [ - "AJ236784" - ], - "Dengue_virus_2__DENV_2_NI_BID_V535_2005" : [ - "EU482757" - ], - "Tomato_yellow_leaf_curl_virus__SDAb" : [ - "KC852149" - ], - "Tomato_yellow_leaf_curl_virus__JLSY" : [ - "KC702798" - ], - "Hepatitis_B_virus__N17_M_199A" : [ - "KJ173441" - ], - "Infectious_bronchitis_virus__BJ" : [ - "AY319651" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD155_2013" : [ - "KM229822" - ], - "Fruit_bat_alphaherpesvirus_1" : [ - "NC_024306" - ], - "Hepatitis_B_virus_1303_31" : [ - "KR014032" - ], - "Enterovirus_C__V3_Tul_6" : [ - "HQ738301" - ], - "Staphylococcus_phage_SMSAP5__SMSAP5" : [ - "NC_019513" - ], - "Chloris_striate_mosaic_virus__AU_KP11_1983" : [ - "JQ948055" - ], - "Tomato_yellow_leaf_curl_virus__Jiroft_Iran___TYLCV_OM_IR_Ji48_07" : [ - "GU076450" - ], - "Rabies_virus__OR05455" : [ - "JQ685948" - ], - "Gokushovirinae_Fen7875_21__Fen7875_21" : [ - "NC_027645" - ], - "Marburg_marburgvirus_Uganda_01Uga07_811214" : [ - "FJ750957" - ], - "Human_immunodeficiency_virus_1__671_00T169" : [ - "AY423385" - ], - "Dengue_virus_2__DS31_291005" : [ - "EU179857" - ], - "Salmonella_enterica_serovar_Paratyphi_A_ATCC_9150" : [ - "NC_006511" - ], - "Squash_leaf_curl_virus__JO3_112" : [ - "KM595198" - ], - "Conexibacter_woesei_DSM_14684" : [ - "NC_013739" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD117_2013" : [ - "KM229810" - ], - "Human_polyomavirus_7__727a" : [ - "HM011569" - ], - "Porcine_circovirus_2_Huanan_1" : [ - "EF493837" - ], - "Hepatitis_B_virus__ggcam22" : [ - "FJ798097" - ], - "Budgerigar_fledgling_disease_polyomavirus" : [ - "FJ385773", - "AF118150", - "PLYGEN", - "AY672646" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXM40" : [ - "GQ499194" - ], - "Machupo_mammarenavirus_Carvallo_USAMRIID_ID_18464" : [ - "JN794583", - "JN794584" - ], - "Human_bocavirus_JPOC08_094" : [ - "AB481084" - ], - "Human_papillomavirus_type_16__JP0777" : [ - "AB818687" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1978_2000" : [ - "FJ639669" - ], - "Equine_arteritis_virus_F27" : [ - "JN211316" - ], - "Hepatitis_B_virus__Crazywoman" : [ - "AY330917" - ], - "Melon_chlorotic_mosaic_virus__VE10_134" : [ - "KF670630", - "KF670631" - ], - "Klebsiella_phage_KP34_KP34" : [ - "NC_013649" - ], - "Canine_distemper_virus_recombinant_Snyder_Hill" : [ - "GU138403" - ], - "Soil_borne_wheat_mosaic_virus_Oklahoma_OKl_1" : [ - "X81639" - ], - "Dengue_virus_3_D3_SG_05K2400DK1_2005" : [ - "EU081193" - ], - "Malvastrum_yellow_vein_betasatellite__Y206" : [ - "AJ744882" - ], - "Hepatitis_B_virus__NB215M_m215" : [ - "KJ173304" - ], - "Tomato_leaf_curl_New_Delhi_virus_Severe_Jessore" : [ - "AJ875157", - "AJ875158" - ], - "Clostridium_phage_phiCP7R__phiCP24R" : [ - "NC_017980" - ], - "Hepatitis_B_virus__C_PNG_W034A_2004" : [ - "HQ700528" - ], - "Hepatitis_B_virus_HB181" : [ - "HM011488" - ], - "Halovirus_HHTV_1" : [ - "NC_021322" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2215_2003" : [ - "FJ639782" - ], - "Chlamydophila_pneumoniae_AR39" : [ - "NC_002179", - "NC_002180" - ], - "Tomato_yellow_leaf_curl_China_virus_Tb_Y36___Y36" : [ - "AJ420316" - ], - "Odontoglossum_ringspot_virus_Taiwan" : [ - "DQ139262", - "AY571290" - ], - "Mycobacterium_phage_Redno2" : [ - "NC_022066" - ], - "Hepatitis_B_virus__015_WA_Gou" : [ - "KF873522" - ], - "Dengue_virus_1__DF01_HUB01021093" : [ - "FJ384655" - ], - "Clostridium_phage_phiCD27" : [ - "NC_011398" - ], - "Norovirus_Hu_GII_4_Hiroshima3_2007_JP_Hu_GII_4_Hiroshima3_2007_JP" : [ - "AB541255" - ], - "Human_coronavirus_HKU1_N10" : [ - "DQ415907" - ], - "Edwardsiella_phage_eiAU_183" : [ - "NC_023555" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__CK18" : [ - "EF577264", - "EF577265" - ], - "Aeromonas_phage_CC2" : [ - "NC_019538" - ], - "Human_papillomavirus_type_16__Fr207412" : [ - "HQ644243" - ], - "Norovirus_Hu_GII_4_CHDC4871_1977_US_Hu_GII_4_CHDC4871_1977_US" : [ - "FJ537138" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_18_DRC" : [ - "JX458842" - ], - "Human_metapneumovirus" : [ - "CQ840316" - ], - "Temperate_fruit_decay_associated_virus__MFBpe12" : [ - "KR134334" - ], - "Human_immunodeficiency_virus_1__CH12" : [ - "AY536235" - ], - "Hepatitis_B_virus__P105" : [ - "GQ477499" - ], - "Gremmeniella_abietina_RNA_virus_MS1__C5" : [ - "NC_004019", - "NC_004018", - "NC_004020" - ], - "Bean_golden_mosaic_virus__BR_Par23_12" : [ - "KJ939808" - ], - "Hepatitis_B_virus__2518" : [ - "FJ386652" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3807_2005" : [ - "GU131904" - ], - "West_Nile_virus__WNV_1_BID_V5031" : [ - "JN819306" - ], - "Sugarcane_streak_Reunion_virus__SSRV_B_ZmNya" : [ - "EU244916" - ], - "Mulberry_vein_banding_virus__XCSY_3" : [ - "NC_026618", - "NC_026619", - "NC_026617" - ], - "Tomato_leaf_curl_China_betasatellite__Y87" : [ - "AJ457818" - ], - "Thermomicrobium_roseum_DSM_5159" : [ - "NC_011959", - "NC_011961" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH21_2011" : [ - "KM188446" - ], - "Hepatitis_B_virus__FMD132" : [ - "GU332703" - ], - "Leptolyngbya_PCC_7376" : [ - "NC_019683" - ], - "Feline_immunodeficiency_virus__Gc34" : [ - "EF455603" - ], - "Human_immunodeficiency_virus_1__DR1236" : [ - "AB253698", - "AB253692", - "AB253701", - "AB253694", - "AB253697", - "AB253700", - "AB253696", - "AB253695", - "AB253693", - "AB253702", - "AB253699" - ], - "Banana_bunchy_top_virus__JY1_807" : [ - "AB160953" - ], - "Caulobacter_crescentus_NA1000" : [ - "NC_011916" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Forecariah_989" : [ - "KR534526" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO05AL2_2009" : [ - "JF909222" - ], - "Porcine_epidemic_diarrhea_virus_L00721_GER_2014_GER_L00721_2014" : [ - "LM645057" - ], - "Hepatitis_B_virus__No33" : [ - "AB697510" - ], - "Dengue_virus_1__DENV_1_NI_BID_V2343_2006" : [ - "FJ562104" - ], - "Dengue_virus_1__2008_00475" : [ - "HE795086" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1394" : [ - "KR534557" - ], - "Human_immunodeficiency_virus_1_92UG001_92UG001_1_2" : [ - "AJ320484" - ], - "Dengue_virus_2_ThNH54_93" : [ - "AF169682" - ], - "Cucumber_mosaic_virus__strain_Pl_1__Pl_1" : [ - "AM183116", - "AM183115", - "AM183114" - ], - "Yam_bean_mosaic_virus__SR" : [ - "NC_016441" - ], - "Enterovirus_A71__02_1_008" : [ - "KP691654" - ], - "Hepatitis_C_virus__QC08" : [ - "KJ470613" - ], - "Human_immunodeficiency_virus_1__C_IN_04_NIRT379_2" : [ - "KF766538" - ], - "Human_papillomavirus_type_35__QV24366" : [ - "HQ537716" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V355_2006" : [ - "EU660386" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V701_2003" : [ - "EU660387" - ], - "Pseudomonas_phage_MP38" : [ - "NC_011611" - ], - "Hepatitis_B_virus__WY_SD_35" : [ - "JX429916" - ], - "Hepatitis_B_virus__dww1087" : [ - "KC774454" - ], - "Plum_pox_virus__BY181" : [ - "HQ840518" - ], - "Hepatitis_B_virus__GZ_TXB" : [ - "DQ448625" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_JAM_Jamaica7761_1962" : [ - "KJ469557" - ], - "Candidatus_Riesia_pediculicola_USDA" : [ - "NC_014109", - "NC_013962" - ], - "Mycobacterium_phage_Dreamboat_Dreamboat" : [ - "NC_023708" - ], - "Rubella_virus_Matsuba_vaccine" : [ - "AB588193" - ], - "Dolichos_yellow_mosaic_virus_Mysore" : [ - "AJ968370" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3997_2008" : [ - "GU131767" - ], - "Hepatitis_B_virus__ES70_12" : [ - "JF828918" - ], - "Porcine_circovirus_2__C7201_1" : [ - "FJ905470" - ], - "Porcine_circovirus_2__DK475case" : [ - "EF565360" - ], - "Wisteria_vein_mosaic_virus__Beijing" : [ - "NC_007216" - ], - "Chlamydophila_psittaci_01DC11" : [ - "NC_017289" - ], - "Tomato_yellow_leaf_curl_virus__AH_M4_23" : [ - "JQ326957" - ], - "Tomato_leaf_curl_New_Delhi_virus__Tom5" : [ - "KF577601", - "KF571461" - ], - "Sugarcane_yellow_leaf_virus__PER_YL1a" : [ - "AM072752" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2815_2007" : [ - "GQ199823" - ], - "Beak_and_feather_disease_virus__BFDV10" : [ - "GU015018" - ], - "Fig_fleck_associated_virus" : [ - "NC_015229" - ], - "Newcastle_disease_virus__W4" : [ - "HM063423" - ], - "Bluetongue_virus_9__SER2001_01" : [ - "AJ586688" - ], - "Beak_and_feather_disease_virus__SCPA2" : [ - "JQ782200" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI54_12" : [ - "HE979773" - ], - "Human_immunodeficiency_virus_1__MBCC98" : [ - "AF042104" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI44_12_DNA_B" : [ - "HE979779" - ], - "Porcine_circovirus_2__AG" : [ - "KP824710" - ], - "BK_polyomavirus__LAB_33" : [ - "AB301097" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda21_05" : [ - "KC706634", - "KC706656" - ], - "Norovirus_Hu_GII_4_Shimane3_2008_JP_Hu_GII_4_Shimane3_2008_JP" : [ - "AB541350" - ], - "BK_polyomavirus__OKN_19" : [ - "AB365149" - ], - "Murine_hepatitis_virus_strain_A59_MHV_A59" : [ - "NC_001846" - ], - "Human_immunodeficiency_virus_1__15390_1" : [ - "DQ853458" - ], - "Faecal_associated_gemycircularvirus_3__P24c" : [ - "NC_025737" - ], - "Turnip_mosaic_virus__PV177" : [ - "AB701733" - ], - "Squash_leaf_curl_virus__JO3_38" : [ - "KM595197" - ], - "Thermus_thermophilus_HB27" : [ - "NC_005838", - "NC_005835" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US122" : [ - "KJ019083" - ], - "JC_polyomavirus__JCV176FLC_01" : [ - "JF424901" - ], - "Mycobacterium_phage_Melvin" : [ - "KF841476" - ], - "Coxsackievirus_A16_MAV" : [ - "KC695830" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6683_2009" : [ - "KJ627354" - ], - "Ralstonia_pickettii_12D" : [ - "NC_012849", - "NC_012856", - "NC_012851", - "NC_012857", - "NC_012855" - ], - "Hepatitis_B_virus__EICI_76" : [ - "KF679993" - ], - "JC_polyomavirus__329A" : [ - "AY382184" - ], - "Cotton_leaf_curl_Multan_virus__JS_Hi_A_3_2" : [ - "JX914662" - ], - "Banana_bunchy_top_virus_BBTV_LKO" : [ - "EU391633" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3971_2008" : [ - "JF937609" - ], - "Pseudomonas_phage_Phi_S1" : [ - "NC_021062" - ], - "Hepatitis_delta_virus_dFr2046_dFr2046" : [ - "AM779580" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9549_2013" : [ - "KJ643583" - ], - "Hepatitis_A_virus_KRM238G59" : [ - "AB300205" - ], - "Equine_rhinitis_A_virus_T3" : [ - "DQ268580" - ], - "Chroococcidiopsis_thermalis_PCC_7203" : [ - "NC_019699", - "NC_019696", - "NC_019695" - ], - "Bacillus_phage_phi105" : [ - "NC_004167", - "HM072038" - ], - "Cowpox_virus_Brighton_Red" : [ - "NC_003663" - ], - "African_horse_sickness_virus_4_US" : [ - "Z48734" - ], - "Sacbrood_virus_Korean" : [ - "HQ322114" - ], - "Raptor_adenovirus_1" : [ - "NC_015455" - ], - "Hepatitis_E_virus__GDC9" : [ - "FJ906895" - ], - "SARS_coronavirus_HZS2_E__HZS2_E" : [ - "AY394990" - ], - "Mycoplasma_pneumoniae_FH" : [ - "NC_017504" - ], - "Burkholderia_phage_BcepGomr" : [ - "NC_009447" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4077_2008" : [ - "GU131825" - ], - "Bluetongue_virus_2__80302" : [ - "DQ191269" - ], - "Porcine_circovirus_2_HNLYYAS5201405" : [ - "KJ867553" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota100_2013" : [ - "KJ645691" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite__India_Noida_Chilli_2007___India_Noida_Chilli_2007" : [ - "HM007115" - ], - "Chayote_yellow_mosaic_virus" : [ - "NC_004618" - ], - "Wheat_dwarf_virus__GSGG09_8" : [ - "KJ536136" - ], - "JC_polyomavirus__Luz_13" : [ - "AB113128" - ], - "Porcine_circovirus_2_10BJ_1" : [ - "HQ395051" - ], - "Cucumber_mosaic_virus_satellite_RNA__isolate_To_1990_21_1" : [ - "Z75880" - ], - "Garlic_virus_X__SG4" : [ - "JX429969" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_A1" : [ - "KC106648" - ], - "Human_papillomavirus_type_162__KC2" : [ - "JX413108" - ], - "Theiler_s_encephalomyelitis_virus__Vie415HTR" : [ - "EU718733" - ], - "South_African_cassava_mosaic_virus__MG_MG343A5_11" : [ - "KJ887704" - ], - "West_Nile_virus__WNV_1_US_BID_V6057_2010" : [ - "KJ145828" - ], - "Hepatitis_B_virus__D_NZL_TU25_1984" : [ - "HQ700487" - ], - "Hepatitis_B_virus__WY_HZ_33" : [ - "JX429901" - ], - "Maize_chlorotic_dwarf_virus_Tennessee__TN" : [ - "NC_003626" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3697_2007" : [ - "GQ868508" - ], - "Tomato_leaf_curl_New_Delhi_virus_JID17" : [ - "HQ141674" - ], - "Human_immunodeficiency_virus_1__03ZASK103B1" : [ - "DQ164106" - ], - "Dengue_virus_1__DENV1_CN_GZ27_2014" : [ - "KP723473" - ], - "Human_astrovirus_1_Dresden" : [ - "AY720892" - ], - "Torque_teno_sus_virus_1b__TTV2_G33" : [ - "GU570205" - ], - "Tomato_yellow_leaf_curl_virus__SH1" : [ - "KC312667" - ], - "Watermelon_chlorotic_stunt_virus__IL1_20" : [ - "KM820243" - ], - "Turnip_mosaic_virus_BJ_B04" : [ - "KC119188" - ], - "Ageratum_yellow_vein_China_betasatellite__Y282" : [ - "HF569264" - ], - "Newcastle_disease_virus_KBNP_C4152R2L" : [ - "EU140955" - ], - "Bluetongue_virus__SAD2004_04" : [ - "FM179950" - ], - "Coxsackievirus_A24_CA24v_Okinawa_19_2011" : [ - "AB769159" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__K4J3" : [ - "JN053438" - ], - "Hepatitis_B_virus__NH29M_e41" : [ - "KJ173320" - ], - "Andean_potato_mild_mosaic_virus__Hu" : [ - "NC_020471" - ], - "Ageratum_yellow_vein_China_virus__G115" : [ - "HG003652" - ], - "Human_herpesvirus_4_HN11" : [ - "AB850646" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7601_2008" : [ - "KJ189334" - ], - "Hepatitis_B_virus__HBV31" : [ - "KC875320" - ], - "Norovirus_Hu_GII_20233_2009_VNM_Hu_GII_20233_2009_VNM" : [ - "KC409283" - ], - "Bluetongue_virus__BT4_2227" : [ - "AY426602" - ], - "West_Nile_virus__CO4_07" : [ - "JF957169" - ], - "Staphylococcus_phage_phi7401PVL_JCSC7401" : [ - "NC_020199" - ], - "Human_adenovirus_7_JM11_JM_CHN_2013" : [ - "KJ019887" - ], - "Staphylococcus_phage_vB_SauM_Remus" : [ - "NC_022090" - ], - "Tomato_bushy_stunt_virus_satellite_RNA__B1" : [ - "NC_003826" - ], - "Hepatitis_B_virus__P107" : [ - "GQ477500" - ], - "Sacbrood_virus_K3A" : [ - "JX270798" - ], - "Hepatitis_B_virus__WHMLL2" : [ - "JN257188" - ], - "Hepatitis_B_virus__MRG_k1" : [ - "KM213035" - ], - "SARS_coronavirus_HSZ2_A__HSZ2_A" : [ - "AY394983" - ], - "Pichinde_mammarenavirus_AN3739" : [ - "NC_006439" - ], - "Dengue_virus_2__DENV_2_US_BID_V1483_2003" : [ - "EU687235" - ], - "Newcastle_disease_virus__Ch_ZJ_10_03" : [ - "JN688863" - ], - "Kobuvirus_pig_JY_2010a_CHN__Y_1_CHI" : [ - "GU292559" - ], - "Human_papillomavirus_type_71__Qv22792" : [ - "AY330621" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2040_2004" : [ - "FJ639706" - ], - "Yellow_fever_virus_BeH422973" : [ - "JF912182" - ], - "Human_respiratory_syncytial_virus__11_000271" : [ - "JX015479" - ], - "Chickpea_chlorosis_virus_B__Qld_21" : [ - "GU256531" - ], - "Turnip_mosaic_virus__NZ412" : [ - "AB989648" - ], - "Human_papillomavirus_type_16__Qv00930" : [ - "HQ644258" - ], - "Avian_leukosis_virus__HLJ09MDJ_1" : [ - "JN624880" - ], - "Pepper_yellow_vein_Mali_virus_Mali_BF_Ban_Hpe3_09" : [ - "FN555174" - ], - "Chilli_veinal_mottle_virus" : [ - "NC_005778" - ], - "Dengue_virus_2__DC661Y12" : [ - "KM279549" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7707_2012" : [ - "KJ189353" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mansonia_sp__COL_307537_1971_ID" : [ - "KC344519" - ], - "Tomato_leaf_curl_China_betasatellite__Y248" : [ - "AM260718" - ], - "Enterovirus_A71__Wuhan1143_HuB_CHN_2011" : [ - "JX986739" - ], - "Banana_streak_MY_virus__TRY" : [ - "EU140339" - ], - "Hepatitis_B_virus__C_Tonga_BD5375_2001" : [ - "HQ700558" - ], - "Dengue_virus_2__DENV_2_VN_BID_V778_2007" : [ - "EU482704" - ], - "Ehrlichia_muris_AS145" : [ - "NC_023063" - ], - "Hepatitis_B_virus__A42" : [ - "FJ904404" - ], - "JC_polyomavirus_JAL" : [ - "JX273163" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2483_2007" : [ - "GQ868587" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2427_2007" : [ - "GQ199866" - ], - "Tomato_leaf_curl_New_Delhi_virus__tomato_A4" : [ - "KM977734", - "KM977733" - ], - "South_African_cassava_mosaic_virus__MG_MG471A8_11" : [ - "KJ887722" - ], - "Norovirus_Hu_GI_1_8W_1968_USA_Hu_GI_1_8W_1968_USA" : [ - "KF429765" - ], - "Pseudomonas_aeruginosa_MTB" : [ - "NC_023019" - ], - "Beet_black_scorch_virus__Ir_Ha2" : [ - "FN543466" - ], - "Dengue_virus_2__DC790Y12" : [ - "KM279565" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3956_2008" : [ - "JF937607" - ], - "Haliscomenobacter_hydrossis_DSM_1100" : [ - "NC_015510", - "NC_015512", - "NC_015511", - "NC_015513" - ], - "Porcine_astrovirus_4_35_USA" : [ - "NC_023675" - ], - "Tomato_leaf_curl_Sudan_virus__Had_tob40_89" : [ - "JF919734" - ], - "Dengue_virus_2__DENV2_CN_GZ05_2014" : [ - "KP012546" - ], - "Dengue_virus_1__DENV_1_VN_BID_V813_2006" : [ - "EU482807" - ], - "Monkeypox_virus_Cameroon_1990" : [ - "KJ642618" - ], - "Ilesha_virus_ILESHA_8e" : [ - "KC608149", - "KC608151" - ], - "Dengue_virus_2__DC793Y12" : [ - "KM279566" - ], - "Hepatitis_B_virus__T1434b" : [ - "GQ205383" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Dalaba_1116" : [ - "KR534534" - ], - "Bandicoot_papillomatosis_carcinomatosis_virus_type_1" : [ - "NC_010107" - ], - "Prochlorococcus_marinus_NATL1A" : [ - "NC_008819" - ], - "Hepatitis_B_virus__WHDHM" : [ - "JN257186" - ], - "Foot_and_mouth_disease_virus___type_A__IND_818_2003" : [ - "HQ832580" - ], - "Enterovirus_A71_Shanghai_36_2009" : [ - "HQ891925" - ], - "Rickettsia_rickettsii_Hlp_2" : [ - "NC_016915" - ], - "Banana_bunchy_top_virus__Meghalaya" : [ - "JQ911668", - "JQ911667" - ], - "JC_polyomavirus__Ceb_15" : [ - "AB113120" - ], - "Sudan_ebolavirus__SUDV_H_sapiens_tc_SSD_1979_Maleo" : [ - "KC242783" - ], - "Onion_yellow_dwarf_virus__MS_SW1" : [ - "HQ258894" - ], - "Human_metapneumovirus_HMPV_USA_TN_83_126_1983_A" : [ - "KC403975" - ], - "Rotavirus_A_GRV" : [ - "AB055967" - ], - "Human_immunodeficiency_virus_1__09YNRL215042sg" : [ - "KC899011" - ], - "Chikungunya_virus_PhH15483" : [ - "HM045790" - ], - "Hepatitis_B_virus__KM2004" : [ - "JN792895" - ], - "Bluetongue_virus_22__84_184" : [ - "JX272398" - ], - "Human_immunodeficiency_virus_1__Ba_L" : [ - "AB253432" - ], - "Ralstonia_phage_RSS30" : [ - "NC_021862" - ], - "Hepatitis_B_virus__P24" : [ - "JX898694", - "EU859913", - "GQ477472" - ], - "Hepatitis_B_virus__C126" : [ - "EU859930", - "EU939623" - ], - "Human_respiratory_syncytial_virus__Kilifi_9465_12_RSVB_2010" : [ - "KP317932" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_VR2385" : [ - "JX044140" - ], - "Porcine_circovirus_2_GD_gj" : [ - "JX945576" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_Armstrong_53b" : [ - "NC_004291", - "AY847351", - "AY847350" - ], - "Dengue_virus_3__D3BR_PV1_03" : [ - "JF808126" - ], - "Hepatitis_B_virus__S2235_2" : [ - "FJ787486" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__GS2002" : [ - "EU880441" - ], - "Hepatitis_B_virus__TK8" : [ - "JF754603" - ], - "Human_immunodeficiency_virus_1__1012_11" : [ - "AY331286" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4252_1" : [ - "KR105224" - ], - "Hepatitis_E_virus__118d_Alex" : [ - "AB362839" - ], - "Human_papillomavirus_type_6__81" : [ - "HG793889" - ], - "Tobacco_yellow_dwarf_virus_A__2563" : [ - "KC172702" - ], - "Torque_teno_sus_virus_1a__TTV1Bj3" : [ - "HM633245" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3819" : [ - "KM233093" - ], - "Hepatitis_B_virus__HK2342" : [ - "DQ089757" - ], - "Helicobacter_pylori_Shi470" : [ - "NC_010698" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1755_2007" : [ - "FJ744743" - ], - "Human_rhinovirus_A63_ATCC_VR_1173" : [ - "FJ445146" - ], - "Aminobacterium_colombiense_DSM_12261" : [ - "NC_014011" - ], - "Lassa_mammarenavirus_Acar_3080" : [ - "AY628208" - ], - "Human_poliovirus_1_NIE1218348" : [ - "KJ170485" - ], - "Hepatitis_B_virus_4547_97" : [ - "EU594431" - ], - "Bean_common_mosaic_necrosis_virus_NL_3__necrotic__Michigan" : [ - "NC_004047" - ], - "Squash_leaf_curl_virus__EG2_11" : [ - "KM595150" - ], - "Bluetongue_virus_2__SAD2001_02" : [ - "AJ586673" - ], - "Human_immunodeficiency_virus_1__RU98001" : [ - "AF193277" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1963_2008" : [ - "JQ287667" - ], - "Jatropha_leaf_crumple_virus__SKJ1" : [ - "NC_025725" - ], - "Hepatitis_B_virus__pt6N" : [ - "KM875412" - ], - "Soybean_mosaic_virus__SC7_N" : [ - "KP710868" - ], - "Western_equine_encephalitis_virus_Lake43" : [ - "KJ554985" - ], - "Tomato_yellow_leaf_curl_virus__Culiacan" : [ - "DQ631892" - ], - "Hepatitis_B_virus__I_T85" : [ - "GU456648" - ], - "Hepatitis_B_virus__I_T75" : [ - "GU456673" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7298_2011" : [ - "KJ189306" - ], - "African_cassava_mosaic_virus__MG_MG61A1_06" : [ - "KJ887880" - ], - "Norovirus_Hu_GII_4_Toyama5_2006_JP_Hu_GII_4_Toyama5_2006_JP" : [ - "AB447445" - ], - "Tomato_leaf_curl_Gujarat_virus__Vadodara" : [ - "AF413671" - ], - "Human_papillomavirus_type_6__124" : [ - "HG793932" - ], - "Tomato_yellow_leaf_curl_virus__IS" : [ - "AB613208" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1561_2007" : [ - "EU687251" - ], - "Hepatitis_B_virus__C69" : [ - "EU859932", - "EU939560" - ], - "Hepatitis_B_virus__DEN6168" : [ - "KF779248" - ], - "Hepatitis_B_virus__X02" : [ - "JX978431" - ], - "Pseudanabaena_PCC_7367" : [ - "NC_019701", - "NC_019690" - ], - "Spodoptera_exigua_iflavirus_1" : [ - "NC_016405" - ], - "Hepatitis_B_virus__DEN5809" : [ - "KF779217" - ], - "Dunaliella_viridis_virus_SI2_SI2" : [ - "NC_023841" - ], - "Hepatitis_B_virus__WY_NJ_3" : [ - "JX026888" - ], - "Human_bocavirus_3_IM10" : [ - "GQ867667" - ], - "Broad_bean_wilt_virus_2__ME" : [ - "NC_003004", - "NC_003003" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus__E5" : [ - "KF446666", - "KF446665" - ], - "Dalechampia_chlorotic_mosaic_virus__Venezuela_Albarico_1020_2007" : [ - "NC_018716", - "NC_018718" - ], - "Dengue_virus_1__DENV_1_NI_BID_V602_2005" : [ - "FJ024483" - ], - "Hepatitis_B_virus_327_13" : [ - "KR013908" - ], - "HBV_genotype_A1__Mart_B64" : [ - "HE974381" - ], - "Tomato_leaf_curl_New_Delhi_virus__X1A" : [ - "KJ778692" - ], - "Sphaerobacter_thermophilus_DSM_20745" : [ - "NC_013523", - "NC_013524" - ], - "Temperate_fruit_decay_associated_virus__MFBpe8_pear1" : [ - "KR134332" - ], - "Human_poliovirus_3_NIE1118473" : [ - "KJ170653" - ], - "Hepatitis_B_virus__bxa2025" : [ - "KC774411" - ], - "Marburg_marburgvirus__MARV_R_aegyptiacus_tc_UGA_2008_164_Qbat" : [ - "JX458853" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_11_2009" : [ - "KF686342" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2163_1998" : [ - "FJ639736" - ], - "Foot_and_mouth_disease_virus___type_A_A18_Zulia_a18zulia_iso40" : [ - "AY593758" - ], - "Hepatitis_B_virus__HBV44" : [ - "KC875335" - ], - "BK_polyomavirus__BKV_CAP_h8" : [ - "AY628229" - ], - "Veillonella_parvula_DSM_2008" : [ - "NC_013520" - ], - "Human_immunodeficiency_virus_1__95ML84" : [ - "AJ245481" - ], - "West_Nile_virus__WNV_1_US_BID_V6422_2001" : [ - "KJ501289" - ], - "Chickpea_chlorotic_dwarf_virus__SYR_2" : [ - "FR687959" - ], - "Human_immunodeficiency_virus_1__97VNHCM306" : [ - "FJ185259" - ], - "Pygmy_chimpanzee_papillomavirus_type_1" : [ - "X62844" - ], - "Human_papillomavirus_type_11__LP27" : [ - "HE611272" - ], - "Human_rhinovirus_A77_ATCC_VR_1187" : [ - "FJ445154" - ], - "Changuinola_virus__CGLV_BE_AR_385278" : [ - "KF690601", - "KF690610", - "KF690603", - "KF690608", - "KF690606", - "KF690604", - "KF690607", - "KF690609" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00107_2002_G1P_8" : [ - "JN651878", - "JN651877", - "JN651873", - "JN651872", - "JN651868", - "JN651874", - "JN651869", - "JN651870", - "JN651876", - "JN651875", - "JN651871" - ], - "Sulfitobacter_phage_phiCB2047_B_phiCB2047_B" : [ - "NC_020862" - ], - "Garlic_virus_D__GarVD_SW9" : [ - "KF550407" - ], - "BK_polyomavirus__NAR_21" : [ - "AB365136" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US57" : [ - "KJ019111" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7598_2008" : [ - "KJ189331" - ], - "Japanese_encephalitis_virus_JaOS75571" : [ - "AB569980" - ], - "Citrus_yellow_mosaic_virus__Nagri" : [ - "FJ617224" - ], - "Equine_infectious_anemia_virus_DV_DV117" : [ - "HM141912" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8537_2003" : [ - "KJ627729" - ], - "Hepatitis_B_virus__cxn1044" : [ - "KC774342" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1039" : [ - "KR534578" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM111" : [ - "KM233038" - ], - "Tomato_leaf_curl_Seychelles_virus" : [ - "NC_009031" - ], - "Newcastle_disease_virus_pigeon_Zhejiang_2036_2012" : [ - "KM374061" - ], - "Dengue_virus_3__PF89_27643" : [ - "AY744677" - ], - "Hepatitis_B_virus_468_8" : [ - "KR013936" - ], - "Chikungunya_virus_TSI_GSD_218_VR1" : [ - "EF452494" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda50_05" : [ - "KC706650", - "KC706660" - ], - "Human_immunodeficiency_virus_1__C_96BW04_02" : [ - "AF110962" - ], - "Hepatitis_B_virus__12_D1_5_12" : [ - "GU815657" - ], - "Hepatitis_B_virus__SHB515" : [ - "KJ598711" - ], - "Grapevine_leafroll_associated_virus_10__Grapevine" : [ - "NC_011702" - ], - "Tick_borne_encephalitis_virus_Novosibirsk_L2008_blood" : [ - "KJ739729" - ], - "Magnaporthe_oryzae_virus_3_QSP5" : [ - "NC_027209" - ], - "Wheat_dwarf_virus__Sx24" : [ - "AM296024" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US42" : [ - "KJ019101" - ], - "JC_polyomavirus__JCV173FLC_05" : [ - "JF424962" - ], - "Hirame_rhabdovirus_080113" : [ - "FJ376982" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP00618_2011" : [ - "KJ627254" - ], - "Hepatitis_B_virus__BFJT2009_1" : [ - "AB642101" - ], - "SFTS_virus_JS4_JS4" : [ - "HQ141604", - "HQ141605", - "HQ141606" - ], - "Hepatitis_B_virus__bww1091" : [ - "KC774384" - ], - "Tree_shrew_adenovirus_1" : [ - "AF258784" - ], - "Psychroflexus_torquis_ATCC_700755" : [ - "NC_018721" - ], - "Hepatitis_C_virus_subtype_2a__PR63cc" : [ - "KF676352" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7588_2007" : [ - "KJ189322" - ], - "Bluetongue_virus_8__KEN_____01" : [ - "AJ586707" - ], - "Human_immunodeficiency_virus_1__CAP65_6w" : [ - "GQ999977" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3711_2007" : [ - "GU131972" - ], - "Roseobacter_litoralis_Och_149" : [ - "NC_015729", - "NC_015730", - "NC_015741", - "NC_015728" - ], - "Dengue_virus_4_VE_61110_2007" : [ - "HQ332173" - ], - "Hepatitis_B_virus__D_NZL_HU11_1984" : [ - "HQ700460" - ], - "Hepatitis_B_virus__SHB411" : [ - "KJ598686" - ], - "Streptococcus_pyogenes_phage_315_4" : [ - "NC_004587" - ], - "Porcine_circovirus_2_XY" : [ - "KC684978" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C89" : [ - "KJ019057" - ], - "Lactobacillus_phage_LL_H" : [ - "NC_009554" - ], - "Rabies_virus__08F40" : [ - "KC171643" - ], - "Mulberry_badnavirus_1__Lebanon34" : [ - "NC_026020" - ], - "Pigeon_paramyxovirus_1_pi_CH_LJL_120404" : [ - "JX486557" - ], - "Hepatitis_B_virus__C3_12" : [ - "GU815636" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4257_2007" : [ - "HM181954" - ], - "Hepatitis_B_virus_ayw_patient_5" : [ - "X80926" - ], - "Hepatitis_B_virus_551_15" : [ - "KR013972" - ], - "Tomato_leaf_curl_China_betasatellite__Y143_22" : [ - "AJ536624" - ], - "Vibrio_anguillarum_775" : [ - "NC_015637", - "NC_015633" - ], - "Foot_and_mouth_disease_virus___type_A_A22_Iraq_a22iraq64_iso86" : [ - "AY593763" - ], - "Tobacco_mosaic_virus_Rakkyo" : [ - "D63809" - ], - "Hepatitis_B_virus__I76" : [ - "FJ562248" - ], - "Human_papillomavirus_type_16__Qv15521E" : [ - "AY686581" - ], - "Dengue_virus_2__DC380Y11" : [ - "KM279581" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2664_2000" : [ - "FJ850065" - ], - "Human_immunodeficiency_virus_1__90CR056__AKA_u4056" : [ - "AF005496" - ], - "Enterobacteria_phage_Hgal1" : [ - "NC_019922" - ], - "Human_immunodeficiency_virus_1__ML1901" : [ - "EU110087" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4752_2009" : [ - "HM756281" - ], - "Japanese_yam_mosaic_virus" : [ - "NC_000947", - "E59210" - ], - "Maize_streak_virus__MSV_A_ZW_Maz3_g265_2008" : [ - "FJ882148" - ], - "Hepatitis_B_virus__BA110" : [ - "FJ657519" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_21_2013" : [ - "KF600634" - ], - "Hepatitis_B_virus__patient_268" : [ - "DQ993680" - ], - "West_Nile_virus__WNV_1_US_BID_V6189_2001" : [ - "KJ501245" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT45E12_2008" : [ - "JF909247" - ], - "Porcine_epidemic_diarrhea_virus__KNU_1305" : [ - "KJ662670" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_67U222_1967_IE" : [ - "KC344439" - ], - "Bluetongue_virus_15_DPP192" : [ - "JQ086224", - "JQ086225", - "JQ086226", - "JQ086228", - "JQ086223", - "JQ086229", - "JQ086227", - "JQ086221", - "JQ086230", - "JQ086222" - ], - "Hepatitis_B_virus__ECO50210LIP4" : [ - "JQ664505" - ], - "South_African_cassava_mosaic_virus__MG_MG133A21_09" : [ - "KJ887664" - ], - "Wheat_dwarf_virus____Sanxi_Yuncheng___SXYC05_3" : [ - "EF536876" - ], - "Burkholderia_phage_AH2" : [ - "NC_018283" - ], - "Hepatitis_B_virus__NA167" : [ - "FR714493" - ], - "BK_polyomavirus__SHA_62" : [ - "AB365175" - ], - "Chrysodeixis_chalcites_SNPV_TF1_A" : [ - "JX535500" - ], - "Madariaga_virus_MADV_Equus_ferus_caballus_COL_980150_2002" : [ - "KJ469590" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo184_08" : [ - "KC706550" - ], - "Ngaingan_virus_MRM14556" : [ - "NC_013955" - ], - "Torque_teno_virus__TTV_HD14h__gbDfDg33_48" : [ - "FR751470" - ], - "Dengue_virus_1__DENV_1_VN_BID_V822_2006" : [ - "EU482816" - ], - "Squash_leaf_curl_China_virus__Wax_Gourd_Nakhon_Pathom__Thailand" : [ - "EU543562" - ], - "Pseudomonas_phage_vB_PaeP_C1_14_Or_vB_PaeP_C1_14_Or" : [ - "HE983844" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1647_2007" : [ - "FJ373297" - ], - "Blattabacterium__Blattella_germanica__Bge" : [ - "NC_015679", - "NC_013454" - ], - "Vibrio_phage_douglas_12A4_douglas_12A4" : [ - "NC_021068" - ], - "Hepatitis_B_virus__2370" : [ - "FJ386632" - ], - "Hepatitis_B_virus__AnkaraHCCA12" : [ - "AB674405" - ], - "Lactococcus_lactis_phage_p2_p2" : [ - "GQ979703" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_HP_96_3015" : [ - "KF688553" - ], - "Hepatitis_B_virus__HBV_C5" : [ - "Y18856" - ], - "Human_coronavirus_NL63__CBJ_037" : [ - "JX104161" - ], - "Beak_and_feather_disease_virus__BFDV11" : [ - "GU015019" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_677_2008" : [ - "JX221033" - ], - "Human_poliovirus_3_NIE1118531" : [ - "KJ170665" - ], - "Monkeypox_virus_Ivory_Coast_2012" : [ - "KJ136820" - ], - "Singapore_grouper_iridovirus" : [ - "NC_006549" - ], - "Human_herpesvirus_5_HAN13" : [ - "GQ221973" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LSD_101004" : [ - "JF828991" - ], - "Hepatitis_B_virus__cxn1092" : [ - "KC774347" - ], - "Marine_birnavirus_YT_01A" : [ - "AY283782" - ], - "Hepatitis_B_virus__GU1361" : [ - "GQ161811" - ], - "Human_papillomavirus_type_16__JPD071" : [ - "AB889493" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GX1002" : [ - "JQ955658" - ], - "Porcine_circovirus_2_L" : [ - "AY288135" - ], - "Human_T_lymphotropic_virus_1_1067_05" : [ - "HQ606138" - ], - "Human_poliovirus_1_NIE1118385" : [ - "KJ170513" - ], - "East_African_cassava_mosaic_Cameroon_virus" : [ - "JX863403", - "AJ867444" - ], - "Helicoverpa_armigera_nucleopolyhedrovirus_SP1A" : [ - "KJ701032" - ], - "Porcine_circovirus_2_GD015" : [ - "KM880088" - ], - "Porcine_circovirus_2_HuZhou0301" : [ - "AY536756" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1901_2008" : [ - "FJ410238" - ], - "Hepatitis_C_virus_subtype_1a__02_46" : [ - "EU781804" - ], - "Sida_yellow_vein_alphasatellite__India_Okra_Hsp_2013" : [ - "NC_024372" - ], - "Foot_and_mouth_disease_virus___type_O__Israel_07_6378" : [ - "FJ175661" - ], - "Human_poliovirus_1_NIE1118330" : [ - "KJ170481" - ], - "BK_polyomavirus__KOM_2" : [ - "AB211387" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2010_10_4_1" : [ - "KC862583" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B3J2" : [ - "JN053440" - ], - "Porcine_circovirus_2__JX5" : [ - "KP824719" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4774_2009" : [ - "HM181977" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ32BT2_2009" : [ - "JF909077" - ], - "Penaeus_monodon_nudivirus__Indonesia" : [ - "NC_024692" - ], - "Enterovirus_C__V2_TSI" : [ - "HQ738290" - ], - "Human_immunodeficiency_virus_1__99UFRJ_9" : [ - "AY455783" - ], - "Bluetongue_virus_2__8602" : [ - "DQ191273" - ], - "Human_immunodeficiency_virus_1__03ZAPS027MB1" : [ - "DQ351223" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4981_serum" : [ - "HQ671680" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2895_2006" : [ - "FJ898414" - ], - "Transmissible_gastroenteritis_virus_SC_Y" : [ - "DQ443743" - ], - "Human_smacovirus_1__Oregon_8_2011_Portland_D56" : [ - "KP233183" - ], - "Infectious_bronchitis_virus_Cal_1995" : [ - "FJ904714" - ], - "Lactobacillus_phage_phiAQ113" : [ - "NC_019782" - ], - "Hepatitis_B_virus__CONTROL10" : [ - "JQ801503" - ], - "Fusarium_poae_virus_1" : [ - "NC_003883" - ], - "Human_immunodeficiency_virus_1__C_ZA_1178MB" : [ - "AY463233" - ], - "Dengue_virus_2__DENV_2_US_BID_V1034_1998" : [ - "EU482547" - ], - "Muscovy_duck_circovirus__FJMH207" : [ - "GQ423742" - ], - "Enterovirus_A71_BrCr_ts" : [ - "AB204853" - ], - "Cotton_leaf_curl_Alabad_virus_Pakistan_clc802a" : [ - "NC_004582" - ], - "Human_parainfluenza_virus_3_HPIV3_FRA_31065118_2011" : [ - "KF687356" - ], - "Hepatitis_C_virus__isolate_Tr_Kj___patient_Tr_Kj" : [ - "HPCFG" - ], - "Hepatitis_B_virus__No7" : [ - "AB697492" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH05_2010" : [ - "KM188441" - ], - "Hepatitis_B_virus_513_1" : [ - "KR013954" - ], - "Corynebacterium_pseudotuberculosis_3_99_5" : [ - "NC_016781" - ], - "Dengue_virus_1__DENV_1_TH_BID_V2273_2001" : [ - "FJ850068" - ], - "Hepatitis_B_virus__TH_HBV_012" : [ - "AY935700" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_15__AHEaCV_15_NZ_3424C1_2012" : [ - "KM874336" - ], - "Human_immunodeficiency_virus_1__97NE03" : [ - "AJ508595" - ], - "Dengue_virus_2__FGU_Mar_06" : [ - "EU920846" - ], - "Human_immunodeficiency_virus_1__ES_X1998__B" : [ - "EU786676" - ], - "West_Nile_virus_ArEq003" : [ - "GQ379161" - ], - "Temperate_fruit_decay_associated_virus__MFBpe23" : [ - "KR134342" - ], - "Saffold_virus__SAFV_3_NL2007_2686" : [ - "HM181997" - ], - "Hepatitis_B_virus__919013" : [ - "JN040771" - ], - "Hepatitis_C_virus__6_TV469" : [ - "KJ567646" - ], - "Soybean_mosaic_virus__XFQ008" : [ - "KP710873" - ], - "Bovine_adenovirus_3_HLJ0955" : [ - "JN381195" - ], - "Swine_hepatitis_E_virus__swKOR_1" : [ - "FJ426403" - ], - "African_horse_sickness_virus__HS13_63" : [ - "KM886357", - "KM886358", - "KM886356", - "KM886359", - "KM886361", - "KM886363", - "KM886362", - "KM886354", - "KM886360" - ], - "Duck_circovirus__DU091" : [ - "HM162345" - ], - "Rabies_virus__9704ARG" : [ - "EU293116" - ], - "Maize_streak_virus__MSV_A_MZ_Map2_Moz17_2007" : [ - "HQ693352" - ], - "Human_immunodeficiency_virus_1__62136" : [ - "GU595157" - ], - "Porcine_circovirus_2__GD_nt" : [ - "KF732649" - ], - "Raccoon_polyomavirus_R45" : [ - "NC_023845" - ], - "Tobacco_mosaic_virus__Hejiang" : [ - "HE818427" - ], - "Wheat_dwarf_virus____Sanxi_Taiyuan___SXTY05_1" : [ - "EF536872" - ], - "Human_immunodeficiency_virus_1__CAP206_8w_F1" : [ - "GQ999982" - ], - "Canine_parvovirus_2a__recUY364" : [ - "KM457139" - ], - "Watermelon_silver_mottle_virus__GZ" : [ - "JX177647", - "JX177646", - "JX177645" - ], - "Human_immunodeficiency_virus_1__PMVL_013" : [ - "EF514700" - ], - "Hepatitis_B_virus__A63" : [ - "FJ904415" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_157_2012" : [ - "KJ686226" - ], - "Cyanophage_SS120_1_P_SSP9" : [ - "NC_020872" - ], - "Watermelon_chlorotic_stunt_virus__G" : [ - "KJ854917" - ], - "Hepatitis_B_virus__2566" : [ - "JN827424" - ], - "Rice_black_streaked_dwarf_virus__gochang_34" : [ - "JX453453", - "JX453454" - ], - "Dengue_virus_2__DC429Y11" : [ - "KM279525" - ], - "Hepatitis_B_virus__HBV136_EP_CHB" : [ - "KM524338" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7699_2011" : [ - "KF973487" - ], - "African_cassava_mosaic_virus__CF_CF149AB1_07" : [ - "KJ887806" - ], - "Hepatitis_B_virus__KOR2CHB" : [ - "GQ475306" - ], - "Pseudomonas_aeruginosa_PAO1" : [ - "NC_002516" - ], - "Dengue_virus_2__DENV_2_VN_BID_V732_2006" : [ - "EU482669" - ], - "Tomato_rugose_mosaic_virus__Ube" : [ - "NC_002556", - "NC_002555" - ], - "Tomato_yellow_leaf_curl_virus__Ganghwa2" : [ - "JX961666" - ], - "Hepatitis_B_virus__E3_10" : [ - "GU815699" - ], - "Wheat_dwarf_virus__Triticale_118" : [ - "KJ473703" - ], - "Hepatitis_B_virus__490_99_2" : [ - "EU871993" - ], - "Human_immunodeficiency_virus_1__WC10C_1" : [ - "AY314054" - ], - "Dengue_virus_1__DENV_1_VN_BID_V982_2006" : [ - "EU482526" - ], - "Human_poliovirus_1_CHN8248c_GZ_CHN_2004" : [ - "FJ769384" - ], - "Dengue_virus_1__DENV_1_VN_BID_V952_2007" : [ - "EU482497" - ], - "Phaeocystis_globosa_virus_virophage" : [ - "NC_021333" - ], - "Hepatitis_B_virus__HBV61" : [ - "KC875263" - ], - "Prochlorococcus_marinus_MIT_9303" : [ - "NC_008820" - ], - "Mycobacterium_phage_Lamina13" : [ - "NC_024143" - ], - "Tomato_yellow_leaf_curl_Thailand_betasatellite__Y72" : [ - "NC_004903" - ], - "Rice_yellow_mottle_virus__Ma203" : [ - "FN432840" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1499_2006" : [ - "EU660401" - ], - "Vesicular_stomatitis_Indiana_virus_94GUB" : [ - "AF473866" - ], - "Torque_teno_sus_virus_k2b__38E23" : [ - "JQ406846" - ], - "Hepatitis_B_virus_HBV_P54" : [ - "KC510657" - ], - "Columbid_circovirus__PL189" : [ - "KF738852" - ], - "Israeli_acute_paralysis_virus_Korea2" : [ - "KC690269" - ], - "Dengue_virus_2__DC648Y12" : [ - "KM279571" - ], - "Enterovirus_A71__EV082_07" : [ - "HQ647178" - ], - "Panicum_streak_virus__E_KE_Jic10_PSVKN" : [ - "GQ415391" - ], - "Feline_coronavirus_DF_2" : [ - "DQ286389" - ], - "Milk_vetch_dwarf_virus" : [ - "NC_003643", - "NC_003641", - "NC_003645", - "NC_003646", - "NC_003644", - "NC_003642" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V426_2001" : [ - "EU155321" - ], - "Human_papillomavirus_type_31__QV03876" : [ - "HQ537676" - ], - "Porcine_circovirus_2_HB0603" : [ - "EF524538" - ], - "Avian_leukosis_virus_Oki_009" : [ - "AB669433" - ], - "Barley_yellow_mosaic_virus_BaYMV_G" : [ - "X69757" - ], - "Acholeplasma_phage_MV_L1_JA_1" : [ - "NC_001341" - ], - "Monkeypox_virus__DRC_06_0950" : [ - "JX878407" - ], - "Zucchini_yellow_mosaic_virus__2nd" : [ - "JN192427" - ], - "Human_immunodeficiency_virus_1__mIDU101" : [ - "AB097871" - ], - "Coxsackievirus_B3__PZ23Y_JS_2012" : [ - "KP036481" - ], - "Newcastle_disease_virus_NDV_V4" : [ - "JX524203" - ], - "JC_polyomavirus__CH_2" : [ - "AB077869" - ], - "Simian_virus_40__SV40_PV_251" : [ - "EF579665" - ], - "Blueberry_virus_A__Brandner_2" : [ - "KF007211" - ], - "Dengue_virus_1__DENV_1_VN_BID_V819_2006" : [ - "EU482813" - ], - "Hepatitis_C_virus_subtype_1b__No__28" : [ - "AB154203" - ], - "Escherichia_coli_K_12_substr__MG1655" : [ - "NC_000913" - ], - "Wheat_dwarf_virus__Winter_rye_49" : [ - "KJ473697" - ], - "Crimean_Congo_hemorrhagic_fever_virus_U2_2_002_U_6415" : [ - "AY900144" - ], - "Hepatitis_C_virus_subtype_1b__HCV_S1" : [ - "AF356827" - ], - "Bordetella_petrii" : [ - "NC_010170" - ], - "Yellow_fever_virus_17D_204" : [ - "KF769015" - ], - "Hepatitis_B_virus_FMU006" : [ - "AY206377" - ], - "Human_rhinovirus_B69_ATCC_VR_1179" : [ - "FJ445151" - ], - "Enterovirus_D68__2013_0825_6" : [ - "KT280502" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI0497_2010_B" : [ - "KJ627414" - ], - "Enterovirus_A71_SH12_036" : [ - "KC570452" - ], - "Cardamom_bushy_dwarf_virus_satellite" : [ - "NC_022919" - ], - "Porcine_circovirus_2__DK558control" : [ - "EF565365" - ], - "Barmah_Forest_virus_BH2193" : [ - "NC_001786" - ], - "Hepatitis_B_virus__M44" : [ - "GQ924659" - ], - "Hepatitis_B_virus_494_27" : [ - "KR013940" - ], - "Dengue_virus_3__DENV_3_US_BID_V1460_2000" : [ - "EU687221" - ], - "Bhendi_yellow_vein_India_virus__India_Srinivaspur_OYSK3_2006___OYSOK3" : [ - "GU112014" - ], - "Human_poliovirus_1_NIE1118338" : [ - "KJ170468" - ], - "Hepatitis_B_virus__pt15T" : [ - "KM875429" - ], - "alpha_proteobacterium_HIMB59" : [ - "NC_018644" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD224_2013" : [ - "KM229869" - ], - "Canine_distemper_virus__CDV2784_2013" : [ - "KF914669" - ], - "Hepatitis_C_virus_subtype_6f__C_0046" : [ - "DQ835764" - ], - "Feline_calicivirus__UTCVM_H1" : [ - "AY560116" - ], - "Chilli_leaf_curl_betasatellite__CL_14" : [ - "JN638446" - ], - "Human_parvovirus_B19__KU3" : [ - "KM393164" - ], - "Hepatitis_B_virus__GU1128" : [ - "GQ161834" - ], - "Infectious_bursal_disease_virus_IBD13HeB01" : [ - "KP676468", - "KP676467" - ], - "Salmonella_phage_Spc35" : [ - "NC_015269" - ], - "Pichinde_mammarenavirus_Munchique_CoAn4763_P2" : [ - "EF529745", - "EF529744" - ], - "Rabbit_hemorrhagic_disease_virus__IN_05" : [ - "EU003578" - ], - "Bean_golden_mosaic_virus__BR_Par18_12" : [ - "KJ939801" - ], - "Rubella_virus_Matsuura_B3" : [ - "AB588190" - ], - "Human_papillomavirus_type_15" : [ - "X74468" - ], - "Hepatitis_B_virus__MOD_4582" : [ - "GQ183454" - ], - "Hepatitis_E_virus__JIY_Tot05L" : [ - "AB291952" - ], - "Choristoneura_occidentalis_alphabaculovirus__BC_1" : [ - "NC_021925" - ], - "Hepatitis_B_virus__G1_4" : [ - "GU815754" - ], - "Tolumonas_auensis_DSM_9187" : [ - "NC_012691" - ], - "Rotavirus_A_RVA_Human_wt_USA_DC1108_1977_G1P_8" : [ - "KC580060" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V66_2002" : [ - "EU482887" - ], - "Hepatitis_B_virus__J45" : [ - "GQ377535" - ], - "Enterovirus_A71_1095_LPS1" : [ - "AB550333" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0034" : [ - "KP759608" - ], - "Human_immunodeficiency_virus_1__C_96BW04_09" : [ - "AF110965" - ], - "Bean_golden_mosaic_virus__BR_Pja_05" : [ - "KJ939718" - ], - "Acidobacterium_MP5ACTX9" : [ - "NC_015064", - "NC_015057", - "NC_015065", - "NC_015059", - "NC_015058", - "NC_015060" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8535_2003" : [ - "KJ627727" - ], - "Citrus_tatter_leaf_virus_Kumquat_1" : [ - "AY646511" - ], - "Columbid_circovirus__PL66A" : [ - "KF738866" - ], - "Candidatus_Zinderia_insecticola_CARI" : [ - "NC_014497" - ], - "Porcine_circovirus_2_HuNan" : [ - "AY556477" - ], - "Tomato_yellow_leaf_curl_virus__Jeonju" : [ - "HM130913" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10HEB_3" : [ - "JQ663553" - ], - "Enterovirus_A_S0093b_CA16_2013_CHN" : [ - "KM402019" - ], - "Klebsiella_phage_JD001" : [ - "NC_020204" - ], - "Staphylococcus_aureus_M1" : [ - "NC_021059", - "NC_021060" - ], - "Blainvillea_yellow_spot_virus__BR_Vic04_2_10" : [ - "KC706517" - ], - "Hepatitis_B_virus__P11" : [ - "JX898686" - ], - "Maize_streak_virus__MSV_A_GH_gh159_Yam_2010" : [ - "KJ699339" - ], - "Hepatitis_B_virus__EI0388" : [ - "DQ315778" - ], - "Human_papillomavirus_type_6__LP98_131" : [ - "FR751338" - ], - "Wheat_dwarf_virus____Gansu_Gangu___GSGG05_2" : [ - "EF536860" - ], - "Human_herpesvirus_5_BE_9_2011" : [ - "KP745637" - ], - "Dengue_virus_1__DENV_1_VN_BID_V812_2006" : [ - "EU482806" - ], - "Human_immunodeficiency_virus_1_CM_YBF106" : [ - "AJ271370" - ], - "Dengue_virus_1__DG14" : [ - "JQ048541" - ], - "Hepatitis_B_virus__MOD_4584" : [ - "GQ183460" - ], - "Hepatitis_B_virus__Tamang" : [ - "AY330913" - ], - "Hepatitis_B_virus__I_T101" : [ - "GU456683" - ], - "Beet_curly_top_Iran_virus__Zarghan" : [ - "JX912248" - ], - "GB_virus_C__Hu_21" : [ - "KC618401" - ], - "Human_immunodeficiency_virus_1__ML2000" : [ - "EU110093" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_7_2011" : [ - "KJ686238" - ], - "Canine_kobuvirus_1__12D049" : [ - "KF924623" - ], - "Grapevine_Algerian_latent_virus_nipplefruit" : [ - "NC_011535" - ], - "Enterobacteria_phage_WA45" : [ - "DQ079874" - ], - "Hepatitis_B_virus__WJT31" : [ - "DQ377158" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_4760_2005" : [ - "KJ469562" - ], - "Aggregatibacter_aphrophilus_NJ8700" : [ - "NC_012913" - ], - "Saimiri_sciureus_papillomavirus_2__Mac2067_1" : [ - "JF304766" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_YD" : [ - "JF748717" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3829" : [ - "KM233102" - ], - "Hepatitis_B_virus__HBV_B2" : [ - "AF282918" - ], - "Salmonella_phage_phiSG_JL2" : [ - "NC_010807" - ], - "Malvastrum_yellow_vein_virus__Y206" : [ - "AJ744881" - ], - "Lactococcus_phage_P335_sensu_lato" : [ - "NC_004746" - ], - "Listeria_monocytogenes_serotype_1_2c_SLCC2372" : [ - "NC_018588", - "NC_018889" - ], - "Pepper_yellow_vein_Mali_virus__F26" : [ - "AM691555" - ], - "BK_polyomavirus__KT_514_USA" : [ - "KF055891" - ], - "HBV_genotype_B_B0901189_NT15" : [ - "AB540582" - ], - "Tobacco_mosaic_virus__Xingwen_2" : [ - "HE818451" - ], - "Achromobacter_phage_JWDelta" : [ - "KF787094" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_19_DRC" : [ - "JX458828" - ], - "Hepatitis_C_virus_subtype_2a_MD2a_7" : [ - "AF238485" - ], - "Barley_yellow_dwarf_virus_PAV" : [ - "NC_004750" - ], - "Porcine_circovirus_2_SD_SH" : [ - "KJ511874" - ], - "Human_immunodeficiency_virus_1__WCM32P0896" : [ - "DQ487191" - ], - "South_African_cassava_mosaic_virus__MG_MG420B3_11" : [ - "KJ888015" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4180_midgut" : [ - "HQ671690" - ], - "Porcine_circovirus_type_2_B_BRA_JAV2_2008" : [ - "KC261601" - ], - "Feline_immunodeficiency_virus__San_Diego" : [ - "FIVPPR" - ], - "Salmonella_phage_Vi_II_E1" : [ - "NC_010495" - ], - "Porcine_circovirus_2_GYBQ1203" : [ - "KC823053" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir8_T58X_Cuc_08" : [ - "FJ660425" - ], - "Porcine_circovirus_2__PCV_310" : [ - "KC514992" - ], - "Seoul_virus_B_1_B_1" : [ - "X53861" - ], - "Bluetongue_virus_5_RSArrrr_05" : [ - "AM900378" - ], - "Crimean_Congo_hemorrhagic_fever_virus__ROS_TI28044" : [ - "AY277672" - ], - "Newcastle_disease_virus_pigeon_China_SDLC_2011" : [ - "JQ979176" - ], - "Hepatitis_B_virus__CX001C_e201" : [ - "KJ173339" - ], - "Barley_yellow_dwarf_virus_GAV__WN5" : [ - "KF523379" - ], - "Cotton_leaf_curl_Multan_betasatellite__CH01" : [ - "JX286657" - ], - "Enterobacteria_phage_ID62" : [ - "DQ079876" - ], - "Hepatitis_B_virus__M83" : [ - "GQ924646" - ], - "Tomato_leaf_deformation_virus__PE_PT1_To_03" : [ - "NC_014510" - ], - "TTV_like_mini_virus__TLMV_CLC205" : [ - "AB038628" - ], - "Tomato_leaf_curl_New_Delhi_virus__Lucknow" : [ - "X89653", - "Y16421" - ], - "Hepatitis_B_virus_551_12" : [ - "KR013971" - ], - "Apple_mosaic_virus__Apple" : [ - "HE574162", - "HE574163", - "HE574164" - ], - "Bean_golden_mosaic_virus__BR_Par20_12" : [ - "KJ939805" - ], - "Bacillus_JS" : [ - "NC_017743" - ], - "Porcine_parvovirus_6__JS" : [ - "KF999683" - ], - "Human_immunodeficiency_virus_1__04ZASK142B1" : [ - "DQ011167" - ], - "Antheraea_pernyi_nucleopolyhedrovirus_Liaoning" : [ - "NC_008035" - ], - "Hepatitis_B_virus_497_4" : [ - "KR013950" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3947_2008" : [ - "GU131738" - ], - "Tomato_yellow_leaf_curl_Thailand_betasatellite____India_Dhanbad_2008" : [ - "EU573713" - ], - "Clostridium_difficile_CF5" : [ - "NC_017173" - ], - "Foot_and_mouth_disease_virus___type_O_Andong_p23" : [ - "KF501486" - ], - "Hepatitis_B_virus__P002_C_006" : [ - "KJ173363" - ], - "Infectious_bursal_disease_virus__HuN11" : [ - "LM651368", - "LM651367" - ], - "Enterobacteria_phage_GEC_3S" : [ - "NC_025425" - ], - "Bluetongue_virus_2__10500_3" : [ - "DQ191262" - ], - "Human_immunodeficiency_virus_1__06MMYKLD46" : [ - "EF495062" - ], - "Hepatitis_B_virus__YL204" : [ - "FR714506" - ], - "Bluetongue_virus_20_CSIRO19" : [ - "JQ086254", - "JQ086251", - "JQ086260", - "JQ086253", - "JQ086255", - "JQ086252", - "JQ086258", - "JQ086259", - "JQ086257", - "JQ086256" - ], - "Potato_virus_X_BH" : [ - "AB195999" - ], - "Dengue_virus_3_98902890_DF_DV_3" : [ - "AB189128" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota41_2013" : [ - "KJ645647" - ], - "Salmonella_phage_Fels_1" : [ - "NC_010391" - ], - "Hepatitis_B_virus__D2_4" : [ - "GU815661" - ], - "Human_papillomavirus_type_3" : [ - "X74462" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda6_05" : [ - "KC706653", - "KC706666" - ], - "Norovirus_Hu_GII_10003_2009_VNM_Hu_GII_10003_2009_VNM" : [ - "JQ911596" - ], - "Tomato_leaf_curl_Pakistan_virus" : [ - "FM164938", - "AM948961" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2659_2000" : [ - "FJ850062" - ], - "Homalodisca_vitripennis_reovirus__Riverside12" : [ - "GU437841" - ], - "Ostreid_herpesvirus_1_CDSB2012" : [ - "KP412538" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0093" : [ - "KP759760" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2178_2000" : [ - "FJ639749" - ], - "Hepatitis_B_virus__A19" : [ - "FJ904400" - ], - "Cacao_swollen_shoot_virus__Wobe12" : [ - "AJ781003" - ], - "Human_papillomavirus_type_137__NJ2801H" : [ - "NC_017995" - ], - "Hepatitis_B_virus__SHB58" : [ - "KJ598708" - ], - "Canine_minute_virus" : [ - "NC_004442" - ], - "Human_immunodeficiency_virus_1__ZM249M_flC5" : [ - "FJ496210" - ], - "Mycobacterium_indicus_pranii_MTCC_9506" : [ - "NC_018612" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E329_2007_G3P_8__E329" : [ - "KF371757", - "KF371750", - "KF371748", - "KF371756", - "KF371751", - "KF371754", - "KF371749", - "KF371752", - "KF371753" - ], - "Hepatitis_B_virus__B3_6" : [ - "GU815611", - "HQ231881" - ], - "Hepatitis_B_virus__MTB009" : [ - "AY902769" - ], - "Avian_leukosis_virus__ALV_J_SVR807" : [ - "HM776937" - ], - "Penicillium_chrysogenum_virus" : [ - "NC_007539", - "NC_007542", - "NC_007541", - "NC_007540" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1813_2007" : [ - "FJ410206" - ], - "Staphylococcus_aureus_Bmb9393" : [ - "NC_021657", - "NC_021670" - ], - "Hepatitis_B_virus__clz2134" : [ - "KC774218" - ], - "Sida_golden_mosaic_virus__yellow_vein" : [ - "AJ250731" - ], - "Rabies_virus__8764THA" : [ - "EU293111" - ], - "Hepatitis_B_virus__C176" : [ - "EU939600" - ], - "Porcine_epidemic_diarrhea_virus__ISU13_19338E_IN_passage3" : [ - "KF650371" - ], - "Tomato_leaf_curl_Barka_virus__Tom_55" : [ - "NC_024116" - ], - "Tomato_leaf_curl_New_Delhi_virus__potato___MOD2_4" : [ - "KC874499", - "KC874507" - ], - "Human_parechovirus_1__SH1" : [ - "FJ840477" - ], - "Torque_teno_virus__tth19" : [ - "AJ620233" - ], - "Honeysuckle_yellow_vein_virus__Japan_Fukui_2001___Fukui" : [ - "AB236321" - ], - "Microviridae_Fen4707_41__Fen4707_41" : [ - "NC_027641" - ], - "Torque_teno_virus_SIA109" : [ - "FJ426280" - ], - "Hepatitis_B_virus__A28" : [ - "HM363604" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C73" : [ - "KJ019047" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__SD_WM_tom1_11" : [ - "KC763631" - ], - "Salmonella_enterica_serovar_Typhi_Ty2" : [ - "NC_004631" - ], - "Plum_pox_virus_D_Cdn_5" : [ - "AY953264" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_LIBR0093" : [ - "KR006947" - ], - "Hepatitis_B_virus__MGL241F" : [ - "AB270540" - ], - "Pseudomonas_phage_PaP3" : [ - "NC_004466" - ], - "Hepatitis_B_virus__HBV_TR2" : [ - "AB116080" - ], - "Japanese_encephalitis_virus__JEV_SW_GZ_09_2004" : [ - "KF297916" - ], - "JC_polyomavirus__PB_3" : [ - "AB077876" - ], - "Human_immunodeficiency_virus_1__GHNJ196" : [ - "AB231898" - ], - "Chatanga_virus__Mohko_ILO8_3" : [ - "KF719221", - "KF719223", - "KF719222" - ], - "Hepatitis_B_virus__S1049_3" : [ - "FJ787453" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Forecariah_1365" : [ - "KR534554" - ], - "Enterovirus_A71__02_0_072" : [ - "KP691650" - ], - "Hepatitis_B_virus_1456_14" : [ - "KR014061" - ], - "Citrus_yellow_vein_clearing_virus__CQ" : [ - "NC_026592" - ], - "Hepatitis_B_virus__cxa1207" : [ - "KC774295" - ], - "Indian_cassava_mosaic_virus__Ker5___Koodathai" : [ - "AM158955" - ], - "Papaya_leaf_curl_China_virus__G22" : [ - "AJ704604" - ], - "Norwalk_virus_Norwalk_like_BS5" : [ - "AF093797" - ], - "Turnip_mosaic_virus_TW" : [ - "AF394602" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M26" : [ - "KM110945" - ], - "Dengue_virus_2__MD518" : [ - "FM210224" - ], - "Porcine_circovirus_2_WX_1" : [ - "JN119256" - ], - "Northern_cereal_mosaic_virus__Hebei" : [ - "GU985153" - ], - "Blainvillea_yellow_spot_virus__BR_Vic11_10" : [ - "KC706520", - "KC706525" - ], - "Human_adenovirus_41__NIVD103" : [ - "HM565136" - ], - "Hepatitis_B_virus__cxa2032" : [ - "KC774313" - ], - "Human_immunodeficiency_virus_1__02OSG1" : [ - "JQ429433" - ], - "Brassica_yellows_virus__BrYV_ABJ" : [ - "NC_016038" - ], - "Faba_bean_necrotic_yellows_C11_alphasatellite__SV292_88" : [ - "AJ005965", - "AJ005967" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP2B" : [ - "JN013977" - ], - "Goose_circovirus_xs2" : [ - "DQ192283" - ], - "Dengue_virus_2_ThNH62_93" : [ - "AF169683" - ], - "Hepatitis_B_virus__HK1248" : [ - "DQ089790" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d2ym4" : [ - "HQ890529" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC11B55_2008" : [ - "JF909089" - ], - "Potato_virus_Y_strain_N_Wi_N_Wi_SGS_AG" : [ - "JQ924288" - ], - "Staphylococcus_aureus_Mu50" : [ - "NC_002774", - "NC_002758" - ], - "Human_immunodeficiency_virus_1__GHNJ185" : [ - "AB231895" - ], - "Hepatitis_B_virus__I219" : [ - "FJ562324" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2760_2007" : [ - "GQ199784" - ], - "Newcastle_disease_virus_Du_CH_LFJ_027_2011" : [ - "KM885160" - ], - "Japanese_encephalitis_virus__SH53" : [ - "JN381850" - ], - "Newcastle_disease_virus__rAnhinga" : [ - "EF065682" - ], - "Acheta_domestica_densovirus__AdNA09" : [ - "KF015278" - ], - "Squash_leaf_curl_China_virus____K___K" : [ - "AF509741" - ], - "Human_rotavirus_A_US430" : [ - "AJ400644" - ], - "West_Nile_virus__WNV_1_BID_V5043" : [ - "JN819316" - ], - "JC_polyomavirus__UZ_19" : [ - "AB127022" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K3" : [ - "AJ717560", - "AJ704944" - ], - "Porcine_epidemic_diarrhea_virus_CH_JX_1_2013" : [ - "KF760557" - ], - "Mycobacterium_phage_Pipefish" : [ - "NC_008199" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2490_2007" : [ - "FJ882581" - ], - "Foot_and_mouth_disease_virus___type_A__IND_22_2006" : [ - "HQ832584" - ], - "Hepatitis_B_virus__29" : [ - "AY236163" - ], - "Calicivirus_isolate_Allston_2008_US" : [ - "GQ475302" - ], - "Bovine_viral_diarrhea_virus_2_XJ_04" : [ - "FJ527854" - ], - "Hepatitis_B_virus__MY81273" : [ - "KJ803794" - ], - "Brevicoryne_brassicae_picorna_like_virus" : [ - "NC_009530" - ], - "Dengue_virus_3__DENV_3_PE_BID_V6263_2008" : [ - "KJ189261" - ], - "Condylorrhiza_vestigialis_MNPV" : [ - "NC_026430" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1530_2007" : [ - "EU726777" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9377_2013" : [ - "KJ643466" - ], - "Candidatus_Liberibacter_asiaticus_psy62" : [ - "NC_012985" - ], - "Taylorella_asinigenitalis_MCE3" : [ - "NC_016043" - ], - "Maize_streak_virus__MSV_A_CF_Bang3_Car41_2008" : [ - "HQ693298" - ], - "Chilli_leaf_curl_virus__CapAS_2" : [ - "KM023148" - ], - "JC_polyomavirus__TU_16" : [ - "AB127020" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL005A" : [ - "AB817998", - "AB817990", - "AB817982" - ], - "Enterobacteria_phage_phiX174__100A90" : [ - "EF380019" - ], - "Rabies_virus__BD0406CC" : [ - "KC171644" - ], - "Strawberry_necrotic_shock_virus" : [ - "NC_008707", - "NC_008706", - "NC_008708" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_11__AHEaCV_11_NZ_3130SG_2012" : [ - "KM874326" - ], - "Human_papillomavirus_type_117__HPV_a_wart10" : [ - "GQ246950" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C100" : [ - "NC_027130" - ], - "Hepatitis_C_virus_subtype_1a__DN20" : [ - "EU781822" - ], - "Porcine_circovirus_2_JH0602" : [ - "EU257516" - ], - "BK_polyomavirus__MT_clone_6" : [ - "AB485694" - ], - "Human_bocavirus__TW3023_06" : [ - "EU984240" - ], - "Hepatitis_C_virus_genotype_4__HCV_unclassified4_GB_BID_G1253" : [ - "JX227964" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3913_2008" : [ - "GU131920" - ], - "African_cassava_mosaic_virus__MG_MG105A1_07" : [ - "KJ887913" - ], - "Persea_americana_endornavirus__Fuerte" : [ - "NC_016648" - ], - "Chlamydia_psittaci_MN" : [ - "NC_018627", - "NC_018636" - ], - "Human_immunodeficiency_virus_1__D1_5p21" : [ - "HM469974" - ], - "Hepatitis_B_virus__M85_6" : [ - "EU330992" - ], - "Porcine_circovirus_2_Fh18" : [ - "AY321987" - ], - "Japanese_encephalitis_virus__GX0523_44" : [ - "JN381832" - ], - "African_cassava_mosaic_virus__MG_MG31A1_06" : [ - "KJ887850" - ], - "Hepatitis_B_virus__C3_2" : [ - "GU815638" - ], - "Tomato_yellow_leaf_curl_virus_TYLCV_YS" : [ - "AB636264" - ], - "Bitter_gourd_yellow_vein_virus__BD12C8" : [ - "NC_024894", - "NC_024895" - ], - "Hepatitis_B_virus__CHN_QH37" : [ - "DQ478897" - ], - "Salmonella_enterica_serovar_Paratyphi_A_AKU_12601" : [ - "NC_011147" - ], - "Mycobacterium_phage_Phelemich" : [ - "NC_022063" - ], - "Porcine_circovirus_2__K48" : [ - "EU450592" - ], - "Hepatitis_B_virus__6359" : [ - "JN827423" - ], - "Enterovirus_A71__S19841_SAR_03" : [ - "DQ341363" - ], - "Hepatitis_B_virus__C239" : [ - "EU939640" - ], - "Dengue_virus_1__DENV_1_NI_BID_V2642_2004" : [ - "GQ199867" - ], - "Hepatitis_B_virus__J180" : [ - "GQ377612" - ], - "Pepper_mottle_virus" : [ - "NC_001517" - ], - "Hepatitis_B_virus__clz1036" : [ - "KC774194" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V139_1992" : [ - "EU155336" - ], - "Synechococcus_phage_S_CBS3_S_CBS3" : [ - "NC_015465" - ], - "Porcine_circovirus_2__Vos_6869_70_06" : [ - "EU545550" - ], - "Hepatitis_B_virus__A5_48066" : [ - "FJ692594" - ], - "Squash_leaf_curl_virus__IL2_46" : [ - "KM595106" - ], - "Maize_streak_virus__MSV_A_NG_Iwo_N28a_2007" : [ - "HQ693384" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3786_2008" : [ - "GU131894" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_15_DRC" : [ - "JX458847" - ], - "Blainvillea_yellow_spot_virus__BR_Vic04_1_10" : [ - "KC706516" - ], - "Hepatitis_B_virus__I147" : [ - "FJ562285" - ], - "Usutu_virus_3169" : [ - "KJ438718" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1685_2007" : [ - "FJ024458" - ], - "Measles_virus_CAM_70" : [ - "DQ345722", - "DQ345723", - "DQ345721" - ], - "Rice_yellow_mottle_virus__Mg1" : [ - "AM883054", - "AJ608210" - ], - "Hepatitis_B_virus__GY235" : [ - "FR714492" - ], - "Human_papillomavirus_type_6__59" : [ - "HG793867" - ], - "Dengue_virus_1_98901530_DF_DV_1" : [ - "AB189121" - ], - "Wheat_dwarf_India_virus" : [ - "JF781306", - "NC_017828" - ], - "Watermelon_chlorotic_stunt_virus__IL2_112" : [ - "KM820253" - ], - "Tomato_leaf_curl_virus__Solanum_species_D1__D1" : [ - "AF084006" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_29_2013" : [ - "KJ672478" - ], - "Tomato_yellow_leaf_curl_virus_HNXX" : [ - "JQ038239" - ], - "South_African_cassava_mosaic_virus__MG_MG373A4_11" : [ - "KJ887709" - ], - "SFTS_virus_HNXY_191_HNXY_191" : [ - "KC292349", - "KC292296", - "KC292323" - ], - "Feline_astrovirus_2_1637F" : [ - "NC_022249" - ], - "Peanut_stunt_virus_G" : [ - "JN135294", - "JN135293", - "JN135292" - ], - "East_African_cassava_mosaic_virus__Seychelles_Mahe_SC16B00_2005" : [ - "JF909158" - ], - "Human_poliovirus_1_NIE1018364" : [ - "KJ170442" - ], - "Reston_ebolavirus___Reston_Reston" : [ - "AB050936" - ], - "BK_polyomavirus_JPN_15" : [ - "AB269834" - ], - "Hepatitis_B_virus__cxa2042" : [ - "KC774317" - ], - "Human_coronavirus_NL63_NL63_human_USA_891_4_1989" : [ - "KF530114" - ], - "Citrus_yellow_mosaic_virus__SO_JNTU" : [ - "JN006805" - ], - "Pelagibacter_phage_HTVC011P" : [ - "NC_020482" - ], - "Usutu_virus_V46" : [ - "KJ438755" - ], - "Porcine_circovirus_2_SD1" : [ - "DQ141322" - ], - "candidate_division_WWE3_bacterium_RAAC2_WWE3_1" : [ - "NC_023001" - ], - "Borrelia_burgdorferi_ZS7" : [ - "NC_011780", - "NC_011722", - "NC_011781", - "NC_011736", - "NC_011779", - "NC_011728", - "NC_011784", - "NC_011731", - "NC_011782", - "NC_011735", - "NC_011724", - "NC_011720", - "NC_011785", - "NC_011783", - "NC_011778" - ], - "Sindbis_virus__SW6562" : [ - "AF429428" - ], - "Sacbrood_virus__AcSBV_Viet5" : [ - "KM884994" - ], - "Tomato_ringspot_virus__Rasp1_2014" : [ - "KM083895", - "KM083894" - ], - "Human_papillomavirus_type_6__8" : [ - "HG793816" - ], - "Cereal_yellow_dwarf_virus_RPV__010" : [ - "EF521830" - ], - "Human_respiratory_syncytial_virus__Kilifi_9465_9_RSVB_2011" : [ - "KP317928" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4132_1" : [ - "KR105213" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V3799_2008" : [ - "GU131902" - ], - "Hepatitis_B_virus__J12" : [ - "GQ377517" - ], - "Viral_hemorrhagic_septicemia_virus_KRRV9601" : [ - "AB672614" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_M2" : [ - "AB261990" - ], - "Torque_teno_virus__TTV_HD23c__rheu211" : [ - "FR751502" - ], - "West_Nile_virus__WNV_1_US_BID_V6574_2002" : [ - "KJ501369" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2456_2001" : [ - "KF955479" - ], - "Salmonella_enterica_serovar_Heidelberg_SL476" : [ - "NC_011083", - "NC_011082", - "NC_011081" - ], - "East_African_cassava_mosaic_virus_Uganda3_Severe" : [ - "NC_004676" - ], - "West_Nile_virus__WNV_1_US_BID_V6529_2002" : [ - "KJ501344" - ], - "Small_begomovirus_associated_satellite__Sa8_S127" : [ - "KJ859166" - ], - "Usutu_virus_V68" : [ - "KJ438776" - ], - "Porcine_circovirus_2__GXFC11" : [ - "KJ680370" - ], - "Duck_hepatitis_A_virus_1_03D" : [ - "DQ249299" - ], - "Feline_coronavirus__67F" : [ - "KP143510" - ], - "Foot_and_mouth_disease_virus___type_A_A29_Peru_a29peru_iso37" : [ - "AY593773" - ], - "Dengue_virus_1__MKS_0344" : [ - "KC762646" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0021" : [ - "KP759756" - ], - "Echovirus_E24_DeCamp" : [ - "AY302548" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3713_2" : [ - "KM233050" - ], - "Coxsackievirus_B5_CVB5_CC10_17" : [ - "JN695051" - ], - "Human_immunodeficiency_virus_1__03GH175G" : [ - "AB287003", - "AB287004" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__HL_Injected" : [ - "KF791953", - "KF791948", - "KF791958" - ], - "West_Nile_virus__ARC10" : [ - "AY795965" - ], - "Aeropyrum_camini_SY1___JCM_12091" : [ - "NC_022521" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1880_2007" : [ - "FJ859029" - ], - "Hepatitis_B_virus__A1_2" : [ - "GU815549" - ], - "Maize_streak_virus__MSV_B1_Za_Tar_2005" : [ - "EU628606" - ], - "Eyach_virus_Fr578" : [ - "NC_003707", - "NC_003701", - "NC_003699", - "NC_003705", - "NC_003703", - "NC_003706", - "NC_003700", - "NC_003704", - "NC_003697", - "NC_003702", - "NC_003696", - "NC_003698" - ], - "Tomato_leaf_curl_Cameroon_alphasatellite__CM_TOS2D3_To_09___TOS2D3" : [ - "FN675301" - ], - "Plum_pox_virus_PPV_Rec_BOR_3" : [ - "JQ794501" - ], - "Frog_virus_3__SSME" : [ - "KJ175144" - ], - "Human_herpesvirus_5_Merlin_RCMV1678" : [ - "KM192302" - ], - "Hepatitis_B_virus_HB806" : [ - "JQ027333" - ], - "Yellow_fever_virus__ArD121040" : [ - "JX898870" - ], - "Hepatitis_B_virus__V30" : [ - "HM363575" - ], - "Enterobacteria_phage_phiX174_sensu_lato" : [ - "NC_001422" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7082_2005" : [ - "KJ189293" - ], - "Dengue_virus_3__DENV_3_LK_BID_V2410_1983" : [ - "GQ199889" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7596_2007" : [ - "KJ189330" - ], - "Hepatitis_delta_virus_Miyako_JA_M8" : [ - "AB118824" - ], - "Mycobacterium_tuberculosis_CTRI_2" : [ - "NC_017524" - ], - "Rice_stripe_virus__MA_JN" : [ - "FJ602693", - "FJ602680" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP01361_2012" : [ - "KJ627251" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US115" : [ - "KJ019079" - ], - "Human_immunodeficiency_virus_2__NNVA" : [ - "EU980602" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__NVSL_97_7985_IA_1_4_2" : [ - "AF325691" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_136_2012" : [ - "KJ686163" - ], - "Hepatitis_B_virus__HB05_0890" : [ - "AB937791" - ], - "Hepatitis_B_virus__85" : [ - "AY233290" - ], - "Usutu_virus_V52" : [ - "KJ438740" - ], - "Canine_mastadenovirus_A__RI261" : [ - "NC_001734" - ], - "Pepper_yellow_vein_Mali_virus_Mali_BF_Ban_Hpe1_09" : [ - "FN555172" - ], - "Cronobacter_phage_vB_CskP_GAP227" : [ - "NC_020078" - ], - "Changuinola_virus__CGLV_BE_AR_385199" : [ - "KF680188", - "KF680190", - "KF680194", - "KF680196", - "KF680193", - "KF680191", - "KF680197" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG552A2_11" : [ - "KJ888038" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_M_SD_SD222_2013" : [ - "KM229908" - ], - "Lactobacillus_helveticus_CNRZ32" : [ - "NC_021744" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA40" : [ - "KF670659" - ], - "Squash_leaf_curl_virus__IL2_43" : [ - "KM595105" - ], - "Mycobacterium_phage_SkiPole" : [ - "NC_023748" - ], - "Porcine_circovirus_2__NJ05" : [ - "FJ644555" - ], - "Butyrivibrio_fibrisolvens" : [ - "NC_021031" - ], - "West_Nile_virus__WNV_1_US_BID_V7401_2008" : [ - "KJ501113" - ], - "Duck_hepatitis_B_virus_Alberta_ALTA_16" : [ - "AF047045" - ], - "Maize_streak_virus__MSV_B1_Za_Keh_g218_2007" : [ - "EU628584" - ], - "Human_poliovirus_3_NIE1118477" : [ - "KJ170645" - ], - "Rabies_virus_SRV9" : [ - "AF499686" - ], - "Human_immunodeficiency_virus_1__ML605_3_1997" : [ - "AY322190" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD220_2013" : [ - "KM229774" - ], - "Dengue_virus_2__DENV_2_US_BID_V1032_1998" : [ - "EU482545" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Rh_4" : [ - "KM103525" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL082A" : [ - "AB985306", - "AB985538" - ], - "Raspberry_bushy_dwarf_virus__BY3" : [ - "FR687355", - "FR687350" - ], - "Hepatitis_B_virus__YY004M_e108" : [ - "KJ173376" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir9_T7X_Cuc_07" : [ - "FJ660437" - ], - "Hepatitis_B_virus__FEN44" : [ - "JF440003" - ], - "Saffold_virus_Gunma_176_2008" : [ - "AB983594" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2019_2001" : [ - "JF730044" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3769_3" : [ - "KM233067" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C53" : [ - "KJ019033" - ], - "Dengue_virus_2__DENV_2_VI_BID_V2948_1990" : [ - "FJ898450" - ], - "Human_immunodeficiency_virus_1__VAU_group_O" : [ - "AF407418" - ], - "Banana_bunchy_top_virus_NS" : [ - "AF238878" - ], - "Hepatitis_B_virus__BFJT1997_1" : [ - "AB642092" - ], - "Maize_streak_virus__MSV_A_NG_Oyo_N26_2007" : [ - "HQ693393" - ], - "Coxsackievirus_A13_ARG98_10613" : [ - "DQ995635" - ], - "Hepatitis_B_virus__J79" : [ - "GQ377548" - ], - "Potato_mop_top_virus__Hiroshima__H" : [ - "AB491171" - ], - "Merkel_cell_polyomavirus__915F_06_008_CG4" : [ - "JQ479320" - ], - "Middle_East_respiratory_syndrome_coronavirus__NRCE_HKU205" : [ - "KJ477102" - ], - "Papaya_ringspot_virus_Leaf_mottling_and_necrosis_Ping_tong" : [ - "DQ340770" - ], - "Bordetella_parapertussis_Bpp5" : [ - "NC_018828", - "NC_018830" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Dubreka_789" : [ - "KR534523" - ], - "Bean_yellow_mosaic_Mexico_virus_06_05_11" : [ - "NC_015487" - ], - "Cucumber_mosaic_virus_LiCB" : [ - "AB506799", - "AB506798", - "AB506800" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3889_1" : [ - "KR105205" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1513_2007" : [ - "EU660416" - ], - "Duck_circovirus__D12_JW_047" : [ - "KC851815" - ], - "Hepatitis_B_virus__GU557" : [ - "GQ161779" - ], - "Hepatitis_B_virus__BR9_SOUTHEAST" : [ - "KC494397" - ], - "Sida_yellow_mosaic_virus__China__associated_DNA_beta__Hn40" : [ - "AJ810094" - ], - "Vibrio_alginolyticus_NBRC_15630___ATCC_17749" : [ - "NC_022359", - "NC_022349" - ], - "Vaccinia_virus_Dryvax" : [ - "JN654982", - "KJ125438", - "JN654980", - "JN654985", - "JN654986", - "JN654976", - "JN654977", - "JN654979", - "JN654978", - "JN654984", - "JN654981", - "JN654983" - ], - "Malvastrum_yellow_vein_virus__SC101" : [ - "JN082239", - "JN082235" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_94I_104A_01_1994" : [ - "KP258742" - ], - "Croton_yellow_vein_mosaic_virus__CYVMV_Del_Crambe" : [ - "KJ747958" - ], - "Apple_mosaic_virus__Zaslavskoje" : [ - "HG328280" - ], - "Banana_streak_OL_virus" : [ - "NC_003381" - ], - "Marine_birnavirus_NC1" : [ - "AY283784" - ], - "Hepatitis_B_virus__B46" : [ - "FJ904443" - ], - "Japanese_encephalitis_virus__CH13" : [ - "JN381870" - ], - "Mammalian_orthoreovirus__Porcine_reovirus_SC_A" : [ - "DQ885990" - ], - "Mycobacterium_phage_First" : [ - "NC_020876" - ], - "Tobacco_curly_shoot_betasatellite__Y98" : [ - "AJ457821" - ], - "WU_Polyomavirus__W1228" : [ - "GU296364" - ], - "Hepatitis_B_virus_1368_13" : [ - "KR014042" - ], - "Pteronotus_polyomavirus__GTM203" : [ - "NC_020070" - ], - "Bluetongue_virus_9__11508" : [ - "DQ191284" - ], - "Hepatitis_B_virus__S732_7" : [ - "FJ032347" - ], - "Human_immunodeficiency_virus_1__UY04_3987" : [ - "FJ213781" - ], - "Enterovirus_A71__EV71_Henan_294_2010" : [ - "HM245927" - ], - "Dengue_virus_2__DENV_2_US_BID_V1461_2000" : [ - "EU687222" - ], - "Murine_norovirus_GV_NIH_2410_2005_USA_GV_NIH_2410_2005_USA" : [ - "JF320645" - ], - "Sapporo_virus_Manchester__Manchester" : [ - "X86560" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLE8169_2010" : [ - "KJ672567" - ], - "Human_adenovirus_21_VRDL_T97_1745" : [ - "KJ364589" - ], - "Crimean_Congo_hemorrhagic_fever_virus__TAJ_HU8966" : [ - "AY049083" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2296_2001" : [ - "FJ744712" - ], - "Rhizobium_phage_RHEph05" : [ - "JX483877" - ], - "Porcine_circovirus_2_BX" : [ - "AF381177" - ], - "Dengue_virus_4_341750" : [ - "GU289913" - ], - "African_cassava_mosaic_virus__CF_CF268BN_08" : [ - "KJ887625" - ], - "Human_coronavirus_OC43__2145A_2010" : [ - "KF923888" - ], - "Small_begomovirus_associated_satellite__Sa8_S116" : [ - "KJ859164" - ], - "Hepatitis_B_virus__S1" : [ - "EU678470", - "JQ000008" - ], - "Duck_circovirus__WF0803" : [ - "GU131342" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG704B1_11" : [ - "KJ888092" - ], - "Human_immunodeficiency_virus_1__CH40E_flF10" : [ - "FJ495822" - ], - "Hepatitis_B_virus__PNF5268" : [ - "KF779359" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG603A5_11" : [ - "KJ888055" - ], - "Hepatitis_B_virus__6_024A_1" : [ - "EU871974" - ], - "Human_papillomavirus_type_16__Fr630712" : [ - "HQ644246" - ], - "West_Nile_virus__WNV_1_US_BID_V6651_2001" : [ - "KJ501395" - ], - "Human_metapneumovirus_HMPV_AUS_172832788_2004_B" : [ - "KF530164" - ], - "Escherichia_coli_O55_H7_CB9615" : [ - "NC_013941", - "NC_013942" - ], - "Watermelon_chlorotic_stunt_virus__JO3_619" : [ - "KM820229" - ], - "Streptococcus_phage_C1" : [ - "NC_004814" - ], - "Maize_streak_virus__MSV_UMba27" : [ - "EF015781" - ], - "Equine_arteritis_virus_F60" : [ - "JN211317" - ], - "Human_immunodeficiency_virus_1__98SE_MP1213" : [ - "AJ251057" - ], - "Bluetongue_virus__serotype_3" : [ - "X55801" - ], - "Yellow_fever_virus_BeH526722" : [ - "JF912186" - ], - "Human_immunodeficiency_virus_1__U_NL_95_H10986_B6" : [ - "EF029067" - ], - "Tomato_leaf_curl_Iran_virus" : [ - "NC_005842" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Bathinda_2009" : [ - "JF502377" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2739_2007" : [ - "FJ898381" - ], - "Norovirus_Hu_GI_1_CHA6A014_2009_USA_Hu_GI_1_CHA6A014_2009_USA" : [ - "KF039734" - ], - "Middle_East_respiratory_syndrome_coronavirus_Indiana_USA_1_Saudi_Arabia_2014" : [ - "KJ813439" - ], - "Human_immunodeficiency_virus_1__BREPM1027" : [ - "EF637054" - ], - "East_African_cassava_mosaic_Cameroon_virus_WACMV_CM" : [ - "NC_004625", - "NC_004630" - ], - "Japanese_encephalitis_virus__47" : [ - "JF706269" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1639_2007" : [ - "FJ182021" - ], - "West_Nile_virus__WNV_1_US_BID_V4624_2008" : [ - "HM488239" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V38_2004" : [ - "EU482884" - ], - "Human_immunodeficiency_virus_1__CH269_w24" : [ - "KC156215" - ], - "Yersinia_phage_R" : [ - "JX000007" - ], - "Streptococcus_pyogenes_MGAS10270" : [ - "NC_008022" - ], - "Rhizobium_phage_RR1_B_RR1_B" : [ - "NC_021557" - ], - "Torque_teno_virus__TTV_HD14c__gbDhDi33_31" : [ - "FR751465" - ], - "West_Nile_virus__WNV_1_US_BID_V6373_2001" : [ - "KJ501443" - ], - "Hepatitis_B_virus_isolate_HBV_991__subtype_adw" : [ - "X51970" - ], - "Hepatitis_C_virus_subtype_1b_MD13" : [ - "AF207754" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3597_2007" : [ - "GU131872" - ], - "Mycobacterium_phage_Echild" : [ - "NC_023553" - ], - "Human_immunodeficiency_virus_1__06KECst_025" : [ - "FJ623486" - ], - "West_Nile_virus__Ast01_187" : [ - "DQ411031" - ], - "Pseudomonas_phage_vB_PaeM_C2_10_Ab15_Ab15" : [ - "LN610587" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1524_2007" : [ - "EU677152" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5012_3" : [ - "KR105292" - ], - "Hydrogenobacter_thermophilus_TK_6" : [ - "NC_013799" - ], - "Bacillus_amyloliquefaciens_Y2" : [ - "NC_017912" - ], - "JC_polyomavirus__C1" : [ - "AB198940" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_130573" : [ - "KJ425496" - ], - "Porcine_circovirus_2__PK08" : [ - "FJ644922" - ], - "Watermelon_chlorotic_stunt_virus__JO1_116" : [ - "KM820189" - ], - "Synechococcus_phage_ACG_2014b__Syn7803US49" : [ - "KJ019104" - ], - "Torque_teno_sus_virus_1b__TTV2_G43" : [ - "GU570206" - ], - "Acetobacter_pasteurianus_IFO_3283_32" : [ - "NC_017112", - "NC_017135", - "NC_017149", - "NC_017111", - "NC_017134", - "NC_017103", - "NC_017102" - ], - "Human_immunodeficiency_virus_1__06KECst_017" : [ - "FJ623488" - ], - "Staphylococcus_aureus_ST228_18412" : [ - "NC_020537", - "NC_020538" - ], - "Maize_streak_virus__MSV_A_MZ_Bil7_Bet16_2007" : [ - "HQ693341" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Bangalore_OYNun_2006___OYNun" : [ - "GU111991" - ], - "Eastern_equine_encephalitis_virus_EEEV_Aedes_USA_RI_AR_5_9690_1990" : [ - "KJ469610" - ], - "Jaagsiekte_sheep_retrovirus" : [ - "NC_001494", - "DQ838494", - "A27950", - "CQ964469" - ], - "Cotton_leaf_curl_Gezira_beta__Gezira" : [ - "AY044140", - "NC_009740" - ], - "Yersinia_phage_phiYeO3_12" : [ - "NC_001271" - ], - "Porcine_circovirus_2_SD_JN" : [ - "KJ511870" - ], - "Helicobacter_heilmannii_ASB1_4" : [ - "NC_019674" - ], - "Hepatitis_B_virus__D_NZL_RA37_1984" : [ - "HQ700480" - ], - "Hepatitis_B_virus__RS2" : [ - "HQ236015" - ], - "Banana_bunchy_top_virus__JY7" : [ - "AB108458" - ], - "Human_metapneumovirus_HMPV_USA_TN_83_93_1983_A" : [ - "KC403976" - ], - "Hepatitis_B_virus__CAR047" : [ - "AM494694" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG652A11_11" : [ - "KJ888083" - ], - "JC_polyomavirus__GU_21" : [ - "AB081012" - ], - "Dengue_virus_3__DENV_3_KH_BID_V3823_2006" : [ - "HM181934" - ], - "Newcastle_disease_virus__GD1003_2010" : [ - "KC152049" - ], - "Hepatitis_B_virus__11" : [ - "EU562215" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GDQY2" : [ - "GU454850" - ], - "Human_poliovirus_3_NIE1118470" : [ - "KJ170649" - ], - "African_horse_sickness_virus__HS_27_08" : [ - "KP009703", - "KP009701", - "KP009707", - "KP009705", - "KP009708", - "KP009706", - "KP009709", - "KP009704", - "KP009710" - ], - "Human_immunodeficiency_virus_1__04013396_0_flE6" : [ - "FJ496081" - ], - "South_African_cassava_mosaic_virus__MG_MG138A2_09" : [ - "KJ887668" - ], - "Dengue_virus_2_DENV_2_PR_50DN_1994" : [ - "GQ398269" - ], - "Hepatitis_B_virus__Ag13" : [ - "KJ843175" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2312_2001" : [ - "FJ744726" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LGD_111238" : [ - "JQ804521" - ], - "Human_papillomavirus_type_18__BF380" : [ - "KC470228" - ], - "Mycobacterium_intracellulare_MOTT_64" : [ - "NC_016948" - ], - "West_Nile_virus__WNV_1_US_BID_V4202_2002" : [ - "HM488137" - ], - "Pseudomonas_phage_KPP10" : [ - "NC_015272" - ], - "Streptococcus_parasanguinis_ATCC_15912" : [ - "NC_015678" - ], - "Hepatitis_B_virus_1263_6" : [ - "KR014026" - ], - "Hepatitis_B_virus__P80" : [ - "GQ477494" - ], - "Middle_East_respiratory_syndrome_coronavirus_Munich" : [ - "KF192507" - ], - "Chickpea_chlorotic_dwarf_virus__A_TC40_96" : [ - "KC172663" - ], - "Rhodospirillum_rubrum_ATCC_11170" : [ - "NC_007643", - "NC_007641" - ], - "Human_mastadenovirus_D_human_USA_MEEI_00074_X_37_P37H37F37" : [ - "KF268203" - ], - "Enterococcus_7L76" : [ - "NC_021023" - ], - "Enterovirus_D68_US_IL_14_18952" : [ - "KM851230" - ], - "Dengue_virus_1__DENV_1_NI_BID_V5068_2009" : [ - "JQ287666" - ], - "Streptococcus_suis_T15" : [ - "NC_022665" - ], - "Tomato_spotted_wilt_virus__p105_RB_MaxI" : [ - "HQ839730" - ], - "Escherichia_Stx1_converting_phage" : [ - "NC_004913" - ], - "Wheat_yellow_mosaic_virus__Zhouzhi" : [ - "FJ361768", - "FJ361765" - ], - "Tomato_leaf_curl_New_Delhi_virus_Severe" : [ - "NC_004611", - "NC_004612" - ], - "Hepatitis_C_virus_subtype_1a__L844PT" : [ - "EU781801" - ], - "Hepatitis_B_virus__I_T60" : [ - "GU456684" - ], - "Barley_yellow_dwarf_virus_GAV__TS1" : [ - "KF523382" - ], - "Lactobacillus_johnsonii_DPC_6026" : [ - "NC_017477" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG583A1_11" : [ - "KJ888051" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5684_1" : [ - "KR105316" - ], - "Ovine_lentivirus_P1OLV" : [ - "AF479638" - ], - "Candidatus_Liberibacter_americanus_Sao_Paulo" : [ - "NC_022793" - ], - "Rabies_virus__1352KRA" : [ - "JQ944706" - ], - "Bluetongue_virus_8_BTV_8NT__NET2006_04" : [ - "AM498058", - "AM498053", - "AM498052", - "AM498059", - "AM498054", - "AM498051", - "AM498055", - "AM498057", - "AM498060", - "AM498056" - ], - "Usutu_virus_1477" : [ - "KJ438705" - ], - "Feline_coronavirus_UU47_UU47" : [ - "JN183882" - ], - "Nique_virus" : [ - "HM119425", - "HM119427", - "HM119426" - ], - "Coxsackievirus_B6_Schmitt__1_15_21" : [ - "AF039205" - ], - "Hepatitis_B_virus__252_95_2" : [ - "EU871978" - ], - "Dengue_virus_4__DENV_4_US_BID_V1094_1998" : [ - "EU854297" - ], - "Bovine_coronavirus_E_AH187_TC_E_AH187_TC" : [ - "FJ938064" - ], - "Human_adenovirus_7_H12_JM_CHN_2012" : [ - "KJ019885" - ], - "Sclerotinia_sclerotiorum_endornavirus_2__11691" : [ - "NC_023893" - ], - "Hepatitis_B_virus__TK186" : [ - "JF754632" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SD_CXA_2008" : [ - "GQ359108" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5647_1" : [ - "KR105315" - ], - "Tomato_leaf_curl_Togo_virus___Fontem__TFB2" : [ - "HE659517" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC260" : [ - "KP178729" - ], - "Porcine_circovirus_2__Mal002_11_Melaka" : [ - "JF690911" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD29_2013" : [ - "KM229781" - ], - "Foot_and_mouth_disease_virus___type_O__HKN15_2010" : [ - "KF112889" - ], - "Bluetongue_virus_9_BOS2002_01_Bosnia_2002" : [ - "AM778443" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1950" : [ - "JX869181" - ], - "Cowpea_chlorotic_mottle_virus_T" : [ - "AF325741", - "AF325740", - "AF325739" - ], - "Foot_and_mouth_disease_virus___type_A__IND_21_1990" : [ - "HQ832576" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8466_2001" : [ - "KJ627693" - ], - "Rift_Valley_fever_virus_ANK_3837" : [ - "DQ380165", - "DQ380215", - "DQ375420" - ], - "Foot_and_mouth_disease_virus___type_A_Aarg2001_aargp64_iso100" : [ - "AY593785" - ], - "Dengue_virus_2__DENV_2_NI_BID_V640_2005" : [ - "EU482635" - ], - "Porcine_circovirus_2_PT_20683_09" : [ - "HQ831539" - ], - "Human_immunodeficiency_virus_1__97VNAG206" : [ - "FJ185248" - ], - "Gooseberry_vein_banding_associated_virus__RC_HC" : [ - "NC_018105" - ], - "Hepatitis_delta_virus__TW2479_18" : [ - "AY261460" - ], - "Bluetongue_virus_320226" : [ - "AY775158" - ], - "Feline_coronavirus_feline_USA_236kid_2011" : [ - "KF530271" - ], - "Hepatitis_B_virus__Leb25" : [ - "JN642136" - ], - "Hepatitis_B_virus__C_PNG_P032C_2004" : [ - "HQ700523" - ], - "Horsegram_yellow_mosaic_virus__horse_gram" : [ - "AM932428", - "AM932427" - ], - "Rubella_virus_RVi_LA_CA_USA_45_08_2B_CRS" : [ - "JN635294" - ], - "Norovirus_Hu_GII_20079_2009_VNM_Hu_GII_20079_2009_VNM" : [ - "KC409247" - ], - "Sclerotinia_sclerotiorum_hypovirulence_associated_DNA_virus_1" : [ - "NC_013116" - ], - "Roseobacter_phage_SIO1_SIO1" : [ - "FJ867910" - ], - "Chicken_parvovirus_ABU_P1_ABU_P1" : [ - "NC_024452" - ], - "Dengue_virus_2_D2_NC_UH37_1971" : [ - "HM582102" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_10F" : [ - "KM609206" - ], - "Mongoose_feces_associated_gemycircularvirus_b_160b" : [ - "NC_026808" - ], - "Mumps_virus_MuVi_MNG09_024" : [ - "AB600843" - ], - "Cycas_necrotic_stunt_virus" : [ - "NC_003792", - "NC_003791" - ], - "Human_parainfluenza_virus_3_HPIV3_ARG_12894_2006" : [ - "KF687341" - ], - "Potato_virus_Y_NTN_NTNTK1" : [ - "AB711146" - ], - "BK_polyomavirus__SHA_13" : [ - "AB365162" - ], - "BK_polyomavirus__TW_1b" : [ - "AB217918" - ], - "JC_polyomavirus__IN_6" : [ - "AB048557" - ], - "Hepatitis_A_virus_MB_7_293" : [ - "HQ437707" - ], - "Human_papillomavirus_type_138__GH13" : [ - "HM999990" - ], - "Hepatitis_B_virus__BV_146" : [ - "GU563560" - ], - "Enterovirus_A71_C4a_01585_TW_2011" : [ - "KJ186974" - ], - "Beet_curly_top_Iran_virus_K_Kerman" : [ - "NC_010417" - ], - "Dengue_virus_2__ZH413_2" : [ - "KC131142" - ], - "Hepatitis_B_virus_274_18a" : [ - "KR013902" - ], - "Hepatitis_B_virus__CHN_QH31" : [ - "DQ478895" - ], - "Norovirus_Hu_GII_4_Iwate4_2008_JP_Hu_GII_4_Iwate4_2008_JP" : [ - "AB541274" - ], - "Rotavirus_G4__Rota_231" : [ - "AB012066" - ], - "JC_polyomavirus__JCV135_06" : [ - "JF424839" - ], - "Human_enterovirus_94__19_04" : [ - "EF107097" - ], - "Hepatitis_B_virus__I227" : [ - "FJ562326" - ], - "Duck_hepatitis_A_virus_1__DHV_HS" : [ - "DQ812094" - ], - "Porcine_circovirus_2__DF_2" : [ - "KC753769" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4052_2008" : [ - "GU131805" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL003A" : [ - "AB817988", - "AB817980", - "AB817996" - ], - "Tomato_aspermy_virus_V" : [ - "NC_003838", - "NC_003837", - "NC_003836", - "TOARNA5SF" - ], - "Ribgrass_mosaic_virus_Kons_1105_V2_R14" : [ - "HQ667980" - ], - "Prochlorococcus_phage_P_SSM3_P_SSM3" : [ - "NC_021559" - ], - "Ugandan_cassava_brown_streak_virus__Ma_42" : [ - "FN433932" - ], - "Sapovirus_Chanthaburi_74_Thailand_Chanthaburi_74_Thailand" : [ - "AY646854" - ], - "Human_immunodeficiency_virus_1__SE8131" : [ - "AF107771" - ], - "Plum_pox_virus_strain_Marcus_Marcus_VAR_2_M13" : [ - "HF585103" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL170A" : [ - "AB985576" - ], - "Japanese_encephalitis_virus_JEV_Bo_Aichi_1_2010" : [ - "AB853904" - ], - "Dengue_virus_2_ThNH_p12_93" : [ - "AF022438" - ], - "Indian_cassava_mosaic_virus" : [ - "NC_001932", - "NC_001933" - ], - "Human_immunodeficiency_virus_1__1252_11" : [ - "KP718929" - ], - "Human_rhinovirus_B83_ATCC_VR_1193" : [ - "FJ445161" - ], - "Elephant_endotheliotropic_herpesvirus_1A__North_American__NAP23__Kimba" : [ - "KC618527" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V225_2004" : [ - "EU255945" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP6B_subpopulation_1" : [ - "JN014004" - ], - "Avian_leukosis_virus_PDRC_1039" : [ - "EU070900" - ], - "Raspberry_bushy_dwarf_virus__GR_6" : [ - "EU796085" - ], - "Dragonfly_larvae_associated_circular_virus_10__DflaCV_10_NZ_XZ2_LS" : [ - "KF738884" - ], - "Citrus_tristeza_virus__T3" : [ - "KC525952" - ], - "Tomato_spotted_wilt_virus__DH37" : [ - "AJ418779" - ], - "Rift_Valley_fever_virus_Kenya_57__Rintoul" : [ - "DQ375431", - "DQ380192", - "DQ380155" - ], - "Cotton_leaf_curl_betasatellite__Sri_ganganagar" : [ - "GQ370388" - ], - "Hepatitis_B_virus_1456_30a" : [ - "KR013867" - ], - "Tula_virus_Tula_Moravia_5302Ma_94" : [ - "NC_005227" - ], - "Tomato_yellow_leaf_curl_virus__LY39" : [ - "JX070044" - ], - "Campylobacter_phage_CP8" : [ - "KF148616" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3868_2008" : [ - "GU131703" - ], - "Tomato_rugose_yellow_leaf_curl_virus_A_U1" : [ - "JN381813", - "JN381815" - ], - "Norovirus_Hu_GII_4_Ehime1_2006_JP_Hu_GII_4_Ehime1_2006_JP" : [ - "AB447453" - ], - "Hepatitis_C_virus_subtype_6a_6a64" : [ - "DQ480515" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP7D" : [ - "JN014001" - ], - "Porcine_circovirus_2_ShenZhen" : [ - "FJ870969" - ], - "Puumala_virus_Sotkamo_2009" : [ - "HE801633", - "HE801635", - "HE801634" - ], - "Columbid_circovirus__PL102" : [ - "KF738843" - ], - "South_African_cassava_mosaic_virus__MG_MG6B2_05" : [ - "KJ887635" - ], - "Cassava_brown_streak_virus__CBSV__TZ_Nal_07" : [ - "HG965221" - ], - "Saffold_virus__SAFV_3_NL2005_1035" : [ - "HM181999" - ], - "Newcastle_disease_virus__dove_Italy_2736_00" : [ - "AY562989", - "GQ429293" - ], - "Human_herpesvirus_5_CZ_2_2013" : [ - "KP745664" - ], - "Urochloa_streak_virus__USV_NIpe" : [ - "EU445697" - ], - "West_Nile_virus__TX_AR12_10674" : [ - "KC711059" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0022" : [ - "KP759757" - ], - "Sulfolobus_islandicus_M_16_4" : [ - "NC_012726" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K223" : [ - "AJ704956", - "AJ717530" - ], - "Mobiluncus_curtisii_ATCC_43063" : [ - "NC_014246" - ], - "Listeria_phage_LP_064" : [ - "KJ094029" - ], - "Marburg_marburgvirus_Uganda_982Bat2008_811391" : [ - "FJ750956" - ], - "Hepatitis_C_virus__QC147" : [ - "JF735131" - ], - "Bluetongue_virus_2_South_Africa_vaccine__RSAvvvv_02" : [ - "AM773684" - ], - "Rice_black_streaked_dwarf_virus__SDZZ3" : [ - "HM209078" - ], - "Hepatitis_B_virus__HK2074" : [ - "DQ089786" - ], - "East_African_cassava_mosaic_virus__EACMV_Ybi1_Pr" : [ - "FN435278" - ], - "Porcine_circovirus_2_10GS" : [ - "HQ395055" - ], - "Murine_coronavirus_SA59_RJHM_SA59_RJHM" : [ - "FJ647222" - ], - "West_Nile_virus__WNV_1_US_BID_V6690_2004" : [ - "KJ501422" - ], - "Columbid_circovirus__PL44A" : [ - "KF738857" - ], - "Croton_yellow_vein_mosaic_betasatellite__CroYVMB_Del_Cr" : [ - "JN831448" - ], - "Human_immunodeficiency_virus_1_ES_X963_4" : [ - "FJ670527" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V124_1992" : [ - "EU155326" - ], - "Human_papillomavirus_type_6__LP238" : [ - "HE962030" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Biss_Before" : [ - "EF532803" - ], - "Hepatitis_B_virus__bxa1068" : [ - "KC774393" - ], - "Staphylococcus_aureus_ST228_10497" : [ - "NC_020531", - "NC_020564" - ], - "Adelie_penguin_polyomavirus__AdPyV_Crozier_2012" : [ - "NC_026141" - ], - "Dengue_virus_2__ZH1340" : [ - "EU359009" - ], - "Tomato_yellow_leaf_curl_virus___Mild_Shizuokua__Shizuoka_Gemini_S" : [ - "AB014346" - ], - "Chuzan_virus__ON_3_E_98" : [ - "AB177632" - ], - "Porcine_circovirus_2_PM165" : [ - "KJ094600" - ], - "Infectious_spleen_and_kidney_necrosis_virus" : [ - "NC_003494" - ], - "Grass_carp_reovirus" : [ - "AF260511S3", - "AF260511S1", - "AF260511S2" - ], - "Hepatitis_B_virus__S3" : [ - "EU678472", - "FJ386653" - ], - "Dengue_virus_2__DC395Y11" : [ - "KM279522" - ], - "Porcine_circovirus_2_PCV2_1C01" : [ - "FJ594471" - ], - "GB_virus_C__280_10" : [ - "KP710601" - ], - "Tomato_leaf_curl_New_Delhi_virus__Almeria_661" : [ - "KF749226", - "KF749223" - ], - "Hepatitis_B_virus__8016" : [ - "KJ470897" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP7A" : [ - "JN013998" - ], - "Rhizobium_etli_bv__mimosae_Mim1" : [ - "NC_021911", - "NC_021906", - "NC_021907", - "NC_021909", - "NC_021910", - "NC_021905", - "NC_021908" - ], - "Panax_virus_Y__2" : [ - "NC_014252" - ], - "Human_papillomavirus_type_6__69" : [ - "HG793877" - ], - "Suid_herpesvirus_1_Bartha" : [ - "JF797217" - ], - "Hepatitis_B_virus__J193" : [ - "GQ377617" - ], - "Hepatitis_delta_virus__D60" : [ - "KJ744253" - ], - "East_African_cassava_mosaic_Cameroon_virus__EACMCV_CM_NG_Mg_03" : [ - "EU685319" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__Y72___Y72" : [ - "AJ495812" - ], - "Leisingera_methylohalidivorans_DSM_14336" : [ - "NC_023135", - "NC_023136", - "NC_023146" - ], - "Cercopithecine_herpesvirus_5_2715" : [ - "NC_012783" - ], - "Human_poliovirus_2_NIE1018413" : [ - "KJ170548" - ], - "Human_parechovirus_2_CT86_6760" : [ - "AF055846" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3959_2008" : [ - "GU131739" - ], - "Human_immunodeficiency_virus_1_ES_X1589_2" : [ - "FJ670518" - ], - "Bovine_coronavirus_R_AH65_R_AH65" : [ - "EF424617" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT44B01_2008" : [ - "JF909185" - ], - "Alkalilimnicola_ehrlichii_MLHE_1" : [ - "NC_008340" - ], - "Hepatitis_B_virus_B0607171_KDR_F" : [ - "AP011087" - ], - "Paenibacillus_mucilaginosus_K02" : [ - "NC_017672" - ], - "Dengue_virus_3_ThD3_1283_98" : [ - "AY676349" - ], - "Cotton_leaf_curl_Multan_betasatellite__GX8" : [ - "HQ455358" - ], - "Dengue_virus_3__DENV_3_US_BID_V1735_1999" : [ - "FJ390375" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8490_2010" : [ - "KJ627273" - ], - "Muscovy_duck_circovirus__FJ0601" : [ - "EF370476" - ], - "Bombyx_mori_nucleopolyhedrovirus_Cubic" : [ - "JQ991009" - ], - "Sendai_virus_mutant_T_5_revertant" : [ - "SNDT5RCG" - ], - "Human_papillomavirus_type_16__JP0127" : [ - "AB818693" - ], - "Desulfobacterium_autotrophicum_HRM2" : [ - "NC_012109", - "NC_012108" - ], - "Norovirus_Hu_GII_4_Ehime4_2008_JP_Hu_GII_4_Ehime4_2008_JP" : [ - "AB541242" - ], - "Hepatitis_B_virus__1_S869" : [ - "EU560440" - ], - "Patchouli_mild_mosaic_virus" : [ - "AB011007" - ], - "Variola_virus_Bangladesh_1974__Shahzaman" : [ - "DQ441421" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2765_2007" : [ - "GQ199789" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC151" : [ - "KP178727" - ], - "South_African_cassava_mosaic_virus__MG_MG19A42_06" : [ - "KJ887639" - ], - "Barley_yellow_dwarf_virus_GAV__38W" : [ - "AY610954" - ], - "Hepatitis_B_virus__WHSFN" : [ - "JN257149" - ], - "Pectobacterium_wasabiae_WPP163" : [ - "NC_013421" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__Y341" : [ - "FN806781" - ], - "Bradyrhizobium_ORS_278" : [ - "NC_009445" - ], - "Bluetongue_virus_BTV12_PT_2003" : [ - "GU784864", - "GU390659", - "GU390663", - "GU390664", - "GU390661", - "GU390662", - "GU390660", - "GU390658", - "GU390665" - ], - "West_Nile_virus__WNV_1_US_BID_V5233_2009" : [ - "JF920758" - ], - "Norovirus_Hu_GII_4_CHDC3967_1988_US_Hu_GII_4_CHDC3967_1988_US" : [ - "FJ537136" - ], - "South_African_cassava_mosaic_virus__MG_MG28A2_06" : [ - "KJ887848" - ], - "Rabies_virus__SM5100" : [ - "JQ685940" - ], - "Enterovirus_A71_EV71_Jinan1006" : [ - "JQ074190" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC49BE3_2009" : [ - "JF909123" - ], - "Potato_virus_X_OG" : [ - "AB196000" - ], - "Watermelon_chlorotic_stunt_virus__JO2_52" : [ - "KM820205" - ], - "Corynebacterium_pseudotuberculosis_42_02_A" : [ - "NC_017306" - ], - "Usutu_virus_Spain_MB119_06" : [ - "KF573410" - ], - "Tahyna_virus_29" : [ - "KF361874" - ], - "Cellulophaga_phage_phi38_2_phi38_2" : [ - "KC821629" - ], - "Papaya_leaf_curl_virus__CB1" : [ - "KM525657" - ], - "Hepatitis_B_virus_497_8" : [ - "KR013953" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0068" : [ - "KP759732" - ], - "JC_polyomavirus_710A" : [ - "AF300960" - ], - "Human_polyomavirus_9__HPyV9" : [ - "NC_015150" - ], - "Squash_leaf_curl_virus__JO1_617" : [ - "KM595172" - ], - "Hepatitis_B_virus__P73" : [ - "GQ477455" - ], - "Porcine_circovirus_2__S00_1966_4_3" : [ - "JX512854" - ], - "Hepatitis_B_virus__C5_HBVKO2" : [ - "HPBC5HKO2" - ], - "Human_immunodeficiency_virus_1_HIV_1_recombinants_between_subtypes_B__and_C_HH069" : [ - "AP005206" - ], - "Squash_leaf_curl_China_virus____Cucurbita_pepo__Lahore" : [ - "AM286794" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda46_05" : [ - "KC706648" - ], - "Toscana_virus_TOSV_Firenze_ITA_1980" : [ - "KM275784" - ], - "Bovine_calicivirus__Jena" : [ - "AJ011099" - ], - "Dobrava_Belgrade_virus_DOBV_Ano_Poroia_13Af_99" : [ - "AJ410619" - ], - "Escherichia_coli_042" : [ - "NC_017627", - "NC_017626" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2011_2007" : [ - "FJ639693" - ], - "Human_immunodeficiency_virus_1__03ZAPS046MB1" : [ - "DQ369984" - ], - "Hepatitis_B_virus__pt14N" : [ - "KM875426" - ], - "Hepatitis_B_virus__053_EA_Gap" : [ - "KF873514" - ], - "Hepatitis_B_virus__I172" : [ - "FJ562297" - ], - "Swine_hepatitis_E_virus__swJ13_1" : [ - "AB097811" - ], - "Chikungunya_virus_06_027" : [ - "AM258993" - ], - "Mycobacterium_phage_Suffolk" : [ - "NC_023563" - ], - "Enterobacteria_phage_ID34" : [ - "DQ079882" - ], - "Tomato_yellow_leaf_curl_virus__SD_SG13" : [ - "KM435323" - ], - "Newcastle_disease_virus_Du_CH_LGX_298_2011" : [ - "KM885155" - ], - "Hepatitis_B_virus__HB13_1205" : [ - "AB937792" - ], - "Paspalum_striate_mosaic_virus__AU_QG3_2011" : [ - "JQ948080" - ], - "Dengue_virus_1__DENV_1_VN_BID_V943_2007" : [ - "EU482488" - ], - "Torque_teno_virus__TTV_HD23a__rheu215" : [ - "FR751500" - ], - "Tomato_yellow_leaf_curl_virus__KSQ1_3" : [ - "KC428753" - ], - "Hepatitis_B_virus__264" : [ - "JQ040143" - ], - "Hepatitis_B_virus__C28" : [ - "EU939639" - ], - "African_cassava_mosaic_virus__CF_CF147AB_07" : [ - "KJ887805" - ], - "Potato_virus_Y_strain_O_O_YO_ANT25" : [ - "JQ924285" - ], - "Goose_circovirus_yk4" : [ - "DQ192281" - ], - "Porcine_circovirus_2_HM1103" : [ - "JX948775" - ], - "Human_immunodeficiency_virus_1__06KECst_001" : [ - "FJ623487" - ], - "Cleome_leaf_crumple_virus__BR_PE_Goi1_10" : [ - "JN103437" - ], - "Parainfluenza_virus_5_SER" : [ - "JQ743328" - ], - "Brevibacillus_phage_Davies" : [ - "NC_022980" - ], - "Dengue_virus_2__DENV_2_US_BID_V1470_2001" : [ - "EU687230" - ], - "Hepatitis_B_virus__C265_15" : [ - "DQ995803" - ], - "Listeria_monocytogenes_EGD_e" : [ - "NC_003210" - ], - "Hepatitis_B_virus__F3_11" : [ - "GU815736" - ], - "Dengue_virus_3__BDH02_4" : [ - "AY496874" - ], - "Sea_otter_polyomavirus_1__6831_13" : [ - "NC_025259" - ], - "Hepatitis_B_virus__WHABS" : [ - "JN257150" - ], - "Equine_arteritis_virus__S3711" : [ - "GQ903801" - ], - "JC_polyomavirus_714A" : [ - "AF300964" - ], - "Faba_bean_necrotic_yellows_virus__Mor23" : [ - "GQ274024" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3849_2008" : [ - "GQ868614" - ], - "Hepatitis_B_virus__CX007M_e212" : [ - "KJ173344" - ], - "BK_polyomavirus_FNL_17" : [ - "AB269825" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX09_H60_2009_IE" : [ - "KC344452" - ], - "Human_immunodeficiency_virus_1__98VNND17" : [ - "FJ185236" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3355_1983" : [ - "GQ868589" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V7_2003" : [ - "EU256056" - ], - "Small_begomovirus_associated_satellite__wf_S56" : [ - "KJ859211" - ], - "Tomato_chino_La_Paz_virus__Solanum_MM4" : [ - "DQ347949" - ], - "Corynebacterium_pseudotuberculosis_Cp162" : [ - "NC_018019" - ], - "Potato_virus_Y__FZ10" : [ - "JN083842" - ], - "Hepatitis_B_virus__G225" : [ - "JQ040167" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3686_1" : [ - "KM034562" - ], - "Vibrio_phage_VP2" : [ - "NC_005879" - ], - "Norovirus_Hu_MK04_2004_JP_Hu_MK04_2004_JP" : [ - "DQ456824" - ], - "Hepatitis_B_virus__16UC" : [ - "AB493840" - ], - "Menangle_virus" : [ - "NC_007620" - ], - "Hepatitis_B_virus__6_024_8" : [ - "EU871972" - ], - "Hepatitis_B_virus_G3_27270" : [ - "AF090840" - ], - "Human_papillomavirus_type_16__Qv03545" : [ - "HQ644263" - ], - "Rift_Valley_fever_virus_Kenya_9800523" : [ - "DQ375400", - "DQ380169", - "DQ380196" - ], - "Rabies_virus_CSD0708D" : [ - "JQ970486" - ], - "Porcine_circovirus_2__n10eu" : [ - "DQ629116" - ], - "Hepatitis_B_virus__F1_8" : [ - "GU815721" - ], - "Human_immunodeficiency_virus_1__PS3002_Day385" : [ - "DQ676885" - ], - "Porcine_circovirus_2__K368_3" : [ - "EU450586" - ], - "Cyanophage_S_SSM2_S_SSM2" : [ - "JF974292" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V48_2003" : [ - "EU862841" - ], - "Hepatitis_B_virus__I83" : [ - "FJ562250" - ], - "Hepatitis_B_virus__ECO51394CWP1_4" : [ - "JQ664508" - ], - "Hepatitis_E_virus__JMY_Haw" : [ - "AB074920" - ], - "Japanese_encephalitis_virus_CC27_S8" : [ - "AY303798" - ], - "Streptococcus_intermedius_B196" : [ - "NC_022246" - ], - "Beak_and_feather_disease_virus__BFDV_T_PL_1068_2010" : [ - "JX221005" - ], - "Lactobacillus_phage_Ld3" : [ - "NC_025421" - ], - "Japanese_encephalitis_virus_KV1899" : [ - "AY316157" - ], - "Hepatitis_B_virus__KOR32LC" : [ - "GQ475336" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Aurangabad_OY165_2006___OY165" : [ - "GU111977" - ], - "JC_polyomavirus__Sam_9" : [ - "AB127344" - ], - "Dengue_virus_3__DENV_3_NI_BID_V2647_2008" : [ - "FJ873812" - ], - "African_cassava_mosaic_virus__CF_CF114AB2_07" : [ - "KJ887794" - ], - "Human_poliovirus_3_NIE1118472" : [ - "KJ170652" - ], - "Porcine_circovirus_2__XS1106" : [ - "GU325755" - ], - "African_cassava_mosaic_virus__CF_CF112AB_07" : [ - "KJ887792" - ], - "Mouse_parvovirus_4a__MPV_4a" : [ - "NC_011619" - ], - "Rotavirus_G9_MW47" : [ - "AJ250544" - ], - "Hepatitis_B_virus__cww1056" : [ - "KC774257" - ], - "Tomato_leaf_curl_Kerala_virus__ToLCV_K5" : [ - "EU910140" - ], - "Porcine_circovirus_2__HKS02_04" : [ - "DQ997815" - ], - "Turnip_mosaic_virus__OM" : [ - "AB701690" - ], - "Porcine_circovirus_2__PCV_J" : [ - "KC515027" - ], - "Human_immunodeficiency_virus_1_750820BMZ_patient_C" : [ - "KC852174" - ], - "Desulfovibrio_hydrothermalis_AM13___DSM_14728" : [ - "NC_022579", - "NC_019953", - "NC_020055", - "NC_022578" - ], - "Torque_teno_virus__T3PB" : [ - "AF247138" - ], - "Cardioderma_polyomavirus__KY336" : [ - "NC_020067" - ], - "Hepatitis_B_virus__L15_129" : [ - "EU305544" - ], - "Elusimicrobium_minutum_Pei191" : [ - "NC_010644" - ], - "Squash_leaf_curl_virus__Ismaellia" : [ - "KF030954" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1659_2007" : [ - "FJ390383" - ], - "Hepatitis_B_virus__AIDS24" : [ - "JQ801480" - ], - "Cenarchaeum_symbiosum_A" : [ - "NC_014820" - ], - "Sweet_potato_virus_G__GWB_G" : [ - "JN613805" - ], - "Dengue_virus_1__MKS_2029" : [ - "KC762640" - ], - "Bean_yellow_mosaic_virus__AR93C" : [ - "HG970865" - ], - "Equine_arteritis_virus__S4227" : [ - "GQ903802" - ], - "Dengue_virus_2__DENV_2_TW_BID_V5056_2008" : [ - "HQ891024" - ], - "Hepatitis_B_virus__0962" : [ - "AY233274" - ], - "Classical_swine_fever_virus_ALFORT" : [ - "AX191158", - "A77196" - ], - "Powassan_virus__DTVWiA08" : [ - "HM440560" - ], - "Hepatitis_B_virus__SZ16" : [ - "JF436922" - ], - "Camelpox_virus_CMS_CMS" : [ - "AY009089" - ], - "Human_immunodeficiency_virus_1__UG266" : [ - "AY352657" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2882_2006" : [ - "JF937598" - ], - "JC_polyomavirus__JCV173FLC_01" : [ - "JF424956" - ], - "Hepatitis_B_virus_494_2" : [ - "KR013938" - ], - "West_Nile_virus__Italy_2008_J_242853" : [ - "JF719065" - ], - "Banana_streak_GF_virus_Goldfinger" : [ - "NC_007002" - ], - "Enterovirus_A71_TW_2639_04" : [ - "GQ231928" - ], - "Colwellia_phage_9A_9A" : [ - "NC_018088" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P3pp16" : [ - "FJ882939" - ], - "Hepatitis_B_virus__F_4" : [ - "KF373036" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_Asia1_WHN_CHA_06" : [ - "FJ906802" - ], - "Hepatitis_B_virus__TCGA5889" : [ - "HM146131" - ], - "Porcine_circovirus_2__HJGP11" : [ - "KJ680351" - ], - "Porcine_circovirus_2_SA1" : [ - "AY325495" - ], - "Beak_and_feather_disease_virus__11_1212_QE3_GGC_NSW" : [ - "KF499140" - ], - "Lactococcus_phage_bIL285" : [ - "NC_002666" - ], - "Human_adenovirus_37__GW" : [ - "AB448775" - ], - "Carrot_red_leaf_luteovirus_associated_RNA_California" : [ - "NC_003871" - ], - "Streptococcus_pneumoniae_OXC141" : [ - "NC_017592" - ], - "Coxsackievirus_A16__HN09_02" : [ - "KF193624" - ], - "Simian_immunodeficiency_virus_SIVCPZ_CAM5" : [ - "AJ271369" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V242_2001" : [ - "EU482854" - ], - "Tomato_yellow_leaf_curl_Mali_virus_Mali_Cameroon_Gashiga_Tomato1_2007" : [ - "FM212662" - ], - "Human_papillomavirus_type_6__10" : [ - "HG793818" - ], - "Porcine_parvovirus_NADL_2_M13" : [ - "KF913349" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLE6163_2009" : [ - "KJ672564" - ], - "Dengue_virus_1__DENV_1_VN_BID_V817_2006" : [ - "EU482811" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_8_2011" : [ - "KJ686169" - ], - "Duck_adenovirus_1__FJ12025" : [ - "KF286430" - ], - "Rice_yellow_mottle_virus__Ch28" : [ - "FN432837" - ], - "Trichomonas_vaginalis_virus_2_TVV2_OC3" : [ - "HQ607518" - ], - "Prochlorococcus_phage_MED4_184_MED4_184" : [ - "NC_020847" - ], - "GB_virus_C_HGV_Iw_pHGVqz" : [ - "AF081782" - ], - "Melon_chlorotic_mosaic_virus__VE01_09" : [ - "KF670610", - "KF670611" - ], - "Dengue_virus_2_ThD2_0284_90" : [ - "DQ181801" - ], - "Salmonella_phage_Vi06" : [ - "NC_015271" - ], - "Hepatitis_B_virus__GD21_2008" : [ - "HQ603062" - ], - "Hepatitis_B_virus_Fukuoka_Red_Cross_HBV_e_negative_1992_Plasma_1992_085_9434" : [ - "D28880" - ], - "Sewage_associated_circular_DNA_molecule_3__NZ_BS2940_2012" : [ - "NC_026143" - ], - "Tomato_yellow_leaf_curl_Malaga_virus__H6" : [ - "LN846612" - ], - "Human_rhinovirus_A81_ATCC_VR_1191" : [ - "FJ445157" - ], - "Human_papillomavirus_type_16__JPD002" : [ - "AB889492" - ], - "Hepatitis_B_virus__MOD_4573" : [ - "GQ183455" - ], - "Human_papillomavirus_type_6__66" : [ - "HG793874" - ], - "Human_mastadenovirus_D__870006C_Hiroshima_1987" : [ - "AB605240" - ], - "Hepatitis_B_virus_021" : [ - "AB900105" - ], - "Hepatitis_B_virus__P16" : [ - "EU859924", - "JX898690", - "GQ477468" - ], - "Hepatitis_E_virus__JBOAR107_Mie11" : [ - "AB780451" - ], - "Human_rhinovirus_A76" : [ - "DQ473502" - ], - "Hepatitis_C_virus_subtype_1b__No__27" : [ - "AB154202" - ], - "Murray_Valley_encephalitis_virus__MVE_1_51_D10" : [ - "KC852191" - ], - "Hepatitis_C_virus_subtype_1b_MD8_1" : [ - "AF165059" - ], - "Tobacco_curly_shoot_virus__WSF1" : [ - "HQ407395" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1339" : [ - "KR534550" - ], - "Pseudomonas_phage_tf" : [ - "NC_017971" - ], - "Potato_black_ringspot_virus__PBRSV_A8__CIP_204085" : [ - "KC832891" - ], - "Human_parainfluenza_virus_1_HPIV1_USA_629_D02161_2009" : [ - "KF687308" - ], - "West_Nile_virus__WNV_1_US_BID_V7398_2009" : [ - "KJ501110" - ], - "Human_bocavirus_3__46_BJ07" : [ - "HM132056" - ], - "Hepatitis_B_virus__ggcam7" : [ - "FJ798096" - ], - "Pestivirus_reindeer_1_V60_Krefeld__reindeer_1_V60_Krefeld" : [ - "AF144618" - ], - "Bean_golden_mosaic_virus__BR_Unp_05" : [ - "KJ939721" - ], - "Mycobacterium_phage_Turbido_Turbido" : [ - "NC_023707" - ], - "Hepatitis_B_virus__B6" : [ - "FJ904427" - ], - "Human_mastadenovirus_B_human_CHN_Ad4_2007_NEW_P3H3F7" : [ - "KF268311" - ], - "Dengue_virus_3__DENV_3_KH_BID_V4292_2007" : [ - "KF955507" - ], - "Lindernia_anagallis_yellow_vein_virus" : [ - "AY795900", - "NC_009550" - ], - "Porcine_circovirus_2_HBsy_21" : [ - "FJ870972" - ], - "Merkel_cell_polyomavirus__HF" : [ - "JF813003" - ], - "Rabies_virus_SAD_Bern_original_var_1" : [ - "EF206710" - ], - "West_Nile_virus__WNV_1_US_BID_V6699_2002" : [ - "KJ501427" - ], - "Vibrio_phage_H2" : [ - "KM612262" - ], - "Hepatitis_B_virus__24233" : [ - "AY934766" - ], - "Porcine_circovirus_2__SY4" : [ - "GU325754" - ], - "Listeria_monocytogenes_SLCC2540" : [ - "NC_018586" - ], - "Human_immunodeficiency_virus_1__03ZAPS151MB1" : [ - "DQ396392" - ], - "Squash_leaf_curl_China_virus__KP1" : [ - "KF188433" - ], - "Japanese_encephalitis_virus_GB30" : [ - "FJ185037" - ], - "Beak_and_feather_disease_virus__BFDV_B_D_PL_479_2007" : [ - "JX221025" - ], - "Brucella_abortus_S19" : [ - "NC_010740", - "NC_010742" - ], - "Enterovirus_B81_USA_CA68_10389" : [ - "AY843299" - ], - "Human_immunodeficiency_virus_1__11MY1ZK731" : [ - "KC522032" - ], - "Hepatitis_B_virus__2255" : [ - "FJ386628" - ], - "Goose_circovirus_xs1" : [ - "DQ192282" - ], - "Human_parechovirus_1__BNI_788St" : [ - "EF051629" - ], - "Human_immunodeficiency_virus_1__04013226_2_flC1" : [ - "FJ496075" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_FF4_After" : [ - "EF532809" - ], - "Human_papillomavirus_type_31__HQV06582" : [ - "HQ537677" - ], - "Hepatitis_B_virus__HBV26" : [ - "KC875261" - ], - "Human_adenovirus_21" : [ - "KF528688" - ], - "Cucumber_mosaic_virus_satellite_RNA_PoSA1" : [ - "AB448699" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_55_2013" : [ - "KJ672428" - ], - "SARS_coronavirus_MA15_MA15_P3pp5" : [ - "FJ882961" - ], - "West_Nile_virus__101_5_06_Uu" : [ - "FJ159129" - ], - "Mycobacterium_tuberculosis_Beijing_NITR203" : [ - "NC_021054" - ], - "Maize_streak_virus__MSV_A4_Za_RosB_g142_2006" : [ - "EU628574" - ], - "Human_rotavirus_A_CC425__P3_9__G3" : [ - "AJ311738" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2662_2000" : [ - "FJ850119" - ], - "Tomato_leaf_curl_Kerala_virus__ToLCV_K3" : [ - "NC_011135" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2596_2006" : [ - "HQ541786" - ], - "Hepatitis_B_virus__SHB817" : [ - "KJ598776" - ], - "Hepatitis_B_virus__bww1062" : [ - "KC774381" - ], - "Carrot_red_leaf_virus_UK_1" : [ - "NC_006265" - ], - "Rabbit_hemorrhagic_disease_virus_Eisenhuttenstadt" : [ - "EF558578" - ], - "Pieris_rapae_granulovirus__Wuhan" : [ - "NC_013797" - ], - "Hepatitis_B_virus__A5_50018" : [ - "FJ692598" - ], - "Lettuce_infectious_yellows_virus__92" : [ - "NC_003617", - "NC_003618" - ], - "Western_equine_encephalitis_virus_PV02808A" : [ - "KJ554977" - ], - "Citrus_leprosis_virus_nuclear_type__M2345" : [ - "KF209276", - "KF209275" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8797_2010" : [ - "KJ627287" - ], - "Cucumber_mosaic_virus_Rb" : [ - "GU327363", - "GU327365", - "GU327364" - ], - "Bean_golden_mosaic_virus__BR_Par7_12" : [ - "KJ939802" - ], - "Shallot_virus_X_Russian" : [ - "JX310755" - ], - "Human_rotavirus_A_Wa_variant_Wag7_8re" : [ - "FJ423140", - "FJ423137", - "FJ423136", - "FJ423143", - "FJ423139", - "FJ423145", - "FJ423144", - "FJ423135", - "FJ423138", - "FJ423141", - "FJ423142" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141650" : [ - "KR653225" - ], - "Hepatitis_B_virus__31228" : [ - "AJ627222" - ], - "Tomato_yellow_leaf_curl_virus__TYLCV_IL_JO_Ju_08" : [ - "GQ861426" - ], - "Mirabilis_mosaic_virus" : [ - "NC_004036" - ], - "Porcine_circovirus_2_LG" : [ - "HM038034" - ], - "Beet_cryptic_virus_1" : [ - "NC_011557", - "NC_011556" - ], - "Cotton_leaf_curl_virus_betasatellite__Mohanpura_Rajasthan" : [ - "HM146307" - ], - "Hepatitis_C_virus_subtype_2k__HCV_2k_GB_BID_G1242" : [ - "JX227953" - ], - "Border_disease_virus_Gifhorn" : [ - "GQ902940", - "KF925348" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_CA_2" : [ - "KF555450" - ], - "Vibrio_phage_ICP1_2005_A" : [ - "HQ641352" - ], - "Sendai_virus_Hamamatsu" : [ - "AB065186", - "AB065187", - "AB065189", - "AB065188" - ], - "Cotton_leaf_curl_Multan_betasatellite__GX88" : [ - "KC171655" - ], - "Salinispora_arenicola_CNS_205" : [ - "NC_009953" - ], - "Pigeon_picornavirus_B_03_641" : [ - "NC_015626" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7052_2007" : [ - "KJ189269" - ], - "Cucumber_green_mottle_mosaic_virus__hn" : [ - "KC851866" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3826_2007" : [ - "GU131912" - ], - "Tomato_yellow_leaf_curl_virus__KSCTo4" : [ - "JX456637" - ], - "Human_papillomavirus_type_58__BF077" : [ - "HQ537761" - ], - "Porcine_circovirus_2_ii9f" : [ - "EU909688" - ], - "Porcine_parvovirus_6__BJ2" : [ - "KF999682" - ], - "Human_parainfluenza_virus_3_HPIV3_FRA_27273076_2007" : [ - "KF530253" - ], - "Bombyx_mori_Macula_like_virus_SZ" : [ - "KJ433990" - ], - "Human_immunodeficiency_virus_1__MERLBDTRC4" : [ - "JN860763" - ], - "Potato_yellow_mosaic_virus_Trinidad_Grenada_Paradise_2007" : [ - "FR851302", - "FR851299" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_D614" : [ - "JX503072" - ], - "Rabies_virus_SAD_B19_1st" : [ - "EU877068", - "EU877069" - ], - "FTLS_virus__YSHX002" : [ - "KF356551", - "KF356540", - "KF356528" - ], - "Tomato_yellow_leaf_curl_virus_HNPY" : [ - "JQ004050" - ], - "Human_herpesvirus_5_BE_24_2011" : [ - "KP745711" - ], - "Tomato_yellow_leaf_curl_virus___Il_IL_11" : [ - "LN846613" - ], - "African_cassava_mosaic_virus__MG_MG3A13_05" : [ - "KJ887822" - ], - "Caprine_arthritis_encephalitis_virus__Fonni" : [ - "JF502416" - ], - "Hepatitis_B_virus__C_F155PF_2004" : [ - "HQ700495" - ], - "Hepatitis_B_virus__patient_700" : [ - "DQ993687" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3748_2008" : [ - "GU131983" - ], - "Hepatitis_B_virus__FH14_2" : [ - "AF461360" - ], - "Shewanella_MR_7" : [ - "NC_008322", - "NC_008320" - ], - "Human_respiratory_syncytial_virus__02_000110" : [ - "JQ901453" - ], - "Hepatitis_B_virus__I_T42" : [ - "GU456682" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9448_2013" : [ - "KJ643520" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Culex_spp__MEX_63A216_1963_IE" : [ - "KC344457" - ], - "Dengue_virus_2__DC649Y12" : [ - "KM279544" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00580_2011" : [ - "KJ672535" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir9_T7P_Cuc_07" : [ - "FJ660435" - ], - "Norovirus_Hu_GII_4_Niigata3_2007_JP_Hu_GII_4_Niigata3_2007_JP" : [ - "AB541313" - ], - "Dengue_virus_2__DENV_2_US_BID_V1495_2004" : [ - "EU687243" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0052" : [ - "KP759720" - ], - "Dengue_virus_4__DENV_4_VE_BID_V1155_2007" : [ - "GQ868644" - ], - "Dengue_virus_1__DENV_1_PR_BID_V8188_2010" : [ - "KJ189367" - ], - "Porcine_circovirus_2__Abort_2006_DK" : [ - "FJ935780" - ], - "Norovirus_Hu_GII_4_CGMH10_2006_TW" : [ - "JN400608" - ], - "Shewanella_baltica_OS155" : [ - "NC_009036", - "NC_009035", - "NC_009037", - "NC_009052", - "NC_009038" - ], - "Tobacco_ringspot_virus__SK" : [ - "KJ556850", - "KJ556849" - ], - "Hepatitis_B_virus__P03" : [ - "EU859916" - ], - "South_African_cassava_mosaic_virus__MG_MG41A7_06" : [ - "KJ887646" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1764_2007" : [ - "FJ744703" - ], - "Hepatitis_B_virus__HBV197" : [ - "KJ647350" - ], - "Tomato_necrotic_stunt_virus__MX5" : [ - "JX846918" - ], - "Hepatitis_B_virus__MK129_EP_CHB" : [ - "KM524348" - ], - "Thermobaculum_terrenum_ATCC_BAA_798" : [ - "NC_013526", - "NC_013525" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P45" : [ - "FJ548851" - ], - "Hepatitis_B_virus__clz1026" : [ - "KC774186" - ], - "Human_enterovirus_C102_BAN99_10424" : [ - "EF555645" - ], - "Avian_orthoreovirus__GuangxiR1" : [ - "KC183748" - ], - "Human_adenovirus_36" : [ - "GQ384080" - ], - "Norovirus_Hu_GII_4_Kumamoto1_2006_JP_Hu_GII_4_Kumamoto1_2006_JP" : [ - "AB447459" - ], - "Human_immunodeficiency_virus_1__CAP88_5w_F2" : [ - "GQ999980" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9393_2013" : [ - "KJ643481" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V282_2004" : [ - "EU155362" - ], - "Rabbit_hemorrhagic_disease_virus_FRG" : [ - "NC_001543" - ], - "Human_mastadenovirus_B_human_DEU_HEIM_00097_1988_NEW_P16H3F16" : [ - "KF268315" - ], - "Human_immunodeficiency_virus_1__98BWMO14_10" : [ - "AF443079" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1342" : [ - "KR534552" - ], - "Bhanja_virus_ibAr2709" : [ - "NC_027141", - "NC_027140", - "NC_027142" - ], - "Dehalococcoides_GT" : [ - "NC_013890" - ], - "Potato_virus_Y__ShX14" : [ - "KJ634024" - ], - "Pea_streak_virus__VRS_541" : [ - "NC_027527" - ], - "Porcine_circovirus_2_BJ0503" : [ - "EF524527" - ], - "Bordetella_pertussis_CS" : [ - "NC_017223" - ], - "Chikungunya_virus_0706aTw" : [ - "FJ807897" - ], - "West_Nile_virus__WNV_1_US_BID_V6558_2002" : [ - "KJ501355" - ], - "Hepatitis_B_virus__Occult_HK4777" : [ - "KJ410516" - ], - "Mumps_virus_strain_Jeryl_Lynn_Jeryl_Lynn" : [ - "AF338106", - "AF345290" - ], - "BK_polyomavirus_FUJ_32" : [ - "AB269828" - ], - "Rice_black_streaked_dwarf_virus__HB_wheat" : [ - "KC134292", - "KC134296", - "KC134297", - "KC134290", - "KC134293", - "KC134291", - "KC134295", - "KC134298", - "KC134289", - "KC134294" - ], - "SARS_coronavirus_Sin3765V" : [ - "AY559084" - ], - "Hepatitis_B_virus__HBV_Mala35" : [ - "AB076679" - ], - "Pseudomonas_mendocina_ymp" : [ - "NC_009439" - ], - "Hepatitis_B_virus__No14" : [ - "AB697497" - ], - "African_cassava_mosaic_virus__MG_MG58A3_06" : [ - "KJ887877" - ], - "Human_adenovirus_55__CQ_2903" : [ - "JX123029" - ], - "Helicobacter_pylori_SouthAfrica20" : [ - "NC_022130" - ], - "Cestrum_yellow_leaf_curling_virus" : [ - "NC_004324" - ], - "Classical_swine_fever_virus__CSFV_PK15C_NG79_11" : [ - "KC503764" - ], - "Mycobacterium_phage_Che8" : [ - "NC_004680" - ], - "Human_immunodeficiency_virus_1__05CNHB_hp3" : [ - "DQ990880" - ], - "Porcine_stool_associated_circular_virus_6__XP1" : [ - "NC_024776" - ], - "Tomato_spotted_wilt_virus__TSWV_16" : [ - "KC261969", - "KC261970", - "KC261968" - ], - "Bat_picornavirus_3_TLC21F" : [ - "HQ595345" - ], - "Hepatitis_B_virus__Occult_HK9" : [ - "KJ410521" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_G2_6" : [ - "LN846599" - ], - "Culex_flavivirus__Iowa07" : [ - "FJ663034" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC28AK1_2009" : [ - "JF909103" - ], - "Peste_des_petits_ruminants_virus_Ghana_NK1_2010" : [ - "KJ466104" - ], - "Potato_virus_Y__IUNG_14" : [ - "JF927762" - ], - "Hepatitis_B_virus_1130_22a" : [ - "KR014003" - ], - "Dengue_virus_2__9479_BR_PE_10" : [ - "JX669479" - ], - "Ageratum_yellow_vein_Hualian_virus_Taiwan_Hsinchu_tom_2003_FHS7A2" : [ - "NC_010812" - ], - "Finch_circovirus" : [ - "NC_008522" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1796_2007" : [ - "FJ859028" - ], - "Human_parechovirus_5_CH_ZJ1" : [ - "JX050181" - ], - "Hepatitis_B_virus__P3" : [ - "GQ477461" - ], - "Tomato_leaf_curl_Sudan_virus__Mir2" : [ - "JN591386" - ], - "TT_virus_sle2057" : [ - "AM712030" - ], - "Tomato_mosaic_virus_camellia" : [ - "AJ417701" - ], - "Pepper_mild_mottle_virus__PMMoV_CN" : [ - "AY859497" - ], - "Tomato_leaf_curl_Mali_virus" : [ - "NC_005348" - ], - "Mumps_virus_strain_Jeryl_Lynn_JL2" : [ - "FN431985" - ], - "Dengue_virus_1_KD90_157" : [ - "JN638337" - ], - "Hepatitis_B_virus__S1732_1" : [ - "FJ787472" - ], - "Tomato_chlorosis_virus__JN1" : [ - "KP114536", - "KP114531" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V301_2005" : [ - "EU155371" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLA4809_2008_A" : [ - "KJ627383" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Tsai" : [ - "KP998423" - ], - "Hepatitis_B_virus__MY846440" : [ - "KJ803786" - ], - "Sugarcane_yellow_leaf_virus__REU_YL1a" : [ - "AM072754" - ], - "Synechococcus_phage_S_ShM2_8102_4" : [ - "NC_015281" - ], - "Yak_astrovirus__S8" : [ - "KM822593" - ], - "Candidatus_Kinetoplastibacterium_oncopeltii_TCC290E" : [ - "NC_020299" - ], - "Human_immunodeficiency_virus_1__NY5" : [ - "HIVNY5CG" - ], - "Small_anellovirus_1" : [ - "NC_007013" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_1__AHEaCV_1_NZ_2981C1_2012" : [ - "NC_026650" - ], - "Human_papillomavirus_type_16__BF325" : [ - "HQ644240" - ], - "West_Nile_virus__WNV_1_US_BID_V6499_2003" : [ - "KJ501488" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1650_2007" : [ - "FJ373298" - ], - "Sulfuricurvum_kujiense_DSM_16994" : [ - "NC_014756", - "NC_014754", - "NC_014763", - "NC_014762", - "NC_014755" - ], - "Hepatitis_B_virus__A5_50035" : [ - "FJ692601" - ], - "Toscana_virus_TOSV_Siena_ITA_1995" : [ - "KM275778" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_15F" : [ - "KM609208" - ], - "Macroptilium_yellow_vein_virus__BR_Pai18_11" : [ - "KJ939898" - ], - "West_Nile_virus_FLO3_FL2_3_FL2_3" : [ - "DQ983578" - ], - "Norovirus_Hu_GII_4_Iwate2_2007_JP_Hu_GII_4_Iwate2_2007_JP" : [ - "AB541270" - ], - "Cowpox_virus_HumGra07_1" : [ - "KC813510" - ], - "Dengue_virus_3__InJ_16_82" : [ - "DQ401690" - ], - "Guanarito_mammarenavirus_VHF_1750" : [ - "AY572559" - ], - "Human_immunodeficiency_virus_1__PS1038_Day174" : [ - "DQ676871" - ], - "Halovirus_HVTV_1" : [ - "NC_020158" - ], - "Hepatitis_B_virus__HB14_0383" : [ - "AB937798" - ], - "Bovine_papillomavirus_type_11" : [ - "AB543507" - ], - "Murine_norovirus_GV_WU24_2005_USA__Mu_NoV_GV_WU24_2005_USA" : [ - "EU004669" - ], - "Dengue_virus_1__DENV_1_NI_BID_V629_2005" : [ - "FJ024485" - ], - "Human_mastadenovirus_D__human_DEU_Leipzig_2014_70_P70H70F29" : [ - "KP641339" - ], - "Hepatitis_B_virus__ABI_212" : [ - "AB091256" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2913_2006" : [ - "GQ199856" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5019_1" : [ - "KR105294" - ], - "Newcastle_disease_virus__Chicken_China_Beijing_01_2009" : [ - "KC542902" - ], - "Geobacillus_WCH70" : [ - "NC_012794", - "NC_012793", - "NC_012790" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ29BE2_2009" : [ - "JF909076" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3844_2008" : [ - "GU131682" - ], - "Infectious_hematopoietic_necrosis_virus__220_90" : [ - "GQ413939" - ], - "Chikungunya_virus_SH_3013" : [ - "HM045816" - ], - "Newcastle_disease_virus__Muscovy_duck_China_Fujian__FP1_02" : [ - "FJ872531" - ], - "Hepatitis_B_virus__HBV_VH133" : [ - "AB100695" - ], - "South_African_cassava_mosaic_virus__MG_MG403A6_11" : [ - "KJ887712" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Flagship_After" : [ - "EF532804" - ], - "Hepatitis_B_virus__S1371_5" : [ - "FJ787465" - ], - "WU_Polyomavirus__HB033" : [ - "KC571693" - ], - "Hepatitis_B_virus__CHIMP_MAK" : [ - "AM117395" - ], - "Human_poliovirus_3_NIE1218546" : [ - "KJ170626" - ], - "Staphylococcus_phage_StauST398_1" : [ - "NC_021326" - ], - "Erwinia_phage_ENT90" : [ - "NC_019932" - ], - "Feline_immunodeficiency_virus__YF125" : [ - "EF455612" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1989_20_1" : [ - "Z75876" - ], - "Hepatitis_B_virus__bur1014" : [ - "KC774370" - ], - "Duck_hepatitis_A_virus_3__AP_03337" : [ - "DQ256132" - ], - "Variola_virus_India_1967__ssp__major_Ind3" : [ - "NC_001611" - ], - "Porcine_circovirus_2__Han14" : [ - "JQ181597" - ], - "Hepatitis_B_virus__S734_1" : [ - "FJ032349" - ], - "Human_poliovirus_3_NIE1018481" : [ - "KJ170580" - ], - "West_Nile_virus__WNV_1_US_BID_V7430_2011" : [ - "KJ501140" - ], - "Bombyx_mori_nucleopolyhedrovirus__T3" : [ - "NC_001962" - ], - "Hepatitis_B_virus__KOR25LC" : [ - "GQ475329" - ], - "Hepatitis_B_virus__8327_13282" : [ - "JN792919" - ], - "Hepatitis_B_virus_HB151" : [ - "HM011486" - ], - "Hepatitis_B_virus__CH926" : [ - "AF222323" - ], - "Lymphocytic_choriomeningitis_mammarenavirus__Y" : [ - "DQ118959" - ], - "Rice_stripe_virus__YLFe10" : [ - "KP083241", - "KP083234" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0070" : [ - "KP759735" - ], - "Staphylococcus_phage_Ipla7" : [ - "NC_018284" - ], - "Tomato_yellow_leaf_curl_virus___Mild__Reunion" : [ - "AJ865337" - ], - "Crimean_Congo_hemorrhagic_fever_virus__SPU_45_88" : [ - "KJ682809", - "KJ682796", - "KJ682819" - ], - "Lactococcus_phage_jm2" : [ - "NC_021860" - ], - "Sweet_potato_leaf_curl_virus__RS1__BR_Tav1" : [ - "FJ969833" - ], - "Hepatitis_B_virus__dww1112" : [ - "KC774460" - ], - "Vaccinia_virus_LC16m8" : [ - "AY678275" - ], - "Human_immunodeficiency_virus_1__D31" : [ - "HIVU43096" - ], - "Saffold_virus__SAFV_3_NL1999_590" : [ - "HM181996" - ], - "Hepatitis_B_virus__CX_2" : [ - "FJ787475" - ], - "Propionibacterium_phage_P1_1" : [ - "NC_018842" - ], - "Hepatitis_delta_virus_Miyako_JA_M31" : [ - "AB118841" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO21AD3_2009" : [ - "JF909226" - ], - "Duck_circovirus__FujianZQ300" : [ - "GQ423740" - ], - "Middle_East_respiratory_syndrome_coronavirus__Bisha_1_2012" : [ - "KF600620" - ], - "Tomato_leaf_curl_New_Delhi_virus__potato___H_SJ_2" : [ - "KC874502", - "KC874494" - ], - "Hepatitis_B_virus__G2_11" : [ - "GU815761" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLI1305_2010_A" : [ - "KJ627396" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LGD_111239" : [ - "JQ804522" - ], - "Rice_stripe_virus__YCXi8" : [ - "KP083247", - "KP083239" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143648" : [ - "KR653253" - ], - "Hepatitis_B_virus__CAE168" : [ - "AM180624" - ], - "Methylobacterium_chloromethanicum_CM4" : [ - "NC_011758", - "NC_011757", - "NC_011760" - ], - "Mungbean_yellow_mosaic_India_virus__SoybeanTN" : [ - "AJ416349", - "AJ420331" - ], - "Human_T_lymphotropic_virus_1__ATL_YS" : [ - "HTU19949" - ], - "Human_papillomavirus_type_44" : [ - "HPU31788" - ], - "Human_immunodeficiency_virus_1__ZM247F_flG11" : [ - "FJ496205" - ], - "Broad_bean_wilt_virus_2__Am" : [ - "KC110085", - "JX575182" - ], - "Trichoplusia_ni_single_nucleopolyhedrovirus" : [ - "NC_007383" - ], - "East_African_cassava_mosaic_Cameroon_virus_Ghana__EACMCV" : [ - "JN165087", - "JN165089" - ], - "Parainfluenza_virus_5_MEL" : [ - "JQ743325" - ], - "Hepatitis_C_virus_subtype_1a__03_32_P2_5_14_04" : [ - "EF032884" - ], - "Hepatitis_B_virus__KOR21LC" : [ - "GQ475325" - ], - "Hepatitis_B_virus_P342" : [ - "KJ586811" - ], - "Dengue_virus_3__DENV_3_US_BID_V2117_2001" : [ - "FJ547081" - ], - "Streptococcus_dysgalactiae_equisimilis_167" : [ - "NC_022532" - ], - "Leek_yellow_stripe_virus__W_Ku" : [ - "AB194622" - ], - "Dengue_virus_2__DENV_2_VN_BID_V755_2005" : [ - "EU482777" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__0409" : [ - "KF444093" - ], - "BK_polyomavirus__GBR_4" : [ - "AB263921" - ], - "Tomato_leaf_curl_New_Delhi_virus__potato___MOD_21" : [ - "KC874500", - "KC874508" - ], - "Chicken_anemia_virus__cloned_isolate_10" : [ - "CAU66304" - ], - "Dengue_virus_1__DENV_1_VN_BID_V951_2007" : [ - "EU482496" - ], - "Hepatitis_B_virus__WHAMF" : [ - "JN257148" - ], - "Pseudomonas_phage_JBD5" : [ - "NC_020202" - ], - "Canine_parvovirus_2a__UY245" : [ - "KM457132" - ], - "Dengue_virus_2__DENV_2_US_BID_V1383_1996" : [ - "EU569710" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD235_2013" : [ - "KM229875" - ], - "Avian_orthoreovirus_Reo_PA_Turkey_22342_13" : [ - "KP173685", - "KP173690", - "KP173687", - "KP173686", - "KP173688", - "KP173692", - "KP173691", - "KP173684", - "KP173683" - ], - "Hepatitis_B_virus__J185" : [ - "GQ377614" - ], - "Porcine_circovirus_2_TJ1211" : [ - "KC533811" - ], - "Canine_distemper_virus__CDV_RD_JL" : [ - "KJ848781" - ], - "Avian_orthoreovirus__T_98" : [ - "EU616739", - "EU616738", - "EU616742", - "EU616743", - "EU616736", - "EF057398" - ], - "Human_immunodeficiency_virus_1__BREPM11871" : [ - "DQ085867" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4936_spleen" : [ - "HQ705663" - ], - "Sida_golden_mosaic_Honduras_virus_Honduras" : [ - "NC_004660", - "NC_004659" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_MRP_14_1195_001" : [ - "KJ866054" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3926_2" : [ - "KR105208" - ], - "Hepatitis_B_virus__SHB113" : [ - "KJ598641" - ], - "Tobacco_ringspot_virus_Aeonium" : [ - "JX304792" - ], - "Avian_infectious_bronchitis_virus__strain_Beaudette_CK__Beaudette_CK" : [ - "AJ311317" - ], - "Hepatitis_B_virus__919017" : [ - "JN040777" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4071_2008" : [ - "GU131820" - ], - "Southern_rice_black_streaked_dwarf_virus__Thai_Binh2" : [ - "KM454855" - ], - "Hepatitis_B_virus__A1_12" : [ - "GU815559" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2282_2001" : [ - "FJ687438" - ], - "Pseudomonas_phage_vB_PaeM_PAO1_Ab04_Ab04" : [ - "LN610581" - ], - "Human_papillomavirus_type_6__52" : [ - "HG793860" - ], - "West_Nile_virus__WNV_1_Gallus_BID_V4963_kidney" : [ - "HQ671694" - ], - "Ageratum_yellow_vein_virus_Guam_13_60" : [ - "KR094066" - ], - "East_African_cassava_mosaic_virus_Uganda2__Uganda_variant___Uganda" : [ - "Z83257" - ], - "Zetapapillomavirus_1" : [ - "AF394740" - ], - "Enterobacteria_phage_IME08" : [ - "NC_014260" - ], - "Streptococcus_I_P16" : [ - "NC_022582" - ], - "Norovirus_Hu_GII_20344_2009_VNM_Hu_GII_20344_2009_VNM" : [ - "KC409290" - ], - "Mungbean_yellow_mosaic_India_virus__Cowpea" : [ - "AF481865", - "AF503580" - ], - "Hepatitis_B_virus_subtype_adr__HBV_115" : [ - "AB176642" - ], - "Simian_immunodeficiency_virus_SIVcpz" : [ - "AF115393" - ], - "Synechococcus_phage_S_SSM4_S_SSM4" : [ - "NC_020875" - ], - "Acinetobacter_oleivorans_DR1" : [ - "NC_014259" - ], - "BK_polyomavirus__SHA_25" : [ - "AB365166" - ], - "Bluetongue_virus_9__W20" : [ - "JF443157" - ], - "Temperate_fruit_decay_associated_virus__MFBpe35d" : [ - "KR134345" - ], - "Little_cherry_virus_2__USA6b" : [ - "NC_005065" - ], - "Lelystad_virus" : [ - "LEYPOLYENV" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1933_2008" : [ - "KF955460" - ], - "Apple_mosaic_virus__Negret_7" : [ - "HG328282" - ], - "Human_immunodeficiency_virus_1__04013396_0_flF4" : [ - "FJ496083" - ], - "Rabbit_hemorrhagic_disease_virus_NZ61" : [ - "EF558580" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4246_2007" : [ - "HM181946" - ], - "West_Nile_virus__WNV_1_BID_V5047" : [ - "JN819319" - ], - "Human_herpesvirus_3_VZVi_Weimar_GER_45_07_V_1__1883_2007" : [ - "JN704694" - ], - "Bluetongue_virus_8_NET2006_04" : [ - "JX680450" - ], - "Spirochaeta_Buddy" : [ - "NC_015152" - ], - "Human_papillomavirus_type_129" : [ - "NC_014953" - ], - "Calothrix_PCC_6303" : [ - "NC_019752", - "NC_019727", - "NC_019728", - "NC_019751" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_62_2012" : [ - "KJ686302" - ], - "Sandfly_fever_Sicilian_virus_Cyprus" : [ - "GU119908" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3818" : [ - "KM233092" - ], - "Dengue_virus_4__DENV_4_US_BID_V2435_1996" : [ - "GQ199881" - ], - "Dengue_virus_2__MKS_0071" : [ - "KC762669" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dar_Beta_2" : [ - "EU384604" - ], - "Hepatitis_B_virus__CX025C_e234" : [ - "KJ173351" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Fazilka_2009" : [ - "JF502379" - ], - "Hepatitis_B_virus__SLC128" : [ - "KJ598761" - ], - "JC_polyomavirus__IT_2" : [ - "AB074582" - ], - "Dengue_virus_3__98TW368" : [ - "DQ675525" - ], - "Hepatitis_B_virus_497_10" : [ - "KR013944" - ], - "Mammalian_orthoreovirus__HB_A" : [ - "KC462150", - "KC462154", - "KC462149", - "KC462152", - "KC462158", - "KC462157", - "KC462151", - "KC462153" - ], - "Hepatitis_B_virus__L15_196" : [ - "EU305545" - ], - "Broad_bean_wilt_virus_2__RP5" : [ - "JX183230", - "JX183229" - ], - "Human_parainfluenza_virus_1_HPIV1_ZAF_879_2010" : [ - "KF687311" - ], - "Human_immunodeficiency_virus_1__DR1777" : [ - "AB604948" - ], - "Human_immunodeficiency_virus_1_subtype_A_UG031" : [ - "AB098330", - "AB098331" - ], - "Burkholderia_phage_Bcep781" : [ - "NC_004333" - ], - "Tomato_yellow_leaf_curl_virus___Il__CN_SH_Cowpea_08" : [ - "GU434143" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P170" : [ - "JQ804986" - ], - "Tomato_leaf_deformation_virus__EA_LE3_5K" : [ - "NC_019032" - ], - "Hepatitis_B_virus__M84_146" : [ - "EU330990" - ], - "Homalodisca_vitripennis_reovirus__Riverside14" : [ - "GU437842" - ], - "Columbid_circovirus__AHBZ" : [ - "KJ704801" - ], - "Streptococcus_pyogenes_MGAS2096" : [ - "NC_008023" - ], - "KI_polyomavirus_Stockholm_350__Stockholm_350" : [ - "EF127907" - ], - "Infectious_bronchitis_virus_ck_CH_LZJ_111113" : [ - "JX195176" - ], - "Bluetongue_virus__BT3_2230" : [ - "AY426600" - ], - "Hepatitis_B_virus__Ag04" : [ - "KJ843166" - ], - "Canine_parvovirus_2a__UY364" : [ - "KM457143" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_28_2011" : [ - "KJ686227" - ], - "Hepatitis_B_virus_06_44" : [ - "AB480040" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V249_2002" : [ - "EU482855" - ], - "Cyclovirus_VN__hcf3" : [ - "KF031467" - ], - "Cucumber_mosaic_virus_243" : [ - "AJ585521" - ], - "Dengue_virus_1__DENV_1_VN_BID_V971_2007" : [ - "FJ461303" - ], - "Rotavirus_C_Javeriana" : [ - "AJ549087" - ], - "Hepatitis_B_virus__TZ087" : [ - "FR714502" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2252_2005" : [ - "JN819412" - ], - "Alfalfa_mosaic_virus_Kr" : [ - "AB126032" - ], - "Human_immunodeficiency_virus_1__C_ZA_2004MB" : [ - "AY463235" - ], - "Chicken_anemia_virus__18" : [ - "KJ728827" - ], - "Cherry_leaf_roll_virus__739" : [ - "KC937026", - "KC937020" - ], - "Squash_yellow_mild_mottle_virus__4B" : [ - "KC153491" - ], - "Dengue_virus_2__DENV_2_US_BID_V687_1989" : [ - "EU482744" - ], - "Dengue_virus_2__DENV_2_VN_BID_V713_2006" : [ - "EU482650" - ], - "Hepatitis_B_virus__S696_3" : [ - "FJ032345" - ], - "Tobacco_mosaic_virus__Songtao_2" : [ - "HE818442" - ], - "West_Nile_virus__WNV_1_US_BID_V6184_2009" : [ - "KJ501241" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda7_05" : [ - "KC706654" - ], - "Bos_grunniens_papillomavirus_type_1_QH_4" : [ - "JX174440" - ], - "KI_polyomavirus__Stockholm_60" : [ - "NC_009238" - ], - "Porcine_circovirus_2__SPA2" : [ - "AF201309" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_392_2012" : [ - "KP308418" - ], - "South_African_cassava_mosaic_virus__MG_MG562B1_11" : [ - "KJ888041" - ], - "Grapevine_fanleaf_virus__SAPCS3" : [ - "JF968121", - "JF968120" - ], - "African_cassava_mosaic_virus__CF_CF75BE_07" : [ - "KJ887606" - ], - "Tomato_yellow_leaf_curl_virus__Gh" : [ - "JQ013090" - ], - "Human_metapneumovirus__CAN98_75" : [ - "AY297748" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dav_beta_129" : [ - "EU384592" - ], - "Bluetongue_virus_12__KEN" : [ - "AJ586712" - ], - "Citrus_tristeza_virus" : [ - "NC_001661", - "Y18420" - ], - "Wheat_streak_mosaic_virus__Hoym" : [ - "HG810954" - ], - "Hepatitis_B_virus__J118" : [ - "GQ377577" - ], - "Porcine_circovirus_2__JHP" : [ - "AF520783" - ], - "Maize_streak_virus___Reunion__N2AR3___N2A" : [ - "AJ224505" - ], - "Human_immunodeficiency_virus_1__03ZASK076B1" : [ - "AY901975" - ], - "Tomato_yellow_leaf_curl_virus__LNJP" : [ - "KJ754190" - ], - "Natrialba_phage_PhiCh1" : [ - "NC_004084" - ], - "Simian_adenovirus_35_2" : [ - "FJ025910" - ], - "Bean_golden_mosaic_virus__BR_Cri8_12" : [ - "KJ939848" - ], - "Escherichia_phage_phi191" : [ - "KF971864" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140038" : [ - "KR653267" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_LN2012_58" : [ - "KF887440", - "KF887435", - "KF887445" - ], - "Hepatitis_B_virus_ChHBV_ChHBV_Ch258" : [ - "AB032433" - ], - "Methanobrevibacter_ruminantium_M1" : [ - "NC_013790" - ], - "Sclerophthora_macrospora_virus_A" : [ - "NC_005819", - "NC_005818", - "NC_005817" - ], - "Candidatus_Mycoplasma_haemolamae_Purdue" : [ - "NC_018219" - ], - "Lactobacillus_sanfranciscensis_TMW_1_1304" : [ - "NC_015979", - "NC_015978", - "NC_015980" - ], - "Porcine_circovirus_1_SC_1" : [ - "DQ358813" - ], - "Maize_chlorotic_mottle_virus__MCMV_NFU2" : [ - "KJ782300" - ], - "Porcine_circovirus_2_99_02_IB_99_02_Br" : [ - "KC835189" - ], - "Newcastle_disease_virus__egret_China_Guangxi_2011" : [ - "JX193074" - ], - "Citrus_tristeza_virus__T68_1" : [ - "JQ965169" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Po_Okra5" : [ - "FN554535" - ], - "JC_polyomavirus__PML013URNFLC_04" : [ - "JF425554" - ], - "Watermelon_chlorotic_stunt_virus__JO1_119" : [ - "KM820187" - ], - "Hepatitis_B_virus__SHB211" : [ - "KJ598654" - ], - "Dengue_virus_3__ZJYW2009" : [ - "JF504679" - ], - "Streptococcus_pneumoniae_TIGR4" : [ - "NC_003028" - ], - "Hepatitis_B_virus__C_PNG_G028A_2003" : [ - "HQ700519" - ], - "West_Nile_virus_ABB_B13" : [ - "KC407667" - ], - "Dengue_virus_2__DENV_2_GU_BID_V2950_2001" : [ - "HM488257" - ], - "La_Crosse_virus_77" : [ - "DQ196120", - "DQ196118", - "DQ196119" - ], - "Synechococcus_CC9605" : [ - "NC_007516" - ], - "Cronobacter_phage_phiES15" : [ - "NC_018454" - ], - "Pectobacterium_phage_phiTE" : [ - "NC_020201" - ], - "Squash_leaf_curl_virus__JO1_140" : [ - "KM595170" - ], - "Dengue_virus_2__DENV_2_PE_FPI0492_2011" : [ - "KC294205" - ], - "Helicobacter_pylori_F32" : [ - "NC_017366", - "NC_017370" - ], - "Porcine_stool_associated_circular_virus_2__TP3" : [ - "KJ577818" - ], - "Enterobacteria_phage_RB5" : [ - "KM606995" - ], - "Porcine_circovirus_2_KF" : [ - "EU780074" - ], - "SARS_coronavirus_MA15_MA15_d2om2" : [ - "HQ890543" - ], - "Human_immunodeficiency_virus_1_ES_X1870" : [ - "FJ670522" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA5809_2009" : [ - "KJ627257" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1930_2007" : [ - "FJ547067" - ], - "Human_immunodeficiency_virus_1__CH200_TFc" : [ - "KC156119" - ], - "Tomato_severe_rugose_virus_Minas_Gerais" : [ - "AY029750" - ], - "Hepatitis_B_virus_1463_13" : [ - "KR014067" - ], - "Simian_T_cell_lymphotropic_virus_6_Cmo8699AB" : [ - "NC_011546" - ], - "Cauliflower_mosaic_virus__GRC86B" : [ - "AB863195" - ], - "Soybean_mosaic_virus__BYX006" : [ - "KP710861" - ], - "West_Nile_virus__Ast02_2_692" : [ - "DQ411035" - ], - "Yam_mild_mosaic_virus" : [ - "NC_019412" - ], - "Soybean_chlorotic_spot_virus__BR_Flt14_11" : [ - "KJ939916" - ], - "Hepatitis_B_virus__LHZ_1" : [ - "FJ787490" - ], - "Human_immunodeficiency_virus_1__BREPM1033" : [ - "EF637050" - ], - "BK_polyomavirus__TW_8a" : [ - "AB217920" - ], - "Norovirus_Hu_GII_4_MD_2004_2004_US_Hu_GII_4_MD_2004_2004_US" : [ - "DQ658413" - ], - "Hepatitis_B_virus__TK61" : [ - "JF754588" - ], - "West_Nile_virus__WNV_1_US_BID_V5215_2007" : [ - "JF920744" - ], - "Panicum_streak_virus__D_NG_Ola_g242" : [ - "GQ415388" - ], - "Sphaeropsis_sapinea_RNA_virus_1" : [ - "NC_001963" - ], - "Macroptilium_mosaic_Puerto_Rico_virus" : [ - "NC_004097", - "NC_004098" - ], - "Bovine_coronavirus_DB2_DB2" : [ - "DQ811784" - ], - "South_African_cassava_mosaic_virus__MG_MG334A3_10" : [ - "KJ887985" - ], - "Human_papillomavirus_type_6__LP137" : [ - "FR751331" - ], - "Hepatitis_B_virus__CAR150" : [ - "AM494712" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V140_1991" : [ - "EU255962" - ], - "Bovine_coronavirus_Kakegawa" : [ - "AB354579" - ], - "Cleome_leaf_crumple_virus__BR_SE_Nps2_09" : [ - "JN103431" - ], - "Torque_teno_sus_virus_1b__TTV2_1907" : [ - "GU570203" - ], - "Dengue_virus_1__HNRG13301" : [ - "KC692501" - ], - "Hepatitis_B_virus_4496_97" : [ - "EU594398" - ], - "Yellow_fever_virus_85_82H_Ivory_Coast" : [ - "YFU54798" - ], - "Chilli_leaf_curl_virus__CL_15" : [ - "JN555600" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4743_2009" : [ - "HQ166034" - ], - "Hepatitis_B_virus__D_NZL_HE35_1997" : [ - "HQ700458" - ], - "Circoviridae_4_LDMD_2013" : [ - "NC_025709" - ], - "Plum_pox_virus_D_48_922" : [ - "AY912058" - ], - "Rift_Valley_fever_virus_Hv_B375" : [ - "DQ380161", - "DQ375422", - "DQ380218" - ], - "Cotton_leaf_curl_Multan_virus__Lat_RCA" : [ - "EU384573" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B326_2008" : [ - "GU936290" - ], - "Moloney_murine_leukemia_virus" : [ - "NC_001501", - "CS272315", - "AF462057" - ], - "Bean_golden_mosaic_virus__BR_Par19_12" : [ - "KJ939803" - ], - "Human_poliovirus_1_NIE1118403" : [ - "KJ170456" - ], - "Tick_borne_encephalitis_virus_Primorye_501" : [ - "HQ901367" - ], - "Tomato_leaf_curl_Palampur_virus__Mahuadhab" : [ - "GU253914" - ], - "Hepatitis_B_virus__CHI3" : [ - "FJ709459" - ], - "Mycobacterium_tuberculosis_EAI5" : [ - "NC_021740" - ], - "Tick_borne_encephalitis_virus_C11_13" : [ - "KP644245" - ], - "Foot_and_mouth_disease_virus___type_SAT_1_SAT1rhod5_66_sat1rhod_iso33" : [ - "AY593846" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4986_spleen" : [ - "HQ671682" - ], - "Hepatitis_B_virus__A1_50128" : [ - "FJ692589" - ], - "Phlebovirus_JS24_JS24" : [ - "HQ830164", - "HQ830165", - "HQ830163" - ], - "Tomato_leaf_curl_Taiwan_virus__NH10_6_1" : [ - "GU723718" - ], - "Bluetongue_virus_4_BTV4_RSA_vacc" : [ - "JN255945", - "JN255942", - "JN255950", - "JN255951", - "JN255943", - "JN255947", - "JN255946", - "JN255949", - "JN255948", - "JN255944" - ], - "Ribgrass_mosaic_virus_NZ_439_TP9_186_L9" : [ - "HQ667978" - ], - "Hepatitis_B_virus__BV_23" : [ - "GU563547" - ], - "Sputnik_virophage_2" : [ - "NC_023846" - ], - "Dengue_virus_Dakar_HD_34460" : [ - "KF907503" - ], - "Hepatitis_E_virus__JJT_Kan" : [ - "AB091394" - ], - "Tomato_yellow_leaf_curl_virus_Israel__Japan_Omura_Eustoma__Omu" : [ - "AB116630" - ], - "Nora_virus__Umea_2007" : [ - "NC_007919" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_362_2012" : [ - "KP308422" - ], - "Human_immunodeficiency_virus_1__886_24" : [ - "KP718928" - ], - "Human_immunodeficiency_virus_1__03ZASK011B2" : [ - "AY901965" - ], - "Potato_yellow_mosaic_Panama_virus_Panama" : [ - "NC_002048", - "NC_002049" - ], - "West_Nile_virus_Greece_2013_Xanthi_5" : [ - "KJ883349" - ], - "Paenibacillus_phage_phiIBB_Pl23" : [ - "NC_021865" - ], - "Salmonid_alphavirus_subtype_3__SAV3_8_R_10" : [ - "KC122921" - ], - "Human_bocavirus__HBov_sh4" : [ - "JN632514" - ], - "Shewanella_frigidimarina_NCIMB_400" : [ - "NC_008345" - ], - "JC_polyomavirus__JCV183FLC_03" : [ - "JF425490" - ], - "JC_polyomavirus__JCV161FLC_47" : [ - "JF424954" - ], - "Torque_teno_virus__tth29" : [ - "AJ620229" - ], - "Simian_adenovirus_A1163_A1163" : [ - "JN880449" - ], - "Porcine_circovirus_2_JY_2" : [ - "JN615187" - ], - "Norovirus_Hu_GII_30040_2009_VNM_Hu_GII_30040_2009_VNM" : [ - "KC409306" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_RNP_B13_1996" : [ - "KF688548" - ], - "Transmissible_gastroenteritis_virus_TS" : [ - "DQ201447" - ], - "Dengue_virus_2_DENV_2_PR_39DN_1994" : [ - "GQ398280" - ], - "Tobacco_curly_shoot_alphasatellite__Y35" : [ - "NC_005057" - ], - "Bacillus_phage_W_Ph" : [ - "NC_016563" - ], - "Hepatitis_B_virus__M71" : [ - "GQ924639" - ], - "Porcine_circovirus_2_YangZhou0705" : [ - "EU503040" - ], - "JC_polyomavirus_722B" : [ - "AF300947" - ], - "Pseudomonas_stutzeri_ATCC_17588___LMG_11199" : [ - "NC_015740" - ], - "Sevenband_grouper_nervous_necrosis_virus__SGYeosu08" : [ - "KM095959", - "KM095958" - ], - "Human_papillomavirus_type_98__GA1_3" : [ - "FM955837" - ], - "Duck_circovirus__D12_KD_002" : [ - "KC851818" - ], - "Pseudomonas_phage_phiKZ" : [ - "NC_004629" - ], - "Bos_grunniens_papillomavirus_type_1_QH_3" : [ - "JX174439" - ], - "Hepatitis_B_virus__Leb13" : [ - "JN642130" - ], - "Sorghum_mosaic_virus__GX" : [ - "KJ541740" - ], - "Hepatitis_B_virus__MLT0730" : [ - "KF779289" - ], - "Torque_teno_sus_virus_1b__TTV2Ln14" : [ - "HM633236" - ], - "Classical_swine_fever_virus_HuN23_2013" : [ - "KP233071" - ], - "European_mountain_ash_ringspot_associated_virus__E52991" : [ - "HG799739" - ], - "Dragonfly_larvae_associated_circular_virus_8__DflaCV_8_NZ_PG5_LS" : [ - "NC_023434" - ], - "Hepatitis_C_virus__QC316" : [ - "KJ439779" - ], - "Tahyna_virus_76" : [ - "KF361875" - ], - "Changuinola_virus__CGLV_BE_AR_397374" : [ - "KF668533", - "KF668532", - "KF668535", - "KF668529", - "KF668527", - "KF668536", - "KF668531", - "KF668530" - ], - "Enterovirus_A71__EV034_06" : [ - "HQ647180" - ], - "Rice_black_streaked_dwarf_virus__miryang" : [ - "JX994211", - "JX994212" - ], - "Toscana_virus_TOSV_Firenze_ITA_1983_2" : [ - "KM275765" - ], - "Porcine_circovirus_2_HuZ0601" : [ - "EU257512" - ], - "Lactobacillus_rhamnosus_ATCC_8530" : [ - "NC_017491" - ], - "Human_poliovirus_1__DOR00041C1" : [ - "AF405682" - ], - "Raspberry_bushy_dwarf_virus" : [ - "NC_003740", - "NC_003739", - "DQ120126" - ], - "Hepatitis_B_virus__BV_189" : [ - "GU563562" - ], - "Banana_streak_VN_virus__MP" : [ - "KJ013510" - ], - "Bacillus_phage_Riggi" : [ - "NC_022765" - ], - "Rhesus_papillomavirus_type_1b__Mac686" : [ - "FJ598133" - ], - "Hepatitis_B_virus_OS27" : [ - "EU155825" - ], - "Streptococcus_phage_EJ_1" : [ - "NC_005294" - ], - "Hepatitis_B_virus__DEN6104" : [ - "KF779234" - ], - "Hepatitis_B_virus__KOR45HCC" : [ - "GQ475349" - ], - "Cellulophaga_phage_phi3ST_2_phi3ST_2" : [ - "KC821610" - ], - "Newcastle_disease_virus_VG_GA_AVINEW" : [ - "KC906188" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2249_2005" : [ - "JN819411" - ], - "WU_Polyomavirus__W464" : [ - "GU296366" - ], - "Atopobium_parvulum_DSM_20469" : [ - "NC_013203" - ], - "Grapevine_leafroll_associated_virus_3__623" : [ - "GQ352632" - ], - "Hepatitis_B_virus__M68" : [ - "GQ924636" - ], - "Tomato_common_mosaic_virus__BR_Pda40_05" : [ - "KC706583" - ], - "Small_begomovirus_associated_satellite__Sa8_S5" : [ - "KJ859170" - ], - "Enterovirus_A71__V10_2234054" : [ - "KC436272" - ], - "Tomato_common_mosaic_virus__BR_Pda8_05" : [ - "KC706592" - ], - "West_Nile_virus__WNV_1_US_BID_V6372_2002" : [ - "KJ501263" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V1749_2008" : [ - "FJ390397" - ], - "Ross_River_virus_2975" : [ - "GQ433360" - ], - "HBV_genotype_D" : [ - "HE815465" - ], - "Hepatitis_B_virus__SHB816" : [ - "KJ598775" - ], - "Hepatitis_C_virus_subtype_6f__C_0044" : [ - "DQ835760" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9483_2013" : [ - "KJ643543" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_67_2012" : [ - "KJ686203" - ], - "Rabies_virus__DRV_Mexico" : [ - "HQ450386" - ], - "Bean_golden_mosaic_virus__BR_Par22_12" : [ - "KJ939807" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LGD_100913" : [ - "JF828984" - ], - "Tomato_severe_rugose_virus__BR_Vic010_10" : [ - "JX865624" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1014_2006" : [ - "EU482458" - ], - "Porcine_circovirus_2_FMV05_6507" : [ - "DQ220730" - ], - "Hepatitis_B_virus__G172" : [ - "JQ040152" - ], - "Rabies_virus_SAD_Bern_original_var_2" : [ - "EF206711" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1666_2007" : [ - "FJ182033" - ], - "Chloris_striate_mosaic_virus__AU_3017_2011" : [ - "JQ948054" - ], - "Mycobacterium_phage_Angel" : [ - "NC_012788" - ], - "Norovirus_GII_Hu_TW_2012_GII_Pe_GII_4_Sydney2012_Taipei_105__Taipei_105" : [ - "KJ196296" - ], - "Arabis_mosaic_virus_large_satellite_RNA" : [ - "NC_003523" - ], - "Human_poliovirus_1__RUS36716" : [ - "KC880373" - ], - "Porcine_circovirus_2_HN_2" : [ - "JF899334" - ], - "SARS_coronavirus_CUHK_AG01__CUHK_AG01" : [ - "AY345986" - ], - "Human_immunodeficiency_virus_1__09YNYJ479sg" : [ - "KC899015" - ], - "Hepatitis_B_virus__EN01_IC" : [ - "JN664913" - ], - "Hepatitis_B_virus__NB255C_m256" : [ - "KJ173307" - ], - "Murine_coronavirus_RA59_SJHM_RA59_SJHM" : [ - "FJ647220" - ], - "Foot_and_mouth_disease_virus___type_O__MOG_C_10_2010" : [ - "KF112882" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Octa_alpha_4" : [ - "EU384637" - ], - "Hepatitis_B_virus__919034" : [ - "JN040807" - ], - "Lemur_smacovirus__SF5" : [ - "NC_026320" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota11A" : [ - "KP283407" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_130578" : [ - "KP118890" - ], - "Tomato_yellow_leaf_curl_China_virus__SC101" : [ - "JN082237", - "JN082233" - ], - "Beet_necrotic_yellow_vein_virus__D71" : [ - "AF197544" - ], - "Dengue_virus_2__DENV_2_CO_BID_V3375_2007" : [ - "GQ868558" - ], - "Tick_borne_encephalitis_virus_Tomsk_PT12" : [ - "KM019546" - ], - "Sweet_clover_necrotic_mosaic_virus_59" : [ - "NC_003807", - "NC_003806" - ], - "Hepatitis_B_virus__C1_6" : [ - "GU815623" - ], - "Hepatitis_B_virus_MEXICO35_H" : [ - "AB375164" - ], - "Human_rhinovirus_A64_ATCC_VR_1174" : [ - "FJ445181" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2162_1997" : [ - "FJ639735" - ], - "Dengue_virus_1_ThD1_0323_91" : [ - "AY732478" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_CABN" : [ - "FJ895882" - ], - "Parrot_hepatitis_B_virus__P360" : [ - "JX274025" - ], - "Human_poliovirus_2_NIE0511445_KDS05_01" : [ - "JX274983" - ], - "Human_poliovirus_1_NIE1118376" : [ - "KJ170448" - ], - "Macroptilium_yellow_spot_virus__BR_Sti12_11" : [ - "KJ939870" - ], - "Corynebacterium_diphtheriae_241" : [ - "NC_016782" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5685_2010" : [ - "JF937627" - ], - "Porcine_hemagglutinating_encephalomyelitis_virus_VW572" : [ - "NC_007732" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2967_2001" : [ - "FJ898470" - ], - "Banana_bunchy_top_virus__TO166" : [ - "JF957688", - "JF957640", - "JF957652", - "JF957664", - "JF957676", - "JF957628" - ], - "Human_rhinovirus_A21_ATCC_VR_1131" : [ - "FJ445121" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo210_08" : [ - "KC706560" - ], - "Bacillus_thuringiensis_serovar_chinensis_CT_43" : [ - "NC_017206", - "NC_017208", - "NC_017203", - "NC_017204", - "NC_017202", - "NC_017205", - "NC_017211", - "NC_017207", - "NC_017212", - "NC_017209", - "NC_017210" - ], - "Hepatitis_B_virus__T1360a" : [ - "GQ205381" - ], - "Human_immunodeficiency_virus_1__07MYKLD48" : [ - "EU031914" - ], - "SARS_coronavirus_Sin842" : [ - "AY559081" - ], - "Algerian_watermelon_mosaic_virus__H4" : [ - "NC_010736" - ], - "Infectious_bronchitis_virus__KM91" : [ - "JQ977698" - ], - "Hepatitis_B_virus__C115" : [ - "EU939576", - "FJ349241" - ], - "Hepatitis_B_virus_adw2_HBV334" : [ - "AF233236" - ], - "Mycoplasma_hominis_ATCC_23114" : [ - "NC_013511" - ], - "Human_respiratory_syncytial_virus__02_00291" : [ - "JQ901454" - ], - "Coprococcus_ART55_1" : [ - "NC_021018" - ], - "Maize_streak_virus__MSV_A_GH_gh157_Sei_2010" : [ - "KJ699338" - ], - "Human_respiratory_syncytial_virus__08_001411" : [ - "JX015494" - ], - "Porcine_circovirus_2_48_07_IB_48_07_Br" : [ - "KC835194" - ], - "Human_cyclovirus_VN_like_HC_CGS104" : [ - "KM392289" - ], - "Newcastle_disease_virus__BP01" : [ - "JN599167" - ], - "Turnip_vein_clearing_virus" : [ - "Z29370", - "DQ658743" - ], - "Hepatitis_B_virus__J114" : [ - "GQ377573" - ], - "Torque_teno_virus_BDH1" : [ - "AF116842" - ], - "Monkeypox_virus__DRC_07_0287" : [ - "JX878422" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3686_2007" : [ - "GQ868503" - ], - "Human_immunodeficiency_virus_1__WC3_0498_2" : [ - "EF175210" - ], - "Synechococcus_phage_KBS_M_1A_KBS_M_1A" : [ - "NC_020836" - ], - "Squash_leaf_curl_virus__PA2_Q336" : [ - "KM595228" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__ODLAR12" : [ - "FM164729" - ], - "Human_rotavirus_A_wi61" : [ - "X81437" - ], - "Hepatitis_B_virus__HBV_IT" : [ - "AB485808" - ], - "Hepatitis_B_virus__I_T24" : [ - "GU456659" - ], - "Streptomyces_phage_Sujidade" : [ - "NC_021304" - ], - "Hepatitis_delta_virus__D23" : [ - "KJ744234" - ], - "Kelp_fly_virus" : [ - "NC_007619" - ], - "Hepatitis_B_virus__8327_05424" : [ - "JN792920" - ], - "Hepatitis_B_virus__HBV010_EP_CHB" : [ - "KM524336" - ], - "Maize_streak_virus__MSV_A_BF_Lou2_BF6_2008" : [ - "HQ693283" - ], - "Tobacco_mild_green_mosaic_virus__Xiamen" : [ - "JX534224" - ], - "Brucella_melitensis_bv__1_16M" : [ - "NC_003318", - "NC_003317" - ], - "Hepatitis_B_virus__3791v4" : [ - "KF922409" - ], - "Norovirus_Hu_GII_10002_2009_VNM_Hu_GII_10002_2009_VNM" : [ - "JQ911595" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_302_2012" : [ - "KP308438" - ], - "Hepatitis_B_virus__J155" : [ - "GQ377595" - ], - "Hepatitis_B_virus__HBV67" : [ - "KC875341" - ], - "Dengue_virus_2_DENV_2_ID_1016DN_1975" : [ - "GQ398258" - ], - "HMO_Astrovirus_A__NI_295" : [ - "NC_013443" - ], - "West_Nile_virus__ID28bird_07" : [ - "JF957172" - ], - "Porcine_circovirus_2_BJ0801" : [ - "EU921254" - ], - "Bluetongue_virus_11_BTV_11_REF" : [ - "JQ972835", - "JQ972831", - "JQ972836", - "JQ972832", - "JQ972833", - "JQ972838", - "JQ972834", - "JQ972840", - "JQ972837", - "JQ972839" - ], - "JC_polyomavirus__JCV161FLC_32" : [ - "JF424939" - ], - "Mus_musculus_papillomavirus_type_1__MusPV" : [ - "NC_014326" - ], - "Dengue_virus_2__DENV_2_VN_BID_V917_2006" : [ - "EU482463" - ], - "Hepatitis_delta_virus__TWD2476_38" : [ - "AF425645" - ], - "Human_poliovirus_1__P1W_Bar65__19276" : [ - "AY278553" - ], - "Canine_minute_virus__SH1" : [ - "FJ899734" - ], - "Dengue_virus_3_D3_SG_05K4440DK1_2005" : [ - "EU081221" - ], - "Porcine_circovirus_2_08CQ" : [ - "HQ395019" - ], - "Hepatitis_B_virus__490_04_3" : [ - "EU871991" - ], - "Hepatitis_B_virus__P010_M_B149" : [ - "KJ173374" - ], - "Enterococcus_phage_IME_EF4" : [ - "NC_023551" - ], - "Dengue_virus_1__DENV_1_VE_BID_V1135_2007" : [ - "EU482610" - ], - "Methanosarcina_mazei_Tuc01" : [ - "NC_020389" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3661_2006" : [ - "GU131959" - ], - "Thermotoga_maritima_MSB8" : [ - "NC_021214" - ], - "Porcine_epidemic_diarrhea_virus_FR_001_2014" : [ - "KR011756" - ], - "Zucchini_yellow_mosaic_virus__ZYMV_Fars" : [ - "JN183062" - ], - "West_Nile_virus__WNV_1_US_BID_V4109_2005" : [ - "HM488120" - ], - "Telosma_mosaic_virus__Hanoi" : [ - "NC_009742" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NVDC_FJ" : [ - "KC492506" - ], - "HBV_genotype_A1__Mart_B01" : [ - "HE974362" - ], - "Cynomolgus_macaque_cytomegalovirus_strain_Ottawa_Ottawa" : [ - "JN227533" - ], - "Hepatitis_B_virus__dww1100" : [ - "KC774455" - ], - "Rinderpest_virus_lapinized_Nakamura_III" : [ - "AB547190" - ], - "Allium_virus_X" : [ - "NC_012211" - ], - "Enterovirus_A71__FY08_C30_P14" : [ - "GU198371" - ], - "Dengue_virus_4__INH6412" : [ - "JF262781" - ], - "Hepatitis_B_virus_468_15" : [ - "KR013930" - ], - "Porcine_circovirus_2_SoPCV2b" : [ - "FJ233907" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_394_2012" : [ - "KP308443" - ], - "Porcine_circovirus_2__SH" : [ - "KM360057" - ], - "Sweet_potato_chlorotic_stunt_virus_EA_m2_47" : [ - "HQ291260", - "HQ291259" - ], - "Pepino_mosaic_virus__Ch2" : [ - "DQ000985" - ], - "Salisaeta_icosahedral_phage_1" : [ - "NC_017983" - ], - "Norovirus_Hu_GII_20276_2009_VNM_Hu_GII_20276_2009_VNM" : [ - "KC409288" - ], - "Dengue_virus_2__DENV_2_LK_BID_V2421_2003" : [ - "GQ252676" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2701_2006" : [ - "FJ882527" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE7874_2010" : [ - "KJ627252" - ], - "Hepatitis_B_virus__I49" : [ - "FJ562234" - ], - "Mycobacterium_phage_Mosby" : [ - "KF493883" - ], - "Cellulophaga_phage_phi17_2_phi17_2" : [ - "NC_021798" - ], - "Coxsackievirus_A24_CA24v_Okinawa_25_2011" : [ - "AB769162" - ], - "Hepatitis_B_virus__C1_2" : [ - "GU815619" - ], - "SARS_coronavirus_MA15_MA15_d3om1" : [ - "JF292916" - ], - "Hepatitis_B_virus__C_PNG_T114_1994" : [ - "HQ700532" - ], - "Hepatitis_B_virus__HB10_0708" : [ - "AB775199" - ], - "Hepatitis_B_virus__PRC6225" : [ - "KF779380" - ], - "Dengue_virus_3__98TW434" : [ - "DQ675530" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4702_1" : [ - "KR105265" - ], - "Human_poliovirus_1_NIE1018396" : [ - "KJ170470" - ], - "Human_immunodeficiency_virus_1__04KJS8" : [ - "JQ316130" - ], - "Hepatitis_B_virus__PhLC14" : [ - "AB241111" - ], - "Mycobacterium_phage_Che9d" : [ - "NC_004686" - ], - "Tomato_yellow_leaf_curl_virus__Kahnooj_Iran___TYLCV_Ker_IR_Ka21_06" : [ - "GU076449" - ], - "Anaplasma_marginale_Dawn" : [ - "NC_022760" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_9327_2001" : [ - "DQ404167" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD176_2013" : [ - "KM229838" - ], - "Japanese_encephalitis_virus_JaTAn1_75" : [ - "AB551990" - ], - "Small_begomovirus_associated_satellite__Sa46_S125" : [ - "KJ859160" - ], - "Simian_retrovirus_4_SRV4_TEX_2009_V1" : [ - "NC_014474" - ], - "Candidatus_Vesicomyosocius_okutanii_HA" : [ - "NC_009465" - ], - "Avian_leukosis_virus__JS_nt" : [ - "HM235667" - ], - "Hepatitis_B_virus__S732_3" : [ - "FJ032346" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9465_2013" : [ - "KJ643531" - ], - "Chlamydophila_psittaci_Mat116" : [ - "NC_020248" - ], - "Porcine_circovirus_2__JS11" : [ - "KC153106" - ], - "Rift_Valley_fever_virus_73HB1230" : [ - "DQ380172", - "DQ380221", - "DQ375425" - ], - "Apple_chlorotic_leaf_spot_virus__QD_13" : [ - "KJ522693" - ], - "Tomato_leaf_curl_Taiwan_virus__T2_1" : [ - "GU723729" - ], - "Hepatitis_B_virus__HBV52" : [ - "KC875327" - ], - "Beet_curly_top_Iran_virus__IR_Sabz_134T_Tomato_10" : [ - "JX966233" - ], - "Human_coronavirus_NL63_NL63_DEN_2009_20" : [ - "JQ765567" - ], - "Candidatus_Methylomirabilis_oxyfera" : [ - "NC_013260" - ], - "Beet_necrotic_yellow_vein_virus__S" : [ - "NC_003515", - "NC_003517", - "NC_003514", - "NC_003516" - ], - "Human_papillomavirus_type_16__AS097" : [ - "HQ644234" - ], - "Mycoplasma_pulmonis_UAB_CTIP" : [ - "NC_002771" - ], - "Human_papillomavirus_type_6__LP176" : [ - "FR751333" - ], - "Rice_yellow_mottle_virus" : [ - "AJ876793", - "RYVCGEN" - ], - "Porcine_epidemic_diarrhea_virus_MEX_104_2013" : [ - "KJ645708" - ], - "Norovirus_Hu_GII_4_Nagano3_2007_JP_Hu_GII_4_Nagano3_2007_JP" : [ - "AB541305" - ], - "Yersinia_phage_YpP_R" : [ - "JQ965701" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5488_2010" : [ - "JN093513" - ], - "Rabies_virus_CVS_11" : [ - "GQ918139" - ], - "Tobacco_curly_shoot_alphasatellite__Y115" : [ - "AJ579346" - ], - "Bluetongue_virus__BT17_283" : [ - "AY426596" - ], - "Dengue_virus_3__mutant_PhMH_J1_97" : [ - "DQ401695" - ], - "Hepatitis_B_virus__CX001M_e202" : [ - "KJ173340" - ], - "Hepatitis_B_virus__21116" : [ - "AJ627218" - ], - "West_Nile_virus__WNV_1_US_BID_V4799_2004" : [ - "HM756672" - ], - "Bluetongue_virus_NET2008_06" : [ - "GQ506486", - "GQ506484", - "GQ506487", - "GQ506485", - "GQ506483" - ], - "BK_polyomavirus__MT_clone_11" : [ - "AB485697" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__MU4B1" : [ - "FM164734" - ], - "Tomato_yellow_leaf_curl_virus__AH_HB1" : [ - "FN650807" - ], - "Dengue_virus_3__DENV_3_US_BID_V1417_2007" : [ - "EU596494" - ], - "Hepatitis_B_virus__028_TI_Ngu" : [ - "KF873533" - ], - "Hepatitis_E_virus__JMM_Aba06C" : [ - "AB291968" - ], - "Buenaventura_virus_Co_Ar_3319" : [ - "EF201839" - ], - "Potato_yellow_mosaic_virus_Trinidad_Grenada_Hermitage_2007" : [ - "FR851300", - "FR851301" - ], - "Human_herpesvirus_5_BE_14_2011" : [ - "KP745671" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4169_midgut" : [ - "HQ705673" - ], - "Haemophilus_influenzae_86_028NP" : [ - "NC_007146" - ], - "Sodalis_phage_SO1" : [ - "NC_013600" - ], - "Synechococcus_phage_Syn19_Syn19" : [ - "NC_015286" - ], - "Florida_woods_cockroach_associated_cyclovirus__GS140" : [ - "NC_020206" - ], - "Hepatitis_B_virus__J207" : [ - "GQ377622" - ], - "Hepatitis_B_virus__bur1036" : [ - "KC774371" - ], - "Rice_grassy_stunt_virus__shaxian" : [ - "AF397468", - "AF509470" - ], - "Hepatitis_B_virus__HCUCH21" : [ - "HM627320" - ], - "Orchid_fleck_virus__NHHS1" : [ - "AB516441", - "AB516442" - ], - "Simian_immunodeficiency_virus_SIVmac239_96093" : [ - "AY611489" - ], - "Dengue_virus_2__DENV_2_DO_BID_V2955_2003" : [ - "FJ898451" - ], - "Porcine_circovirus_2__NL_PMWS_2" : [ - "AY484414" - ], - "West_Nile_virus__AVA1204356" : [ - "KC736496" - ], - "Yellow_fever_virus_BeH622493" : [ - "JF912188" - ], - "South_African_cassava_mosaic_virus__MG_MG275A3_10" : [ - "KJ887971" - ], - "Rickettsia_rickettsii__Sheila_Smith" : [ - "NC_009882" - ], - "Newcastle_disease_virus__NDV53_Haryana" : [ - "KM056351" - ], - "Western_equine_encephalitis_virus_75V9291" : [ - "KJ554973" - ], - "Pea_seed_borne_mosaic_virus_DPD1" : [ - "NC_001671" - ], - "Human_poliovirus_2_NIE1118415" : [ - "KJ170557" - ], - "Bluetongue_virus__BT8_2215" : [ - "AY426604" - ], - "Dengue_virus_2__DENV_2_VN_BID_V704_2006" : [ - "EU482641" - ], - "Parvularcula_bermudensis_HTCC2503" : [ - "NC_014414" - ], - "Sida_mottle_Alagoas_virus__BR_Mar2_10" : [ - "JX871387" - ], - "Human_rhinovirus_B4" : [ - "DQ473490" - ], - "Human_herpesvirus_5_BE_37_2011" : [ - "KP745723" - ], - "Maize_streak_virus__UMub_94" : [ - "EF547083" - ], - "Porcine_circovirus_2_PCV2_RP8" : [ - "FJ716704" - ], - "Psychrobacter_G" : [ - "NC_021669", - "NC_021661", - "NC_021662", - "NC_021668" - ], - "BK_polyomavirus__BKV_HI_u5" : [ - "AY628225" - ], - "Rice_stripe_virus__WD_JN" : [ - "FJ602699", - "FJ602686" - ], - "Mulberry_vein_banding_virus__NN_10" : [ - "KM819706" - ], - "Echovirus_E25_XM0297" : [ - "KP099941" - ], - "Hepatitis_B_virus__GU1694" : [ - "GQ161755" - ], - "WU_Polyomavirus__O91" : [ - "GU296363" - ], - "Tomato_leaf_curl_China_betasatellite__Y10" : [ - "AJ421621" - ], - "Human_immunodeficiency_virus_1__ML1945" : [ - "EU110088" - ], - "Hepatitis_B_virus__S1357_6" : [ - "FJ787463" - ], - "Choristoneura_fumiferana_DEF_multiple_nucleopolyhedrovirus" : [ - "NC_005137" - ], - "Sida_yellow_blotch_virus__BR_Chp1_10" : [ - "JX871382" - ], - "Rubella_virus_RVi_Bismarck_ND_USA_23_08_2B" : [ - "JN635296" - ], - "Human_adenovirus_6_Tonsil_99_prototype" : [ - "FJ349096" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V73_2004" : [ - "EU155242" - ], - "Hepatitis_B_virus__A1_50167" : [ - "FJ692591" - ], - "Hepatitis_B_virus_6923" : [ - "FJ518812" - ], - "Hepatitis_B_virus_4630_97" : [ - "EU594426" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_219_2011" : [ - "KJ686127" - ], - "Japanese_encephalitis_virus__HN0421" : [ - "JN381841" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP7B" : [ - "JN013999" - ], - "Tomato_chlorotic_mottle_virus__BR_Car231_08" : [ - "KC706565" - ], - "Paramecium_bursaria_Chlorella_virus_AR158_AR158" : [ - "NC_009899" - ], - "African_cassava_mosaic_virus__Angola_Funda_2008" : [ - "FJ807631" - ], - "WU_Polyomavirus_S1" : [ - "EF444550" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_32_DRC" : [ - "JX458827" - ], - "Grapevine_roditis_leaf_discoloration_associated_virus__w4" : [ - "NC_027131" - ], - "Streptococcus_suis_98HAH33" : [ - "NC_009443" - ], - "Hepatitis_B_virus__cur1024" : [ - "KC774229" - ], - "Simian_adenovirus_A1139_A1139" : [ - "JN880448" - ], - "Hepatitis_B_virus__HBV_Iw27" : [ - "AB073843" - ], - "Hepatitis_B_virus__F1_12" : [ - "GU815713" - ], - "Cotton_leaf_curl_Gezira_betasatellite__Al_Ain" : [ - "KM279620" - ], - "Tomato_common_mosaic_virus__BR_Pda25_05" : [ - "KC706602" - ], - "Ageratum_enation_virus__NBRI_3" : [ - "KM262823" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V432_2002" : [ - "EU155276" - ], - "HBV_genotype_H__MEX912M" : [ - "AB516394" - ], - "Hepatitis_B_virus__I9" : [ - "FJ562331" - ], - "Astrovirus_VA1__VA1" : [ - "NC_013060" - ], - "Torque_teno_virus__JT05F" : [ - "AB064600" - ], - "Dengue_virus_2__DENV_2_US_BID_V1486_2003" : [ - "EU687237" - ], - "Chikungunya_virus_0810bTw" : [ - "FJ807899" - ], - "Dengue_virus_2__DENV_2_US_BID_V1413_2007" : [ - "EU596491" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4044_2008" : [ - "GU131801" - ], - "Hepatitis_B_virus__bne342" : [ - "FN594759" - ], - "Dengue_virus_2__DENV_2_NI_BID_V559_2006" : [ - "EU482682" - ], - "Hepatitis_delta_virus__D7_B" : [ - "KJ744221" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1237_2007" : [ - "FJ639833" - ], - "Hepatitis_B_virus__M39" : [ - "GQ924621" - ], - "Rotavirus_G9_US1343" : [ - "AJ250273" - ], - "Norovirus_Hu_GII_4_Hokkaido5_2008_JP_Hu_GII_4_Hokkaido5_2008_JP" : [ - "AB541268" - ], - "Oak_Vale_virus_K13965" : [ - "JF705877" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_740" : [ - "KR534520" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_1" : [ - "JQ647455" - ], - "Rabbit_hemorrhagic_disease_virus_Jena" : [ - "EF558576" - ], - "Hepatitis_B_virus__M48" : [ - "GQ924627" - ], - "Enterovirus_B85_HTYT_ARLH403F_XJ_CHN_2011" : [ - "JX898905" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JX" : [ - "JX317649" - ], - "Flavobacteriales_bacterium_HTCC2170" : [ - "NC_014472" - ], - "Norovirus_Hu_GII_4_CGMH09_2006_TW" : [ - "JN400607" - ], - "Porcine_epidemic_diarrhea_virus_K14JB01" : [ - "KJ623926" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GSP_95_1444" : [ - "KF688552" - ], - "JC_polyomavirus__SBW_9" : [ - "AB362366" - ], - "Maize_streak_virus__MSV_A_CF_Bai3_Car148_2008" : [ - "HQ693288" - ], - "Porcine_circovirus_2_10QH" : [ - "HQ395058" - ], - "Porcine_circovirus_2_SoPCV2a" : [ - "FJ233908" - ], - "Foot_and_mouth_disease_virus___type_C__C_S8p260d999" : [ - "DQ409184" - ], - "Erinnyis_ello_granulovirus__S86" : [ - "NC_025257" - ], - "Tomato_severe_rugose_virus__BR_Car220_08" : [ - "KC004078" - ], - "Tick_borne_encephalitis_virus__AS33" : [ - "GQ266392" - ], - "Hepatitis_A_virus_GBM" : [ - "X75215" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4415_1" : [ - "KR105247" - ], - "Tobacco_etch_virus" : [ - "TEVGEN", - "NC_001555" - ], - "West_Nile_virus__WNV_1_US_BID_V7396_2007" : [ - "KJ501108" - ], - "Norovirus_Hu_GII_4_Miyagi2_2007_JP_Hu_GII_4_Miyagi2_2007_JP" : [ - "AB541282" - ], - "Bat_coronavirus_HKU5_2_TT03f" : [ - "EF065510" - ], - "Microcystis_aeruginosa_phage_Ma_LMM01" : [ - "NC_008562" - ], - "Coxsackievirus_A3_Olson_CA3" : [ - "AY421761" - ], - "Aquareovirus_C_Golden_shiner_reovirus" : [ - "NC_005174", - "NC_005166", - "NC_005171", - "NC_005175", - "NC_005169", - "NC_005176", - "NC_005167", - "NC_005168", - "NC_005172", - "NC_005170", - "NC_005173" - ], - "Pantoea_ananatis_AJ13355" : [ - "NC_017533", - "NC_017531" - ], - "Plutella_xylostella_multiple_nucleopolyhedrovirus__CL3" : [ - "NC_008349" - ], - "Human_mastadenovirus_C_human_USA_UFL_Adv5_2008_5_P2_H5_F5" : [ - "KF268199" - ], - "Dengue_virus_2__DC353Y11" : [ - "KM279517" - ], - "Beak_and_feather_disease_virus__BFDV8" : [ - "FJ685980" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_HND_67U208_1967_IE" : [ - "KC344456" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT58B26_2008" : [ - "JF909253" - ], - "Hepatitis_B_virus_544_10a" : [ - "KR013960" - ], - "Polynucleobacter_necessarius_asymbioticus_QLW_P1DMWA_1" : [ - "NC_009379" - ], - "Hepatitis_B_virus__J29" : [ - "GQ377528" - ], - "West_Nile_virus__WNV_1_US_BID_V6704_2006" : [ - "KJ501431" - ], - "LuIII_virus" : [ - "NC_004713" - ], - "Hepatitis_delta_virus_Nagasaki_JA_N2" : [ - "AB118849" - ], - "Human_immunodeficiency_virus_1__PS2008_Day0" : [ - "DQ676874" - ], - "Prevotella_dentalis_DSM_3688" : [ - "NC_019969", - "NC_019968", - "NC_019960", - "NC_019961" - ], - "Tomato_yellow_leaf_curl_Thailand_betasatellite__Ramgarh" : [ - "GQ994097" - ], - "South_African_cassava_mosaic_virus__MG_MG131A2_09" : [ - "KJ887924" - ], - "Phage_Gifsy_2" : [ - "NC_010393" - ], - "Rotavirus_A_pheasant_HUN_2008_Phea17655_Hun_08" : [ - "FN393056" - ], - "Tomato_yellow_leaf_curl_virus__DT1" : [ - "JN604487" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2809_2007" : [ - "FJ882555" - ], - "West_Nile_virus__WNV_1_US_BID_V6468_2003" : [ - "KJ501472" - ], - "West_Nile_virus__WNV_1_US_BID_V4608_2003" : [ - "HM488227" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir_T5X_Cuc_07" : [ - "JF501724" - ], - "JC_polyomavirus__IT_8" : [ - "AB074584" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1951_2008" : [ - "FJ410270" - ], - "Newcastle_disease_virus_Chicken_China_SDYT03_2011" : [ - "JQ015297" - ], - "Hepatitis_B_virus__HBV_C7" : [ - "Y18858" - ], - "Human_immunodeficiency_virus_1__96CM_1849" : [ - "AF460972" - ], - "Rice_dwarf_virus_O" : [ - "AB001579", - "AB001580" - ], - "Abutilon_mosaic_virus__GS" : [ - "LN611624", - "LN611622" - ], - "Bluetongue_virus_2__80296" : [ - "DQ191268" - ], - "Tomato_leaf_curl_Gujarat_virus__Kelloo" : [ - "AF449999" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG655A2_11" : [ - "KJ888085" - ], - "Human_parvovirus_B19__KU1" : [ - "FJ591158" - ], - "Enterobacteria_phage_285P" : [ - "NC_015249" - ], - "Hepatitis_B_virus__PG_50" : [ - "KF471645" - ], - "Rous_sarcoma_virus___Schmidt_Ruppin_D_Schmidt_Ruppin_D" : [ - "ALRSRDCG" - ], - "Southwest_baboon_virus_1__SWBV_19466_4_14_2014" : [ - "KM110948" - ], - "Human_papillomavirus_type_58__Qv13816" : [ - "HQ537774" - ], - "South_African_cassava_mosaic_virus__MG_MG526A3_11" : [ - "KJ888030" - ], - "West_Nile_virus__ARC27_06" : [ - "JF957165" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0163" : [ - "KP759702" - ], - "Porcine_parvovirus_NADL_2_M1" : [ - "KF913345" - ], - "Rous_sarcoma_virus___Prague_C_Prague" : [ - "ALRCG" - ], - "Maize_dwarf_mosaic_virus__Mv0801" : [ - "FM883164" - ], - "Myxoma_virus_Aust_Brooklands_4_93_BRK" : [ - "JX565562" - ], - "Porcine_bocavirus__swBoV_CH437" : [ - "NC_023673" - ], - "Usutu_virus_V34" : [ - "KJ438725" - ], - "Canine_parvovirus_2c__UY307" : [ - "KM457124" - ], - "Enterobacteria_phage_f1" : [ - "NC_025823", - "V00606" - ], - "Hepatitis_B_virus__Tibet_29" : [ - "HM750147" - ], - "Hepatitis_B_virus_HB559" : [ - "JQ027326" - ], - "African_horse_sickness_virus_serotype_9_South_African" : [ - "AJ007308" - ], - "Yellow_fever_virus_Trinidad_79A_788379" : [ - "AF094612" - ], - "Coxsackievirus_A24_INDNIV1034661LV463" : [ - "KF667358" - ], - "Hepatitis_B_virus__E2_7" : [ - "GU815697" - ], - "Pennisetum_mosaic_virus__AZ8" : [ - "JX070144" - ], - "Porcine_circovirus_2_Buffalo2" : [ - "KM116514" - ], - "Enterobacteria_phage_phiX174__10D90" : [ - "EF380025" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_94E_014_01_1994" : [ - "KP258701" - ], - "Hepatitis_B_virus__3358v2" : [ - "KJ010777" - ], - "Enterovirus_A71__THA_EV71_019" : [ - "JF738001" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2052_2007" : [ - "FJ639714" - ], - "Porcine_circovirus_2__90_08_21" : [ - "HQ591366" - ], - "Hepatitis_B_virus__209_0519_Nature1_2_unSero" : [ - "DQ993688" - ], - "Middle_East_respiratory_syndrome_coronavirus__KSA_CAMEL_363" : [ - "KJ713298" - ], - "Lactobacillus_prophage_Lj771" : [ - "NC_010179" - ], - "Hepatitis_B_virus__B125" : [ - "EU939635" - ], - "Goose_parvovirus_Y" : [ - "KC178571" - ], - "Erwinia_phage_FE44" : [ - "NC_022744" - ], - "Nitrosopumilus_maritimus_SCM1" : [ - "NC_010085" - ], - "Tomato_yellow_leaf_curl_virus___Mild__DO_Azua_TY5_02_2011" : [ - "KJ913683" - ], - "Human_herpesvirus_5_BE_14_2012" : [ - "KP745658" - ], - "Tomato_yellow_leaf_curl_virus___Mild_Aichi__Aichi_Gemini_A" : [ - "AB014347" - ], - "Hepatitis_B_virus__XGW_23" : [ - "HM750154" - ], - "Human_immunodeficiency_virus_1__BREPM1023" : [ - "EF637057" - ], - "West_Nile_virus__WNV_1_US_BID_V4220_2004" : [ - "HM488148" - ], - "Hepatitis_B_virus_42202" : [ - "FN545838" - ], - "Sendai_virus_Z" : [ - "AB855655" - ], - "Maize_streak_virus__MSV_A_MZ_Nha_Moz15_2007" : [ - "HQ693361" - ], - "Tobacco_mosaic_virus__Jianshi_1" : [ - "HE818431" - ], - "Small_begomovirus_associated_satellite__Sa39_S106" : [ - "KJ859153" - ], - "Ralstonia_pickettii_DTP0602" : [ - "NC_022513", - "NC_022514", - "NC_022515" - ], - "Hepatitis_B_virus__B2_5" : [ - "GU815598" - ], - "Bean_common_mosaic_virus__MS1" : [ - "EU761198" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1871_2007" : [ - "FJ461320" - ], - "BK_polyomavirus__OKN_16" : [ - "AB365148" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3399_2003" : [ - "GU131952" - ], - "Canine_coronavirus_CB_05" : [ - "KP981644" - ], - "Stenotrophomonas_phage_phiSMA7" : [ - "NC_021569" - ], - "Hepatitis_E_virus__CHN_NJ_H2011" : [ - "JQ740781" - ], - "Torque_teno_virus__TTV_HD20d__uro746" : [ - "FR751495" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda23_05" : [ - "KC706664", - "KC706636" - ], - "Dengue_virus_2__DC645Y12" : [ - "KM279543" - ], - "Hepatitis_B_virus__N08_M_6615A" : [ - "KJ173437" - ], - "West_Nile_virus_BD_AUT" : [ - "KM659876" - ], - "Lactobacillus_phage_phiLdb" : [ - "NC_022762" - ], - "Goose_circovirus_xs6" : [ - "DQ192287" - ], - "West_Nile_virus__WNV_1_US_BID_V6456_2010" : [ - "KJ501308" - ], - "Chikungunya_virus_IND_06_TN1" : [ - "EF027138" - ], - "Hepatitis_B_virus__Os_JP_2008" : [ - "AB933279" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2188_2001" : [ - "FJ639758" - ], - "Plum_pox_virus_M_SK_68" : [ - "PPVPOLPRO" - ], - "Pepper_yellow_leaf_curl_China_virus__YN65_1" : [ - "NC_020236" - ], - "Spodoptera_frugiperda_multiple_nucleopolyhedrovirus__Nicaraguan" : [ - "JF899325", - "HM595733" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1777_2007" : [ - "FJ432724" - ], - "Duck_hepatitis_A_virus_3__AP_04009" : [ - "DQ256133" - ], - "Torque_teno_canis_virus__Sh_TTV203" : [ - "HM855265" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota59_2013" : [ - "KJ645656" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141497" : [ - "KR653273" - ], - "Bovine_parainfluenza_virus_3__TVMDL60" : [ - "KJ647289" - ], - "Porcine_kobuvirus_swine_K_30_HUN_2008_HUN__swine_K_30_HUN_2008_HUN" : [ - "GQ249161" - ], - "Dengue_virus_3__DENV_3_US_BID_V1077_2000" : [ - "EU529697" - ], - "Hepatitis_B_virus__VT1022" : [ - "AB212626" - ], - "West_Nile_virus_XJ11129" : [ - "JX442279" - ], - "Hepatitis_B_virus__IHHAC1" : [ - "KJ533385" - ], - "Dengue_virus_2__DC827Y12" : [ - "KM279575" - ], - "Hepatitis_B_virus__HBV_NEP40" : [ - "AB116090" - ], - "Human_immunodeficiency_virus_1__03ZAPS057MB2" : [ - "DQ369989" - ], - "Ageratum_leaf_curl_Cameroon_betasatellite__SatB35" : [ - "FR717141" - ], - "West_Nile_virus__Ast02_3_165" : [ - "DQ411033" - ], - "Plum_pox_virus_Rec_o6" : [ - "GU474956" - ], - "Torque_teno_virus__TTV_HD24a__rheu232" : [ - "FR751506" - ], - "Hepatitis_B_virus__919045" : [ - "JN040754" - ], - "Hop_latent_virus__HpLV_from_Humulus_luplus_L__cultivar_Shinshu_Wase_in_Japan" : [ - "NC_002552" - ], - "Dengue_virus_1__DENV_1_NI_BID_V540_2005" : [ - "FJ432721" - ], - "Coxsackievirus_A16__Wuhan0109_HuB_CHN_2011" : [ - "JX986740" - ], - "Maize_streak_virus__UNak_123" : [ - "EF547091" - ], - "Zucchini_yellow_mosaic_virus__1st" : [ - "JN192428" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9461_2013" : [ - "KJ643528" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1950_2008" : [ - "FJ410269" - ], - "Hepatitis_B_virus__2419" : [ - "FJ386648" - ], - "Rhizoctonia_solani_RNA_virus_HN008" : [ - "NC_027529" - ], - "Human_poliovirus_1_NIE1118331" : [ - "KJ170460" - ], - "Hepatitis_B_virus__KOR4CHB" : [ - "GQ475308" - ], - "Cyanophage_P_RSM6_P_RSM6" : [ - "NC_020855" - ], - "Murid_herpesvirus_2_Maastricht" : [ - "NC_002512" - ], - "GB_virus_C__8013815" : [ - "KP710606" - ], - "Beak_and_feather_disease_virus__Taiwan_1" : [ - "KC510146" - ], - "Nitrosomonas_AL212" : [ - "NC_015222", - "NC_015221", - "NC_015223" - ], - "GB_virus_C_K3732" : [ - "AB008335" - ], - "Enterovirus_A71_BRU_2006_35334" : [ - "JN992284", - "JN992282" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4070_2008" : [ - "GU131819" - ], - "BK_polyomavirus__BKV_HC_u2" : [ - "AY628234" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3644_2008" : [ - "GU131881" - ], - "Hepatitis_E_virus__HE_JA36" : [ - "AB220977" - ], - "Staphylococcus_phage_phiRS7" : [ - "NC_022914" - ], - "Squash_leaf_curl_virus__JO3_126" : [ - "KM595202" - ], - "Tomato_yellow_leaf_curl_virus__LNhud2" : [ - "KJ140788" - ], - "Hepatitis_B_virus_544_8" : [ - "KR013798" - ], - "Small_begomovirus_associated_satellite__Sa20_S204" : [ - "KJ859142" - ], - "West_Nile_virus__WNV_1_US_BID_V6428_2003" : [ - "KJ501294" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_LN2012_34" : [ - "KF887437", - "KF887442", - "KF887432" - ], - "Classical_swine_fever_virus___C_Chinese_strain__C_strain__EP_0_351_901_B1__B5b" : [ - "Z46258" - ], - "Thermodesulfobacterium_OPB45" : [ - "NC_015682" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_78_32896_1990" : [ - "KJ469630" - ], - "West_Nile_virus__WNV_1_US_BID_V6555_2003" : [ - "KJ501354" - ], - "Porcine_circovirus_2__HZ08" : [ - "FJ644927" - ], - "Mirafiori_lettuce_big_vein_virus__LS301_O" : [ - "NC_004781", - "NC_004782", - "NC_004780", - "NC_004779" - ], - "Wheat_dwarf_virus__SXTY10_9" : [ - "JQ647501" - ], - "Sendai_virus_Nagoya" : [ - "AB195968" - ], - "Hepatitis_B_virus__ES71_15" : [ - "JF828931" - ], - "Lassa_mammarenavirus_recombinant_Josiah" : [ - "HQ688673", - "HQ688675" - ], - "Cucurbita_yellow_vein_virus_associated_DNA_beta" : [ - "NC_005875" - ], - "Barley_mild_mosaic_virus_Reims_M" : [ - "BMMCG" - ], - "BK_polyomavirus_SEC_21" : [ - "AB269862" - ], - "Soybean_mosaic_virus_TNP" : [ - "HQ845735" - ], - "Human_metapneumovirus_HMPV_AUS_183219938_2004_B" : [ - "KF530178" - ], - "Grapevine_satellite_virus__AUD46129" : [ - "NC_021480" - ], - "Rift_Valley_fever_virus_OS_8" : [ - "DQ380185", - "DQ380177", - "DQ375395" - ], - "Hepatitis_B_virus__HBV_BAN36" : [ - "AB116083" - ], - "West_Nile_virus__WNV_1_US_BID_V5226_2008" : [ - "JF920754" - ], - "Dengue_virus_3__DENV_3_TT_BID_V3928_2002" : [ - "GQ868617" - ], - "African_cassava_mosaic_virus__CF_CF64AB_07" : [ - "KJ887778" - ], - "Lily_symptomless_virus__India" : [ - "AM422452" - ], - "Hepatitis_B_virus__bxa2061" : [ - "KC774414" - ], - "Hepatitis_B_virus__C192" : [ - "EU939604" - ], - "Hepatitis_B_virus__M85_1045" : [ - "EU331000" - ], - "Helicobacter_phage_KHP40" : [ - "NC_019931" - ], - "JC_polyomavirus__SD_9" : [ - "AB048573" - ], - "Cellulomonas_flavigena_DSM_20109" : [ - "NC_014151" - ], - "Hepatitis_B_virus__BV_5" : [ - "GU563545" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Culex_nigripalpus_MEX_MX09_M51_2009_IE" : [ - "KC344478" - ], - "Porcine_circovirus_2_XJ0901" : [ - "GU370063" - ], - "Tomato_spotted_wilt_virus__Pepper1_CY_CN" : [ - "HM581939", - "HM581937", - "HM581938" - ], - "Lettuce_mosaic_virus__CL427" : [ - "KJ161180" - ], - "Propionibacterium_avidum_44067" : [ - "NC_021064" - ], - "Hepatitis_B_virus__MTB158" : [ - "AY902772" - ], - "Legionella_pneumophila_Paris" : [ - "NC_006365", - "NC_006368" - ], - "Enterovirus_C__V3_Tul_2" : [ - "HQ738297" - ], - "Foot_and_mouth_disease_virus___type_O_O_UK2001_O_UK2001_FB" : [ - "AY593832" - ], - "Coxsackievirus_A6__5039_SH_CHN_2013" : [ - "KJ541160" - ], - "Porcine_circovirus_2_09JX" : [ - "HQ395039" - ], - "Japanese_encephalitis_virus_JEV_sw_Okinawa_402_2008" : [ - "AB471670" - ], - "Hepatitis_B_virus__6144_0718_ETC" : [ - "DQ993710" - ], - "Porcine_circovirus_2__SH1004" : [ - "KF850462" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG183A3_09" : [ - "KJ887948" - ], - "JC_polyomavirus__JCV176FLC_12" : [ - "JF424898" - ], - "Hepatitis_B_virus__cxn1095" : [ - "KC774349" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2259_2006" : [ - "FJ639819" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3977_2008" : [ - "GU131750" - ], - "Sulfolobus_solfataricus_98_2" : [ - "NC_017274" - ], - "Coxsackievirus_A17__CV_A17_68154" : [ - "JF260925" - ], - "Rhodococcus_erythropolis_CCM2595" : [ - "NC_022115", - "NC_022125" - ], - "Mycobacterium_phage_PegLeg" : [ - "NC_021299" - ], - "Rotavirus_G_chicken_03V0567_DEU_2003_03V0567" : [ - "NC_021588" - ], - "Hepatitis_B_virus__HBV22" : [ - "KC875312" - ], - "Hepatitis_B_virus__Leb38" : [ - "JN642146" - ], - "Hepatitis_B_virus__G3_10" : [ - "GU815772" - ], - "Hepatitis_B_virus__CX027C_e237" : [ - "KJ173353" - ], - "South_African_cassava_mosaic_virus__MG_MG209A2_09" : [ - "KJ887952" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite__India_Ghazipur_Chilli_2007___India_Ghazipur_Chilli_2007" : [ - "HM007099" - ], - "Culex_flavivirus_Toyama791" : [ - "AB701773" - ], - "Plantago_asiatica_mosaic_virus_Li2" : [ - "AB360791" - ], - "Enterovirus_A71_EV71_Hubei_09_China" : [ - "GU434678" - ], - "West_Nile_virus__WNV_1_US_BID_V6559_2003" : [ - "KJ501356" - ], - "Arctic_ground_squirrel_hepatitis_B_virus" : [ - "AGU29144" - ], - "Circovirus_like_genome_CB_A_CB_A" : [ - "NC_013028" - ], - "Hepatitis_B_virus__KOR44HCC" : [ - "GQ475348" - ], - "Watermelon_chlorotic_stunt_virus__PA1_J40" : [ - "KM820270" - ], - "Hepatitis_B_virus__919041" : [ - "JN040782" - ], - "Pyrobaculum_oguniense_TE7" : [ - "NC_016885", - "NC_016886" - ], - "Hepatitis_B_virus__IstambulB23" : [ - "AB674406" - ], - "Hepatitis_B_virus_C0309392_DPS_F" : [ - "AP011105" - ], - "Peanut_mottle_virus__Habin" : [ - "KF977830" - ], - "Wheat_dwarf_virus____Yunnan_Kunming___YNKM07_29" : [ - "EU541489" - ], - "Haloarcula_hispanica_icosahedral_virus_2" : [ - "NC_016989" - ], - "Bovine_viral_diarrhea_virus_2__NRW_14_13_Dup" : [ - "HG426486", - "HG426485" - ], - "Hepatitis_B_virus__MOD_4629" : [ - "GQ183448" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT23B10_2003" : [ - "JF909173" - ], - "Hirschia_baltica_ATCC_49814" : [ - "NC_012982", - "NC_012983" - ], - "Rice_stripe_virus__Zhejiang" : [ - "DQ333942", - "DQ333943", - "DQ333944", - "DQ333945" - ], - "Banana_bunchy_top_virus__TO208" : [ - "JF957689", - "JF957677", - "JF957653", - "JF957629", - "JF957641", - "JF957665" - ], - "Maize_streak_virus__MSV_B3_Re_BasA_R1_2006" : [ - "EU628615" - ], - "Strawberry_polerovirus_1__AB5301" : [ - "NC_025435" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V239_2005" : [ - "EU155347" - ], - "Tanay_virus__11_3" : [ - "KF425262" - ], - "Hepatitis_B_virus__AIDS26" : [ - "JQ801481" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0128" : [ - "KP759677" - ], - "Hepatitis_B_virus__C149" : [ - "EU939596" - ], - "Foot_and_mouth_disease_virus___type_O_O1_BFS_o1bfs46_iso46" : [ - "AY593816" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1211_2007" : [ - "EU596498" - ], - "Staphylococcus_phage_53" : [ - "NC_007049" - ], - "Hepatitis_B_virus_1130_4" : [ - "KR014005" - ], - "Lettuce_mosaic_virus__Yuhang" : [ - "AJ306288" - ], - "Japanese_encephalitis_virus__014178" : [ - "EF623987" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_USA_277NJ1935_1935" : [ - "KJ469566" - ], - "Wheat_dwarf_virus__HBSJZ08_1" : [ - "KJ536132" - ], - "Hepatitis_B_virus__HBV16" : [ - "KC875316" - ], - "Human_immunodeficiency_virus_1__95CM_1816" : [ - "AF492624" - ], - "Hepatitis_B_virus__M84" : [ - "GQ924647" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1941_2008" : [ - "FJ410264" - ], - "Human_immunodeficiency_virus_1__HNCS102056" : [ - "JX574661" - ], - "Dengue_virus_2__DENV_2_IND_969201_1996" : [ - "JQ922549" - ], - "Dengue_virus_1_D1_Hu_Tokyo_NIID111_2014" : [ - "LC011946" - ], - "Newcastle_disease_virus__GD09_2" : [ - "HQ317394" - ], - "OkLCV_satDNA_10__Amman" : [ - "JX649952" - ], - "Chilli_leaf_curl_virus__Narwan" : [ - "EU939533" - ], - "SFTS_virus_HNXY_31_HNXY_31" : [ - "KC292283", - "KC292310", - "KC292336" - ], - "Tomato_spotted_wilt_virus__NC_7" : [ - "AY744490" - ], - "Garlic_common_latent_virus__WA_1" : [ - "NC_016440" - ], - "Porcine_circovirus_2__Sch201401" : [ - "KM272211" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V64_2003" : [ - "EU256021" - ], - "Hepatitis_B_virus__PG_3" : [ - "KF471659" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_88E_082_01_1988" : [ - "KP258719" - ], - "Hepatitis_B_virus__PRC6064" : [ - "KF779378" - ], - "Southern_rice_black_streaked_dwarf_virus__DY1" : [ - "KJ493779", - "KJ513440" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK15" : [ - "KF287142" - ], - "Echovirus_E7_Wallace" : [ - "AF465516", - "AY302559" - ], - "Sweet_potato_caulimo_like_virus__Mad1" : [ - "NC_015328" - ], - "Agropyron_mosaic_virus_ND402" : [ - "NC_005903" - ], - "Hepatitis_B_virus__C130" : [ - "EU859939", - "EU939632" - ], - "Pseudomonas_aeruginosa_NCGM2_S1" : [ - "NC_017549" - ], - "Jonesia_denitrificans_DSM_20603" : [ - "NC_013174" - ], - "Hepatitis_B_virus__HBV86" : [ - "KC875302" - ], - "Banana_streak_VN_virus_Acuminata_Vietnam" : [ - "NC_007003" - ], - "Murine_polyomavirus_strain_BG_BG" : [ - "NC_001515" - ], - "Porcine_circovirus_1__Aust_1" : [ - "AY754012" - ], - "Begomovirus_associated_DNA_II" : [ - "NC_006956" - ], - "Hepatitis_B_virus__2468" : [ - "FJ386650" - ], - "JC_polyomavirus__SW_3" : [ - "AB048575" - ], - "Chikungunya_virus_CO392_95" : [ - "HM045796" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SI3C_5" : [ - "FJ914400" - ], - "Cucumber_mosaic_virus_satellite_RNA__N1_02_satRNA_339small" : [ - "JF918971" - ], - "Alfuy_virus_MRM3929" : [ - "AY898809" - ], - "Dengue_virus_3__PF92_4190" : [ - "AY744684" - ], - "Norovirus_Hu_NLV_Oxford_B4S4_2002_UK__Hu_NLV_Oxford_B4S4_2002_UK" : [ - "AY587986" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_92E_119_01_1992" : [ - "KP258711" - ], - "Bluetongue_virus_2__80273" : [ - "DQ191267" - ], - "JC_polyomavirus__Sam_8" : [ - "AB127343" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2264_2006" : [ - "FJ639824" - ], - "Clostridium_botulinum_F_Langeland" : [ - "NC_009700", - "NC_009699" - ], - "WU_Polyomavirus__B9104" : [ - "GU296389" - ], - "Bacillus_phage_BigBertha" : [ - "NC_022769" - ], - "Enterovirus_A71__EV141_06" : [ - "HQ647171" - ], - "Rickettsia_typhi_Wilmington" : [ - "NC_006142" - ], - "Hepatitis_B_virus__HK75" : [ - "DQ089756" - ], - "Torque_teno_sus_virus_1a__TTV1Gx3_1" : [ - "HM633253" - ], - "Rickettsia_massiliae_AZT80" : [ - "NC_016931", - "NC_016939" - ], - "Southern_rice_black_streaked_dwarf_virus__Son_La1" : [ - "KM454852" - ], - "HBV_genotype_G__MEX921M" : [ - "AB625343" - ], - "Propionibacterium_phage_Pacnes_2012_15" : [ - "NC_027371" - ], - "Hepatitis_B_virus_ayw4_Bas" : [ - "X75657" - ], - "Triticum_mosaic_virus" : [ - "FJ669487" - ], - "Cyanophage_KBS_S_2A_KBS_S_2A" : [ - "NC_020854" - ], - "Ludwigia_leaf_distortion_betasatellite__Srikakulam_South_India" : [ - "FJ159273" - ], - "BK_polyomavirus__SJH_LG_309" : [ - "JN192439" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1992_2003" : [ - "FJ639678" - ], - "Hepatitis_B_virus__I_T76" : [ - "GU456665" - ], - "Banana_bunchy_top_virus__Etawah" : [ - "DQ656119" - ], - "Hepatitis_B_virus__CAR060" : [ - "AM494696" - ], - "Human_immunodeficiency_virus_1__04ZASK132B1" : [ - "DQ093594" - ], - "Tomato_chlorosis_virus__IS17" : [ - "KP114525", - "KP114535" - ], - "Saffold_virus__Pak_3164" : [ - "AB747251" - ], - "Bluetongue_virus__BT17_298" : [ - "AY426597" - ], - "Hepatitis_B_virus__F2S_C3" : [ - "AB471853" - ], - "Human_immunodeficiency_virus_1__03ZASK005B2" : [ - "DQ011175" - ], - "Blainvillea_yellow_spot_virus__BR_Jun1_09" : [ - "JX871394" - ], - "West_Nile_virus__WNV_1_US_BID_V5223_2008" : [ - "JF920751" - ], - "Cauliflower_mosaic_virus__IRN13" : [ - "AB863148" - ], - "Hepatitis_delta_virus__NK" : [ - "EF514904" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL128A" : [ - "AB985325", - "AB985558" - ], - "Hepatitis_B_virus_UZNVC6_UZNVC6" : [ - "AB222713" - ], - "West_Nile_virus__WNV_1_US_BID_V4216_2004" : [ - "HM488144" - ], - "Human_adenovirus_24" : [ - "JN226751" - ], - "Porcine_circovirus_2" : [ - "AY035820", - "EU386606", - "HM623764", - "AY713470", - "AY094619", - "JF290418", - "FR823451", - "AY699793", - "AY177626", - "JN660055", - "DQ195679" - ], - "Temperate_phage_phiNIH1_1" : [ - "NC_003157" - ], - "Potato_virus_Y_strain_NTN_NTN_Nicola" : [ - "AJ890346" - ], - "Human_herpesvirus_5_BE_33_2011" : [ - "KP745674" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G6089_1" : [ - "KR105345" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d2om2" : [ - "HQ890535" - ], - "Mokola_virus__RV1021" : [ - "KF155008" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y36" : [ - "AJ579354" - ], - "Lactococcus_lactis_cremoris_MG1363" : [ - "NC_009004" - ], - "Hepatitis_B_virus__WY_NNJ_1" : [ - "JX504539" - ], - "Human_immunodeficiency_virus_1__B" : [ - "HM776939" - ], - "Dengue_virus_1__DENV_1_VN_BID_V790_2007" : [ - "EU482716" - ], - "Hepatitis_B_virus__Patient_H2" : [ - "HPBH2B" - ], - "Adeno_associated_virus___4__ATCC_VR_646" : [ - "NC_001829" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH42_2011" : [ - "KM188453" - ], - "Staphylococcus_phage_Fi200W" : [ - "JX080303" - ], - "Porcine_circovirus_2_Fd6" : [ - "AY321998" - ], - "Beak_and_feather_disease_virus__BFDV_B_PL_1036_2010" : [ - "JX221003" - ], - "JC_polyomavirus__RH_7" : [ - "AB262408" - ], - "Hepatitis_B_virus__I_T56" : [ - "GU456671" - ], - "Tomato_yellow_leaf_curl_virus__ZJ6" : [ - "AM698118" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1990_2003" : [ - "GQ868618" - ], - "Hollyhock_leaf_curl_virus___Pakistan_20_4_06__Faisalabad3" : [ - "FR772082" - ], - "Beak_and_feather_disease_virus__CS12_0364_OBP_TAS_B10083" : [ - "KF188694" - ], - "Turnip_mosaic_virus__AUST21" : [ - "AB989637" - ], - "Micrococcus_luteus_NCTC_2665" : [ - "NC_012803" - ], - "Salmonella_enterica_serovar_Weltevreden_2007_60_3289_1" : [ - "NT_187128", - "NT_187108", - "NT_187131", - "NT_187135", - "NT_187071", - "NT_187092", - "NT_187075", - "NT_187126", - "NT_187083", - "NT_187084", - "NT_187080", - "NT_187125", - "NT_187089", - "NT_187093", - "NT_187123", - "NT_187101", - "NT_187112", - "NT_187088", - "NT_187124", - "NT_187077", - "NT_187087", - "NT_187118", - "NT_187090", - "NT_187082", - "NT_187106", - "NT_187073", - "NT_187099", - "NT_187111", - "NT_187133", - "NT_187134", - "NT_187072", - "NT_187095", - "NT_187107", - "NT_187094", - "NT_187074", - "NT_187100", - "NT_187076", - "NT_187081", - "NT_187117", - "NT_187069", - "NT_187098", - "NT_187127", - "NT_187102", - "NT_187085", - "NT_187116", - "NT_187096", - "NT_187103", - "NT_187113", - "NT_187086", - "NT_187104", - "NT_187121", - "NT_187070", - "NT_187129", - "NT_187130", - "NT_187109", - "NT_187120", - "NT_187110", - "NT_187119", - "NT_187078", - "NT_187122", - "NT_187097", - "NT_187091", - "NT_187079", - "NT_187114", - "NT_187115", - "NT_187105", - "NT_187132" - ], - "Porcine_circovirus_2__1313_09_11" : [ - "HQ591380" - ], - "Botrytis_virus_X" : [ - "NC_005132" - ], - "Novosphingobium_PP1Y" : [ - "NC_015582", - "NC_015583", - "NC_015580", - "NC_015579" - ], - "Pepper_yellow_vein_Mali_virus__LJ1" : [ - "AM691548" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SD23983" : [ - "JX258843" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SP" : [ - "AF184212" - ], - "Hepatitis_B_virus__Ag51" : [ - "KJ843211" - ], - "Watermelon_chlorotic_stunt_virus__JO3_625" : [ - "KM820235" - ], - "Bovine_parainfluenza_virus_3_BN_1" : [ - "AB770484" - ], - "Hepatitis_B_virus__3791v1" : [ - "KF922406" - ], - "Enterobacteria_phage_T4" : [ - "NC_000866" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4980_serum" : [ - "HQ891009" - ], - "Human_papillomavirus_type_6__86" : [ - "HG793894" - ], - "Campylobacter_jejuni_PT14" : [ - "NC_018709" - ], - "Rice_black_streaked_dwarf_virus__SDDZ5" : [ - "HM209071" - ], - "Borna_disease_virus_No_98" : [ - "AJ311524" - ], - "Human_parvovirus_B19__KU4" : [ - "KM393165" - ], - "Enterobacteria_phage_ES18" : [ - "NC_006949" - ], - "Bamboo_mosaic_virus_satellite_RNA_DLIII_2" : [ - "AY205179" - ], - "Cotton_leaf_curl_virus_betasatellite__S_11" : [ - "KM103522" - ], - "Cotton_leaf_curl_Multan_virus____Ludhiana_04" : [ - "AY765257" - ], - "Sweet_potato_leaf_curl_Guangxi_virus__China_Guangxi5_2011" : [ - "NC_024693" - ], - "HIV_1_M_02CD_MBTB047__02CD_MBTB047" : [ - "FM877782" - ], - "Feline_morbillivirus_OtJP001" : [ - "NC_025264" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_191_2011" : [ - "KJ686308" - ], - "Tomato_severe_rugose_virus_Petrolina_de_Goias" : [ - "NC_009607" - ], - "Hepatitis_B_virus__272" : [ - "JQ040144" - ], - "Newcastle_disease_virus_Mukteswar" : [ - "JF950509", - "EF201805" - ], - "Turkey_coronavirus__MG10" : [ - "NC_010800" - ], - "Norovirus_swine_GII_OH_QW125_03_US_OH_QW125_03_US" : [ - "AY823305" - ], - "Porcine_parvovirus_HNAY" : [ - "KJ201927" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19077_K39924_2007" : [ - "KR135305" - ], - "Middle_East_respiratory_syndrome_coronavirus__MERS_CoV_KOR_KNIH_002_05_2015" : [ - "KT029139" - ], - "Hepatitis_B_virus__patient_1185" : [ - "AF418674", - "AF418675" - ], - "Tomato_leaf_curl_China_betasatellite__SC65" : [ - "GU199589" - ], - "Streptococcus_pyogenes_M1_476" : [ - "NC_020540" - ], - "Hepatitis_B_virus__LAMr_Pt__16_Adefovir_treated_Pt__11" : [ - "AB367407" - ], - "Banana_streak_UA_virus" : [ - "NC_015502" - ], - "Human_poliovirus_1_NIE1218342" : [ - "KJ170463" - ], - "Enterobacteria_phage_K30" : [ - "NC_015719" - ], - "Enterobacteria_phage_WA3" : [ - "DQ079897" - ], - "Human_poliovirus_1__ISR1318573" : [ - "KJ019832" - ], - "Cucumber_mosaic_virus_satellite_RNA_Pz" : [ - "EF363688" - ], - "East_African_cassava_mosaic_virus_Uganda_BFA_2008_EACMV_Ug2_Svr_Burkina_Faso_Koubri_2008" : [ - "FM877474" - ], - "Chrysanthemum_virus_B__Uttar_Pradesh" : [ - "AM765837" - ], - "Bacillus_amyloliquefaciens_LL3" : [ - "NC_017190", - "NC_017189" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Munthal_EL39_2006___EL39" : [ - "GU111964" - ], - "Human_poliovirus_2_NIE1118424" : [ - "KJ170534" - ], - "Hepatitis_B_virus__HK751" : [ - "DQ089796" - ], - "Burkholderia_ambifaria_MC40_6" : [ - "NC_010553", - "NC_010551", - "NC_010552", - "NC_010557" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD244_2013" : [ - "KM229883" - ], - "Human_herpesvirus_5_CZ_3_2012" : [ - "KP745685" - ], - "Norovirus_Hu_GII_20164_2009_VNM_Hu_GII_20164_2009_VNM" : [ - "KC409260" - ], - "Hepatitis_B_virus__C56" : [ - "EU859952", - "EU939551" - ], - "Halogeometricum_borinquense_DSM_11551" : [ - "NC_014729", - "NC_014737", - "NC_014735", - "NC_014731", - "NC_014732", - "NC_014736" - ], - "Flock_house_virus" : [ - "NC_004144", - "NC_004146" - ], - "Chlorobium_phaeobacteroides_BS1" : [ - "NC_010831" - ], - "Echovirus_E3_OC10_448" : [ - "AB647317" - ], - "Hepatitis_B_virus_B0503341_PTK_F" : [ - "AP011084" - ], - "Simian_immunodeficiency_virus__SIVgorCP2135con" : [ - "FJ424863" - ], - "Wheat_dwarf_virus____Yunnan_Kunming___YNKM06_2" : [ - "EF536886" - ], - "Human_papillomavirus_type_35__Rw656" : [ - "HQ537721" - ], - "West_Nile_virus__WNV_1_US_BID_V6701_2006" : [ - "KJ501529" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V445_2006" : [ - "EU155233" - ], - "Human_immunodeficiency_virus_1__C_96BW12_10" : [ - "AF110972" - ], - "Lactobacillus_plantarum_16" : [ - "NC_021528", - "NC_021525", - "NC_021520", - "NC_021526", - "NC_021527", - "NC_021516", - "NC_021519", - "NC_021514", - "NC_021515", - "NC_021517", - "NC_021518" - ], - "Tomato_yellow_leaf_curl_virus_Israel_EE_Imp_5_08__Imported_5" : [ - "HF548826" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI36_12_DNA_B" : [ - "HE979794" - ], - "Viral_hemorrhagic_septicemia_virus_SE_SVA_1033_3F" : [ - "AB839748" - ], - "Enterobacteria_phage_Qbeta_TW18" : [ - "FJ483840" - ], - "Tomato_leaf_curl_Taiwan_virus__15_7" : [ - "GU723711" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1229_2007" : [ - "EU482624" - ], - "JC_polyomavirus__JCV135_10" : [ - "JF424842" - ], - "Omsk_hemorrhagic_fever_virus_Kubrin" : [ - "AY438626" - ], - "Human_immunodeficiency_virus_1__Fj055" : [ - "EF036527" - ], - "Porcine_circovirus_2_10ZJ" : [ - "HQ395059" - ], - "Hepatitis_B_virus_06_23" : [ - "AB480038" - ], - "Escherichia_coli_O157_H7_EC4115" : [ - "NC_011353", - "NC_011351", - "NC_011350" - ], - "Madariaga_virus_MADV_Equus_ferus_caballus_PAN_MARV207963_1958" : [ - "KJ469581" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1971_2008" : [ - "FJ410284" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4938_spleen" : [ - "HQ671677" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10HN_GD" : [ - "JX192632" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K5" : [ - "AJ717559" - ], - "Potato_virus_Y_Wilga_MV175__MV175" : [ - "HE608964" - ], - "Usutu_virus_V82" : [ - "KJ438773" - ], - "Merkel_cell_polyomavirus__HB039C" : [ - "KC571692" - ], - "Merkel_cell_polyomavirus__915F_06_004_BG1" : [ - "JQ479317" - ], - "Hepatitis_B_virus__AD2004" : [ - "JN792902" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo181_08" : [ - "KC706548" - ], - "Intrasporangium_calvum_DSM_43043" : [ - "NC_014830" - ], - "Halovirus_HCTV_5" : [ - "NC_021327" - ], - "Rift_Valley_fever_virus_CAR_R1622" : [ - "DQ380160", - "DQ380219", - "DQ375423" - ], - "Torque_teno_virus__tth21" : [ - "AJ620217" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLU8666_2007" : [ - "KJ672612" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0069" : [ - "KP759733" - ], - "Human_immunodeficiency_virus_1__03ZAPS044MB1" : [ - "DQ396384" - ], - "Maciel_virus_13796" : [ - "AF482716" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT04E67_2005" : [ - "JF909166" - ], - "Mycobacterium_phage_Faith1_Faith1" : [ - "NC_015584" - ], - "Getah_virus__Kochi_01_2005" : [ - "AB859822" - ], - "Human_metapneumovirus_HMPV_AUS_145371295_2003_A" : [ - "KC403977" - ], - "Feline_calicivirus__UTCVM_H2" : [ - "AY560117" - ], - "Coxsackievirus_B4_J_V_B__Benschoten" : [ - "X05690" - ], - "Human_immunodeficiency_virus_1__TW_D4" : [ - "EF078278" - ], - "Muricauda_ruestringensis_DSM_13258" : [ - "NC_015945" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00064_2000_G1P_8" : [ - "JN651800", - "JN651793", - "JN651795", - "JN651796", - "JN651794", - "JN651799", - "JN651798", - "JN651802", - "JN651792", - "JN651801", - "JN651797" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__Asial_HN_2006" : [ - "KC462884" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_M114B_2005" : [ - "JQ319175", - "JQ319171" - ], - "Pigeon_adenovirus_1_IDA4" : [ - "NC_024474" - ], - "Hepatitis_B_virus__N12_C_4131B" : [ - "KJ173440" - ], - "Norovirus_Hu_GII_4_Fukui5_2007_JP_Hu_GII_4_Fukui5_2007_JP" : [ - "AB541249" - ], - "Human_immunodeficiency_virus_1__05ZASK244B1" : [ - "DQ369992" - ], - "Norovirus_Hu_GII_4_Niigata4_2008_JP_Hu_GII_4_Niigata4_2008_JP" : [ - "AB541316" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1708_2007" : [ - "FJ024275" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V12_2004" : [ - "EU862828" - ], - "Sweet_potato_C6_virus__Sosa_29" : [ - "NC_018448" - ], - "Canine_distemper_virus__SD_14_7" : [ - "KP765763" - ], - "Maize_chlorotic_mottle_virus__Nebraska" : [ - "EU358605" - ], - "Human_papillomavirus_type_16_CU15" : [ - "JQ004099" - ], - "Hepatitis_B_virus_AH_1_ON980424" : [ - "AB113879" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP3B" : [ - "JN013993" - ], - "Hepatitis_B_virus__TP67" : [ - "KF192832" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2254_2005" : [ - "FJ639814" - ], - "Porcine_circovirus_2_ADDLPP_10069" : [ - "EU594437" - ], - "Dengue_virus_2__DENV_2_NI_BID_V3232_2007" : [ - "JX079690" - ], - "Eragrostis_curvula_streak_virus__ECSV_ZA_Gre4_Ky3_2008" : [ - "FJ665630" - ], - "Hepatitis_A_virus__HAV12" : [ - "EU526089" - ], - "West_Nile_virus__WNV_1_US_BID_V4098_2008" : [ - "HM488204" - ], - "Xanthomonas_axonopodis_citrumelo_F1" : [ - "NC_016010" - ], - "Tobacco_rattle_virus__PpK20" : [ - "NC_003805" - ], - "Chapare_mammarenavirus_810419" : [ - "NC_010562", - "NC_010563" - ], - "Hepatitis_B_virus_subgenotype_A3_genotype_E__56325" : [ - "HF571060" - ], - "Human_immunodeficiency_virus_1__ZM247F_flA12" : [ - "FJ496196" - ], - "Hepatitis_B_virus__C15" : [ - "FJ349236", - "EU939627" - ], - "Dengue_virus_3" : [ - "CS805342", - "AY662691", - "JN368477" - ], - "Hepatitis_B_virus__277" : [ - "JQ040145" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_93I_159A_01_1993" : [ - "KJ723484" - ], - "Lisianthus_necrosis_virus_Zantedeschia" : [ - "AM711119" - ], - "Papaya_ringspot_virus_W__CI" : [ - "AY027810" - ], - "Human_immunodeficiency_virus_2_HIV_2ALI_ALI" : [ - "AF082339" - ], - "Rice_stripe_virus__HZ" : [ - "AY186789", - "AF513505", - "AY186788" - ], - "Hepatitis_B_virus__SHB31" : [ - "KJ598662" - ], - "Klebsiella_pneumoniae_rhinoscleromatis_SB3432" : [ - "NC_021232", - "NC_021231" - ], - "Duck_circovirus__FC34_2012" : [ - "KC460526" - ], - "African_cassava_mosaic_virus__MG_MG648B2_11" : [ - "KJ887743" - ], - "Hepatitis_B_virus__I42" : [ - "FJ562332" - ], - "Porcine_circovirus_2__HN8_1_421" : [ - "KC473168" - ], - "Ageratum_enation_virus__TC364" : [ - "KC818421" - ], - "Tomato_mottle_leaf_curl_Zulia_virus__217L" : [ - "NC_015122" - ], - "West_Nile_virus__WNV_1_US_BID_V6176_2001" : [ - "KJ501235" - ], - "Blueberry_scorch_virus__BC_2" : [ - "AY941199" - ], - "Sindbis_virus" : [ - "NC_001547" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8490_2001" : [ - "KJ627708" - ], - "Hepatitis_B_virus__C211" : [ - "EU939610" - ], - "Merkel_cell_polyomavirus_TKS" : [ - "FJ464337" - ], - "Porcine_circovirus_2_Bj2010LC" : [ - "JQ002671" - ], - "Human_poliovirus_2_NIE0210766" : [ - "DQ890385" - ], - "Human_immunodeficiency_virus_1__00KE_KER2021" : [ - "AF457058" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JSyx" : [ - "EU939312" - ], - "Infectious_bursal_disease_virus__GZ_96" : [ - "AY598356", - "AY598355" - ], - "JC_polyomavirus__AM_18" : [ - "AB074575" - ], - "West_Nile_virus__WNV_1_US_BID_V6487_2003" : [ - "KJ501324" - ], - "JC_polyomavirus_UNN2_cns5" : [ - "KJ659287" - ], - "Hepatitis_B_virus__594" : [ - "AY217373" - ], - "Hepatitis_B_virus__I171" : [ - "FJ562296" - ], - "Rabies_virus__WA0173" : [ - "JQ685931" - ], - "Tobacco_mosaic_virus__Beipiao" : [ - "HE818412" - ], - "Hepatitis_B_virus__27439" : [ - "AY934771" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140729" : [ - "KR653286" - ], - "Heliothis_armigera_cypovirus_14" : [ - "DQ242048", - "DQ388474", - "DQ388476", - "DQ388477", - "DQ017080", - "DQ388475" - ], - "African_cassava_mosaic_virus__CF_CF63BN1_07" : [ - "KJ887602" - ], - "Human_immunodeficiency_virus_1_QJ001" : [ - "KC914396" - ], - "Hepatitis_B_virus_362_18" : [ - "KR013915" - ], - "Human_rhinovirus_B86_ATCC_VR_1196" : [ - "FJ445164" - ], - "Human_immunodeficiency_virus_1__99SE_MP1299" : [ - "AJ302646" - ], - "Dengue_virus_2__E1433Y12" : [ - "KM279576" - ], - "Enterovirus_A_GZ2010_118_EV71_Guangzhou_118_2010" : [ - "HQ456308" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00100_1984_NEW_P67H9F15" : [ - "KF268206" - ], - "Porcine_astrovirus_5_33_USA" : [ - "JF713711" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__PT3_7" : [ - "GU723747" - ], - "Banana_streak_OL_virus__MP" : [ - "KJ013506" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0160" : [ - "KP759621" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2804_2007" : [ - "FJ882553" - ], - "Human_enterovirus_C109__NICA08_4327" : [ - "GQ865517" - ], - "Torque_teno_sus_virus_1b__GD_China_2009_TTV2_11" : [ - "JF937658" - ], - "Dengue_virus_1__DENV_1_BR_BID_V2392_2005" : [ - "FJ850084" - ], - "Hepatitis_B_virus_GD14" : [ - "EU155828" - ], - "Thermotoga_RQ2" : [ - "NC_010483" - ], - "Porcine_circovirus_2_PP_8329" : [ - "EU594440" - ], - "Banana_streak_IM_virus__MP" : [ - "KJ013508" - ], - "Hepatitis_B_virus__IND_2008_3" : [ - "KF214665" - ], - "Hepatitis_B_virus__HK2032" : [ - "DQ089782" - ], - "Human_immunodeficiency_virus_1__CH58E_flA6" : [ - "FJ495938" - ], - "Foot_and_mouth_disease_virus___type_C__C_S8p460d417" : [ - "DQ409189" - ], - "Sweet_potato_leaf_curl_Sao_Paulo_virus__ZA_WP_2011__SPLCSPV__ZA_WP_2011__PstI_012" : [ - "JQ621844" - ], - "Hepatitis_B_virus__E2_4" : [ - "GU815694" - ], - "Lujo_mammarenavirus" : [ - "NC_012777", - "JX017360", - "NC_012776" - ], - "Lujo_mammarenavirus_IGR140" : [ - "JX017362" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP1A" : [ - "JN013974" - ], - "Porcine_circovirus_2__FS1" : [ - "KC514985" - ], - "Okra_yellow_vein_mosaic_virus__Aurangabad" : [ - "GU181356" - ], - "Vervet_monkey_polyomavirus_1__VMS96" : [ - "NC_019844" - ], - "Bluetongue_virus_2_ITL2002_07__Italy_2002" : [ - "AM773688" - ], - "Lamb_rotavirus" : [ - "AY219873", - "ROTVP7X", - "ROTVP4X" - ], - "Tomato_leaf_curl_Taiwan_virus__ZJ20" : [ - "AM698112" - ], - "Classical_swine_fever_virus__LK_VNIVViM" : [ - "KM522833" - ], - "Sugarcane_yellow_leaf_virus__PER_YL1b" : [ - "AM072753" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2382_2002" : [ - "FJ850076" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4166_midgut" : [ - "HQ705671" - ], - "Hepatitis_B_virus_F1b" : [ - "KM233681" - ], - "Hepatitis_B_virus__PatC" : [ - "KP288875" - ], - "Watermelon_chlorotic_stunt_virus__JO2_517" : [ - "KM820217" - ], - "Hepatitis_B_virus__FEN86" : [ - "JF440014" - ], - "Dengue_virus_2__DENV_2_VN_BID_V709_2006" : [ - "EU482646" - ], - "Hepatitis_C_virus_subtype_1b_MD7_1" : [ - "AF165057" - ], - "Dengue_virus_1__RR57" : [ - "JQ917404" - ], - "Hepatitis_B_virus__M86" : [ - "GQ924649" - ], - "Chlamydia_trachomatis_E_11023" : [ - "NC_017431" - ], - "Dengue_virus_3__DENV_3_LK_BID_V2404_1989" : [ - "KF955474" - ], - "JC_polyomavirus__SL_4" : [ - "AB262400" - ], - "Salmonella_phage_epsilon15" : [ - "NC_004775" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V155_2003" : [ - "EU155225" - ], - "Enterococcus_faecalis_Symbioflor_1" : [ - "NC_019770" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GDQY1VP80" : [ - "JN387273" - ], - "Human_papillomavirus_type_31__Z14" : [ - "HQ537666" - ], - "West_Nile_virus__WNV_USA_BID_G15504" : [ - "JX503095" - ], - "Hepatitis_B_virus__HBV_VH34_1" : [ - "AB205125" - ], - "Hepatitis_B_virus__20Y02HCC" : [ - "AB014379" - ], - "Human_papillomavirus_type_59__Qv25808" : [ - "KC470264" - ], - "Paenibacillus_polymyxa_E681" : [ - "NC_014483" - ], - "Corynebacterium_variabile_DSM_44702" : [ - "NC_015859" - ], - "Human_immunodeficiency_virus_1__F703" : [ - "DQ886031" - ], - "Hepatitis_B_virus_1491_11" : [ - "KR014085" - ], - "Chlamydophila_psittaci_C19_98" : [ - "NC_017291" - ], - "Porcine_circovirus_2__A4160" : [ - "JF317571" - ], - "Hepatitis_C_virus__TV257" : [ - "JX183551" - ], - "Hepatitis_B_virus__PNF4938" : [ - "KF779346" - ], - "Hepatitis_B_virus__MMA_15" : [ - "AM421543" - ], - "Barley_yellow_dwarf_virus_PAV__015" : [ - "EF521833" - ], - "Maize_streak_virus__MSV_A_ZW_Mas4_Mic6_1993" : [ - "FJ882145" - ], - "Human_rhinovirus_A41" : [ - "DQ473491" - ], - "Bean_golden_mosaic_virus__BR_Mes2_10" : [ - "JN419008" - ], - "Tomato_yellow_leaf_curl_China_virus_To_Y25___Y25" : [ - "AJ457985" - ], - "Maize_streak_virus__MSV_A_BF_Oua2_BF3_2008" : [ - "HQ693285" - ], - "Mycoplasma_haemofelis_Ohio2" : [ - "NC_017520" - ], - "St__Louis_encephalitis_virus__Imperial_Valley" : [ - "JF460774" - ], - "Hepatitis_B_virus__Vac05_M_m617" : [ - "KJ173389" - ], - "Bean_yellow_mosaic_virus__AR98C" : [ - "HG970864" - ], - "Dengue_virus_2__DENV_2_TH_BID_V4325_2001" : [ - "GU131886" - ], - "Murine_hepatitis_virus_S" : [ - "GU593319" - ], - "SARS_coronavirus_ZJ02" : [ - "EU371559" - ], - "Tick_borne_encephalitis_virus_Tomsk_M83" : [ - "KJ739731" - ], - "Porcine_circovirus_2_CF" : [ - "HM038019" - ], - "Enterovirus_C96__FIN04_7" : [ - "FJ751914" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_83E_198_01_1983" : [ - "KP258718" - ], - "Hepatitis_B_virus__MOD_4614" : [ - "GQ183465" - ], - "Goose_parvovirus_82_0321" : [ - "EU583390" - ], - "Hepatitis_B_virus__UdeA_083" : [ - "FJ589067" - ], - "Macroptilium_yellow_spot_virus__BR_Sti21_11" : [ - "KJ939878" - ], - "Papaya_ringspot_virus_P__pFT3_NP" : [ - "JX448373" - ], - "Cotton_leaf_curl_Multan_virus__Hirs_1" : [ - "FJ218486" - ], - "Newcastle_disease_virus_chicken_Pak_Quality_Operations_Lab_SFR_611_13" : [ - "KM670337" - ], - "Newcastle_disease_virus__NDV_crested_ibis_China_Shaanxi06_2006" : [ - "KC853019" - ], - "Hepatitis_B_virus__Tibet127" : [ - "AY057948" - ], - "Avian_leukosis_virus__CAUXT01" : [ - "JF932003" - ], - "Cauliflower_mosaic_virus__TUR278" : [ - "AB863186" - ], - "Croton_yellow_vein_mosaic_virus__CYVMV_Del_Turnip" : [ - "KF888655" - ], - "Sugarcane_mosaic_virus" : [ - "NC_003398", - "AF494510" - ], - "Human_herpesvirus_5_BE_14_2010" : [ - "KP745721" - ], - "Escherichia_coli_O83_H1_NRG_857C" : [ - "NC_017634", - "NC_017659" - ], - "Newcastle_disease_virus_chicken_Sukorejo_019_10" : [ - "HQ697255" - ], - "Pseudomonas_syringae_B728a" : [ - "NC_007005" - ], - "SFTS_virus_SD4_SD4" : [ - "HM802202", - "HM802203", - "HM802204" - ], - "Rice_dwarf_virus" : [ - "RDVASEG6", - "RDVSEG3", - "RDVS9", - "S72083", - "S72085", - "RDVSEG9", - "RDVSEG4", - "AY305383", - "RDVGS12", - "RDVS12" - ], - "Norovirus_Hu_GII_20182_2009_VNM_Hu_GII_20182_2009_VNM" : [ - "KC409266" - ], - "Human_papillomavirus_type_59__Qv33993" : [ - "KC470265" - ], - "Gallid_herpesvirus_2_GA" : [ - "AF147806" - ], - "Human_papillomavirus_type_53__Qv04467" : [ - "EF546472" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8518_2004" : [ - "KJ627719" - ], - "Pepper_yellow_mosaic_virus_DF_Pi_15" : [ - "NC_014327" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1823_2007" : [ - "FJ432745" - ], - "Hepatitis_B_virus__F3_5" : [ - "GU815742" - ], - "Human_poliovirus_1_NIE0918311" : [ - "KJ170467" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2076_2001" : [ - "KF955463" - ], - "Barley_yellow_mosaic_virus_2__resistance_breaking__BRZ" : [ - "AJ515482", - "AJ515488" - ], - "Hepatitis_B_virus__dxn1039" : [ - "KC774481" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V289_2006" : [ - "EU155365" - ], - "Murine_adenovirus_3" : [ - "NC_012584" - ], - "BK_polyomavirus_SWC_2" : [ - "AB269864" - ], - "Tobacco_yellow_crinkle_virus" : [ - "NC_015627" - ], - "West_Nile_virus__WNV_1_US_BID_V5203_2006" : [ - "JF920733" - ], - "Hepatitis_B_virus__IHHFA1" : [ - "KJ533388" - ], - "SARS_coronavirus_MA15_MA15_d2ym3" : [ - "JF292908" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP00418_2011" : [ - "KJ627359" - ], - "Cauliflower_mosaic_virus__IRN20" : [ - "AB863155" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3680_2007" : [ - "HM631855" - ], - "Hepatitis_B_virus__cxa2057" : [ - "KC774323" - ], - "Spleen_focus_forming_virus" : [ - "NC_001500" - ], - "African_cassava_mosaic_virus__B5J1" : [ - "JN053422" - ], - "Bluetongue_virus_7__RSArrrr_07" : [ - "AJ586704" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD211_2013" : [ - "KM229861" - ], - "Torque_teno_sus_virus_1a__GD_China_2009_TTV1_17" : [ - "JF937662" - ], - "Hepatitis_B_virus__9_D1_5_9" : [ - "GU815654" - ], - "Hepatitis_B_virus__cxa2073" : [ - "KC774328" - ], - "Dengue_virus_2__MKS_2032" : [ - "KC762675" - ], - "Puumala_virus_CG1820" : [ - "PUULRNA" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2011_05_23_9" : [ - "KC862569" - ], - "Dengue_virus_2__DENV_2_NI_BID_V530_2005" : [ - "EU482754" - ], - "Tomato_leaf_curl_Joydebpur_virus" : [ - "DQ673859", - "NC_007723" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__1412" : [ - "KF444101" - ], - "Murine_coronavirus_inf_MHV_A59_inf_MHV_A59" : [ - "FJ647225" - ], - "Hepatitis_B_virus__D4_50064" : [ - "FJ692533" - ], - "Enterovirus_D68_NYC403" : [ - "JX101846" - ], - "Rose_yellow_mosaic_virus__Minnesota" : [ - "NC_019031" - ], - "West_Nile_virus__WNV_1_US_BID_V6616_2001" : [ - "KJ501512" - ], - "Hepatitis_B_virus__IND_2009_17" : [ - "KF214673" - ], - "Torque_teno_sus_virus_1a__FJ_China_2009_TTV1_24" : [ - "JF937661" - ], - "Rabies_virus_SAD_Bern_original_var_5" : [ - "EF206714" - ], - "Melon_chlorotic_mosaic_virus__VE05_34" : [ - "KF670617", - "KF670616" - ], - "Vibrio_phage_VCY_phi" : [ - "NC_016162" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK2" : [ - "KF287133" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2750_2007" : [ - "KF921935" - ], - "Bluetongue_virus_2__10670" : [ - "DQ191263" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_L478_2006_G3P_8__L478" : [ - "KF371901", - "KF371902", - "KF371907", - "KF371904", - "KF371905", - "KF371906", - "KF371909", - "KF371903" - ], - "Rothia_mucilaginosa" : [ - "NC_013715" - ], - "Human_astrovirus_1__Oxford" : [ - "ATVPOLY6A" - ], - "Hepatitis_B_virus__E2_1" : [ - "GU815691" - ], - "Foot_and_mouth_disease_virus___type_SAT_2_SAT2_2_106_67_sat2_2_iso25" : [ - "AY593848" - ], - "Vibrio_phage_CHOED" : [ - "NC_023863" - ], - "Gayfeather_mild_mottle_virus" : [ - "NC_012134", - "NC_012136", - "NC_012135" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_CFI0033_2009" : [ - "KJ672578" - ], - "West_Nile_virus__ARC13_06" : [ - "JF957162" - ], - "Human_papillomavirus_type_6__PV2702" : [ - "JN252323" - ], - "Hepatitis_C_virus__QC193" : [ - "FJ462432" - ], - "Coxsackievirus_A5_Swartz_CA5" : [ - "AY421763" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__D8" : [ - "GU723752" - ], - "Gallid_herpesvirus_2_CU_2" : [ - "EU499381" - ], - "Beet_black_scorch_virus__Ir_Ha1" : [ - "FN543470" - ], - "Sewage_associated_circular_DNA_molecule__SaCM_6_NZ_BS3713_2012" : [ - "KM877828" - ], - "Turnip_mosaic_virus__CAR37A" : [ - "DQ648591" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_361_2012" : [ - "KP308423" - ], - "Encephalomyocarditis_virus_HB1" : [ - "DQ464063" - ], - "Tsukamurella_paurometabola_DSM_20162" : [ - "NC_014159", - "NC_014158" - ], - "West_Nile_virus__WNV_1_US_BID_V7407_2005" : [ - "KJ501119" - ], - "Chaetoceros_tenuissimus_DNA_virus__CtenDNAV06" : [ - "NC_014748" - ], - "Broad_bean_wilt_virus_2__SP1" : [ - "KC625503", - "KC625516" - ], - "Human_herpesvirus_5_BE_38_2011" : [ - "KP745705" - ], - "Wheat_dwarf_virus__SDJN07_3" : [ - "KJ536103" - ], - "Lake_Victoria_marburgvirus___Leiden_Leiden" : [ - "JN408064" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC30BP1_2009" : [ - "JF909106" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPP00544_2011_A" : [ - "KJ627416" - ], - "Hepatitis_C_virus_subtype_1b__HCV_TR1" : [ - "AF483269" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2888_2006" : [ - "FJ898410" - ], - "Enterovirus_D68_Fermon" : [ - "AY426531" - ], - "JC_polyomavirus__Luz_18" : [ - "AB113130" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_28__AHEaCV_28_NZ_3281GA_2012" : [ - "KM874363" - ], - "Beak_and_feather_disease_virus__BFDV1" : [ - "GU015012" - ], - "Mycobacterium_phage_Colbert" : [ - "GQ303259" - ], - "Staphylococcus_phage_SA12" : [ - "NC_021801" - ], - "Porcine_circovirus_2_Taizhou0512" : [ - "EU503037" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09JS" : [ - "JF268675" - ], - "Staphylococcus_phage_Sap26" : [ - "NC_014460" - ], - "Torque_teno_mini_virus_3__TLMV_NLC026" : [ - "NC_014088" - ], - "Potato_virus_Y_O_WA_13_quan" : [ - "HM590407" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kampala_Okra6" : [ - "FN554526" - ], - "Dengue_virus_1_D1_SG_05K4632DK1_2005" : [ - "EU081278" - ], - "Hepatitis_B_virus__Ag17" : [ - "KJ843179" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA38" : [ - "KF670657" - ], - "Streptococcus_uberis_0140J" : [ - "NC_012004" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V142_2004" : [ - "EU155217" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1763_2006" : [ - "FJ744742" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2879_2006" : [ - "FJ898409" - ], - "Hepatitis_B_virus__490_00_1" : [ - "EU871984" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1719_2005" : [ - "FJ024282" - ], - "Avian_leukosis_virus__SD1005" : [ - "KF562375" - ], - "West_Nile_virus__WNV_1_US_BID_V4564_2003" : [ - "HM488209" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD162_2013" : [ - "KM229827" - ], - "Porcine_circovirus_2__BD20130629" : [ - "KP824711" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3746_2008" : [ - "GQ868530" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7354_2002" : [ - "KF973335" - ], - "Norovirus_Hu_GII_20357_2009_VNM_Hu_GII_20357_2009_VNM" : [ - "KC409292" - ], - "Japanese_encephalitis_virus_90VN70" : [ - "HM228921" - ], - "Ngari_virus_Dakar_D28542_4e" : [ - "KC608154", - "KC608152" - ], - "Chuzan_virus__FO_88_2" : [ - "AB177635" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_SCC_13_0318" : [ - "KF385416" - ], - "Tomato_yellow_leaf_curl_virus__Mersin_1" : [ - "AJ812277" - ], - "Human_papillomavirus_type_6__85" : [ - "HG793893" - ], - "Foot_and_mouth_disease_virus___type_O_O3_Venezuela_o3venezuela_iso15" : [ - "AY593827" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NVSL_97_7895" : [ - "AY545985" - ], - "Norovirus_Hu_GII_4_NIHIC2_3_2010_USA_Hu_GII_4_NIHIC2_3_2010_USA" : [ - "KF712496" - ], - "Hepatitis_B_virus__H44" : [ - "KJ790200" - ], - "Hepatitis_B_virus__HCUCH3" : [ - "HM590474" - ], - "Candidatus_Arthromitus_SFB_mouse_Japan" : [ - "NC_015913" - ], - "Hepatitis_delta_virus__D43" : [ - "KJ744247" - ], - "Echovirus_E25__E25SD2010CHN" : [ - "JX976772" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0036" : [ - "KP759694" - ], - "Dengue_virus_2_DENV_2_PR_16DN_1995" : [ - "GQ398298" - ], - "Watermelon_chlorotic_stunt_virus__A" : [ - "KJ854911" - ], - "Dengue_virus_1__9808_BR_PE_10" : [ - "JX669461" - ], - "Hepatitis_B_virus__C9_1" : [ - "FJ899761" - ], - "Rhodobacter_sphaeroides_ATCC_17029" : [ - "NC_009049", - "NC_009050", - "NC_009040" - ], - "Hepatitis_B_virus__KDI35" : [ - "GQ358146" - ], - "Tomato_yellow_leaf_curl_virus__Japan_Tomigusuku_2007" : [ - "AB363566" - ], - "West_Nile_virus__WNV_1_US_BID_V6642_2002" : [ - "KJ501387" - ], - "Hepatitis_B_virus__YZ009C_e30" : [ - "KJ173383" - ], - "Hepatitis_B_virus__IR_IPI_Hi" : [ - "AY741795" - ], - "Rhinovirus_C__LZ269" : [ - "JF317013" - ], - "Lactococcus_phage_1706" : [ - "NC_010576" - ], - "Duck_adenovirus_A_127" : [ - "NC_001813" - ], - "Hepatitis_B_virus__HK1159" : [ - "DQ089777" - ], - "Pigeon_paramyxovirus_1_pi_CH_LHLJ_110813" : [ - "JX486553" - ], - "Human_bocavirus_TUN4134" : [ - "JF327788" - ], - "Broad_bean_wilt_virus_2__SP" : [ - "KC625505", - "KC625518" - ], - "Macroptilium_yellow_spot_virus__BR_Sti29_11" : [ - "KJ939886" - ], - "Hepatitis_B_virus_1463_9" : [ - "KR014076" - ], - "Porcine_circovirus_2__JZS7" : [ - "KC821783" - ], - "Listeria_phage_LP_110" : [ - "NC_021785" - ], - "Enterobacteria_phage_vB_EcoM_VR7__VR7" : [ - "NC_014792" - ], - "Hepatitis_B_virus__HBV_IF720_1" : [ - "AB205121" - ], - "Turnip_mosaic_virus__GBR27" : [ - "AB701711" - ], - "West_Nile_virus__BSL11_09" : [ - "JF957178" - ], - "Enterovirus_A71_EV71_HENAN_DC_2010" : [ - "HQ325852" - ], - "Helicobacter_pylori_F57" : [ - "NC_017367" - ], - "Hepatitis_B_virus__WY_HZ_12" : [ - "JX429897" - ], - "Human_poliovirus_2__MAD007" : [ - "AM084224" - ], - "Synechococcus_CC9902" : [ - "NC_007513" - ], - "Hepatitis_B_virus__WHJDR2" : [ - "JN257215" - ], - "Mesta_yellow_vein_mosaic_virus__India_Haringhata_2008___Haringhata_East_India" : [ - "FJ159263" - ], - "Propionibacterium_phage_PHL060L00" : [ - "NC_022338" - ], - "Dengue_virus_2__MKS_IF011" : [ - "KC762677" - ], - "Salmonella_enterica_serovar_Typhimurium_U288" : [ - "NC_021155", - "NC_021157", - "NC_021156", - "NC_021151" - ], - "Human_immunodeficiency_virus_1_94IN476" : [ - "AF286223" - ], - "Bos_grunniens_papillomavirus_type_1_QH_5" : [ - "JX174441" - ], - "Cotton_leaf_curl_Gezira_virus__KSA27" : [ - "HG530540" - ], - "Salem_virus" : [ - "NC_025386" - ], - "Hepatitis_B_virus_551_25" : [ - "KR013974" - ], - "Chlamydia_trachomatis_E_150" : [ - "NC_017439" - ], - "Murid_herpesvirus_1_AA18d" : [ - "HE610451" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_64_2012" : [ - "KJ686197" - ], - "Human_herpesvirus_2__HSV_2_JP_BID_G32586_JA1" : [ - "KR135322" - ], - "Bean_golden_mosaic_virus__BR_Vis3_11" : [ - "KJ939726" - ], - "Maize_streak_virus__MSV_A_GH_gh142_Abr_2010" : [ - "KJ699329" - ], - "Hepatitis_B_virus_06_17" : [ - "AB480036" - ], - "Hepatitis_B_virus_1368_12" : [ - "KR014041" - ], - "Human_herpesvirus_5_BE_27_2011" : [ - "KP745696" - ], - "Maize_streak_virus___A_MatC__MSV_A_MSV_MatC" : [ - "AF329883" - ], - "Arthrobacter_arilaitensis_Re117" : [ - "NC_014549", - "NC_014548", - "NC_014550" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP1A" : [ - "JN013987" - ], - "Rabbit_hemorrhagic_disease_virus__NJ_2009" : [ - "HM623309" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1235_2007" : [ - "EU482627" - ], - "Watermelon_chlorotic_stunt_virus__PA2_Q14" : [ - "KM820282" - ], - "Anguillid_herpesvirus_1_500138" : [ - "NC_013668" - ], - "Corynebacterium_glutamicum_ATCC_13032" : [ - "NC_006958" - ], - "Sida_golden_mosaic_Buckup_virus__Jamaica_St__Elizabeth_2004___Jamaica_St__Elizabeth_2004" : [ - "JX162592", - "JX162591" - ], - "Potato_virus_Y_NTN_HC_2_quan" : [ - "HM590406" - ], - "Deformed_wing_virus" : [ - "NC_004830" - ], - "Porcine_circovirus_2__TX220150113" : [ - "KP824724" - ], - "Tomato_leaf_curl_Patna_betasatellite_India_PUSA_1_2010" : [ - "HQ180393" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_51_2012" : [ - "KJ686206" - ], - "Hepatitis_B_virus__Leb24" : [ - "JN642135" - ], - "Human_poliovirus_1_NIE0918312" : [ - "KJ170484" - ], - "Canine_distemper_virus_A75_17" : [ - "AF164967" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141061" : [ - "KR653250" - ], - "Duck_hepatitis_A_virus_1_LY0801" : [ - "FJ436047" - ], - "Bacillus_cereus_AH820" : [ - "NC_011773", - "NC_011777", - "NC_011771", - "NC_011776" - ], - "Human_bocavirus_HoBV_Tokyo_JPN_13" : [ - "AB480174" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2164_1998" : [ - "FJ639737" - ], - "Human_bocavirus__HK10" : [ - "EF450726" - ], - "Hepatitis_B_virus__HE33_CHB" : [ - "JN664929" - ], - "Tipula_oleracea_nudivirus__35" : [ - "NC_026242" - ], - "Infectious_pancreatic_necrosis_virus_19G7e" : [ - "AY780930", - "AY780923" - ], - "BK_polyomavirus__FUJ_15" : [ - "AB369097" - ], - "Infectious_bronchitis_virus_ck_CH_LNM_091017" : [ - "JF330899" - ], - "Turuna_virus" : [ - "HM119432", - "HM119433", - "HM119431" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4306_2007" : [ - "GU131944" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V60_2002" : [ - "EU256018" - ], - "Coxsackievirus_A16_TS10_08" : [ - "JX068829" - ], - "Cricket_paralysis_virus__CrPV_3" : [ - "KP974707" - ], - "Synedrella_leaf_curl_alphasatellite__Synd_1" : [ - "NC_025244" - ], - "Duck_hepatitis_A_virus_1__FZ99" : [ - "JX390984" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP00386_2011" : [ - "KJ627341" - ], - "Taura_syndrome_virus__ZHZC3TSV" : [ - "DQ104696" - ], - "Rattus_norvegicus_polyomavirus_1__3690" : [ - "NC_027531" - ], - "Tomato_yellow_leaf_curl_virus__Shijiazhuang" : [ - "KF612971" - ], - "Porcine_circovirus_2_Imp_1010_Stoon" : [ - "GU049340" - ], - "Parvovirus_NIH_CQV_Co__1" : [ - "KM105951" - ], - "Cherry_green_ring_mottle_virus__P1C124" : [ - "AJ291761" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1962_2008" : [ - "FJ410278" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_IPE01246_2012" : [ - "KJ627347" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Henan_A3" : [ - "KJ019330" - ], - "Human_papillomavirus_type_35__BF25" : [ - "HQ537726" - ], - "Human_papillomavirus_type_35__QV28721" : [ - "HQ537715" - ], - "Hepatitis_B_virus__G3_12" : [ - "GU815774" - ], - "Circoviridae_7_LDMD_2013" : [ - "NC_025712" - ], - "uncultured_Sulfuricurvum_RIFRC_1" : [ - "NC_020505", - "NC_020503" - ], - "Human_poliovirus_3_NIE1018488" : [ - "KJ170591" - ], - "SARS_coronavirus_ZS_B__ZS_B" : [ - "AY394996" - ], - "Soybean_mosaic_virus_Huanghuai_strain_5_SAAS" : [ - "AJ310200" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Coimbatore_OY141_2006___OY141" : [ - "GU111986" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7357_2002" : [ - "KF973338" - ], - "Human_immunodeficiency_virus_1__C_96BW17A09" : [ - "AF110979" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH07_2010" : [ - "KM188442" - ], - "Wheat_dwarf_virus__XJWLMQ08_12" : [ - "KJ536135" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__H6_4" : [ - "GU723749" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4033_2008" : [ - "GU131791" - ], - "Rice_stripe_virus__DL" : [ - "AY185502" - ], - "Maize_streak_virus__MSV_A_GH_gh19_For_2010" : [ - "KJ699341" - ], - "Hepatitis_B_virus__SHB215" : [ - "KJ598657" - ], - "Hepatitis_B_virus_Toranomon" : [ - "AB206817" - ], - "Wheat_dwarf_virus____Yunnan_Kunming___YNKM06_4" : [ - "EF536885" - ], - "Hepatitis_B_virus__LAMr_Pt__37_Adefovir_treated_Pt__10" : [ - "AB367428" - ], - "Grapevine_leafroll_associated_virus_5__3138_03_variant" : [ - "JX559640" - ], - "Canna_yellow_streak_virus__BZ3" : [ - "KM882643" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V424_2002" : [ - "EU155319" - ], - "Japanese_encephalitis_virus_T1P1_S1" : [ - "AY303791" - ], - "Measles_virus_genotype_H1_MVi_BritishColumbia_CAN_12_10_1_H1" : [ - "KJ018970" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_195_2011" : [ - "KJ686230" - ], - "Human_metapneumovirus_HMPV_USA_TN_97_237_1997_B" : [ - "KC562222" - ], - "Pseudomonas_phage_PB1" : [ - "NC_011810" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US37" : [ - "KJ019097" - ], - "Enterovirus_C__V3_Tul_4" : [ - "HQ738299" - ], - "Francisella_tularensis_holarctica_FTNF002_00" : [ - "NC_009749" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3677_1" : [ - "KM034556" - ], - "Human_rhinovirus_A25_ATCC_VR_1135" : [ - "FJ445123" - ], - "Porcine_epidemic_diarrhea_virus_LC" : [ - "JX489155" - ], - "Streptococcus_pyogenes_MGAS315" : [ - "NC_004070" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1844_2008" : [ - "FJ410215" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_1997_19407B" : [ - "KC862576" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_10__AHEaCV_10_NZ_4985GA_2012" : [ - "KM874321" - ], - "East_African_cassava_mosaic_virus__EACMV__K41" : [ - "AJ717544" - ], - "Tomato_yellow_leaf_curl_virus_Oman__Tom_36" : [ - "KF229722" - ], - "Hepatitis_B_virus__HBV72" : [ - "KC875308" - ], - "Hepatitis_B_virus__RST_PAK_3a" : [ - "KF061168" - ], - "Pigeon_paramyxovirus_1_PPMV_1_New_York_1984" : [ - "FJ410145" - ], - "Siegesbeckia_yellow_vein_virus__GD24___GD24" : [ - "AM230634" - ], - "Hepatitis_B_virus__F1_9" : [ - "GU815722" - ], - "West_Nile_virus__WNV_1_US_BID_V6466_2003" : [ - "KJ501313" - ], - "Maize_streak_virus__UNak_129" : [ - "EF547093" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4048_2008" : [ - "GU131802" - ], - "Torque_teno_virus__tth14" : [ - "AJ620228" - ], - "Hepatitis_B_virus__F1_11" : [ - "GU815712" - ], - "Hepatitis_B_virus__G3_21" : [ - "GU815776" - ], - "Apple_stem_pitting_virus__Palampur" : [ - "FR694186" - ], - "Hepatitis_B_virus__1780" : [ - "FJ386583" - ], - "Dengue_virus_1__DENV_1_BR_BID_V2389_2004" : [ - "FJ850081" - ], - "Hepatitis_B_virus__F4_01" : [ - "KJ676692" - ], - "Lettuce_mosaic_virus__CL208" : [ - "KJ161176" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__0602" : [ - "KF444095" - ], - "Newcastle_disease_virus_MG_725_08" : [ - "HQ266602" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V189_1991" : [ - "EU255979" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1683_2007" : [ - "FJ024457" - ], - "Human_immunodeficiency_virus_1__09YNRL215025sg" : [ - "KC899010" - ], - "Equine_arteritis_virus__S3943" : [ - "GQ903807" - ], - "JC_polyomavirus__Luz_16" : [ - "AB113129" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0099" : [ - "KP759764" - ], - "Hepatitis_B_virus_497_2" : [ - "KR013949" - ], - "Turnip_mosaic_virus_BJ_R01" : [ - "KC119184" - ], - "Bacillus_toyonensis_BCT_7112" : [ - "NC_022783", - "NC_022782", - "NC_022781" - ], - "Staphylococcus_warneri_SG1" : [ - "NC_020165", - "NC_020264", - "NC_020266", - "NC_020267", - "NC_020274", - "NC_020269", - "NC_020164", - "NC_020265", - "NC_020268" - ], - "Dengue_virus_1__HNRG13708" : [ - "KC692505" - ], - "Tomato_severe_rugose_virus__BR_Vic24_10" : [ - "JX865637" - ], - "Human_immunodeficiency_virus_1__5160_92" : [ - "AY835764" - ], - "Bean_golden_mosaic_virus__BR_Mur2_11" : [ - "KJ939755" - ], - "Hepatitis_B_virus__S462_7" : [ - "FJ032338" - ], - "SFTS_virus_HNXY_182_HNXY_182" : [ - "KC292324", - "KC292350", - "KC292297" - ], - "Human_respiratory_syncytial_virus__08_044640" : [ - "JX015497" - ], - "Hepatitis_B_virus__CHN_L2" : [ - "AY800249" - ], - "Enterobacteria_phage_NC11" : [ - "DQ079887" - ], - "Hepatitis_B_virus__ES69_11" : [ - "JF828912" - ], - "Turkey_coronavirus_TCoV_IN_517_94" : [ - "GQ427175" - ], - "Hepatitis_B_virus__4007_0803_Nature2_2_unSero" : [ - "DQ993691" - ], - "West_Nile_virus__V11_07" : [ - "JX123031" - ], - "Human_immunodeficiency_virus_1_ES_X2110" : [ - "FJ670523" - ], - "Broad_bean_wilt_virus_2_Chinese" : [ - "AJ132844" - ], - "Sweet_potato_latent_virus" : [ - "NC_020896" - ], - "Maize_streak_virus__MSV_A_ZM_Chi10_Z19_2008" : [ - "HQ693451" - ], - "Hepatitis_B_virus__18_S541" : [ - "EU570067" - ], - "Norovirus_Hu_GII_4_Ehime1_2007_JP_Hu_GII_4_Ehime1_2007_JP" : [ - "AB541236" - ], - "Foot_and_mouth_disease_virus___type_O__TUR_1003_2010" : [ - "JX040497" - ], - "Porcine_circovirus_2_Z0161b_03__Z0161b_03" : [ - "EU057184" - ], - "Oscillibacter_valericigenes_Sjm18_20" : [ - "NC_016046", - "NC_016048" - ], - "WU_Polyomavirus__B5843" : [ - "GU296379" - ], - "Dickeya_phage_Limestone" : [ - "NC_019925" - ], - "Hepatitis_B_virus__KOR33LC" : [ - "GQ475337" - ], - "Feline_kobuvirus_FK_13" : [ - "KF831027" - ], - "Goutanap_virus_F54_CI_2004" : [ - "KF588038" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US52" : [ - "KJ019107" - ], - "Shigella_sonnei_Ss046" : [ - "NC_009347", - "NC_009346", - "NC_009345", - "NC_007385", - "NC_007384" - ], - "Newcastle_disease_virus__NDV_Altai_pigeon_770_2011" : [ - "KJ920204" - ], - "Wheat_dwarf_virus____Sanxi_Yangling___SXYL05_3" : [ - "EF536879" - ], - "Dengue_virus_4__DENV_4_VE_BID_V1161_2007" : [ - "EU854301" - ], - "Hepatitis_B_virus__D2_5" : [ - "GU815662" - ], - "Human_rotavirus_A_MW69" : [ - "AJ400643" - ], - "Hepatitis_B_virus__Ag15" : [ - "KJ843177" - ], - "Hepatitis_B_virus__490A_6" : [ - "EU871996" - ], - "Acute_bee_paralysis_virus__Hungary_1" : [ - "AF486072" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD170_2013" : [ - "KM229833" - ], - "South_African_cassava_mosaic_virus__MG_MG718A2_11" : [ - "KJ888094" - ], - "Hepatitis_B_virus_HB444" : [ - "JQ027320" - ], - "Hepatitis_B_virus__S627_2" : [ - "FJ787450" - ], - "Rubus_yellow_net_virus_Baumforth_s_Seedling_A" : [ - "NC_026238" - ], - "Hepatitis_B_virus__N011" : [ - "KF922432" - ], - "Sacbrood_virus_AmSBV_Kor21" : [ - "JQ390591" - ], - "Hepatitis_B_virus__I213" : [ - "FJ562320" - ], - "Okra_yellow_crinkle_virus_Cameroon_Njo5_TOC15" : [ - "HE793424" - ], - "Dengue_virus_2_DENV_2_SG_D2Y98P_PP1_2009" : [ - "JF327392" - ], - "Tomato_leaf_curl_Taiwan_virus__LS5" : [ - "GU723716" - ], - "Hendra_virus_HeV_Australia_Horse_2008_Redlands" : [ - "HM044317" - ], - "Hepatitis_B_virus_1463_15" : [ - "KR014068" - ], - "Human_poliovirus_1__10091c" : [ - "FJ859060" - ], - "Hepatitis_B_virus__HB11_1027" : [ - "AB971715" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL032A" : [ - "AB817993", - "AB817985", - "AB818001" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K261" : [ - "AJ704970", - "AJ717581" - ], - "Japanese_encephalitis_virus_JEV_sw_Okinawa_154_2008" : [ - "AB471666" - ], - "Rabies_virus__A11_5300" : [ - "KC737850" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dar_beta_14" : [ - "EU384598" - ], - "Mumps_virus__Dg1062_Korea_98" : [ - "AY309060" - ], - "Dengue_virus_1_D1_hu_Seychelles_NIID41_2003" : [ - "AB195673" - ], - "Wheat_dwarf_virus__SxA22" : [ - "AM296022" - ], - "Human_immunodeficiency_virus_1__94BR_RJ_59" : [ - "AY455784" - ], - "Hepatitis_B_virus__bxa1663" : [ - "KC774401" - ], - "Human_immunodeficiency_virus_1__00BW0874_21" : [ - "AF443090" - ], - "Human_poliovirus_1_CHN8229_2_GZ_CHN_2004" : [ - "FJ769380" - ], - "Stork_hepatitis_B_virus__STHBV_7" : [ - "AJ251935" - ], - "Goose_parvovirus_82_0321V" : [ - "EU583389" - ], - "Bacillus_subtilis_QB928" : [ - "NC_018520" - ], - "Porcine_circovirus_2_PCV2_RP2" : [ - "FJ667583" - ], - "Human_parainfluenza_virus_3_HPIV3_AUS_3_2007" : [ - "KF530243" - ], - "Bhendi_yellow_vein_India_virus__India_Jalgov_OY124_2006___OY124" : [ - "GU112033" - ], - "Foot_and_mouth_disease_virus___type_O__TAI_22_2009" : [ - "KF112879" - ], - "Newcastle_disease_virus_F48E8" : [ - "FJ436302" - ], - "Turnip_mosaic_virus__GBR51" : [ - "AB701742" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT59E19_2008" : [ - "JF909196" - ], - "Hepatitis_B_virus__Leb9" : [ - "JN642126" - ], - "Enterobacteria_phage_T7__K" : [ - "AY264775" - ], - "Viral_hemorrhagic_septicemia_virus_KRRV9822" : [ - "AB179621" - ], - "East_African_cassava_mosaic_Zanzibar_virus__SB2" : [ - "HE806428" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM124_3" : [ - "KM233047" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_98E_027_01_1998" : [ - "KP258743" - ], - "Goose_circovirus__1021024G" : [ - "KP203867" - ], - "Human_immunodeficiency_virus_1__02ZMBC" : [ - "AB254149" - ], - "Plum_pox_virus_strain_Marcus_Marcus_VAR_2_B23" : [ - "HF585104" - ], - "Hepatitis_B_virus__SHB71" : [ - "KJ598740" - ], - "Escherichia_coli_SE15" : [ - "NC_013654", - "NC_013655" - ], - "Chicken_anemia_virus__3_1" : [ - "AF390038" - ], - "Beak_and_feather_disease_virus__BFDV16" : [ - "GU015023" - ], - "Human_poliovirus_1__DOR00016" : [ - "AF405689" - ], - "Human_adenovirus_21_NHRC_32389" : [ - "KJ364573" - ], - "Hepatitis_B_virus__CX017C_e226" : [ - "KJ173349" - ], - "Bacillus_licheniformis_9945A" : [ - "NC_021362" - ], - "OkLCV_satDNA_27" : [ - "AF397216" - ], - "Hepatitis_C_virus_subtype_1a__00M" : [ - "EU781779" - ], - "Dengue_virus_1__DK87" : [ - "KP398852" - ], - "Mycoplasma_fermentans_PG18" : [ - "NC_021002" - ], - "Bean_golden_yellow_mosaic_virus__HomesteadFL" : [ - "DQ119824", - "DQ119825" - ], - "Canine_distemper_virus__00_2601" : [ - "AY443350" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1845_2008" : [ - "FJ461309" - ], - "Porcine_circovirus_2__LM" : [ - "KM360050" - ], - "Hepatitis_B_virus__FMD63" : [ - "GU168597" - ], - "Cucumber_mosaic_virus_ALS_LBO" : [ - "AJ304394", - "AJ304393" - ], - "Flavobacterium_phage_6H" : [ - "NC_021867" - ], - "Candidatus_Sulcia_muelleri_SMDSEM" : [ - "NC_013123" - ], - "Cucurbit_aphid_borne_yellows_virus" : [ - "EU000535", - "EU636992" - ], - "Melon_chlorotic_mosaic_virus__VE10_144" : [ - "KF670632", - "KF670633" - ], - "Infectious_pancreatic_necrosis_virus_N1" : [ - "IPNSEGA" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_DP2417_2012" : [ - "KM452740" - ], - "Citrus_mosaic_sadwavirus__Ci_968" : [ - "AB465581" - ], - "Hepatitis_B_virus_580_11a" : [ - "KR013810" - ], - "Cotton_leaf_curl_Multan_betasatellite__GX21" : [ - "HQ455360" - ], - "Hepatitis_B_virus__HBV76" : [ - "KC875298" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V85_2001" : [ - "EU256029" - ], - "Bandicoot_papillomatosis_carcinomatosis_virus_type_2__1" : [ - "NC_010817" - ], - "Porcine_circovirus_2__Han13_4" : [ - "JQ181596" - ], - "Methanosaeta_harundinacea_6Ac" : [ - "NC_016637", - "NC_017527" - ], - "Duck_hepatitis_A_virus_1_HDHV1_GS" : [ - "FJ157175" - ], - "Human_immunodeficiency_virus_1__CH77E_flC7" : [ - "FJ496005" - ], - "Foot_and_mouth_disease_virus___type_O_O_JPN_2000" : [ - "AB079061" - ], - "Hepatitis_B_virus__S304_10" : [ - "EU554540" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_3__AHEaCV_3_NZ_3030C3_2012" : [ - "KM874296" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V258_2003" : [ - "EU660385" - ], - "Dengue_virus_2__DENV_2_US_BID_V1482_2003" : [ - "EU687199" - ], - "Small_begomovirus_associated_satellite__Sa20_S208" : [ - "KJ859143" - ], - "West_Nile_virus__WNV_1_US_BID_V7788_2012" : [ - "KJ501224" - ], - "Hepatitis_B_virus__B32" : [ - "FJ904438" - ], - "West_Nile_virus__WNV_1_US_BID_V6526_2001" : [ - "KJ501493" - ], - "Potato_virus_Y_O_strain_SASA_61" : [ - "AJ585198" - ], - "Porcine_circovirus_2__G2284" : [ - "JF317587" - ], - "Canine_distemper_virus" : [ - "AX453975", - "AX453976", - "AX453977" - ], - "Foot_and_mouth_disease_virus___type_O__IND142_310__2013" : [ - "KJ825801" - ], - "Dengue_virus_2__DENV_2_US_BID_V1468_2001" : [ - "EU687228" - ], - "Enterovirus_A71_CQ03_1_CQ_CHN_2003" : [ - "JX678874" - ], - "Watermelon_chlorotic_stunt_virus__PA2_Q13" : [ - "KM820281" - ], - "Marinomonas_mediterranea_MMB_1" : [ - "NC_015276" - ], - "Dengue_virus_3__DENV_3_US_BID_V1615_2004" : [ - "FJ373302" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2660_2000" : [ - "FJ850063" - ], - "Fowl_aviadenovirus_C__JSJ13" : [ - "KM096544" - ], - "Chlamydia_trachomatis_E_SW3" : [ - "NC_017952", - "NC_012631" - ], - "Bovine_coronavirus_E_AH65_E_AH65" : [ - "EF424615" - ], - "West_Nile_virus__WNV_1_US_BID_V6543_2002" : [ - "KJ501347" - ], - "Porcine_circovirus_2__Aust_5" : [ - "AY754016" - ], - "Human_immunodeficiency_virus_1__CH228_TFb" : [ - "KC156121" - ], - "Mycobacterium_phage_Aeneas" : [ - "NC_023723" - ], - "Hepatitis_B_virus__MY5205" : [ - "KJ803765" - ], - "Dengue_virus_2__DENV_2_US_BID_V1401_1997" : [ - "EU569718" - ], - "Human_immunodeficiency_virus_1__03ZAPS131MB1" : [ - "DQ396380" - ], - "Corynebacterium_phage_BFK20" : [ - "NC_009799" - ], - "Hepatitis_B_virus_HB455" : [ - "HM011479" - ], - "Melon_yellow_spot_virus__Tospo_melo" : [ - "NC_008300" - ], - "Feline_coronavirus_Felis_catus_NLD_UU72_2010" : [ - "KF530131" - ], - "Rhinolophus_bat_coronavirus_HKU2_HKU2_HK_46_2006" : [ - "EF203065" - ], - "Sendai_virus_Cantell" : [ - "AB855653", - "AB855654" - ], - "Porcine_circovirus_2__GRE_WB1" : [ - "DQ915583" - ], - "Campoletis_sonorensis_ichnovirus" : [ - "NC_008007", - "AF236017" - ], - "Banana_bunchy_top_virus__JK3" : [ - "AB108453", - "AB108450" - ], - "West_Nile_virus__WNV_1_BID_V5037" : [ - "JN819310" - ], - "SFTS_virus_HNXY_206_HNXY_206" : [ - "KC292329", - "KC292275", - "KC292302" - ], - "Emticicia_oligotrophica_DSM_17448" : [ - "NC_018748", - "NC_018745", - "NC_018742", - "NC_018744", - "NC_018749", - "NC_018743" - ], - "Nitrosomonas_Is79A3" : [ - "NC_015731" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO17AM2_2009" : [ - "JF909225" - ], - "Cauliflower_mosaic_virus__JPNM" : [ - "AB863159" - ], - "Maize_streak_virus__MSV_A_ZW_Zi_M41_1994" : [ - "HQ693474" - ], - "Hepatitis_C_virus_subtype_1a__02_08" : [ - "EU781751" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_19" : [ - "EU384621" - ], - "Tomato_leaf_curl_China_betasatellite__Y38" : [ - "AJ420315" - ], - "Hepatitis_B_virus_362_36" : [ - "KR013919" - ], - "Hepatitis_A_virus__HA_JNG08_92" : [ - "AB279733" - ], - "Enterovirus_C96_05517" : [ - "HQ415758" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0020" : [ - "KP759755" - ], - "RD114_retrovirus_CRT1" : [ - "AB559882" - ], - "Hepatitis_B_virus__I182" : [ - "FJ562300" - ], - "Burkholderia_pseudomallei_1106a" : [ - "NC_009076", - "NC_009078" - ], - "Barley_stripe_mosaic_virus_China" : [ - "AY789693", - "AY789694", - "AY787207" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2388_2003" : [ - "FJ850080" - ], - "Human_adenovirus_21a__LRTI_3" : [ - "KF577593" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4253_2007" : [ - "HM181952" - ], - "Hepatitis_B_virus__IR_IPI_P3" : [ - "AY741796" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_AHZ_China_2011" : [ - "JQ670931", - "JQ670929", - "JQ670933" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2971_2007" : [ - "FJ898474" - ], - "Salmonella_enterica_serovar_Typhi_P_stx_12" : [ - "NC_016825", - "NC_016832" - ], - "Halorhabdus_tiamatea_SARL4B" : [ - "NC_021913", - "NC_021921" - ], - "Porcine_circovirus_2__SFBeef10" : [ - "HQ738639" - ], - "Escherichia_phage_vB_EcoS_FFH1" : [ - "NC_024139" - ], - "Hepatitis_B_virus__ph81" : [ - "EU410082" - ], - "Hepatitis_B_virus__Ag26" : [ - "KJ843187" - ], - "Norovirus_GI_Hu_NL_2011_GI_1_Groningen_GI_Hu_NL_2011_GI_1_Groningen" : [ - "LN854563" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD12_2013" : [ - "KM229769" - ], - "Getah_virus__swine" : [ - "NC_006558" - ], - "West_Nile_virus__WNV_1_US_BID_V6502_2002" : [ - "KJ501331" - ], - "Vibrio_vulnificus_YJ016" : [ - "NC_005139", - "NC_005128", - "NC_005140" - ], - "Tick_borne_encephalitis_virus_Primorye_2239" : [ - "HM859895" - ], - "Hepatitis_B_virus__CX008C_e214" : [ - "KJ173345" - ], - "Hepatitis_B_virus__B7" : [ - "FJ904428" - ], - "Hepatitis_B_virus__KOR12CHB" : [ - "GQ475316" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_78U202_1978_IE" : [ - "KC344438" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US116" : [ - "KJ019080" - ], - "Streptococcus_phage_Sfi11" : [ - "NC_002214" - ], - "uncultured_phage_WW_nAnB__WW_nAnB" : [ - "NC_026582" - ], - "Hepatitis_B_virus_497_1" : [ - "KR013943" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8509_2010" : [ - "KJ627345" - ], - "Beak_and_feather_disease_virus__CS08_482_OBP_TAS_19139" : [ - "KF188690" - ], - "Hepatitis_B_virus__D_NZL_GI11_1984" : [ - "HQ700451" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3910_2008" : [ - "KF921942" - ], - "Hepatitis_B_virus__AIDS1" : [ - "JQ801470" - ], - "Dengue_virus_2__DENV_2_KH_BID_V4276_2008" : [ - "KF955402" - ], - "Thunberg_fritillary_virus__Ningbo" : [ - "NC_007180" - ], - "Small_begomovirus_associated_satellite__Sa46_S135" : [ - "KJ859161" - ], - "Lactobacillus_reuteri_DSM_20016" : [ - "NC_009513" - ], - "Maize_streak_virus__MSV_A_GH_gh58_Nya_2010" : [ - "KJ699352" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B162b_2008" : [ - "GU936297" - ], - "Feline_coronavirus_UU5_UU5" : [ - "FJ938056" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4043_2008" : [ - "GU131800" - ], - "Bifidobacterium_animalis_lactis_BB_12" : [ - "NC_017214" - ], - "Hepatitis_delta_virus_dFr2042_dFr2042" : [ - "AM902179" - ], - "Ugandan_cassava_brown_streak_virus__Ug_23" : [ - "FN434109" - ], - "Bhendi_yellow_vein_mosaic_alphasatellite__Madurai_MKU_2" : [ - "NC_026947" - ], - "Variola_virus_India_1964_7124_Vellore" : [ - "DQ437585" - ], - "Dengue_virus_2_ThNH81_93" : [ - "AF169688" - ], - "Hepatitis_B_virus__1841" : [ - "FJ386590" - ], - "Hepatitis_B_virus__IT2009" : [ - "JN792897" - ], - "Hepatitis_C_virus_subtype_1a__L898" : [ - "EU781755" - ], - "Human_immunodeficiency_virus_1__BREPM12609" : [ - "DQ085873" - ], - "Paspalum_striate_mosaic_virus__AU_3011_2011" : [ - "JQ948069" - ], - "Hepatitis_B_virus__C150" : [ - "EU939666" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_175_2012" : [ - "KJ686159" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL066A" : [ - "AB985298", - "AB985529" - ], - "East_African_cassava_mosaic_virus__EACMV__K6" : [ - "AJ717546" - ], - "Chronic_bee_paralysis_virus__B_441" : [ - "EU122232", - "EU122231" - ], - "Cotton_leaf_curl_Multan_virus__G6" : [ - "EF465535" - ], - "Bacillus_thuringiensis_serovar_konkukian_97_27" : [ - "NC_006578", - "NC_005957" - ], - "Dengue_virus_3__277_BR_PE_05" : [ - "JX669494" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3163_2008" : [ - "HQ541789" - ], - "Enterobacteria_phage_NC51" : [ - "DQ079891" - ], - "Hepatitis_B_virus__BTO5856" : [ - "EU350409" - ], - "Okra_yellow_crinkle_Cameroon_alphasatellite__CM_Lys1sp3_09___Lys1sp3" : [ - "FN675285" - ], - "Enterovirus_A71_Henan10_08_China" : [ - "GU366191" - ], - "Hepatitis_A_virus_KRM003G72" : [ - "AB425339" - ], - "Lagos_bat_virus__KE476" : [ - "JX901139" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2028_2003" : [ - "GQ868620" - ], - "Pumpkin_yellow_mosaic_Malaysia_virus__MP1" : [ - "NC_010946" - ], - "Hepatitis_B_virus__BR4" : [ - "KP090178" - ], - "Hepatitis_B_virus_1240_7a" : [ - "KR013840" - ], - "Propionibacterium_phage_PHL151M00__PHL151M00" : [ - "NC_027347" - ], - "Japanese_encephalitis_virus__LN0716" : [ - "JN381849" - ], - "Mungbean_yellow_mosaic_virus__Haryana" : [ - "AY271896" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2789_2007" : [ - "GQ199809" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C38" : [ - "KJ019163" - ], - "SARS_coronavirus_TWY__TWY" : [ - "AP006561" - ], - "Feline_bocavirus_HK875F" : [ - "JQ692587" - ], - "Hepatitis_B_virus_497_5" : [ - "KR013951" - ], - "Enterobacteria_phage_HK97" : [ - "NC_002167" - ], - "Epizootic_hemorrhagic_disease_virus_2_Ibaraki_BK13" : [ - "KM509053", - "KM509057", - "KM509054", - "KM509052", - "KM509059", - "KM509050", - "KM509055", - "KM509056" - ], - "Human_immunodeficiency_virus_1__98UG57140" : [ - "AF484511" - ], - "Melon_necrotic_spot_virus__Tottori" : [ - "AB232925" - ], - "Middle_East_respiratory_syndrome_coronavirus__Hu_France___FRA2_130569_2013_IS_HTS" : [ - "KJ361501" - ], - "Porcine_circovirus_2_SCcd" : [ - "HM102350" - ], - "Enterobacteria_phage_phiX174_beta2" : [ - "HM775309" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0081" : [ - "KP759750" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Bogra_2013___Bangladesh_Bogra_2013" : [ - "AB971855", - "AB971854" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Q94_136" : [ - "KP998421" - ], - "Ribgrass_mosaic_virus_RMV_Actinidia_AD_M1_C" : [ - "GQ401366" - ], - "Newcastle_disease_virus_PX2_03" : [ - "JN653340" - ], - "Classical_swine_fever_virus_CSFV_2_3_wb_CSF1046_2009_Hennef_CSF1046" : [ - "GU233733" - ], - "Hepatitis_B_virus__No3" : [ - "AB697489" - ], - "Duck_circovirus__D11_JW_008" : [ - "JQ740363" - ], - "Radish_leaf_curl_virus_Hajipur__IN_Bih_ok09___IN_Bih_ok09" : [ - "GU732203" - ], - "Porcine_circovirus_2__WB_H_6" : [ - "AY874168" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_393_2012" : [ - "KP308452" - ], - "Ageratum_yellow_vein_Singapore_alphasatellite" : [ - "NC_003414" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD259_2014" : [ - "KM229776" - ], - "Hibiscus_chlorotic_ringspot_virus__HCRSV_Is" : [ - "KC876666" - ], - "Dengue_virus_1__DENV_1_VN_BID_V941_2007" : [ - "EU482486" - ], - "Magnaporthe_oryzae_RNA_virus" : [ - "NC_026137" - ], - "Acetobacterium_woodii_DSM_1030" : [ - "NC_016894" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2012_01_11_3" : [ - "KC862575" - ], - "Human_rotavirus_A_69M" : [ - "X81425" - ], - "Human_immunodeficiency_virus_1__07MYKLD47" : [ - "EU031913" - ], - "Hepatitis_B_virus__BR8_SOUTHEAST" : [ - "KC494398" - ], - "Dengue_virus_1__DENV_1_NI_BID_V617_2004" : [ - "GQ199872" - ], - "Taura_syndrome_virus__Colombia" : [ - "JF966384" - ], - "Hepatitis_B_virus__P002_M_007" : [ - "KJ173364" - ], - "Hepatitis_B_virus__C_Tonga_BF7376_2002" : [ - "HQ700561" - ], - "Tomato_common_mosaic_virus__BR_Pda57_05" : [ - "KC706599" - ], - "Hepatitis_B_virus__LAMr_Pt__28" : [ - "AB367419" - ], - "Sweet_potato_chlorotic_stunt_virus_West_African_Sichuan_12_8" : [ - "KC888964" - ], - "HBV_genotype_E__Mart_B63" : [ - "HE974380" - ], - "Human_metapneumovirus_HMPV_AUS_172431236_2004_B" : [ - "KF530171" - ], - "Human_immunodeficiency_virus_1__5157_85" : [ - "AY835755" - ], - "Hepatitis_B_virus__FEN64" : [ - "JF440007" - ], - "Human_herpesvirus_6B_Z29" : [ - "NC_000898" - ], - "Dengue_virus_2__DENV_2_PE_IQA_2080_2010" : [ - "KC294221" - ], - "Hepatitis_B_virus__SWT3_3" : [ - "EU916241" - ], - "Hepatitis_B_virus__A5_50034" : [ - "FJ692600" - ], - "Hepatitis_B_virus__HBV156" : [ - "KJ647349" - ], - "Human_herpesvirus_5_BE_6_2012" : [ - "KP745695" - ], - "Hepatitis_B_virus__C72" : [ - "EU939628" - ], - "Simian_adenovirus_C__BaAdV_4" : [ - "KC693024" - ], - "Simian_adenovirus_20_ATCC_VR_541" : [ - "NC_020485" - ], - "Tomato_leaf_curl_China_betasatellite__Bean_YM" : [ - "DQ256459" - ], - "Rice_black_streaked_dwarf_virus__jni20" : [ - "HM209068" - ], - "West_Nile_virus__WNV_1_US_BID_V6552_2003" : [ - "KJ501352" - ], - "Hemileuca_sp__nucleopolyhedrovirus" : [ - "NC_021923" - ], - "Homalodisca_vitripennis_reovirus__NC25" : [ - "GU437853" - ], - "Norovirus_Hu_GII_4_CGMH27_2010_TW" : [ - "JN400625" - ], - "Hepatitis_E_virus__wbGER27" : [ - "FJ705359" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_12__AHEaCV_12_NZ_3316C1_2012" : [ - "NC_026638" - ], - "Seoul_virus_ZT10" : [ - "AY766368", - "EF581094" - ], - "Helicobacter_pylori_Shi417" : [ - "NC_017739" - ], - "African_cassava_mosaic_virus__MG_MG307A1_10" : [ - "KJ887976" - ], - "Hepatitis_C_virus_subtype_1b__L8135" : [ - "EU781826" - ], - "Hepatitis_B_virus__SHB5102" : [ - "KJ598717" - ], - "Solenopsis_invicta_virus_2" : [ - "NC_009544" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__JX143" : [ - "EU708726" - ], - "Potato_virus_M__VIRUBRA_4_007" : [ - "HM854296" - ], - "Swine_hepatitis_E_virus__WH09" : [ - "GU188851" - ], - "Classical_swine_fever_virus___Alfort_187_Alfort_187" : [ - "X87939" - ], - "Rhinovirus_A__N13" : [ - "GQ223229" - ], - "Tomato_leaf_curl_Sudan_virus__Manah" : [ - "HE819244" - ], - "Hepatitis_B_virus__S51" : [ - "FJ386654" - ], - "Pseudomonas_phage_Bf7" : [ - "NC_016764" - ], - "Giraffe_coronavirus_US_OH3_2003_US_OH3_2003_WD1421" : [ - "EF424623" - ], - "Human_adenovirus_64_2" : [ - "JQ326206" - ], - "Feline_astrovirus_Viseu__Viseu" : [ - "KF374704" - ], - "Chickpea_chlorotic_dwarf_virus__A_SP175_99" : [ - "KC172654" - ], - "Human_immunodeficiency_virus_1__A047" : [ - "AF408627" - ], - "Salmonella_phage_SPN3US" : [ - "NC_027402" - ], - "Hepatitis_B_virus__D36" : [ - "EU939644" - ], - "Dengue_virus_1__DENV_1_VN_BID_V797_2006" : [ - "EU249494" - ], - "Enterobacteria_phage_f1__F1_ancestral" : [ - "GQ153919" - ], - "Helicobacter_pylori_SNT49" : [ - "NC_017376", - "NC_017380" - ], - "Hepatitis_B_virus__30125" : [ - "AJ627221" - ], - "Circo_like_virus_Brazil_hs1_hs1" : [ - "NC_023888" - ], - "Echovirus_E30_Bastianni" : [ - "AF311938", - "AF162711" - ], - "Hepatitis_B_virus__DEN6036" : [ - "KF779225" - ], - "Coxsackievirus_A24_CA24v_Okinawa_7_2011" : [ - "AB769154" - ], - "Dengue_virus_1__DENV_1_VN_BID_V942_2007" : [ - "EU482487" - ], - "Clostridium_clariflavum_DSM_19732" : [ - "NC_016627" - ], - "Tomato_leaf_curl_Pakistan_virus__ToLCPKV__IN_Bih" : [ - "GU732204" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__PRRSV01" : [ - "FJ175687" - ], - "Human_immunodeficiency_virus_1__K1p21" : [ - "HM469982" - ], - "Hepatitis_B_virus__V157" : [ - "HM363594" - ], - "Human_immunodeficiency_virus_1__99BW4745_8" : [ - "AF443085" - ], - "Human_bocavirus_JPOC06_049" : [ - "AB481072" - ], - "Japanese_encephalitis_virus_FU" : [ - "AF217620" - ], - "Hepatitis_B_virus__CX009M_e217" : [ - "KJ173282" - ], - "Sendai_virus_Cl__151" : [ - "AB275416" - ], - "Pseudomonas_phage_LUZ19" : [ - "NC_010326" - ], - "Tomato_leaf_curl_Taiwan_virus__H7_3" : [ - "GU723722" - ], - "Mumps_virus_ODATE_3" : [ - "AB600942" - ], - "Grapevine_rupestris_stem_pitting_associated_virus__GRSPaV_MG" : [ - "FR691076" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B2J5" : [ - "JN053432" - ], - "Turnip_mosaic_virus__NZL5" : [ - "AB989653" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V444_2006" : [ - "EU256003" - ], - "Mycobacterium_liflandii_128FXT" : [ - "NC_011355", - "NC_020133" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_47_2" : [ - "KP998401" - ], - "Hepatitis_B_virus__1958_14" : [ - "KR014096" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_GTM_69Z1_1969_IAB" : [ - "KC344505" - ], - "Dengue_virus_1__DENV_1_VN_BID_V996_2006" : [ - "EU482540" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9508_2013" : [ - "KJ643589" - ], - "Hepatitis_C_virus_subtype_1b__No__26" : [ - "AB154201" - ], - "Maize_streak_virus__MSV_SBlu" : [ - "EU152259" - ], - "Human_immunodeficiency_virus_1__04ZASK192B1" : [ - "DQ396382" - ], - "Swine_hepatitis_E_virus__SWP8" : [ - "EU723516" - ], - "Pigeon_paramyxovirus_1_pi_CH_LGD_110947" : [ - "JX486556" - ], - "Cucumber_mosaic_virus_Vir" : [ - "HE962479", - "HE962480", - "HE962478" - ], - "Soybean_mosaic_virus__XFQ018" : [ - "KP710877" - ], - "Dengue_virus_4__MKS_0033" : [ - "KC762694" - ], - "Neisseria_gonorrhoeae_TCDC_NG08107" : [ - "NC_017511", - "NC_017510" - ], - "Tobacco_yellow_crinkle_virus__3" : [ - "NC_015628" - ], - "Pectobacterium_phage_PP1" : [ - "NC_019542" - ], - "Hepatitis_B_virus__LAMr_Pt__25" : [ - "AB367416" - ], - "Lamium_leaf_distortion_virus" : [ - "NC_010737" - ], - "Human_immunodeficiency_virus_1__01UYTRA1101" : [ - "AY781125" - ], - "Gordonibacter_pamelaeae_7_10_1_b" : [ - "NC_021021" - ], - "Hepatitis_B_virus__JFA3945" : [ - "KF779264" - ], - "Hepatitis_C_virus__isolate_BEBE1___BEBE1" : [ - "D50409" - ], - "Torque_teno_sus_virus_1a__Sd_TTV31" : [ - "NC_014070" - ], - "Myxoma_virus_England_Cornwall_4_54_1_Cornwall" : [ - "JX565566" - ], - "Canine_distemper_virus_CDV3" : [ - "EU726268" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C76" : [ - "KJ019049" - ], - "Hepatitis_B_virus__LAMr_Pt__34_Adefovir_treated_Pt__15" : [ - "AB367425" - ], - "JC_polyomavirus__MR_6" : [ - "AB127001" - ], - "Rickettsia_conorii_Malish_7" : [ - "NC_003103" - ], - "Hepatitis_C_virus_subtype_1b_MD27" : [ - "AF207768" - ], - "Hepatitis_B_virus__TK88" : [ - "JF754601" - ], - "Honeysuckle_yellow_vein_mosaic_virus__Nara2" : [ - "AB287441" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C60" : [ - "KJ019039" - ], - "Enterobacteria_phage_f1__f1_1_FR" : [ - "JF719732" - ], - "Hepatitis_B_virus__WHRKN1" : [ - "JN257193" - ], - "Tetraselmis_viridis_virus_S1_S1" : [ - "NC_020869" - ], - "Human_papillomavirus_type_11__A48" : [ - "FN907961" - ], - "Hepatitis_B_virus__D109" : [ - "EU939653" - ], - "SARS_coronavirus_BJ02__BJ02" : [ - "AY278487" - ], - "Bean_golden_mosaic_virus__BR_Cri15_12" : [ - "KJ939851" - ], - "Lettuce_ring_necrosis_virus__Belg_2" : [ - "NC_006052", - "NC_006053", - "NC_006054", - "NC_006051" - ], - "Hepatitis_B_virus__8_22" : [ - "AY152726" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1017_2007" : [ - "EU482461" - ], - "Foot_and_mouth_disease_virus___type_O__UKG_2085_2001" : [ - "FJ542370" - ], - "Arabis_mosaic_virus__DU13" : [ - "JQ975057" - ], - "Avian_metapneumovirus_PL_2" : [ - "EF199772" - ], - "Human_papillomavirus_type_58__Rw644" : [ - "HQ537776" - ], - "Hepatitis_B_virus__C_Tonga_BR6895_2001" : [ - "HQ700565" - ], - "Candidatus_Portiera_aleyrodidarum_BT_B" : [ - "NC_018507" - ], - "Chaetoceros_tenuissimus_DNA_virus_type_II__SS10_35V" : [ - "AB971660" - ], - "Hepatitis_B_virus__Wendy" : [ - "AY330914" - ], - "Helicobacter_cetorum_MIT_00_7128" : [ - "NC_017738", - "NC_017737" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_F_SD_SD229_2013" : [ - "KM229791" - ], - "Hepatitis_B_virus_593_14" : [ - "KR013989" - ], - "Hepatitis_B_virus__J99" : [ - "GQ377564" - ], - "PRCV_ISU_1_ISU_1" : [ - "DQ811787" - ], - "Dengue_virus_1__DENV_1_US_BID_V852_2006" : [ - "EU482591" - ], - "Tomato_yellow_leaf_curl_virus_Israel_Grenada_Hermitage_2007" : [ - "FR851297" - ], - "Streptococcus_gallolyticus_ATCC_BAA_2069" : [ - "NC_015219", - "NC_015215" - ], - "Hepatitis_B_virus__GU1056" : [ - "GQ161764" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9378_2013" : [ - "KJ643467" - ], - "Watermelon_chlorotic_stunt_virus__JO3_61" : [ - "KM820219" - ], - "Neisseria_gonorrhoeae_FA_1090" : [ - "NC_002946" - ], - "Hepatitis_B_virus__clz2115" : [ - "KC774212" - ], - "Hepatitis_B_virus_1491_15" : [ - "KR014087" - ], - "Bee_Macula_like_virus__France_878V" : [ - "NC_027631" - ], - "Infectious_bronchitis_virus__ZJ971" : [ - "EU714028" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1811_2007" : [ - "FJ432742" - ], - "Human_immunodeficiency_virus_1__0679SV" : [ - "JF804812" - ], - "JC_polyomavirus__IN_3" : [ - "AB126989" - ], - "Honeysuckle_yellow_vein_virus__UK2" : [ - "AJ543429" - ], - "Human_papillomavirus_type_52__Qv32116" : [ - "HQ537731" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2916_2006" : [ - "FJ898429" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2923_2000" : [ - "FJ898477" - ], - "Hepatitis_B_virus__236_0526_Nature1_2_Sero" : [ - "DQ993703" - ], - "BK_polyomavirus__GBR_9" : [ - "AB263924" - ], - "European_mountain_ash_ringspot_associated_virus__E53118" : [ - "HG799727" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPI02674_2011" : [ - "KJ672553" - ], - "Maize_streak_virus__MSV_A_MZ_Chi1_chimoz_2007" : [ - "HQ693342" - ], - "Hepatitis_B_virus__25830" : [ - "AY934768" - ], - "Enterovirus_A_GZ08_522_EV71_Guangzhou_522_2008" : [ - "HQ456311" - ], - "Human_papillomavirus_type_6__5" : [ - "HG793813" - ], - "Human_coronavirus_OC43_OC43_human_USA_9712_13_1997" : [ - "KF530072" - ], - "Hepatitis_E_virus__47832" : [ - "KC618402" - ], - "Lactococcus_phage_P078" : [ - "NC_024215" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda35_05" : [ - "KC706644" - ], - "Merremia_mosaic_virus__PR4_N5" : [ - "DQ644559" - ], - "Simian_virus_40__SV40_Ad_201" : [ - "EF579659" - ], - "Norwalk_like_virus__Saitama_U17" : [ - "AB039779" - ], - "Enterobacteria_phage_ID1" : [ - "DQ079880" - ], - "Norovirus_Hu_GII_4_Miyazaki3_2008_JP_Hu_GII_4_Miyazaki3_2008_JP" : [ - "AB541293" - ], - "Soybean_mosaic_virus__WS109" : [ - "FJ640959" - ], - "Canine_distemper_virus_strain_Onderstepoort_Onderstepoort" : [ - "AF378705" - ], - "Human_parainfluenza_virus_3_HPIV3_USA_629_D02313_2006" : [ - "KF530247" - ], - "University_of_Helsinki_virus_UHV_1_1" : [ - "NC_023766", - "NC_023765" - ], - "West_Nile_virus__WN_NJ_2000_MQ5488" : [ - "AF404754" - ], - "Hepatitis_B_virus__FF5" : [ - "JX079937" - ], - "Hepatitis_B_virus_362_12" : [ - "KR013913" - ], - "Human_immunodeficiency_virus_1__30638" : [ - "GU595148" - ], - "Hepatitis_B_virus__BFJT2006_1" : [ - "AB642100" - ], - "Cryphonectria_hypovirus_1" : [ - "NC_001492" - ], - "Hepatitis_B_virus__S624_3" : [ - "EU589346" - ], - "Chikungunya_virus_FD080231" : [ - "GU199353" - ], - "Phocoena_phocoena_papillomavirus_4" : [ - "NC_018076" - ], - "Human_herpesvirus_1_17" : [ - "X14112", - "NC_001806" - ], - "Micromys_minutus_papillomavirus_1" : [ - "NC_008582" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SHH" : [ - "EU106888" - ], - "Hepatitis_B_virus__bxa2064" : [ - "KC774415" - ], - "Human_papillomavirus_type_53__Qv28044" : [ - "EF546477" - ], - "Tomato_yellow_leaf_curl_virus__Iksan_9" : [ - "HM856916" - ], - "JC_polyomavirus__FB_3" : [ - "AB103405" - ], - "Hepatitis_B_virus__IIIa" : [ - "AY167096" - ], - "West_Nile_virus__WNV_1_US_BID_V5148_2007" : [ - "JF488097" - ], - "Dengue_virus_2__DC720Y12" : [ - "KM279592" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_WUH3" : [ - "HM853673" - ], - "Alpaca_respiratory_coronavirus__CA08_1_2008" : [ - "JQ410000" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1217_2007" : [ - "EU569699" - ], - "Hepatitis_B_virus__Greenland_5" : [ - "AB287324" - ], - "Venezuelan_equine_encephalitis_virus_Mucambo_BeAn_8" : [ - "AF075253" - ], - "Coxsackievirus_B3_Fuyang19" : [ - "FJ000001" - ], - "Equine_arteritis_virus__S3886" : [ - "GQ903805" - ], - "Hepatitis_B_virus__dww1111" : [ - "KC774459" - ], - "Norovirus_GII_Hu_JP_2007_GII_P7_GII_14_Fukuoka_KK282__Fukuoka_KK282" : [ - "KJ196297" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_15101_2001" : [ - "DQ404158" - ], - "Human_coronavirus_OC43_OC43_human_USA_911_58_1991" : [ - "KF530091" - ], - "Temperate_fruit_decay_associated_virus__MFB6" : [ - "KR134311" - ], - "Aeromonas_phage_Aes508" : [ - "NC_019543" - ], - "Human_herpesvirus_5_BE_7_2012" : [ - "KP745666" - ], - "Mumps_virus_MuVi_Zagreb_HRV_28_12_G" : [ - "KF481689" - ], - "Human_poliovirus_3_NIE1118510" : [ - "KJ170659" - ], - "Hepatitis_B_virus__TK152" : [ - "JF754611" - ], - "Hepatitis_B_virus__240" : [ - "JQ040138" - ], - "Myxoma_virus_Aust_Southwell_Hill_11_93" : [ - "KC660085" - ], - "Chilli_leaf_curl_betasatellite____Pakistan_Potato_2008" : [ - "FM179615" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3429_2006" : [ - "GU131848" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4809_2009" : [ - "HM756276" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5146_brain" : [ - "JF899537" - ], - "Hepatitis_B_virus__CSW_k1" : [ - "KM213036" - ], - "Epinephelus_tauvina_nervous_necrosis_virus_Singapore" : [ - "NC_004136", - "NC_004137" - ], - "Synechococcus_phage_ACG_2014a__Syn7803US123" : [ - "KJ019084" - ], - "Porcine_circovirus_2__22625_33" : [ - "JX535296" - ], - "Tomato_leaf_curl_Pakistan_alphasatellite" : [ - "NC_012789" - ], - "Cucumber_mosaic_virus_satellite_RNA__1998_China_1" : [ - "AJ236904" - ], - "Burkholderia_phage_BcepMu" : [ - "NC_005882" - ], - "Human_immunodeficiency_virus_1__UY04_4022" : [ - "FJ213782" - ], - "Sulfolobus_acidocaldarius_Ron12_I" : [ - "NC_020247" - ], - "Hepatitis_B_virus_1898_98" : [ - "EU594385" - ], - "BK_polyomavirus_NEC_4" : [ - "AB269854" - ], - "Crimean_Congo_hemorrhagic_fever_virus_SPU128_84" : [ - "AY900141" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B79_2008" : [ - "GU936291" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2832_2003" : [ - "FJ882567" - ], - "Hepatitis_B_virus__S696_1" : [ - "EU554541" - ], - "Tomato_yellow_leaf_curl_virus____Tunisia" : [ - "EF101929" - ], - "Enterovirus_A_GZ2010_120_EV71_Guangzhou_120_2010" : [ - "HQ456307" - ], - "Hepatitis_B_virus_49244" : [ - "FM199980" - ], - "HBV_genotype_C__NMB09075" : [ - "AB554018" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143918" : [ - "KR653240" - ], - "Abutilon_mosaic_Brazil_virus__BgV01B_1_C35" : [ - "JF694483" - ], - "Southern_rice_black_streaked_dwarf_virus__VNM" : [ - "JQ692572", - "JQ692580", - "JQ692573", - "JQ692579", - "JQ692581", - "JQ692577", - "JQ692578", - "JQ692574", - "JQ692575", - "JQ692576" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_352_2012" : [ - "KP308419" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C35" : [ - "KJ019160" - ], - "Hepatitis_B_virus__SLC1A1" : [ - "KJ598763" - ], - "Taro_bacilliform_CH_virus__TaBCHV_1" : [ - "NC_026819" - ], - "Gorilla_gorilla_gorilla_polyomavirus_1__5766" : [ - "NC_025380" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5681_2010" : [ - "JF937640" - ], - "Dengue_virus_2_16681_PDK53" : [ - "DENCMEMSA" - ], - "Mycobacterium_JLS" : [ - "NC_009077" - ], - "Human_immunodeficiency_virus_1__WEAU_flE8" : [ - "FJ496161" - ], - "Canine_kobuvirus_1_UK003" : [ - "KC161964" - ], - "Sweet_potato_leaf_curl_virus___Venezuela_Sucre_1764_2009" : [ - "KF716172" - ], - "Potato_virus_Y_strain_Wilga_156var_Wilga_156var_156var" : [ - "AJ889868" - ], - "Tomato_leaf_curl_Joydebpur_betasatellite__India_Kolkatta_TC349_2011" : [ - "KJ605116" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2227_2004" : [ - "FJ639794" - ], - "Human_parechovirus_BNI_67" : [ - "EU022171" - ], - "Black_raspberry_necrosis_virus__BRDaV_1" : [ - "NC_008182", - "NC_008183" - ], - "Chikungunya_virus_AR_18211" : [ - "HM045805" - ], - "Dengue_virus_1__DENV_1_NI_BID_V1069_2005" : [ - "EU482615" - ], - "Sheeppox_virus_TU_V02127" : [ - "NC_004002" - ], - "Tomato_yellow_leaf_curl_Vietnam_virus__TYLCVV_DX1" : [ - "EU189150" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3059_2008" : [ - "GQ199862" - ], - "Columbid_circovirus__HBLF_E2" : [ - "KJ704802" - ], - "Human_papillomavirus_type_31__QV00071" : [ - "HQ537669" - ], - "Human_immunodeficiency_virus_1__97VNAG208" : [ - "FJ185250" - ], - "Coxsackievirus_A8__CVA8_SZ127_CHN_2012" : [ - "KM609477" - ], - "Hepatitis_B_virus__G1_3" : [ - "GU815753" - ], - "Dengue_virus_2__DENV_2_PE_FPI01202_2011" : [ - "KC294207" - ], - "Sulfolobus_islandicus_M_16_27" : [ - "NC_012632" - ], - "Hepatitis_B_virus__D_NZL_TA40_1984" : [ - "HQ700482" - ], - "Helicoverpa_armigera_nucleopolyhedrovirus_LB6" : [ - "KJ701031" - ], - "JC_polyomavirus_707C" : [ - "AF300957" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4856_1" : [ - "KR105273" - ], - "Sindbis_like_virus__Girdwood_S_A" : [ - "ACU38304" - ], - "Bacillus_pumilus_SAFR_032" : [ - "NC_009848" - ], - "Human_immunodeficiency_virus_1__04ZASK133B1" : [ - "AY772698" - ], - "Human_papillomavirus_type_69" : [ - "AB027020" - ], - "Porcine_coronavirus_HKU15_HKU15_44" : [ - "NC_016990" - ], - "Hepatitis_C_virus_subtype_1a__99_29" : [ - "EU781763" - ], - "Chicken_anemia_virus__SMSC_1P9WT" : [ - "DQ217400" - ], - "Peanut_stunt_virus" : [ - "AY429430", - "AY429431" - ], - "Chicken_anemia_virus__BJ0401" : [ - "DQ124934" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7537_2009_A" : [ - "KJ627436" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9491_2013" : [ - "KJ643549" - ], - "Hepatitis_B_virus__F2_1" : [ - "GU815726" - ], - "Chlamydophila_abortus_S26_3" : [ - "NC_004552" - ], - "Bean_golden_yellow_mosaic_virus__Mexico" : [ - "AF173556", - "AF173555" - ], - "Grapevine_leafroll_associated_virus_3m__139" : [ - "JX266782" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5516_2010" : [ - "JF937637" - ], - "Human_immunodeficiency_virus_1__14185_1" : [ - "DQ853445" - ], - "Duck_hepatitis_A_virus_1_GFS06" : [ - "FJ496341" - ], - "Hepatitis_B_virus__IBL802" : [ - "HM363578" - ], - "Methanoculleus_bourgensis_MS2" : [ - "NC_018227" - ], - "Tepidanaerobacter_Re1" : [ - "NC_015519" - ], - "Tomato_leaf_curl_New_Delhi_virus__Bengaluru" : [ - "JN663848" - ], - "Tobacco_curly_shoot_virus__YN18" : [ - "GU199584" - ], - "Chikungunya_virus__chik_sy" : [ - "KF318729" - ], - "Chilli_ringspot_virus__ChiRSV_HN_Yingzhou" : [ - "JQ234922" - ], - "Lactobacillus_plantarum_ST_III" : [ - "NC_014554", - "NC_014558" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2054_2008" : [ - "FJ639716" - ], - "Hepatitis_B_virus__TW836" : [ - "EF494380" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HUN_2014" : [ - "KP330232" - ], - "Dengue_virus_2__DENV_2_US_BID_V1168_1987" : [ - "EU482572" - ], - "Enterovirus_D68_JPOC10_290" : [ - "AB601882" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_MP4_09" : [ - "HQ393466" - ], - "Hepatitis_B_virus__CMR954" : [ - "AB194947" - ], - "Campylobacter_coli_76339" : [ - "NC_022132" - ], - "Fathead_minnow_picornavirus_09_283" : [ - "NC_023437" - ], - "Porcine_epidemic_diarrhea_virus_USA_Colorado_2013" : [ - "KF272920" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141288" : [ - "KR653232" - ], - "Hepatitis_B_virus__H34" : [ - "FJ349211" - ], - "Hepatitis_B_virus__I96" : [ - "FJ562257" - ], - "Hepatitis_B_virus__He52" : [ - "AY641563" - ], - "Hepatitis_B_virus__CX050C_e275n" : [ - "KJ173291" - ], - "Human_poliovirus_3_NIE1218545" : [ - "KJ170615" - ], - "Human_herpesvirus_5_AD169" : [ - "X17403" - ], - "Human_papillomavirus_type_6__62" : [ - "HG793870" - ], - "Tomato_yellow_leaf_curl_virus_HNQF" : [ - "JQ038234" - ], - "Wheat_dwarf_virus__QHLD10_1" : [ - "JQ647477" - ], - "Human_coronavirus_HKU1_N20" : [ - "DQ415897" - ], - "Burkholderia_cenocepacia_J2315" : [ - "NC_011003", - "NC_011001", - "NC_011002", - "NC_011000" - ], - "Hepatitis_B_virus__G3_6" : [ - "GU815780" - ], - "Human_papillomavirus_type_42" : [ - "A28090" - ], - "Exiguobacterium_AT1b" : [ - "NC_012673" - ], - "Hepatitis_B_virus__J174" : [ - "GQ377608" - ], - "Salmonella_phage_SPC32H" : [ - "KC911856" - ], - "Enterovirus_A71__02_0_090" : [ - "KP691658" - ], - "Norovirus_Hu_GII_4_Aichi3_2008_JP_Hu_GII_4_Aichi3_2008_JP" : [ - "AB541206" - ], - "STL_polyomavirus__Y57" : [ - "KF651951" - ], - "Human_parechovirus_8__BR_217_2006" : [ - "EU716175" - ], - "Grass_carp_reovirus_GCRV_GD108" : [ - "HQ231207", - "HQ231202", - "HQ231199", - "HQ231205", - "HQ231200", - "HQ231204", - "HQ231206", - "HQ231198", - "HQ231201", - "HQ231208", - "HQ231203" - ], - "Hepatitis_B_virus__GU200" : [ - "GQ161781" - ], - "Hepatitis_B_virus__HCUCH14" : [ - "HM590473" - ], - "Beak_and_feather_disease_virus__GJP1_ZA" : [ - "AY450441" - ], - "Hepatitis_B_virus__MBT181" : [ - "DQ111986" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2470_2007" : [ - "FJ850105" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V114_2001" : [ - "EU256087" - ], - "Human_immunodeficiency_virus_1__04013226_2_flD12" : [ - "FJ496076" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_53_2012" : [ - "KJ686262" - ], - "Hepatitis_B_virus__BA95" : [ - "EU366132" - ], - "Enterobacteria_phage_T7" : [ - "AY264774", - "NC_001604" - ], - "Human_bocavirus_GD_HBoV_621" : [ - "GQ926982" - ], - "Simian_immunodeficiency_virus_SIVsmSL92b" : [ - "AF334679" - ], - "Tobacco_yellow_dwarf_virus_A__TYDV_A_AU_196_1986" : [ - "JN989440" - ], - "Cyanophage_9515_10a_9515_10a" : [ - "NC_016657" - ], - "Enterococcus_phage_ECP3__ECP3" : [ - "NC_027335" - ], - "Norovirus_Hu_GII_4_Miyazaki7_2008_JP_Hu_GII_4_Miyazaki7_2008_JP" : [ - "AB541298" - ], - "Torque_teno_virus_10__JT34F" : [ - "NC_014076" - ], - "Human_poliovirus_1__36712" : [ - "KC880382" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5879_1" : [ - "KR105330" - ], - "Chlamydia_trachomatis_RC_J_943" : [ - "NC_021896" - ], - "Human_immunodeficiency_virus_1__WITO_flA1" : [ - "FJ496167" - ], - "Enterovirus_B86_BAN00_10354" : [ - "AY843304" - ], - "Southern_rice_black_streaked_dwarf_virus__Quang_Ngai_1" : [ - "KM576879" - ], - "Papaya_leaf_distortion_mosaic_virus__Taiwan_KS" : [ - "EU233272" - ], - "Xylella_phage_Xfas53" : [ - "NC_013599" - ], - "Porcine_circovirus_2__Tsh2014" : [ - "KM624039" - ], - "Bacillus_phage_Glittering" : [ - "NC_022766" - ], - "Hepatitis_B_virus__cww1046" : [ - "KC774254" - ], - "Usutu_virus_V16" : [ - "KJ438751" - ], - "Hepatitis_B_virus__D134" : [ - "EU939679" - ], - "Macroptilium_yellow_spot_virus__BR_Oaf27_11" : [ - "KJ939856" - ], - "Hepatitis_B_virus__P126" : [ - "GQ477458" - ], - "Hepatitis_C_virus_subtype_6n__D86_93" : [ - "DQ835768" - ], - "Canine_parvovirus_2c__UY173" : [ - "KM457115" - ], - "Shigella_flexneri_5_8401" : [ - "NC_008258" - ], - "Hepatitis_B_virus__T1360d" : [ - "GQ205382" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3598_2007" : [ - "GU131873" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP2B" : [ - "JN013990" - ], - "West_Nile_virus__WNV_1_US_BID_V6694_2007" : [ - "KJ501424" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HC120629" : [ - "KP998430" - ], - "Rabies_virus__F02" : [ - "FJ712195" - ], - "Torque_teno_virus__TTV_HD16c__gbCsCt43_3" : [ - "FR751477" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZP08_2011" : [ - "JQ693011" - ], - "Myxoma_virus_Aust_OB1_Hall_3_94_OB1_406" : [ - "JX565573" - ], - "Avian_orthoreovirus_D20_99" : [ - "KF809667", - "KF809663", - "KF809662", - "KF809669", - "KF809670", - "KF809664", - "KF809671", - "KF809665", - "KF809666" - ], - "Dengue_virus_3_D3_SG_05K4157DK1_2005" : [ - "EU081216" - ], - "Hepatitis_B_virus_B0612746_JKT_F" : [ - "AP011085" - ], - "Watermelon_chlorotic_stunt_virus__IL2_117" : [ - "KM820256" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_14339_2001" : [ - "DQ404163" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_4_2011" : [ - "KJ686229" - ], - "Bean_golden_mosaic_virus__BR_Sag6_12" : [ - "KJ939784" - ], - "Dengue_virus_1__DENV_1_US_BID_V1739_1998" : [ - "FJ205872" - ], - "Canine_astrovirus_Gillingham_2012_UK" : [ - "NC_026814" - ], - "Japanese_encephalitis_virus_3KP__U__CV569" : [ - "GQ902060" - ], - "Phlebovirus_JS2010_014_JS2010_014" : [ - "JQ317171", - "JQ317170", - "JQ317169" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V294_2002" : [ - "EU155366" - ], - "Mumps_virus_MuV_California_USA_50_07_1" : [ - "JX287386" - ], - "Human_immunodeficiency_virus_1__CAP63_5w_F4" : [ - "GQ999976" - ], - "Artichoke_latent_virus__FR50" : [ - "KP405233" - ], - "Helicobacter_pylori_F30" : [ - "NC_017365", - "NC_017369" - ], - "Yellow_baboon_polyomavirus_2__BS94_BK94" : [ - "NC_025897" - ], - "Dengue_virus_4_H241" : [ - "AY947539" - ], - "West_Nile_virus__WNV_1_US_BID_V4099_2008" : [ - "HM488205" - ], - "Midway_nyavirus__RML47153" : [ - "NC_012702" - ], - "Coxsackievirus_A6__TW_391_10" : [ - "JQ946053" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_69_2013" : [ - "KJ672429" - ], - "Human_immunodeficiency_virus_1__02BR082" : [ - "FJ771006" - ], - "Dragonfly_associated_circular_virus_3__TO_DFS3B2_2010" : [ - "NC_023870" - ], - "Pepper_mottle_virus__205136" : [ - "EU586130" - ], - "Hepatitis_B_virus__A3_3" : [ - "GU815574" - ], - "Hepatitis_B_virus__PNF5005" : [ - "KF779350" - ], - "JC_polyomavirus_type_3___308_Tanzania" : [ - "JVU73500" - ], - "African_cassava_mosaic_virus__CF_CF279BE_08" : [ - "KJ887626" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V200_1990" : [ - "EU255984" - ], - "Tobacco_streak_virus" : [ - "FJ655171", - "FJ655172", - "FJ655173", - "NC_003844", - "FJ655169", - "FJ655170", - "DQ067449" - ], - "Bovine_papillomavirus_type_6" : [ - "AJ620208" - ], - "Omsk_hemorrhagic_fever_virus_Bogoluvovska" : [ - "NC_005062" - ], - "Sulfurospirillum_deleyianum_DSM_6946" : [ - "NC_013512" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4002_2008" : [ - "JF937611" - ], - "Human_papillomavirus_type_35__Z141" : [ - "HQ537712" - ], - "Bluetongue_virus_9_BTV_9RSA_vacc" : [ - "JN255965", - "JN255969", - "JN255968", - "JN255967", - "JN255962", - "JN255966", - "JN255970", - "JN255971", - "JN255964", - "JN255963" - ], - "Hepatitis_B_virus__pt2T" : [ - "KM875407" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V2148_1999" : [ - "FJ478453" - ], - "Culex_flavivirus_Toyama734" : [ - "AB701767" - ], - "West_Nile_virus__WNV_1_US_BID_V4561_2003" : [ - "HM488172" - ], - "Chikungunya_virus_M129" : [ - "KM923920" - ], - "Human_poliovirus_2__P2S_Mog65_3__20120" : [ - "AY278549" - ], - "Potato_virus_X_ptDel_9" : [ - "JF430080" - ], - "JC_polyomavirus__JCV161FLC_37" : [ - "JF424944" - ], - "Hepatitis_B_virus__TK38" : [ - "JF754591" - ], - "Hepatitis_B_virus__WHSLH" : [ - "JN257184" - ], - "Squash_leaf_curl_virus__PA2_Q340" : [ - "KM595229" - ], - "Duck_hepatitis_B_virus__CH4" : [ - "EU429324" - ], - "Dengue_virus_2__DF404" : [ - "FM210217" - ], - "Avian_leukosis_virus_GDFX0601" : [ - "KP686142" - ], - "Peru_tomato_mosaic_virus__PPK13" : [ - "NC_004573" - ], - "JC_polyomavirus_316A" : [ - "AY349147" - ], - "Hepatitis_B_virus__JFA3903" : [ - "KF779263" - ], - "Whitewater_Arroyo_mammarenavirus_9310141" : [ - "AF485264" - ], - "Bifidobacterium_animalis_lactis_Bl12" : [ - "NC_021593" - ], - "Gallid_herpesvirus_1_63140_C_08_BR" : [ - "JN542536" - ], - "Human_immunodeficiency_virus_1__L873" : [ - "DQ886038" - ], - "Wheat_dwarf_virus__HBSJZ10_17" : [ - "JQ647471" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00525_2011" : [ - "KJ672575" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0171" : [ - "KP759707" - ], - "Human_papillomavirus_type_6__129" : [ - "HG793937" - ], - "Hepatitis_B_virus_362_16" : [ - "KR013778" - ], - "Human_adenovirus_33" : [ - "JN226758" - ], - "Staphylococcus_aureus_MRSA252" : [ - "NC_002952" - ], - "Foot_and_mouth_disease_virus___type_C__C_S8p260d417" : [ - "DQ409183" - ], - "Dengue_virus_3__MKS_0076" : [ - "KC762682" - ], - "Dengue_virus_2__DENV_2_NI_BID_V3002_2007" : [ - "GQ199869" - ], - "Dengue_virus_4_H780571_DENV_4_AM5105" : [ - "JQ513344" - ], - "European_mountain_ash_ringspot_associated_virus__E52286" : [ - "HG799718" - ], - "Human_mastadenovirus_C" : [ - "AY339865", - "NC_001405" - ], - "Porcine_circovirus_2__PCV_53" : [ - "KC514990" - ], - "Hepatitis_B_virus__318_99_8" : [ - "EU872011" - ], - "South_African_cassava_mosaic_virus__MG_MG137A2_09" : [ - "KJ887666" - ], - "Synechococcus_phage_S_RIM8_A_HR1_S_RIM8_A_HR1" : [ - "NC_020486" - ], - "Maize_streak_virus__MSV_A_GH_gh146_Afr_2010" : [ - "KJ699332" - ], - "Porcine_circovirus_2_SH07210" : [ - "GQ359000" - ], - "Euprosterna_elaeasa_virus" : [ - "NC_003412" - ], - "Hepatitis_C_virus_subtype_1b__LyHCVpmbcSR" : [ - "AB779679" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V37_2004" : [ - "EU862834" - ], - "Hepatitis_B_virus__LBY009" : [ - "GQ358141" - ], - "Columbid_circovirus__PL114" : [ - "KF738844" - ], - "Pepper_yellow_vein_Mali_virus_Mali_Burkina_Faso_Ouaga_sweet_pepper1_2008" : [ - "FM876849" - ], - "Ludwigia_yellow_vein_virus" : [ - "DQ641708" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K127" : [ - "AJ717517" - ], - "Dengue_virus_4__INDIA_G11337" : [ - "JF262783" - ], - "Porcine_circovirus_2_SD_LY" : [ - "KJ511871" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3383_2006" : [ - "GU131949" - ], - "Xanthomonas_phage_Xop411" : [ - "NC_009543" - ], - "Human_poliovirus_2__32191" : [ - "FJ460223" - ], - "Ageratum_yellow_vein_China_betasatellite__G50" : [ - "HF569259" - ], - "Hepatitis_B_virus__SSE_MX" : [ - "KF356417" - ], - "Foot_and_mouth_disease_virus___type_SAT_2__TAN_5_2012" : [ - "KM268900" - ], - "HBV_genotype_A1__Mart_B43" : [ - "HE974375" - ], - "Hepatitis_B_virus__ES69_9" : [ - "JF828911" - ], - "Halobacillus_halophilus_DSM_2266" : [ - "NC_017669", - "NC_017668", - "NC_017670" - ], - "Hepatitis_B_virus__HBV28" : [ - "KC875284" - ], - "Porcine_circovirus_2__110_08_2" : [ - "HQ591367" - ], - "Hepatitis_B_virus__HBV_12N" : [ - "EU660224" - ], - "Pseudomonas_ND6" : [ - "NC_017986", - "NC_018746", - "NC_005244" - ], - "Human_papillomavirus_type_39__Qv21219" : [ - "KC470239" - ], - "Dengue_virus_2__DENV_2_PE_FPI01695_2011" : [ - "KC294211" - ], - "Hepatitis_B_virus_1385_3" : [ - "KR014056" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4325_1" : [ - "KR105234" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3822_2006" : [ - "GU131909" - ], - "Alteromonas_phage_vB_AmaP_AD45_P3" : [ - "KF005318" - ], - "Torque_teno_virus__tth16" : [ - "AJ620220" - ], - "Newcastle_disease_virus__Teal_France_100011_2010" : [ - "JQ013039" - ], - "Streptococcus_phage_MM1" : [ - "NC_003050" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA5162_2009" : [ - "KJ672560" - ], - "Sugarcane_yellow_leaf_virus__Haw87_4319" : [ - "GU570007" - ], - "Seoul_virus__DPRK08" : [ - "JX853576", - "JX853574", - "JX853575" - ], - "Snakehead_retrovirus" : [ - "NC_001724" - ], - "Hepatitis_B_virus__C49" : [ - "EU939549" - ], - "Lettuce_mosaic_virus__CL427_ev" : [ - "KJ161181" - ], - "Hepatitis_B_virus__A2_5" : [ - "GU815564" - ], - "Streptomyces_scabiei_87_22" : [ - "NC_013929" - ], - "Gardnerella_vaginalis_ATCC_14019" : [ - "NC_014644" - ], - "Human_immunodeficiency_virus_1__00BW1880_2" : [ - "AF443100" - ], - "Eastern_equine_encephalitis_virus_Florida91_4697" : [ - "AY705241" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7565_2008" : [ - "KJ189313" - ], - "Human_poliovirus_3__P3_Jinan_1_09" : [ - "GU256222" - ], - "Marinomonas_phage_P12026" : [ - "NC_018269" - ], - "Hepatitis_B_virus__DEN5934" : [ - "KF779221" - ], - "Vibrio_phage_Vf12" : [ - "NC_005949" - ], - "Hepatitis_B_virus__G181" : [ - "JQ040154" - ], - "Hepatitis_B_virus__I192" : [ - "FJ562338" - ], - "Human_mastadenovirus_B_human_USA_ak32_AdV3a_2004_3_P3H3F3" : [ - "JX423380" - ], - "Hepatitis_B_virus__D_NZL_MO59_1999" : [ - "HQ700470" - ], - "Chickpea_chlorotic_dwarf_virus__F_YeL5_96" : [ - "KC172672" - ], - "Pipistrellus_bat_coronavirus_HKU5_HKU5_1_LMH03f" : [ - "NC_009020" - ], - "Potato_virus_X_bs" : [ - "AB056719" - ], - "Mungbean_yellow_mosaic_virus___Vigna__KA21" : [ - "AJ439059" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_15_2013" : [ - "KF600645" - ], - "Hepatitis_C_virus_subtype_1b_HCV_S" : [ - "AY460204" - ], - "Mycoplasma_parvum_Indiana" : [ - "NC_022575" - ], - "Tomato_leaf_curl_Philippines_virus__P93" : [ - "EU487034" - ], - "Hepatitis_B_virus_497_7" : [ - "KR013952" - ], - "Canine_distemper_virus_Louguantai_1" : [ - "KP677502" - ], - "Acheta_domestica_densovirus" : [ - "NC_004290", - "HQ827781" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2179_2000" : [ - "FJ639750" - ], - "Hepatitis_B_virus__P004_C_012" : [ - "KJ173325" - ], - "Columbid_circovirus__Fra_A40042" : [ - "DQ915960" - ], - "JC_polyomavirus__KE_7" : [ - "AB126997" - ], - "Aichi_virus_1__Chshc7" : [ - "FJ890523" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_414N2__414N2" : [ - "JN819504" - ], - "Porcine_epidemic_diarrhea_virus_TC_PC182_P2" : [ - "KM392231" - ], - "Lactobacillus_kefiranofaciens_ZW3" : [ - "NC_015602", - "NC_015598", - "NC_015603" - ], - "Hepatitis_B_virus_B0714157_WBK_F" : [ - "AP011096" - ], - "Squash_mosaic_virus__RZ" : [ - "KP223323", - "KP223324" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda24_05" : [ - "KC706637", - "KC706665" - ], - "Dengue_virus_2__MD1244" : [ - "FM210239" - ], - "Hepatitis_B_virus_513_26a" : [ - "KR013957" - ], - "Porcine_circovirus_2_132_05_IB_132_05_Br" : [ - "KC835193" - ], - "Barley_yellow_mosaic_virus_2__resistance_breaking__HAT" : [ - "AJ515481", - "AJ515487" - ], - "Hepatitis_B_virus__cxa1053" : [ - "KC774280" - ], - "Banana_bunchy_top_virus__LeDong" : [ - "GU559703" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C31" : [ - "KJ019157" - ], - "Pigeon_paramyxovirus_1_pi_CH_NM_0707_2011" : [ - "KJ782376" - ], - "SARS_coronavirus_Sino3_11_Sino3_11" : [ - "AY485278" - ], - "Hepatitis_B_virus__Alaska416" : [ - "AB287317" - ], - "Dengue_virus_2__DC756Y12" : [ - "KM279561" - ], - "West_Nile_virus__Ast01_182" : [ - "DQ411030" - ], - "West_Nile_virus__WNV_1_US_BID_V6203_2008" : [ - "KJ501254" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V405_2006" : [ - "EU256068" - ], - "Porcine_circovirus_2__S98_305_2" : [ - "JX512855" - ], - "Feline_coronavirus_Felis_catus_NLD_UU76_2010" : [ - "KF530124" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3938_2008" : [ - "GU131733" - ], - "Chikungunya_virus_IND_63_WB1" : [ - "EF027140" - ], - "Faba_bean_necrotic_yellows_virus__Jimenado_Mu_R7" : [ - "KC979042" - ], - "Porcine_epidemic_diarrhea_virus_CH_GDGZ_2012" : [ - "KF384500" - ], - "Norwalk_like_virus__Saitama_U18" : [ - "AB039781" - ], - "Hepatitis_delta_virus__D13" : [ - "KJ744229" - ], - "Bean_common_mosaic_virus__RU1M" : [ - "KJ645793" - ], - "Bluetongue_virus_NET2007_01" : [ - "GQ506459", - "GQ506457", - "GQ506452", - "GQ506458", - "GQ506460", - "GQ506456", - "GQ506455", - "GQ506453", - "GQ506451", - "GQ506454" - ], - "Hepatitis_B_virus__EN35_LC" : [ - "JN664942" - ], - "Bovine_papillomavirus_type_14__CGKnose1" : [ - "KP276343" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2314_2001" : [ - "FJ744728" - ], - "Human_herpesvirus_5_BE_28_2011" : [ - "KP745669" - ], - "West_Nile_virus__WNV_1_US_BID_V6654_2002" : [ - "KJ501397" - ], - "Hepatitis_B_virus_580_1" : [ - "KR013985" - ], - "Echovirus_E26_Coronel" : [ - "AY302550" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8422_2001" : [ - "KJ627678" - ], - "Chlamydophila_felis_Fe_C_56" : [ - "NC_007899", - "NC_007900" - ], - "Human_immunodeficiency_virus_1__06KECst_004" : [ - "FJ623489" - ], - "Human_immunodeficiency_virus_1__04ZAPS193B1" : [ - "DQ164109" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_Mahe_SC10AS1_2004" : [ - "JF909155" - ], - "Acanthocystis_turfacea_Chlorella_virus_1_ATCV_1" : [ - "NC_008724" - ], - "Hepatitis_B_virus__TK157" : [ - "JF754610" - ], - "Human_papillomavirus_type_47" : [ - "PPH47CG" - ], - "Beak_and_feather_disease_virus_BFDV_AUS_SP_04_233B" : [ - "KF673336" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI25_12_DNA_B" : [ - "HE979790" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI27_12" : [ - "HE979763" - ], - "Porcine_circovirus_2_SD4" : [ - "DQ201640" - ], - "SFTS_virus_HNXY_93_HNXY_93" : [ - "KC292311", - "KC292337", - "KC292284" - ], - "Human_immunodeficiency_virus_1__98CMA105" : [ - "AY169816" - ], - "Hepatitis_delta_virus_dFr2210_dFr2210" : [ - "AM902181" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG653A3_11" : [ - "KJ888084" - ], - "West_Nile_virus__WNV_1_US_BID_V4193_2000" : [ - "HM488131" - ], - "Idiomarinaceae_phage_Phi1M2_2" : [ - "NC_025471" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite__Gonda" : [ - "KJ868822" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_MEX_29_2007" : [ - "KF826840" - ], - "Dengue_virus_2__DENV_2_CO_BID_V1594_2005" : [ - "FJ024473" - ], - "Wheat_dwarf_virus__SXLF07_2" : [ - "KJ536117" - ], - "Propionibacterium_phage_PHL116M10__PHL116M10" : [ - "KJ578777" - ], - "Lactobacillus_phage_Lc_Nu" : [ - "NC_007501" - ], - "Turnip_mosaic_virus__ESP2" : [ - "AB701707" - ], - "Dengue_virus_1__DENV_1_NI_BID_V536_2005" : [ - "FJ850113" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1700_2007" : [ - "FJ024462" - ], - "Hepatitis_B_virus__A55" : [ - "FJ904411" - ], - "West_Nile_virus__WNV_1_US_BID_V7415_2007" : [ - "KJ501126" - ], - "Porcine_epidemic_diarrhea_virus_CH_YNKM_8_2013" : [ - "KF761675" - ], - "Maize_streak_virus__MSV_A_MZ_Map1_Moz16_2007" : [ - "HQ693350" - ], - "Human_papillomavirus_type_11__A47" : [ - "FN907959" - ], - "Neisseria_meningitidis_053442" : [ - "NC_010120" - ], - "Circoviridae_2_LDMD_2013" : [ - "NC_025706" - ], - "Hepatitis_B_virus_Ehi_SK_lam_2_2" : [ - "AB195934" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140008" : [ - "KR653251" - ], - "Pepper_huasteco_yellow_vein_virus__Guanajuato1" : [ - "GU128146", - "GU128150" - ], - "Propionibacterium_acnes_ATCC_11828" : [ - "NC_017550" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C25" : [ - "KJ019152" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2356_2007" : [ - "FJ850050" - ], - "Simian_adenovirus_34" : [ - "FJ025905" - ], - "Lettuce_mosaic_virus__Yar" : [ - "KJ161194" - ], - "Hepatitis_B_virus__blz2022" : [ - "KC774363" - ], - "Bluetongue_virus_16__TUR2000_10" : [ - "AJ586693" - ], - "Feline_coronavirus_FCoV_NTU156_P_2007" : [ - "GQ152141" - ], - "Hepatitis_B_virus__FEP2" : [ - "AB485810" - ], - "Maize_chlorotic_mottle_virus__LETF2S1" : [ - "KP798455" - ], - "Human_poliovirus_1_CHN8264c_GZ_CHN_2004" : [ - "FJ769385" - ], - "Sri_Lankan_cassava_mosaic_virus__Tamil_Nadu_7" : [ - "AJ890229" - ], - "Hepatitis_B_virus_HB415" : [ - "HM011477" - ], - "Torque_teno_sus_virus_1b__GD_China_2009_TTV2_15" : [ - "JF937657" - ], - "Hepatitis_C_virus_subtype_1b_MD17" : [ - "AF207758" - ], - "Hepatitis_B_virus__YY019M_e122" : [ - "KJ173380" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C99" : [ - "KJ019065" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K90" : [ - "AJ704962", - "AJ717531" - ], - "Hepatitis_B_virus__SHB46" : [ - "KJ598684" - ], - "Bean_golden_mosaic_virus__BR_Flt3_11" : [ - "KJ939768" - ], - "Cotton_leaf_curl_Gezira_betasatellite__Datura_1" : [ - "DQ644564" - ], - "Duck_circovirus__9_1" : [ - "KF941309" - ], - "Hepatitis_B_virus_China_Xinjiang_HB52_2009_Xinjiang_HB52" : [ - "HQ833468" - ], - "Human_immunodeficiency_virus_1__03GH197AG" : [ - "AB286864", - "AB286863" - ], - "Chilli_leaf_curl_virus__Th2" : [ - "JN604497" - ], - "JC_polyomavirus__ES" : [ - "AB118234" - ], - "Dengue_virus_2_D2_SG_05K4137DK1_2005" : [ - "EU081179" - ], - "Norovirus_GII_Hu_TW_2012_GII_Pe_GII_4_Sydney2012_Taipei_109__Taipei_109" : [ - "KJ196289" - ], - "Human_immunodeficiency_virus_1__J11233" : [ - "EU697906" - ], - "Hepatitis_B_virus__S1371_16" : [ - "FJ787467" - ], - "Human_papillomavirus_type_53__Qv08183" : [ - "EF546470" - ], - "Sapovirus_NongKhai_50_Thailand_NongKhai_50_Thailand" : [ - "AY646853" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1636_2007" : [ - "FJ432719" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX10_H94_2010_IE" : [ - "KC344469", - "KC344491" - ], - "West_Nile_virus__WNV_1_Gallus_BID_V4955_kidney" : [ - "JN183894" - ], - "Hepatitis_B_virus__PG_25" : [ - "KF471650" - ], - "Foot_and_mouth_disease_virus___type_O__IND142_311__2013" : [ - "KJ825802" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0121" : [ - "KP759669" - ], - "Parrot_hepatitis_B_virus__P1037" : [ - "JX274033" - ], - "Human_poliovirus_1_CHN8184_GZ_CHN_2004" : [ - "FJ769378" - ], - "Bovine_viral_diarrhea_virus_3_D32_00__HoBi" : [ - "AB871953" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_109_2012" : [ - "KJ686150" - ], - "Staphylococcus_aureus_JH1" : [ - "NC_009632", - "NC_009619" - ], - "Hepatitis_B_virus__B2_6" : [ - "GU815599" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9480_2013" : [ - "KJ643540" - ], - "Dickeya_phage_RC_2014" : [ - "NC_025452" - ], - "Hepatitis_B_virus__2168" : [ - "FJ386640" - ], - "Wheat_dwarf_virus__SXHC07_28" : [ - "KJ536112" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4247_2007" : [ - "HM181947" - ], - "Tobacco_etch_virus__Shannxi" : [ - "JN711120" - ], - "Banana_streak_MY_virus__BSMYV_IN1" : [ - "KF724854" - ], - "Streptosporangium_roseum_DSM_43021" : [ - "NC_013596", - "NC_013595" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_A2_2D_P" : [ - "JX570639" - ], - "Human_immunodeficiency_virus_1__PS2019_Day0" : [ - "DQ676880" - ], - "Sweet_potato_virus_G__Z01001" : [ - "JN613806" - ], - "Porcine_circovirus_2_KU_2" : [ - "GU244507" - ], - "Hepatitis_B_virus__19749" : [ - "AJ627225" - ], - "SARS_coronavirus__HC_SZ_266_03" : [ - "AY545916" - ], - "Hepatitis_B_virus__D103" : [ - "EU939650" - ], - "Synechococcus_phage_S_CBS1" : [ - "NC_016164" - ], - "Mesta_yellow_vein_mosaic_virus__India_Coochbehar_2008___Coochbehar_East_India" : [ - "FJ159265" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2244_2005" : [ - "FJ639807" - ], - "Grapevine_red_blotch_associated_virus__NY147" : [ - "KF751708" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1102_2007" : [ - "EU529683" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_238_2011" : [ - "KJ686247" - ], - "Echovirus_E6_Echo6_Hokkaido_JPN_19720_2011" : [ - "AB705308" - ], - "JC_polyomavirus__Sam_3" : [ - "AB127342" - ], - "Feline_coronavirus_UU2_UU2" : [ - "FJ938060" - ], - "Human_poliovirus_1__10086c" : [ - "FJ859059" - ], - "Foot_and_mouth_disease_virus___type_O__Israel_07_6380" : [ - "FJ175662" - ], - "Dengue_virus_1__DENV_1_US_BID_V853_1998" : [ - "EU482592" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__MY_486" : [ - "KJ609516" - ], - "Changuinola_virus__CGLV_BE_AR_425269" : [ - "KF668564", - "KF668557", - "KF668560", - "KF668565", - "KF668563", - "KF668559", - "KF668566", - "KF668562" - ], - "Kolente_virus__DakAr_K7292" : [ - "NC_025342" - ], - "Dengue_virus_1_D1_SG_05K3910DK1_2005" : [ - "EU081246" - ], - "Mycobacterium_phage_Manad" : [ - "NC_024363" - ], - "Human_immunodeficiency_virus_1__PMVL_025" : [ - "EF514702" - ], - "Bacillus_phage_BCU4" : [ - "JN797798" - ], - "Tobacco_curly_shoot_alphasatellite__Y99" : [ - "AJ579347" - ], - "Rickettsia_japonica_YH" : [ - "NC_016050" - ], - "Natronomonas_pharaonis_DSM_2160" : [ - "NC_007426", - "NC_007428", - "NC_007427" - ], - "Simian_torque_teno_virus_33__VWP00522_11" : [ - "NC_026764" - ], - "Lettuce_mosaic_virus__Ham6" : [ - "KJ161187" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK7" : [ - "KF287136" - ], - "Hepatitis_B_virus__A1_50022" : [ - "FJ692576" - ], - "Bean_golden_mosaic_virus__BR_Mur6_11" : [ - "KJ939759" - ], - "Watermelon_chlorotic_stunt_virus__IL2_119" : [ - "KM820258" - ], - "Human_immunodeficiency_virus_1__Fj064" : [ - "EF036533" - ], - "Papaya_ringspot_virus_Leaf_mottling_Ping_tong" : [ - "DQ340771" - ], - "Yellow_fever_virus__ArD181564" : [ - "JX898880" - ], - "Soybean_mosaic_virus__Lo3" : [ - "KF135490" - ], - "Human_immunodeficiency_virus_1__CAP210_5w" : [ - "GQ999983" - ], - "Hepatitis_B_virus__Leb26" : [ - "JN642137" - ], - "Hepatitis_B_virus__KOR13CHB" : [ - "GQ475317" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0174" : [ - "KP759708" - ], - "Murid_herpesvirus_8__England" : [ - "NC_019559" - ], - "Hepatitis_B_virus_Kokusai_Iryo_1_OA" : [ - "AB210821" - ], - "African_cassava_mosaic_virus__CF_CF48AB_07" : [ - "KJ887773" - ], - "Lily_mottle_virus__SMi" : [ - "AM048875" - ], - "Dengue_virus_2__DENV_2_US_BID_V1177_1989" : [ - "EU482580" - ], - "Porcine_circovirus_2_PT_8296_08" : [ - "HQ831522" - ], - "Hepatitis_delta_virus__D7_A" : [ - "KJ744220" - ], - "Bovine_herpesvirus_6__Pennsylvania_47" : [ - "NC_024303" - ], - "Clostridium_acidurici_9a" : [ - "NC_018657", - "NC_018664" - ], - "Foot_and_mouth_disease_virus___type_SAT_3_SAT3_3kenya_11_60_sat3_3kenya_iso22" : [ - "AY593852" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1516_2007" : [ - "EU660418" - ], - "Hepatitis_B_virus__HBV_Amsterdam_1_1994" : [ - "KJ194506" - ], - "Human_parainfluenza_virus_1_HPIV1_USA_38078A_2011" : [ - "KF530203" - ], - "Rhizobium_etli_CFN_42" : [ - "NC_007763", - "NC_007766", - "NC_007765", - "NC_007762", - "NC_007761", - "NC_004041", - "NC_007764" - ], - "Tomato_severe_rugose_virus__BR_Vic15_09" : [ - "JX865629" - ], - "Dengue_virus_2_DENV_2_ID_1022DN_1975" : [ - "GQ398268" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Trichy_OY115_2006___OY115" : [ - "GU111983" - ], - "Candidatus_Kinetoplastibacterium_crithidii__ex_Angomonas_deanei_ATCC_30255" : [ - "NC_019815" - ], - "Human_coronavirus_OC43_OC43_human_USA_991_19_1999" : [ - "KF530070" - ], - "Sewage_associated_circular_DNA_virus_21__SaCV_21_NZ_BS4169_2012" : [ - "NC_026264" - ], - "Hepatitis_B_virus__CBL027" : [ - "GQ358143" - ], - "Hepatitis_B_virus__009_DR_Wad" : [ - "KF873544" - ], - "Enterobacteria_phage_NC13" : [ - "DQ079901" - ], - "Toscana_virus_TOSV_Siena_ITA_1993_1" : [ - "KM275773" - ], - "Mycobacterium_canettii_CIPT_140010059" : [ - "NC_015848" - ], - "Echovirus_E6_lytic_Charles" : [ - "E6U16283" - ], - "Aphid_lethal_paralysis_virus__AP" : [ - "KJ817182" - ], - "Pepino_mosaic_virus__P19" : [ - "HQ650559" - ], - "Cowpox_virus_RatGer09_1" : [ - "KC813503" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V332_2002" : [ - "EU155296" - ], - "Chikungunya_virus_Lamu33" : [ - "HQ456255" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC32BY1_2010" : [ - "JF909111" - ], - "Deformed_wing_virus__Chilensis_A1" : [ - "JQ413340" - ], - "Plum_pox_virus_PPV_D_Mi2" : [ - "AB576074" - ], - "Muscovy_duck_reovirus_ZJ2000M" : [ - "KF306084", - "KF306090", - "KF306086", - "KF306091", - "KF306087", - "KF306085", - "KF306088", - "KF306083", - "KF306082", - "KF306089" - ], - "Maize_streak_virus___A_Bambui___MB1K1" : [ - "FM210279" - ], - "Hepatitis_B_virus__M0914" : [ - "KC315400" - ], - "Erwinia_phage_phiEa1H" : [ - "FQ482084" - ], - "Sclerotinia_sclerotiorum_hypovirulence_associated_DNA_virus_1__SsHADV_1_US_549DFS_12" : [ - "KM598383" - ], - "Sulfolobus_spindle_shaped_virus_6" : [ - "NC_013587" - ], - "Simian_adenovirus_23_ATCC_VR_592" : [ - "AY530877" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1925_2008" : [ - "FJ410257" - ], - "Porcine_circovirus_2__FMV_06_1717" : [ - "JQ994268" - ], - "Hepatitis_B_virus__Leb51" : [ - "JN642157" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG648B1_11" : [ - "KJ888077" - ], - "Porcine_circovirus_2__CQQH08" : [ - "KF742546" - ], - "Hepatitis_B_virus__Patient__4075__PNN2" : [ - "AB219427" - ], - "Alkhumra_hemorrhagic_fever_virus_200307463" : [ - "JF416955" - ], - "Columbid_circovirus__PL60" : [ - "KF738863" - ], - "Hepatitis_B_virus__33UC" : [ - "AB493828" - ], - "Citrus_leaf_rugose_virus__ATCC_PV_195" : [ - "JX256248", - "JX256249" - ], - "Porcine_circovirus_2_DS25" : [ - "HM000100" - ], - "Staphylococcus_phage_69" : [ - "NC_007048" - ], - "Chikungunya_virus_SV0444_95" : [ - "HM045787" - ], - "Pirital_mammarenavirus_3945__AV_97020912" : [ - "AY574573", - "AY574571", - "AY574572" - ], - "West_Nile_virus__WNV_1_US_BID_V6521_2002" : [ - "KJ501339" - ], - "Hepatitis_B_virus__S129_9" : [ - "FJ787437" - ], - "Lausannevirus__7715" : [ - "NC_015326" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD216_2013" : [ - "KM229864" - ], - "Dengue_virus_2__DENV_2_NI_BID_V543_2005" : [ - "FJ906956" - ], - "Israel_turkey_meningoencephalomyelitis_virus_ME_30502" : [ - "KF917537" - ], - "Hepatitis_B_virus__MGL209F" : [ - "AB270543" - ], - "Dengue_virus_2__DENV_2_US_BID_V594_2006" : [ - "EU482725" - ], - "West_Nile_virus__WNV_1_US_BID_V6375_2002" : [ - "KJ501265" - ], - "Human_poliovirus_2_NIE0911455_KTS09_05" : [ - "JX275184" - ], - "Foot_and_mouth_disease_virus___type_O_O_PanAsia_otaiwan97_iso106_112" : [ - "AY593835" - ], - "Equine_arteritis_virus_ARVAC" : [ - "EU586275" - ], - "Citrus_psorosis_virus" : [ - "AY224663", - "AF218572" - ], - "Hepatitis_B_virus__IIc" : [ - "AY167095" - ], - "Rabies_virus_SAD_Bern_original_var_3" : [ - "EF206712" - ], - "Coxsackievirus_A6__5047_SH_CHN_2013" : [ - "KJ541156" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pun_beta_16" : [ - "EU384582" - ], - "Human_immunodeficiency_virus_1__14294_1" : [ - "DQ853436" - ], - "Cotton_leaf_curl_Multan_betasatellite__SZ1" : [ - "JQ963630" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kampala_Okra10" : [ - "FN554530" - ], - "Plum_pox_virus_Winona" : [ - "KC347608" - ], - "Avian_leukosis_virus_Endogenous_avian_leukosis_virus_3__ev_3" : [ - "AY013304" - ], - "Norovirus_Hu_GII_4_NIHIC17_6_2012_USA_Hu_GII_4_NIHIC17_6_2012_USA" : [ - "KF712501" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P3pp23" : [ - "FJ882944" - ], - "Human_immunodeficiency_virus_1__97VNHCM309" : [ - "FJ185260" - ], - "Human_bocavirus_GD_HBoV_571" : [ - "GQ926981" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V429_2002" : [ - "EU155323" - ], - "Dengue_virus_1__HNRG13561" : [ - "KC692503" - ], - "Enterovirus_A71_C4" : [ - "KM593929", - "KP861243" - ], - "Citrus_tristeza_virus__AT_1" : [ - "JQ061137" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C48" : [ - "KJ019031" - ], - "Norovirus_Hu_GII_20460_2010_VNM_Hu_GII_20460_2010_VNM" : [ - "KC409300" - ], - "Apple_stem_pitting_virus__KL1" : [ - "JF946775" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL148A" : [ - "AB985568" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V167_1992" : [ - "EU255964" - ], - "Wheat_dwarf_virus____Yunnan_Kunming___YNKM06_1" : [ - "EF536883" - ], - "Mycobacterium_phage_Porky" : [ - "NC_011055" - ], - "Bhendi_yellow_vein_India_virus__India_Guntur_OY60_2005___OY60" : [ - "GU112015" - ], - "Norovirus_Hu_GII_4_CGMH22_2010_TW" : [ - "JN400620" - ], - "Human_immunodeficiency_virus_1_CNGL179" : [ - "AF503396" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ02B00_2004" : [ - "JF909064" - ], - "West_Nile_virus__WNV_1_US_BID_V7432_2011" : [ - "KJ501142" - ], - "Uukuniemi_virus_S23" : [ - "NC_005220", - "NC_005221" - ], - "Human_herpesvirus_4_type_2_AG876" : [ - "NC_009334" - ], - "Hepatitis_C_virus__EBW9" : [ - "KC248199" - ], - "Norovirus_Hu_GII_4_Chiba2_2008_JP_Hu_GII_4_Chiba2_2008_JP" : [ - "AB541231" - ], - "Bacillus_atrophaeus_1942" : [ - "NC_014639" - ], - "Norovirus_Hu_GII_4_Hokkaido5_2006_JP_Hu_GII_4_Hokkaido5_2006_JP" : [ - "AB447431" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_ARG_170_2005" : [ - "KF530260" - ], - "Human_papillomavirus_type_16__BF039" : [ - "HQ644237" - ], - "Hepatitis_B_virus__KOR53HCC" : [ - "GQ475357" - ], - "Human_immunodeficiency_virus_1__99ZACM4" : [ - "AF411964" - ], - "Gremmeniella_abietina_type_B_RNA_virus_XL2__E46" : [ - "DQ399290" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V191_1990" : [ - "EU255981" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HEB1" : [ - "EF112447" - ], - "Corynebacterium_diphtheriae_HC04" : [ - "NC_016788" - ], - "Chicken_anemia_virus__22" : [ - "KJ728830" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_2090_2004" : [ - "KJ469632" - ], - "Hepatitis_B_virus_1889Nic" : [ - "AY090455" - ], - "Sweet_potato_leaf_curl_virus__US_MS_WS1_4" : [ - "HQ333141" - ], - "Rice_tungro_bacilliform_virus_Chainat_isolate" : [ - "AF220561" - ], - "Infectious_bronchitis_virus_ck_CH_LHLJ_100902" : [ - "JF828980" - ], - "Bean_golden_mosaic_virus__BR_Pai3_11" : [ - "KJ939739" - ], - "African_cassava_mosaic_virus__CF_CF73AB_07" : [ - "KJ887781" - ], - "Cleome_leaf_crumple_virus__BgV05B_1_C53" : [ - "JF694463" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3729" : [ - "KM233054" - ], - "Enterobacter_cloacae_EcWSU1" : [ - "NC_016515", - "NC_016514" - ], - "Hepatitis_B_virus__WY_HZ_5" : [ - "JX504532" - ], - "Porcine_circovirus_2__A4203" : [ - "JF317574" - ], - "Rubella_virus_RVi_NJ_USA_61_1a" : [ - "JN635281" - ], - "Lily_symptomless_virus__SMi" : [ - "AM263208" - ], - "Hepatitis_B_virus__M85_1044" : [ - "EU330999" - ], - "Chikungunya_virus_SL_CR_3" : [ - "HM045799" - ], - "Hepatitis_B_virus__Z31_2" : [ - "GQ227694" - ], - "Simian_adenovirus_C__BaAdV_3" : [ - "KC693023" - ], - "Hepatitis_B_virus__WHMQR1" : [ - "JN257216" - ], - "Pepper_yellow_vein_Mali_virus_Mali_Burkina_Faso_Ouaga_sweet_pepper2_2008" : [ - "FM876851" - ], - "Cotton_leaf_curl_Gezira_virus__Hollyhock_Jordan___Hollyhock_Jordan" : [ - "GU945265" - ], - "Porcine_circovirus_2__P757" : [ - "FJ905459" - ], - "East_African_cassava_mosaic_virus_Kenya_TZM" : [ - "AY795986" - ], - "Mycoplasma_putrefaciens_KS1" : [ - "NC_015946" - ], - "Dengue_virus_1__MKS_IF039" : [ - "KC762629" - ], - "Diascia_yellow_mottle_virus_OR" : [ - "NC_011086" - ], - "Hepatitis_B_virus__65_2_C8" : [ - "EU717216" - ], - "Caldicellulosiruptor_obsidiansis_OB47" : [ - "NC_014392" - ], - "Malvastrum_yellow_mosaic_virus_satellite_DNA_beta__Hn37" : [ - "NC_008560" - ], - "Beet_soil_borne_mosaic_virus__MRM06_mec" : [ - "JF693322" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E093_2007_G3P_8__E093" : [ - "KF371745", - "KF371738", - "KF371737", - "KF371746", - "KF371739", - "KF371742", - "KF371741", - "KF371743", - "KF371740" - ], - "Hepatitis_B_virus__GU1127" : [ - "GQ161838" - ], - "Solitalea_canadensis_DSM_3403" : [ - "NC_017770" - ], - "Enterovirus_A71_TW_72232_04" : [ - "GQ231940" - ], - "Human_immunodeficiency_virus_1__98BWMC14_a3" : [ - "AF443078" - ], - "Human_herpesvirus_4_HN15" : [ - "AB850654" - ], - "Dengue_virus_1_FGA_NA_d1d" : [ - "AF226686" - ], - "Porcine_circovirus_2__HuZ0901" : [ - "GU325764" - ], - "Rattus_norvegicus_polyomavirus_1__5704" : [ - "KR075945" - ], - "Beet_ringspot_virus_S" : [ - "NC_003694", - "NC_003693" - ], - "Hepatitis_B_virus__LAMr_Pt__7_Adefovir_treated_Pt__20" : [ - "AB367398" - ], - "Hepatitis_B_virus__582_4" : [ - "AY217362" - ], - "JC_polyomavirus__IN_4" : [ - "AB126990" - ], - "Propionibacterium_phage_PHL010M04" : [ - "NC_022336" - ], - "Enterovirus_B97_DT94_0227" : [ - "AB426611" - ], - "Banana_bunchy_top_virus__aP32" : [ - "AB250953", - "AB250956" - ], - "Hepatitis_B_virus__dww1036" : [ - "KC774443" - ], - "Tobacco_etch_virus__Mex21" : [ - "KM282188" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5P10_2009_c5P10" : [ - "KF514420" - ], - "Plum_pox_virus_M_PS" : [ - "AJ243957" - ], - "Human_bocavirus_2a_TU_HBoV2A_TU_A_114_06" : [ - "FJ973558" - ], - "Mengo_virus_medium_plague_Rz_pMwt" : [ - "DQ294633" - ], - "Coxsackievirus_A17__CV_A17_67610" : [ - "JF260924" - ], - "Soybean_mosaic_virus__WS105" : [ - "FJ640958" - ], - "Bean_golden_mosaic_virus__BR_Una6_12" : [ - "KJ939826" - ], - "Human_immunodeficiency_virus_1__96CMA102" : [ - "AY169803" - ], - "Maize_chlorotic_mottle_virus__Yunnan11" : [ - "KF010583" - ], - "Apple_chlorotic_leaf_spot_virus_A4" : [ - "AB326223" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K300" : [ - "AJ704965", - "AJ717580" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4820_2009" : [ - "HM756280" - ], - "Dengue_virus_3__DENV_3_LC_BID_V3929_2001" : [ - "GQ868616" - ], - "Avian_leukosis_virus_Yg_6100" : [ - "AB764107" - ], - "Sewage_associated_circular_DNA_virus_15__SaCV_15_NZ_BS3557_2012" : [ - "NC_026257" - ], - "Hepatitis_B_virus__MY772684" : [ - "KJ803777" - ], - "Hepatitis_B_virus__H36" : [ - "FJ349212" - ], - "Rift_Valley_fever_virus_ZH_1776" : [ - "DQ380153", - "DQ375411", - "DQ380203" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI10_12_DNA_B" : [ - "HE979784" - ], - "Beak_and_feather_disease_virus__2NC94F" : [ - "JX049212" - ], - "Po_Circo_like_virus_41" : [ - "NC_025683" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V311_2006" : [ - "EU155376" - ], - "Tomato_spotted_wilt_virus__GD98" : [ - "AJ418780" - ], - "Chickpea_chlorotic_dwarf_virus__K_ErC347_05" : [ - "KC172682" - ], - "Hepatitis_B_virus_B0024" : [ - "DQ922649" - ], - "Hepatitis_B_virus__PW6" : [ - "EU239226" - ], - "Mungbean_yellow_mosaic_virus__VN15" : [ - "JX244176", - "JX244181" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3825_1" : [ - "KM233098" - ], - "Pseudomonas_phage_vB_PaeP_PAO1_1_15pyo_PAO1_1_15pyo" : [ - "LN610580" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_SriGanganagar1_2010" : [ - "JF502388" - ], - "Measles_virus_T11wild" : [ - "AB481087" - ], - "Human_respiratory_syncytial_virus__07_041785" : [ - "JX015492" - ], - "African_cassava_mosaic_virus__CF_CF352AB2_08" : [ - "KJ887815" - ], - "Vibrio_phage_ICP1_2004_A" : [ - "HQ641354" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3653_2008" : [ - "GU131885" - ], - "Mycoplasma_agalactiae" : [ - "NC_013948" - ], - "Bean_golden_mosaic_virus__BR_Deg2_10" : [ - "JN419017" - ], - "Human_poliovirus_3_NIE1218549" : [ - "KJ170633" - ], - "Coxsackievirus_A16__ZJ08_01" : [ - "KF193620" - ], - "Enterovirus_A71_pinf7_54A" : [ - "DQ060149" - ], - "Ariquemes_virus" : [ - "HM119404", - "HM119406", - "HM119405" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pakistan_cotton_Burewala_2011" : [ - "HF567946" - ], - "Squash_leaf_curl_virus__PA2_Q345" : [ - "KM595231" - ], - "Hepatitis_B_virus__I_T26" : [ - "GU456635" - ], - "West_Nile_virus__WNV_1_US_BID_V4593_2003" : [ - "HM488221" - ], - "Brachyspira_intermedia_PWS_A" : [ - "NC_017243", - "NC_017242" - ], - "Sewage_associated_circular_DNA_virus_19__SaCV_19_NZ_BS4128_2012" : [ - "NC_026262" - ], - "Dengue_virus_4_VE_61027_2007" : [ - "HQ332172" - ], - "Rice_black_streaked_dwarf_virus__AH_MX8" : [ - "HF954992", - "HF954987", - "HF954985", - "HF954988", - "HF954991", - "HF954990", - "HF954994", - "HF954993", - "HF954989", - "HF954986" - ], - "Watermelon_chlorotic_stunt_virus__IL2_111" : [ - "KM820252" - ], - "Murine_hepatitis_virus_strain_S_3239_17_MHV_S_3239_17" : [ - "JQ173883" - ], - "Lymantria_dispar_multiple_nucleopolyhedrovirus_3029" : [ - "KM386655" - ], - "Hepatitis_B_virus__C_PNG_T127_1994" : [ - "HQ700530" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2684_2006" : [ - "FJ882515" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V205_1989" : [ - "EU255987" - ], - "Hepatitis_B_virus__J234" : [ - "GQ377629" - ], - "Hepatitis_B_virus_adw4q__Fou" : [ - "X75658" - ], - "Simian_immunodeficiency_virus_SIV_mnd_2__SIVmnd_2" : [ - "NC_004455" - ], - "Porcine_circovirus_2_Bj2010PG" : [ - "JQ002672" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G19083_10883_2001_13347_2005" : [ - "KR135311" - ], - "Alicyclobacillus_acidocaldarius_Tc_4_1" : [ - "NC_017167" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0155" : [ - "KP759697" - ], - "Dengue_virus_2__DENV_2_VN_BID_V754_2005" : [ - "EU482776" - ], - "Enterovirus_B97_99188_SD_CHN_1999_EV97" : [ - "GU550508" - ], - "Norovirus_Hu_GII_4_Akita2_2008_JP_Hu_GII_4_Akita2_2008_JP" : [ - "AB541213" - ], - "Dengue_virus_3__DENV_3_US_BID_V1731_2003" : [ - "FJ205870" - ], - "Human_poliovirus_3_NIE1218550" : [ - "KJ170622" - ], - "West_Nile_virus_AZ10_91" : [ - "KF704147" - ], - "Hepatitis_B_virus__Os_JP_2013" : [ - "AB933283" - ], - "Hepatitis_B_virus__HBVFLS51" : [ - "JX154581" - ], - "West_Nile_virus__NY_2002_Clinton" : [ - "DQ164193" - ], - "Ageratum_yellow_vein_virus__AFSP6b" : [ - "JN809820" - ], - "Sweet_potato_virus_G__HG167" : [ - "KM014814" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA30" : [ - "KF670652" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG294A1_10" : [ - "KJ887973" - ], - "Porcine_coronavirus_HKU15_SD3424" : [ - "KJ584356" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1319_2006" : [ - "EU660396" - ], - "Chikungunya_virus_3412_78" : [ - "HM045808" - ], - "Spiroplasma_phage_1_R8A2B" : [ - "NC_001365" - ], - "Human_immunodeficiency_virus_1__CANC8FULL" : [ - "AY779563" - ], - "West_Nile_virus__WNV_1_US_BID_V7441_2011" : [ - "KJ501149" - ], - "Human_papillomavirus_type_6__CAC23z" : [ - "FR751330" - ], - "Tomato_rugose_yellow_leaf_curl_virus__U4" : [ - "JN381824" - ], - "BtVs_BetaCoV_SC2013" : [ - "KJ473821" - ], - "Tomato_leaf_curl_China_betasatellite__G17" : [ - "AJ704611" - ], - "Usutu_virus_V266" : [ - "KJ438729" - ], - "Hepatitis_B_virus__C_Tonga_BE4253_2001" : [ - "HQ700560" - ], - "Dengue_virus_1_RGCB294_D1_IN_RGCB294_2007" : [ - "JN903578" - ], - "Human_immunodeficiency_virus_1__C_ZA_1069MB" : [ - "AY585268" - ], - "Simian_immunodeficiency_virus_TY0_1" : [ - "X07805" - ], - "African_swine_fever_virus_NHV" : [ - "KM262845" - ], - "Aeromonas_phage_vB_AsaM_56__HER109" : [ - "NC_019527" - ], - "Streptococcus_equi_zooepidemicus_MGCS10565" : [ - "NC_011134" - ], - "Pepper_mottle_virus__128" : [ - "EU586122" - ], - "Porcine_circovirus_2__Matanzas_05" : [ - "FN687857" - ], - "Porcine_circovirus_2_SD" : [ - "AY556473", - "JQ653449", - "AY181947" - ], - "Torque_teno_felis_virus__Fc_TTV4" : [ - "NC_014072" - ], - "West_Nile_virus__BVI2013_Heart" : [ - "KF367469" - ], - "Torque_teno_sus_virus_1b__TTV2Bj4_3" : [ - "HM633216" - ], - "Rhodobacter_phage_RcapMu" : [ - "NC_016165" - ], - "Hepatitis_C_virus_subtype_1b_HCV_N" : [ - "AF139594", - "S62220" - ], - "Human_papillomavirus_type_31__IN221709" : [ - "HQ537675" - ], - "Hepatitis_B_virus__dww1080" : [ - "KC774452" - ], - "Methylomonas_methanica_MC09" : [ - "NC_015572" - ], - "Human_herpesvirus_2__HSV_2_JP_BID_G32592_JA8" : [ - "KR135328" - ], - "Merkel_cell_polyomavirus__352" : [ - "JF813001" - ], - "Chikungunya_virus_MY002IMR_06_BP" : [ - "EU703759" - ], - "Faba_bean_necrotic_yellows_virus__Los_Martinez_del_Puerto_Mu29D" : [ - "KC979026" - ], - "Beauveria_bassiana_non_segmented_virus_1" : [ - "NC_027428" - ], - "Sindbis_virus__5_3" : [ - "GU361116" - ], - "Abutilon_mosaic_Bolivia_virus_AbMBoV" : [ - "NC_015048", - "NC_015045" - ], - "Porcine_circovirus_2_GD009" : [ - "KM880083" - ], - "Hepatitis_B_virus__QH_32" : [ - "JF491449" - ], - "Malvastrum_yellow_vein_betasatellite__08" : [ - "KP188832" - ], - "Human_bocavirus__2011GZ9952" : [ - "KJ684066" - ], - "Citrus_yellow_vein_clearing_virus__YN" : [ - "KP313242" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_MA1058_1979" : [ - "KJ469617" - ], - "Burkholderia_phage_phi52237" : [ - "NC_007145" - ], - "Hepatitis_B_virus_4373_97" : [ - "EU594416" - ], - "SARS_coronavirus_BJ162__BJ162" : [ - "AY864805" - ], - "Dengue_virus_4__DENV_4_US_BID_V2438_1996" : [ - "GQ199884" - ], - "Porcine_circovirus_2__JM" : [ - "KC249977" - ], - "Beet_black_scorch_virus__Xinjiang_variant_m149" : [ - "JN635327" - ], - "Malvastrum_yellow_vein_Yunnan_virus__Y160" : [ - "NC_006631" - ], - "Sweet_potato_latent_virus__HN76" : [ - "KP115612" - ], - "Hepatitis_B_virus__dxn1091" : [ - "KC774495" - ], - "Bat_picornavirus_2_SK17F" : [ - "HQ595343" - ], - "Mulberry_mosaic_dwarf_associated_virus__AK2_14" : [ - "KP699130" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_G8" : [ - "LN812978" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1538_2007" : [ - "EU677165" - ], - "Hepatitis_B_virus__Z3_2" : [ - "GQ227697" - ], - "Po_Circo_like_virus_21" : [ - "NC_025682" - ], - "Alteromonas_macleodii__English_Channel_673" : [ - "NC_018678" - ], - "Sewage_associated_circular_DNA_virus_37__SaCV_37_NZ_BS2945_2012" : [ - "NC_026256" - ], - "Human_immunodeficiency_virus_1__5082_94" : [ - "AY835773" - ], - "Hepatitis_C_virus__QC07" : [ - "KJ470612" - ], - "Lettuce_mosaic_virus__AF199" : [ - "AJ278854" - ], - "Maize_streak_virus__MSV_SWyl" : [ - "EU152260" - ], - "SARS_coronavirus_CUHK_Su10" : [ - "AY282752" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2280_2001" : [ - "FJ687436" - ], - "Human_poliovirus_1_NIE1118371" : [ - "KJ170510" - ], - "Hepatitis_B_virus__0262_09" : [ - "DQ060825" - ], - "Lactobacillus_phage_Lv_1" : [ - "NC_011801" - ], - "Vesicular_stomatitis_Indiana_virus" : [ - "AM690337", - "NC_001560", - "AM690336" - ], - "Dengue_virus_2_Cuba58_97" : [ - "AY702035" - ], - "Canine_parvovirus_2a__UY365" : [ - "KM457140" - ], - "Watermelon_chlorotic_stunt_virus__JO2_55" : [ - "KM820207" - ], - "African_horse_sickness_virus_serotype_3_South_African" : [ - "AJ007303" - ], - "Porcine_epidemic_diarrhea_virus_GD_B" : [ - "JX088695" - ], - "Porcine_teschovirus_wild_boar_WB2C_TV_2011_HUN" : [ - "JQ429405" - ], - "Sheldgoose_hepatitis_B_virus__Orinoco_sheldgoose_hepatitis_B_virus" : [ - "AY494852" - ], - "Macroptilium_yellow_spot_virus__BR_Inp2_10" : [ - "JN419019" - ], - "Hepatitis_B_virus__J232" : [ - "GQ377628" - ], - "Cauliflower_mosaic_virus__TUR285" : [ - "AB863188" - ], - "Maize_streak_virus___A_Gat__MSV_A_MSV_Gat" : [ - "AF329879" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT23A02_2003" : [ - "JF909236" - ], - "Apple_chlorotic_leaf_spot_virus__Z1" : [ - "JN634760" - ], - "Western_equine_encephalitis_virus_93A27" : [ - "KJ554981" - ], - "Enterococcus_phage_phiEF24C_P2_phiEF24C_P2" : [ - "AB609718" - ], - "Hepatitis_B_virus__DEN5547" : [ - "KF779210" - ], - "Infectious_bursal_disease_virus__Harbin_1" : [ - "EF517528", - "EF517529" - ], - "Staphylococcus_phage_GRCS" : [ - "NC_023550" - ], - "Enterobacteria_phage_phiX174__phiX_3_FR" : [ - "JF719728" - ], - "Newcastle_disease_virus__P4" : [ - "HM063425" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_MEX_20_2004" : [ - "KF826825" - ], - "Human_respiratory_syncytial_virus_01_000583" : [ - "JQ901448" - ], - "Herbaspirillum_seropedicae_SmR1" : [ - "NC_014323" - ], - "Human_immunodeficiency_virus_1__57954" : [ - "GU595150" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLI3293_2010" : [ - "KJ672541" - ], - "Human_poliovirus_3_NIE1218538" : [ - "KJ170625" - ], - "Aeromonas_phage_phiO18P" : [ - "NC_009542" - ], - "Coxsackievirus_A13_BAN00_10564" : [ - "DQ995642" - ], - "West_Nile_virus__WNV_1_US_BID_V5159_2009" : [ - "JF488096" - ], - "Human_bocavirus__TW2835_06" : [ - "EU984235" - ], - "GB_virus_C__DL185" : [ - "HQ331234" - ], - "Hepatitis_B_virus__pt1T" : [ - "KM875405" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3869_2008" : [ - "GU131704" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G1929_BethesdaP5" : [ - "KR135330" - ], - "Tomato_severe_rugose_virus__BR_Vic40_10" : [ - "JX865650" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4024_2008" : [ - "JF937612" - ], - "West_Nile_virus__TX7558" : [ - "JF415921" - ], - "African_cassava_mosaic_Burkina_Faso_virus__BF_Oua_BF128A_08" : [ - "HE616779" - ], - "West_Nile_virus_SA381_00_SA381_00" : [ - "EF429199" - ], - "Oriximina_virus" : [ - "HM119435", - "HM119434", - "HM119436" - ], - "Hepatitis_B_virus__I128" : [ - "FJ562274" - ], - "JC_polyomavirus__SA_5" : [ - "AB048556" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8269_2010" : [ - "KJ627346" - ], - "South_African_cassava_mosaic_virus__MG_MG491A8_11" : [ - "KJ888024" - ], - "Corynebacterium_pseudotuberculosis_CIP_52_97" : [ - "NC_017307" - ], - "Tomato_spotted_wilt_virus__p105_RB_MaxII" : [ - "HQ839731" - ], - "Wheat_dwarf_virus__TIBET10_2" : [ - "JQ647508" - ], - "Broad_bean_wilt_virus_2__PAP3" : [ - "KC625515", - "KC625502" - ], - "Cowpea_mild_mottle_virus__Florida_Whiteflies_2007" : [ - "KC774019" - ], - "Chikungunya_virus__LK_EH_CH20108" : [ - "FJ513679" - ], - "Hepatitis_B_virus__24039" : [ - "AJ627219" - ], - "Dengue_virus_2__DC657Y12" : [ - "KM279548" - ], - "GB_virus_C_F1029" : [ - "AB008336" - ], - "Porcine_circovirus_type_2_B_BRA_JAV1_2008" : [ - "KC261600" - ], - "Human_herpesvirus_5_BE_9_2012" : [ - "KP745651" - ], - "Hepatitis_B_virus__PhCH24" : [ - "AB241109" - ], - "Simian_immunodeficiency_virus__pBR_CP2139_287" : [ - "FJ424866" - ], - "Xenotropic_murine_leukemia_virus__VCaP" : [ - "JF908815" - ], - "Murid_herpesvirus_1_Smith" : [ - "NC_004065", - "GU305914" - ], - "Magnetospirillum_gryphiswaldense_MSR_1" : [ - "NC_023065" - ], - "Bean_golden_mosaic_virus__BR_Pai9_11" : [ - "KJ939745" - ], - "Human_poliovirus_1_NIE1118383" : [ - "KJ170450" - ], - "Tomato_leaf_curl_Karnataka_virus_Bangalore_II__India_isolate_2" : [ - "NC_003897" - ], - "Human_immunodeficiency_virus_1__05YNRL20sg" : [ - "KC898978" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO09BI3_2009" : [ - "JF909132" - ], - "Enterobacteria_phage_phiX174__CM" : [ - "AF299301" - ], - "Dengue_virus_1_D1_SG_05K4138DK1_2005" : [ - "EU081254" - ], - "Human_immunodeficiency_virus_1__CH40E_flG3" : [ - "FJ495825" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_Mahe_SC12B01_2004" : [ - "JF909156" - ], - "Yellow_fever_virus_17D_Tiantan_17D_Tiantan" : [ - "FJ654700" - ], - "Rice_tungro_bacilliform_virus__Kanyakumari" : [ - "HQ385226" - ], - "SARS_coronavirus_MA15_MA15_d4ym3" : [ - "JF292913" - ], - "Dengue_virus_2_DENV_2_PR_48DN_1994" : [ - "GQ398310" - ], - "Tomato_yellow_leaf_curl_Malaga_virus__ES42199" : [ - "NC_004569" - ], - "Hepatitis_B_virus__M85" : [ - "GQ924648" - ], - "Mycobacterium_phage_EagleEye" : [ - "NC_023564" - ], - "West_Nile_virus__WNV_1_US_BID_V4598_2003" : [ - "HM756654" - ], - "Tomato_black_ring_virus_satellite_RNA_C_serotype" : [ - "NC_003890" - ], - "Hepatitis_B_virus__C22" : [ - "FJ349231", - "EU939539" - ], - "Coxsackievirus_A16_CC024" : [ - "KF055238" - ], - "Norovirus_Hu_GII_4_NIHIC27_2_2012_USA_Hu_GII_4_NIHIC27_2_2012_USA" : [ - "KF712497" - ], - "Barbel_circovirus__BaCV2" : [ - "JF279961" - ], - "Tomato_yellow_leaf_curl_virus__Damyang_38" : [ - "JN183876" - ], - "Porcine_circovirus_2__HNF911" : [ - "KJ680361" - ], - "Sindbis_virus__28_9" : [ - "GU361118" - ], - "Maize_streak_virus__MSV_A_ZA_Oho_Sa26_2007" : [ - "HQ693428" - ], - "Cupriavidus_taiwanensis_LMG_19424" : [ - "NC_010528", - "NC_010529", - "NC_010530" - ], - "BK_polyomavirus__NEB_6" : [ - "AB298941" - ], - "Hepatitis_B_virus_China_Xinjiang_HB6_2009_Xinjiang_HB6" : [ - "HQ833465" - ], - "Rat_coronavirus_Parker_Parker" : [ - "NC_012936" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1999_2005" : [ - "FJ639683" - ], - "Hepatitis_B_virus__NB161C_m162" : [ - "KJ173359" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Dabwali3_2010" : [ - "JF502395" - ], - "Bluetongue_virus_1__NRT37_ABT_HSR" : [ - "KF664126", - "KF664129", - "KF664128", - "KF664132", - "KF664125", - "KF664123", - "KF664130", - "KF664127", - "KF664131" - ], - "Rotavirus_G9_IN364" : [ - "AJ491172" - ], - "Rotavirus_A__RVA_Human_wt_DEN_Hv2258625_2010_G9P_4" : [ - "KP013444" - ], - "Melon_necrotic_spot_virus_Nagasaki" : [ - "AB250686" - ], - "Rubella_virus_RVi_Lebanon_NH_USA_3_05_1G_CRS" : [ - "JN635290" - ], - "Chlamydia_trachomatis_L2b_CV204" : [ - "NC_020955", - "NC_020976" - ], - "Porcine_circovirus_2_S2" : [ - "AY288133" - ], - "Bean_golden_mosaic_virus__BR_Vis10_11" : [ - "KJ939732" - ], - "Coxsackievirus_A24_CA24v_Ishigaki_35_2011" : [ - "AB769165" - ], - "GB_virus_C_K1916" : [ - "D87712" - ], - "Maize_streak_virus__MSV_B1_Mz_Inh_g196_2007" : [ - "EU628577" - ], - "Porcine_circovirus_2__BD0140520" : [ - "KP824712" - ], - "Leuconostoc_carnosum_JB16" : [ - "NC_018673", - "NC_018699", - "NC_018674", - "NC_018675", - "NC_018698" - ], - "Hepatitis_B_virus_1491_28" : [ - "KR014094" - ], - "Sulfuricella_denitrificans_skB26" : [ - "NC_022357", - "NC_022358" - ], - "Human_poliovirus_2_NIE1018414" : [ - "KJ170558" - ], - "Propionibacterium_phage_PHL067M09__PHL067M09" : [ - "KJ578766" - ], - "Potato_mop_top_virus__Swedish__Sw" : [ - "NC_003723" - ], - "Methanocaldococcus_fervens_AG86" : [ - "NC_013156", - "NC_013157" - ], - "Human_bocavirus__CU6" : [ - "EF203920" - ], - "Hepatitis_B_virus__PNF5654" : [ - "KF779372" - ], - "Chloris_striate_mosaic_virus__AU_QG36_2011" : [ - "JQ948084" - ], - "Enterovirus_A71__EV71_NX10_36_2010" : [ - "KJ004557" - ], - "Tomato_yellow_leaf_curl_China_virus___Y264___Y264" : [ - "AM261326" - ], - "Avian_leukosis_virus_sdau1001" : [ - "JN389517" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V77_2002" : [ - "EU482871" - ], - "Bacillus_amyloliquefaciens_FZB42" : [ - "NC_009725" - ], - "Murine_norovirus_GV_WU12_2005_USA__Mu_NoV_GV_WU12_2005_USA" : [ - "EU004664" - ], - "Alphapapillomavirus_7" : [ - "NC_001357" - ], - "Banana_streak_IM_virus" : [ - "NC_015507" - ], - "Hepatitis_B_virus__A1_4" : [ - "GU815551" - ], - "Arabis_mosaic_virus__S" : [ - "X81815", - "X81814" - ], - "West_Nile_virus_4_TX_2004_Harris_4" : [ - "DQ164206" - ], - "Dengue_virus_1__DENV_1_PR_BID_V8183_2010" : [ - "KJ189363" - ], - "Norovirus_Hu_GII_20208_2009_VNM_Hu_GII_20208_2009_VNM" : [ - "KC409278" - ], - "Hepatitis_B_virus__I168" : [ - "FJ562294" - ], - "West_Nile_virus__WNV_1_US_BID_V4701_2002" : [ - "HM756664" - ], - "Hepatitis_B_virus__dxn1090" : [ - "KC774494" - ], - "Hepatitis_B_virus__530_97_2" : [ - "EU872003" - ], - "Nipah_virus" : [ - "NC_002728", - "AY988601" - ], - "Propionibacterium_phage_PHL116M00__PHL116M00" : [ - "NC_027362" - ], - "Maize_streak_virus__MSV_A_ZA_Mal5_T11_2007" : [ - "HQ693425" - ], - "Human_cosavirus_D_HCoSV_D1_5004" : [ - "NC_012802" - ], - "Dengue_virus_2__DENV_2_VN_BID_V705_2006" : [ - "EU482642" - ], - "Hepatitis_B_virus__16" : [ - "JX507210", - "EU562217" - ], - "Porcine_circovirus_2__Hun_B" : [ - "DQ648031" - ], - "Hepatitis_B_virus__CMR936" : [ - "AB194948" - ], - "Chikungunya_virus__InDRE_4CHIK" : [ - "KP851710" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLU9187_2007" : [ - "KJ672532" - ], - "West_Nile_virus__WNV_1_US_BID_V4196_2001" : [ - "HQ671696" - ], - "Hepatitis_B_virus__BR5_SOUTHEAST" : [ - "KC494401" - ], - "Maize_streak_virus__MSV_A_ZA_Por3_Ta14_2008" : [ - "HQ693433" - ], - "Cowpox_virus_BeaBer04_1" : [ - "KC813491" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1322" : [ - "KM573768" - ], - "Papiine_herpesvirus_2_X313" : [ - "NC_007653" - ], - "Raspberry_bushy_dwarf_virus__CmGR_2" : [ - "EU796090" - ], - "Hepatitis_B_virus__490A_1" : [ - "EU872016" - ], - "Nipah_virus__NV_MY_99_VRI_1413" : [ - "AJ564622" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7345_2002" : [ - "KF973328" - ], - "Culex_flavivirus_HOU24518" : [ - "FJ502995" - ], - "Porcine_circovirus_2_GaoYou0707" : [ - "EU503033" - ], - "Torque_teno_sus_virus_k2__2p" : [ - "NC_014092" - ], - "Squash_leaf_curl_virus__JO1_129" : [ - "KM595165" - ], - "Chikungunya_virus__SGEHICHT077808" : [ - "FJ445484" - ], - "Hepatitis_B_virus__A32" : [ - "HM363579" - ], - "Proteus_phage_PM_75" : [ - "NC_027363" - ], - "Aureococcus_anophagefferens_virus__BtV_01" : [ - "NC_024697" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_3166_1990" : [ - "KJ469607" - ], - "Macroptilium_yellow_spot_virus__BR_Oaf29_11" : [ - "KJ939858" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2820_2007" : [ - "GQ199826" - ], - "Sweet_potato_leaf_curl_virus__Haenam_532" : [ - "HM754639" - ], - "Human_immunodeficiency_virus_1__MERLBDTRC7" : [ - "JN860766" - ], - "Papaya_ringspot_virus_W_PRSV_W_1" : [ - "DQ374153" - ], - "Maize_streak_virus__UIga_244" : [ - "EF547115" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2748_2007" : [ - "JQ287662" - ], - "Porcine_circovirus_2__A4183" : [ - "JF317573" - ], - "Chikungunya_virus__IND_GJ51" : [ - "FJ000064" - ], - "Porcine_circovirus_2__PCV_Y16" : [ - "KC515011" - ], - "Mycobacterium_phage_WIVsmall" : [ - "NC_021334" - ], - "Hepatitis_B_virus_A0004" : [ - "DQ904357" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_160_2012" : [ - "KJ686199" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V451_2006" : [ - "EU256005" - ], - "JC_polyomavirus__JCV183FLC_04" : [ - "JF425491" - ], - "Bat_coronavirus__BtCoV_133_2005__BtCoV_133_2005" : [ - "NC_008315" - ], - "Hepatitis_B_virus__S1b" : [ - "KF584162" - ], - "Achimota_virus_2" : [ - "NC_025404" - ], - "Hepatitis_B_virus__582_2" : [ - "AY217361" - ], - "Human_immunodeficiency_virus_1_97DC_KTB49" : [ - "AJ404325" - ], - "Hepatitis_B_virus__PNF4928" : [ - "KF779344" - ], - "Porcine_epidemic_diarrhea_virus_USA_Kansas36_2013" : [ - "KJ645643" - ], - "Measles_virus__D_VII" : [ - "EU293552" - ], - "Newcastle_disease_virus_PHY_LMV42" : [ - "DQ097394" - ], - "Potato_virus_Y_strain_NTN_NTN_Linda" : [ - "AJ890345" - ], - "Chlamydia_trachomatis_A_5291" : [ - "NC_020939", - "NC_020946" - ], - "Enterobacteria_phage_RB6" : [ - "KM606996" - ], - "HIV_1_M_97CD_MBFE250__97CD_MBFE250" : [ - "FM877783" - ], - "Listeria_monocytogenes_08_5923" : [ - "NC_013768" - ], - "Porcine_circovirus_2_GD008" : [ - "KM487709" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V1715_2007" : [ - "FJ024279" - ], - "Clostridium_acetobutylicum_DSM_1731" : [ - "NC_015686", - "NC_015688", - "NC_015687" - ], - "Hepatitis_C_virus_subtype_1b_MD23" : [ - "AF207764" - ], - "Human_poliovirus_1_NIE1018316" : [ - "KJ170436" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09DB2" : [ - "JF268681" - ], - "Enterovirus_A71__DTID_ZJU_74" : [ - "FJ158601" - ], - "Bluetongue_virus_serotype_10" : [ - "NC_006022" - ], - "Escherichia_phage_Pollock" : [ - "NC_027381" - ], - "Hepatitis_B_virus__BR14" : [ - "KP090180" - ], - "Squash_leaf_curl_virus__IL1_2" : [ - "KM595092" - ], - "Anabaena_cylindrica_PCC_7122" : [ - "NC_020157", - "NC_020056", - "NC_019772", - "NC_019775", - "NC_019771", - "NC_019774", - "NC_019773" - ], - "West_Nile_virus__WNV_1_US_BID_V6546_2003" : [ - "KJ501349" - ], - "Nipah_virus__NV_MY_99_VRI_0626" : [ - "AJ627196" - ], - "Hepatitis_C_virus__isolate_D54__D54" : [ - "DQ155561" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1889" : [ - "JX869180" - ], - "Human_papillomavirus_type_52__Qv17972" : [ - "HQ537737" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD140_2013" : [ - "KM229814" - ], - "Tomato_spotted_wilt_virus__TSWV_YN" : [ - "JF960236", - "JF960235", - "JF960237" - ], - "Hepatitis_B_virus_ayr" : [ - "NC_003977" - ], - "Phenylobacterium_zucineum_HLK1" : [ - "NC_011143", - "NC_011144" - ], - "Macroptilium_yellow_vein_virus__BR_Pai33_11" : [ - "KJ939913" - ], - "Dengue_virus_2__DENV_2_HN_BID_V2945_1984" : [ - "FJ898449" - ], - "West_Nile_virus__WNV_1_US_BID_V5210_2007" : [ - "JF920740" - ], - "halophilic_archaeon_DL31" : [ - "NC_015954", - "NC_015959", - "NC_015955" - ], - "Dragonfly_associated_circular_virus_2__FL2_5X_2010" : [ - "NC_023871" - ], - "Maize_streak_virus__MSV_A4_Za_BooB_g145_2006" : [ - "EU628570" - ], - "Bean_golden_mosaic_virus__BR_Sag12_12" : [ - "KJ939790" - ], - "Rhodopseudomonas_palustris_BisB18" : [ - "NC_007925" - ], - "Broad_bean_true_mosaic_virus__EV_11" : [ - "NC_022004", - "NC_022006" - ], - "Saffold_virus__Pak_3097" : [ - "AB747248" - ], - "Maize_streak_virus__MSV_A_CF_Ban3_Car38_2008" : [ - "HQ693294" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1640_2007" : [ - "FJ182022" - ], - "AKR__endogenous__murine_leukemia_virus" : [ - "MLOCG" - ], - "Human_immunodeficiency_virus_1__05YNRL25sg" : [ - "KC898979" - ], - "Porcine_circovirus_2_Luoyang" : [ - "EU555439" - ], - "Human_mastadenovirus_B_human_USA_UFL_Adv3a17_2007_3_P3H3F3" : [ - "KF268131" - ], - "JC_polyomavirus__FO" : [ - "AB118231" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda54_05" : [ - "KC706652" - ], - "Hepatitis_B_virus__C_Tonga_BB6189_2002" : [ - "HQ700557" - ], - "Hepatitis_B_virus_HBV_P19" : [ - "KC510648" - ], - "Torque_teno_sus_virus_1b__TTV2Ln22" : [ - "HM633238" - ], - "Norovirus_Hu_NLV_Oxford_B4S5_2002_UK__Hu_NLV_Oxford_B4S5_2002_UK" : [ - "AY587984" - ], - "Human_immunodeficiency_virus_1__20" : [ - "EF363123" - ], - "FTLS_virus__YGS1" : [ - "KF356549", - "KF356525", - "KF356537" - ], - "Hepatitis_B_virus__MMHBV003" : [ - "KT307719" - ], - "Human_immunodeficiency_virus_1__97TH6_107" : [ - "AY125894" - ], - "South_African_cassava_mosaic_virus__MG_MG52C2_06" : [ - "KJ887650" - ], - "Usutu_virus_V249" : [ - "KJ438748" - ], - "Human_immunodeficiency_virus_1__04ZASK208B1" : [ - "DQ056406" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Hy13" : [ - "AY900145" - ], - "Porcine_circovirus_2__YD01" : [ - "KM360056" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GDQJ" : [ - "GQ374441" - ], - "Squash_leaf_curl_Philippines_virus" : [ - "NC_005846", - "NC_005845" - ], - "Hepatitis_B_virus__2336" : [ - "FJ386630" - ], - "Hepatitis_B_virus__FEN1" : [ - "JF439994" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD191_2013" : [ - "KM229847" - ], - "Epizootic_hemorrhagic_disease_virus_2__600036" : [ - "EHDSEG2B" - ], - "Norovirus_Hu_GII_4_Ehime2_2006_JP_Hu_GII_4_Ehime2_2006_JP" : [ - "AB447454" - ], - "Duck_circovirus__D12_MR_020" : [ - "KC851822" - ], - "Dengue_virus_2__47913_BR_PE_98" : [ - "JX669484" - ], - "Geodermatophilus_obscurus_DSM_43160" : [ - "NC_013757" - ], - "Feline_bocavirus_HK797F" : [ - "NC_017823" - ], - "Brucella_melitensis_M28" : [ - "NC_017244", - "NC_017245" - ], - "Porcine_epidemic_diarrhea_virus_LZC" : [ - "EF185992" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2605_2007" : [ - "JF357905" - ], - "Hepatitis_B_virus__BV_56" : [ - "GQ331047" - ], - "Bovine_papillomavirus_type_2__SW" : [ - "KC878306" - ], - "Rice_yellow_mottle_virus__SL4" : [ - "AJ608214" - ], - "Sewage_associated_circular_DNA_virus_27__SaCV_27_NZ_BS4103_2012" : [ - "NC_026271" - ], - "Mungbean_yellow_mosaic_India_virus_Indonesia__Brebes_1" : [ - "JN368443", - "JN368435" - ], - "Maize_streak_virus__MSV_A_MZ_Inh2_Moz1_2007" : [ - "HQ693346" - ], - "Bat_coronavirus_HKU9_4_BF_141I" : [ - "EF065516" - ], - "Hepatitis_B_virus__1814_N_BRA" : [ - "KJ854695" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3709_2007" : [ - "GQ868513" - ], - "Wheat_dwarf_virus_barley_strain_Krostitz_1" : [ - "HG422315" - ], - "Capsicum_chlorosis_virus__Qld_3432" : [ - "KM589494", - "KM589493" - ], - "Tall_oatgrass_mosaic_virus__Benesov" : [ - "NC_022745" - ], - "Human_immunodeficiency_virus_1_GR17" : [ - "AF179368" - ], - "Human_coronavirus_OC43_OC43_human_USA_871_25_1987" : [ - "KF530085" - ], - "Spodoptera_exigua_multiple_nucleopolyhedrovirus__HT_SeG24" : [ - "HG425346" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0149" : [ - "KP759695" - ], - "Desulfovibrio_vulgaris__Miyazaki_F" : [ - "NC_011769" - ], - "Hepatitis_B_virus__TP69" : [ - "KF192836" - ], - "Tomato_severe_rugose_virus__BR_Vic09_10" : [ - "JX865623" - ], - "Porcine_circovirus_2__DTC" : [ - "DQ104423" - ], - "Hepatitis_B_virus__MMHBV001" : [ - "KT307718" - ], - "Corynebacterium_jeikeium_K411" : [ - "NC_003080", - "NC_007164" - ], - "Hepatitis_B_virus_Ehi_IK_lam_10_2" : [ - "AB195956" - ], - "Turnip_mosaic_virus__NZ419" : [ - "AB989650" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3638_2008" : [ - "GU131879" - ], - "Hepatitis_B_virus__S7_3" : [ - "EU916228" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_18_2013" : [ - "KF600651" - ], - "Hepatitis_B_virus_620_98" : [ - "EU594405" - ], - "Macroptilium_yellow_spot_virus__BR_Mac1_10" : [ - "JN419009" - ], - "Human_immunodeficiency_virus_1_11111584_patient_D" : [ - "KC852173" - ], - "Lindernia_anagallis_yellow_vein_virus__LA1" : [ - "KC172827" - ], - "West_Nile_virus__WNV_1_US_BID_V6175_2001" : [ - "KJ501234" - ], - "Chilli_veinal_mottle_virus__ChiVMV_Ch_Jal" : [ - "GU170807" - ], - "Temperate_fruit_decay_associated_virus__MFBpe35a" : [ - "KJ955451" - ], - "Enterovirus_A71__EV71_GD10_7_2010" : [ - "KJ004558" - ], - "Hepatitis_B_virus__KOR36HCC" : [ - "GQ475340" - ], - "Anubis_baboon_polyomavirus__K922AD_LPCZ1" : [ - "KJ577598" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC26BA1_2009" : [ - "JF909100" - ], - "GB_virus_C__740_14" : [ - "KP710599" - ], - "Canine_parvovirus__cpv_nj01_06" : [ - "EU310373" - ], - "Chikungunya_virus_IND_00_MH4" : [ - "EF027139" - ], - "Hepatitis_B_virus__Q3_2" : [ - "AY217378" - ], - "Human_rhinovirus_A89_ATCC_VR_1199" : [ - "FJ445184" - ], - "Foot_and_mouth_disease_virus___type_O__BUL_26_2011" : [ - "JX040488" - ], - "Torque_teno_sus_virus_1a__TTV1_20N" : [ - "GU570199" - ], - "Yersinia_pseudotuberculosis_YPIII" : [ - "NC_010465" - ], - "Hepatitis_B_virus__FMClx_1" : [ - "AY163869" - ], - "Watermelon_mosaic_virus__A08_170" : [ - "JF273466" - ], - "Hepatitis_B_virus_GII_8" : [ - "AY781184" - ], - "Chlamydia_trachomatis_RC_J_s_122" : [ - "NC_021891" - ], - "Newcastle_disease_virus_sw_CH_LHLJ_120608" : [ - "KJ499462" - ], - "Bluetongue_virus_4__CYP1969_01" : [ - "AJ586678" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_14_2012" : [ - "KJ672431" - ], - "Hepatitis_B_virus__THB21_LC" : [ - "JN664941" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir_T69P_Cuc_08" : [ - "JQ825226" - ], - "Carnation_mottle_virus__Indian" : [ - "AJ811998" - ], - "Neodiprion_sertifer_nucleopolyhedrovirus" : [ - "NC_005905" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir_T63X_Cuc_08" : [ - "JF501722" - ], - "Hepatitis_delta_virus_dFr2137_dFr2137" : [ - "AM902164" - ], - "Plum_pox_virus_D_Cdn_3" : [ - "AY953262" - ], - "Human_papillomavirus_type_18__Rw57" : [ - "KC470219" - ], - "Hepatitis_B_virus_1491_16" : [ - "KR014088" - ], - "Hepatitis_B_virus_adr_Recipient_3_97_Sep" : [ - "AB026813" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_A5_9D_V" : [ - "JX570646" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5723_1" : [ - "KR105319" - ], - "JC_polyomavirus__GH_1" : [ - "AB038252" - ], - "Human_adenovirus_19" : [ - "JQ326209" - ], - "Hepatitis_B_virus_1368_2" : [ - "KR014044" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2011_88005_A8_Pl" : [ - "KF183947" - ], - "Pebjah_virus__F1167" : [ - "KR139840" - ], - "West_Nile_virus__WNV_1_US_BID_V6441_2002" : [ - "KJ501462" - ], - "African_cassava_mosaic_virus__CF_CF345AB_08" : [ - "KJ887812" - ], - "Geobacillus_thermodenitrificans_NG80_2" : [ - "NC_009329", - "NC_009328" - ], - "Sphingobium_chlorophenolicum_L_1" : [ - "NC_015595", - "NC_015594", - "NC_015593" - ], - "Turkey_astrovirus_TAstV_TX_00" : [ - "EU143850" - ], - "Human_respiratory_syncytial_virus__RSV607" : [ - "JX015491" - ], - "Puumala_virus_Evo_14Cg_93" : [ - "Z30704" - ], - "Hepatitis_B_virus__MMA_8" : [ - "AM421536" - ], - "Enterovirus_C__V2_TOL_cl1" : [ - "HQ738288" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_404N2__404N2" : [ - "JN819496" - ], - "Bovine_coronavirus_R_AH65_TC_R_AH65_TC" : [ - "EF424618" - ], - "Hepatitis_B_virus__2205" : [ - "FJ386626" - ], - "Broad_bean_wilt_virus_2__BB2" : [ - "KC625492", - "KC625506" - ], - "Human_papillomavirus_type_6__118" : [ - "HG793926" - ], - "Staphylococcus_phage_phi7247PVL_JCSC7247" : [ - "AP011956" - ], - "Human_papillomavirus_type_18__Qv32981" : [ - "KC470210" - ], - "Foot_and_mouth_disease_virus___type_C__C_S8p460d951" : [ - "DQ409190" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__1197" : [ - "KF444098" - ], - "Myxoma_virus_Aust_OB2_Hall_11_95" : [ - "KC660081" - ], - "Strawberry_mild_yellow_edge_virus__MY_18" : [ - "NC_003794" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_MEX_26_2006" : [ - "KF826836" - ], - "Hepatitis_delta_virus_dFr2244_dFr2244" : [ - "AM902170" - ], - "Bacillus_phage_poppyseed" : [ - "KF669657" - ], - "Human_immunodeficiency_virus_1__C_ZA_1176MB" : [ - "AY463218" - ], - "Porcine_circovirus_2__Han6_12" : [ - "JQ181598" - ], - "Soybean_mosaic_virus_G5H" : [ - "FJ376388", - "FJ807701" - ], - "Faba_bean_necrotic_yellows_virus_FBNYV_Iran_1_Alashtar" : [ - "AM493898", - "AM493899" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9392_2013" : [ - "KJ643480" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0035" : [ - "KP759609" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9388_2013" : [ - "KJ643476" - ], - "Solanum_nodiflorum_mottle_virus_satellite_RNA" : [ - "NC_003850" - ], - "Human_immunodeficiency_virus_1_98ZA502" : [ - "AY158534" - ], - "Lactobacillus_acidophilus_La_14" : [ - "NC_021181" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3676_2" : [ - "KM034555" - ], - "Dengue_virus_3_D3_Hu_TL109NIID_2005" : [ - "AB214881" - ], - "Norovirus_Hu_GII_4_CGMH15_2007_TW" : [ - "JN400613" - ], - "Hepatitis_B_virus__C_Tonga_To244_2006" : [ - "HQ700575" - ], - "Hepatitis_B_virus__M073" : [ - "GQ358159" - ], - "Beet_necrotic_yellow_vein_virus__Pithiviers" : [ - "DQ682453", - "DQ682454" - ], - "Simian_hemorrhagic_fever_virus_LVR_42_0_M6941_A230_d5" : [ - "KM371107" - ], - "Bean_yellow_mosaic_virus__Vfaba2" : [ - "JN692500" - ], - "Apple_mosaic_virus" : [ - "NC_003480", - "NC_003465", - "NC_003464" - ], - "Barley_yellow_mosaic_virus_1__common__EST" : [ - "AJ515479", - "AJ515486" - ], - "Porcine_circovirus_type_2_E" : [ - "AF109399" - ], - "Porcine_circovirus_2_GD002" : [ - "KM880080" - ], - "Euphorbia_yellow_mosaic_virus" : [ - "NC_012553", - "NC_012554" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD19_2013" : [ - "KM229845" - ], - "Turnip_mosaic_virus__USA6" : [ - "AB701741" - ], - "Gentian_Kobu_sho_associated_virus__Nishiwaga" : [ - "AB698918" - ], - "Xestia_c_nigrum_granulovirus" : [ - "NC_002331" - ], - "Newcastle_disease_virus__NDV_crested_ibis_China_Shaanxi10_2010" : [ - "KC853020" - ], - "Porcine_circovirus_2__Huanan_3" : [ - "EF421968" - ], - "Salmonella_phage_STML_198_STML_198" : [ - "NC_027344" - ], - "Cotton_leaf_curl_Rajasthan_virus__CLCuV_G" : [ - "NC_003199" - ], - "Mycobacterium_tuberculosis_CDC1551" : [ - "NC_002755" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00098_1987_NEW_P9H46F39" : [ - "KF268211" - ], - "Enterovirus_A71__EV049_07" : [ - "HQ647176" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP01362_2012" : [ - "KJ672595" - ], - "Autographa_californica_nucleopolyhedrovirus_E2" : [ - "KM667940" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_8" : [ - "JQ647460" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4996_brain" : [ - "JF899533" - ], - "Hepatitis_B_virus__A1_50085" : [ - "FJ692580" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3821" : [ - "KM233095" - ], - "Dengue_virus_2__DENV_2_US_BID_V675_1998" : [ - "EU482732" - ], - "Bacillus_subtilis_BSn5" : [ - "NC_014976" - ], - "Gooseberry_vein_banding_associated_virus__GB1" : [ - "HQ852248" - ], - "WU_Polyomavirus_HZ13024" : [ - "KM265136" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3735_1" : [ - "KM233056" - ], - "Human_immunodeficiency_virus_1__VI1035" : [ - "AJ276595" - ], - "Hepatitis_B_virus__A2_6" : [ - "GU815565" - ], - "Hepatitis_B_virus__10B20" : [ - "AB675682" - ], - "Crimean_Congo_hemorrhagic_fever_virus__SPU_48_90" : [ - "KJ682813", - "KJ682797", - "KJ682822" - ], - "Vibrio_phage_H1" : [ - "KM612261" - ], - "Turnip_mosaic_virus__isolate_UK1___UK1" : [ - "AB194792", - "AB194798", - "AB194800", - "AB194795", - "AB194786", - "AB194788", - "AB194785", - "AB194802", - "AB194801", - "AB194794", - "AB194799", - "AB194791", - "AB194789", - "AB194790", - "AB194796", - "AB194787", - "AB194793", - "AB194797" - ], - "Rabies_virus_FJ008" : [ - "FJ866835" - ], - "Porcine_epidemic_diarrhea_virus__JS2008" : [ - "KC109141" - ], - "Triticum_mosaic_virus__U06_123" : [ - "NC_012799" - ], - "Clerodendrum_golden_mosaic_China_virus__ClGMCNV_Sal_USA_LA_11" : [ - "JQ305797", - "JQ305798" - ], - "Eggerthella_YY7918" : [ - "NC_015738" - ], - "Mal_de_Rio_Cuarto_virus__Rio_Cuarto" : [ - "NC_008736", - "NC_008737" - ], - "Dengue_virus_3__DENV_3_MX_BID_V2989_2007" : [ - "FJ898442" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2171_1999" : [ - "FJ639743" - ], - "Human_papillomavirus_type_30" : [ - "X74474" - ], - "Wheat_streak_mosaic_virus__Naghadeh" : [ - "EU914917" - ], - "Hepatitis_B_virus__10D10HCC" : [ - "AB014369" - ], - "JC_polyomavirus_GS_B" : [ - "AF004350" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0095" : [ - "KP759653" - ], - "Human_papillomavirus_type_67__Qv22701" : [ - "HQ537780" - ], - "Squash_leaf_curl_virus__PA2_Q344" : [ - "KM595230" - ], - "Banana_bunchy_top_virus__Haikou_4" : [ - "HQ378194", - "HQ378193", - "HQ378191", - "HQ378192", - "HQ378190" - ], - "Tahyna_virus_236" : [ - "KF361880" - ], - "Helicoverpa_armigera_granulovirus" : [ - "NC_010240" - ], - "Rabies_virus_CJS0636D" : [ - "JQ970482" - ], - "Muscovy_duck_circovirus_GH01" : [ - "JX499186" - ], - "Hepatitis_delta_virus" : [ - "AF098261", - "X77627", - "HF679404", - "HPDGEN", - "HDU81989", - "HF679405", - "HF679406", - "NC_001653", - "X04451", - "HDU81988" - ], - "Hepatitis_B_virus_1368_37" : [ - "KR014049" - ], - "Castor_canadensis_papillomavirus_1__CcanPV1" : [ - "NC_023178" - ], - "Soybean_mosaic_virus__WS202" : [ - "FJ640974" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0103" : [ - "KP759658" - ], - "West_Nile_virus__BSL3_10" : [ - "JF957186" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Octa_alpha_10" : [ - "EU384639" - ], - "Tomato_leaf_curl_China_betasatellite__Y8" : [ - "AJ421622" - ], - "Maize_streak_virus__UKab_82" : [ - "EF547081" - ], - "Porcine_circovirus_2__PCV_HZY30" : [ - "KC514995" - ], - "Geobacter_M18" : [ - "NC_014973" - ], - "West_Nile_virus__WNV_1_US_BID_V6215_2010" : [ - "KJ501262" - ], - "Human_papillomavirus_type_11__LP20" : [ - "HE611269" - ], - "Norovirus_GII_Hu_JP_2010_GII_P7_GII_7_Musashimurayama_TAKAsanKimchi__Musashimurayama_TAKAsanKimchi" : [ - "KJ196295" - ], - "Hepatitis_B_virus__patient11" : [ - "AB300369" - ], - "Human_respiratory_syncytial_virus_09_052281" : [ - "JX576742" - ], - "Human_immunodeficiency_virus_1__01BR226" : [ - "DQ358803" - ], - "Prunus_necrotic_ringspot_virus__Pch12" : [ - "JN416776", - "JN416774", - "JN416775" - ], - "Hepatitis_B_virus__M19" : [ - "GQ924610" - ], - "Human_respiratory_syncytial_virus_NH1067" : [ - "JQ582844" - ], - "West_Nile_virus__WNV_1_US_BID_V6646_2003" : [ - "KJ501390" - ], - "Enterobacteria_phage_RB51" : [ - "NC_012635" - ], - "Murine_norovirus_GV_NIH_4428_2005_USA_GV_NIH_4428_2005_USA" : [ - "JF320650" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PGM_70A_2008" : [ - "HM748921" - ], - "Duck_egg_drop_syndrome_virus_byd1" : [ - "JQ920420" - ], - "West_Nile_virus__WNV_1_US_BID_V4188_1999" : [ - "HM488127" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_171_2012" : [ - "KJ686270" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_414N1__414N1" : [ - "JN819503" - ], - "Human_immunodeficiency_virus_1__97VNHCM302" : [ - "FJ185238" - ], - "Chickpea_chlorotic_dwarf_virus__A_IC_140_99" : [ - "KC172656" - ], - "Sweet_clover_necrotic_mosaic_virus_38" : [ - "S46027" - ], - "SARS_coronavirus_CV7" : [ - "DQ898174" - ], - "Duck_hepatitis_A_virus_3_B63" : [ - "EU747874" - ], - "Dengue_virus_2__D2_Pakistan_51_2008" : [ - "KF041236" - ], - "BK_polyomavirus__BKV_CAP_m2" : [ - "AY628231" - ], - "Rhodanobacter_2APBS1" : [ - "NC_020541" - ], - "Tomato_spotted_wilt_virus__SPAIN_2" : [ - "AY744480", - "AY744493" - ], - "African_horse_sickness_virus__HS_29_00" : [ - "KP009695", - "KP009693", - "KP009696", - "KP009697", - "KP009694", - "KP009700", - "KP009699", - "KP009691", - "KP009698" - ], - "Hepatitis_B_virus__Ag41" : [ - "KJ843201" - ], - "West_Nile_virus__WNV_1_US_BID_V4560_2003" : [ - "HM488171" - ], - "Human_adenovirus_71_human_DEU_HEIM_00085_1987_71_P9H20F71" : [ - "KF268207" - ], - "Hepatitis_B_virus__SHB5105" : [ - "KJ598719" - ], - "Hepatitis_B_virus_7768H" : [ - "AY090459" - ], - "Human_immunodeficiency_virus_1__98USHVTN8229c6" : [ - "AY560109" - ], - "Bluetongue_virus_1__IND1992_01" : [ - "AJ586659" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5499_2010" : [ - "JF937634" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2030_2003" : [ - "FJ639702" - ], - "Pseudomonas_phage_H70" : [ - "NC_027384" - ], - "BK_polyomavirus_APJc" : [ - "LC029414" - ], - "Sweet_potato_leaf_curl_Henan4_virus__China_Henan4_2012" : [ - "KJ476509" - ], - "Hepatitis_B_virus__AIDS9" : [ - "JQ801472" - ], - "Hepatitis_B_virus__HCUCH4" : [ - "HM585186" - ], - "Hepatitis_B_virus__HBV_4014" : [ - "AF121249" - ], - "Hepatitis_B_virus__D116" : [ - "EU939655" - ], - "Clostridium_phage_phi24R__phi24R" : [ - "NC_019523" - ], - "Hepatitis_B_virus__A1_50083" : [ - "FJ692578" - ], - "Norovirus_Hu_GII_4_Aomori5_2007_JP_Hu_GII_4_Aomori5_2007_JP" : [ - "AB541226" - ], - "Potato_virus_Y__JVW_186" : [ - "KF770835" - ], - "Merkel_cell_polyomavirus__10b" : [ - "HM011540" - ], - "Caprine_arthritis_encephalitis_virus" : [ - "NC_001463" - ], - "Hepatitis_B_virus__SHB622" : [ - "KJ598735" - ], - "Muscovy_duck_circovirus__FJzq290" : [ - "GU168779" - ], - "Hepatitis_B_virus__Leb45" : [ - "JN642152" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC49AI4_2009" : [ - "JF909122" - ], - "Pseudomonas_phage_EL" : [ - "NC_007623" - ], - "Walrus_calicivirus" : [ - "NC_004541" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_KWT07_2011" : [ - "KM188463" - ], - "Ageratum_yellow_vein_Sri_Lanka_virus" : [ - "NC_002981" - ], - "Torque_teno_virus__HD13a_gsB20_33" : [ - "FR848325" - ], - "Providence_virus__vFLM1" : [ - "NC_014126" - ], - "Coxsackievirus_A21_Kuykendall" : [ - "AF546702", - "AF465515" - ], - "Human_T_lymphotropic_virus_1__WHP" : [ - "AF259264" - ], - "Lactococcus_phage_asccphi28" : [ - "NC_010363" - ], - "Human_bocavirus__HBov_sh2" : [ - "JN632512" - ], - "Dengue_virus_1__DENV_1_PH_BID_V2940_2004" : [ - "GQ868602" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B4J5" : [ - "JN053449" - ], - "Flexibacter_litoralis_DSM_6794" : [ - "NC_018018" - ], - "Infectious_bursal_disease_virus__903_78" : [ - "JQ411013", - "JQ411012" - ], - "Bean_golden_mosaic_virus__BR_Mur3_11" : [ - "KJ939756" - ], - "Cellvibrio_japonicus_Ueda107" : [ - "NC_010995" - ], - "Bovine_viral_diarrhea_virus_1_BVDV_JL_1" : [ - "KF501393" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y261" : [ - "AJ888448" - ], - "Human_poliovirus_2_NIE0611444_KBS06_01" : [ - "JX274984" - ], - "Classical_swine_fever_virus_SXYL2006" : [ - "GQ122383" - ], - "Maize_streak_virus__MSV_A_NG_Abu2_NG1_2006" : [ - "HQ693367" - ], - "Norovirus_Hu_GII_4_Ehime1_2008_JP_Hu_GII_4_Ehime1_2008_JP" : [ - "AB541237" - ], - "Coxsackievirus_A10_FY06_AH_CHN_2013" : [ - "KP009579" - ], - "BK_polyomavirus__NEC_8" : [ - "AB263931" - ], - "African_cassava_mosaic_virus__CF_CF356AB_08" : [ - "KJ887819" - ], - "Mycoplasma_gallisepticum_NC95_13295_2_2P" : [ - "NC_018407" - ], - "Human_enterovirus_C104_Pavia259_7712" : [ - "JX982253" - ], - "Human_immunodeficiency_virus_1__CAP45_5w_F1" : [ - "GQ999974" - ], - "Enterobacteria_phage_P22" : [ - "AF217253", - "NC_002371" - ], - "Dengue_virus_4__DENV_4_VE_BID_V1153_2007" : [ - "GQ868642" - ], - "Hepatitis_B_virus__MY266289" : [ - "KJ803783" - ], - "Dengue_virus_4_ThD4_0087_77" : [ - "AY618991" - ], - "Hepatitis_B_virus__FH5" : [ - "AF461357" - ], - "Hepatitis_B_virus__27178" : [ - "AY934767" - ], - "Simian_adenovirus_DM_2014__23336" : [ - "NC_025678" - ], - "West_Nile_virus__BSL24_09" : [ - "JF957182" - ], - "Human_immunodeficiency_virus_1__INDNARI_0218436" : [ - "EU000508", - "EU000506", - "EU000507" - ], - "Alternaria_longipes_dsRNA_virus_1_HN28" : [ - "NC_024703" - ], - "Hepatitis_B_virus_HBV_P15" : [ - "KC510646" - ], - "Sicinivirus_1_UCC001" : [ - "NC_023861" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00094_1988_NEW_P28H37F38" : [ - "KF268334" - ], - "Newcastle_disease_virus__duck_China_Guangxi18_2009" : [ - "JX193079" - ], - "Avian_carcinoma_virus_MH2E21" : [ - "NC_001402" - ], - "Feline_coronavirus_Felis_catus_NLD_UU55_2010" : [ - "KF530135" - ], - "Hepatitis_B_virus__HK1272" : [ - "DQ089770" - ], - "Human_papillomavirus_type_68__Qv23347" : [ - "KC470267" - ], - "Duck_hepatitis_virus_G" : [ - "EU755009" - ], - "West_Nile_virus__AVA1204895" : [ - "KC736501" - ], - "Hepatitis_B_virus__HBV25" : [ - "KC875313" - ], - "Porcine_circovirus_2_Chia_Yi" : [ - "AF364094" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL097A" : [ - "AB985544", - "AB985312" - ], - "Burkholderia_pseudomallei_1026b" : [ - "NC_017831", - "NC_017832" - ], - "Porcine_circovirus_2_PT_34765_06" : [ - "HQ831527" - ], - "Tomato_chlorosis_virus__HS" : [ - "KP137099", - "KP137098" - ], - "Equine_arteritis_virus__S3861" : [ - "GQ903795" - ], - "Mycobacterium_phage_Zapner" : [ - "KJ567041" - ], - "Human_immunodeficiency_virus_1__01IC_PCI127" : [ - "AJ866558" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1205" : [ - "KR534538" - ], - "West_Nile_virus_strain_PT6_16_PT6_16" : [ - "AJ965626" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6790_2009" : [ - "KJ627246" - ], - "Hepatitis_B_virus__J37" : [ - "GQ377532" - ], - "Human_enterovirus_C104_Pavia263_11230" : [ - "JX982255" - ], - "Ageratum_yellow_vein_virus__Taiwan_Taoyuan3_2000___TA3" : [ - "DQ866134" - ], - "West_Nile_virus__WNV_1_US_BID_V7388_2009" : [ - "KJ501100" - ], - "West_Nile_virus__WNV_1_US_BID_V6211_2008" : [ - "KJ501260" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2230_2004" : [ - "FJ639797" - ], - "Porcine_circovirus_2_R0255_209_03__R0255_209_03" : [ - "EU057189" - ], - "Clitocybe_odora_virus__C_Holm" : [ - "NC_017003" - ], - "Strawberry_mild_yellow_edge_virus__D74" : [ - "AJ577359" - ], - "Dengue_virus_2__DENV_2_PK_2011" : [ - "KJ010185" - ], - "Dehalobacter_11DCA" : [ - "NC_018866" - ], - "Hepatitis_B_virus__03UC" : [ - "AB493837" - ], - "Murine_norovirus_1__Mu_NoV_GV_MNV1_2002_USA" : [ - "EU004654", - "EU004659", - "EU004657", - "EU004658", - "EF014462", - "AY228235", - "KC782764", - "EU004660", - "NC_008311", - "EU004662", - "EU004661", - "EU004656", - "EU004655" - ], - "JC_polyomavirus_318C" : [ - "AY364314" - ], - "Yam_mild_mosaic_virus__GH6_NC_1" : [ - "KJ125473" - ], - "Newcastle_disease_virus_chicken_DominicanRepublic_JuanLopez__499_31_2008" : [ - "JX119193" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL057A" : [ - "AB985526", - "AB985295" - ], - "Corynebacterium_argentoratense_DSM_44202" : [ - "NC_022198" - ], - "Porcine_circovirus_2__V0622" : [ - "KJ128269" - ], - "Porcine_epidemic_diarrhea_virus_SHQP_YM_2013" : [ - "KJ196348" - ], - "Cymbidium_mosaic_virus__M2" : [ - "EU314803" - ], - "Penaeid_shrimp_infectious_myonecrosis_virus__Brazil_2009" : [ - "KR815474" - ], - "Human_papillomavirus_type_58__Z094" : [ - "HQ537777" - ], - "JC_polyomavirus__JCV176FLC_02" : [ - "JF424902" - ], - "Stachytarpheta_leaf_curl_virus____Hn6_1___Hn6_1" : [ - "AJ564742" - ], - "Bunyamwera_virus_ArB29051_12_09_94" : [ - "AM709778" - ], - "Chocolate_lily_virus_A__KP2" : [ - "NC_016443", - "NC_016444" - ], - "Dengue_virus_1_D1_SG_05K4606DK1_2005" : [ - "EU081273" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1313_2007" : [ - "FJ882594" - ], - "Human_papillomavirus_type_148__34_60" : [ - "GU129016" - ], - "Orgyia_pseudotsugata_cypovirus_5" : [ - "KC588358", - "KC588362", - "KC588364", - "KC588365", - "KC588359", - "KC588357", - "KC588360", - "KC588356", - "KC588361", - "KC588363" - ], - "Hepatitis_C_virus_subtype_1a__L8119" : [ - "EU781757" - ], - "Brome_mosaic_virus" : [ - "NC_002028", - "NC_002026", - "NC_002027" - ], - "Usutu_virus_V11" : [ - "KJ438738" - ], - "Porcine_circovirus_2_ZheJiang2006" : [ - "EF210106" - ], - "Staphylococcus_aureus_JKD6159" : [ - "NC_017338", - "NC_017339" - ], - "Simian_enterovirus_SV4_1715_UWB" : [ - "AF326759" - ], - "Euphorbia_mosaic_virus__CU__Havana_27__2007___27" : [ - "HQ896201", - "HQ896202" - ], - "Coxsackievirus_A12_Texas_12_CA12" : [ - "AY421768" - ], - "Porcine_circovirus_2__HD1" : [ - "KC514968" - ], - "Dengue_virus_1__DENV_1_VN_BID_V939_2007" : [ - "EU482484" - ], - "Hepatitis_C_virus_subtype_1b_HeBei" : [ - "HPCCGENOM" - ], - "Hendra_virus" : [ - "NC_001906" - ], - "Human_immunodeficiency_virus_1__ZM246F_flA6" : [ - "FJ496188" - ], - "Equine_infectious_anemia_virus_Miyazaki2011_A" : [ - "JX003263" - ], - "Hepatitis_B_virus__GU630" : [ - "GQ161817" - ], - "Desmodus_rotundus_endogenous_retrovirus__824" : [ - "NC_027117" - ], - "Pectobacterium_carotovorum_PC1" : [ - "NC_012917" - ], - "Tula_virus_Tula_Koziky_5247Ma_94" : [ - "AJ223600" - ], - "HBV_genotype_D4__Mart_B50" : [ - "HE974378" - ], - "Bifidobacterium_breve_ACS_071_V_Sch8b" : [ - "NC_017218" - ], - "Dengue_virus_2__DC597Y12" : [ - "KM279530" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_130598" : [ - "KJ425497" - ], - "Mirabilis_leaf_curl_India_virus__Pragpur" : [ - "NC_024491" - ], - "Hepatitis_A_virus__HAJIH_Fukuo10" : [ - "AB618529" - ], - "Enterovirus_B77__CF496_99" : [ - "AJ493062" - ], - "Panicum_streak_virus__H_CF_Bai2_Car11" : [ - "GQ415397" - ], - "South_African_cassava_mosaic_virus__MG_MG338A2_10" : [ - "KJ887989" - ], - "Rabies_virus_FJ009" : [ - "FJ866836" - ], - "Equine_arteritis_virus__GB_Glos_2012" : [ - "LC000003" - ], - "Erwinia_amylovora_phage_Era103" : [ - "NC_009014" - ], - "Candidatus_Carsonella_ruddii_PC_isolate_NHV" : [ - "NC_018418" - ], - "West_Nile_virus__WNV_1_US_BID_V7420_2004" : [ - "KJ501131" - ], - "Hepatitis_B_virus__40Y22HCC" : [ - "AB014399" - ], - "Squash_leaf_curl_virus__EG1_5" : [ - "KM595144" - ], - "Enterovirus_sp___CPML_8109_08" : [ - "NC_024073" - ], - "Ignisphaera_aggregans_DSM_17230" : [ - "NC_014471" - ], - "Lake_Victoria_marburgvirus___Angola2005_Ang1386" : [ - "DQ447655" - ], - "Dengue_virus_1__DENV_1_US_BID_V1743_1995" : [ - "FJ205874" - ], - "Dengue_virus_2__GUA_Oct_06" : [ - "EU920850" - ], - "Human_parainfluenza_virus_3" : [ - "NC_001796" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4921_spleen" : [ - "HQ671672" - ], - "Enterovirus_A71__Anhui2007" : [ - "KC954662" - ], - "Modoc_virus_M544" : [ - "NC_003635" - ], - "Hepatitis_B_virus__2_3051" : [ - "JX096955" - ], - "Piper_yellow_mottle_virus__PN_P1" : [ - "KJ873041" - ], - "Aeromonas_veronii_B565" : [ - "NC_015424" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus__ES_Mur_TY2_Tom2011" : [ - "KC953604" - ], - "Maize_streak_virus__MSV_A_MZ_Map7_Moz29_2007" : [ - "HQ693357" - ], - "Pepper_mild_mottle_virus_BR_DF01" : [ - "AB550911" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3609_2007" : [ - "GU131877" - ], - "Ageratum_yellow_vein_virus__AFSP7b" : [ - "JN809823" - ], - "Xanthomonas_phage_OP1" : [ - "NC_007709" - ], - "Bombyx_mori_Macula_like_virus" : [ - "AB186123", - "NC_015524" - ], - "Hepatitis_B_virus__FEN37" : [ - "JF440000" - ], - "JC_polyomavirus__GU_25" : [ - "AB081013" - ], - "Hepatitis_B_virus__E3_1" : [ - "GU815702" - ], - "Porcine_circovirus_2__SL10" : [ - "KJ680343" - ], - "Enterovirus_D68__2012_12225" : [ - "KT285319" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C39" : [ - "KJ019164" - ], - "Simian_immunodeficiency_virus__SIVmon_99CMCML1" : [ - "AY340701" - ], - "West_Nile_virus__WNV_1_US_BID_V5227_2008" : [ - "JF920755" - ], - "Banana_bunchy_top_virus__TO114" : [ - "JF957673", - "JF957685", - "JF957661", - "JF957625", - "JF957637", - "JF957649" - ], - "HBV_genotype_B__P2_120831" : [ - "AB981581" - ], - "Cucumber_mosaic_virus_satellite_RNA_I17F" : [ - "MCVSRRA", - "MCVSRRB", - "MCVSRI17B", - "MCVSRD", - "MCVSRI17A", - "MCVSRRC" - ], - "Hepatitis_B_virus__SHB85" : [ - "KJ598769" - ], - "Porcine_circovirus_type_1_2a__FMV08_1114252" : [ - "NC_013774" - ], - "Bean_golden_mosaic_virus_Type_I_Brazil" : [ - "NC_004043", - "NC_004042" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__GZ106" : [ - "KJ541663" - ], - "Macaca_fascicularis_papillomavirus_type_5__Mac76" : [ - "EF558843" - ], - "Cotton_leaf_curl_virus__Ganganagar_Rajasthan" : [ - "NC_017827" - ], - "Newcastle_disease_virus_ND_05_028" : [ - "GQ338311" - ], - "Stygiolobus_rod_shaped_virus" : [ - "NC_025375" - ], - "Escherichia_phage_EC6" : [ - "NC_027369" - ], - "Enterovirus_A71__Wuhan1042_HuB_CHN_2011" : [ - "JX986737" - ], - "Dengue_virus_1__DENV_1_US_BID_V1740_1998" : [ - "FJ205873" - ], - "Hepatitis_B_virus__A78" : [ - "FJ904423" - ], - "Chicken_anemia_virus__SMSC_1P123WT" : [ - "DQ217401" - ], - "Human_mastadenovirus_F_Dugan" : [ - "NC_001454" - ], - "Hepatitis_B_virus__I25" : [ - "FJ562227" - ], - "Hepatitis_C_virus_subtype_1b_274933RU" : [ - "AF176573" - ], - "Sulfurimonas_denitrificans_DSM_1251" : [ - "NC_007575" - ], - "Human_poliovirus_3_NIE1018525" : [ - "KJ170672" - ], - "Tomato_leaf_curl_Sudan_virus__SD_WM_11" : [ - "KC763630" - ], - "Avian_orthoreovirus_GX110116" : [ - "KF741746", - "KF741753", - "KF741747", - "KF741755", - "KF741751", - "KF741749", - "KF741748", - "KF741750", - "KF741754" - ], - "Bean_golden_mosaic_virus__BR_Chp_05" : [ - "KJ939723" - ], - "Anaeromyxobacter_dehalogenans_2CP_1" : [ - "NC_011891" - ], - "Porcine_circovirus_2__sh0901" : [ - "GU124593" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G19082_44_319857_2007" : [ - "KR135310" - ], - "Rotavirus_A__RVA_Human_wt_DEN_L23147916_2012_G9P_8" : [ - "KP013469" - ], - "Porcine_circovirus_2_GX0839" : [ - "GQ359002" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_pool_MEX_MX10_95M11_2010_IE" : [ - "KC344501" - ], - "Tobacco_leaf_chlorosis_betasatellite__03" : [ - "NC_018935" - ], - "Newcastle_disease_virus__BD12" : [ - "KJ019841" - ], - "Mumps_virus_MuVi_NK_M46_JPN_0_70_B___Vac" : [ - "AB827968" - ], - "Oat_golden_stripe_virus" : [ - "NC_002358", - "NC_002357" - ], - "Tomato_yellow_leaf_curl_virus__SD_LY" : [ - "KM435322" - ], - "Mycobacterium_phage_CRB1" : [ - "NC_023606" - ], - "JC_polyomavirus_Taiwan_3" : [ - "U61771" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V90_2005" : [ - "EU155244" - ], - "Newcastle_disease_virus__APMV1_Pigeon_USA_0101_2001" : [ - "KC013031" - ], - "Potato_virus_Y__1129" : [ - "KJ603225" - ], - "JC_polyomavirus__J3_7" : [ - "AB081605" - ], - "Human_papillomavirus_type_11__LPX35" : [ - "HE962024" - ], - "Norovirus_Hu_GII_4_Aichi1_2007_JP_Hu_GII_4_Aichi1_2007_JP" : [ - "AB541201" - ], - "Duck_hepatitis_A_virus_3_SD1101" : [ - "JQ409566" - ], - "BK_polyomavirus_JPN_34" : [ - "AB269838" - ], - "Hepatitis_B_virus__A3_2" : [ - "GU815573" - ], - "Porcine_circovirus_2__Huanan_5" : [ - "EF421970" - ], - "African_cassava_mosaic_virus__TZ" : [ - "AY795982" - ], - "Hepatitis_B_virus__N199v3" : [ - "KF922412" - ], - "Canine_adenovirus_2_Toronto_A26_61" : [ - "CAU77082" - ], - "Human_papillomavirus_type_68__Qv33999" : [ - "KC470283" - ], - "Hepatitis_B_virus__MLT0908" : [ - "KF779298" - ], - "Propionibacterium_acnes_TypeIA2_P_acn33" : [ - "NC_016516" - ], - "Hepatitis_C_virus_subtype_1a__DN08" : [ - "EU781820" - ], - "Tomato_yellow_leaf_curl_virus__BidBid" : [ - "HE819243" - ], - "Hepatitis_B_virus__Leb48" : [ - "JN642154" - ], - "Bacillus_phage_PM1_PM1" : [ - "NC_020883" - ], - "Porcine_circovirus_2__PCV2_Uy_1" : [ - "KC688418" - ], - "Equine_coronavirus_NC99" : [ - "NC_010327" - ], - "Turnip_mosaic_virus_BJ_B02" : [ - "KC119186" - ], - "Plum_pox_virus__Penn7" : [ - "EF640935" - ], - "African_horse_sickness_virus__HS_72_08" : [ - "KP009734", - "KP009739", - "KP009740", - "KP009737", - "KP009738", - "KP009736", - "KP009735", - "KP009733", - "KP009731" - ], - "Bacteroides_salanitronis_DSM_18170" : [ - "NC_015166", - "NC_015168", - "NC_015164", - "NC_015165" - ], - "SARS_coronavirus_MA15_MA15_d2om3" : [ - "HQ890544" - ], - "Boa_arenavirus_NL__3" : [ - "NC_023761", - "NC_023762" - ], - "West_Nile_virus__WNV_1_US_BID_V4716_2003" : [ - "HM756668" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FLA1266_2008" : [ - "KJ627302" - ], - "Porcine_circovirus_2__SDBS1111" : [ - "KJ680350" - ], - "Pseudomonas_stutzeri_CCUG_29243" : [ - "NC_018028" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_X_PAN_240832_1965_ID" : [ - "KC344518" - ], - "Torque_teno_virus_6__KAV" : [ - "NC_014094" - ], - "Newcastle_disease_virus_HB_1_05_Dk" : [ - "KM977903" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1651" : [ - "KR534570" - ], - "Hepatitis_B_virus__I71" : [ - "FJ562243" - ], - "African_cassava_mosaic_virus__MG_MG619A7_11" : [ - "KJ888059" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2258_2006" : [ - "FJ639818" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_O14B_2005" : [ - "JQ319166" - ], - "Citrus_leprosis_virus_C" : [ - "DQ157466", - "DQ388512", - "DQ388513" - ], - "BK_polyomavirus__NER_1" : [ - "AB263932" - ], - "Eastern_equine_encephalitis_virus_EEEV_Phasianus_USA_69_7836_1969" : [ - "KJ469635" - ], - "Hepatitis_B_virus__pt11N" : [ - "KM875420" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V25_2003" : [ - "EU482831" - ], - "Hepatitis_B_virus__003_DR_Dal" : [ - "KF873540" - ], - "Duck_egg_drop_syndrome_virus_duan" : [ - "JQ920421" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL072A" : [ - "AB985534" - ], - "Dengue_virus_3__DENV_3_US_BID_V1481_2003" : [ - "EU687198" - ], - "Hepatitis_B_virus__pt13N" : [ - "KM875424" - ], - "Variola_virus_Congo_9_1970__v74_227_Gispen" : [ - "DQ441423" - ], - "Wolbachia_endosymbiont_of_Drosophila_melanogaster" : [ - "NC_002978" - ], - "Human_adenovirus_32" : [ - "JN226756" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7690_2012" : [ - "KF973472" - ], - "West_Nile_virus_SPU116_89_SPU116_89" : [ - "EF429197" - ], - "JC_polyomavirus__JCV183FLC_05" : [ - "JF425492" - ], - "Spodoptera_exigua_multiple_nucleopolyhedrovirus__HT_SeSP2A" : [ - "HG425349" - ], - "Hepatitis_C_virus__T9_JFH1" : [ - "KC967476" - ], - "Alkhumra_hemorrhagic_fever_virus_5676" : [ - "JX271893" - ], - "Titi_monkey_adenovirus_ECC_2011" : [ - "NC_020487" - ], - "West_Nile_virus__Ast02_2_691" : [ - "DQ411034" - ], - "Langat_virus_TP21" : [ - "NC_003690", - "EU790644" - ], - "Human_poliovirus_1_NIE1018322" : [ - "KJ170458" - ], - "Hepatitis_B_virus__Leb35" : [ - "JN642166" - ], - "JC_polyomavirus__JCV144_45" : [ - "JF424892" - ], - "Hepatitis_B_virus__CX065M_e314" : [ - "KJ173358" - ], - "Rinderpest_virus_LA_AKO" : [ - "LC057619" - ], - "JC_polyomavirus__TD_15" : [ - "AB077864" - ], - "Ilesha_virus_ArB16282_Feb_81" : [ - "AM709780" - ], - "Dengue_virus_4__DENV_4_US_BID_V2444_1998" : [ - "FJ882597" - ], - "Spiribacter_UAH_SP71" : [ - "NC_022664" - ], - "Rudbeckia_flower_distortion_virus__Minnesota" : [ - "NC_011920" - ], - "Duck_circovirus__DB32_3" : [ - "KP229367" - ], - "Sandfly_fever_Naples_virus_Namru" : [ - "HM566168", - "HM566169", - "HM566167" - ], - "Rabbit_hemorrhagic_disease_virus__UT_01" : [ - "EU003582" - ], - "Human_parechovirus_4_Fuk2005_123" : [ - "AB433629" - ], - "Macroptilium_yellow_spot_virus__BR_Mac5_10" : [ - "JN419022" - ], - "Simian_virus_41__Toshiba_Chanock" : [ - "NC_006428" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC307" : [ - "KF551577" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HN_HW" : [ - "FJ797690" - ], - "Hepatitis_B_virus__I_T86" : [ - "GU456663" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_M1" : [ - "AB261991" - ], - "Human_immunodeficiency_virus_1__0632SV" : [ - "JF804810" - ], - "Human_immunodeficiency_virus_1__04013226_2_flH6" : [ - "FJ496080" - ], - "Human_papillomavirus_type_16__Qv05460" : [ - "HQ644266" - ], - "Cronobacter_phage_ENT47670_ENT47670" : [ - "NC_019927" - ], - "Bhendi_yellow_vein_India_virus__India_Trichy_OY115B_2005___OY115B" : [ - "GU112048" - ], - "Monkeypox_virus__Cote_d_Ivoire_1971" : [ - "KP849470" - ], - "Human_respiratory_syncytial_virus_A_WI_629_23_08" : [ - "JF920047" - ], - "Beak_and_feather_disease_virus__BFDV_T_PL_378_2007" : [ - "JX221021" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_Liberia_DQE12" : [ - "KR075001" - ], - "Turnip_mosaic_virus__AUST29" : [ - "AB989643" - ], - "Sudan_ebolavirus__Sudan_virus_H_sapiens_tc_UGA_2000_Gulu_808892" : [ - "NC_006432" - ], - "Coxsackievirus_A16_BJ_11_11" : [ - "JX068831" - ], - "European_mountain_ash_ringspot_associated_virus__E52901" : [ - "HG799735" - ], - "West_Nile_virus__WNV_1_US_BID_V7423_2010" : [ - "KJ501134" - ], - "Hepatitis_B_virus__GU934" : [ - "GQ161759" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3495_2008" : [ - "GU131864" - ], - "Hepatitis_B_virus__I204" : [ - "FJ562313" - ], - "Rice_grassy_stunt_virus" : [ - "NC_002328", - "NC_002327" - ], - "Dengue_virus_2__DC331Y11" : [ - "KM279515" - ], - "Duck_circovirus__D11_JW_006" : [ - "JQ740362" - ], - "JC_polyomavirus__MR_7" : [ - "AB048564" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0044" : [ - "KP759713" - ], - "Tomato_spotted_wilt_virus__NC_2" : [ - "AY744477" - ], - "Banana_bunchy_top_virus__BS1" : [ - "FJ859727", - "FJ859740" - ], - "Hepatitis_B_virus__patient8" : [ - "AB300366" - ], - "Akabane_virus_OBE_1" : [ - "NC_009896", - "NC_009894", - "NC_009895" - ], - "Hepatitis_delta_virus_Miyako_JA_M13" : [ - "AB118828" - ], - "Human_immunodeficiency_virus_1__CU14" : [ - "AY586541" - ], - "Hepatitis_C_virus__QC259" : [ - "JF735114" - ], - "Feline_coronavirus_UU17_UU17" : [ - "HQ012367" - ], - "Desulfurococcus_mucosus_DSM_2162" : [ - "NC_014961" - ], - "Tobacco_leaf_curl_betasatellite__Pakistan_Multan_Pedilanthus_2004" : [ - "AM260465" - ], - "Synechococcus_phage_S_CAM8_S_CAM8_06008BI06" : [ - "NC_021530" - ], - "Chickpea_chlorotic_dwarf_virus__Bangalore" : [ - "KF632712" - ], - "Sclerotinia_sclerotiorum_negative_stranded_RNA_virus_1_AH98" : [ - "NC_025383" - ], - "Hepatitis_B_virus__HB13_1204" : [ - "AB937797" - ], - "Foot_and_mouth_disease_virus___type_O_OGBF15" : [ - "DQ478936" - ], - "African_cassava_mosaic_virus__MG_MG52A1_06" : [ - "KJ887870" - ], - "Newcastle_disease_virus_Du_CH_LAH_224_2011" : [ - "KM885166" - ], - "Rhodothermus_marinus_SG0_5JP17_172" : [ - "NC_015966", - "NC_015970", - "NC_015967" - ], - "Sinorhizobium_meliloti_AK83" : [ - "NC_015596", - "NC_015592", - "NC_015597", - "NC_015591", - "NC_015590" - ], - "Okra_leaf_curl_betasatellite__India_Munthal_EL38_2006___EL38" : [ - "GU111963" - ], - "Cucumber_mosaic_virus_satellite_RNA_banana_strain" : [ - "CMU43889" - ], - "Maize_streak_virus__MSV_B1_Za_Dur_g212_2007" : [ - "EU628582" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO13AY2_2009" : [ - "JF909137" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5_3P20_2010_c5_3P20" : [ - "KF514417" - ], - "Human_immunodeficiency_virus_1__C_ZA_1217MB" : [ - "AY463226" - ], - "Dengue_virus_2__DENV_2_NI_BID_V563_2006" : [ - "EU482444" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2154_2001" : [ - "FJ639829" - ], - "Newcastle_disease_virus_Chichen_China_SDLY01_2010" : [ - "JN400897" - ], - "Hepatitis_B_virus__JFA4283" : [ - "KF779275" - ], - "Hepatitis_B_virus__cxn1049" : [ - "KC774344" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V269_2005" : [ - "EU155354" - ], - "Hepatitis_B_virus__I2_M04_3733" : [ - "FJ023671" - ], - "Bundibugyo_virus__EboBund_14_2012" : [ - "KC545396" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V190_1990" : [ - "EU255980" - ], - "Foot_and_mouth_disease_virus___type_A__EGY_9_2011" : [ - "KC440881" - ], - "Plum_pox_virus_strain_El_Amar_El_Amar" : [ - "AM157175" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_295_2012" : [ - "KP308436" - ], - "Chikungunya_virus_ITA07_RA1" : [ - "EU244823" - ], - "Mycobacterium_phage_Dandelion_Dandelion" : [ - "NC_023696" - ], - "SARS_coronavirus_CUHK_AG03__CUHK_AG03" : [ - "AY345988" - ], - "Hepatitis_B_virus__SHB812" : [ - "KJ598772" - ], - "Rotavirus_G4__Rota_3" : [ - "AB012076" - ], - "West_Nile_virus__WNV_1_US_BID_V6191_2001" : [ - "KJ501247" - ], - "Hepatitis_C_virus__QC97" : [ - "FJ462441" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo171_08" : [ - "KC706546" - ], - "Maize_streak_virus__MSV_A_CF_Bang7_Car45_2008" : [ - "HQ693302" - ], - "Potato_leafroll_virus__PLRV_YN" : [ - "KC456054" - ], - "Melon_aphid_borne_yellows_virus" : [ - "NC_010809" - ], - "Human_papillomavirus_type_18__Z125" : [ - "KC470226" - ], - "Peach_chlorotic_mottle_virus__Agua_4N6" : [ - "NC_009892" - ], - "Stretch_Lagoon_orbivirus__K49460" : [ - "NC_012754", - "NC_012755" - ], - "Watermelon_silver_mottle_virus__DD6" : [ - "DQ157768" - ], - "West_Nile_virus__WNV_1_US_BID_V6538_2002" : [ - "KJ501501" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1707_2007" : [ - "FJ024274" - ], - "Rhinovirus_C_WA823M02" : [ - "JN205461" - ], - "Dengue_virus_2__DENV_2_NI_BID_V4158_2006" : [ - "HM631867" - ], - "Porcine_circovirus_2_TJ1007" : [ - "JN176181" - ], - "Hepatitis_B_virus__cxa1602" : [ - "KC774300" - ], - "Enterovirus_A71__03_0_003" : [ - "KP691649" - ], - "Hepatitis_B_virus__HK1465" : [ - "DQ089795" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4242_2007" : [ - "HM488255" - ], - "Bean_golden_mosaic_virus__BR_Flt10_11" : [ - "KJ939775" - ], - "Norovirus_Hu_NLV_Oxford_B4S7_2002_UK__Hu_NLV_Oxford_B4S7_2002_UK" : [ - "AY587987" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1968_2008" : [ - "FJ410282" - ], - "Hepatitis_B_virus__CONTROL20" : [ - "JQ801512" - ], - "Watermelon_chlorotic_stunt_virus__PA1_J51" : [ - "KM820273" - ], - "Tomato_yellow_vein_streak_virus__CL_179_To_2012" : [ - "KC136336" - ], - "Foot_and_mouth_disease_virus___type_O__IND341_707__2013" : [ - "KJ825805" - ], - "Enterovirus_A71__HNCZ_201211" : [ - "KF142413" - ], - "Equine_rotavirus_A_FI_14" : [ - "KM454486", - "KM454491", - "KM454485", - "KM454488", - "KM454490", - "KM454482", - "KM454483", - "KM454489", - "KM454481" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3963_2008" : [ - "GU131743" - ], - "Sida_mottle_Alagoas_virus__BR_Vsa2_10" : [ - "NC_020256" - ], - "Dengue_virus_1__DENV_1_VN_BID_V795_2006" : [ - "EU249492" - ], - "Murine_hepatitis_virus_A59" : [ - "AY700211" - ], - "Prochlorococcus_marinus_CCMP1375" : [ - "NC_005042" - ], - "West_Nile_virus__M12214" : [ - "JF415914" - ], - "Hepatitis_B_virus__S171_4" : [ - "FJ787442" - ], - "Haemophilus_influenzae_PittGG" : [ - "NC_009567" - ], - "Sapovirus_Hu_Bristol_1998_UK__Bristol_98_UK" : [ - "AJ249939" - ], - "Avian_leukosis_virus_SDAU09E2" : [ - "HM452342" - ], - "Desulfitobacterium_dichloroeliminans_LMG_P_21439" : [ - "NC_019903" - ], - "Human_papillomavirus_type_6__46" : [ - "HG793854" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG632A1_11" : [ - "KJ888066" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__NT0801_P10" : [ - "KJ523894" - ], - "Plum_pox_virus_PPV_D_Ha4" : [ - "AB576051" - ], - "Hepatitis_B_virus_146_Thailand" : [ - "FJ361772" - ], - "Hepatitis_B_virus__024_K_Kal" : [ - "KF873513" - ], - "West_Nile_virus__WNV_1_US_BID_V7465_2011" : [ - "KJ501170" - ], - "Enterovirus_A71_Taipei_C4_Y100_P4_2011" : [ - "KP274874" - ], - "Porcine_parvovirus_ZJ" : [ - "EU790642" - ], - "Canine_parvovirus_2c__UY258" : [ - "KM457122" - ], - "Porcine_circovirus_2__SJS090503" : [ - "GU325761" - ], - "Hepatitis_B_virus__HBV_Tw25" : [ - "AB073836" - ], - "Beet_curly_top_Iran_virus__IR_Yaz_B15P_Sug_06" : [ - "JQ707938" - ], - "Hepatitis_B_virus_951_5a" : [ - "KR013825" - ], - "Feline_coronavirus__28O" : [ - "KP143508" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3724" : [ - "KM233053" - ], - "Merkel_cell_polyomavirus__13a" : [ - "HM011543" - ], - "Enterovirus_A71_LAZ60_TR" : [ - "JX025559" - ], - "Mycobacterium_phage_Guo1" : [ - "KJ725374" - ], - "Hepatitis_B_virus__Cuba12" : [ - "KM606745" - ], - "Bluetongue_virus_9_DP0837" : [ - "JQ086306", - "JQ086303", - "JQ086301", - "JQ086308", - "JQ086302", - "JQ086305", - "JQ086310", - "JQ086309", - "JQ086307", - "JQ086304" - ], - "Helicobacter_pylori" : [ - "NC_017354" - ], - "Janthinobacterium_Marseille" : [ - "NC_009659" - ], - "Human_immunodeficiency_virus_1__09YNLC497sg" : [ - "KC898992" - ], - "Porcine_circovirus_2__JX_1" : [ - "HM776445" - ], - "Vervet_monkey_polyomavirus_3__VMS95_VMS97" : [ - "NC_025898" - ], - "Maize_streak_virus__UKib_188" : [ - "EF547107" - ], - "Rabies_virus__FL769" : [ - "JQ685900" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_24_2011" : [ - "KJ686265" - ], - "Hepatitis_B_virus__HBV14" : [ - "KC875257" - ], - "Newcastle_disease_virus__gamefowl_U_S__CA__211472_02" : [ - "AY562987" - ], - "Usutu_virus_V387" : [ - "KJ438757" - ], - "Dengue_virus_1_RGCB419_D1_IN_RGCB419_2008" : [ - "JN903579" - ], - "Dengue_virus_2_D2_SG_05K3330DK1_2005" : [ - "EU081178" - ], - "Apple_stem_grooving_virus__YTG" : [ - "KJ579253" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite__India_Kanpur_Chilli_2008___India_Kanpur_Chilli_2008" : [ - "HM007107" - ], - "Middle_East_respiratory_syndrome_coronavirus__ChinaGD01_variant_2" : [ - "KT036374" - ], - "Hepatitis_B_virus__FEP1" : [ - "AB485809" - ], - "Sweet_potato_leaf_curl_virus_associated_satellite__1764E13" : [ - "NC_025220" - ], - "JC_polyomavirus__MT_1" : [ - "AB077859" - ], - "Cypovirus_14" : [ - "NC_003006", - "NC_003010", - "NC_003011", - "NC_003013", - "NC_003014", - "NC_003007", - "NC_003015", - "NC_003009", - "NC_003012", - "NC_003008" - ], - "Human_immunodeficiency_virus_1_C2220__ETH2220" : [ - "HIVU46016" - ], - "Human_bocavirus__WHL_1" : [ - "GU139423" - ], - "Chikungunya_virus_0810aTw" : [ - "FJ807898" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_13__AHEaCV_13_NZ_4754GA_2012" : [ - "KM874331" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_2_2013" : [ - "KF186566" - ], - "Cauliflower_mosaic_virus__TUR34" : [ - "AB863171" - ], - "Dengue_virus_2__DENV_2_IND_053598_2005" : [ - "JQ922551" - ], - "Hepatitis_B_virus__MY775775" : [ - "KJ803797" - ], - "West_Nile_virus__WNV_1_US_BID_V4573_2003" : [ - "HM488215" - ], - "Hepatitis_B_virus__GU605" : [ - "GQ161792" - ], - "Hepatitis_E_virus__HEVN1" : [ - "AB246676" - ], - "JC_polyomavirus__KO_5" : [ - "AB074587" - ], - "Rice_yellow_mottle_virus__Ke12" : [ - "FN432839" - ], - "Hepatitis_B_virus__DEN6061" : [ - "KF779227" - ], - "Foot_and_mouth_disease_virus___type_A_A2_Spain_a2spain_iso7" : [ - "AY593774" - ], - "Avian_leukosis_virus__YZ9902" : [ - "HM235670" - ], - "Enterococcus_phage_phiFL1B_phiFL1B" : [ - "GQ478082" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT55B06_2008" : [ - "JF909193" - ], - "Hepatitis_B_virus__A1_48077" : [ - "FJ692565" - ], - "Dengue_virus_2__DENV_2_CO_BID_V3369_1999" : [ - "GQ868553" - ], - "Hepatitis_B_virus__TW1138" : [ - "EF494377" - ], - "Bean_common_mosaic_virus__HZZB011" : [ - "KJ807815" - ], - "Corynebacterium_diphtheriae_VA01" : [ - "NC_016790" - ], - "Human_bocavirus_HoBV_Yamagata_JPN_193" : [ - "AB480172" - ], - "Maize_streak_virus___A_MatB__MSV_A_MSV_MatB" : [ - "AF329882" - ], - "Human_papillomavirus_type_16" : [ - "NC_001526", - "EU118173", - "AF472508", - "FJ006723", - "AF472509", - "AF534061", - "AX800450" - ], - "Tomato_spotted_wilt_virus__TSWV_17" : [ - "KC261973", - "KC261971", - "KC261972" - ], - "Azorhizobium_caulinodans_ORS_571" : [ - "NC_009937" - ], - "Vibrio_phage_pYD38_A_pYD38_pYD38_A" : [ - "NC_021534" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3775_2006" : [ - "GU131887" - ], - "Hepatitis_B_virus__KDI15" : [ - "GQ358144" - ], - "Hepatitis_B_virus__CMR983" : [ - "AB194950" - ], - "Dengue_virus_2__DENV_2_US_BID_V1180_1989" : [ - "EU482583" - ], - "Puumala_virus_Karhumaki" : [ - "AJ238788" - ], - "Junin_mammarenavirus_XJ39" : [ - "JF799983", - "JF799979" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00089_2002_G1P_8" : [ - "JN651827", - "JN651829", - "JN651831", - "JN651825", - "JN651828", - "JN651830", - "JN651826", - "JN651834", - "JN651824", - "JN651833", - "JN651832" - ], - "Feline_bocavirus_HK797U" : [ - "JQ692586" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_61_02" : [ - "DQ989318" - ], - "Hepatitis_B_virus__WY_NJ_14" : [ - "JX026878" - ], - "Newcastle_disease_virus_JS_5_05_Go" : [ - "JN631747" - ], - "Bat_Paramyxovirus_Epo_spe_AR1_DRC_2009__BatPV_Epo_spe_AR1_DRC_2009" : [ - "HQ660095" - ], - "Human_immunodeficiency_virus_1__03ZAPS063MB1" : [ - "DQ396388" - ], - "Hepatitis_C_virus__TV249" : [ - "EF632070" - ], - "West_Nile_virus__WNV_1_US_BID_V4218_2004" : [ - "HM488146" - ], - "South_African_cassava_mosaic_virus__MG_MG512A2_11" : [ - "KJ888027" - ], - "BK_polyomavirus__A_36H" : [ - "AB369088" - ], - "Maize_streak_virus__MSV_A_NG_ng13_Sam_2011" : [ - "KJ437657" - ], - "Dengue_virus_2_DR59_01" : [ - "AB122022" - ], - "Cucumber_mosaic_virus_Lily" : [ - "AJ276583" - ], - "Soybean_mosaic_virus__Go11" : [ - "KF135491" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3782" : [ - "KM233072" - ], - "Maize_streak_virus__UTor_271" : [ - "EF547120" - ], - "Helicobacter_pylori_G27" : [ - "NC_011333", - "NC_011334" - ], - "Hepatitis_B_virus__34Y16HCC" : [ - "AB014393" - ], - "Enterovirus_A71__EV71_GD10_12_2010" : [ - "KJ004559" - ], - "WU_Polyomavirus__T52" : [ - "GU296397" - ], - "African_cassava_mosaic_virus__CF_CF17AB_07" : [ - "KJ887763" - ], - "West_Nile_virus__WNV_1_US_BID_V6413_2002" : [ - "KJ501286" - ], - "Hepatitis_B_virus__C3_3" : [ - "GU815639" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3827" : [ - "KM233101" - ], - "Coxsackievirus_A4_High_Point_CA4" : [ - "AY421762" - ], - "Newcastle_disease_virus__D_AH_10_02" : [ - "JN688864" - ], - "Jatropha_mosaic_virus__DO_Aguacatico_Ag_14_2010" : [ - "KJ174334", - "KJ174330" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_tc_COD_1995_Kikwit_9510621" : [ - "KR867676" - ], - "Human_immunodeficiency_virus_1__04ZASK184B1" : [ - "DQ056418" - ], - "Candidatus_Sulcia_muelleri_GWSS" : [ - "NC_010118" - ], - "BK_polyomavirus__PHL_6" : [ - "AB263933" - ], - "Hepatitis_E_virus__JE03_1760F" : [ - "AB437319", - "AB437317", - "AB437318", - "AB301710", - "AB437316" - ], - "Hepatitis_B_virus__DEN6120" : [ - "KF779239" - ], - "Feline_calicivirus_Urbana" : [ - "JN210886", - "NC_001481", - "JN210885", - "JN210887", - "JN210890", - "JN210889", - "JN210888", - "JN210884" - ], - "Squash_leaf_curl_virus__IL3_96" : [ - "KM595120" - ], - "Hepatitis_B_virus__BR40" : [ - "KP090181" - ], - "Croton_yellow_vein_mosaic_betasatellite__India_Delhi_Cucumis_2012" : [ - "KC545814" - ], - "Orange_spotted_grouper_iridovirus" : [ - "AY894343" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3917_1" : [ - "KR105207" - ], - "Methanothermococcus_okinawensis_IH1" : [ - "NC_015632", - "NC_015636" - ], - "Canine_parvovirus_2c__UY101" : [ - "KM457110" - ], - "Canine_distemper_virus_PS" : [ - "JN896331" - ], - "Human_papillomavirus_type_6__34" : [ - "HG793842" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3606_2007" : [ - "GU131876" - ], - "Puumala_virus_Udmurtia_444Cg_88" : [ - "Z30706" - ], - "Barley_yellow_dwarf_virus_PAV__016" : [ - "EF521835" - ], - "Hepatitis_B_virus__Ag55" : [ - "KJ843214" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_P3pp3" : [ - "FJ882951" - ], - "Human_papillomavirus_type_45__Qv00550" : [ - "EF202161" - ], - "Magnetococcus_MC_1" : [ - "NC_008576" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3894_2008" : [ - "HM181963" - ], - "Dengue_virus_3_D3_SG_05K4454DK1_2005" : [ - "EU081222" - ], - "West_Nile_virus__WNV_1_US_BID_V6387_2003" : [ - "KJ501272" - ], - "West_Nile_virus__goshawk_Hungary_04" : [ - "DQ116961" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1NA2" : [ - "GU292315" - ], - "Hepatitis_B_virus__2B2894" : [ - "GQ922005" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5_7P20_2010_c5_7P20" : [ - "KF514407" - ], - "Enterobacteria_phage_PR4" : [ - "AY848686" - ], - "Mycobacterium_abscessus" : [ - "NC_010397", - "NC_010394" - ], - "Pestivirus_strain_Aydin_04_TR_Aydin_04_TR" : [ - "NC_018713" - ], - "Hepatitis_B_virus_1901_98" : [ - "EU594404" - ], - "Usutu_virus_Vienna_2001" : [ - "NC_006551" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI23_12_DNA_B" : [ - "HE979789" - ], - "Human_immunodeficiency_virus_1__CH3" : [ - "AY536233" - ], - "Myxoma_virus_Aust_Brooklands_2_93_BRK_12_2_93" : [ - "JX565563" - ], - "Wheat_dwarf_virus__SA43EcoFL23" : [ - "AM922261" - ], - "Human_coronavirus_OC43_OC43_human_USA_982_4_1998" : [ - "KF530069" - ], - "Vibriophage_phi_pp2" : [ - "JN849462" - ], - "Apple_stem_grooving_virus__HH" : [ - "JN701424" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1984_2001" : [ - "FJ639673" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10BJ_3" : [ - "JQ663542" - ], - "Enterobacteria_phage_S13" : [ - "S13CG" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9413_2013" : [ - "KJ643494" - ], - "Infectious_bursal_disease_virus_Gt" : [ - "DQ403249", - "DQ403248" - ], - "Hepatitis_B_virus__HBV_I_015_HIV_HBV" : [ - "KM524349" - ], - "Citrus_tristeza_virus__L192GR" : [ - "KC262793" - ], - "Maize_streak_virus__MSV_G_Ng_Eji_g252_2007" : [ - "EU628634" - ], - "Spring_viraemia_of_carp_virus_ATCC_VR_1390" : [ - "NC_002803" - ], - "Enterovirus_A71__MY821_3_SAR_97" : [ - "DQ341367" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__BF_Kampala_Okra7" : [ - "NC_013593" - ], - "Broad_bean_wilt_virus_2__P2" : [ - "KC625512", - "KC625498" - ], - "Hepatitis_B_virus__MMA_4" : [ - "AM421532" - ], - "Tomato_leaf_curl_New_Delhi_virus__India_Bangalore_OY135_2005___OY135" : [ - "GU112085", - "GU112084" - ], - "Hardenbergia_mosaic_virus__MD4_B" : [ - "KJ152155" - ], - "Porcine_circovirus_2__P710_1" : [ - "FJ905468" - ], - "Hepatitis_B_virus__clz1013" : [ - "KC774182" - ], - "Bluetongue_virus_6__5011" : [ - "JX272568" - ], - "Dengue_virus_2__DENV_2_US_BID_V854_2001" : [ - "EU482593" - ], - "Porcine_circovirus_2__06_06274" : [ - "JQ692110" - ], - "Bat_SARS_coronavirus_HKU3_13_HKU3_13" : [ - "GQ153548" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_44_2012" : [ - "KJ686240" - ], - "BK_polyomavirus__BKV_CAP_h2" : [ - "AY628226" - ], - "Citrus_yellow_mosaic_virus__ROL" : [ - "JN006806" - ], - "Wheat_dwarf_virus____Yunnan_Kunming___YNKM06_3" : [ - "EF536884" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG579A3_11" : [ - "KJ888048" - ], - "JC_polyomavirus__AT_2" : [ - "AB048569" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K73" : [ - "AJ717532" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V151_2002" : [ - "EU155223" - ], - "Hepatitis_B_virus__PNF5594" : [ - "KF779370" - ], - "Newcastle_disease_virus__Chicken_China_Shandong_02_2012" : [ - "KC542913" - ], - "Duck_hepatitis_A_virus_1_MY" : [ - "GU944671" - ], - "Watermelon_chlorotic_stunt_virus__IL3_67" : [ - "KM820259" - ], - "Hepatitis_B_virus_HB725" : [ - "JQ027328" - ], - "Hepatitis_delta_virus__D34" : [ - "KJ744242" - ], - "Hepatitis_B_virus__AIDS27" : [ - "JQ801482" - ], - "African_cassava_mosaic_virus__CF_CF108AB_07" : [ - "KJ887791" - ], - "Simian_hemorrhagic_fever_virus__krtg05" : [ - "JX473849" - ], - "Norovirus_Hu_GII_4_Kumamoto4_2007_JP_Hu_GII_4_Kumamoto4_2007_JP" : [ - "AB541280" - ], - "Hepatitis_B_virus__A20" : [ - "FJ904401" - ], - "Human_adenovirus_67_BGD_2005_B109__P67_H9_F67" : [ - "AP012302" - ], - "Human_adenovirus_58_human_ARG_AdCor_96_487_1996_58_P58H58F29" : [ - "HQ883276" - ], - "Hepatitis_B_virus__bxa2037" : [ - "KC774413" - ], - "Iotapapillomavirus_1" : [ - "NC_001605" - ], - "Mumps_virus_SIPAR_02" : [ - "AF314558" - ], - "Avian_encephalomyelitis_virus__L2Z" : [ - "AY275539" - ], - "Feline_coronavirus_UU9_UU9" : [ - "FJ938062" - ], - "Hepatitis_B_virus_574_3" : [ - "KR013806" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_D617" : [ - "JX503075" - ], - "Clostridium_phage_phiCD6356" : [ - "NC_015262" - ], - "Porcine_circovirus_2__DE222_13" : [ - "KP698398" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ02B37_2004" : [ - "JF909065" - ], - "West_Nile_virus__WNV_1_US_BID_V6371_2010" : [ - "KJ501442" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP3B" : [ - "JN013980" - ], - "Foot_and_mouth_disease_virus___type_SAT_3_UGA_1_13" : [ - "KJ820999" - ], - "Acidaminococcus_fermentans_DSM_20731" : [ - "NC_013740" - ], - "Hepatitis_A_virus__p16" : [ - "KP879217" - ], - "Hepatitis_B_virus__IND_1963_11" : [ - "KF214655" - ], - "Hepatitis_B_virus__8022" : [ - "KJ470892" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SD1_100" : [ - "GQ914997" - ], - "Wolbachia_endosymbiont_of_Drosophila_simulans_wHa" : [ - "NC_021089" - ], - "Human_immunodeficiency_virus_1__09YNLC216031sg" : [ - "KC898987" - ], - "Hepatitis_B_virus__C3_7" : [ - "GU815643" - ], - "Human_immunodeficiency_virus_1__14297_1" : [ - "DQ853437" - ], - "Hepatitis_B_virus__2286" : [ - "FJ386629" - ], - "Myxoma_virus_Aust_Wellington_1_91_Wellington" : [ - "JX565582" - ], - "Hepatitis_B_virus__C201" : [ - "EU939671" - ], - "Sweet_potato_leaf_curl_virus_associated_satellite__1764E34" : [ - "NC_025245" - ], - "Coxsackievirus_A16__Wuhan0157_HuB_CHN_2011" : [ - "JX986741" - ], - "Rabies_virus__R2012_88" : [ - "KF620488" - ], - "Rubella_virus__6423_ITALY_1997" : [ - "DQ085343" - ], - "Human_rhinovirus_A81__F07" : [ - "FJ445159" - ], - "Squash_leaf_curl_virus__JO2_211" : [ - "KM595189" - ], - "Tomato_leaf_curl_China_betasatellite__Y241" : [ - "AM260716" - ], - "Hepatitis_B_virus_1303_23" : [ - "KR014029" - ], - "Pyrococcus_NA2" : [ - "NC_015474" - ], - "Cotton_leaf_curl_Multan_betasatellite__Mm" : [ - "KF766950" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_36_9" : [ - "LN846608" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10ZQ_GD" : [ - "JX192639" - ], - "Human_papillomavirus_type_35__BF223" : [ - "HQ537723" - ], - "Maize_streak_virus__MSV_A_NG_Abu1_NG2_2006" : [ - "FJ882102" - ], - "Barley_yellow_dwarf_virus_GAV__04FX1" : [ - "EU402387" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4380_1" : [ - "KR105243" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V13_2005" : [ - "EU569723" - ], - "Yellow_fever_virus_Asibi" : [ - "KF769016" - ], - "Infectious_salmon_anemia_virus__Nevis_390_98" : [ - "AJ306487" - ], - "Mycobacterium_phage_Alsfro" : [ - "NC_023862" - ], - "Human_immunodeficiency_virus_1__ZM247F_flG6" : [ - "FJ496206" - ], - "Echinicola_vietnamensis_DSM_17526" : [ - "NC_019904" - ], - "Tobacco_vein_banding_mosaic_virus__TVBMV_SDFX1" : [ - "HQ396792" - ], - "Human_papillomavirus_type_6__105" : [ - "HG793913" - ], - "Porcine_epidemic_diarrhea_virus_USA_Illinois63_2013" : [ - "KJ645659" - ], - "Hepatitis_B_virus__F5M_C" : [ - "AB471855" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_13_DRC" : [ - "JX458845" - ], - "Foot_and_mouth_disease_virus___type_O__IND141_306__2013" : [ - "KJ825808" - ], - "Francisella_tularensis_FSC198" : [ - "NC_008245" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3799" : [ - "KM233080" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus_TMC" : [ - "AB873001" - ], - "Hepatitis_E_virus__JMNG_Oki02C" : [ - "AB236320" - ], - "Hepatitis_B_virus__29UC" : [ - "AB493841" - ], - "Senecavirus_A__SVV_001" : [ - "NC_011349" - ], - "Rhodothermus_phage_RM378" : [ - "NC_004735" - ], - "Tomato_leaf_curl_Sulawesi_virus__FI01No1_2" : [ - "FJ237614" - ], - "Duck_hepatitis_A_virus__12_01" : [ - "KC893553" - ], - "Hepatitis_B_virus__C26" : [ - "EU939542", - "FJ349229" - ], - "Turnip_mosaic_virus__ITA1A" : [ - "AB701720" - ], - "Tomato_yellow_leaf_curl_virus__LBa4" : [ - "EF185318" - ], - "Planococcus_citri_densovirus" : [ - "NC_004289" - ], - "Duck_hepatitis_B_virus_DHBV_XY_Henan_xinyang" : [ - "HQ214130" - ], - "Alternanthera_yellow_vein_virus__F21" : [ - "EF544601" - ], - "Columbid_circovirus__zj2" : [ - "DQ090944" - ], - "Getah_virus_M1" : [ - "EU015061" - ], - "Rotavirus_G9_US430" : [ - "AJ250540" - ], - "JC_polyomavirus__HA" : [ - "AB103420" - ], - "Hepatitis_E_virus__wbJTS1" : [ - "AB222183" - ], - "Hepatitis_E_virus__Ch_S_1" : [ - "EF077630" - ], - "Porcine_circovirus_2_HNyz_3b" : [ - "FJ870976" - ], - "Rice_tungro_bacilliform_virus_RTBV_Ic" : [ - "AF113832" - ], - "Hepatitis_B_virus__36Y18HCC" : [ - "AB014395" - ], - "Porcine_circovirus_2__DK538control" : [ - "EF565363" - ], - "Middle_East_respiratory_syndrome_coronavirus__Camel_UAE_D1209_2014" : [ - "KP719933" - ], - "Salmonella_phage_g341c" : [ - "NC_013059" - ], - "Rice_stripe_virus__KunM08" : [ - "JQ927423", - "JQ927417", - "JQ927429", - "JQ927435" - ], - "Turnip_mosaic_virus__NZ11" : [ - "AB989644" - ], - "Lactobacillus_phage_JCL1032" : [ - "NC_019456" - ], - "Pseudomonas_phage_YuA" : [ - "NC_010116" - ], - "Sweet_potato_latent_virus__SC5" : [ - "KP115613" - ], - "Tomato_severe_rugose_virus__BR_Vic02_09" : [ - "JX865616" - ], - "Tomato_leaf_curl_Joydebpur_betasatellite__India_Mograhat_Chilli_2007___India_Mograhat_Chilli_2007" : [ - "HM007112" - ], - "Viral_hemorrhagic_septicemia_virus__DK_4p37" : [ - "FJ460590" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GGC_10_863" : [ - "KF385403" - ], - "Foot_and_mouth_disease_virus___type_O__Israel_07_6382" : [ - "FJ175663" - ], - "Hepatitis_B_virus__H20" : [ - "FJ349222" - ], - "Bhendi_yellow_vein_India_virus__India_Dindigal_OY143_2006___OY143" : [ - "GU112022" - ], - "Stork_hepatitis_B_virus__STHBV_21" : [ - "AJ251937" - ], - "BK_polyomavirus_FIN_2" : [ - "AB269822" - ], - "West_Nile_virus__WNV_1_US_BID_V6382_2002" : [ - "KJ501270" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10LW5_1" : [ - "JQ663565" - ], - "West_Nile_virus__WNV_1_US_BID_V4354_2006" : [ - "HM756649" - ], - "Cotton_leaf_curl_Multan_virus____Delhi_04" : [ - "AY765256" - ], - "Porcine_circovirus_2__YJ" : [ - "KM360049" - ], - "Hepatitis_B_virus__P46" : [ - "GQ477482" - ], - "Feline_immunodeficiency_virus__CoLV" : [ - "EF455615" - ], - "Hepatitis_B_virus__patient14" : [ - "EU487257", - "AB300372" - ], - "African_cassava_mosaic_virus__CF_CF68AB_07" : [ - "KJ887779" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT59B30_2008" : [ - "JF909195" - ], - "Hepatitis_B_virus__blz2116" : [ - "KC774366" - ], - "Bluetongue_virus_4_SPA2005_05_Spain_2005" : [ - "AM778441" - ], - "Staphylococcus_phage_55" : [ - "NC_007060" - ], - "Porcine_circovirus_2_FJ" : [ - "AY556474" - ], - "Classical_swine_fever_virus_CSFV_2_3_wb_XXX0608_2005_Euskirchen_XXX0608" : [ - "GU233732" - ], - "Hendra_virus_HeV_Australia_Horse_2009_Cawarral" : [ - "JN255806" - ], - "Junin_mammarenavirus_P3766" : [ - "DQ854735" - ], - "Newcastle_disease_virus_XD_Shandong_08" : [ - "GQ994433" - ], - "Duck_hepatitis_A_virus_1" : [ - "EU395440" - ], - "Hepatitis_delta_virus_dTk5_dTk5" : [ - "AM779591" - ], - "Infectious_salmon_anemia_virus__485_9_97" : [ - "DQ673254" - ], - "Hepatitis_B_virus__B2_11" : [ - "GU815592" - ], - "Mycoplasma_hyorhinis_MCLD" : [ - "NC_017519" - ], - "Culex_flavivirus__H0901" : [ - "HQ678513" - ], - "Hepatitis_B_virus__4Mg" : [ - "JN811656" - ], - "Staphylococcus_phage_StauST398_4" : [ - "NC_023499" - ], - "Hepatitis_B_virus__dxn1036" : [ - "KC774479" - ], - "Tomato_leaf_curl_New_Delhi_virus__eggplant" : [ - "HQ264186", - "HQ264185" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4032_2008" : [ - "HM181969" - ], - "JC_polyomavirus__UZ_20" : [ - "AB127023" - ], - "Eragrostis_curvula_streak_virus__ECSV_ZA_Esc1_g382_2008" : [ - "NC_012664" - ], - "Hepatitis_B_virus__6_024_3" : [ - "EU871970" - ], - "Human_immunodeficiency_virus_1__Cu103" : [ - "AY586545" - ], - "Hepatitis_B_virus__KUHB81" : [ - "AY247030" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE4458_2009_A" : [ - "KJ627412" - ], - "Feline_immunodeficiency_virus__YM137" : [ - "EF455611" - ], - "Hepatitis_B_virus__WY_HZ_20" : [ - "JX429899" - ], - "Dengue_virus_3__DENV_3_PE_BID_V6170_2002" : [ - "KJ189260" - ], - "Hepatitis_B_virus__SDAC_031" : [ - "KF170740" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V130_1994" : [ - "EU155330" - ], - "Dengue_virus_2__DENV_2_IND_803347_1980" : [ - "JQ922553" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_I02_3682_2002" : [ - "KJ469592" - ], - "Sulfurospirillum_barnesii_SES_3" : [ - "NC_018002" - ], - "Variola_virus_Japan_1946__Yamada_MS_2_A__Tokyo" : [ - "DQ441429" - ], - "Maize_chlorotic_mottle_virus__1" : [ - "KP851970" - ], - "Salmonella_enterica_serovar_Thompson_RM6836" : [ - "NC_022525" - ], - "Hepatitis_B_virus__UK4" : [ - "AB219532" - ], - "Hepatitis_E_virus__IND_HEV_AVH3_2000" : [ - "JF443719" - ], - "Hantaanvirus_CGAa1011_CGAa1011" : [ - "EF990913", - "EF990927" - ], - "Human_immunodeficiency_virus_1__09MYPR37" : [ - "KC522031" - ], - "BK_polyomavirus__NAR_12" : [ - "AB298944" - ], - "Foot_and_mouth_disease_virus___type_O_OGBF15_derivative" : [ - "DQ478937" - ], - "Phomopsis_longicolla_hypovirus__ME711" : [ - "NC_024685" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_89E_024_01_1989" : [ - "KP258734" - ], - "Porcine_circovirus_2_Anhui02" : [ - "HQ113121" - ], - "South_African_cassava_mosaic_virus__MG_MG471A1_11" : [ - "KJ888018" - ], - "Chikungunya_virus_ArA_2657" : [ - "HM045818" - ], - "Hepatitis_B_virus__HK967" : [ - "DQ089764" - ], - "Simian_adenovirus_32" : [ - "FJ025911" - ], - "Porcine_circovirus_2_HB0702" : [ - "FJ608541" - ], - "Porcine_circovirus_2__A4241" : [ - "JF317577" - ], - "Euphorbia_mosaic_virus_PF_313_1993" : [ - "KJ647291", - "KJ647290" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d2om4" : [ - "HQ890537" - ], - "Human_bocavirus__TW265_07" : [ - "EU984243" - ], - "Soybean_mosaic_virus_G6H" : [ - "FJ640981" - ], - "Suakwa_aphid_borne_yellows_virus__SABYV_TW19" : [ - "NC_018571" - ], - "Cotton_leaf_curl_Gezira_betasatellite" : [ - "FJ868829" - ], - "Orthobunyavirus_BX_2010_Henan_CHN_Henan_01" : [ - "HQ642768", - "HQ642767", - "HQ642766" - ], - "Kemerovo_virus__EgAn_1169_61" : [ - "HM543483", - "HM543481", - "HM543482" - ], - "Vaccinia_virus_3737" : [ - "DQ377945" - ], - "Hepatitis_B_virus__WHWHD2" : [ - "JN257192" - ], - "Tomato_common_mosaic_virus__BR_Coi13_07" : [ - "KC706596" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_11" : [ - "EU384616" - ], - "Hepatitis_B_virus__IBL1274" : [ - "HM363603" - ], - "Tomato_leaf_curl_New_Delhi_virus__Pumpkin_New_Delhi___2" : [ - "AM286435", - "AM286434" - ], - "Enterovirus_H" : [ - "NC_003988" - ], - "Tomato_leaf_curl_Taiwan_virus__FD2_2" : [ - "DQ866122" - ], - "Human_respiratory_syncytial_virus__06_000827" : [ - "JX015488" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2213_2003" : [ - "FJ639780" - ], - "Chicken_picornavirus_1__55C" : [ - "NC_024765" - ], - "Beet_black_scorch_virus_satellite_RNA__Ir_Kh1sat" : [ - "FN543474" - ], - "Enterobacteria_phage_T1" : [ - "NC_005833" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Sonipat_EL12_2006___EL12" : [ - "GU111962" - ], - "West_Nile_virus__WNV_1_US_BID_V7819_2011" : [ - "KJ501535" - ], - "Hepatitis_C_virus__1013q" : [ - "EU362899" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4424_1" : [ - "KR105252" - ], - "Hepatitis_B_virus__H0035_08" : [ - "FJ882618" - ], - "Respiratory_syncytial_virus__RSV_Memphis_37" : [ - "KM360090" - ], - "Enterobacteria_phage_P1__mod749__IS5_c1_100_mutant" : [ - "NC_005856" - ], - "Flavobacterium_phage_11b" : [ - "NC_006356" - ], - "Phlox_virus_S__BR" : [ - "NC_009383" - ], - "Dengue_virus_1__DENV_1_VN_BID_V966_2007" : [ - "EU482511" - ], - "Tomato_yellow_leaf_curl_virus__SDAc" : [ - "KC852150" - ], - "Tomato_leaf_curl_New_Delhi_virus__Multan_Luffa" : [ - "AM292302" - ], - "Porcine_circovirus_2__HUN_2" : [ - "HM776442" - ], - "Dengue_virus_3__603_BR_PE_06" : [ - "JX669496" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LBJ_030423" : [ - "JF828982" - ], - "Yellow_fever_virus_Uganda_2010" : [ - "JN620362" - ], - "Japanese_encephalitis_virus_Muar" : [ - "HM596272" - ], - "Dengue_virus_1__DENV_1_VN_BID_V983_2006" : [ - "EU482527" - ], - "Human_papillomavirus_type_6__47" : [ - "HG793855" - ], - "Rabies_virus_Lao4" : [ - "AB981664" - ], - "Porcine_circovirus_2_SD_3" : [ - "EU366323" - ], - "Turnip_mosaic_virus__ITA6" : [ - "AB701724" - ], - "Chicken_anemia_virus__19" : [ - "KJ728828" - ], - "Tobacco_rattle_virus__Rostock" : [ - "AJ272198" - ], - "Hepatitis_B_virus__MLT0854" : [ - "KF779295" - ], - "Hepatitis_B_virus__CONTROL5" : [ - "JQ801498" - ], - "Spiroplasma_apis_B31" : [ - "NC_022998" - ], - "Dengue_virus_3__DENV_3_LK_BID_V2409_1997" : [ - "GQ252674" - ], - "Infectious_bronchitis_virus__VicS_v" : [ - "KF460437" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1989_3_4" : [ - "Z75885" - ], - "Simian_adenovirus_A1312_A1312" : [ - "JN880454" - ], - "Western_equine_encephalitis_virus__71V1658" : [ - "GQ287645" - ], - "Hepatitis_B_virus__I79" : [ - "FJ562249" - ], - "Chaetoceros_tenuissimus_RNA_virus_type_II__SS10_16V" : [ - "NC_025889" - ], - "Enterobacteria_phage_phiX174__CMMhiC" : [ - "AF299307" - ], - "Dengue_virus_2__DENV_2_US_BID_V1048_1999" : [ - "EU482557" - ], - "Porcine_circovirus_2_ZhuJi2003" : [ - "AY579893" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0083" : [ - "KP759752" - ], - "Newcastle_disease_virus_HB92_V4" : [ - "AY225110" - ], - "Borna_disease_virus__squirrel_brain" : [ - "LN713680" - ], - "Burkholderia_CCGE1002" : [ - "NC_014118", - "NC_014119", - "NC_014120", - "NC_014117" - ], - "Hepatitis_B_virus__patient_7T" : [ - "EU522071" - ], - "Human_papillomavirus_type_6__53" : [ - "HG793861" - ], - "Newcastle_disease_virus__JS_07_22_Pi" : [ - "FJ766526" - ], - "Human_immunodeficiency_virus_1__03ZAPS055MB1" : [ - "DQ396373" - ], - "Kadipiro_virus__JKT_7075" : [ - "NC_004210" - ], - "Mumps_virus_Urabe_1004_10_2" : [ - "FJ375177" - ], - "Dengue_virus_1__MKS_0109" : [ - "KC762650" - ], - "Dengue_virus_2__DENV_2_KH_BID_V4272_2008" : [ - "JF730046" - ], - "Nilaparvata_lugens_reovirus_Izumo" : [ - "NC_003655", - "NC_003659", - "NC_003658", - "NC_003654", - "NC_003660", - "NC_003657", - "NC_003653", - "NC_003656", - "NC_003661" - ], - "Hepatitis_B_virus__V16" : [ - "HM363571" - ], - "Streptococcus_oralis_Uo5" : [ - "NC_015291" - ], - "Venezuelan_equine_encephalitis_virus_Mena_II" : [ - "AF075252" - ], - "Avian_adeno_associated_virus_ATCC_VR_865_ATCC_VR_865" : [ - "NC_004828" - ], - "Enterovirus_J_1631_Simian_enterovirus_SV6" : [ - "NC_010415" - ], - "Thermotoga_neapolitana_DSM_4359" : [ - "NC_011978" - ], - "Brucella_ceti_TE10759_12" : [ - "NC_022906", - "NC_022905" - ], - "Hepatitis_B_virus__919081" : [ - "JN040818" - ], - "Peanut_stunt_virus_satellite_RNA_P" : [ - "EF535259" - ], - "Hepatitis_B_virus_1385_2" : [ - "KR013860" - ], - "Vaccinia_virus_WAU86_88_1__WAU86_88_1" : [ - "KF866253" - ], - "Enterobacteria_phage_phiX174__3A90" : [ - "EF380010" - ], - "Hepatitis_B_virus__WY_HZ_24" : [ - "JX429900" - ], - "Porcine_circovirus_2__Huanan_6" : [ - "EF421971" - ], - "Grapevine_virus_A__KWVMo4_1" : [ - "DQ855083" - ], - "Mycoplasma_gallisepticum_NC08_2008_031_4_3P" : [ - "NC_018413" - ], - "Beak_and_feather_disease_virus__2NC44B" : [ - "JX049211" - ], - "Tomato_yellow_leaf_curl_virus__Sonora" : [ - "EF210555" - ], - "Dengue_virus_4__DENV_4_US_BID_V2434_1995" : [ - "FJ850057" - ], - "Hepatitis_C_virus_subtype_1a__DN13" : [ - "EU781808" - ], - "Chikungunya_virus_BRAZZA_MRS1" : [ - "KP003813" - ], - "Maize_streak_virus__MSV_A_ZA_Let2_O10_1989" : [ - "FJ882121" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4079_2008" : [ - "JF937616" - ], - "Hepatitis_B_virus_genotype_F_VNZ8375_1" : [ - "AB036917" - ], - "Hepatitis_B_virus__FH1_YS" : [ - "AB078031" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3540_1997" : [ - "GU056029" - ], - "Enterobacteria_phage_phiX174__SCS1" : [ - "AF176030" - ], - "Influenza_A_virus__A_Hong_Kong_1073_99_H9N2___A_Hong_Kong_1073_99" : [ - "NC_004912", - "NC_004906", - "NC_004909", - "NC_004905", - "NC_004908", - "NC_004910", - "NC_004911" - ], - "Prochlorococcus_marinus_pastoris_CCMP1986" : [ - "NC_005072" - ], - "Human_poliovirus_1__HAI01013all" : [ - "AF416342" - ], - "Hepatitis_B_virus__S185" : [ - "FJ386658" - ], - "Papaya_leaf_crumple_virus" : [ - "HE580236" - ], - "Peanut_stunt_virus__Mi" : [ - "AY775057" - ], - "Simian_virus_40__SV40_PV_236" : [ - "EF579663" - ], - "Watermelon_chlorotic_stunt_virus__IL1_12" : [ - "KM820240" - ], - "Dengue_virus_2__DENV_2_US_BID_V1396_1997" : [ - "EU569714" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2086_2005" : [ - "FJ639727" - ], - "Hepatitis_B_virus__CONTROL28" : [ - "JQ801520" - ], - "Hepatitis_B_virus_419_1" : [ - "KR013779" - ], - "Trichomonas_vaginalis_virus_2__C76" : [ - "JF436870" - ], - "Zaliv_Terpenia_virus_LEIV_56C" : [ - "KF892043", - "KF892045", - "KF892044" - ], - "Hepatitis_B_virus__NB045C_m46" : [ - "KJ173309" - ], - "Armigeres_subalbatus_virus_SaX06_AK20_SaX06_AK20" : [ - "NC_014609" - ], - "Hepatitis_B_virus_Ehime_TY_871225" : [ - "AB116266" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V352_2002" : [ - "EU155306" - ], - "Hepatitis_B_virus__WY_NJ_73" : [ - "JX026886" - ], - "Porcine_circovirus_2_JF" : [ - "HM038022" - ], - "Porcine_epidemic_diarrhea_virus_Tottori2_JPN_2014" : [ - "LC022792" - ], - "Human_immunodeficiency_virus_1__97CMABB447" : [ - "AY169813" - ], - "Raven_circovirus__4_1131" : [ - "NC_008375" - ], - "Maize_streak_virus__MSV_A_CF_Bos4_Car4_2008" : [ - "HQ693311" - ], - "European_mountain_ash_ringspot_associated_virus__E51609" : [ - "HG799730" - ], - "Rattail_cactus_necrosis_associated_virus" : [ - "NC_016442" - ], - "Mumps_virus_Du_CRO05" : [ - "EU370207" - ], - "Enterovirus_A71__MY104_9_SAR_97" : [ - "DQ341368" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1043" : [ - "KR534527" - ], - "Hepatitis_B_virus__2422" : [ - "FJ386649" - ], - "Human_immunodeficiency_virus_1__04ZASK161B1" : [ - "DQ011170" - ], - "Cotton_leaf_curl_Multan_betasatellite__SY" : [ - "KF766956" - ], - "Dengue_virus_1__ww2014" : [ - "KP686070" - ], - "Hepatitis_B_virus__621_14_2004" : [ - "DQ463798" - ], - "Infectious_bursal_disease_virus_HLJ_0504" : [ - "GQ451331", - "GQ451330" - ], - "Torque_teno_sus_virus_1b__1p" : [ - "NC_027059" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K115" : [ - "AJ704963", - "AJ717516" - ], - "Human_mastadenovirus_B_human_USA_CL_46_1988_3_P3H3F3" : [ - "KF268128" - ], - "Hepatitis_B_virus__G376_A6" : [ - "AF384372" - ], - "Duck_circovirus__FC33_2012" : [ - "KC460525" - ], - "Acetohalobium_arabaticum_DSM_5501" : [ - "NC_014378" - ], - "Bacillus_thuringiensis_HD_771" : [ - "NC_018490", - "NC_018486", - "NC_018487", - "NC_018500", - "NC_018501", - "NC_018503", - "NC_018502", - "NC_018489", - "NC_018488" - ], - "Wheat_yellow_mosaic_virus__Xiaqiao" : [ - "FJ361764", - "FJ361767" - ], - "Human_immunodeficiency_virus_1__07MHI10" : [ - "JQ316136" - ], - "Bifidobacterium_animalis_lactis_BLC1" : [ - "NC_017216" - ], - "Rice_stripe_virus__YDLi25" : [ - "KP083240" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_173_2001" : [ - "DQ404175" - ], - "Pelargonium_line_pattern_virus__PV_0193" : [ - "NC_007017", - "EU835946" - ], - "Human_bocavirus__2011GZ9342" : [ - "KJ684068" - ], - "Buzura_suppressaria_nucleopolyhedrovirus__Hubei" : [ - "NC_023442" - ], - "Aeromonas_phage_PX29" : [ - "NC_023688" - ], - "Crocuta_crocuta_papillomavirus_1" : [ - "NC_018575" - ], - "Citrus_tristeza_virus__Qaha" : [ - "AY340974" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1_5P20_2010_c1_5P20" : [ - "KF514388" - ], - "Hepatitis_B_virus__021_TI_Ngu" : [ - "KF873531" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4020_2008" : [ - "GU131782" - ], - "Saffold_virus_Nijmegen2007" : [ - "FM207487" - ], - "Human_papillomavirus_type_11__LP14" : [ - "HE611270" - ], - "Hepatitis_delta_virus_dFr2072" : [ - "AM183330" - ], - "Classical_swine_fever_virus_strain_Eystrup" : [ - "NC_002657" - ], - "Chikungunya_virus__SGEHICHS422308" : [ - "FJ445432" - ], - "Allamanda_leaf_mottle_distortion_virus__Al_K1" : [ - "NC_024009" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_PER_70U1134_1970_ID" : [ - "KC344486" - ], - "Corynebacterium_diphtheriae_31A" : [ - "NC_016799" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_CFI0241_2010" : [ - "KJ672590" - ], - "Hepatitis_B_virus__GU1062" : [ - "GQ161819" - ], - "Hepatitis_B_virus__111002952" : [ - "JN792911" - ], - "West_Nile_virus__WNV_1_US_BID_V6470_2002" : [ - "KJ501474" - ], - "Simian_immunodeficiency_virus__87082" : [ - "AY600249" - ], - "Hepatitis_B_virus__CONTROL25" : [ - "JQ801517" - ], - "Chikungunya_virus_DakAr_B_16878" : [ - "HM045784" - ], - "Hepatitis_E_virus__HE_JF5" : [ - "AB220973" - ], - "Dengue_virus_2__DENV_2_PR_BID_V586_2006" : [ - "KF955359" - ], - "Cleome_leaf_crumple_virus__BR_AL_Par1_09" : [ - "JN103427" - ], - "Louping_ill_virus__Penrith" : [ - "KF056331" - ], - "Human_immunodeficiency_virus_1__04ZASK135B1" : [ - "DQ011166" - ], - "Human_immunodeficiency_virus_1__1304_d31" : [ - "AY308762" - ], - "Grapevine_Pinot_gris_virus__SK30" : [ - "KF134123" - ], - "Dengue_virus_2__DENV_2_VN_BID_V775_2007" : [ - "EU482701" - ], - "Bacillus_phage_Bobb" : [ - "NC_024792" - ], - "Human_papillomavirus_type_6__CAC96" : [ - "FR751335" - ], - "Norovirus_Hu_GII_4_Saga1_2007_JP_Hu_GII_4_Saga1_2007_JP" : [ - "AB541330" - ], - "Parvo_like_hybrid_virus_UC4_UC4" : [ - "KF214645" - ], - "Burkholderia_YI23" : [ - "NC_016589", - "NC_016590", - "NC_016625", - "NC_016591", - "NC_016592", - "NC_016626" - ], - "Rice_stripe_virus__JD_JN" : [ - "FJ602681", - "FJ602694" - ], - "Foot_and_mouth_disease_virus___type_A_Aarg2001_aargp55_iso99" : [ - "AY593784" - ], - "JC_polyomavirus__FE_3" : [ - "AB103419" - ], - "Maize_streak_virus__MSV_A_ZA_Emp4_Ta23_2008" : [ - "HQ693410" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_246_2011" : [ - "KJ686279" - ], - "Dengue_virus_1_D1_SG_05K4441DK1_2005" : [ - "EU081266" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d4ym4" : [ - "JF292902" - ], - "Yersinia_phage_Yep_phi" : [ - "NC_023715" - ], - "Cucumber_green_mottle_mosaic_virus__GX" : [ - "GQ277655" - ], - "Cotton_leaf_curl_Multan_betasatellite__KP01" : [ - "JX286659" - ], - "Canine_parvovirus_2a__UY370a" : [ - "KM457141" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2865_2006" : [ - "FJ898402" - ], - "Dengue_virus_1_BR_97_409" : [ - "AF311957" - ], - "Dengue_virus_1__DENV_1_NI_BID_V664_2004" : [ - "GQ199873" - ], - "Sunflower_mild_mosaic_virus__Entre_Rios" : [ - "NC_021065" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_247_2011" : [ - "KJ686172" - ], - "Tomato_yellow_leaf_curl_virus_SDJN" : [ - "JN990927" - ], - "Enterovirus_C__V2_TOL_cl2" : [ - "HQ738289" - ], - "Simian_immunodeficiency_virus_SIVmac239_96072" : [ - "AY611491" - ], - "Watermelon_chlorotic_stunt_virus__JO2_516" : [ - "KM820216" - ], - "WU_Polyomavirus__O140" : [ - "GU296361" - ], - "Hepatitis_B_virus__HBV224" : [ - "JN688720" - ], - "Hepatitis_B_virus__B16" : [ - "EU939581" - ], - "Porcine_circovirus_2__K398" : [ - "EU450589" - ], - "BK_polyomavirus__MT_clone_47" : [ - "AB485702" - ], - "Lactococcus_phage_SK1833" : [ - "KF676640" - ], - "Hendra_virus_HeV_Australia_Horse_2007_CliftonBeach" : [ - "HM044321" - ], - "Helicobacter_pylori_83" : [ - "NC_017375" - ], - "Hepatitis_B_virus__Occult_HK4869" : [ - "KJ410520" - ], - "Human_papillomavirus_type_63" : [ - "NC_001458" - ], - "Salmonella_bongori_NCTC_12419" : [ - "NC_015761" - ], - "Canine_parvovirus_2c__UY47" : [ - "KM457104" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2890_2006" : [ - "GQ199851" - ], - "Eggplant_mottled_crinkle_virus__Israeli" : [ - "NC_023339" - ], - "Human_papillomavirus_type_11__LP262f" : [ - "HE962365" - ], - "JC_polyomavirus__Aic_1" : [ - "AB081005" - ], - "JC_polyomavirus__JCV183FLC_12" : [ - "JF425499" - ], - "Human_metapneumovirus_HMPV_AUS_145570377_2003_A" : [ - "KC403979" - ], - "Azospirillum_brasilense_Sp245" : [ - "NC_016619", - "NC_016617", - "NC_016595", - "NC_016596", - "NC_016618", - "NC_016594", - "NC_016597" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2200_2001" : [ - "FJ882577" - ], - "Torque_teno_sus_virus_1b__TTV2Hb1" : [ - "HM633225" - ], - "Hepatitis_B_virus__patient_821" : [ - "AF418679", - "AF418680", - "AF418681" - ], - "Human_papillomavirus_116_HPV116" : [ - "NC_013035" - ], - "Hepatitis_B_virus__S2_4" : [ - "EU916210" - ], - "Plum_pox_virus_Rec_K28" : [ - "KF472134" - ], - "Coxsackievirus_B1_B1_Groningen_2011" : [ - "LN854562" - ], - "Bean_golden_mosaic_virus__BR_Cri5_12" : [ - "KJ939845" - ], - "Tomato_yellow_leaf_curl_Mali_virus" : [ - "AY502934" - ], - "Human_immunodeficiency_virus_1__WITO_flC1" : [ - "FJ496170" - ], - "Mycobacterium_tuberculosis_UT205" : [ - "NC_016934" - ], - "Simian_adenovirus_43" : [ - "FJ025900" - ], - "Hepatitis_B_virus__I202" : [ - "FJ562311" - ], - "Norovirus_Hu_GII_4_NIHIC17_9_2013_USA_Hu_GII_4_NIHIC17_9_2013_USA" : [ - "KF712498" - ], - "Porcine_circovirus_2__DK421case" : [ - "EF565347" - ], - "Amycolatopsis_mediterranei_RB" : [ - "NC_022116" - ], - "South_African_cassava_mosaic_virus__MG_MG617A7_11" : [ - "KJ887738" - ], - "Duck_hepatitis_A_virus_1_HDHV1_HN" : [ - "FJ157177" - ], - "Enterovirus_A_S0102b_EV71_2013_CHN" : [ - "KM402021" - ], - "Culex_flavivirus_Tokyo" : [ - "NC_008604" - ], - "Human_papillomavirus_type_18__CU13" : [ - "GQ180789" - ], - "Duck_circovirus__D11_JW_009" : [ - "KC851806" - ], - "Human_respiratory_syncytial_virus__RSV_I_14" : [ - "GU591771" - ], - "Cellulophaga_phage_phi4_1_phi4_1" : [ - "NC_021788" - ], - "Cucumber_green_mottle_mosaic_virus__HaiN12" : [ - "KC852074" - ], - "BK_polyomavirus__ANY_38" : [ - "AB464960" - ], - "Tomato_infectious_chlorosis_virus__TICV_SP5652_8" : [ - "JQ973707" - ], - "Human_bocavirus__TW2717_06" : [ - "EU984233" - ], - "Dengue_virus_2__DENV_2_US_BID_V1412_2007" : [ - "EU596490" - ], - "Porcine_circovirus_2_ShDNY_PCV2" : [ - "FJ948167" - ], - "SFTS_virus_HNXY_202_HNXY_202" : [ - "KC292351", - "KC292325", - "KC292298" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09BJ" : [ - "JF268676" - ], - "Rabbit_coronavirus_HKU14_HKU14_10" : [ - "JN874562" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2223_2004" : [ - "FJ639790" - ], - "Hepatitis_B_virus_258_1b" : [ - "KR013761" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Nzeerekore_1622" : [ - "KR534567" - ], - "Dengue_virus_3__DENV_3_GY_BID_V2980_2002" : [ - "FJ898464" - ], - "Hepatitis_B_virus__D3_9" : [ - "GU815678" - ], - "Squash_leaf_curl_virus__JO1_112" : [ - "KM595156" - ], - "Hepatitis_B_virus__1958_19" : [ - "KR013874" - ], - "Hepatitis_B_virus_593_3" : [ - "KR013990" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7675_2011" : [ - "KF973462" - ], - "Hepatitis_B_virus__4070v2" : [ - "KF922425" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V185_1991" : [ - "EU155340" - ], - "BK_polyomavirus__NAR_17" : [ - "AB365135" - ], - "Chinese_wheat_mosaic_virus_Japanese_Northern____JN" : [ - "AB299272", - "AB299271" - ], - "Human_rhinovirus_1B" : [ - "HRVACG" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3394_2003" : [ - "GU131951" - ], - "Wheat_dwarf_virus__UK193WDV" : [ - "HF968633", - "HF968636", - "HF968634", - "HF968635" - ], - "Hepatitis_B_virus__A5_50061" : [ - "FJ692606" - ], - "West_Nile_virus__WNV_1_US_BID_V6427_2003" : [ - "KJ501293" - ], - "Tobacco_mosaic_virus__Yongren_2" : [ - "HE818458" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Jamalpur_2013___Bangladesh_Jamalpur_2013" : [ - "AB971861", - "AB971860" - ], - "Mycobacterium_phage_ZoeJ" : [ - "NC_024147" - ], - "Torque_teno_virus__TTV_HD16b__gbCsCt43_1" : [ - "FR751478" - ], - "Hepatitis_B_virus_281_01" : [ - "EU594408" - ], - "Apium_virus_Y__Ce" : [ - "NC_014905" - ], - "Verbesina_encelioides_leaf_curl_alphasatellite" : [ - "NC_015631" - ], - "Porcine_circovirus_2__DK544control" : [ - "EF565364" - ], - "JC_polyomavirus__331A" : [ - "AY382187" - ], - "Human_bocavirus__HK11" : [ - "EF450727" - ], - "Bean_common_mosaic_virus__CD023" : [ - "KJ807802" - ], - "Cronobacter_phage_vB_CsaM_GAP161" : [ - "NC_019398" - ], - "Dengue_virus_1_HawM2516" : [ - "DQ672560" - ], - "Rhododendron_virus_A__GSMNP_Sugld_1" : [ - "NC_014481" - ], - "Cucumber_green_mottle_mosaic_virus__Ah" : [ - "KF155232" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3464_2006" : [ - "GU131859" - ], - "Hepatitis_B_virus__HBV37" : [ - "KC875326" - ], - "Hepatitis_delta_virus__D2_A" : [ - "KJ744215" - ], - "Hepatitis_B_virus__W32" : [ - "EU787441" - ], - "Duck_circovirus__DU094" : [ - "HM162348" - ], - "Rice_stripe_virus__SA_JN" : [ - "FJ602685", - "FJ602698" - ], - "Hepatitis_B_virus__HBV_Na101" : [ - "AB073849" - ], - "Human_papillomavirus_type_16__Qv04917" : [ - "HQ644265" - ], - "JC_polyomavirus__FA_1a" : [ - "AB103402" - ], - "Cucumber_green_mottle_mosaic_virus__ABCA13_01" : [ - "KP772568" - ], - "Hepatitis_B_virus__S734" : [ - "FJ386675" - ], - "Human_immunodeficiency_virus_1__C18" : [ - "AF042106", - "AF042102" - ], - "Halovivax_ruber_XH_70" : [ - "NC_019964" - ], - "Bluetongue_virus_2__ITL2002_07" : [ - "AJ586671" - ], - "Hepatitis_B_virus__AnkaraLCE1" : [ - "AB674417" - ], - "African_horse_sickness_virus__HS_04_08" : [ - "KP009679", - "KP009677", - "KP009675", - "KP009672", - "KP009674", - "KP009671", - "KP009676", - "KP009680", - "KP009673", - "KP009678" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7651_2012" : [ - "KF973456" - ], - "Human_adenovirus_21a__LRTI_6" : [ - "KF577598" - ], - "African_cassava_mosaic_virus__CF_CF30BE_07" : [ - "KJ887593" - ], - "West_Nile_virus__WNV_1_US_BID_V6386_2003" : [ - "KJ501446" - ], - "Infectious_salmon_anemia_virus__Gullesfjord_94" : [ - "AF262384" - ], - "Candidatus_Sulcia_muelleri_CARI" : [ - "NC_014499" - ], - "Rabies_virus__J" : [ - "GU345747" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Dharmapuri_OY171_2006___OY171" : [ - "GU111989" - ], - "Hepatitis_B_virus__clz1035" : [ - "KC774193" - ], - "Hepatitis_B_virus__IBL314" : [ - "HM363582" - ], - "Human_bocavirus_BJ3722" : [ - "DQ988934" - ], - "Dyadobacter_fermentans_DSM_18053" : [ - "NC_013037" - ], - "Hepatitis_B_virus_1346_24" : [ - "KR014037" - ], - "Dengue_virus_2__DC403Y11" : [ - "KM279523" - ], - "Porcine_circovirus_2__NL_Control_5" : [ - "AY484411" - ], - "Hepatitis_B_virus__Ag23" : [ - "KJ843184" - ], - "Southern_rice_black_streaked_dwarf_virus__Quang_Tri2" : [ - "KM454851" - ], - "Hepatitis_B_virus__dxn1030" : [ - "KC774476" - ], - "Hepatitis_delta_virus_dFr2239b_dFr2239b" : [ - "AM779578" - ], - "Hepatitis_B_virus_P11" : [ - "KJ586804" - ], - "Hepatitis_B_virus__J221" : [ - "GQ377624" - ], - "Hepatitis_B_virus_28004" : [ - "EU414142" - ], - "Johnsongrass_mosaic_virus" : [ - "NC_003606" - ], - "Rift_Valley_fever_virus_74HB59" : [ - "DQ375415", - "DQ380163", - "DQ380212" - ], - "Enterovirus_A90__CAM1956" : [ - "AB192877" - ], - "Human_poliovirus_3_NIE1018484" : [ - "KJ170638" - ], - "Dengue_virus_1__DENV_1_VN_BID_V945_2007" : [ - "EU482490" - ], - "Porcine_epidemic_diarrhea_virus_USA_Missouri93_2013" : [ - "KJ645685" - ], - "Cydia_pomonella_granulovirus__CpGV_M" : [ - "KM217575" - ], - "Maize_streak_virus__MSV_A_ZA_Por2_Ta13_2008" : [ - "HQ693432" - ], - "Hepatitis_B_virus__1B3624" : [ - "GQ922002" - ], - "Hepatitis_delta_virus__1" : [ - "HQ005370" - ], - "Hepatitis_B_virus__patient22" : [ - "EU882005", - "EU882006" - ], - "Halopiger_xanaduensis_SH_6" : [ - "NC_015666", - "NC_015658", - "NC_015667", - "NC_015659" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1654_2007" : [ - "FJ410288" - ], - "Vaccinia_virus_MVA_572__ECACC_V94012707" : [ - "DQ983237" - ], - "Avian_orthoreovirus_S1133" : [ - "KF741758", - "EF122838", - "KF741759", - "KF741760", - "KF741756", - "KF741763", - "KF741764", - "KF741757", - "KF741765", - "KF741761" - ], - "Tobacco_mosaic_virus__Ancestor" : [ - "KF972427" - ], - "Escherichia_phage_2_JES_2013" : [ - "NC_022323" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GX1003" : [ - "JX912249" - ], - "Hepatitis_B_virus__SLC111" : [ - "KJ598758" - ], - "Haloquadratum_walsbyi_C23" : [ - "NC_017460", - "NC_017459", - "NC_017457", - "NC_017458" - ], - "Jembrana_disease_virus_Tabanan_87" : [ - "JDVCG" - ], - "Pelotomaculum_thermopropionicum_SI" : [ - "NC_009454" - ], - "Torque_teno_virus__TTV_HD16i__gbDhDi43_4" : [ - "FR751484" - ], - "Hepatitis_C_virus_subtype_2a__NDM228" : [ - "AF169002" - ], - "African_cassava_mosaic_virus__KE_mtw_CMD_MI75_12" : [ - "HG530120" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C14" : [ - "KJ019144" - ], - "Hepatitis_B_virus__P003_C_009" : [ - "KJ173365" - ], - "Porcine_adenovirus_3_IAF" : [ - "AJ237815" - ], - "Hepatitis_B_virus__WHHMM1" : [ - "JN257167" - ], - "Dengue_virus_4__DENV_4_VE_BID_V1157_2007" : [ - "EU854299" - ], - "Mycobacterium_yongonense_05_1390" : [ - "NC_020275", - "NC_020276", - "NC_021715" - ], - "Vibrio_phage_ICP3" : [ - "NC_015159" - ], - "Usutu_virus_V72" : [ - "KJ438761" - ], - "Sweet_potato_chlorotic_fleck_virus__UN210" : [ - "KP115607" - ], - "Mycobacterium_phage_Wildcat" : [ - "NC_008206" - ], - "Dengue_virus_1_HawO3758" : [ - "DQ672563" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_47_93" : [ - "DQ989315" - ], - "Freesia_mosaic_virus" : [ - "NC_014064" - ], - "Rabies_virus_CJS0848D" : [ - "JQ970483" - ], - "Watermelon_mosaic_virus_WMV_Fr" : [ - "NC_006262" - ], - "Dengue_virus_2__DENV_2_US_BID_V1046_2004" : [ - "EU529693" - ], - "West_Nile_virus__CO7_09" : [ - "JF957184" - ], - "Hepatitis_B_virus_644_00" : [ - "EU594386" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2071_2000" : [ - "FJ639719" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V227_2005" : [ - "EU482853" - ], - "Hepatitis_B_virus__MAL36" : [ - "AM180623" - ], - "West_Nile_virus__WNV_1_US_BID_V4900_2000" : [ - "HQ671708" - ], - "Hepatitis_B_virus__490_96_1" : [ - "EU872015" - ], - "Dengue_virus_3__98TW503" : [ - "DQ675531" - ], - "Ebola_virus__Ebola_virus_H_sapiens_tc_COD_1995_Kikwit_807223" : [ - "KR063672" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG10A48_06" : [ - "KJ887830" - ], - "Norovirus_Hu_GII_4_Fukui4_2007_JP_Hu_GII_4_Fukui4_2007_JP" : [ - "AB541247" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V369_2006" : [ - "EU155257" - ], - "Porcine_stool_associated_circular_virus_7__EP2_B" : [ - "KJ577813" - ], - "Mammalian_orthoreovirus_1_Lang__Lang" : [ - "X61586" - ], - "Swine_hepatitis_E_virus_swSTHY42_VAS49_2003_CA" : [ - "KJ507956" - ], - "Hepatitis_B_virus__cxn1040" : [ - "KC774341" - ], - "Human_immunodeficiency_virus_1__DJ259" : [ - "AB485643", - "AB485644" - ], - "Grapevine_fanleaf_virus_satellite_RNA" : [ - "NC_003203" - ], - "Hepatitis_B_virus_CH2_OHf" : [ - "AB090269" - ], - "SARS_coronavirus_PUMC01__PUMC01" : [ - "AY350750" - ], - "Hepatitis_B_virus__I118" : [ - "FJ562266" - ], - "Tobacco_curly_shoot_betasatellite__Y35" : [ - "NC_004546" - ], - "Dengue_virus_3_D3_SG_05K2899DK1_2005" : [ - "EU081196" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B81_2008" : [ - "GQ396656" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4738_2009" : [ - "HQ166030" - ], - "Porcine_circovirus_1__PCV1_Hun" : [ - "KJ408799" - ], - "Dengue_virus_2__DENV2_PR159" : [ - "JX966380" - ], - "Human_immunodeficiency_virus_1__X254" : [ - "AF423755" - ], - "Echovirus_E4_Pesacek" : [ - "AY302557" - ], - "Hepatitis_B_virus_1134_26a" : [ - "KR014015" - ], - "Hepatitis_B_virus__Ran100" : [ - "EF103280" - ], - "Rubus_canadensis_virus_1__BM_01" : [ - "NC_019025" - ], - "Madariaga_virus_MADV_Mesocricetus_Peru_70V1104_1970" : [ - "KJ469626" - ], - "Burkholderia_phage_BcepF1" : [ - "NC_009015" - ], - "Hepatitis_C_virus_subtype_1b__99_10" : [ - "EU781831" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_X_NIC_2177B_1968_IE" : [ - "KC344441" - ], - "Geobacter_uraniireducens_Rf4" : [ - "NC_009483" - ], - "Hepatitis_B_virus__C_Tonga_To347_2006" : [ - "HQ700569" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3715_2007" : [ - "GU131974" - ], - "Sesbania_mosaic_virus" : [ - "NC_002568" - ], - "Cassava_brown_streak_virus__KOR6" : [ - "NC_012698" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V323_2001" : [ - "EU155289" - ], - "Hepatitis_B_virus__SSC19" : [ - "KJ598691" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4348_1" : [ - "KR105241" - ], - "Synechococcus_phage_ACG_2014a__Syn7803US1" : [ - "KJ019088" - ], - "Bovine_parainfluenza_virus_3_910N" : [ - "PAFP" - ], - "Hepatitis_B_virus__C_F528C_2005" : [ - "HQ700499" - ], - "Human_papillomavirus_type_6__LPX29" : [ - "HE962031" - ], - "Echovirus_E11__FIN_0666" : [ - "AJ577590" - ], - "Tobacco_mosaic_virus__Mangshi_2" : [ - "HE818437" - ], - "Hepatitis_B_virus__bxa1202" : [ - "KC774398" - ], - "Treponema_pallidum_SS14" : [ - "NC_010741", - "NC_021508" - ], - "Newcastle_disease_virus_Du_CH_LJS_016_2011" : [ - "KM885153" - ], - "Little_cherry_virus_1__ITMAR" : [ - "EU715989" - ], - "Human_bocavirus_JPOC07_507" : [ - "AB481078" - ], - "Arhar_cryptic_virus_II_Hyderabad_Pigeon_pea" : [ - "NC_024015" - ], - "Microcystis_aeruginosa_NIES_843" : [ - "NC_010296" - ], - "Mycobacterium_phage_Larva_Larva" : [ - "NC_023724" - ], - "Infectious_bronchitis_virus_Conn46_1983" : [ - "FJ904718" - ], - "Hepatitis_B_virus_F0297" : [ - "DQ986376" - ], - "Arabis_mosaic_virus__NW" : [ - "NC_006056" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0072" : [ - "KP759737" - ], - "Chickpea_chlorosis_Australia_virus__3758E" : [ - "KC172686" - ], - "Human_genital_associated_circular_DNA_virus_1__349" : [ - "NC_026817" - ], - "JC_polyomavirus__GCN1" : [ - "DQ875212" - ], - "Hepatitis_B_virus__WHJDR1" : [ - "JN257214" - ], - "Mulberry_crinkle_associated_virus__js" : [ - "KR131749" - ], - "Salmonella_enterica_serovar_Heidelberg_B182" : [ - "NC_017623", - "NC_017624" - ], - "Human_immunodeficiency_virus_1__0614SV" : [ - "JF804809" - ], - "Human_immunodeficiency_virus_1__00BW1616_2" : [ - "AF443092" - ], - "Sweet_potato_leaf_curl_virus__US_SC_646B_11" : [ - "HQ333138" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2242_2005" : [ - "FJ639805" - ], - "Avian_paramyxovirus_6_APMV_6_duck_Taiwan_Y1_98" : [ - "NC_003043" - ], - "Wheat_dwarf_virus__SXYL07_5" : [ - "KJ536123" - ], - "Hepatitis_B_virus__C2P_HB11_0921" : [ - "AB931170" - ], - "Foot_and_mouth_disease_virus___type_A_A_Sabana_asabana_iso68" : [ - "AY593794" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9379_2013" : [ - "KJ643468" - ], - "Cotton_leaf_curl_Rajasthan_virus____India_New_Delhi_2003___New_Delhi" : [ - "AY795605" - ], - "Hepatitis_B_virus__bba8" : [ - "KP341009" - ], - "Cotton_leaf_curl_Multan_betasatellite__JS_Hi_beta_3_5" : [ - "JX914661" - ], - "Hepatitis_C_virus__8070" : [ - "EF407426" - ], - "Fur_seal_faeces_associated_circular_DNA_virus__as50" : [ - "NC_023879" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0105" : [ - "KP759766" - ], - "Dengue_virus_2__DENV_2_KN_BID_V2951_2001" : [ - "FJ898460" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1911_2008" : [ - "FJ547066" - ], - "Hepatitis_B_virus__P39" : [ - "GQ477453", - "EU859904" - ], - "Madariaga_virus_MADV_Mesocricetus_PER_75U40_1975" : [ - "KJ469623" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT01A01_2005" : [ - "JF909229" - ], - "Hepatitis_B_virus__H2" : [ - "AY217369", - "AY862863" - ], - "Beak_and_feather_disease_virus__CS10_1018_OBP_VIC_HS030910_c" : [ - "KF188692" - ], - "Rice_yellow_mottle_virus__Tz209" : [ - "AM883058" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_25__AHEaCV_25_NZ_1935SG_2012" : [ - "NC_026654" - ], - "Hepatitis_B_virus__CH15" : [ - "DQ823093" - ], - "Malpais_Spring_virus_85_488NM" : [ - "NC_025364" - ], - "JC_polyomavirus__KB_14" : [ - "AB220941" - ], - "Listeria_monocytogenes_L312" : [ - "NC_018642" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_F_SD_SD230_2013" : [ - "KM229792" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1869_2007" : [ - "FJ410223" - ], - "Mumps_virus_Urabe_AM_9_A" : [ - "AB000386" - ], - "Hepatitis_B_virus_HBV_P38" : [ - "KC510654" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3851_2008" : [ - "GU131687" - ], - "Dengue_virus_3__DENV_3_US_BID_V1733_1999" : [ - "FJ205871" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2010_10_7_1" : [ - "KC862580" - ], - "Tomato_yellow_leaf_curl_Mali_virus__Tom_141" : [ - "NC_027215" - ], - "Mycobacterium_phage_DNAIII" : [ - "NC_021859" - ], - "West_Nile_virus__WNV_1_Gallus_BID_V4954_kidney" : [ - "JN183893" - ], - "Hepatitis_B_virus__LT3_12AM" : [ - "DQ298164", - "DQ298161", - "DQ298165", - "DQ298163", - "DQ298162" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HB2014001" : [ - "KM261784" - ], - "Francisella_tularensis_holarctica_F92" : [ - "NC_019537" - ], - "Leuconostoc_citreum_KM20" : [ - "NC_010467", - "NC_010470", - "NC_010469", - "NC_010466", - "NC_010471" - ], - "Human_papillomavirus_type_16__IN221688" : [ - "HQ644249" - ], - "Hardenbergia_mosaic_virus__MD4_A" : [ - "KJ152154" - ], - "African_cassava_mosaic_virus__CF_CF74BE_07" : [ - "KJ887605" - ], - "Hepatitis_B_virus_1491_13" : [ - "KR014086" - ], - "Equine_arteritis_virus__S3699" : [ - "GQ903796" - ], - "Porcine_circovirus_2_HN0601" : [ - "EF524531" - ], - "Potato_virus_Y_1105" : [ - "KC296437" - ], - "Hepatitis_B_virus__JFA4359" : [ - "KF779279" - ], - "Murray_Valley_encephalitis_virus_NG156" : [ - "KF751870" - ], - "Porcine_circovirus_2_GS04" : [ - "EF524517" - ], - "Human_papillomavirus_type_16__Qv11687" : [ - "HQ644268" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG253A1_10" : [ - "KJ887687" - ], - "Hepatitis_B_virus__bne52H" : [ - "FN594751" - ], - "Piper_yellow_mottle_virus_ISH_1" : [ - "NC_022365" - ], - "Duck_hepatitis_A_virus_1_P29" : [ - "JF828999" - ], - "Bean_golden_mosaic_virus__BR_Ata2_05" : [ - "KJ939720" - ], - "Canine_distemper_virus__MKY_KM08" : [ - "HM852904" - ], - "Clavibacter_phage_CN1A" : [ - "NC_023549" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG584A6_11" : [ - "KJ888053" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V131_1990" : [ - "EU155331" - ], - "Corchorus_yellow_vein_mosaic_betasatellite__Maharashtra" : [ - "NC_020475" - ], - "Panicum_streak_virus__PanSV_C_ZmGur" : [ - "EU224264" - ], - "Ralstonia_phage_RSB3" : [ - "NC_022917" - ], - "Bacillus_phage_Blastoid" : [ - "NC_022773" - ], - "Squash_leaf_curl_virus__JO2_18" : [ - "KM595175" - ], - "Enterovirus_A71_MP9_1" : [ - "JF894381" - ], - "Hepatitis_B_virus__KOR17CHB" : [ - "GQ475321" - ], - "SARS_coronavirus__Tor2_FP1_10912" : [ - "JX163926", - "JX163923" - ], - "Human_rhinovirus_A11" : [ - "EF173414" - ], - "Human_mastadenovirus_B__Human_CHN_BJ01_2011_55_P14H11F14" : [ - "JX491639" - ], - "Hepatitis_B_virus__SamsunD18" : [ - "AB674423" - ], - "African_cassava_mosaic_virus__CF_CF6BE_07" : [ - "KJ887583" - ], - "Feline_picornavirus_073F" : [ - "NC_016156" - ], - "Hepatitis_B_virus__1889" : [ - "FJ386598" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_72_2013" : [ - "KJ672432" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7289_2008" : [ - "KJ189301" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E3239_2012_G3P_8__E3239" : [ - "KF371882", - "KF371888", - "KF371885", - "KF371881", - "KF371884", - "KF371883", - "KF371880", - "KF371889", - "KF371886" - ], - "Human_herpesvirus_4_M81" : [ - "KF373730" - ], - "Hepatitis_B_virus__HBV78" : [ - "KC875274" - ], - "Hepatitis_B_virus__P123" : [ - "GQ477502" - ], - "Rhesus_adenovirus_53__stool" : [ - "NC_025828" - ], - "Human_immunodeficiency_virus_1__SUMA_flE5" : [ - "FJ496149" - ], - "Coxsackievirus_A16_changchun075" : [ - "KF055242" - ], - "Dengue_virus_2__DENV_2_MX_BID_V7542_2007" : [ - "KJ189311" - ], - "Watermelon_chlorotic_stunt_virus__PA1_J67" : [ - "KM820277" - ], - "Hepatitis_B_virus__WHSOD2" : [ - "JN257199" - ], - "Citrus_tristeza_virus__NZRB_G90" : [ - "FJ525432" - ], - "Murid_herpesvirus_4_g2_4__WUMS" : [ - "NC_001826" - ], - "Norovirus_Hu_GII_20154_2009_VNM_Hu_GII_20154_2009_VNM" : [ - "KC409255" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA37" : [ - "KF670656" - ], - "Yersinia_phage_PY54" : [ - "NC_005069" - ], - "Pseudomonas_phage_MP42" : [ - "NC_018274" - ], - "South_African_cassava_mosaic_virus__MG_MG533A1_11" : [ - "KJ888033" - ], - "Tomato_yellow_leaf_curl_virus__Korea" : [ - "KF225312" - ], - "Thermococcus_prieurii_virus_1" : [ - "JF917095", - "NC_016899" - ], - "Potato_virus_Y__GBVC_PVY_26_N_Wi" : [ - "JQ969039" - ], - "Bluetongue_virus_serotype_17_M2_1__M2_2" : [ - "X55359" - ], - "Digitaria_ciliaris_striate_mosaic_virus__AU_QG8_2011" : [ - "JQ948091" - ], - "Echovirus_E6__E6SD11CHN" : [ - "JX976771" - ], - "Enterovirus_A71_TW_70902_08" : [ - "GQ231936" - ], - "SARS_coronavirus_MA15_MA15_d3om2" : [ - "JF292917" - ], - "Human_papillomavirus_type_59__Qv25652" : [ - "KC470261" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM110" : [ - "KM233037" - ], - "WU_Polyomavirus__B9807" : [ - "GU296388" - ], - "Swine_hepatitis_E_virus_swJ570_No__570" : [ - "AB073912" - ], - "Dengue_virus_1__RR121" : [ - "JQ692085" - ], - "Feline_morbillivirus_MiJP003" : [ - "AB924121" - ], - "Infectious_bronchitis_virus_Cal99" : [ - "AY514485" - ], - "West_Nile_virus__Italy_2009_J_225677" : [ - "JF719068" - ], - "Chlamydia_trachomatis_L2b_795" : [ - "NC_020938", - "NC_020983" - ], - "Hepatitis_B_virus__C185_2" : [ - "FJ899780" - ], - "Torque_teno_felis_virus__278" : [ - "KM229766" - ], - "Hepatitis_B_virus__C116" : [ - "EU939577" - ], - "Hepatitis_B_virus__YN_071" : [ - "KF917451" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0027" : [ - "KP759678" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__NT0801" : [ - "HQ315836" - ], - "Hepatitis_B_virus__HN2008_78" : [ - "JQ411087" - ], - "Pothos_latent_virus" : [ - "NC_000939" - ], - "Helicobacter_pylori_HUP_B14" : [ - "NC_017733", - "NC_017734" - ], - "Moloney_murine_sarcoma_virus_124" : [ - "V01185" - ], - "Tomato_yellow_vein_streak_virus__CL_VS_G9_To_2012" : [ - "KC136339", - "KC136340" - ], - "Ramie_mosaic_virus" : [ - "FN396971", - "FN396969", - "FN396970", - "FN396972", - "NC_010791", - "NC_010792" - ], - "Dengue_virus_2__DENV_2_TW_BID_V5054_2008" : [ - "HQ891023" - ], - "Gossypium_davidsonii_symptomless_alphasatellite__Dav_alphaB_7" : [ - "EU384652" - ], - "Porcine_teschovirus_13_3064_3" : [ - "KC667562" - ], - "Hepatitis_B_virus__6130" : [ - "KP784761" - ], - "Hepatitis_B_virus__S165" : [ - "FJ386657" - ], - "Cowpea_mild_mottle_virus__CPMMV_BR_MT_02_1" : [ - "KC884246" - ], - "Hepatitis_B_virus__SHB66" : [ - "KJ598723" - ], - "Alicycliphilus_denitrificans_K601" : [ - "NC_015422", - "NC_015423" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota65_2013" : [ - "KJ645661" - ], - "Pseudomonas_phage_PA11" : [ - "NC_007808" - ], - "Sewage_associated_gemycircularvirus_8__BS3917" : [ - "NC_026164" - ], - "Human_immunodeficiency_virus_2__SBLISY" : [ - "HIV2ISY" - ], - "Hepatitis_B_virus__2236" : [ - "FJ386641" - ], - "Hepatitis_B_virus__HBV_NEP39" : [ - "AB116089" - ], - "Hepatitis_B_virus__dww1083" : [ - "KC774453" - ], - "Tomato_yellow_leaf_curl_virus__Hwas" : [ - "GU126513" - ], - "Human_papillomavirus___cand85" : [ - "AF131950" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI26_12" : [ - "HE979762" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_LS" : [ - "KM609211" - ], - "Erwinia_phage_vB_EamP_S6" : [ - "NC_019514" - ], - "Dengue_virus_2__DENV_2_VE_BID_V1105_2007" : [ - "EU482606" - ], - "Hepatitis_delta_virus__D24" : [ - "KJ744235" - ], - "Mycobacterium_phage_DeadP_DeadP" : [ - "NC_023728" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1219_2007" : [ - "EU569700" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2196_2001" : [ - "FJ639766" - ], - "Pseudomonas_TKP" : [ - "NC_023064" - ], - "Human_papillomavirus_type_58__HPV58sc100" : [ - "FJ385261" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_413N2__413N2" : [ - "JN819500" - ], - "Hepatitis_B_virus_HCC_1_MC" : [ - "AB113875" - ], - "Japanese_encephalitis_virus_B58" : [ - "FJ185036" - ], - "Watermelon_mosaic_virus_WMV_Pk" : [ - "AB218280" - ], - "Hepatitis_B_virus__953642" : [ - "AY934770" - ], - "Tomato_common_mosaic_virus__BR_Pda10_05" : [ - "KC706580" - ], - "Puumala_virus_PUUV_Pieksamaki_Mg7_2008" : [ - "JN831944", - "JN831945", - "JN831943" - ], - "Fritillary_virus_Y__Pan_an" : [ - "NC_010954" - ], - "Murine_norovirus_GV_CR10_2005_USA__Mu_NoV_GV_CR10_2005_USA" : [ - "EU004678" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG262B1_10" : [ - "KJ887688" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM115" : [ - "KM233041" - ], - "Papaya_ringspot_virus__P_5_19" : [ - "EU882728" - ], - "Clover_yellow_vein_virus__CYVV" : [ - "HG970870" - ], - "Hepatitis_B_virus__D2_3" : [ - "GU815660" - ], - "Dengue_virus_3_D3_SG_05K3927DK1_2005" : [ - "EU081212" - ], - "Hepatitis_B_virus__HBV_Ry34" : [ - "AB073855" - ], - "Calicivirus_isolate_Allston_2009_US" : [ - "GQ475301" - ], - "Bean_golden_mosaic_virus__BR_Par17_12" : [ - "KJ939797" - ], - "Dengue_virus_2__D2_Pakistan_2011_4_2011" : [ - "KF041234" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_28_7" : [ - "KC106641" - ], - "Enterobacteria_phage_T4_147" : [ - "KJ477685" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4013_2008" : [ - "GU131775" - ], - "Human_immunodeficiency_virus_1__06KECst_007" : [ - "FJ623476" - ], - "Potato_virus_Y_N_Guiding_3" : [ - "HM590405" - ], - "West_Nile_virus__WNV_1_US_BID_V4611_2003" : [ - "HQ671703" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__BxJ5" : [ - "JN053443" - ], - "HBV_genotype_C__pBS_HBVC2_0500005_1_3G_mu_wt" : [ - "AB819616" - ], - "Chlamydia_trachomatis_L2b_Ams3" : [ - "NC_020977", - "NC_020949" - ], - "Enterovirus_A71__EV123_07" : [ - "HQ647174" - ], - "Human_immunodeficiency_virus_1__Hennan" : [ - "EF057102" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7595_2007" : [ - "KJ189329" - ], - "Hepatitis_B_virus__21949" : [ - "AY217368" - ], - "Newcastle_disease_virus__Goose_Alaska_415_91" : [ - "AB524405" - ], - "Thermotoga_thermarum_DSM_5069" : [ - "NC_015707" - ], - "Pepper_leaf_curl_Yunnan_virus__YN323___YN323" : [ - "NC_010618" - ], - "Roundleaf_bat_hepatitis_B_virus__RBHBV_GB09_262_Hip_rub_GAB_2009" : [ - "KC790374" - ], - "Maize_streak_virus__ULuw_196" : [ - "EF547109" - ], - "Porcine_epidemic_diarrhea_virus_ZJCZ4" : [ - "JX524137" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__SD_WM_tom4_11" : [ - "KC763634" - ], - "Dengue_virus_1__DENV_1_VN_BID_V968_2007" : [ - "EU482513" - ], - "Marburg_marburgvirus__Mbg_423_2012" : [ - "KC545388" - ], - "Human_metapneumovirus_HMPV_AUS_138758999_2003_A" : [ - "KC403980" - ], - "Enterovirus_G_UKG_410_73" : [ - "NC_004441" - ], - "Bovine_herpesvirus_type_1_1__NVSL_challenge_97_11" : [ - "JX898220" - ], - "Porcine_circovirus_2__HUN_11" : [ - "HM776443" - ], - "Japanese_encephalitis_virus_JaOH0566_Japan_1966_human" : [ - "AY508813" - ], - "Hepatitis_B_virus__1158" : [ - "JQ023661" - ], - "Chlamydia_pneumoniae_phage_CPAR39" : [ - "NC_002180" - ], - "Torque_teno_virus_14__s_TTV_CH65_1" : [ - "NC_014077" - ], - "Hepatitis_B_virus__Leb34" : [ - "JN642144" - ], - "Norovirus_Hu_GII_4_Saga1_2006_JP_Hu_GII_4_Saga1_2006_JP" : [ - "AB447456" - ], - "Mycobacterium_phage_Bernal13" : [ - "NC_024135" - ], - "Rauscher_murine_leukemia_virus" : [ - "NC_001819" - ], - "Tobacco_leaf_curl_Japan_virus__Honeysuckle_Ibaraki___Honeysuckle_Ibaraki" : [ - "AB287439" - ], - "Mycobacterium_phage_BTCU_1" : [ - "NC_021533" - ], - "Maize_streak_virus__MSV_A_RE_Pie3_Mic17_1995" : [ - "HQ693395" - ], - "Propionibacterium_phage_PHL085M01" : [ - "JX570707" - ], - "Hepatitis_B_virus__I149" : [ - "FJ562286" - ], - "JC_polyomavirus__JCV135_48" : [ - "JF424873" - ], - "Hepatitis_B_virus__09_40_033" : [ - "JQ429080" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V183_1994" : [ - "EU255975" - ], - "Porcine_circovirus_2__ZS02" : [ - "KM360053" - ], - "Hepatitis_B_virus__bww2169" : [ - "KC774392" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4345_1" : [ - "KR105239" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SI3D_12" : [ - "FJ914402" - ], - "Burkholderia_phymatum_STM815" : [ - "NC_010623", - "NC_010625", - "NC_010627", - "NC_010622" - ], - "Hepatitis_E_virus__HE_JA2" : [ - "AB220974" - ], - "Hepatitis_C_virus_subtype_1a__03_36" : [ - "EU781768" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2722_2007" : [ - "FJ898371" - ], - "Human_immunodeficiency_virus_1__PS2016_Day193" : [ - "DQ676878" - ], - "Escherichia_coli_KO11FL" : [ - "NC_016903", - "NC_016904", - "NC_016902" - ], - "West_Nile_virus__WNV_1_US_BID_V4912_2001" : [ - "HQ671719" - ], - "Hepatitis_B_virus_048" : [ - "AB900095" - ], - "Rotavirus_A_RVA_Simian_tc_ZAF_SA11_N2_1958_G3P_2" : [ - "JN827255", - "JN827250", - "JN827245", - "JN827248", - "JN827253", - "JN827247", - "JN827252", - "JN827249", - "JN827246", - "JN827254", - "JN827244" - ], - "Hepatitis_B_virus__PNF3958" : [ - "KF779313" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10GX_4" : [ - "JQ663561" - ], - "JC_polyomavirus__LH_3" : [ - "AB262411" - ], - "Hepatitis_B_virus__BV_222" : [ - "GU563549" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_29_2011" : [ - "KJ686171" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_DE_BID_V503_2003" : [ - "EU482833" - ], - "His2_virus" : [ - "NC_007918" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0073" : [ - "KP759738" - ], - "Hepatitis_A_virus__A1" : [ - "KC182590" - ], - "Hepatitis_B_virus__KM2009" : [ - "JN792896" - ], - "Hepatitis_B_virus__Patient_D__HBV_subtype_ayw" : [ - "X68292" - ], - "Rice_gall_dwarf_virus" : [ - "NC_009250", - "AY556484", - "AY556483", - "NC_009252", - "NC_009243", - "NC_009248", - "NC_009244", - "NC_009247", - "NC_009245", - "NC_009251", - "NC_009246", - "NC_009242", - "NC_009249", - "NC_009241", - "DQ333947" - ], - "Human_adenovirus_35_ATCC_VR_718__Holden" : [ - "AY128640" - ], - "Hepatitis_B_virus__239_0625_Nature3_4_unSero" : [ - "DQ993705" - ], - "Human_herpesvirus_4_HN2" : [ - "AB850644" - ], - "Agrotis_segetum_granulovirus" : [ - "NC_005839" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_72_2012" : [ - "KJ686281" - ], - "Vibrio_phage_ICP1_2001_A" : [ - "HQ641353" - ], - "Vibrio_phage_VfO3K6" : [ - "NC_002362" - ], - "Tomato_leaf_curl_New_Delhi_virus__parthenium" : [ - "KF002410", - "KF002409" - ], - "Mumps_virus_MuV_Iowa_USA_06" : [ - "JX287385" - ], - "Hepatitis_B_virus__C120_5" : [ - "FJ899774" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1436" : [ - "KR534558" - ], - "Dragonfly_cyclovirus_5__PR_6E_2010" : [ - "NC_023866" - ], - "Human_herpesvirus_5_BE_20_2010" : [ - "KP745662" - ], - "Maize_streak_virus__MSV_A_ZA_Pas_M24_1989" : [ - "HQ693429" - ], - "Pseudomonas_phage_vB_Pae_TbilisiM32" : [ - "NC_017865" - ], - "Hepatitis_B_virus__HBV_B1" : [ - "AF282917" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JL_04_12" : [ - "JX177644" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2000_2005" : [ - "FJ639684" - ], - "Paspalum_striate_mosaic_virus__AU_QG19_2011" : [ - "JQ948075" - ], - "Hepatitis_B_virus__cww1060" : [ - "KC774258" - ], - "Porcine_circovirus_2__DK408case" : [ - "EF565344" - ], - "Tomato_leaf_curl_Karnataka_betasatellite" : [ - "NC_008523" - ], - "Dengue_virus_2__DENV_2_US_BID_V1424_1996" : [ - "EU677141" - ], - "Hepatitis_C_virus_subtype_6k__KM41" : [ - "DQ278893", - "AY878651" - ], - "Shigella_phage_SfIV" : [ - "NC_022749" - ], - "Human_immunodeficiency_virus_1__00BW1471_27" : [ - "AF443091" - ], - "Acinetobacter_phage_YMC13_03_R2096" : [ - "NC_027332" - ], - "Dengue_virus_2__DENV_2_VN_BID_V718_2006" : [ - "EU482655" - ], - "Dinoroseobacter_phage_vBDshPR2C" : [ - "KJ803031" - ], - "West_Nile_virus__WNV_1_US_BID_V7815_2012" : [ - "KJ501531" - ], - "Watermelon_chlorotic_stunt_virus__JO3_613" : [ - "KM820225" - ], - "Sida_micrantha_mosaic_virus__BR_Vic24_10" : [ - "KC706534" - ], - "Mycobacterium_tuberculosis_EAI5_NITR206" : [ - "NC_021194" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1230_2007" : [ - "EU596500" - ], - "Human_rhinovirus_A19_ATCC_VR_1129" : [ - "FJ445119" - ], - "Hepatitis_B_virus__I163" : [ - "FJ562291" - ], - "Human_poliovirus_1_NIE1018324" : [ - "KJ170491" - ], - "Mycoplasma_hyorhinis_GDL_1" : [ - "NC_016829" - ], - "JC_polyomavirus__JCV135_24" : [ - "JF424854" - ], - "Bean_common_mosaic_virus__DXH024" : [ - "KJ807811" - ], - "Dengue_virus_2__DC688Y12" : [ - "KM279590" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V103_2005" : [ - "EU255994" - ], - "Hepatitis_B_virus__IND_1963_3" : [ - "KF214680" - ], - "Echovirus_E18__Kor05_ECV18_054cn" : [ - "HM777023" - ], - "Dengue_virus_3_D3_SG_05K868DK1_2005" : [ - "EU081191" - ], - "Cauliflower_mosaic_virus__IRNCCK3" : [ - "JX912259" - ], - "Maize_streak_virus__MSV_A_ZA_Mal3_T6_2007" : [ - "HQ693424" - ], - "Thermincola_potens_JR" : [ - "NC_014152" - ], - "Honeysuckle_yellow_vein_mosaic_virus__FK1" : [ - "AB178945" - ], - "Saccharomyces_cerevisiae_virus_L_BC__La" : [ - "NC_001641" - ], - "Spodoptera_litura_nucleopolyhedrovirus_G2" : [ - "NC_003102" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2070_1999" : [ - "KF955461" - ], - "Hepatitis_B_virus__dww1040" : [ - "KC774445" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_82G_002_01_1982" : [ - "KP258736" - ], - "Zucchini_yellow_mosaic_virus__WM" : [ - "AJ515911" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V3924_2008" : [ - "GQ868638" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2494_2007" : [ - "FJ882585" - ], - "JC_polyomavirus__LA_11" : [ - "AB081608" - ], - "Desulfomonile_tiedjei_DSM_6799" : [ - "NC_018025", - "NC_018026" - ], - "Flavobacterium_columnare_ATCC_49512" : [ - "NC_016510" - ], - "Human_papillomavirus_type_40" : [ - "X74478" - ], - "Enterobacteria_phage_RB10" : [ - "KM606999" - ], - "Human_immunodeficiency_virus_1__03ZAPS122MB1" : [ - "DQ396370" - ], - "African_cassava_mosaic_virus__MG_MG72A1_06" : [ - "KJ887891" - ], - "Hepatitis_B_virus__J177" : [ - "GQ377610" - ], - "Dengue_virus_1_FP0705" : [ - "DQ672557" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4243_2007" : [ - "HM631853" - ], - "Tomato_yellow_leaf_curl_virus__LNHLD" : [ - "KJ754189" - ], - "Tomato_leaf_curl_New_Delhi_virus__potato___HIS_4" : [ - "KC874495", - "KC874503" - ], - "Silurus_glanis_circovirus__H6" : [ - "JQ011378" - ], - "Rice_black_streaked_dwarf_virus__JSXHR36" : [ - "HM209076" - ], - "Actinobacillus_succinogenes_130Z" : [ - "NC_009655" - ], - "Beet_western_yellows_virus" : [ - "EU636990", - "EU636991" - ], - "Lactococcus_lactis_cremoris_NZ9000" : [ - "NC_017949" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1546_2007" : [ - "EU726778" - ], - "Hepatitis_B_virus_28051" : [ - "EU414141" - ], - "Tomato_yellow_leaf_curl_virus__Gunwi_19" : [ - "HM856912" - ], - "Macroptilium_yellow_spot_virus__BR_Ced2_11" : [ - "KJ939895" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_CH_5692" : [ - "DQ868484", - "DQ868483" - ], - "Barbel_circovirus" : [ - "NC_015399" - ], - "Simian_hepatitis_A_virus" : [ - "EU140838" - ], - "Human_immunodeficiency_virus_1__01UYTRA1020" : [ - "AY781128" - ], - "Grapevine_rupestris_stem_pitting_associated_virus__GRSPaV_GG" : [ - "JQ922417" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NVDC_JS2_2011" : [ - "JQ715698" - ], - "Chinese_yam_necrotic_mosaic_virus__PES3" : [ - "NC_018455" - ], - "Mycobacterium_tuberculosis" : [ - "NC_020089" - ], - "BK_polyomavirus__ANY_13" : [ - "AB464956" - ], - "Goose_circovirus_xs5" : [ - "DQ192286" - ], - "Bdellovibrio_phage_phi1402" : [ - "NC_015721" - ], - "Hepatitis_B_virus__clz1012" : [ - "KC774181" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K81" : [ - "AJ717523", - "AJ704959" - ], - "Niakha_virus__DakArD_88909" : [ - "NC_025405" - ], - "Campylobacter_jejuni_M1" : [ - "NC_017280" - ], - "Marine_gokushovirus__SOG2" : [ - "KC131025" - ], - "Norovirus_Hu_GII_4_CGMH11_2006_TW" : [ - "JN400609" - ], - "Hepatitis_B_virus__PNF4470" : [ - "KF779327" - ], - "Hepatitis_C_virus__isolate_HCV_K3a_650__K3a_HCV_K3a_650" : [ - "HPCK3A" - ], - "Feline_coronavirus_UU3_UU3" : [ - "FJ938061" - ], - "Human_respiratory_syncytial_virus__B614122905" : [ - "KT285064" - ], - "Sulfolobus_islandicus_L_D_8_5" : [ - "NC_013770", - "NC_013769" - ], - "Human_rhinovirus_A28" : [ - "DQ473508" - ], - "Human_bocavirus_JPOC07_511" : [ - "AB481080" - ], - "East_African_cassava_mosaic_Cameroon_virus__TZ7" : [ - "AY795984" - ], - "Squash_leaf_curl_virus__JO2_137" : [ - "KM595187" - ], - "Porcine_circovirus_2_SXXAA_01" : [ - "KC800644" - ], - "JC_polyomavirus__JCV183FLC_09" : [ - "JF425496" - ], - "Human_immunodeficiency_virus_1__ES_P962__G" : [ - "EU786670" - ], - "White_clover_mosaic_virus" : [ - "NC_003820" - ], - "Campylobacter_jejuni_00_2538" : [ - "NC_022351" - ], - "Reovirus_sp__T3C84_MA_T3C84_MA" : [ - "RSU74291" - ], - "Culex_flavivirus_CxFV_Mex07" : [ - "EU879060" - ], - "Vaccinia_virus_Ankara" : [ - "U94848" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_BLZ_67U201_1967_IE" : [ - "KC344433" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_L210_2005_G3P_8__L210" : [ - "KF371895", - "DQ873671", - "KF371899", - "KF371896", - "KF371891", - "KF371897", - "KF371892", - "KF371894", - "KF371893" - ], - "Human_herpesvirus_5_CZ_2_2012" : [ - "KP745643" - ], - "Mycoplasma_hyopneumoniae_168_L" : [ - "NC_021283" - ], - "Small_begomovirus_associated_satellite__Sa8_S131" : [ - "KJ859167" - ], - "Hepatitis_B_virus__MC03" : [ - "EU547560" - ], - "Lactobacillus_johnsonii_N6_2" : [ - "NC_022909" - ], - "Hepatitis_B_virus_06_27" : [ - "AB480039" - ], - "Porcine_circovirus_2__BRA1" : [ - "DQ364650" - ], - "Faba_bean_necrotic_yellows_virus__SV292_88" : [ - "Y11405", - "Y11408", - "AJ749903", - "Y11406", - "Y11409", - "Y11407" - ], - "Human_bocavirus__st2" : [ - "NC_007455" - ], - "Human_herpesvirus_5_HAN12" : [ - "JX512203" - ], - "Dengue_virus_1__DENV_1_VN_BID_V796_2006" : [ - "EU249493" - ], - "Human_T_lymphotropic_virus_1__Aus_GM" : [ - "JX891478" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_La_digue_SC15B16_2004" : [ - "JF909157" - ], - "Ostreococcus_lucimarinus_virus_1" : [ - "NC_014766" - ], - "Chikungunya_virus_TSI_GSD_218" : [ - "CKGPOLY" - ], - "Herminiimonas_arsenicoxydans" : [ - "NC_009138" - ], - "Elm_mottle_virus" : [ - "NC_003570", - "NC_003569", - "NC_003568" - ], - "Human_immunodeficiency_virus_1__ML2014" : [ - "EU110094" - ], - "Human_immunodeficiency_virus_1__04RU139095" : [ - "AY819715" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V696_2006" : [ - "EU155282" - ], - "Barley_mild_mosaic_virus__Asl1" : [ - "AJ242725" - ], - "Porcine_circovirus_2__HZ0909" : [ - "GU325765" - ], - "Human_immunodeficiency_virus_1__HAN_2" : [ - "HIVU43141" - ], - "Macroptilium_yellow_spot_virus__BR_Sti3_11" : [ - "KJ939861" - ], - "Hepatitis_B_virus__cww1085" : [ - "KC774268" - ], - "Vibrio_phage_VSK" : [ - "NC_003327" - ], - "Dengue_virus_2__DENV_2_PR_BID_V1037_2006" : [ - "KF955364" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3463_2006" : [ - "GQ868548" - ], - "Hepatitis_B_virus__1958_13" : [ - "KR014095" - ], - "West_Nile_virus_Italy_2014_Cremona2" : [ - "KP789954" - ], - "Norovirus_Hu_GII_4_CBNU2_2007_KR__Hu_GII_4_CBNU2_KR_2007" : [ - "JQ622197" - ], - "Hepatitis_B_virus__J192" : [ - "GQ377616" - ], - "Lacinutrix_5H_3_7_4" : [ - "NC_015638" - ], - "Hepatitis_B_virus__F2_10" : [ - "GU815723" - ], - "BK_polyomavirus__RYU_2" : [ - "AB211377" - ], - "Enterobacteria_phage_ID41" : [ - "DQ079903" - ], - "Hepatitis_B_virus__184" : [ - "AY233292" - ], - "South_African_cassava_mosaic_virus__MG_MG292_06" : [ - "KJ887972" - ], - "Omikronpapillomavirus_1_PsPV1" : [ - "NC_003348" - ], - "Hepatitis_B_virus__J19" : [ - "GQ377521" - ], - "West_Nile_virus__WNV_1_US_BID_V6548_2003" : [ - "KJ501504" - ], - "Hyperthermophilic_Archaeal_Virus_2" : [ - "NC_014321" - ], - "Dengue_virus_1__HNRG27486" : [ - "KC692514" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140134" : [ - "KR653227" - ], - "Chickpea_chlorosis_Australia_virus__CpCV_D_AU_2614_2010" : [ - "JN989420" - ], - "Bhanja_virus_R_1819" : [ - "JX961623", - "JX961624", - "JX961622" - ], - "Tomato_yellow_leaf_curl_virus_JSNJ1__JSNJ1" : [ - "FN256259" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PGM_80A_2008" : [ - "HM748920" - ], - "Alistipes_shahii_WAL_8301" : [ - "NC_021030" - ], - "Human_immunodeficiency_virus_1__03ZAPS045MB2" : [ - "DQ396398" - ], - "Dengue_virus_3__DENV_3_TT_BID_V2982_2002" : [ - "FJ898459" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1864_2007" : [ - "FJ410221" - ], - "Dengue_virus_1__DENV_1_CO_BID_V7292_2005" : [ - "KJ189304" - ], - "West_Nile_virus__WNV_1_US_BID_V4210_2003" : [ - "HM488140" - ], - "Buchnera_aphidicola_JF99__Acyrthosiphon_pisum" : [ - "NC_017253" - ], - "Hepatitis_B_virus_1485_8a" : [ - "KR013871" - ], - "Cotton_leaf_curl_Multan_betasatellite__Rumex" : [ - "LN810556" - ], - "Mycobacterium_tuberculosis_F11" : [ - "NC_009565" - ], - "Porcine_bocavirus_3_SH20F" : [ - "NC_016031" - ], - "Human_adenovirus_7d2_FS2154" : [ - "JN860677" - ], - "Hepatitis_B_virus_45021" : [ - "FM199974" - ], - "Human_immunodeficiency_virus_1__789_10" : [ - "KP718925" - ], - "Hepatitis_B_virus__C_PNG_D029_2005" : [ - "HQ700516" - ], - "Dengue_virus_1__DENV1_CN_GZ35_2014" : [ - "KP723476" - ], - "BK_polyomavirus__GBR_6" : [ - "AB263922" - ], - "Hepatitis_B_virus__No23" : [ - "AB697504" - ], - "Hepatitis_B_virus__BV_35" : [ - "GU563555" - ], - "Hepatitis_B_virus__JFA4233" : [ - "KF779271" - ], - "HBV_genotype_E__Mart_B84" : [ - "HE974384" - ], - "Hepatitis_B_virus_C_1858_ea5" : [ - "AF223958" - ], - "Rabies_virus__GX4" : [ - "GU358653" - ], - "Aromatoleum_aromaticum_EbN1" : [ - "NC_006823", - "NC_006824", - "NC_006513" - ], - "Bat_SARS_coronavirus_HKU3_6_HKU3_6" : [ - "GQ153541" - ], - "Porcine_circovirus_2__N1" : [ - "EU408780" - ], - "Maize_streak_virus__MSV_A_CM_Baf1_Cam11_2008" : [ - "HQ693319" - ], - "Hepatitis_B_virus__J97" : [ - "GQ377562" - ], - "Hepatitis_B_virus__J24" : [ - "GQ377525" - ], - "BK_polyomavirus__J2B_1" : [ - "AB301098" - ], - "Guanarito_mammarenavirus_INH_95551" : [ - "AY216504", - "AF485258", - "NC_005077", - "NC_005082" - ], - "Human_poliovirus_3_NIE1118495" : [ - "KJ170599" - ], - "Porcine_circovirus_2__GZ2" : [ - "KC514967" - ], - "Human_papillomavirus_type_72" : [ - "X94164" - ], - "Bacillus_phage_Eoghan" : [ - "NC_020477" - ], - "Dengue_virus_2_ThNH63_93" : [ - "AF169684" - ], - "Human_immunodeficiency_virus_1__03ZASK116B1" : [ - "AY772696" - ], - "Hepatitis_B_virus__bne137" : [ - "FN594753" - ], - "Hepatitis_B_virus__GU766" : [ - "GQ161784" - ], - "Hepatitis_B_virus__I2_M04_2742" : [ - "FJ023667" - ], - "Hepatitis_B_virus__HBV_Th55" : [ - "AB074756" - ], - "Bovine_viral_diarrhea_virus_1__GX4" : [ - "KJ689448" - ], - "Hepatitis_B_virus__HK553" : [ - "DQ089766" - ], - "Blattabacterium__Blaberus_giganteus" : [ - "NC_017925", - "NC_017924" - ], - "Pea_enation_mosaic_virus_1_WSG" : [ - "NC_003629" - ], - "Maize_streak_virus___Reunion__N2AR2___N2A" : [ - "AJ224504" - ], - "Powassan_virus_LB" : [ - "NC_003687" - ], - "Porcine_circovirus_2__GZ_QZ1" : [ - "JQ809463" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI1288_2011_A" : [ - "KJ627407" - ], - "Norovirus_Hu_GII_4_Sakai1_2007_JP_Hu_GII_4_Sakai1_2007_JP" : [ - "AB541339" - ], - "Cypovirus_5" : [ - "NC_010662", - "NC_010664", - "NC_010663", - "NC_010661" - ], - "Human_immunodeficiency_virus_1__06KECst_022" : [ - "FJ623484" - ], - "Newcastle_disease_virus__99_0868hi" : [ - "AY935495" - ], - "Tomato_infectious_chlorosis_virus__Orange_County__CA" : [ - "NC_013258", - "NC_013259" - ], - "Southern_rice_black_streaked_dwarf_virus__LB1" : [ - "KJ493780", - "KJ513441" - ], - "Enterobacteria_phage_YYZ_2008" : [ - "NC_011356" - ], - "Japanese_encephalitis_virus__CH2195SA" : [ - "AF221500" - ], - "Dengue_virus_1__DENV_1_VN_BID_V824_2006" : [ - "EU482818" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V78_2001" : [ - "EU595699" - ], - "Hepatitis_B_virus__IND_1963_7" : [ - "KF214652" - ], - "Rice_yellow_mottle_virus__Tz8" : [ - "AJ608218" - ], - "Yellow_fever_virus_Couma_61b" : [ - "DQ235229" - ], - "Okra_leaf_curl_alphasatellite__Bamako" : [ - "NC_010620" - ], - "Hepatitis_B_virus__CHN_H172" : [ - "DQ478900" - ], - "Hepatitis_B_virus__patient_8N" : [ - "EU522072" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3915_2008" : [ - "GQ868635" - ], - "Beak_and_feather_disease_virus__AU_RL1" : [ - "KP795106" - ], - "Human_immunodeficiency_virus_1__05JPMYC113SP420" : [ - "LC027100" - ], - "Rio_Bravo_virus_RiMAR" : [ - "NC_003675" - ], - "Tomato_leaf_curl_China_betasatellite__Y278" : [ - "AM980511" - ], - "Staphylococcus_aureus_USA300_TCH1516" : [ - "NC_010079", - "NC_012417", - "NC_010063" - ], - "Tomato_yellow_leaf_curl_virus__Haenam" : [ - "JN680150" - ], - "JC_polyomavirus__JCV144_21" : [ - "JF424881" - ], - "Dengue_virus_3__DENV_3_US_BID_V1049_1998" : [ - "EU482558" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2379_2001" : [ - "FJ850074" - ], - "Human_respiratory_syncytial_virus__07_040054" : [ - "JX015480" - ], - "Bean_common_mosaic_virus__NKY017" : [ - "KJ807817" - ], - "Porcine_circovirus_2_Fd3" : [ - "AY321984" - ], - "Hepatitis_C_virus__QC196" : [ - "KJ439778" - ], - "Chickpea_chlorosis_virus_E__3498F" : [ - "KC172698" - ], - "Porcine_circovirus_2_yantai_1" : [ - "KP313251" - ], - "Tomato_leaf_curl_New_Delhi_virus__X_8" : [ - "FJ468356" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Henan_A7" : [ - "KJ534542" - ], - "Rotavirus_A__RVA_Human_wt_DEN_H27897_2010_G9P_4" : [ - "KP013452" - ], - "Cyanophage_NATL2A_133_NATL2A_133" : [ - "NC_016659" - ], - "BK_polyomavirus__J_1025_05" : [ - "EF376992" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SDSU73" : [ - "JN654458" - ], - "Japanese_encephalitis_virus_XJ69" : [ - "EU880214" - ], - "Porcine_circovirus_2__BX_2" : [ - "HM161710" - ], - "Tobacco_ringspot_virus_Bud_Blight" : [ - "NC_005097" - ], - "Hepatitis_B_virus__F1S_F" : [ - "AB471848" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_110726" : [ - "KJ425512" - ], - "Human_bocavirus__KU1" : [ - "FJ695472" - ], - "Triatoma_virus" : [ - "NC_003783" - ], - "Bacillus_phage_BPS10C" : [ - "NC_023501" - ], - "Porcine_circovirus_2_SXXYA_01" : [ - "KC800634" - ], - "Citrus_yellow_vein_clearing_virus__CYVCV_RL" : [ - "KP120977" - ], - "Euphorbia_leaf_curl_virus__Fujian" : [ - "FJ487911" - ], - "JC_polyomavirus__CN_13" : [ - "AB081006" - ], - "Enterovirus_A71_BJ293" : [ - "HM053669" - ], - "Human_papillomavirus_type_16_CU11" : [ - "JQ004095" - ], - "West_Nile_virus__WNV_1_US_BID_V6193_2001" : [ - "KJ501249" - ], - "Chlamydia_muridarum_Nigg" : [ - "NC_002182", - "NC_002620" - ], - "Hepatitis_B_virus__03D03HCC" : [ - "AB014362" - ], - "Porcine_circovirus_2__GER1" : [ - "AF201305" - ], - "Mycobacterium_phage_Bo4" : [ - "KC787107" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC349" : [ - "KF551589" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_41_2011" : [ - "KJ686166" - ], - "Bluetongue_virus_2__RSArrrr_02" : [ - "AJ586696" - ], - "Enterococcus_faecium_Aus0004" : [ - "NC_017023", - "NC_017032", - "NC_017022", - "NC_017024" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_Am_83a_2008" : [ - "HM748925" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10HEB_1" : [ - "JQ663551" - ], - "Norovirus_mouse_Hannover1_2007_DEU_mouse_Hannover1_2007_DEU" : [ - "EU854589" - ], - "Grapevine_leafroll_associated_virus_3__PL_20" : [ - "GQ352633" - ], - "Squash_leaf_curl_China_virus__Hanoi" : [ - "KC857509", - "KC857510" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y71" : [ - "AJ888447" - ], - "Malvastrum_yellow_vein_betasatellite__Y278" : [ - "AJ971701" - ], - "Enterovirus_A71_HCM120_VNM_2011" : [ - "KC296445" - ], - "Marinobacter_hydrocarbonoclasticus_ATCC_49840" : [ - "NC_017067" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4925_spleen" : [ - "HQ671674" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_WUH4" : [ - "JQ326271" - ], - "Hepatitis_B_virus__24Y06HCC" : [ - "AB014383" - ], - "Clostridium_beijerinckii_NCIMB_8052" : [ - "NC_009617" - ], - "Porcine_circovirus_1__PCV3_Rotarix_con1" : [ - "HM143844" - ], - "Hepatitis_B_virus__HBV88" : [ - "KC875331" - ], - "Muscovy_duck_circovirus__FJPT09" : [ - "GQ423741" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4748_2009" : [ - "HM756275" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E956_2008_G3P_8__E956" : [ - "KF371770", - "KF371772", - "KF371778", - "KF371774", - "KF371779", - "KF371775", - "KF371771", - "KF371773", - "KF371776" - ], - "Brucella_melitensis_biovar_Abortus_2308" : [ - "NC_007618", - "NC_007624" - ], - "Murine_leukemia_virus_MCF1233__Mink_cell_focus_forming_1233" : [ - "MLU13766" - ], - "Wheat_dwarf_virus____Sanxi_Yangling___SXYL05_4" : [ - "EF536880" - ], - "Dengue_virus_2__DENV_2_PR_BID_V1408_1997" : [ - "KF955373" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Abohar3_2010" : [ - "JF502383" - ], - "BK_polyomavirus_MON_8" : [ - "AB269851" - ], - "Foot_and_mouth_disease_virus___type_A_A15_Thailand_a15thailand_iso43" : [ - "AY593755" - ], - "Hepatitis_B_virus__221_1120_Nature1_1_unSero" : [ - "DQ993711" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V244_2003" : [ - "EU862836" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM120" : [ - "KM233043" - ], - "West_Nile_virus__WN_NY_2000_crow3356" : [ - "AF404756" - ], - "Japanese_encephalitis_virus_JEV_sw_Okinawa_377_2008" : [ - "AB471669" - ], - "Sacbrood_virus__AcSBV_Viet1" : [ - "KM884990" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V328_2001" : [ - "EU155293" - ], - "Mycobacterium_intracellulare_MOTT_02" : [ - "NC_016947" - ], - "Watermelon_mosaic_virus__C06_257" : [ - "JF273463" - ], - "Human_immunodeficiency_virus_1__ES_X1958__B" : [ - "EU786674" - ], - "Hepatitis_B_virus__HRO_w4601_2002" : [ - "EU086721" - ], - "Escherichia_phage_vB_EcoP_G7C__G7C" : [ - "NC_015933" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3698_2007" : [ - "GQ868509" - ], - "Human_immunodeficiency_virus_1__CAP61_8w_F3" : [ - "GQ999975" - ], - "Human_coronavirus_OC43_OC43_human_USA_901_33_1990" : [ - "KF530066" - ], - "Tula_virus_Tula_76Ma_87" : [ - "Z30941" - ], - "Rhesus_rotavirus" : [ - "HQ665466", - "HQ665465", - "HQ665467" - ], - "Feline_calicivirus__3786" : [ - "JX519209" - ], - "West_Nile_virus__WNV_1_US_BID_V6685_2008" : [ - "KJ501418" - ], - "Garlic_virus_B__Mesi_13" : [ - "NC_025789" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1712_2007" : [ - "FJ182000" - ], - "Wigeon_coronavirus_HKU20_HKU20_9243" : [ - "NC_016995" - ], - "Hepatitis_B_virus__clz1020" : [ - "KC774183" - ], - "Sacbrood_virus_BJ_2012" : [ - "KF960044" - ], - "Arcobacter_L" : [ - "NC_017192", - "NC_017193" - ], - "Classical_swine_fever_virus__IND_AS_GHY_G4" : [ - "KM362426" - ], - "Simian_torque_teno_virus_32__VGA00154_2" : [ - "NC_026664" - ], - "Chimpanzee_alpha_1_herpesvirus_105640" : [ - "NC_023677" - ], - "Human_papillomavirus_type_14D" : [ - "X74467" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1445" : [ - "KR534559" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_1229_2010" : [ - "JX221006" - ], - "Dengue_virus_3__DENV_3_PR_BID_V2116_2001" : [ - "KF955468" - ], - "Ryegrass_mottle_virus__MAFF__No__307043" : [ - "NC_003747" - ], - "East_African_cassava_mosaic_Cameroon_virus__EACMCV_CM_NG_Iba_06" : [ - "EU685326" - ], - "Simian_immunodeficiency_virus_TYO_1" : [ - "AB253736" - ], - "Pseudomonas_phage_vB_PaeM_C2_10_Ab1_vB_PaeM_C2_10_Ab1" : [ - "NC_019918" - ], - "Pseudomonas_phage_phi297" : [ - "NC_016762" - ], - "Hepatitis_B_virus__CX007C_e211" : [ - "KJ173343" - ], - "Porcine_circovirus_2__DK524control" : [ - "EF565361" - ], - "Pineapple_mealybug_wilt_associated_virus_1" : [ - "NC_010178" - ], - "KI_polyomavirus_FZ52" : [ - "KM085447" - ], - "JC_polyomavirus__JCV135_39" : [ - "JF424864" - ], - "Weissella_phage_phiYS61" : [ - "NC_018270" - ], - "Hepatitis_B_virus__FEN17" : [ - "JF439995" - ], - "Human_immunodeficiency_virus_1__04ZAPS197MB1" : [ - "DQ369997" - ], - "Astrovirus_wild_boar_WBAstV_1_2011_HUN_wild_boar_WBAstV_1_2011_HUN" : [ - "NC_016896" - ], - "Croton_yellow_vein_mosaic_betasatellite__CroYVMB_BangCr1" : [ - "JQ354987" - ], - "Porcine_circovirus_2__DE137_13" : [ - "KP698396" - ], - "Human_immunodeficiency_virus_1__SUMA_flE7" : [ - "FJ496150" - ], - "Japanese_iris_necrotic_ring_virus__Marijiniup10" : [ - "JQ807998" - ], - "Caribou_feces_associated_gemycircularvirus__FaGmCV_13" : [ - "NC_024909" - ], - "Tomato_yellow_leaf_curl_virus_ZJHZ1__ZJHZ1" : [ - "FN252890" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_Nagasaki" : [ - "AB627951", - "AB627954" - ], - "Newcastle_disease_virus__NDV_2_chicken_Namakkal_Tamil_Nadu" : [ - "GU187941" - ], - "Bean_golden_mosaic_virus__BR_Flt8_11" : [ - "KJ939773" - ], - "Eel_River_basin_pequenovirus__c13499" : [ - "KP087943" - ], - "Human_papillomavirus_type_11__LP133" : [ - "HE611262" - ], - "Bovine_astrovirus_B76_HK_B76_HK" : [ - "NC_023629" - ], - "Porcine_circovirus_type_2_B" : [ - "AF112862" - ], - "Francisella_tularensis_mediasiatica_FSC147" : [ - "NC_010677" - ], - "Feline_calicivirus__UTCVM_NH1" : [ - "AY560113" - ], - "Equid_herpesvirus_5_2_141_67" : [ - "NC_026421" - ], - "Bacillus_phage_BtCS33" : [ - "NC_018085" - ], - "Hepatitis_B_virus__YY028C_e133" : [ - "KJ173337" - ], - "Tomato_leaf_curl_Sudan_virus__Tih_tom5_05" : [ - "JF919732" - ], - "Porcine_circovirus_2__Ciego_de_Avila_20" : [ - "FN687851" - ], - "Human_coronavirus_OC43__3647_2006" : [ - "KF923900" - ], - "Hepatitis_B_virus__CX032M_e248n" : [ - "KJ173356" - ], - "Duck_hepatitis_virus_SD02__SD02" : [ - "GQ485311" - ], - "Hepatitis_B_virus__KOR51HCC" : [ - "GQ475355" - ], - "Yellow_fever_virus__DakArAmt7" : [ - "JX898869" - ], - "Duck_hepatitis_B_virus__DHBV26" : [ - "X58569" - ], - "Rotavirus_A__RVA_Human_wt_DEN_Hv5345782_2010_G4P_8" : [ - "KP013450" - ], - "Potato_virus_Y_N_SD_T" : [ - "JQ673517" - ], - "South_African_cassava_mosaic_virus__MG_MG718A1_11" : [ - "KJ887747" - ], - "Porcine_circovirus_2__A4296" : [ - "JF317580" - ], - "Coxsackievirus_A8__CVA8_SZ93_CHN_2012" : [ - "KM609475" - ], - "Potato_virus_Y_strain_NTN_NTN_Tu_660" : [ - "AY166866" - ], - "Hepatitis_C_virus_subtype_1a__V029_BN050" : [ - "EU781806" - ], - "Raphanus_sativus_cryptic_virus_3__RasR7" : [ - "NC_011705" - ], - "Streptomyces_phage_phiELB20" : [ - "JX262376" - ], - "African_cassava_mosaic_virus__CF_CF29BE_07" : [ - "KJ887591" - ], - "Human_immunodeficiency_virus_1__V62" : [ - "AY536236" - ], - "Potato_leafroll_virus__PLRV_HB" : [ - "KC456053" - ], - "Bluetongue_virus_1__SKN7_ABT_HSR" : [ - "KF664119", - "KF664121", - "KF664120", - "KF664118", - "KF664122", - "KF664116", - "KF664117", - "KF664115", - "KF664113" - ], - "Grapevine_leafroll_associated_virus_2__OR2" : [ - "JQ771955" - ], - "Epinotia_aporema_granulovirus" : [ - "NC_018875" - ], - "Eastern_equine_encephalitis_virus_EEEV_Zenaida_USA_I01_6422_2001" : [ - "KJ469572" - ], - "Hepatitis_B_virus__JFA4322" : [ - "KF779277" - ], - "Dengue_virus_1__DENV_1_VN_BID_V809_2006" : [ - "EU482803" - ], - "Hepatitis_B_virus__dlz2068" : [ - "KC774425" - ], - "Honeysuckle_yellow_vein_mosaic_disease_associated_satellite_DNA_beta__Ibaraki" : [ - "NC_009571" - ], - "Bean_common_mosaic_necrosis_virus_NL8" : [ - "HQ229994" - ], - "Hepatitis_B_virus__dxn1089" : [ - "KC774493" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9471_2013" : [ - "KJ643534" - ], - "South_African_cassava_mosaic_virus__MG_MG400A4_11" : [ - "KJ888003" - ], - "Coxiella_burnetii_RSA_493" : [ - "NC_004704", - "NC_002971" - ], - "Visna_maedi_virus_Icelandic_1514" : [ - "VLVLV1A", - "VLVLV1B" - ], - "Turkey_astrovirus_TAstV_MN_01" : [ - "EU143847" - ], - "Cymbidium_mosaic_virus_Korean_type_2" : [ - "AF016914" - ], - "Macroptilium_yellow_spot_virus__BR_Sti5_11" : [ - "KJ939863" - ], - "Duck_hepatitis_A_virus_1_C_LGJ" : [ - "GU066819" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4923_spleen" : [ - "JF899530" - ], - "Maize_streak_virus__MSV_A_GH_gh162_Kwa_2010" : [ - "KJ699340" - ], - "Lucerne_transient_streak_virus_New_Zealand_isolate" : [ - "LTU31286" - ], - "Pseudomonas_mendocina_NK_01" : [ - "NC_015410" - ], - "Sanguibacter_keddieii_DSM_10542" : [ - "NC_013521" - ], - "Potato_virus_Y_strain_Wilga__261_4" : [ - "AM113988" - ], - "Porcine_circovirus_2_putian0401" : [ - "DQ180393" - ], - "Tobacco_curly_shoot_betasatellite__Y115" : [ - "AJ457822" - ], - "Mycobacterium_tuberculosis_Erdman___ATCC_35801" : [ - "NC_020559" - ], - "Human_immunodeficiency_virus_1__MS2004_37_025" : [ - "EF178323" - ], - "Enterobacteria_phage_vB_EcoM_FV3" : [ - "NC_019517" - ], - "Rabies_virus_H_08_1320" : [ - "AB569299" - ], - "Kenaf_leaf_curl_betasatellite___Pakistan_20_4_06__Faisalabad1" : [ - "NC_027133" - ], - "Hepatitis_B_virus__PNF4541" : [ - "KF779330" - ], - "Human_papillomavirus_type_105__DL294" : [ - "FM955841" - ], - "Murine_norovirus_GV_WU26_2005_USA__Mu_NoV_GV_WU26_2005_USA" : [ - "EU004671" - ], - "Dengue_virus_3__HN_2013_50" : [ - "KJ622195" - ], - "South_African_cassava_mosaic_virus__MG_MG88A7_06" : [ - "KJ887902" - ], - "Porcine_circovirus_2_XC" : [ - "GQ915288" - ], - "Dengue_virus_1__DENV_1_VN_BID_V976_2006" : [ - "EU482520" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V86_2005" : [ - "EU155243" - ], - "Porcine_circovirus_2__Mal013_11_Penang" : [ - "JF690922" - ], - "Duck_circovirus__WF0801" : [ - "GU131340" - ], - "Newcastle_disease_virus__9a5b_D5C1" : [ - "JQ713944" - ], - "Dengue_virus_3__DENV_3_US_BID_V1609_2004" : [ - "FJ024468" - ], - "Hepatitis_B_virus__S1634_1" : [ - "FJ032359" - ], - "Eastern_equine_encephalitis_virus_BeAr436087" : [ - "EF151503" - ], - "Feline_immunodeficiency_virus__PLV_1695" : [ - "DQ192583" - ], - "Human_herpesvirus_5_BE_3_2010" : [ - "KP745655" - ], - "Cotton_leaf_curl_Multan_virus____Hissar_04" : [ - "AY765253" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_227_2011" : [ - "KJ686239" - ], - "Spodoptera_litura_nucleopolyhedrovirus_II" : [ - "NC_011616" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite_India_PUSA_4_2010" : [ - "HQ180396" - ], - "Prochlorococcus_phage_P_SSM2_P_SSM2" : [ - "GU071092" - ], - "Grapevine_endophyte_endornavirus" : [ - "NC_019493" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_6991_2006" : [ - "KJ469620" - ], - "Enterovirus_A71__EV71_Henan_399_2010" : [ - "HM245928" - ], - "Beet_western_yellows_virus_BJ" : [ - "HM804472", - "HM804471" - ], - "Bovine_viral_diarrhea_virus_2__NRW_12_13_Dup" : [ - "HG426483", - "HG426484" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2941_1998" : [ - "FJ898465" - ], - "Bovine_viral_diarrhea_virus_2_SH_28" : [ - "HQ258810" - ], - "Tobacco_yellow_dwarf_virus_A__TYDV_A_AU_48_1985" : [ - "JN989445" - ], - "South_African_cassava_mosaic_virus__MG_MG39A1_06" : [ - "KJ887855" - ], - "Beet_curly_top_virus___California__Logan_Arabidopsis__Logan" : [ - "AF379637" - ], - "Dengue_virus_4_H780556_DENV_4_AM5090" : [ - "JQ513342" - ], - "Human_bocavirus__HK24" : [ - "EF450740" - ], - "Dengue_virus_2__DENV_2_US_BID_V1492_2003" : [ - "EU687240" - ], - "Porcine_circovirus_2__A4301" : [ - "JF317581" - ], - "Porcine_circovirus_2_Fh23" : [ - "AY321994" - ], - "Hepatitis_B_virus_468_14" : [ - "KR013929" - ], - "Sweet_potato_leaf_curl_virus___Greece_Rhodes_666_2013" : [ - "KF697071" - ], - "Hepatitis_B_virus_42145" : [ - "FN545837" - ], - "Norovirus_Hu_GII_4_Ohio_7G_2012_USA_Hu_GII_4_Ohio_7G_2012_USA" : [ - "JX126913" - ], - "Narcissus_degeneration_virus__Zhangzhou" : [ - "NC_008824" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_LA2_82_2013" : [ - "KJ672481" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00066_2010" : [ - "KJ672574" - ], - "Bat_polyomavirus_5b__5b_1" : [ - "NC_026767" - ], - "Hepatitis_B_virus__LAMr_Pt__42_Adefovir_treated_Pt__27" : [ - "AB367433" - ], - "Dengue_virus_3__DENV_3_NI_BID_V2419_1998" : [ - "GQ199886" - ], - "Pepino_mosaic_virus_EU_EF09_58" : [ - "JQ314459" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2403_2008" : [ - "FJ850094" - ], - "Bovine_herpesvirus_type_1_2_strain_SM023_SM023" : [ - "KM258882" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_74_2013" : [ - "KJ672448" - ], - "Human_herpesvirus_3__HJO" : [ - "AJ871403" - ], - "Mint_virus_X" : [ - "NC_006948" - ], - "Hepatitis_B_virus__MOD_4566" : [ - "GQ183483" - ], - "Porcine_coronavirus_HKU15_NE3579" : [ - "KJ584359" - ], - "Hepatitis_B_virus__S659" : [ - "FJ386674" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_742" : [ - "KR534587" - ], - "Pea_necrotic_yellow_dwarf_virus_Germany_Drohndorf_15" : [ - "NC_023158", - "NC_023159", - "NC_023154", - "NC_023156", - "NC_023157", - "NC_023160", - "NC_023161", - "NC_023155" - ], - "Echovirus_E9_DM33" : [ - "KC238667" - ], - "Tomato_rugose_yellow_leaf_curl_virus_B_U3" : [ - "JN381821" - ], - "Croton_yellow_vein_mosaic_betasatellite__CroYVMV_Del_Crambe" : [ - "KM229762" - ], - "Dengue_virus_2__DENV_2_VN_BID_V779_2007" : [ - "EU482705" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_275_2012" : [ - "KP308441" - ], - "Malvastrum_yellow_vein_betasatellite__Y302" : [ - "AJ971709" - ], - "SARS_coronavirus_HC_SZ_61_03__HC_SZ_61_03" : [ - "AY515512" - ], - "Cotton_leaf_curl_Multan_DNA_betasatellite____India_Bongaon_Kenaf_2006___LCBeta_EI_Bon" : [ - "EU880231" - ], - "Hepatitis_delta_virus_dFr2012_dFr2012" : [ - "AM902177" - ], - "Human_immunodeficiency_virus_1__CANA6FULL" : [ - "AY779552" - ], - "Hepatitis_B_virus__HBV_BL592" : [ - "AB166850" - ], - "Buchnera_aphidicola_Tuc7__Acyrthosiphon_pisum" : [ - "NC_011834" - ], - "Human_papillomavirus_type_127__R3a" : [ - "NC_014469" - ], - "Dengue_virus_1__DENV_1_US_BID_V2142_1987" : [ - "FJ478458" - ], - "Desulfococcus_oleovorans_Hxd3" : [ - "NC_009943" - ], - "Coxsackievirus_A12_QD_LXH535_SD_CHN_2009" : [ - "KF422142" - ], - "Peanut_stunt_virus_Ag" : [ - "JF897622", - "GU126412", - "GU129698" - ], - "Hepatitis_C_virus__QC352" : [ - "JF735135" - ], - "Parvo_like_hybrid_virus_UC1_UC1" : [ - "KF170373" - ], - "Hepatitis_B_virus__SHB212" : [ - "KJ598655" - ], - "Hepatitis_B_virus__HBV21" : [ - "KC875292" - ], - "Porcine_circovirus_2__15_5P" : [ - "DQ923523" - ], - "Dengue_virus_3_FW01" : [ - "AY858040" - ], - "Human_mastadenovirus_B__UG_Bwindi_6800" : [ - "KT069556" - ], - "Newcastle_disease_virus_mallard_US_MN__MN00_39_2000" : [ - "GQ288392" - ], - "Enterovirus_A71_GX_LZ_08_04_08_CHN" : [ - "GQ892830" - ], - "Hepatitis_B_virus__SWT2_2" : [ - "EU916237" - ], - "Vaccinia_virus_MVA_I721__CNCM_I721" : [ - "DQ983236" - ], - "Pseudomonas_phage_M6" : [ - "NC_007809" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V76_2002" : [ - "EU529679" - ], - "Ruegeria_phage_DSS3_P1_DSS3_P1" : [ - "NC_025428" - ], - "Mucura_virus" : [ - "HM119420", - "HM119421", - "HM119419" - ], - "JC_polyomavirus__JCV161FLC_21" : [ - "JF424929" - ], - "Pepper_huasteco_yellow_vein_virus__SLP1" : [ - "GU564593" - ], - "Okra_enation_leaf_curl_betasatellite__Theni_MKU_1" : [ - "KR068482" - ], - "Simian_adenovirus_42_1" : [ - "FJ025903" - ], - "Human_immunodeficiency_virus_1__02BR011" : [ - "DQ358809" - ], - "Paenibacillus_mucilaginosus_3016" : [ - "NC_016935" - ], - "Thermoanaerobacter_brockii_finnii_Ako_1" : [ - "NC_014964" - ], - "Hepatitis_B_virus__GU732" : [ - "GQ161799" - ], - "Hepatitis_B_virus__BR11_SOUTHEAST" : [ - "KC494395" - ], - "Rift_Valley_fever_virus_Zinga" : [ - "DQ380167", - "DQ375419", - "DQ380217" - ], - "Foot_and_mouth_disease_virus___type_SAT_2_SAT2_3kenya_11_60_sat2_3kenya_21" : [ - "AY593849" - ], - "Maize_streak_virus__UMbal_308" : [ - "EF547124" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3386_2007" : [ - "GQ868566" - ], - "Dengue_virus_2__14905_BR_PE_10" : [ - "JX669477" - ], - "Porcine_circovirus_2_Y_7" : [ - "KF027497" - ], - "Clostridium_botulinum_H04402_065" : [ - "NC_017299" - ], - "Porcine_circovirus_2_JS" : [ - "HM038024", - "AY691679" - ], - "Cauliflower_mosaic_virus__GRC92C" : [ - "AB863201" - ], - "Rice_black_streaked_dwarf_virus__JSXHR6" : [ - "HM209072" - ], - "Pseudomonas_phage_MP22" : [ - "NC_009818" - ], - "Porcine_stool_associated_circular_virus_2__f" : [ - "NC_021203" - ], - "Cucurbit_aphid_borne_yellows_virus_Sq_2005_9_2" : [ - "JF939813" - ], - "Budgerigar_fledgling_disease_polyomavirus_APV5" : [ - "AB453163" - ], - "Cowpea_mild_mottle_virus__CPMMV_BR_MG_09_3" : [ - "KC884245" - ], - "Synechococcus_phage_ACG_2014e__Syn7803C2" : [ - "NC_026928" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Hawkeye7_Before" : [ - "EF532815" - ], - "Hepatitis_B_virus__J36" : [ - "GQ377531" - ], - "Macaca_fascicularis_papillomavirus_type_10__Mac616" : [ - "EU490515" - ], - "Spiroplasma_diminutum_CUAS_1" : [ - "NC_021833" - ], - "Bovine_ephemeral_fever_virus" : [ - "NC_002526" - ], - "Pseudomonas_phage_Pf3" : [ - "NC_001418", - "PF3COMNY" - ], - "Hepatitis_B_virus__G247_B3" : [ - "EF134945" - ], - "Infectious_pancreatic_necrosis_virus_Jasper" : [ - "NC_001915" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2191_2001" : [ - "FJ639761" - ], - "Sorghum_chlorotic_spot_virus" : [ - "NC_004015", - "NC_004014" - ], - "Dill_cryptic_virus_2__IPP_hortorum" : [ - "NC_021147", - "NC_021148" - ], - "Equid_herpesvirus_1_FL06" : [ - "KF644567" - ], - "Helicoverpa_armigera_nucleopolyhedrovirus_G4" : [ - "NC_002654" - ], - "Tomato_yellow_leaf_curl_virus__SD_ZZ14" : [ - "KM435328" - ], - "Bean_golden_mosaic_virus__BR_Cno1_05" : [ - "KJ939712" - ], - "Hepatitis_B_virus__WY_NNJ_19" : [ - "JX504543" - ], - "Junin_mammarenavirus_XJ17" : [ - "JF799981", - "JF799977" - ], - "Tomato_yellow_leaf_curl_virus_Israel_New_Caledonia_Ouvea_2010" : [ - "HE603246" - ], - "Hepatitis_B_virus_Ehi_MM_lam_1_1" : [ - "AB195930" - ], - "Hepatitis_B_virus__305" : [ - "AY233294" - ], - "Columbid_circovirus_SRK_US_01" : [ - "EU840176" - ], - "Porcine_circovirus_2__ZS1204" : [ - "GU325760" - ], - "Haloquadratum_walsbyi_DSM_16790" : [ - "NC_008212", - "NC_008213" - ], - "Rotavirus_A_RVA_Human_wt_USA_DC5411_1991_G1P_8__mixed_genotype" : [ - "KC580469", - "KC580464", - "KC580468" - ], - "Human_coronavirus_OC43__5240_2007" : [ - "KF923891" - ], - "Brucella_melitensis_ATCC_23457" : [ - "NC_012442", - "NC_012441" - ], - "Dengue_virus_3__PhMH_J1_97" : [ - "AY496879" - ], - "Hepatitis_delta_virus__D32" : [ - "KJ744240" - ], - "Tomato_yellow_leaf_curl_virus__HBCL" : [ - "KC702796" - ], - "Sclerotinia_sclerotiorum_debilitation_associated_RNA_virus" : [ - "NC_007415" - ], - "Klebsiella_phage_KP32_KP32" : [ - "NC_013647" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4747_2009" : [ - "HM756274" - ], - "Porcine_circovirus_2_GX0841a" : [ - "GQ359003" - ], - "Sclerotinia_sclerotiorum_hypovirulence_associated_DNA_virus_1__SsHADV_1_NZ_SR5_2012" : [ - "KF268028" - ], - "African_cassava_mosaic_virus__CF_CF87AB2_07" : [ - "KJ887785" - ], - "Human_immunodeficiency_virus_1__DR2735" : [ - "AB564746", - "AB604949" - ], - "HBV_genotype_B__pBS_HBVB1_1005425_1_3G_mu_wt" : [ - "AB819612" - ], - "Bell_pepper_mottle_virus" : [ - "NC_009642" - ], - "Neisseria_meningitidis_Z2491" : [ - "NC_003116" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9437_2013" : [ - "KJ643513" - ], - "Human_immunodeficiency_virus_1__HP_8_04CWS5" : [ - "JQ316133" - ], - "Simian_virus_40" : [ - "NC_001669" - ], - "Porcine_circovirus_2_PM167" : [ - "KJ094602" - ], - "Tomato_yellow_mottle_virus" : [ - "NC_019946", - "NC_019947" - ], - "Avian_leukosis_virus_Km_5892" : [ - "AB682778" - ], - "South_African_cassava_mosaic_virus__MG_MG537A2_11" : [ - "KJ887730" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V257_2003" : [ - "EU155351" - ], - "Hepatitis_B_virus__C173" : [ - "EU939588" - ], - "Lagos_bat_virus__KE576" : [ - "GU170202" - ], - "Simian_adenovirus_A1335_A1335" : [ - "JN880456" - ], - "Actinoplanes_missouriensis_431" : [ - "NC_017093" - ], - "Hepatitis_B_virus__CMR82" : [ - "AB194951" - ], - "Human_poliovirus_2_NIE0711438_ANS07_01" : [ - "JX275085" - ], - "SARS_coronavirus_CUHK_AG02__CUHK_AG02" : [ - "AY345987" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC309" : [ - "KF551576" - ], - "Human_herpesvirus_4_1_LGY_Raji" : [ - "AB828191" - ], - "Hepatitis_B_virus__P40" : [ - "GQ477479", - "EU859903" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__0910" : [ - "KF444096" - ], - "West_Nile_virus__WNV_1_US_BID_V6056_2010" : [ - "KJ145827" - ], - "Coxsackievirus_A16__FJ10_03" : [ - "KF193626" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_LYG" : [ - "KM609212" - ], - "West_Nile_virus__WNV_1_US_BID_V4345_2002" : [ - "HM488183" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4732_2009" : [ - "HQ166031" - ], - "Dengue_virus_1__DENV_1_VN_BID_V975_2006" : [ - "EU482519" - ], - "Cauliflower_mosaic_virus__IRNCaA" : [ - "JX912254" - ], - "Maize_dwarf_mosaic_virus_Bulgaria" : [ - "NC_003377" - ], - "Chikungunya_virus_SL10571" : [ - "AB455494" - ], - "Human_immunodeficiency_virus_1__MB2059" : [ - "AF133821" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2041_2004" : [ - "FJ639707" - ], - "West_Nile_virus__WNV_USA_BID_G15494" : [ - "JX503085" - ], - "Gyrovirus_GyV7_SF_GyV7_SF" : [ - "NC_025215" - ], - "Hepatitis_C_virus_subtype_6a_6a35" : [ - "DQ480513" - ], - "Thrush_coronavirus_HKU12_600" : [ - "NC_011549" - ], - "Human_papillomavirus_type_35__UA3297" : [ - "JX129486" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_CH" : [ - "KP998416" - ], - "Hepatitis_B_virus__NH006C_e34" : [ - "KJ173313" - ], - "Tomato_yellow_leaf_curl_virus_TYLCV_GJ" : [ - "AB636409" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1917_2007" : [ - "FJ410250" - ], - "Bovine_coronavirus_E_DB2_TC_E_DB2_TC" : [ - "FJ938063" - ], - "Hepatitis_B_virus__D2_6" : [ - "GU815663" - ], - "Sacbrood_virus_AcSBV_Kor3" : [ - "KP296802" - ], - "Lactobacillus_fermentum_F6" : [ - "NC_021235" - ], - "Rift_Valley_fever_virus__Kakamas" : [ - "JQ068143", - "JQ068142", - "JQ068144" - ], - "Human_immunodeficiency_virus_1__WITO_flH3" : [ - "FJ496184" - ], - "Ageratum_yellow_vein_China_virus____G68___G68" : [ - "AJ849916" - ], - "BK_polyomavirus__KOM_3" : [ - "AB211386" - ], - "West_Nile_virus__Italy_2011_AN_1" : [ - "JN858069" - ], - "Dengue_virus_3__99TW628" : [ - "DQ675533" - ], - "Eel_River_basin_pequenovirus__c13868" : [ - "KP087944" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus__P4" : [ - "KF446671", - "KF446672" - ], - "Lettuce_mosaic_virus__AF199_2013_Cr_Var1" : [ - "KF268955" - ], - "Hepatitis_B_virus__YOGHhbv44" : [ - "AB713528" - ], - "Citrus_leaf_rugose_virus" : [ - "NC_003547", - "NC_003548", - "NC_003546" - ], - "Porcine_circovirus_2__La_Habana_H1_2007" : [ - "FN687840" - ], - "Human_mastadenovirus_C_human_ARG_A8649_2005_2_P2H2F2" : [ - "JX173077" - ], - "Wheat_dwarf_virus__WDV_Uk_Miron" : [ - "FN806784" - ], - "Clavibacter_michiganensis_nebraskensis_NCPPB_2581" : [ - "NC_020891" - ], - "Hepatitis_C_virus_subtype_1b_MD3_2" : [ - "AF165050" - ], - "BK_polyomavirus__A_47H" : [ - "AB369091" - ], - "Faba_bean_necrotic_yellows_C1_alphasatellite__SSV_292_88" : [ - "NC_024886" - ], - "Human_immunodeficiency_virus_1_05GX034" : [ - "GQ845124" - ], - "Norovirus_Hu_GII_10370_2010_VNM_Hu_GII_10370_2010_VNM" : [ - "KC409240" - ], - "Hepatitis_B_virus__PW1" : [ - "EU239221" - ], - "Bromus_associated_circular_DNA_virus_4__BasCV_4_FR38_38_Cam" : [ - "NC_026245" - ], - "Hepatitis_B_virus__HBV_MY624" : [ - "AB112066" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI33_12" : [ - "HE979767" - ], - "Tomato_mild_yellow_leaf_curl_Aragua_virus__Aragua_Eu1" : [ - "JN368145", - "JN368146" - ], - "Watermelon_chlorotic_stunt_virus__PA2_Q19" : [ - "KM820285" - ], - "Hepatitis_B_virus__EHBV094_EP_CHB" : [ - "KM524340" - ], - "Chickpea_yellow_dwarf_virus__CpYDV_PK_PK103_2012" : [ - "NC_025475" - ], - "Dengue_virus_2_DENV_2_PR_37DN_1994" : [ - "GQ398283" - ], - "Simian_virus_12__SA12" : [ - "DQ435829" - ], - "Human_immunodeficiency_virus_1__06KECst_020" : [ - "FJ623482" - ], - "Wigglesworthia_glossinidia_endosymbiont_of_Glossina_brevipalpis" : [ - "NC_003425", - "NC_004344" - ], - "Dioscorea_bacilliform_virus__B39" : [ - "DQ822074" - ], - "Dengue_virus_2__DENV_2_US_BID_V1174_1987" : [ - "EU482577" - ], - "Japanese_encephalitis_virus__ZMT" : [ - "JF706283" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9498_2013" : [ - "KJ643553" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1121_36892_5" : [ - "KF955449" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V263_2005" : [ - "EU482857" - ], - "Hepatitis_B_virus__YY002C_e101" : [ - "KJ173331" - ], - "Hepatitis_B_virus__cww1075" : [ - "KC774266" - ], - "Thermus_CCB_US3_UF1" : [ - "NC_017278", - "NC_016634" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1_2P20_2010_c1_2P20" : [ - "KF514421" - ], - "Honeysuckle_yellow_vein_mosaic_disease_associated_satellite_DNA_beta__Nara___Nara" : [ - "AB287443" - ], - "Klebsiella_phage_KP15__KP15" : [ - "NC_014036" - ], - "Tomato_infectious_chlorosis_virus__TICV_SP5131" : [ - "FJ542305" - ], - "Porcine_circovirus_2_09JL" : [ - "HQ395037" - ], - "Hepatitis_B_virus__J126" : [ - "GQ377579" - ], - "Campylobacter_jejuni_00_2544" : [ - "NC_022354", - "NC_022353" - ], - "Watermelon_chlorotic_stunt_virus__JO3_629" : [ - "KM820228" - ], - "Blattabacterium__Panesthia_angustipennis_spadica__BPAA" : [ - "NC_020510" - ], - "Dengue_virus_2__DENV_2_US_BID_V600_2005" : [ - "EU482731" - ], - "Foot_and_mouth_disease_virus___type_SAT_3_SAT3_2sa57_59_sat3_2sa_iso27" : [ - "AY593850" - ], - "Human_immunodeficiency_virus_1__08MHI11" : [ - "JQ316138" - ], - "Bean_yellow_mosaic_virus_GB2" : [ - "AB079888" - ], - "Clostridium_SY8519" : [ - "NC_015737" - ], - "Hepatitis_delta_virus__3" : [ - "HQ005372" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT27B31_2004" : [ - "JF909177" - ], - "Hepatitis_B_virus__ALTAY136" : [ - "AB188245" - ], - "Hepatitis_B_virus__I_T21" : [ - "GU456668" - ], - "Hepatitis_delta_virus_dFr2404_dFr2404" : [ - "AM902174" - ], - "Cauliflower_mosaic_virus__JPNTKD762" : [ - "AB863163" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9372_2013" : [ - "KJ643462" - ], - "Chickpea_chlorotic_dwarf_virus_D__1K10" : [ - "KF176553" - ], - "Hepatitis_B_virus_G683_3" : [ - "AF363963" - ], - "Hepatitis_C_virus_subtype_1a__DN14" : [ - "EU781824" - ], - "Hepatitis_B_virus__HBV161" : [ - "JN688711" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10JX" : [ - "JQ663540" - ], - "Human_herpesvirus_5_Merlin_RCMV1528" : [ - "KM192300" - ], - "Foot_and_mouth_disease_virus___type_C__C_S8p360d951" : [ - "DQ409187" - ], - "Rotavirus_B_IDIR" : [ - "ROTROTAB" - ], - "West_Nile_virus__WNV_1_US_BID_V6652_2002" : [ - "KJ501519" - ], - "Hepatitis_B_virus__J186" : [ - "GQ377615" - ], - "Marburg_marburgvirus_Popp" : [ - "Z29337" - ], - "Enterovirus_A71__THA_EV71_002" : [ - "JF738000" - ], - "Hepatitis_B_virus__G217" : [ - "JQ040163" - ], - "Hepatitis_B_virus__patient34" : [ - "EU919175", - "EU919176" - ], - "Bean_golden_mosaic_virus__BR_Par16_12" : [ - "KJ939795" - ], - "Gallid_herpesvirus_1_SA2" : [ - "JN596962" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P3pp34" : [ - "FJ882960" - ], - "Tula_virus__Tula_Kosice667_Ma_95" : [ - "Y13980" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_3267_2003" : [ - "KJ469615" - ], - "Chicken_anemia_virus__GD_1_12" : [ - "JX260426" - ], - "Foot_and_mouth_disease_virus___type_A_IND40_00" : [ - "HM854025" - ], - "Human_herpesvirus_4_HN3" : [ - "AB850648" - ], - "Japanese_encephalitis_virus__IGIB_NIV_2009_01" : [ - "JN644310" - ], - "Bidens_mottle_virus__SF_1" : [ - "NC_014325" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M06" : [ - "KM110944" - ], - "Hepatitis_B_virus__CRP_228" : [ - "DQ361535" - ], - "Infectious_bursal_disease_virus_Very_virulent_strain_UK661" : [ - "NC_004179", - "NC_004178" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4717_1" : [ - "KR105266" - ], - "Hepatitis_B_virus__MY114622" : [ - "KJ803759" - ], - "African_cassava_mosaic_virus__MG_MG103A2_07" : [ - "KJ887911" - ], - "Propionibacterium_phage_PHL009M11__PHL009M11" : [ - "NC_027336" - ], - "Beak_and_feather_disease_virus__BFDV_B_D_PL_483_2007" : [ - "JX221027" - ], - "Human_rhinovirus_A7_ATCC_VR_1117" : [ - "FJ445176" - ], - "Human_coronavirus_HKU1_N13" : [ - "DQ415909" - ], - "Ustilaginoidea_virens_unassigned_RNA_virus_HNND_1__HNND_1" : [ - "NC_027427" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite__India_Sonipet_TC290_2010" : [ - "KJ605114" - ], - "Hepatitis_B_virus__MOD_4703" : [ - "GQ183464" - ], - "Tomato_yellow_leaf_curl_virus__Cherry_Fadisheh" : [ - "JQ928347" - ], - "Hepatitis_B_virus_OS28" : [ - "EU155826" - ], - "Maize_streak_virus__MSV_A_NG_Ogb2_N30a_2007" : [ - "HQ693389" - ], - "Enterobacteria_phage_MED1" : [ - "KJ997912" - ], - "Hepatitis_B_virus__C123" : [ - "EU939631" - ], - "Human_poliovirus_2_NIE1018421" : [ - "KJ170567" - ], - "West_Nile_virus__WNV_1_US_BID_V7384_2008" : [ - "KJ501206" - ], - "Dengue_virus_3__DENV_3_LK_BID_V2415_1983" : [ - "KF955476" - ], - "BK_polyomavirus__NEC_22" : [ - "AB365146" - ], - "Hepatitis_B_virus__LDA379" : [ - "KF849721" - ], - "Human_immunodeficiency_virus_2" : [ - "HIV2GH1", - "AB485671", - "A09995", - "E02138", - "AB731738", - "AB731741", - "AB731739", - "AB485670", - "AB731745", - "AB731742", - "AB731744", - "HIV2U38293", - "AB731743", - "AB731740" - ], - "Dengue_virus_3_98901517_DHF_DV_3" : [ - "AB189127" - ], - "Pepper_golden_mosaic_virus__Guanajuato1" : [ - "GU128148", - "GU128147" - ], - "European_mountain_ash_ringspot_associated_virus__E52997" : [ - "HG799745" - ], - "Tomato_aspermy_virus__Dhanbad_MP" : [ - "EU163410" - ], - "Hepatitis_E_virus__JBOAR111_Mie11" : [ - "AB780452" - ], - "Mulard_duck_circovirus" : [ - "NC_005053" - ], - "Porcine_circovirus_2__Aust_6" : [ - "AY754017" - ], - "Halovirus_HCTV_2" : [ - "NC_021319" - ], - "Gemycircularvirus_NP_NP" : [ - "KP133080" - ], - "Norovirus_Hu_GII_4_Miyazaki4_2007_JP_Hu_GII_4_Miyazaki4_2007_JP" : [ - "AB541294" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_FR21_2007" : [ - "KM229796" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_132_2012" : [ - "KJ686146" - ], - "Dengue_virus" : [ - "CS479167", - "CS477302", - "CS479203", - "CS479165", - "CS805343", - "CS477306", - "CS805348", - "CS479204", - "CS805347", - "CS477305", - "CS479205", - "CS479202", - "CS805344", - "CS805345", - "CS479206", - "CS477304", - "CS477263", - "CS805346" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4283_2007" : [ - "GU131935" - ], - "Siegesbeckia_yellow_vein_virus__GD27___GD27" : [ - "AM230635" - ], - "Hepatitis_B_virus__BA107" : [ - "FJ657525" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3558_2005" : [ - "GU131837" - ], - "Hepatitis_B_virus__MOD_4570" : [ - "GQ183482" - ], - "Hepatitis_B_virus__318_99_6" : [ - "EU872013" - ], - "Columbid_circovirus_fj1" : [ - "JN183455" - ], - "Mammalian_Orthoreovirus_strain_T3_Bat_Germany_342_08_T3_Bat_Germany_342_08" : [ - "JQ412763", - "JQ412757", - "JQ412756", - "JQ412759", - "JQ412760", - "JQ412762", - "JQ412755", - "JQ412761", - "JQ412758", - "JQ412764" - ], - "Vibrio_phage_KVP40" : [ - "NC_005083" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_81E_020_01_1981" : [ - "KP258709" - ], - "Hepatitis_B_virus__He127" : [ - "AY641561" - ], - "Hepatitis_B_virus_551_32" : [ - "KR013976" - ], - "West_Nile_virus__TX7191" : [ - "JF415920" - ], - "Duck_circovirus__FJZZ302" : [ - "GQ423747" - ], - "Sweet_potato_leaf_curl_Sao_Paulo_virus__TZ_SNG7_12" : [ - "KF836891" - ], - "Flavivirus_White_Kaiya_duck_WR_China_2010_White_Kaiya_duck_WR_China_2010" : [ - "JX196334" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__LY1B12" : [ - "FM164733" - ], - "Beak_and_feather_disease_virus__CS08_424_OBP_TAS_19136" : [ - "KF188684" - ], - "Porcine_epidemic_diarrhea_virus_CH_FJZZ_9_2012" : [ - "KC140102" - ], - "Enterobacteria_phage_P4" : [ - "NC_001609" - ], - "JC_polyomavirus__JCV161FLC_02" : [ - "JF424912" - ], - "Hepatitis_B_virus__C213" : [ - "EU939612" - ], - "Hepatitis_B_virus__WJT20" : [ - "DQ377162" - ], - "Hepatitis_B_virus__SamsunD5" : [ - "AB674436" - ], - "Human_poliovirus_1_NIE1018359" : [ - "KJ170507" - ], - "Dengue_virus_1_D1_SG_05K4174DK1_2005" : [ - "EU081263" - ], - "Dengue_virus_2__DENV_2_US_BID_V1171_1987" : [ - "EU482575" - ], - "Zika_virus_MR766_NIID" : [ - "LC002520" - ], - "Deinococcus_radiodurans_R1" : [ - "NC_000959", - "NC_001264", - "NC_001263", - "NC_000958" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C69" : [ - "KJ019044" - ], - "Human_adenovirus_53__FS165_Fukui_2004" : [ - "AB605246" - ], - "Hepatitis_B_virus__SSC110" : [ - "KJ598688" - ], - "Human_parvovirus_B19__Berlin" : [ - "AJ717293" - ], - "Dengue_virus_2__MD1366" : [ - "FM210234" - ], - "Plum_bark_necrosis_stem_pitting_associated_virus__GS_3" : [ - "KJ792854" - ], - "Hepatitis_B_virus__patient_B__10_98" : [ - "AY738147" - ], - "Dengue_virus_3__D3BR_MR9_03" : [ - "JF808124" - ], - "Pseudomonas_brassicacearum_NFM421" : [ - "NC_015379" - ], - "Dengue_virus_3__DENV_3_US_BID_V1607_2004" : [ - "FJ024466" - ], - "SFTS_virus_LN3_LN3" : [ - "HQ141610", - "HQ141612", - "HQ141611" - ], - "West_Nile_virus_956" : [ - "NC_001563" - ], - "Vibrio_phage_CJY" : [ - "KM612260" - ], - "Human_bocavirus_ZJ42" : [ - "JX887480" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0141" : [ - "KP759689" - ], - "Stachytarpheta_leaf_curl_virus__Hn5" : [ - "NC_004091" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V4268_2008" : [ - "GU131929" - ], - "Heterosigma_akashiwo_RNA_virus_HaRNAV_SOG263" : [ - "NC_005281" - ], - "Tomato_yellow_leaf_curl_virus_TYLCV_SA" : [ - "KF435136" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1525_2007" : [ - "EU677153" - ], - "Dengue_virus_2_D2_TO_UH20_1974" : [ - "HM582113" - ], - "Enterovirus_A71__EV71_Lanzhou01" : [ - "GU396280" - ], - "Norovirus_Hu_GI_1_8McIII_1973_USA_Hu_GI_1_8McIII_1973_USA" : [ - "KF429770" - ], - "Hepatitis_B_virus_adr_subtype_NSS_2" : [ - "AB042283" - ], - "Japanese_encephalitis_virus__YN05155" : [ - "JN381852" - ], - "Dill_cryptic_virus_1__IPP_hortorum" : [ - "NC_022614", - "NC_022615" - ], - "Tomato_spotted_wilt_virus__p105_RB_Mar" : [ - "HQ839729" - ], - "West_Nile_virus__WNV_1_US_BID_V4905_2001" : [ - "HQ671713" - ], - "Banna_virus__BAV_Ch" : [ - "AY549307", - "AY549309", - "AY549308" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_RTBC_13_1780_052" : [ - "KF385399" - ], - "Marburg_marburgvirus_M_S_Africa_Johannesburg_1975_Ozolin" : [ - "AY358025" - ], - "Hepatitis_B_virus_1240_17a" : [ - "KR014021" - ], - "Hepatitis_B_virus__Occult_HK523" : [ - "KJ410513" - ], - "Hepatitis_B_virus__NH30M_e41" : [ - "KJ173322" - ], - "Pseudomonas_phage_LKD16" : [ - "NC_009935" - ], - "Hepatitis_B_virus_HB281" : [ - "HM011474" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_E_SD_FR2_1997" : [ - "KM229789" - ], - "Hepatitis_B_virus__HBV5" : [ - "KC875260" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7342_2002" : [ - "KF973325" - ], - "Calditerrivibrio_nitroreducens_DSM_19672" : [ - "NC_014758", - "NC_014749" - ], - "JC_polyomavirus__FB_1" : [ - "AB103403" - ], - "Pseudomonas_phage_AF_Pseudomonas_putida_GB_1" : [ - "NC_019923" - ], - "Hepatitis_B_virus__PNF4362" : [ - "KF779321" - ], - "Human_immunodeficiency_virus_1__00BW3819_3" : [ - "AF443108" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1566_2007" : [ - "FJ024426" - ], - "Dengue_virus_1__DENV_1_PR_BID_V8182_2010" : [ - "KJ189362" - ], - "Porcine_teschovirus__F65" : [ - "NC_003985" - ], - "Torque_teno_virus__tth6" : [ - "AJ620212" - ], - "Hepatitis_B_virus__bur1013" : [ - "KC774369" - ], - "Coxsackievirus_A16__HN11_03" : [ - "KF193623" - ], - "Bluetongue_virus_4__3222222" : [ - "DQ191279" - ], - "Homalodisca_vitripennis_reovirus__Bakersfield" : [ - "GU362067", - "GU362066", - "GU362070", - "GU362069", - "GU362073", - "GU362071", - "GU362068", - "GU362074", - "GU362065", - "GU362075", - "GU362072", - "GU362064" - ], - "African_cassava_mosaic_virus__MG_MG648A1_11" : [ - "KJ888075" - ], - "Simian_foamy_virus_Pan_troglodytes_troglodytes_AG15" : [ - "JQ867462" - ], - "Human_coronavirus_OC43_OC43_human_USA_873_6_1987" : [ - "KF530087" - ], - "Rabies_virus__1410KOM" : [ - "JQ944707" - ], - "European_mountain_ash_ringspot_associated_virus__E51607" : [ - "HG799712" - ], - "Lactobacillus_casei_LOCK919" : [ - "NC_021721", - "NC_021722" - ], - "Human_papillomavirus_type_6__70" : [ - "HG793878" - ], - "Rotavirus_A__RVA_Human_wt_DEN_L22905121_2011_G9P_8" : [ - "KP013460" - ], - "Legionella_pneumophila_Philadelphia_1" : [ - "NC_002942" - ], - "Torque_teno_virus__TTV_HD14a__gbDhDi33_32" : [ - "NC_015783" - ], - "Duck_hepatitis_A_virus_3_JT" : [ - "JF835025" - ], - "Tomato_yellow_leaf_curl_virus_Abadeh" : [ - "FJ355946" - ], - "Pennisetum_mosaic_virus__AZ9" : [ - "JX070148" - ], - "Hipposideros_bat_coronavirus_HKU10__TLC1310A" : [ - "JQ989268" - ], - "Hepatitis_B_virus__bww1033" : [ - "KC774380" - ], - "Providencia_stuartii_MRSN_2154" : [ - "NC_017731" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3861_2008" : [ - "GU131696" - ], - "Mesta_yellow_vein_mosaic_virus__India_Vizianagaram_2008___Vizianagaram_South_India" : [ - "FJ159270" - ], - "Human_poliovirus_3_NIE1018487" : [ - "KJ170596" - ], - "Faba_bean_necrotic_stunt_virus_Ethiopia_Holetta_JKI_2000" : [ - "NC_013098", - "NC_013096", - "NC_013095", - "NC_013101", - "NC_013100", - "NC_013097", - "NC_013094", - "NC_013099" - ], - "Malvastrum_yellow_vein_betasatellite__Y193" : [ - "AJ971461" - ], - "Cotton_leaf_curl_betasatellite__Punjab" : [ - "KP015741" - ], - "Rotavirus_A__RVA_Human_wt_DEN_2012_L23123674_G9P_8" : [ - "KP013466" - ], - "Coxsackievirus_A2_CVA2_SD_CHN_09" : [ - "HQ728259" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10HD_GD" : [ - "JX215553" - ], - "Coxsackievirus_A24__DSO_52_2005" : [ - "DQ443001" - ], - "Hepatitis_C_virus__QC181" : [ - "KJ439772" - ], - "Human_immunodeficiency_virus_1__92BR023" : [ - "HM100716" - ], - "Honeysuckle_yellow_vein_mosaic_virus__Yamaguchi___TLCV_Y" : [ - "AB079765" - ], - "Watermelon_chlorotic_stunt_virus__IL1_19" : [ - "KM820242" - ], - "West_Nile_virus__WNV_USA_BID_G15493" : [ - "JX503084" - ], - "African_cassava_mosaic_virus__CF_CF80AB_07" : [ - "KJ887783" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7347_2002" : [ - "KF973330" - ], - "Papaya_leaf_curl_China_virus____G12___G12" : [ - "AJ558116" - ], - "Sewage_associated_gemycircularvirus_10a__BS3980" : [ - "NC_026169" - ], - "Rhodobacter_sphaeroides_KD131" : [ - "NC_011962", - "NC_011963", - "NC_011960", - "NC_011958" - ], - "Bacillus_cereus_B4264" : [ - "NC_011725" - ], - "Watermelon_chlorotic_stunt_virus__JO2_413" : [ - "KM820211" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_139_02" : [ - "DQ989322" - ], - "Enterovirus_B69_Toluca_1" : [ - "AY302560" - ], - "Human_respiratory_syncytial_virus_BE_5649_08" : [ - "JX576731" - ], - "Hepatitis_B_virus__CONTROL3" : [ - "JQ801496" - ], - "Hepatitis_E_virus__bjsw1" : [ - "GU206559" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00055_2007_G1P_8" : [ - "KC769307", - "KC769308" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C6" : [ - "KJ019045" - ], - "Potato_virus_X_CP4" : [ - "AF172259" - ], - "Hepatitis_C_virus_subtype_1b_MD15" : [ - "AF207756" - ], - "Hepatitis_B_virus__gib759" : [ - "AJ131569" - ], - "Human_poliovirus_1__RUS36815" : [ - "KC880380" - ], - "Hepatitis_B_virus_49263" : [ - "FM199981" - ], - "Equine_infectious_anemia_virus_DLV_DLV7_18" : [ - "HM141914" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__TP6_5" : [ - "GU723731" - ], - "Hepatitis_B_virus__C9_3" : [ - "FJ899762" - ], - "BK_polyomavirus__SHA_28" : [ - "AB365167" - ], - "Anaconda_paramyxovirus__1203RN009" : [ - "KJ956406" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1924_2008" : [ - "FJ410256" - ], - "Ketogulonicigenium_vulgare_Y25" : [ - "NC_014621", - "NC_014625", - "NC_014626" - ], - "Maize_streak_virus__UMasin_149" : [ - "EF547098" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_K_SD_FR13_2008" : [ - "KM229902" - ], - "Hepatitis_B_virus__WY_SD_19" : [ - "JX429915" - ], - "Aphid_lethal_paralysis_virus__ALPV_An" : [ - "JX480861" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00108_2010_G1P_8" : [ - "JN651884", - "JN651886", - "JN651885", - "JN651882", - "JN651889", - "JN651887", - "JN651880", - "JN651881", - "JN651883", - "JN651879", - "JN651888" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9552_2013" : [ - "KJ643584" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_89I_132A_01_1989" : [ - "KJ723482" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1359" : [ - "KM573769" - ], - "Hepatitis_delta_virus__TWD62_16" : [ - "AY648952" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3761_2008" : [ - "GU131984" - ], - "Bovine_viral_diarrhea_virus_3_JS12_01" : [ - "JX469119" - ], - "Bacillus_amyloliquefaciens_plantarum_YAU_B9601_Y2" : [ - "NC_017061" - ], - "Chickpea_chlorotic_dwarf_virus__A_IP_175_99" : [ - "KC172661" - ], - "Sida_yellow_mosaic_virus__China__associated_DNA_beta__Hn7" : [ - "AM048833" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_LN2012_41" : [ - "KF887438", - "KF887433", - "KF887443" - ], - "Human_adenovirus_47" : [ - "JN226757" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_BJSY07" : [ - "HM011104" - ], - "Hepatitis_B_virus__TK45" : [ - "JF754609" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_B1_2D_V" : [ - "JX570647" - ], - "Dengue_virus_2__DENV_2_US_BID_V597_1998" : [ - "EU482728" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7682_2012" : [ - "KF973468" - ], - "Hepatitis_B_virus__C4_HBVST2" : [ - "HPBC4HST2" - ], - "Hepatitis_B_virus__HBV_PH4" : [ - "AB116094" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT42B03_2008" : [ - "JF909242" - ], - "Bluetongue_virus_1__NIG1982_01" : [ - "AJ586657" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V388_2005" : [ - "EU155265" - ], - "Po_Circo_like_virus_22" : [ - "JF713717" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00093_X_NEW_P37H37F17" : [ - "KF268208" - ], - "Hepatitis_B_virus__C233" : [ - "EU939619" - ], - "Tannerella_forsythia_ATCC_43037" : [ - "NC_016610" - ], - "Human_papillomavirus_type_52__JP0347" : [ - "AB819273" - ], - "Porcine_epidemic_diarrhea_virus__KNU_141112_P5" : [ - "KR873434" - ], - "West_Nile_virus__NY10_03" : [ - "JQ700437" - ], - "Hepatitis_B_virus__MGL108F" : [ - "AB270545" - ], - "Hepatitis_B_virus_1485_7a" : [ - "KR014083" - ], - "Newcastle_disease_virus__Pi_Rus_Vladimir_687_05" : [ - "JF827026" - ], - "Hepatitis_B_virus__G204" : [ - "JQ040159" - ], - "Infectious_bursal_disease_virus__IC_IBDV_Br" : [ - "KC603937", - "KC603936" - ], - "Human_poliovirus_1_NIE1218352" : [ - "KJ170519" - ], - "Wheat_dwarf_virus__NXYN07_2" : [ - "KJ536100" - ], - "Dengue_virus_1__HNRG14043" : [ - "KC692506" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4886_1" : [ - "KR105276" - ], - "Hepatitis_B_virus__serum_07_92" : [ - "DQ788725" - ], - "Rift_Valley_fever_virus_KEN07_KLF112" : [ - "EF467177" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1574_2007" : [ - "FJ024434" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00352_2011" : [ - "KJ672582" - ], - "Hepatitis_B_virus__SHB1C2" : [ - "KJ598635" - ], - "Dengue_virus_2__MD861" : [ - "FM210226" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9520_2013" : [ - "KJ643567" - ], - "Hepatitis_delta_virus_TW2476" : [ - "AF104264" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1208_2007" : [ - "EU569697" - ], - "Goose_circovirus__CPA13007_1" : [ - "KP229371" - ], - "Human_respiratory_syncytial_virus__06_000103" : [ - "JX015487" - ], - "Duck_hepatitis_A_virus_1__JH2" : [ - "EU395435" - ], - "West_Nile_virus__Bird_1171" : [ - "AY712946" - ], - "Duck_circovirus__29_1" : [ - "KF941311" - ], - "Human_papillomavirus_type_6__LP96_175" : [ - "FR751332" - ], - "South_African_cassava_mosaic_virus__MG_MG225A2_10" : [ - "KJ887683" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4836_2009" : [ - "HQ705618" - ], - "Hepatitis_B_virus__2040" : [ - "FJ386614" - ], - "Watermelon_chlorotic_stunt_virus__JO1_113" : [ - "KM820191" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V456_2006" : [ - "EU482863" - ], - "Xanthomonas_phage_Xp15" : [ - "NC_007024" - ], - "Sus_scrofa_papillomavirus_1__variant_a" : [ - "NC_011280" - ], - "Yerba_mate_endornavirus_INTA" : [ - "NC_024455" - ], - "Sclerotinia_sclerotiorum_hypovirulence_associated_DNA_virus_1__SsHADV_1_NZ_SR3_2012" : [ - "KF268027" - ], - "Maize_streak_virus__MSV_A_GH_gh130_Aki_2010" : [ - "KJ699319" - ], - "South_African_cassava_mosaic_virus__MG_MG50A1_06" : [ - "KJ887868" - ], - "Porcine_circovirus_2__PCV2_Uy_2" : [ - "KC688419" - ], - "Sewage_associated_gemycircularvirus_7b__BS3972" : [ - "KJ547640" - ], - "Rabies_virus_SAD_B19_5th" : [ - "EU877070" - ], - "Human_herpesvirus_3_VZVi_Munich_GER_30_07_Z_3__1219_2007" : [ - "JN704703" - ], - "Human_papillomavirus_type_6__113" : [ - "HG793921" - ], - "African_cassava_mosaic_virus__CF_CF27BE_07" : [ - "KJ887590" - ], - "Hepatitis_B_virus__S1217" : [ - "FJ386679" - ], - "Influenza_B_virus_B_Lee_40" : [ - "NC_002210", - "NC_002206", - "NC_002208", - "NC_002209", - "NC_002207", - "NC_002205", - "NC_002211", - "NC_002204" - ], - "Grapevine_leafroll_associated_virus_5_Y217" : [ - "NC_016081" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ23BE1_2009" : [ - "JF909208" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C37" : [ - "KJ019162" - ], - "Human_rotavirus_A_MW333" : [ - "AJ278257", - "AJ278255" - ], - "Simian_virus_40__SV40_Ad_212" : [ - "EF579661" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__YN65_2" : [ - "KC149942" - ], - "Norovirus_Hu_GII_20478_2010_VNM_Hu_GII_20478_2010_VNM" : [ - "KC409303" - ], - "Human_immunodeficiency_virus_1__BCF_DIOUM" : [ - "AB485660", - "AB485661" - ], - "Hepatitis_B_virus__165" : [ - "EU787436" - ], - "Human_parainfluenza_virus_3_HPIV3_USA_629_D00687_2008" : [ - "KF530242" - ], - "Echovirus_E30_Echo30_Zhejiang_17_03_CSF" : [ - "DQ246620" - ], - "Hepatitis_B_virus_593_8" : [ - "KR013992" - ], - "Streptobacillus_moniliformis_DSM_12112" : [ - "NC_013516", - "NC_013515" - ], - "Saprospira_grandis_Lewin" : [ - "NC_016940", - "NC_016936" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC50AM4_2009" : [ - "JF909221" - ], - "Bhendi_yellow_vein_India_virus__India_Pandarahalli_OY168A_2006___OY168A" : [ - "GU112041" - ], - "GB_virus_C__765" : [ - "AY196904" - ], - "West_Nile_virus__WNV_1_US_BID_V6666_2006" : [ - "KJ501406" - ], - "Human_immunodeficiency_virus_1__ES_X1959__B" : [ - "EU786675" - ], - "Bean_golden_mosaic_virus__BR_Par5_12" : [ - "KJ939799" - ], - "Citrus_endogenous_pararetrovirus" : [ - "KF800045", - "NC_023153", - "KF800044" - ], - "Sewage_associated_circular_DNA_virus_36__SaCV_36_NZ_BS3974_2012" : [ - "NC_026255" - ], - "Dengue_virus_1__13501_BR_PE_10" : [ - "JX669463" - ], - "Dengue_virus_3__DENV_3_US_BID_V1619_2005" : [ - "FJ182009" - ], - "Porcine_circovirus_2__A5295" : [ - "JF317585" - ], - "Malvastrum_yellow_vein_Baoshan_virus__Y340" : [ - "FN806779" - ], - "West_Nile_virus__WNV_1_US_BID_V4613_2003" : [ - "HM488231" - ], - "Hepatitis_B_virus__BOL93" : [ - "AB365449" - ], - "Budgerigar_fledgling_disease_polyomavirus_APV1" : [ - "AB453159" - ], - "Human_immunodeficiency_virus_1__05YJN2" : [ - "JQ316134" - ], - "Ramie_mosaic_virus__F3" : [ - "FJ874926", - "EF125190" - ], - "Potato_virus_Y_strain_N__New_Zealand" : [ - "AM268435" - ], - "Porcine_circovirus_2_HY1106" : [ - "JX948778" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_225_2011" : [ - "KJ686165" - ], - "West_Nile_virus__WNV_1_US_BID_V6517_2001" : [ - "KJ501336" - ], - "Duck_hepatitis_A_virus_1__FS" : [ - "EU395438" - ], - "Hepatitis_B_virus__BTO3048" : [ - "KC172106" - ], - "Enterovirus_A71__02_0_079" : [ - "KP691643" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7359_2002" : [ - "KF973340" - ], - "Black_raspberry_necrosis_virus__FI_HAU26A_09" : [ - "HE611022", - "HE614901" - ], - "Lily_mottle_virus__Bate5" : [ - "JN127341" - ], - "Porcine_circovirus_2_JS0737" : [ - "GQ358995" - ], - "Human_papillomavirus_type_16__Qv17722E" : [ - "AY686584" - ], - "Sulfolobus_virus_Kamchatka_1" : [ - "NC_005361" - ], - "Human_poliovirus_1_NIE0918314" : [ - "KJ170477" - ], - "Hepatitis_B_virus__HBV_HK11" : [ - "AB073827" - ], - "Human_adenovirus_21a__LRTI_1" : [ - "KF577599", - "KF577595" - ], - "Maize_streak_virus__MSV_B1_Za_LouA_g214_2007" : [ - "EU628587" - ], - "Hepatitis_B_virus__cww1014" : [ - "KC774246" - ], - "Synechococcus_phage_S_SM1_6501_1" : [ - "NC_015282" - ], - "Sweet_potato_leaf_curl_virus_USA_SPLCV_US_BR_PV_08" : [ - "HQ393451" - ], - "Human_poliovirus_3_NIE1018480" : [ - "KJ170588" - ], - "Sulfolobus_islandicus_L_S_2_15" : [ - "NC_012589" - ], - "Human_immunodeficiency_virus_1__WC10C_6" : [ - "AY314058" - ], - "Torque_teno_sus_virus_1b__TTV2Gx1" : [ - "HM633229" - ], - "Slow_loris_parvovirus_1_Buddha_08" : [ - "NC_025891" - ], - "Salmonella_enterica_serovar_Typhi_Ty21a" : [ - "NC_021176" - ], - "Hepatitis_B_virus__S659_2" : [ - "FJ032342" - ], - "Chikungunya_virus__SGEHICHS424108" : [ - "FJ445443" - ], - "Human_immunodeficiency_virus_1__04ZAPS199B1" : [ - "DQ164110" - ], - "Siegesbeckia_yellow_vein_Guangxi_virus__G111" : [ - "NC_008317" - ], - "Hepatitis_B_virus__PNF5743" : [ - "KF779374" - ], - "SARS_coronavirus_TW2__TW2" : [ - "AY502925" - ], - "Human_herpesvirus_5_HAN1" : [ - "JX512199" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_571_2008" : [ - "JX221031" - ], - "Hepatitis_B_virus__HK290" : [ - "DQ089775" - ], - "Hepatitis_B_virus__J98" : [ - "GQ377563" - ], - "Newcastle_disease_virus__La_Sota_C5" : [ - "KC844235" - ], - "Maize_streak_virus__ULuw_103" : [ - "EF547084" - ], - "Beak_and_feather_disease_virus__2NC40F" : [ - "JX049207" - ], - "Wheat_dwarf_virus____Sanxi_Yangling___SXYL05_2" : [ - "EF536878" - ], - "Hepatitis_B_virus_OS39" : [ - "EU155827" - ], - "Blainvillea_yellow_spot_virus__BR_Rla4_10" : [ - "JX871390" - ], - "Porcine_circovirus_2_131_05_IB_131_05_Br" : [ - "KC835192" - ], - "Enterovirus_A71_EV71_GDFS_3_2008" : [ - "FJ194964" - ], - "Echovirus_E15_CH_96_51" : [ - "AY302541" - ], - "Dengue_virus_2__DENV_2_US_BID_V1487_2003" : [ - "EU687238" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI1296_2011_A" : [ - "KJ627388" - ], - "Dengue_virus_3__DENV_3_NI_BID_V2420_1994" : [ - "FJ882576" - ], - "Human_poliovirus_1_NIE1018357" : [ - "KJ170520" - ], - "Hepatitis_B_virus__bxa2018" : [ - "KC774410" - ], - "Cucumber_mosaic_virus_satellite_RNA_T2" : [ - "X86410" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota17A" : [ - "KP283403" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO18AP2_2009" : [ - "JF909144" - ], - "Wheat_dwarf_virus_H07_barley_H07" : [ - "FM210034" - ], - "Xylella_fastidiosa_GB514" : [ - "NC_017561", - "NC_017562" - ], - "Hepatitis_B_virus__S4_2" : [ - "EU916216" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_tc_COD_1976_Yambuku_Ecran" : [ - "KM655246" - ], - "Maize_streak_virus__MSV_B3_Re_BasB_R2_2006" : [ - "EU628616" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V397_2006" : [ - "EU256050" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JM" : [ - "KP998410" - ], - "Epizootic_hemorrhagic_disease_virus_2__600045" : [ - "EHDSEG2G" - ], - "Hepatitis_B_virus__S129_8" : [ - "FJ787438" - ], - "Bacillus_phage_Hakuna" : [ - "NC_024213" - ], - "Beak_and_feather_disease_virus__BFDV5" : [ - "GU015016" - ], - "Human_enterovirus_C117_LIT22" : [ - "JX262382" - ], - "Chikungunya_virus_RGCB729_09" : [ - "KJ796845" - ], - "Viral_hemorrhagic_septicemia_virus_SE_SVA_14_5G" : [ - "AB839746" - ], - "Human_parainfluenza_virus_2_V94" : [ - "AF533010" - ], - "Faecal_associated_gemycircularvirus_5__P24b" : [ - "NC_025735" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ07B26_2003" : [ - "JF909071" - ], - "Newcastle_disease_virus_qu_CH_LJS_101107" : [ - "KJ607170" - ], - "Porcine_circovirus_2__BG0_1" : [ - "JQ181592" - ], - "Macrophomina_phaseolina_tobamo_like_virus_IL_01_2013" : [ - "NC_025674" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM096" : [ - "KM034551" - ], - "Corchorus_golden_mosaic_virus__BKP09" : [ - "KF962543" - ], - "Tomato_yellow_leaf_curl_virus__Cheongwon2" : [ - "JX961665" - ], - "Capnocytophaga_canimorsus_Cc5" : [ - "NC_015846" - ], - "Human_parainfluenza_virus_1_HPIV1_FRA_27343049_2007" : [ - "KF530215" - ], - "Hepatitis_B_virus__TK106" : [ - "JF754596" - ], - "Bean_golden_mosaic_virus__BR_Arp1_05" : [ - "KJ939707" - ], - "Hepatitis_B_virus__A1_1" : [ - "GU815548" - ], - "Rice_black_streaked_dwarf_virus__Ly_m1" : [ - "EU267105" - ], - "Equus_ferus_caballus_papillomavirus_type_7" : [ - "NC_020501" - ], - "Common_moorhen_coronavirus_HKU21_HKU21_8295" : [ - "NC_016996" - ], - "Rothia_dentocariosa_ATCC_17931" : [ - "NC_014643" - ], - "Porcine_circovirus_2_Shandong" : [ - "HM003569" - ], - "Tomato_leaf_curl_Gujarat_virus__TC51" : [ - "KP164863" - ], - "Hydrogenobaculum_SN" : [ - "NC_020814" - ], - "Mannheimia_haemolytica_USMARC_2286" : [ - "NC_021883" - ], - "Infectious_bursal_disease_virus__CAHFS_K669" : [ - "JN585293" - ], - "JC_polyomavirus__JP_7" : [ - "AB081016" - ], - "Hepatitis_B_virus__dxn1064" : [ - "KC774486" - ], - "JC_polyomavirus__FC_3a" : [ - "AB104487" - ], - "Cucumber_Bulgarian_virus__W12_101" : [ - "KJ572966" - ], - "Anatid_herpesvirus_1_CV" : [ - "JQ673560" - ], - "West_Nile_virus__WNV_1_US_BID_V7395_2003" : [ - "KJ501107" - ], - "Bean_golden_mosaic_virus__BR_Par2_12" : [ - "KJ939793" - ], - "Porcine_circovirus_2__XZBK" : [ - "KF926650" - ], - "Human_immunodeficiency_virus_1__03ZASK008B2" : [ - "DQ164123" - ], - "Thermotoga_elfii_NBRC_107921" : [ - "NC_022792" - ], - "SARS_coronavirus_ShanghaiQXC1_ShanghaiQXC1" : [ - "AY463059" - ], - "Nostoc_punctiforme_PCC_73102" : [ - "NC_010631", - "NC_010630", - "NC_010629", - "NC_010632", - "NC_010633", - "NC_010628" - ], - "Human_immunodeficiency_virus_1__04ZASK150B1" : [ - "DQ011178" - ], - "Cucumber_green_mottle_mosaic_virus__C" : [ - "FJ654658" - ], - "Human_immunodeficiency_virus_1__CTL_016" : [ - "EF514704" - ], - "Heterocapsa_circularisquama_RNA_virus__HcRNAV109" : [ - "AB218609" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5520_1" : [ - "KR105308" - ], - "Rotavirus_A_RVA_Pig_tc_ESP_OSU_C5111_2010_G5P_7" : [ - "KJ450850", - "KJ450842", - "KJ450848", - "KJ450849", - "KJ450843", - "KJ450852", - "KJ450845", - "KJ450851", - "KJ450847", - "KJ450844" - ], - "Hepatitis_B_virus_1240_13" : [ - "KR013835" - ], - "Dengue_virus_2__DENV_2_VN_BID_V762_2003" : [ - "EU482784" - ], - "Maize_streak_virus__MSV_A_NG_ng8_Ife_2011" : [ - "KJ437664" - ], - "Wheat_dwarf_virus____Hebei_Shijiazhuang___HBSJZ06_6" : [ - "EF536866" - ], - "Helicobacter_pylori_P12" : [ - "NC_011498", - "NC_011499" - ], - "Tomato_leaf_curl_New_Delhi_virus__Lahore" : [ - "HG316125", - "KC969439", - "HG316126", - "KC960492" - ], - "Foot_and_mouth_disease_virus___type_O__Israel_07_6389" : [ - "FJ175664" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8485_2010" : [ - "KJ627333" - ], - "Streptomyces_cattleya_NRRL_8057___DSM_46488" : [ - "NC_017585", - "NC_017586" - ], - "Turkey_astrovirus__provided_by_Dr__Y_M__Saif__Ohio_State_University" : [ - "NC_002470" - ], - "Simian_immunodeficiency_virus__SIVcpzDP943" : [ - "EF535993" - ], - "Rift_Valley_fever_virus_Sudan_77_2007" : [ - "JQ820482" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_70U74_1970_IE" : [ - "KC344443" - ], - "Porcine_circovirus_2_05_27720" : [ - "EF394777" - ], - "Bidens_mottle_virus__WF" : [ - "EU250213" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0004" : [ - "KP759668" - ], - "Porcine_circovirus_2_Fh14" : [ - "AY321982" - ], - "South_African_cassava_mosaic_virus__MG_MG545A5_11" : [ - "KJ887731" - ], - "Tomato_leaf_curl_Taiwan_virus_ZJWZ5__ZJWZ5" : [ - "FN256292" - ], - "Hepatitis_B_virus__J156" : [ - "GQ377596" - ], - "Potato_virus_T" : [ - "NC_011062" - ], - "Bean_yellow_mosaic_virus__LMBNN" : [ - "HG970855" - ], - "Hepatitis_B_virus__B3_1" : [ - "GU815606", - "HQ231877" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1072" : [ - "KM573770" - ], - "Human_respiratory_syncytial_virus_12_001238" : [ - "JX576736" - ], - "Human_herpesvirus_2__HSV_2_JP_BID_G32587_JA2" : [ - "KR135323" - ], - "Human_calicivirus_NLV_GII_Langen1061_2002_DE_Hu_NLV_GII_Langen1061_2002_DE" : [ - "AY485642" - ], - "Hepatitis_B_virus__S2" : [ - "JQ000009", - "EU678471" - ], - "West_Nile_virus__WNV_1_US_BID_V4367_2004" : [ - "HM488189" - ], - "Bovine_polyomavirus_1__1S5" : [ - "KM496323" - ], - "Hepatitis_B_virus__PRC6296" : [ - "KF779383" - ], - "Xanthomonas_oryzae_MAFF_311018" : [ - "NC_007705" - ], - "Hepatitis_B_virus_951_15" : [ - "KR013822" - ], - "Venezuelan_equine_encephalitis_virus_V3526" : [ - "AY741139" - ], - "Tick_borne_encephalitis_virus_Primorye_253" : [ - "EU816451" - ], - "Newcastle_disease_virus__APMV1_Pigeon_PA_USA_0725_2007" : [ - "KC013039" - ], - "Tailam_virus_TL8K" : [ - "NC_025355" - ], - "JC_polyomavirus__JCV176FLC_22" : [ - "JF424896" - ], - "Dengue_virus_2__DENV_2_NI_BID_V513_2005" : [ - "EU482748" - ], - "Human_gyrovirus_type_1__915_F_06_007_FD" : [ - "NC_015630" - ], - "Prochlorococcus_phage_Syn33_Syn33" : [ - "NC_015285" - ], - "Panicum_streak_virus____Kenya" : [ - "X60168" - ], - "Thogoto_virus_SiAr_126" : [ - "THORNA3", - "NC_006507", - "NC_006508" - ], - "Fathead_minnow_picornavirus__20" : [ - "KF874490" - ], - "Porcine_circovirus_2_HEN0901" : [ - "GU450328" - ], - "Madariaga_virus_MADV_Cebus_apella_BRA_BEAN5122_1956" : [ - "NC_023812" - ], - "Human_parechovirus_1__7555312" : [ - "FM178558" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0145" : [ - "KP759693" - ], - "Dengue_virus_3_D3_SG_05K4144DK1_2005" : [ - "EU081215" - ], - "Newcastle_disease_virus__chicken_CP_Pakistan_2010" : [ - "JN682211" - ], - "Lymphocytic_choriomeningitis_mammarenavirus__Marseille__12" : [ - "DQ286932", - "DQ286931" - ], - "Ravn_virus___Ravn__Kenya__1987" : [ - "EF446131" - ], - "Murid_herpesvirus_1_C4B" : [ - "HE610452" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20142065" : [ - "KR653274" - ], - "Coxsackievirus_A16_CA16_GD09_119_CA16" : [ - "KC117318" - ], - "Sweet_potato_leaf_curl_Spain_virus_Bahia_SPLCESV_BA_BR_Cac_08" : [ - "HQ393458" - ], - "Human_poliovirus_1__DOR01002C" : [ - "AF405671" - ], - "Rabies_virus_HEP_Flury" : [ - "AB085828" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_83I_100A_01_1983" : [ - "KJ723479" - ], - "Human_immunodeficiency_virus_1__03ZASK098B1" : [ - "AY878061" - ], - "Human_smacovirus_1__Oregon_6_2011_GottageGrove_5A1" : [ - "KP233180" - ], - "Human_immunodeficiency_virus_1__01IC_PCI118" : [ - "AJ866556" - ], - "Hepatitis_A_virus__18f" : [ - "KP879216" - ], - "Hepatitis_B_virus__WHAMR2" : [ - "JN257209" - ], - "Human_immunodeficiency_virus_1__15387_1" : [ - "DQ853455" - ], - "West_Nile_virus__WNV_1_US_BID_V4563_2003" : [ - "HM488174" - ], - "Bhendi_yellow_vein_India_virus__India_Jalgov_OY129_2006___OY129" : [ - "GU112037" - ], - "South_African_cassava_mosaic_virus__MG_MG414A2_11" : [ - "KJ887716" - ], - "West_Nile_virus__WNV_1_US_BID_V6553_2003" : [ - "KJ501506" - ], - "Coxiella_burnetii_Dugway_5J108_111" : [ - "NC_009726", - "NC_009727" - ], - "Hepatitis_B_virus_1346_11" : [ - "KR013854" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH14_2010" : [ - "KM188443" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1774_2007" : [ - "FJ410194" - ], - "Hepatitis_B_virus__bne250" : [ - "FN594756" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2329_2001" : [ - "FJ744740" - ], - "Human_poliovirus_3_NIE1118469" : [ - "KJ170648" - ], - "Tobacco_curly_shoot_virus__TC366" : [ - "JX457342", - "JX457341", - "JX467693", - "JX467692" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V420_2002" : [ - "EU155317" - ], - "Granulibacter_bethesdensis_CGDNIH1" : [ - "NC_008343" - ], - "Dengue_virus_3_D3_SG_05K3329DK1_2005" : [ - "EU081205" - ], - "Human_immunodeficiency_virus_1__09YNRL215050sg" : [ - "KC899012" - ], - "Hepatitis_B_virus__78" : [ - "AF297621" - ], - "Hepatitis_B_virus__cww1107" : [ - "KC774272" - ], - "GB_virus_C__R10291" : [ - "HGU45966" - ], - "Hepatitis_B_virus__PNF4414" : [ - "KF779323" - ], - "Wild_tomato_mosaic_virus__Laichau" : [ - "NC_009744" - ], - "Tomato_leaf_curl_Joydebpur_betasatellite__India_Ponduru_Kenaf_2007___ToLCB_kenaf_03" : [ - "EU880233" - ], - "Enterobacteria_phage_JSE" : [ - "NC_012740" - ], - "Hepatitis_B_virus__SHB35" : [ - "KJ598668" - ], - "Staphylococcus_phage_44AHJD" : [ - "NC_004678" - ], - "Hepatitis_B_virus__MOD_4575" : [ - "GQ183475" - ], - "Hepatitis_B_virus__patient25" : [ - "EU919166", - "EU919167" - ], - "Porcine_circovirus_2__P2425NT" : [ - "JX099786" - ], - "Japanese_encephalitis_virus_Sw_Mie_84_2005" : [ - "AB698906" - ], - "Dicentrarchus_labrax_betanodavirus__389_I96" : [ - "KF386163" - ], - "Pantoea_phage_LIMEzero" : [ - "NC_015585" - ], - "Hepatitis_B_virus__3274v2" : [ - "KF922430" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4031_2008" : [ - "GU131790" - ], - "Staphylococcus_phage_A5W" : [ - "EU418428" - ], - "Human_herpesvirus_3_MSP" : [ - "AY548170" - ], - "Porcine_circovirus_2__HN13" : [ - "KM067385" - ], - "Hepatitis_B_virus__2135" : [ - "FJ386622" - ], - "Tomato_yellow_leaf_curl_virus__SD_LW" : [ - "KM435321" - ], - "Faba_bean_necrotic_yellows_virus__Roldan_Mu_R4" : [ - "KC979034" - ], - "Norovirus_Hu_GII_4_CGMH17_2007_TW" : [ - "JN400615" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1105" : [ - "KR534579" - ], - "Chikungunya_virus_M128" : [ - "KM923919" - ], - "Desulfosporosinus_meridiei_DSM_13257" : [ - "NC_018515" - ], - "SARS_coronavirus_WHU" : [ - "AY394850" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_101_99" : [ - "DQ989310" - ], - "Simian_rotavirus_SA11" : [ - "X07831", - "X14204" - ], - "Boiling_Springs_Lake_RNA_DNA_hybrid_virus" : [ - "NC_025411" - ], - "Hepatitis_B_virus__Leb47" : [ - "JN642153" - ], - "Poplar_mosaic_virus__PV_0341" : [ - "NC_005343" - ], - "Dengue_virus_1_RGCB585_D1_IN_RGCB585_2009" : [ - "JN903580" - ], - "Porcine_circovirus_2_BJ0803" : [ - "EU921256" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7046_2004" : [ - "KJ189265" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_31_2011" : [ - "KJ686228" - ], - "Hepatitis_B_virus__B27" : [ - "FJ904435" - ], - "Vibrio_phage_VP3" : [ - "JQ780163" - ], - "Hepatitis_B_virus__clz2047" : [ - "KC774201" - ], - "West_Nile_virus_2_TX_2002_2" : [ - "DQ164205" - ], - "Orf_virus_D1701" : [ - "HM133903" - ], - "Malvastrum_yellow_vein_Changa_Manga_virus" : [ - "NC_014647" - ], - "Hepatitis_C_virus__TV533" : [ - "JX183553" - ], - "Enterovirus_A71__JiLin_11_China" : [ - "KC414134" - ], - "BK_polyomavirus__CAF_5" : [ - "AB263913" - ], - "Dengue_virus_2_DENV_2_SG_07K3608DK1_2008" : [ - "GQ398265" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3640_2008" : [ - "GU131880" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140100" : [ - "KR653241" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_14265_2003" : [ - "KJ469582" - ], - "Hepatitis_B_virus_1130_24a" : [ - "KR014004" - ], - "Human_rotavirus_C_BCN9" : [ - "AM118025", - "AM118022", - "AM118019" - ], - "Helicobacter_hepaticus_ATCC_51449" : [ - "NC_004917" - ], - "Mumps_virus_Miyahara" : [ - "NC_002200" - ], - "Dahlia_mosaic_virus__D10_LT" : [ - "KC845546" - ], - "Hepatitis_B_virus__CH6" : [ - "DQ823090" - ], - "Capnocytophaga_ochracea_DSM_7271" : [ - "NC_013162" - ], - "Hepatitis_B_virus__8033" : [ - "KJ470890" - ], - "Rock_bream_iridovirus__RBIV_C1" : [ - "KC244182" - ], - "Stanieria_cyanosphaera_PCC_7437" : [ - "NC_019749", - "NC_019766", - "NC_019750", - "NC_019748", - "NC_019765", - "NC_020052" - ], - "Equus_ferus_caballus_papillomavirus_type_4" : [ - "NC_020085" - ], - "Porcine_parvovirus_Kresse" : [ - "PPU44978" - ], - "Hepatitis_B_virus__S425_16" : [ - "FJ787480" - ], - "Hepatitis_B_virus_1346_29" : [ - "KR014038" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kamboinse_Okra1" : [ - "FN554538" - ], - "Octadecabacter_antarcticus_307" : [ - "NC_020907", - "NC_020911" - ], - "Porcine_coronavirus_HKU15_Michigan_8977_2014" : [ - "KM012168" - ], - "Gallid_herpesvirus_1_A20" : [ - "JN596963" - ], - "Human_immunodeficiency_virus_1__671_99T12" : [ - "AY423381" - ], - "Peste_des_petits_ruminants_virus__E32_1969" : [ - "KP789375" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLA5066_2008_A" : [ - "KJ627426" - ], - "Tomato_leaf_curl_New_Delhi_virus_ToLCNDV_Indonesia__Indonesia_Java_Cucumber_2008" : [ - "AB613825", - "AB613826" - ], - "Hepatitis_B_virus__GU1671" : [ - "GQ161766" - ], - "Hepatitis_B_virus__BFJT2003_1" : [ - "AB642097" - ], - "Hepatitis_B_virus__J9" : [ - "GQ377515" - ], - "Hepatitis_B_virus__S_IDU4" : [ - "EU185787" - ], - "Trichomonas_vaginalis_virus_3_TVV3_UR1" : [ - "HQ607515" - ], - "Hepatitis_B_virus__AnkaraE33" : [ - "AB674414" - ], - "Tick_borne_encephalitis_virus_285" : [ - "KC835596" - ], - "Porcine_epidemic_diarrhea_virus_USA_NorthCarolina66_2013" : [ - "KJ645662" - ], - "Hepatitis_C_virus__QC182" : [ - "JF735112" - ], - "JC_polyomavirus__CW_6" : [ - "AB118659" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_26__AHEaCV_26_NZ_2311TU_2012" : [ - "NC_026626" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2207_2001" : [ - "FJ639774" - ], - "Hepatitis_B_virus__Ran128" : [ - "EF103285" - ], - "Hepatitis_B_virus__cxa2041" : [ - "KC774316" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7719_2012" : [ - "KJ189359" - ], - "Chicken_anemia_virus_GD_C_12" : [ - "KF224927" - ], - "Synechococcus_phage_S_SM2_8017_1" : [ - "NC_015279" - ], - "Bean_golden_mosaic_virus__BR_Par3_12" : [ - "KJ939796" - ], - "Potato_virus_Y__RB" : [ - "HM367076" - ], - "Hepatitis_B_virus_1240_21a" : [ - "KR013837" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1279" : [ - "KR534589" - ], - "Rice_tungro_spherical_virus_Vt6" : [ - "AB064963" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD141_2013" : [ - "KM229815" - ], - "Maize_streak_virus__MSV_B1_Za_Ovw_M15_1999" : [ - "EU628595" - ], - "Human_immunodeficiency_virus_1___117" : [ - "AB428551" - ], - "Maize_streak_virus__MSV_A_CF_Bim1_Car16_2008" : [ - "HQ693305" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V24_2003" : [ - "EU862823" - ], - "Porcine_bocavirus_4_1_SH17N_1" : [ - "NC_016032" - ], - "Dengue_virus_2__DC378Y11" : [ - "KM279520" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US26" : [ - "KJ019091" - ], - "Broad_bean_wilt_virus_2__RP3" : [ - "JX183225", - "JX183226" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Sirajganj_2013___Bangladesh_Sirajganj_2013" : [ - "AB971857", - "AB971856" - ], - "Hepatitis_B_virus__HK0015" : [ - "KJ410498" - ], - "Dengue_virus_3_D3_SG_05K3316DK1_2005" : [ - "EU081202" - ], - "Middle_East_respiratory_syndrome_coronavirus__Hu_France___FRA2_130569_2013_Isolate_Sanger" : [ - "KJ361503" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA140" : [ - "KF670681" - ], - "Tomato_severe_rugose_virus__BR_Flo165_08" : [ - "KC004070" - ], - "Barley_yellow_dwarf_virus_Ker_II__K439" : [ - "NC_021481" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_1876" : [ - "JQ765575" - ], - "Porcine_circovirus_2_TJ06" : [ - "EF524539" - ], - "Streptococcus_pneumoniae_TCH8431_19A" : [ - "NC_014251" - ], - "Methanoregula_boonei_6A8" : [ - "NC_009712" - ], - "Tetraselmis_viridis_virus_SI1_SI1" : [ - "NC_020861" - ], - "Banana_streak_UL_virus" : [ - "NC_015504" - ], - "Xipapillomavirus_1" : [ - "NC_004197", - "AJ620207" - ], - "Hepatitis_B_virus__cxa2067" : [ - "KC774326" - ], - "Human_immunodeficiency_virus_1__5019_84" : [ - "AY835779" - ], - "bacterium_BT_1" : [ - "NC_019907" - ], - "Hepatitis_B_virus__WY_NJ_60" : [ - "JX026884" - ], - "Tomato_yellow_leaf_curl_virus__ZJ_NB" : [ - "KC312673" - ], - "Epizootic_hemorrhagic_disease_virus_Indiana_CC_304_06" : [ - "HM641775", - "HM641777", - "HM641779", - "HM641780", - "HM641776", - "HM641781", - "HM641778", - "HM641773", - "HM641772", - "HM641774" - ], - "Human_immunodeficiency_virus_1__9196_01" : [ - "AY882421" - ], - "Dengue_virus_3__13GDZDVS30C" : [ - "KF954947" - ], - "Human_papillomavirus_type_6__32" : [ - "HG793840" - ], - "Human_immunodeficiency_virus_1__MVP_30846" : [ - "EU446022" - ], - "Rift_Valley_fever_virus__M48_08" : [ - "HQ009512" - ], - "Cowpea_aphid_borne_mosaic_virus__BR1" : [ - "HQ880242" - ], - "Pepper_golden_mosaic_virus" : [ - "NC_004096" - ], - "Human_parainfluenza_virus_3_ZHYMgz01_Guangzhou" : [ - "EU326526" - ], - "European_mountain_ash_ringspot_associated_virus__E51587" : [ - "HG799705" - ], - "HBV_genotype_C__GRS08298" : [ - "AB554021" - ], - "Nocardioides_JS614" : [ - "NC_008699", - "NC_008697" - ], - "Columbid_circovirus__PL89" : [ - "KF738870" - ], - "Hepatitis_B_virus__EI00615" : [ - "DQ315776" - ], - "Wheat_dwarf_virus__GSGG07_1" : [ - "KJ536078" - ], - "Porcine_circovirus_2__Vos_8177_79_06" : [ - "EU545549" - ], - "Human_respiratory_syncytial_virus__RSV_6" : [ - "GU591763" - ], - "Hepatitis_C_virus__QC289" : [ - "JF735116" - ], - "Dengue_virus_1_D1_SG_05K4621DK1_2005" : [ - "EU081276" - ], - "Sweet_potato_leaf_curl_virus__US_MS_4B_14" : [ - "HQ333140" - ], - "Chikungunya_virus__IND_KR52" : [ - "FJ000069" - ], - "Enterobacteria_phage_phiX174__10B90" : [ - "EF380014" - ], - "Hepatitis_B_virus__C_NZL_HU27_1996" : [ - "HQ700462" - ], - "Strawberry_pallidosis_associated_virus__M1" : [ - "NC_005895", - "NC_005896" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2833_2003" : [ - "GQ199831" - ], - "BK_polyomavirus__BKV_HC_u9" : [ - "AY628236" - ], - "Hepatitis_B_virus_29136" : [ - "FN545824" - ], - "Usutu_virus__BAT2USUTU_BNI" : [ - "KJ859683" - ], - "Kotonkan_virus__IbAr23380" : [ - "NC_017714" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Moheli_MO29AN3_2009" : [ - "JF909149" - ], - "Newcastle_disease_virus_mallard_US_MN__99_376_1999" : [ - "GQ288389" - ], - "Porcine_circovirus_2__A05" : [ - "FJ388889" - ], - "Mobala_mammarenavirus_Acar_3080" : [ - "NC_007904" - ], - "Hepatitis_B_virus_1980Nic" : [ - "AY090456" - ], - "Hepatitis_B_virus__NH005C_e49" : [ - "KJ173311" - ], - "BK_polyomavirus__NEC_12" : [ - "AB263930" - ], - "Hepatitis_B_virus__PNF4549" : [ - "KF779332" - ], - "Hepatitis_A_virus__AH1" : [ - "AB020564" - ], - "Southern_rice_black_streaked_dwarf_virus__Hue2" : [ - "KM454844" - ], - "Chlamydia_trachomatis_F_SW4" : [ - "NC_017951", - "NC_012625" - ], - "Rinderpest_virus_Fusan_strain_cattle_type" : [ - "AB547189" - ], - "SARS_coronavirus_TWJ__TWJ" : [ - "AP006558" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Equus_ferus_caballus_COL_V178_1961_IC" : [ - "KC344484" - ], - "Tembusu_virus__lq_1" : [ - "KF557893" - ], - "Sweet_potato_vein_clearing_virus_Dom1" : [ - "NC_015228" - ], - "Porcine_circovirus_2_HB0602" : [ - "EF524537" - ], - "Alternanthera_mosaic_virus_MU" : [ - "FJ822136" - ], - "Human_poliovirus_1_NIE1018358" : [ - "KJ170516" - ], - "Panicum_streak_virus__PanSV_A_ZmNya" : [ - "EU224263" - ], - "Human_herpesvirus_5_BE_29_2010" : [ - "KP745714" - ], - "Human_poliovirus_1__DOR00015" : [ - "AF405688" - ], - "Papaya_leaf_crumple_virus__Mohali" : [ - "KJ028210" - ], - "Hepatitis_C_virus__TV241" : [ - "EF632069" - ], - "Dengue_virus_2__DENV_2_NI_BID_V554_2005" : [ - "EU482762" - ], - "Rabies_virus__F04" : [ - "FJ712196" - ], - "Human_immunodeficiency_virus_1__00BW0768_20" : [ - "AF443089" - ], - "Infectious_bronchitis_virus_ck_CH_LHLJ_110310" : [ - "KJ425505" - ], - "Rabies_virus_aG" : [ - "GQ412744" - ], - "Hepatitis_C_virus__TV317" : [ - "JX183555" - ], - "Chikungunya_virus__SVUKDP_08" : [ - "JN558835" - ], - "African_cassava_mosaic_virus__TD_TD2BE_08" : [ - "KJ887750" - ], - "Human_bocavirus_JPOC06_128" : [ - "AB481075" - ], - "Hepatitis_B_virus__F2_12" : [ - "GU815725" - ], - "Burkholderia_mallei_NCTC_10229" : [ - "NC_008835", - "NC_008836" - ], - "Murine_hepatitis_virus_strain_2_MHV_2" : [ - "AF201929" - ], - "Tick_borne_encephalitis_virus__Zabaikalye_11_99" : [ - "KC414090" - ], - "Tomato_yellow_leaf_curl_virus__ZJ_JX" : [ - "KC312672" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0116" : [ - "KP759664" - ], - "Pepino_mosaic_virus__BNMX12_1" : [ - "JX866664" - ], - "Streptococcus_pyogenes_phage_315_6" : [ - "NC_004589" - ], - "Hepatitis_B_virus__B3_11" : [ - "GU815604" - ], - "Cotia_virus_SPAn880" : [ - "KM595078" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_7___strain_CSIRO_775__CSIRO_775_AUS1981_06" : [ - "AM745055", - "AM745050", - "AM745052", - "AM745054", - "AM745047", - "AM745049", - "AM745053", - "AM745056", - "AM745048", - "AM745051" - ], - "Rotavirus_A_RVA_Human_wt_FRA_E9606_2013_G1P_8__RVA_Human_wt_FRA_E9606_2013_G1P_8" : [ - "HG917363" - ], - "Maize_streak_virus__MSV_A_ZA_Mak2_M49_1988" : [ - "HQ693421" - ], - "Bombyx_mori_densovirus_1" : [ - "AY033435" - ], - "Cydia_pomonella_granulovirus__CpGV_E2" : [ - "KM217577" - ], - "Human_adenovirus_21a__LRTI_5" : [ - "KF577597", - "KF802425" - ], - "Ilyobacter_polytropus_DSM_2926" : [ - "NC_014634", - "NC_014633", - "NC_014632" - ], - "Mud_crab_dicistrovirus" : [ - "NC_014793" - ], - "Hepatitis_B_virus__C11" : [ - "EU939636", - "FJ349228" - ], - "Hepatitis_B_virus__050_DR_Wad" : [ - "KF873543" - ], - "Chelativorans_BNC1" : [ - "NC_008244", - "NC_008254", - "NC_008242", - "NC_008243" - ], - "Feline_coronavirus_FCoV_C1Je" : [ - "DQ848678" - ], - "Campylobacter_coli_15_537360" : [ - "NC_022656", - "NC_022660" - ], - "Hepatitis_B_virus_Tokyo_1" : [ - "AB210820" - ], - "Human_papillomavirus_type_58__Qv15606" : [ - "HQ537752" - ], - "Cucumber_mosaic_virus_Paf" : [ - "AB369273" - ], - "Human_immunodeficiency_virus_1__01JPDR3884B" : [ - "AB289589", - "AB289590" - ], - "SARS_coronavirus_TW5__TW5" : [ - "AY502928" - ], - "Mycoplasma_gallisepticum_R_high" : [ - "NC_017502" - ], - "Variola_virus_Sumatra_1970_V70_228" : [ - "DQ441442" - ], - "Acidaminococcus_intestini_RyC_MR95" : [ - "NC_016077" - ], - "Theiler_s_encephalomyelitis_virus_S2_stock" : [ - "DQ401688" - ], - "Small_begomovirus_associated_satellite__wf_S57" : [ - "KJ859212" - ], - "Enterovirus_A71__SEP4" : [ - "KF543271" - ], - "Pseudomonas_stutzeri_DSM_4166" : [ - "NC_017532" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HV" : [ - "JX317648" - ], - "Saffold_virus_Nijmegen2008" : [ - "FN999911" - ], - "Yellow_fever_virus_case__2" : [ - "GQ379163" - ], - "Human_poliovirus_1__DOR00042C1" : [ - "AF405677" - ], - "Human_rotavirus_G4_strain_St__Thomas_3_3" : [ - "X13603" - ], - "European_catfish_virus__Valdeolmos" : [ - "NC_017940" - ], - "Bean_common_mosaic_virus__soybean" : [ - "KC832501" - ], - "Prochlorococcus_phage_P_SSM7_NATL1A_15" : [ - "NC_015290" - ], - "Rabies_virus__NC839" : [ - "JQ685944" - ], - "Pseudomonas_phage_TL" : [ - "NC_023583" - ], - "Barley_yellow_mosaic_virus_2__resistance_breaking__ASL2" : [ - "AJ515483" - ], - "Hepatitis_B_virus__THB6_CHB" : [ - "JN664931" - ], - "Foot_and_mouth_disease_virus___type_A__MAY_3_2007" : [ - "HQ632773" - ], - "Hepatitis_B_virus_99_1" : [ - "KR013878" - ], - "White_spot_syndrome_virus__WSSV_TH" : [ - "AF369029" - ], - "Hepatitis_B_virus__J225" : [ - "GQ377626" - ], - "Human_immunodeficiency_virus_1__04ZASK167B1" : [ - "DQ164127" - ], - "Novosphingobium_aromaticivorans_DSM_12444" : [ - "NC_009426", - "NC_009427", - "NC_007794" - ], - "Hepatitis_B_virus__A1_48113" : [ - "FJ692567" - ], - "Tula_virus_TUL_Karatal_Ma322_2003" : [ - "AM945877" - ], - "Hepatitis_B_virus__ES72_10" : [ - "JF828935" - ], - "Human_immunodeficiency_virus_1__GHNJ175" : [ - "AB231893" - ], - "Chlamydia_psittaci_WS_RT_E30" : [ - "NC_018622", - "NC_018640" - ], - "Merkel_cell_polyomavirus__06b" : [ - "HM011538" - ], - "Simian_adenovirus_24_ATCC_VR_593" : [ - "AY530878" - ], - "Corynebacterium_pseudotuberculosis_258" : [ - "NC_017945" - ], - "Enterovirus_A_S0098b_CA16_2013_CHN" : [ - "KM402020" - ], - "Avian_leukosis_virus_GD1109" : [ - "JX254901" - ], - "Norovirus_Hu_GII_4_Saga5_2006_JP_Hu_GII_4_Saga5_2006_JP" : [ - "AB447458" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1514_2007" : [ - "EU726776" - ], - "Mycobacterium_tuberculosis_CCDC5180" : [ - "NC_017522" - ], - "Bovine_respiratory_syncytial_virus_ATue51908" : [ - "NC_001989" - ], - "Frankia_alni_ACN14a" : [ - "NC_008278" - ], - "Methanocella_paludicola_SANAE" : [ - "NC_013665" - ], - "Tomato_yellow_leaf_curl_virus__Shiraz_Iran___TYLCV_IL_IR_Sh46_07" : [ - "GU076446" - ], - "Citrus_necrotic_spot_virus_Jal_1" : [ - "KF198064", - "KF198065" - ], - "Highlands_J_virus__B_230" : [ - "GQ227789" - ], - "Tomato_leaf_curl_Taiwan_virus__ZJ16" : [ - "AM698111" - ], - "Hepatitis_B_virus_494_16" : [ - "KR013788" - ], - "Malachra_yellow_vein_mosaic_virus_associated_satellite_DNA_beta__Barrackpore" : [ - "NC_010328" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_WSV" : [ - "KP998429" - ], - "Potato_virus_X_CP" : [ - "X55802" - ], - "Snow_Mountain_virus" : [ - "AY134748" - ], - "West_Nile_virus__WNV_1_US_BID_V4356_2007" : [ - "HM488161" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V321_2001" : [ - "EU256096" - ], - "Hepatitis_B_virus__S529_1" : [ - "FJ032340" - ], - "Hepatitis_B_virus__G233" : [ - "JQ040168" - ], - "Hepatitis_B_virus__FEN82" : [ - "JF440012" - ], - "Avian_paramyxovirus_6__red_crested_pochard_Balkhash_5842_2013" : [ - "KP762799" - ], - "Hepatitis_A_virus" : [ - "HPACG", - "NC_001489", - "AB258387", - "HPAACG", - "HPAA" - ], - "Porcine_epidemic_diarrhea_virus__15V010_BEL_2015" : [ - "KR003452" - ], - "Bovine_adeno_associated_virus" : [ - "NC_005889" - ], - "Human_papillomavirus_type_53__Qv30969" : [ - "EF546471" - ], - "Human_papillomavirus_type_97__W15189" : [ - "EF202168" - ], - "Foot_and_mouth_disease_virus_C3_C3_Resende_c3resende_iso1" : [ - "AY593807" - ], - "Wheat_dwarf_virus__SXHC10_14" : [ - "JQ647496" - ], - "Rotavirus_A__73" : [ - "EU483088" - ], - "West_Nile_virus__WNV_1_US_BID_V4229_2006" : [ - "HM488155" - ], - "Ibaraki_virus" : [ - "AB186040" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dar_Beta_17" : [ - "EU384596" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1NA5" : [ - "GU292316" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d4ym2" : [ - "HQ890532" - ], - "Dinocampus_coccinellae_paralysis_virus_Quebec2013" : [ - "NC_025835" - ], - "Murine_polyomavirus_PTA" : [ - "PSU27812" - ], - "Duck_hepatitis_A_virus_1_DRL_62__ATCC_VR_1313" : [ - "DQ219396" - ], - "Echovirus_E30__2012EM161" : [ - "KC897073" - ], - "Tomato_leaf_deformation_virus__PA210_3" : [ - "JX501504" - ], - "Tobacco_mosaic_virus__WT_L1" : [ - "KF972428" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0117" : [ - "KP759665" - ], - "Hepatitis_B_virus__S852_2" : [ - "FJ787481" - ], - "Acanthamoeba_polyphaga_mimivirus" : [ - "NC_014649" - ], - "Mycobacterium_phage_Nova_Nova" : [ - "JN699014" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1504_2006" : [ - "EU687247" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_Z1602_2012_G3P_8__Z1602" : [ - "KF372019", - "KF372010", - "KF372016", - "KF372012", - "KF372015", - "KF372014", - "KF372018", - "KF372011", - "KF372013" - ], - "Hendra_virus_HeV_Australia_Horse_2008_Proserpine" : [ - "HM044320" - ], - "Thin_paspalum_asymptomatic_virus_2005_05TGP00369" : [ - "NC_021705" - ], - "Tomato_leaf_curl_Sinaloa_virus__NI1" : [ - "AJ508782" - ], - "Rhizobium_phage_RHEph04" : [ - "JX483876" - ], - "Hepatitis_C_virus_subtype_2a_MD2a_2" : [ - "AF238482" - ], - "Avian_leukosis_virus_Endogenous_avian_leukosis_virus_1__ev_1" : [ - "AY013303" - ], - "Hepatitis_E_virus__JBOAR100_Mie10" : [ - "AB780450" - ], - "Rice_stripe_virus__SJN07" : [ - "EU931513", - "EU931511", - "EU931510", - "EU931512" - ], - "Bat_polyomavirus_5b__5b_2" : [ - "AB972940" - ], - "Escherichia_phage_ECML_134" : [ - "NC_025449" - ], - "Tomato_spotted_wilt_virus__TSWV_6" : [ - "KC261953", - "KC261955", - "KC261954" - ], - "Mycobacterium_phage_Firecracker_Firecracker" : [ - "NC_023712" - ], - "Vibrio_phage_VBP47_VBP47" : [ - "NC_020848" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4161_legs" : [ - "HQ671687" - ], - "Human_papillomavirus_type_16_CU10" : [ - "JQ004094" - ], - "African_pouched_rat_virus_1__PREDICT2" : [ - "NC_026439" - ], - "Tobacco_necrosis_virus_A_A_Tobacco_necrosis_virus_A_C" : [ - "AY546104" - ], - "Dengue_virus_1__DENV_1_US_BID_V2134_1993" : [ - "FJ410185" - ], - "Peanut_clump_virus" : [ - "NC_003672" - ], - "Candidatus_Nitrosopumilus_koreensis_AR1" : [ - "NC_018655" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143107" : [ - "KR653247" - ], - "Hepatitis_B_virus_subtype_adw" : [ - "HPBADW3", - "HPBADW2", - "HPBADW1" - ], - "Thogoto_virus_Sicily_FR" : [ - "AF236794" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US64" : [ - "KJ019118" - ], - "Proteus_mirabilis_BB2000" : [ - "NC_022000" - ], - "Equid_herpesvirus_2_G9_92" : [ - "KM924294" - ], - "Soybean_mosaic_virus__XFQ010" : [ - "KP710874" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c941" : [ - "KM573765" - ], - "Ralstonia_solanacearum_PSI07" : [ - "NC_014311", - "NC_014310", - "NC_014308" - ], - "Torque_teno_virus__HD13c_gsB21_51" : [ - "FR848327" - ], - "Mycobacterium_bovis_BCG_Tokyo_172" : [ - "NC_012207" - ], - "Newcastle_disease_virus__QH4" : [ - "FJ751919" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2814_2007" : [ - "FJ882558" - ], - "Porcine_circovirus_2__AUT3" : [ - "AY424403" - ], - "Hepatitis_B_virus__patient_4T" : [ - "EU522067" - ], - "Hepatitis_B_virus__ECO50083LIP5" : [ - "JQ664504" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_34_2012" : [ - "KJ672470" - ], - "Murine_coronavirus_RJHM_A_RJHM_A" : [ - "FJ647219" - ], - "Human_poliovirus_2_NIE1018430" : [ - "KJ170556" - ], - "Enterovirus_A71_87_2008_Xi_an_Shaanxi" : [ - "HM003207" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P3pp1" : [ - "FJ882929" - ], - "Madariaga_virus_MADV_Aedes_BRA_BEAR18205_1960" : [ - "KJ469637" - ], - "Porcine_circovirus_2_BH6" : [ - "KJ956689" - ], - "Alistipes_finegoldii_DSM_17242" : [ - "NC_018011" - ], - "Staphylococcus_aureus_USA300_FPR3757" : [ - "NC_007793", - "NC_007790", - "NC_007792", - "NC_007791" - ], - "Mumps_virus_MuV_New_York_USA_40_09_1" : [ - "JX287390" - ], - "Anaplasma_phagocytophilum_HZ" : [ - "NC_007797" - ], - "Dengue_virus_3__206_BR_PE_05" : [ - "JX669492" - ], - "Torque_teno_virus__tth8" : [ - "AJ620231" - ], - "Polaromonas_JS666" : [ - "NC_007950", - "NC_007948", - "NC_007949" - ], - "Human_papillomavirus_type_139__GH1646" : [ - "HM999991" - ], - "Hepatitis_B_virus__P37" : [ - "EU859901" - ], - "Hepatitis_B_virus_14_94" : [ - "AY090453" - ], - "Hepatitis_B_virus__TP43" : [ - "KF192838" - ], - "Maize_streak_virus__MSV_A_ZW_Mas6_Mic8_1993" : [ - "FJ882147" - ], - "SARS_coronavirus_MA15_MA15_P3pp7" : [ - "FJ882958" - ], - "Human_coronavirus_OC43_OC43_human_USA_901_54_1990" : [ - "KF530088" - ], - "Human_immunodeficiency_virus_1__06KECst_019" : [ - "FJ623478" - ], - "Watermelon_chlorotic_stunt_virus__JO3_627" : [ - "KM820233" - ], - "Alkhumra_hemorrhagic_fever_virus_200904529" : [ - "JF416961" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_49_2012" : [ - "KJ686274" - ], - "Bat_polyomavirus_6b__6b" : [ - "NC_026770" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2306_2001" : [ - "FJ744720" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2731_2007" : [ - "FJ898379" - ], - "BK_polyomavirus__SHA_7" : [ - "AB365159" - ], - "Human_immunodeficiency_virus_1__CH77E_flA2" : [ - "FJ496001" - ], - "Coxsackievirus_A18_G13" : [ - "AF499640" - ], - "Human_rotavirus_A_CAU09_376" : [ - "JF766603", - "JF766596", - "JF766597", - "JF766600", - "JF766599", - "JF766598", - "JF766601", - "JF766602", - "JF766595", - "JF766604", - "JF766605" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3814" : [ - "KM233089" - ], - "Olive_latent_virus_2" : [ - "NC_003674", - "NC_003671", - "NC_003673" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3972_2008" : [ - "KF921949" - ], - "Wolbachia_endosymbiont_of_Drosophila_simulans_wNo" : [ - "NC_021084" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C108" : [ - "KJ019139" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4347_1" : [ - "KR105240" - ], - "Hepatitis_B_virus__CX008M_e212" : [ - "KJ173346" - ], - "Hepatitis_B_virus__MOD_4613" : [ - "GQ183463" - ], - "Human_immunodeficiency_virus_1__WEAU_flF5" : [ - "FJ496163" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4350_1" : [ - "KR105242" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD159_2013" : [ - "KM229825" - ], - "Hepatitis_E_virus__HEV_H" : [ - "FJ457024" - ], - "Tomato_leaf_curl_Vietnam_virus__7TL" : [ - "GQ870288" - ], - "Norovirus_Hu_GII_4_Aomori3_2007_JP_Hu_GII_4_Aomori3_2007_JP" : [ - "AB541222" - ], - "Hepatitis_B_virus__IstambulB26" : [ - "AB674428" - ], - "Tomato_yellow_leaf_curl_virus_HNQX" : [ - "JQ038235" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US50" : [ - "KJ019106" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5_9P20_2010_c5_9P20" : [ - "KF514391" - ], - "Rice_stripe_virus__KM" : [ - "AY185499" - ], - "Soybean_mosaic_virus_KY" : [ - "HQ845736" - ], - "Hepatitis_B_virus__GU1688" : [ - "GQ161786" - ], - "Hepatitis_C_virus_subtype_1a__V028_BN027" : [ - "EU781805" - ], - "Hepatitis_B_virus__G2_1" : [ - "GU815763" - ], - "Yam_mild_mosaic_virus__ZY_NH_1" : [ - "KJ125478" - ], - "BK_polyomavirus__TUR_5" : [ - "AB263936" - ], - "Chikungunya_virus__PR_S5" : [ - "KR264950" - ], - "Grapevine_virus_B" : [ - "NC_003602" - ], - "Hepatitis_B_virus__Leb16" : [ - "JN642131" - ], - "Haemophilus_influenzae_Rd_KW20" : [ - "NC_000907" - ], - "Middle_East_respiratory_syndrome_coronavirus__Hu_Riyadh_KSA_2959_2015" : [ - "KT026455" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0074" : [ - "KP759739" - ], - "Hardenbergia_mosaic_virus__HarMV_57_2" : [ - "NC_015394" - ], - "Hepatitis_B_virus__CX026M_e242" : [ - "KJ173286" - ], - "Salmonella_phage_SPC32N" : [ - "KC911857" - ], - "Tick_borne_encephalitis_virus_KrM_213" : [ - "HM535610" - ], - "Human_immunodeficiency_virus_1__CH58E_flA8" : [ - "FJ495940" - ], - "Scophthalmus_maximus_rhabdovirus" : [ - "NC_025387" - ], - "Dengue_virus_4__DENV_4_US_BID_V2431_1995" : [ - "GQ199880" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZP05_2011" : [ - "JQ693008" - ], - "Yellow_fever_virus_BeH394880" : [ - "JF912180" - ], - "Simian_immunodeficiency_virus__SIVgorCP684con" : [ - "FJ424871" - ], - "East_African_cassava_mosaic_virus_KE2__EACMV_KE2_K49" : [ - "AJ717539" - ], - "Maize_streak_virus__MSV_A_ZW_Chi_Zim3_2006" : [ - "HQ693468" - ], - "Tomato_yellow_leaf_curl_virus__SX_XA2" : [ - "KC312670" - ], - "Bovine_viral_diarrhea_virus_1__GS5" : [ - "KJ541471" - ], - "Maize_streak_virus__MSV_A_MZ_Chi4_g210_2006" : [ - "FJ882098" - ], - "Canine_picodicistrovirus_244U" : [ - "JN819204" - ], - "Hepatitis_B_virus__BV_108" : [ - "GU563548" - ], - "Rosy_apple_aphid_virus" : [ - "DQ286292" - ], - "Infectious_bronchitis_virus_Arkansas_DPI" : [ - "GQ504720" - ], - "Tobacco_curly_shoot_alphasatellite__Y137" : [ - "AJ579351" - ], - "Turnip_crinkle_virus_satellite_RNA" : [ - "NC_004033" - ], - "Avian_encephalomyelitis_virus_Calnek" : [ - "NC_003990" - ], - "Hepatitis_B_virus__NB045M_m45" : [ - "KJ173310" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_97_2013" : [ - "KJ672467" - ], - "Sweet_potato_golden_vein_associated_virus__US_MS_1B_3" : [ - "NC_015324" - ], - "Hepatitis_B_virus__I203" : [ - "FJ562312" - ], - "Dengue_virus_2__DENV_2_VN_BID_V742_2007" : [ - "EU482679" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Pandarahalli_OY173_2006___OY173" : [ - "GU111994" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V141_1990" : [ - "EU155337" - ], - "Enterobacteria_phage_RB32" : [ - "NC_008515" - ], - "Euphorbia_mosaic_virus____Jamaica_Wissadula_Euphorbia_2004" : [ - "FJ407052" - ], - "Grapevine_Pinot_gris_virus__SK01" : [ - "KF134124" - ], - "Human_poliovirus_3_NIE0918501" : [ - "KJ170670" - ], - "Hepatitis_B_virus__WY_HZ_59" : [ - "JX429909" - ], - "Hepatitis_delta_virus_dFr2189_dFr2189" : [ - "AM902166" - ], - "Human_papillomavirus_type_18__Qv16302" : [ - "EF202144" - ], - "Mycobacterium_phage_Nala" : [ - "NC_022976" - ], - "Cyanophage_P_SSP2_Syn26" : [ - "NC_016656" - ], - "Zaire_ebolavirus__M_M" : [ - "HQ613403" - ], - "Enterovirus_A71_TW_96022_08" : [ - "GQ231943" - ], - "JC_polyomavirus__J3_11" : [ - "AB081602" - ], - "Human_papillomavirus_type_16_CU9" : [ - "JQ004093" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3906_2008" : [ - "HM631850" - ], - "Hepatitis_B_virus__J39" : [ - "GQ377533" - ], - "Gallid_herpesvirus_1_TCO_IVAX" : [ - "JN580312" - ], - "Beak_and_feather_disease_virus__8IT10" : [ - "KF723387" - ], - "Bacillus_anthracis_Ames" : [ - "NC_003997" - ], - "Human_immunodeficiency_virus_1__NH2" : [ - "AB070352", - "AB070353" - ], - "Helicobacter_pylori_F16" : [ - "NC_017368" - ], - "Wheat_dwarf_virus__SXTY10_18" : [ - "JQ647502" - ], - "Ornithogalum_mosaic_virus__SW3_3" : [ - "JQ807996" - ], - "Human_papillomavirus_type_6__104" : [ - "HG793912" - ], - "Hepatitis_B_virus__SHB1C4" : [ - "KJ598636" - ], - "Human_immunodeficiency_virus_1__RU00051" : [ - "EF545108" - ], - "Porcine_circovirus_2_GSLZ" : [ - "FJ447482" - ], - "Hepatitis_B_virus__bxa2034" : [ - "KC774412" - ], - "Dengue_virus_2__DENV_2_VN_BID_V735_2006" : [ - "EU482672" - ], - "Dengue_virus_1__DENV_1_TH_BID_V2272_2001" : [ - "FJ687429" - ], - "Human_adenovirus_55__Hebei_BD6728_2013" : [ - "KJ883520" - ], - "Yam_spherical_virus" : [ - "NC_022895" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9262_2010" : [ - "KJ627301" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_17_DRC" : [ - "JX458838" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_RP_13_1683" : [ - "KF850537" - ], - "Tomato_leaf_curl_Cameroon_virus__TOS2B1F4" : [ - "NC_013639" - ], - "Mint_virus_1__NCGR_MEN_454_004" : [ - "NC_006944" - ], - "Lettuce_yellow_mottle_virus" : [ - "NC_011532" - ], - "WU_Polyomavirus__HB039C" : [ - "KC571695" - ], - "Temperate_fruit_decay_associated_virus__MFB20" : [ - "KR134318" - ], - "Porcine_circovirus_2_Y_5" : [ - "KF027495" - ], - "JC_polyomavirus__XA_11" : [ - "AB113144" - ], - "Porcine_circovirus_2__YL3" : [ - "HQ202953" - ], - "Enterovirus_D68__CA_RESP_10_786" : [ - "KM892500" - ], - "Wheat_dwarf_virus__SCCD10_3" : [ - "JQ647484" - ], - "West_Nile_virus__WNV_1_US_BID_V6696_2003" : [ - "KJ501527" - ], - "Hepatitis_delta_virus_Miyako_JA_M12" : [ - "AB118827" - ], - "West_Nile_virus__WNV_1_US_BID_V7421_2007" : [ - "KJ501132" - ], - "West_Nile_virus__WNV_1_US_BID_V6633_2003" : [ - "KJ501382" - ], - "Human_papillomavirus_type_35__Rw632" : [ - "HQ537714" - ], - "Human_herpesvirus_4_GD1" : [ - "AY961628" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V407_2006" : [ - "EU155274" - ], - "Human_immunodeficiency_virus_1__04MYKL016_1" : [ - "DQ366663" - ], - "Dengue_virus_2__DENV_2_VN_BID_V777_2007" : [ - "EU482703" - ], - "Kyuri_green_mottle_mosaic_virus_KGMMV_C1" : [ - "NC_003610" - ], - "Sweet_potato_leaf_curl_virus_Jiangsu__SPLCV_JS" : [ - "FJ176701" - ], - "Tomato_leaf_curl_China_betasatellite__Y92" : [ - "AJ457820" - ], - "Simian_virus_40_VA45_54_2" : [ - "AF156105" - ], - "Cucumber_mosaic_virus_TN" : [ - "AB176849", - "AB176847", - "AB176848" - ], - "Human_immunodeficiency_virus_1__BREPM1084" : [ - "FJ195088" - ], - "Tomato_yellow_leaf_curl_virus_Israel_Grenada_Paradise_2007" : [ - "FR851298" - ], - "Avian_leukosis_virus__NHH" : [ - "HM235668" - ], - "Porcine_circovirus_2__AUT1" : [ - "NC_005148" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143031" : [ - "KR653275" - ], - "Homalodisca_vitripennis_reovirus__NC29" : [ - "GU437854" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_1999_06_DRC" : [ - "JX458830" - ], - "Pasteurella_multocida_36950" : [ - "NC_016808" - ], - "Hepatitis_B_virus__MLT0643" : [ - "KF779288" - ], - "Raphanus_sativus_cryptic_virus_3__RasR8" : [ - "NC_011706" - ], - "Hepatitis_B_virus__pt9T" : [ - "KM875417" - ], - "Human_immunodeficiency_virus_1__JRC53B" : [ - "AB565500", - "AB565499" - ], - "Invertebrate_iridescent_virus_22__IIV22Aberystwyth" : [ - "NC_023615" - ], - "Escherichia_phage_HK639" : [ - "NC_016158" - ], - "Hepatitis_B_virus__C10" : [ - "EU859936" - ], - "Wheat_dwarf_virus__WDV_Uk_Odessa" : [ - "FN806787" - ], - "African_cassava_mosaic_virus__CF_CF354AB2_08" : [ - "KJ887817" - ], - "Newcastle_disease_virus_WF00C" : [ - "FJ754271" - ], - "Homalodisca_vitripennis_reovirus__Robeson" : [ - "GU395190", - "GU395194", - "GU395196", - "GU395192", - "GU395191", - "GU395198", - "GU395195", - "GU395197", - "GU395199", - "GU395188", - "GU395193", - "GU395189" - ], - "Dengue_virus_1__DENV_1_NI_BID_V624_2005" : [ - "FJ432720" - ], - "Hepatitis_B_virus__F3_3" : [ - "GU815740" - ], - "Porcine_circovirus_2_ZJ0402" : [ - "EF524522" - ], - "Acute_bee_paralysis_virus" : [ - "NC_002548" - ], - "Hepatitis_B_virus_HB251" : [ - "HM011472" - ], - "Soil_borne_wheat_mosaic_virus_Japanese_JT" : [ - "AB033689" - ], - "Equine_papillomavirus_type_6__Sirkar_2011" : [ - "NC_020500" - ], - "Torque_teno_sus_virus_1b__TTV2Bj1_2" : [ - "HM633224" - ], - "Gossypium_punctatum_mild_leaf_curl_virus__Gossypium_stocksii___Stockcii_BNC1" : [ - "FJ218491" - ], - "Bovine_viral_diarrhea_virus_1__SuwaCp" : [ - "KC853441" - ], - "Murine_norovirus_GV_WU22_2005_USA__Mu_NoV_GV_WU22_2005_USA" : [ - "EU004667" - ], - "Hepatitis_B_virus__D_KI215p_2004" : [ - "HQ700538" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Manikganj_2013___Bangladesh_Manikganj_2013" : [ - "AB971847", - "AB971846" - ], - "Campylobacter_jejuni_81116" : [ - "NC_009839" - ], - "Maize_streak_virus__MSV_A_GH_gh151_Pot_2010" : [ - "KJ699334" - ], - "Aeromonas_phage_65" : [ - "NC_015251" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V510_2006" : [ - "EU255936" - ], - "Hamster_polyomavirus__2336" : [ - "JX416853" - ], - "Bluetongue_virus__Avikanagar" : [ - "AM261976" - ], - "Human_immunodeficiency_virus_1__04ZAPS178MB1" : [ - "DQ445636" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V2147_2002" : [ - "GQ149768" - ], - "SFTS_virus_SD24_SD24" : [ - "HM802201", - "HM802205", - "HM802200" - ], - "Tomato_yellow_leaf_curl_virus__Hwasun29" : [ - "JX961667" - ], - "Mongoose_feces_associated_gemycircularvirus_a_181a" : [ - "NC_026807" - ], - "Hepatitis_B_virus__HBV_Chi32" : [ - "AB073822" - ], - "Maize_streak_virus__MSV_A_GH_gh4_Kuj_2010" : [ - "KJ699347" - ], - "West_Nile_virus__WNV_1_US_BID_V6575_2001" : [ - "KJ501509" - ], - "Wheat_dwarf_virus__YNKM08_8" : [ - "KJ536131" - ], - "Sewage_associated_circular_DNA_virus_26__SaCV_26_NZ_BS4339_2012" : [ - "NC_026270" - ], - "Tembusu_virus__CQW1" : [ - "KM233707" - ], - "South_African_cassava_mosaic_virus__MG_MG134A2_09" : [ - "KJ887926" - ], - "West_Nile_virus__Ast02_3_717" : [ - "DQ374650" - ], - "Porcine_circovirus_2__K378_2" : [ - "EU450588" - ], - "Staphylococcus_pasteuri_SP1" : [ - "NC_022737" - ], - "Hepatitis_B_virus_1463_42" : [ - "KR014075" - ], - "BK_polyomavirus__TW_3a" : [ - "AB217919" - ], - "Raspberry_ringspot_virus_grapevine" : [ - "AY310444", - "AY310445" - ], - "Toscana_virus_TOSV_Firenze_ITA_1981" : [ - "KM275785" - ], - "Cucumber_mosaic_virus_satellite_RNA_T6" : [ - "X86414" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9496_2013" : [ - "KJ643552" - ], - "JC_polyomavirus__SO_5" : [ - "AB127016" - ], - "Hepatitis_B_virus_1463_25" : [ - "KR014073" - ], - "Foot_and_mouth_disease_virus___type_O__BUL_32_2011" : [ - "JX040490" - ], - "Hepatitis_B_virus__bxa2012" : [ - "KC774408" - ], - "Turkey_astrovirus_TAstV_MI_01" : [ - "EU143846" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FLU5540_2007" : [ - "KJ627310" - ], - "Chikungunya_virus_05_115" : [ - "AM258990" - ], - "JC_polyomavirus_310A" : [ - "AF295732" - ], - "Human_herpesvirus_4_HN13" : [ - "AB850650" - ], - "Lactococcus_lactis_CV56" : [ - "NC_017487", - "NC_017484", - "NC_017483", - "NC_017485", - "NC_017488", - "NC_017486" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__MLV_RespPRRS_Repro" : [ - "AF159149" - ], - "Foot_and_mouth_disease_virus___type_O_O1_Valle_o1valle_iso64" : [ - "AY593825" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20142895" : [ - "KR653268" - ], - "Hepatitis_B_virus__D3_7" : [ - "GU815676" - ], - "JC_polyomavirus__JCV161FLC_13" : [ - "JF424921" - ], - "Hepatitis_B_virus_C0714154_WBK_F" : [ - "AP011098" - ], - "Rice_stripe_virus__YSDi26" : [ - "KP083242" - ], - "Formica_exsecta_virus_1__Fex1" : [ - "NC_023021" - ], - "Dengue_virus_1__MKS_2201" : [ - "KC762634" - ], - "JC_polyomavirus__KB_32" : [ - "AB362360" - ], - "Vaccinia_virus_Tian_Tan_Tian_Tan" : [ - "AF095689" - ], - "West_Nile_virus__WNV_1_US_BID_V7391_2003" : [ - "KJ501103" - ], - "Saimiriine_herpesvirus_4_SqSHV" : [ - "NC_016448" - ], - "Tulip_virus_X_J" : [ - "NC_004322" - ], - "Human_immunodeficiency_virus_1__WC10P_4" : [ - "AY314047" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2015_Makona_Liberia_DQE5" : [ - "KR074999" - ], - "Hepatitis_B_virus__J166" : [ - "GQ377603" - ], - "Human_coronavirus_OC43_OC43_human_USA_873_16_1987" : [ - "KF530077" - ], - "Rotavirus_G4__Rota_Odelia" : [ - "AB012079" - ], - "Crimean_Congo_hemorrhagic_fever_virus_ArD8194" : [ - "DQ211613", - "DQ211626", - "DQ211639" - ], - "West_Nile_virus_Greece_2013_Kavala_1" : [ - "KJ883342" - ], - "Dengue_virus_2__FGU_Oct_05" : [ - "EU920840" - ], - "Cotton_leaf_curl_Gezira_betasatellite__CLC46_C" : [ - "AY669328" - ], - "Escherichia_phage_ECML_117" : [ - "NC_025441" - ], - "Vervet_monkey_polyomavirus_2__VMK96" : [ - "NC_025896" - ], - "Rice_yellow_mottle_virus__Tz3" : [ - "AJ608216" - ], - "Hepatitis_delta_virus__D33" : [ - "KJ744241" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_95_2013" : [ - "KJ672433" - ], - "Chikungunya_virus_IND_06_KA15" : [ - "EF027135" - ], - "Chikungunya_virus_FD080178" : [ - "GU199352" - ], - "Synechococcus_phage_ACG_2014a__Syn7803US79" : [ - "KJ019122" - ], - "Borna_disease_virus__patient_3_brain" : [ - "LN713681" - ], - "Sugarcane_streak_mosaic_virus__YN_YZ211" : [ - "KJ187047" - ], - "Hepatitis_B_virus__A1_50011" : [ - "FJ692571" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3388_2007" : [ - "GQ868568" - ], - "Hepatitis_B_virus__WHHRS2" : [ - "JN257195" - ], - "Stenotrophomonas_phage_S1" : [ - "NC_011589" - ], - "Myxoma_virus_SLS_SLS__Moses_strain_strain_B" : [ - "JX565574" - ], - "Hepatitis_B_virus__B213" : [ - "KF414679" - ], - "Hepatitis_B_virus__SSC123" : [ - "KJ598697" - ], - "Hepatitis_B_virus__P011_C_b168" : [ - "KJ173329" - ], - "Tick_borne_encephalitis_virus_Tomsk_K6" : [ - "KJ739730" - ], - "Hepatitis_B_virus_HB572" : [ - "HM011502" - ], - "Maize_streak_virus__MSV_A1_Ng_Ile_g82_2007" : [ - "EU628567" - ], - "Human_bocavirus_HBoV_YOK_08_104" : [ - "AB551032" - ], - "Porcine_circovirus_2__PCV_Y1" : [ - "KC515001" - ], - "Human_adenovirus_21_AV_1645" : [ - "AY601633" - ], - "Human_parainfluenza_virus_4b_QLD_01" : [ - "KF908238" - ], - "Rice_tungro_bacilliform_virus_Serdang" : [ - "AF076470" - ], - "Tomato_yellow_leaf_curl_virus__SDSGXFBL" : [ - "KC999848" - ], - "Simian_adenovirus_40_2" : [ - "FJ025926" - ], - "Turnip_mosaic_virus__ORM" : [ - "AB701692" - ], - "Potato_virus_Y_O_strain_SCRI_O" : [ - "AJ585196" - ], - "Sulfolobales_Mexican_fusellovirus_1" : [ - "NC_020882" - ], - "Variola_virus_Botswana_1973__v73_225" : [ - "DQ441418" - ], - "Human_papillomavirus_type_6__15" : [ - "HG793823" - ], - "Puumala_virus_Evo_12Cg_93" : [ - "Z30702" - ], - "Human_immunodeficiency_virus_1__02ZM112" : [ - "AB254145", - "AB254143", - "AB254144" - ], - "Toscana_virus_TOSV_Macerata_ITA_1993" : [ - "KM275774" - ], - "Raspberry_bushy_dwarf_virus__BY1" : [ - "FR687354", - "FR687349" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1907_2008" : [ - "FJ410243" - ], - "Hepatitis_B_virus__Ag52" : [ - "KJ843212" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V99_2004" : [ - "EU256038" - ], - "Banana_bunchy_top_virus__JY3" : [ - "AB108457" - ], - "Hepatitis_B_virus__BD4139" : [ - "AY311369" - ], - "Lactococcus_lactis_Il1403" : [ - "NC_002662" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7567_2008" : [ - "KJ189314" - ], - "Dragonfly_larvae_associated_circular_virus_3__DflaCV_3_NZ_PG1_LG" : [ - "NC_023429" - ], - "Maize_streak_virus__MSV_A_GH_gh114_Hia_2010" : [ - "KJ699311" - ], - "Human_bocavirus_CQ201102" : [ - "JN387082" - ], - "Equine_arteritis_virus_Hela_EAVP80" : [ - "EU252114" - ], - "Cotton_leaf_curl_Alabad_virus__804a__Pakistan_clc804a" : [ - "AJ002452" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9593_2010" : [ - "KJ627316" - ], - "Tomato_leaf_curl_China_virus___OX2_OX2" : [ - "NC_021205" - ], - "Enterovirus_A71__02_0_060" : [ - "KP691652" - ], - "Hepatitis_B_virus_HB400" : [ - "HM011494" - ], - "Pigeon_paramyxovirus_1_pi_CH_LJL_100605" : [ - "JX486551" - ], - "Paramecium_bursaria_Chlorella_virus_NY2A_NY_2A" : [ - "NC_009898" - ], - "Hepatitis_B_virus__A3_5" : [ - "GU815576" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2214_2003" : [ - "FJ639781" - ], - "Hepatitis_B_virus__GU1558" : [ - "GQ161795" - ], - "Dengue_virus_2__DENV_2_IN_BID_V2961_2006" : [ - "FJ898454" - ], - "Hepatitis_B_virus__462_4_2004" : [ - "DQ463801" - ], - "Broad_bean_wilt_virus_2__RP4" : [ - "JX183227", - "JX183228" - ], - "Propionibacterium_phage_PHL117M01__PHL117M01" : [ - "KJ578779" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pakistan_16_3_08" : [ - "FJ861371" - ], - "Simian_adenovirus_33" : [ - "FJ025908" - ], - "Staphylococcus_aureus_ST228_10388" : [ - "NC_020529", - "NC_020530" - ], - "Cucumber_green_mottle_mosaic_virus_VIROG_43M" : [ - "GQ495275" - ], - "Porcine_epidemic_diarrhea_virus_USA_Iowa106_2013" : [ - "KJ645695" - ], - "Norovirus_Hu_GII_30129_2009_VNM_Hu_GII_30129_2009_VNM" : [ - "KC409310" - ], - "Gentian_ovary_ring_spot_virus__S" : [ - "NC_024502", - "NC_024501" - ], - "Equine_infectious_anemia_virus_DLV_DLV8_2" : [ - "HM141915" - ], - "Dengue_virus_2_DENV_2_PR_31DN_1994" : [ - "GQ398290" - ], - "Infectious_bronchitis_virus__SC021202" : [ - "EU714029" - ], - "Newcastle_disease_virus__ndv16_Godhra_03_2013" : [ - "KM056344" - ], - "Hepatitis_B_virus__cww1067" : [ - "KC774261" - ], - "Dengue_virus_1__DENV_1_CO_BID_V7291_1998" : [ - "KJ189303" - ], - "Tobacco_rattle_virus__TRV_PdC36_2" : [ - "DQ448618" - ], - "Bean_common_mosaic_virus_NL4_CIAT" : [ - "DQ666332" - ], - "Human_immunodeficiency_virus_1__mCSW104" : [ - "AB097867" - ], - "Human_bocavirus__HK1" : [ - "EF450717" - ], - "Hepatitis_B_virus__HBV201504" : [ - "KP455652" - ], - "Norwalk_like_virus__Saitama_U1" : [ - "AB039775" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1673_2007" : [ - "FJ205876" - ], - "Dengue_virus_1__MKS_2147" : [ - "KC762641" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2674_2001" : [ - "FJ850121" - ], - "Echovirus_E7__3988_09" : [ - "KP202389" - ], - "Human_papillomavirus_type_45__Qv31748" : [ - "EF202167" - ], - "Banana_bunchy_top_virus__BT_1" : [ - "AY948438", - "AY948439" - ], - "BK_polyomavirus__LAB_14" : [ - "AB301089" - ], - "Hepatitis_B_virus__Yamagata_3" : [ - "AB010291" - ], - "Dengue_virus_1__DENV_1_VN_BID_V806_2006" : [ - "EU482800" - ], - "Dengue_virus_2__DENV_2_US_BID_V1181_1989" : [ - "EU482584" - ], - "Rabies_virus_1088" : [ - "AB645847" - ], - "Junin_mammarenavirus_P4036" : [ - "DQ854732" - ], - "Human_papillomavirus_type_6__19" : [ - "HG793827" - ], - "Hepatitis_B_virus__MLT0980" : [ - "KF779300" - ], - "Sendai_virus_Nagoya_1_60" : [ - "AB275417" - ], - "Citrus_tristeza_virus__SG29" : [ - "KC748392" - ], - "Human_coronavirus_NL63_NL63_human_USA_0111_25_2001" : [ - "KF530112" - ], - "Hepatitis_B_virus__WHHHR" : [ - "JN257151" - ], - "Tobacco_rattle_virus_ON" : [ - "Z97357" - ], - "Watermelon_mosaic_virus__ITA00_G" : [ - "EU660590" - ], - "Mammalian_orthoreovirus_SC_A" : [ - "DQ911244", - "DQ997719" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1795_2007" : [ - "FJ432736" - ], - "Pelargonium_flower_break_virus__SP18" : [ - "DQ256073" - ], - "African_cassava_mosaic_virus__S5J1" : [ - "JN053426" - ], - "Tomato_leaf_curl_China_betasatellite__G14" : [ - "AJ704609" - ], - "Rabies_virus_ERA__Evelyn_Rokitniki_Abelseth" : [ - "EF206707" - ], - "West_Nile_virus_Ast_986" : [ - "JX041634" - ], - "Hepatitis_B_virus__G1_12" : [ - "GU815749" - ], - "Soybean_mosaic_virus__HGT008" : [ - "KP710863" - ], - "JC_polyomavirus__JCV161FLC_28" : [ - "JF424935" - ], - "Columbid_circovirus__PL201" : [ - "KF738854" - ], - "Hepatitis_B_virus__20952" : [ - "AJ627226" - ], - "Hepatitis_B_virus__919087" : [ - "JN040770" - ], - "Thermoanaerobacter_pseudethanolicus_ATCC_33223" : [ - "NC_010321" - ], - "Sweet_potato_chlorotic_fleck_virus__HN83" : [ - "KP115605" - ], - "Hepatitis_B_virus__H113" : [ - "FJ349216" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA62s2" : [ - "KF670664" - ], - "Hepatitis_B_virus__FEN31" : [ - "JF439996" - ], - "Infectious_bronchitis_virus_M41" : [ - "DQ834384" - ], - "Foot_and_mouth_disease_virus___type_A_A3_Mecklenburg_a3mecklenburg_iso81" : [ - "AY593776" - ], - "Buchnera_aphidicola_APS__Acyrthosiphon_pisum" : [ - "NC_002528", - "NC_002252", - "NC_002253" - ], - "Dendrolimus_punctatus_cypovirus_1_1" : [ - "AY204880", - "AY180906", - "AY180907", - "AY204878" - ], - "Hepatitis_B_virus_1385_6" : [ - "KR014059" - ], - "Hepatitis_B_virus__239" : [ - "JQ040137" - ], - "Mycobacterium_phage_Thibault_Thibault" : [ - "NC_023738" - ], - "Citrus_tristeza_virus__FL278_T30" : [ - "KC517490" - ], - "Human_poliovirus_3_NIE0918519" : [ - "KJ170676" - ], - "Hepatitis_B_virus_016" : [ - "AB900110" - ], - "Acanthamoeba_polyphaga_mimivirus__Rowbotham_Bradford" : [ - "AY653733" - ], - "Human_immunodeficiency_virus_1__FIN9363" : [ - "AF075703" - ], - "Cucumber_mosaic_virus_satellite_RNA" : [ - "MCVS19SAT", - "MCVWLS210A", - "MCVDSAT6A", - "MCVST3ACP", - "MCVSATY", - "MCVSATRA", - "X69136", - "DQ839133", - "MCVWLSA47A", - "MCVYSAT2", - "MCVWLS324A", - "MCVBSA2A", - "MCVSATR", - "AB024493", - "CMU31660", - "MCVPKO2S1", - "MCVDSAT9A", - "AB072502", - "MCVB1SAT1A", - "AY589728", - "MCVPKO2S3", - "MCVT73SAT", - "MCVDSAT5A", - "MCVSRMPCPA", - "MCVPKO2S2", - "MCVPKO2S5", - "X51465", - "MCVKN", - "AB072503", - "X57582", - "MCVDSAT4A", - "MCVPKO2S4", - "AB072504", - "D89673", - "AY589729", - "CMU31661", - "MCVPKO2S6", - "MCVBSA4A", - "NC_002602" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V345_2001" : [ - "EU155302" - ], - "Hepatitis_B_virus__A1_50014" : [ - "FJ692573" - ], - "Human_adenovirus_21_CDC_V1375E" : [ - "KJ364579" - ], - "Mungbean_yellow_mosaic_India_virus_Indonesia__Purwakarta_1" : [ - "JN368441", - "JN368433" - ], - "Hepatitis_B_virus__HBV_10N" : [ - "EU564824" - ], - "Bhendi_yellow_vein_betasatellite__Hyderabad" : [ - "KC222955" - ], - "Norovirus_Hu_GII_4_Aomori2_2006_JP_Hu_GII_4_Aomori2_2006_JP" : [ - "AB447433" - ], - "Citrus_tristeza_virus__FL202_VT" : [ - "KC517493" - ], - "Panicum_streak_virus__G_YT_Com_g383" : [ - "GQ415394" - ], - "Chaetoceros_socialis_f__radians_RNA_virus_01" : [ - "NC_012212" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2703_2006" : [ - "FJ882529" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2481_2007" : [ - "GQ868586" - ], - "Hepatitis_B_virus__SamsunD84" : [ - "AB674411" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2694_2006" : [ - "FJ882520" - ], - "Cyclovirus_ZM54_ZM54" : [ - "AB937986" - ], - "Tomato_yellow_leaf_curl_virus__SD_WF" : [ - "KC312666" - ], - "Chlamydia_phage_1" : [ - "NC_001741" - ], - "West_Nile_virus__WNV_1_US_BID_V6637_2004" : [ - "KJ501385" - ], - "Hepatitis_B_virus__D_NZL_PE09_1994" : [ - "HQ700478" - ], - "Hepatitis_C_virus__Khaja1" : [ - "AY651061" - ], - "Hepatitis_B_virus__S567_3" : [ - "FJ787449" - ], - "Hepatitis_B_virus__P10" : [ - "JX898688", - "GQ477465" - ], - "Streptomyces_hygroscopicus_jinggangensis_5008" : [ - "NC_017766", - "NC_016972", - "NC_017765" - ], - "Foot_and_mouth_disease_virus___type_O_Yangju_p26" : [ - "KF501488" - ], - "Human_immunodeficiency_virus_1__01BR042" : [ - "DQ358799" - ], - "South_African_cassava_mosaic_virus__MG_MG341A5_10" : [ - "KJ887703" - ], - "Chikungunya_virus_SH2830" : [ - "HM045798" - ], - "Yellowtail_ascites_virus_Y_6" : [ - "NC_004168", - "NC_004176" - ], - "South_African_cassava_mosaic_virus__MG_MG573A1_11" : [ - "KJ888045" - ], - "Hepatitis_B_virus__10B18" : [ - "AB675680" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG648A8_11" : [ - "KJ888076" - ], - "Hepatitis_B_virus__bxn1083" : [ - "KC774419" - ], - "Tomato_leaf_curl_Patna_betasatellite__Himachal" : [ - "LK054803" - ], - "Human_immunodeficiency_virus_1__04ZASK160B1" : [ - "DQ011173" - ], - "Rhynchosia_golden_mosaic_Yucatan_virus" : [ - "GQ352453", - "NC_012481" - ], - "Newcastle_disease_virus__chicken_China_Guangxi14_2002" : [ - "JX193075" - ], - "Malvastrum_yellow_vein_betasatellite__Y299" : [ - "AJ971702" - ], - "Danaus_plexippus_plexippus_iteravirus__Granby" : [ - "NC_023842" - ], - "Tobacco_mosaic_virus__TMV_152" : [ - "AF395129" - ], - "Viral_hemorrhagic_septicemia_virus_SE_SVA_14_3D" : [ - "AB839745" - ], - "Desulfocapsa_sulfexigens_DSM_10523" : [ - "NC_020305", - "NC_020304" - ], - "Hepatitis_B_virus_574_9" : [ - "KR013808" - ], - "Bovine_parvovirus___2" : [ - "NC_006259" - ], - "Lymphocytic_choriomeningitis_mammarenavirus__Makokou" : [ - "KM523323" - ], - "Hepatitis_B_virus__Leb39" : [ - "JN642147" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_MD001" : [ - "KP998431" - ], - "Chicken_anemia_virus__SMSC_1" : [ - "AF285882" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2970_2003" : [ - "FJ898473" - ], - "Porcine_circovirus_2_HB0604" : [ - "EF524542" - ], - "Hepatitis_B_virus__Gomez_2001" : [ - "HQ603068" - ], - "Porcine_circovirus_2_PCV2a_2A_HNYYDPC181" : [ - "KP112485" - ], - "Sulfolobus_acidocaldarius_N8" : [ - "NC_020246" - ], - "African_cassava_mosaic_virus__CF_CF1AB_07" : [ - "KJ887753" - ], - "Grapevine_rupestris_stem_pitting_associated_virus_BS__Bertille_Seyva_5563" : [ - "AY881627" - ], - "Hepatitis_B_virus__F2_9" : [ - "GU815734" - ], - "Watermelon_chlorotic_stunt_virus__JO3_65" : [ - "KM820221" - ], - "Tomato_common_mosaic_virus__BR_Coi15_07" : [ - "KC706572", - "KC706601" - ], - "Dengue_virus_1__DENV_1_MX_BID_V8196_2011" : [ - "KJ189369" - ], - "Pseudomonas_phage_phi6__S1" : [ - "DQ785294", - "DQ785288", - "DQ785291" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V106_2004" : [ - "EU255995" - ], - "Rattus_norvegicus_polyomavirus_1__5709" : [ - "KR075946" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2735_2007" : [ - "FJ906963" - ], - "Helminthosporium_victoriae_145S_virus" : [ - "NC_005979", - "NC_005978", - "NC_005980", - "NC_005981" - ], - "Hepatitis_B_virus__J93" : [ - "GQ377560" - ], - "Pea_necrotic_yellow_dwarf_virus__Gross_Enzersdorf_1" : [ - "KC979048", - "KC979049", - "KC979050", - "KC979047", - "KC979046", - "KC979043", - "KC979045", - "KC979044" - ], - "Oropouche_virus_TRVL9760" : [ - "KP026180", - "KP026179" - ], - "BK_polyomavirus__SHA_9" : [ - "AB365160" - ], - "Human_immunodeficiency_virus_1__5096_90" : [ - "AY835751" - ], - "Human_rhinovirus_A75" : [ - "DQ473510" - ], - "Prochlorococcus_phage_P_SSM2" : [ - "NC_006883" - ], - "Hepatitis_B_virus__HBVC2" : [ - "JQ688404" - ], - "Heterocapsa_circularisquama_RNA_virus__HcRNAV34" : [ - "NC_007518" - ], - "European_mountain_ash_ringspot_associated_virus__E52288" : [ - "HG799720" - ], - "Hepatitis_B_virus__Ag48" : [ - "KJ843208" - ], - "Israel_turkey_meningoencephalomyelitis_virus__Israel_618_1995" : [ - "KC734550" - ], - "Methanobacterium_MB1" : [ - "NC_023044" - ], - "Mycobacterium_vanbaalenii_PYR_1" : [ - "NC_008726" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V354_2003" : [ - "EU155308" - ], - "Hepatitis_B_virus__cxa2026" : [ - "KC774311" - ], - "Madariaga_virus_MADV_Equus_ferus_caballus_ARG_ARG_ENC_LL_1936" : [ - "KJ469622" - ], - "Hepatitis_B_virus__D3_WT_SA" : [ - "KM519455" - ], - "Human_immunodeficiency_virus_1__PS2019_Day171" : [ - "DQ676881" - ], - "Hepatitis_B_virus__C6_TKB588" : [ - "HPBC6T588" - ], - "Hepatitis_B_virus__TK128" : [ - "JF754633" - ], - "Porcine_circovirus_2__RC320150108" : [ - "KP824723" - ], - "Hepatitis_B_virus__E2_3" : [ - "GU815693" - ], - "Western_equine_encephalitis_virus_R02PV003422B" : [ - "KJ554990" - ], - "Sathuperi_virus" : [ - "NC_018466", - "NC_018462", - "NC_018461" - ], - "West_Nile_virus__NY_2001_Suffolk" : [ - "DQ164194" - ], - "Hepatitis_B_virus__CONTROL16" : [ - "JQ801508" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V5_2004" : [ - "EU482847" - ], - "Human_poliovirus_2_NIE1118434" : [ - "KJ170559" - ], - "Hepatitis_B_virus__I_T83" : [ - "GU456657" - ], - "Dengue_virus_2_DENV_2_PR_46DN_1994" : [ - "GQ398287" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC60BO1_2009" : [ - "JF909126" - ], - "Dehalococcoides_mccartyi_GY50" : [ - "NC_022964" - ], - "Bean_yellow_mosaic_virus__KP2" : [ - "JX173278" - ], - "Torque_teno_virus_TTVCHN1" : [ - "AF079173" - ], - "Norovirus_Hu_GII_4_Chiba1_2008_JP_Hu_GII_4_Chiba1_2008_JP" : [ - "AB541229" - ], - "Enterovirus_A71_BJ462" : [ - "HM053671" - ], - "Listeria_monocytogenes_M7" : [ - "NC_017537" - ], - "Squash_leaf_curl_virus__PA3_T7" : [ - "KM595239" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SD95_21" : [ - "KC469618" - ], - "Tobacco_mosaic_virus_ssp__NC_82_TMV_Korean_common_strain" : [ - "X68110" - ], - "Ageratum_Yellow_vein_China_virus___OX1_OX1" : [ - "NC_021202" - ], - "Human_rhinovirus_A24_ATCC_VR_1134" : [ - "FJ445190" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7686_2012" : [ - "KF973471" - ], - "Enterovirus_B101_CIV03_10361" : [ - "AY843308" - ], - "JC_polyomavirus__FA_1" : [ - "AB103387" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3873_2008" : [ - "GU131708" - ], - "Pepino_mosaic_virus__VFBC12_08" : [ - "JX866666" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2891_2006" : [ - "FJ898411" - ], - "South_African_cassava_mosaic_virus__MG_MG570A3_11" : [ - "KJ888043" - ], - "Dengue_virus_2_DENV_2_ID_1172DN_1976" : [ - "GQ398261" - ], - "Dengue_virus_2__VNHCM18_K_02" : [ - "AB479042" - ], - "Malvastrum_yellow_vein_Yunnan_virus__SC224_8" : [ - "JX679256" - ], - "Hepatitis_C_virus_subtype_1a__00_11" : [ - "EU781771" - ], - "Goose_hemorrhagic_polyomavirus_14234" : [ - "KJ452212" - ], - "Mycobacterium_phage_Damien" : [ - "NC_024371" - ], - "Tembusu_virus__SDLC" : [ - "KJ740747" - ], - "Dengue_virus_2__DENV_2_VN_BID_V2947_1988" : [ - "JN819418" - ], - "Avian_leukosis_virus__SD110503R" : [ - "KF738251" - ], - "Human_immunodeficiency_virus_1__1013_03" : [ - "AY331287" - ], - "Enterovirus_A71_Chongqing3_09_China" : [ - "GQ994991" - ], - "Deltapapillomavirus_3" : [ - "NC_001789" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_USA_I02_3597_2002" : [ - "KJ469585" - ], - "Maraba_virus" : [ - "NC_025255" - ], - "African_cassava_mosaic_virus__MG_MG650A1_11" : [ - "KJ888080" - ], - "Dragonfly_cyclovirus_2__FL1_NZ38_2010" : [ - "NC_023869" - ], - "Human_respiratory_syncytial_virus_RSVA_human_USA_A2000_03_04_2000_A2000_3_4" : [ - "JX069803" - ], - "Human_bocavirus_Irish" : [ - "KC823115" - ], - "Phaeobacter_gallaeciensis_DSM_17395" : [ - "NC_018287", - "NC_018291", - "NC_018290", - "NC_018288" - ], - "Hepatitis_B_virus__LAS2523" : [ - "AY090460" - ], - "Caldisericum_exile_AZM16c01" : [ - "NC_017096" - ], - "Human_immunodeficiency_virus_1__MERLBDTRC6" : [ - "JN860765" - ], - "Nitrosomonas_europaea_ATCC_19718" : [ - "NC_004757" - ], - "Banana_bunchy_top_virus__HD2" : [ - "FJ859747", - "FJ859734" - ], - "Hepatitis_B_virus__J240" : [ - "GQ377632" - ], - "Human_papillomavirus_type_6__28" : [ - "HG793836" - ], - "Caprine_arthritis_encephalitis_virus__1GA" : [ - "AF322109" - ], - "JC_polyomavirus__JCV161FLC_35" : [ - "JF424942" - ], - "Dengue_virus_2__DENV_2_US_BID_V589_2006" : [ - "EU482721" - ], - "Decapod_penstyldensovirus_1" : [ - "NC_002190" - ], - "Starling_circovirus__AM_C" : [ - "KC846095" - ], - "Madariaga_virus_MADV_Equus_ferus_caballus_ARG_ARG_ENC_JB_1933" : [ - "KJ469569" - ], - "Middle_East_respiratory_syndrome_coronavirus__Camel_UAE_D1164_10_2014" : [ - "KP719928" - ], - "Cherry_green_ring_mottle_virus__F9" : [ - "JX501670" - ], - "Hepatitis_B_virus__19Y01HCC" : [ - "AB014378" - ], - "African_horse_sickness_virus__RSArrah_06" : [ - "KF446270", - "KF446261", - "KF446279" - ], - "Hepatitis_B_virus__AIDS38" : [ - "JQ801491" - ], - "GB_virus_C__Hu_5" : [ - "KC618398" - ], - "Bhendi_yellow_vein_India_virus__India_Siddalaghata_OYSid_2006___OYSID" : [ - "GU112024" - ], - "Rice_dwarf_virus__Kunming" : [ - "AY302568" - ], - "West_Nile_virus__WNV_1_US_BID_V6378_2005" : [ - "KJ501267" - ], - "Cowpox_virus_Norway_1994_MAN" : [ - "HQ420899" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2896_2006" : [ - "FJ898415" - ], - "Hepatitis_B_virus__C226_3" : [ - "FJ899789" - ], - "Pigeon_paramyxovirus_1_pi_CH_LHLJ_131237" : [ - "KJ607165" - ], - "Oryza_rufipogon_endornavirus" : [ - "NC_007649" - ], - "Viral_hemorrhagic_septicemia_virus__BV060408_52" : [ - "FJ362510" - ], - "Maize_streak_virus___A_Sag__MSV_A_MSV_Sag" : [ - "AF329880" - ], - "Megavirus_lba__LBA111" : [ - "NC_020232" - ], - "Dengue_virus_1__HNRG12589" : [ - "KC692498" - ], - "Rabies_virus__SM4862" : [ - "JQ685946" - ], - "Listeria_phage_WIL_1" : [ - "NC_025440" - ], - "Porcine_circovirus_2__HUN" : [ - "HM776444" - ], - "Sosuga_virus__2012" : [ - "NC_025343" - ], - "Squash_leaf_curl_virus__IL1_3" : [ - "KM595093" - ], - "Human_papillomavirus_type_6__9" : [ - "HG793817" - ], - "Columbid_circovirus__7050" : [ - "AJ298230" - ], - "West_Nile_virus__WNV_1_US_BID_V6475_2003" : [ - "KJ501478" - ], - "Suid_herpesvirus_1_JS_2012" : [ - "KP257591" - ], - "West_Nile_virus__WNV_1_US_BID_V5229_2008" : [ - "JF920756" - ], - "Rhynchosia_golden_mosaic_virus_1068" : [ - "EU339937" - ], - "Tobacco_rattle_virus__TRV_PmC9_2" : [ - "DQ448614" - ], - "Porcine_circovirus_2__PCV2sch20131" : [ - "KJ596438" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3055_2008" : [ - "GQ199860" - ], - "Pepino_mosaic_virus__Sp_13" : [ - "NC_004067" - ], - "Euphorbia_yellow_mosaic_virus__EuYMV__BR_768Tom8a_08" : [ - "JX415192" - ], - "Human_adenovirus_62__Aids25_Manchester_1993" : [ - "JN162671" - ], - "Panicum_streak_virus__E_KE_Nye5_g359" : [ - "GQ415390" - ], - "Barley_yellow_dwarf_virus_PAV_BYDV_PAV_serotype_BYDV_JPN_PAV" : [ - "BYDBYDVPAV" - ], - "Soybean_chlorotic_mottle_virus" : [ - "NC_001739", - "E02829" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C54" : [ - "KJ019034" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_COD_2014_Lomela_Lokolia16" : [ - "KP271018" - ], - "Ageratum_yellow_vein_virus_Guam_12_02" : [ - "NC_027040" - ], - "Rotavirus_A_RVA_Human_wt_USA_DC5385_1991_G1P_8" : [ - "KC579660", - "KC579671", - "KC579667", - "KC579669" - ], - "Mycobacterium_phage_Rizal" : [ - "NC_011272" - ], - "Human_papillomavirus_type_6__17" : [ - "HG793825" - ], - "Middle_East_respiratory_syndrome_coronavirus__Camel_UAE_D1164_9_2014" : [ - "KP719927" - ], - "Tomato_leaf_curl_New_Delhi_virus__India_Bhavnagar_2012___Bhavnagar" : [ - "KF515616" - ], - "Dengue_virus_2__GZ40" : [ - "JX470186" - ], - "Baboon_endogenous_virus_strain_M7_M7" : [ - "AB979448", - "NC_022517" - ], - "Maize_streak_virus__UBush_53" : [ - "EF547075" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5767_1" : [ - "KR105327" - ], - "Hepatitis_B_virus__I_T23" : [ - "GU456662" - ], - "Bhendi_yellow_vein_India_virus__India_Kalayani_OYW2_2005___OYW2" : [ - "GU112019" - ], - "Dengue_virus_2__DENV_2_NI_BID_V668_2004" : [ - "GQ199874" - ], - "Baboon_enterovirus_A13" : [ - "AF326750" - ], - "Dengue_virus_1__DENV_1_VN_BID_V940_2007" : [ - "EU482485" - ], - "Poinsettia_mosaic_virus__JO4" : [ - "AB550791" - ], - "Human_parainfluenza_virus_3_14702" : [ - "EU424062" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V254_2002" : [ - "EU255955" - ], - "Duvenhage_virus__DUVVSA06" : [ - "EU623444" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GX09_32" : [ - "HM214915" - ], - "Rabies_virus__SM5596" : [ - "JQ685964" - ], - "Sida_micrantha_mosaic_virus__BR_Jai43_08" : [ - "KC706532" - ], - "Porcine_circovirus_2_SXYAA_01" : [ - "KC800646" - ], - "Duck_circovirus__DU104" : [ - "HM162353" - ], - "Hepatitis_B_virus__H82" : [ - "FJ349215" - ], - "Human_poliovirus_3_IRA10853" : [ - "EU684056" - ], - "Human_papillomavirus_type_33__INCC0137" : [ - "HQ537699" - ], - "Hepatitis_B_virus__LAMr_Pt__24_Adefovir_treated_Pt__1" : [ - "AB367415" - ], - "Coxsackievirus_A13_BAN99_10430" : [ - "DQ995641" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V286_2005" : [ - "EU256079" - ], - "Dengue_virus_2_ThNH_p11_93" : [ - "AF022437" - ], - "Norovirus_Hu_GII_4_Sakai3_2007_JP_Hu_GII_4_Sakai3_2007_JP" : [ - "AB541342" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota17B" : [ - "KP283402" - ], - "Tomato_yellow_leaf_curl_virus_HBQX" : [ - "JQ004046" - ], - "Human_poliovirus_2_NIE0511440_LAS05_01" : [ - "JX274981" - ], - "Dengue_virus_2__D2_Pakistan_2011_3_2011" : [ - "KF041233" - ], - "Hepatitis_B_virus__N03_C_134B" : [ - "KJ173398" - ], - "Japanese_encephalitis_virus__HYZ" : [ - "JN381853" - ], - "Human_metapneumovirus__NL_00_17" : [ - "FJ168779" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C93" : [ - "KJ019062" - ], - "Prochlorococcus_phage_P_HM1_M4_247" : [ - "NC_015280" - ], - "Torque_teno_sus_virus_1a__TTV1_1914" : [ - "GU570200" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Srinivaspur_OYSOK3_2006___OY163" : [ - "GU111993" - ], - "Bluetongue_virus_23__IAH_IND1988_03" : [ - "AJ783907" - ], - "Dengue_virus_2_DENV_2_ID_1070DN_1976" : [ - "GQ398260" - ], - "Bovine_parainfluenza_virus_3_SD0835" : [ - "HQ530153" - ], - "South_African_cassava_mosaic_virus__MG_MG209A1_09" : [ - "KJ887677" - ], - "Rabbit_hemorrhagic_disease_virus__CBVal16" : [ - "KM979445" - ], - "Enterobacteria_phage_Min27" : [ - "NC_010237" - ], - "Betacoronavirus_Erinaceus_VMC_DEU_2012__ErinaceusCoV_2012_174_GER_2012" : [ - "KC545383" - ], - "Wheat_dwarf_virus__GSGG07_3" : [ - "KJ536079" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__GD2007" : [ - "EU880433" - ], - "Tomato_severe_rugose_virus__BR_Vic36_10" : [ - "JX865649" - ], - "Simian_rotavirus" : [ - "Z32535", - "V01546", - "V01190", - "X00421" - ], - "Human_parechovirus_6__SH6" : [ - "FJ888592" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Sherpur_2013___Bangladesh_Sherpur_2013" : [ - "AB971863", - "AB971862" - ], - "Vaccinia_virus_AGR_MVA_572pre" : [ - "DQ983239" - ], - "Mycobacterium_abscessus_bolletii_50594" : [ - "NC_021279", - "NC_021278", - "NC_021282" - ], - "Watermelon_chlorotic_stunt_virus__JO1_115" : [ - "KM820190" - ], - "Human_immunodeficiency_virus_1__I_2478B" : [ - "AB485668", - "AB485669" - ], - "Human_immunodeficiency_virus_1__97VNHCM310" : [ - "FJ185240" - ], - "Puumala_virus_PUUV_Pieksamaki_human_lung_2008" : [ - "JN831948", - "JN831947", - "JN831949" - ], - "Dengue_virus_2__DENV_2_VN_BID_V772_2007" : [ - "EU482698" - ], - "Hepatitis_B_virus__BV_153" : [ - "GU563561" - ], - "Citrus_tristeza_virus_T30" : [ - "AF260651" - ], - "Aedes_pseudoscutellaris_reovirus" : [ - "NC_007667", - "NC_007671", - "NC_007668", - "NC_007670", - "NC_007669", - "NC_007672", - "NC_007666", - "NC_007674", - "NC_007673" - ], - "Bovine_enterovirus_type_2_3A" : [ - "AY508697" - ], - "Pepper_mottle_virus__204040" : [ - "EU586128" - ], - "Cowpox_virus_RatHei09_1" : [ - "KC813504" - ], - "Hepatitis_B_virus__SHB520" : [ - "KJ598714" - ], - "Junin_mammarenavirus_XJ34" : [ - "JF799978", - "JF799982" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2077_2002" : [ - "GQ868627" - ], - "Hepatitis_B_virus__ph105" : [ - "EU670263" - ], - "Hepatitis_B_virus__pt1N" : [ - "KM875404" - ], - "Chayote_mosaic_virus" : [ - "NC_002588" - ], - "Hepatitis_B_virus__HBV_15T" : [ - "EU660228" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2307_2001" : [ - "FJ744721" - ], - "Dengue_virus_3__DENV_3_PE_BID_V6262_2007" : [ - "KJ643590" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1_10P20_2010_c1_10P20" : [ - "KF514398" - ], - "Hepatitis_C_virus_HC_J4_HC_J4_91" : [ - "HPCJ491" - ], - "African_cassava_mosaic_virus__MG_MG311A2_10" : [ - "KJ887979" - ], - "Bean_golden_mosaic_virus__BR_Cri6_12" : [ - "KJ939846" - ], - "West_Nile_virus__Ast02_3_570" : [ - "DQ374651" - ], - "Staphylococcus_phage_MCE_2014" : [ - "NC_025416" - ], - "Foot_and_mouth_disease_virus___type_O__BUL_30_2011" : [ - "JX040489" - ], - "Respiratory_syncytial_virus_S2_ts1C" : [ - "NC_001803" - ], - "Hepatitis_B_virus__I231" : [ - "FJ562330" - ], - "Hepatitis_E_virus__HE_JA04_1911" : [ - "AB248520" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C58" : [ - "KJ019037" - ], - "Human_polyomavirus_7__PITT1" : [ - "KJ733012" - ], - "Human_papillomavirus_type_67__Qv31430" : [ - "HQ537779" - ], - "Mycobacterium_phage_Charlie_Charlie" : [ - "NC_023729" - ], - "West_Nile_virus__WNV_1_BID_V5040" : [ - "JN819313" - ], - "JC_polyomavirus__JCV161FLC_08" : [ - "JF424916" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V4271_2008" : [ - "GU131931" - ], - "GB_virus_C_Iowan" : [ - "AF121950" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_BJSY_1" : [ - "FJ950744" - ], - "Human_adenovirus_55__CQ_814" : [ - "JX123027" - ], - "JC_polyomavirus__JCV176FLC_04" : [ - "JF424900" - ], - "Foot_and_mouth_disease_virus___type_A_A22_Iraq_a22iraq_95_iso95" : [ - "AY593762" - ], - "Newcastle_disease_virus_mallard_US_OH__04_411_2004" : [ - "GQ288377" - ], - "West_Nile_virus__WNV_1_US_BID_V6676_2004" : [ - "KJ501522" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C12" : [ - "KJ019143" - ], - "Streptococcus_constellatus_pharyngis_C232" : [ - "NC_022236" - ], - "Anaeromyxobacter_dehalogenans_2CP_C" : [ - "NC_007760" - ], - "Dengue_virus_1__DENV_1_NI_BID_V1071_2005" : [ - "EU482617" - ], - "Tomato_leaf_curl_Palampur_virus__Rumex" : [ - "HG934859" - ], - "Hepatitis_B_virus__MY491666" : [ - "KJ803805" - ], - "Human_immunodeficiency_virus_1__mCSW503" : [ - "AB097866" - ], - "Dengue_virus_3__D3_Pakistan_43298_2006" : [ - "KF041259" - ], - "Cellulophaga_phage_phi18_4_phi18_4" : [ - "KC821628" - ], - "Small_begomovirus_associated_satellite__wf_S40" : [ - "KJ859197" - ], - "Turnip_mosaic_virus__NZW6" : [ - "AB989656" - ], - "Merkel_cell_polyomavirus__18b" : [ - "HM011550" - ], - "Staphylococcus_aureus_SA957" : [ - "NC_022442" - ], - "Squash_leaf_curl_China_virus__SY" : [ - "KF999984", - "KF999983" - ], - "Mycobacterium_phage_Pacc40" : [ - "NC_011287" - ], - "Feline_calicivirus__12Q087_5" : [ - "KJ572401" - ], - "Human_parechovirus_3__Can82853_01" : [ - "AJ889918" - ], - "Human_immunodeficiency_virus_1__BREPM269" : [ - "AY771591" - ], - "Hepatitis_B_virus__M43" : [ - "GQ924625" - ], - "Mycobacterium_phage_Kampy" : [ - "NC_024141" - ], - "Propionibacterium_phage_P105" : [ - "NC_018849" - ], - "Porcine_circovirus_2_JS0701" : [ - "GQ358994" - ], - "Synechococcus_phage_ACG_2014a__Syn7803US117" : [ - "KJ019081" - ], - "Equine_polyomavirus__CU03" : [ - "NC_017982" - ], - "Acartia_tonsa_copepod_circovirus__154_D11" : [ - "NC_020099" - ], - "Hantaanvirus_CGAa1015_CGAa1015" : [ - "EF990926", - "EF990912" - ], - "Hepatitis_B_virus__KOR19LC" : [ - "GQ475323" - ], - "Hepatitis_B_virus__HBV_16N_del2" : [ - "EU660233" - ], - "Human_immunodeficiency_virus_1__04ZAPS168B1" : [ - "DQ164121" - ], - "Swine_hepatitis_E_virus__swCH189" : [ - "FJ610232" - ], - "Bluetongue_virus_2__17356" : [ - "DQ191265" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kampala_Okra8" : [ - "FN554528" - ], - "Human_papillomavirus_type_52__Qv07294" : [ - "HQ537751" - ], - "Chikungunya_virus__LK_EH_CH18608" : [ - "FJ513675" - ], - "Porcine_circovirus_type_2_C" : [ - "AF109398" - ], - "SARS_coronavirus_GD69__GD69" : [ - "AY313906" - ], - "Moroccan_pepper_virus__MPV_EM81" : [ - "JX182425" - ], - "Toscana_virus__SI_39538" : [ - "EU003175" - ], - "Pepper_golden_mosaic_virus__PepGMV_D" : [ - "AY928514", - "AY928515" - ], - "Human_immunodeficiency_virus_1___574" : [ - "AB428562" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2918_2006" : [ - "JF937599" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC242" : [ - "KF551580" - ], - "Human_papillomavirus_type_16__Qv02234" : [ - "HQ644259" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LGD_090818" : [ - "JF828994" - ], - "Hepatitis_B_virus_468_17" : [ - "KR013931" - ], - "Hepatitis_B_virus__GU180" : [ - "GQ161827" - ], - "Hepatitis_B_virus__clz2048" : [ - "KC774202" - ], - "Human_immunodeficiency_virus_1__03ZASK066B1" : [ - "AY901969" - ], - "Nam_Dinh_virus__NDiV_NJ8_09" : [ - "KF771866" - ], - "Torque_teno_virus__TTV_HD15c__gbCsCt38_4" : [ - "FR751474" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V166_1992" : [ - "EU255963" - ], - "Hepatitis_B_virus_551_27" : [ - "KR013800" - ], - "Tomato_yellow_leaf_curl_virus__Tianjin" : [ - "GU563330" - ], - "Human_immunodeficiency_virus_1__03ZASK072B1" : [ - "DQ093593" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V702_2006" : [ - "EU256057" - ], - "Chlamydia_trachomatis_L2_25667R" : [ - "NC_020930" - ], - "Hepatitis_B_virus_subtype_adr_NDR260" : [ - "AB033550" - ], - "Hepatitis_B_virus__CHIMP_4" : [ - "AF242586" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1002_2006" : [ - "EU482447" - ], - "Hepatitis_B_virus__82" : [ - "JX507213" - ], - "Chickpea_chlorotic_dwarf_virus__A_IC_1_02" : [ - "KC172653" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLI2219_2010" : [ - "KJ627263" - ], - "West_Nile_virus__WNV_1_US_BID_V5178_2004" : [ - "JF488088" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00056_1999_G1P_8" : [ - "JN651750", - "JN651753", - "JN651755", - "JN651756", - "JN651748", - "JN651757", - "JN651752", - "JN651758", - "JN651751", - "JN651754", - "JN651749" - ], - "Garlic_virus_C" : [ - "NC_003376" - ], - "Goose_paramyxovirus_SF02__SF02" : [ - "NC_005036" - ], - "Canine_parvovirus_2c__UY317" : [ - "KM457125" - ], - "South_African_cassava_mosaic_virus__MG_MG338A5_10" : [ - "KJ887700" - ], - "Human_immunodeficiency_virus_1__01BR047" : [ - "DQ358800" - ], - "Sphingomonas_MM_1" : [ - "NC_020543", - "NC_020561", - "NC_020544", - "NC_020563", - "NC_020542", - "NC_020562" - ], - "Hepatitis_B_virus__BFJT2003_2" : [ - "AB642098" - ], - "Cucurbit_aphid_borne_yellows_virus_Sq_2003_7_2" : [ - "JF939812" - ], - "Porcine_epidemic_diarrhea_virus_USA_Ohio75_2013" : [ - "KJ645670" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC12AD4_2008" : [ - "JF909214" - ], - "Human_immunodeficiency_virus_1__00BW1811_3" : [ - "AF443098" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E707_2007_G3P_8__E707" : [ - "KF371765", - "KF371759", - "KF371760", - "KF371768", - "KF371764", - "KF371761", - "KF371762", - "KF371763", - "KF371767" - ], - "Human_mastadenovirus_B_human_USA_ak40_AdV7b_1997_7_P7H7F7" : [ - "JX423388" - ], - "Propionibacterium_phage_Pirate" : [ - "NC_027623" - ], - "Trichomonas_vaginalis_virus_2__C351" : [ - "JF436871" - ], - "Human_papillomavirus_type_16_CU2" : [ - "FJ610147" - ], - "Human_herpesvirus_3_VZVi_Jena_GER_06_08_2__V_IX__457_2008" : [ - "JN704710" - ], - "Hepatitis_B_virus__MGL226F" : [ - "AB270536" - ], - "Maize_streak_virus__UNak_125" : [ - "EF547092" - ], - "West_Nile_virus__WNV_1_US_BID_V7437_2008" : [ - "KJ501147" - ], - "Dengue_virus_2__DENV_2_VN_BID_V711_2006" : [ - "EU482648" - ], - "Escherichia_coli_55989" : [ - "NC_011748" - ], - "Porcine_circovirus_2__CH1" : [ - "HQ202945" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V223_2003" : [ - "EU255943" - ], - "Porcine_circovirus_2_DF_1" : [ - "JN119255" - ], - "Merremia_leaf_curl_virus__Merremia_N1" : [ - "DQ644561" - ], - "Norovirus_GII_Hu_JP_2010_GII_P4_GII_4_Shimada_ASC96__Shimada_ASC96" : [ - "KJ196287" - ], - "Human_immunodeficiency_virus_1__03ZASK104B1" : [ - "DQ396395" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7344_2002" : [ - "KF973327" - ], - "Mycoplasma_hyorhinis_SK76" : [ - "NC_019552" - ], - "Dengue_virus_1__DENV_1_VN_BID_V769_2003" : [ - "EU482791" - ], - "Human_immunodeficiency_virus_1__03ZAPS081MB1" : [ - "DQ351219" - ], - "Shewanella_piezotolerans_WP3" : [ - "NC_011566" - ], - "Hepatitis_B_virus_HB536" : [ - "HM011482" - ], - "Hepatitis_B_virus__C3_5" : [ - "GU815641" - ], - "Watermelon_chlorotic_stunt_virus__PA1_J61" : [ - "KM820276" - ], - "West_Nile_virus__WNV_1_US_BID_V4694_2001" : [ - "HM488248" - ], - "Sida_yellow_mosaic_China_virus____Hainan_8___Hn7" : [ - "NC_017987" - ], - "Porcine_circovirus_2__SVP_321" : [ - "EU747085" - ], - "Hepatitis_B_virus__CX050M_e276n" : [ - "KJ173292" - ], - "Abaca_bunchy_top_virus__Q1108" : [ - "EF546806", - "EF546803", - "EF546804", - "EF546807", - "EF546802", - "EF546805" - ], - "Hepatitis_B_virus__A227" : [ - "HM363586" - ], - "Dengue_virus_2__DC636Y12" : [ - "KM279588" - ], - "West_Nile_virus__NY_2003_Suffolk" : [ - "DQ164190" - ], - "Bhendi_yellow_vein_India_virus__India_Tirupathi_OY98_2005___OY98" : [ - "GU112009" - ], - "Hepatitis_B_virus__239_0402_Nature3_3_unSero" : [ - "DQ993706" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_c5P10" : [ - "JX162087" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5844_1" : [ - "KR105328" - ], - "Mycobacterium_phage_Kugel_Kugel" : [ - "NC_023702" - ], - "Bluetongue_virus_2__14808_249" : [ - "DQ191264" - ], - "Hepatitis_B_virus__1A" : [ - "AY236160" - ], - "West_Nile_virus__Bird_1153" : [ - "AY712945" - ], - "Porcine_parvovirus_NADL_2_M12" : [ - "KF913348" - ], - "Vibrio_phage_ICP1_2006_C" : [ - "HQ641349" - ], - "Japanese_encephalitis_virus__TC2009_3" : [ - "JF499788" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda38_05" : [ - "KC706645" - ], - "Hepatitis_B_virus__HBV_TH123" : [ - "AB112471" - ], - "Tomato_leaf_curl_Taiwan_virus__BS" : [ - "DQ237918" - ], - "Tomato_severe_rugose_virus__BR_Vic26_09" : [ - "JX865639" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9418_2013" : [ - "KJ643497" - ], - "Tomato_leaf_curl_Joydebpur_virus__India_Amadalavalasa2_Kenaf_2007" : [ - "FJ345401" - ], - "Hepatitis_B_virus__FMD101" : [ - "GU332700" - ], - "Tomato_mosaic_virus_OM" : [ - "X02144" - ], - "Dengue_virus_3_ThD3_0055_93" : [ - "AY676351" - ], - "Chickpea_chlorotic_dwarf_virus__F_SC_3_03" : [ - "KC172667" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_211_2011" : [ - "KJ686290" - ], - "Corynebacterium_pseudotuberculosis_1002" : [ - "NC_017300" - ], - "Luna_mammarenavirus_LSK_1" : [ - "NC_016152", - "NC_016153" - ], - "Norovirus_Hu_GII_20229_2009_VNM_Hu_GII_20229_2009_VNM" : [ - "KC409281" - ], - "Human_papillomavirus_type_77" : [ - "Y15175" - ], - "Porcine_circovirus_2__CP5461" : [ - "FJ905465" - ], - "Hepatitis_B_virus__F001_11" : [ - "AB819066" - ], - "Human_immunodeficiency_virus_1__ES_X1936__C" : [ - "EU786673" - ], - "Prune_dwarf_virus__Salmo_BC_cherry" : [ - "NC_008039" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1856_2007" : [ - "FJ410218" - ], - "Hepatitis_B_virus__1164" : [ - "JQ023662" - ], - "Hepatitis_B_virus__SHB45" : [ - "KJ598683" - ], - "Bat_SARS_coronavirus_HKU3_1_HKU3_1" : [ - "DQ022305" - ], - "Helicobacter_pylori_ELS37" : [ - "NC_017063", - "NC_017064" - ], - "Hepatitis_B_virus__256" : [ - "JQ040139" - ], - "Dengue_virus_3_D3_SG_05K802DK1_2005" : [ - "EU081184" - ], - "Hepatitis_C_virus__6_TV520" : [ - "KJ567651" - ], - "Small_begomovirus_associated_satellite__wf_S34" : [ - "KJ859190" - ], - "Escherichia_phage_phiKT" : [ - "NC_019520" - ], - "White_clover_mosaic_virus_WClMV_RC" : [ - "AB669182" - ], - "Hepatitis_B_virus__I7" : [ - "FJ562219" - ], - "Murine_norovirus_GV_CR17_2005_USA__Mu_NoV_GV_CR17_2005_USA" : [ - "EU004682" - ], - "Hepatitis_B_virus_1485_3a" : [ - "KR013870" - ], - "WU_Polyomavirus__T9" : [ - "GU296398" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1577_2007" : [ - "FJ024437" - ], - "Hepatitis_B_virus__C113_3" : [ - "FJ899772" - ], - "JC_polyomavirus__JCV173FLC_02" : [ - "JF424957" - ], - "Foot_and_mouth_disease_virus___type_O__MAY_7_2001" : [ - "HQ632769" - ], - "Hepatitis_B_virus__HBV201302" : [ - "KF219922" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4005_2008" : [ - "GU131769" - ], - "Tomato_yellow_leaf_curl_virus__Samcheonpo_1" : [ - "HM856873" - ], - "Meleagrid_herpesvirus_1_FC126" : [ - "AF282130" - ], - "Enterovirus_A71_SD09_14_SD_CHN_2009" : [ - "JX678883" - ], - "Tomato_leaf_curl_China_betasatellite__Y5" : [ - "AJ421623" - ], - "Siniperca_chuatsi_rhabdovirus" : [ - "NC_008514" - ], - "Dengue_virus_1__DENV_1_PR_BID_V8187_2010" : [ - "KJ189366" - ], - "Staphylococcus_phage_Slt" : [ - "NC_002661" - ], - "JC_polyomavirus__Ceb_1" : [ - "AB113118" - ], - "Fowl_adenovirus_5_340" : [ - "NC_021221" - ], - "Hepatitis_B_virus__HBV_GA325" : [ - "AB106564" - ], - "Hepatitis_B_virus__JL" : [ - "EU498227" - ], - "Human_immunodeficiency_virus_1__97VNAG207" : [ - "FJ185249" - ], - "Hepatitis_B_virus__A45" : [ - "FJ904406" - ], - "Agrobacterium_radiobacter_K84" : [ - "NC_011985", - "NC_011983", - "NC_011990", - "NC_011994", - "NC_011987" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Must_alpha_D3E7" : [ - "EU384633" - ], - "Niminivirus__NimiV" : [ - "NC_023851" - ], - "Human_immunodeficiency_virus_1__02HNsmx2" : [ - "DQ007901" - ], - "Hantaanvirus_CGAa4P15_CGAa4P15" : [ - "EF990928", - "EF990914" - ], - "West_Nile_virus__GCTX1_2005" : [ - "DQ666449" - ], - "Japanese_encephalitis_virus__YN0623" : [ - "JN381836" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__JS2012_035" : [ - "KC505146", - "KC505144", - "KC505145" - ], - "Porcine_circovirus_2__SXS090703" : [ - "GU325763" - ], - "Cauliflower_mosaic_virus__IRNEB14" : [ - "JX912260" - ], - "Hepatitis_B_virus__HBV29" : [ - "KC875285" - ], - "Tomato_leaf_curl_New_Delhi_betasatellite" : [ - "NC_005359", - "AY438562" - ], - "Bat_coronavirus_BM48_31_BGR_2008_BtCoV_BM48_31_BGR_2008" : [ - "NC_014470" - ], - "Hepatitis_B_virus_C0607174_THN_F" : [ - "AP011100" - ], - "Propionibacterium_phage_PHL301M00__PHL301M00" : [ - "NC_027354" - ], - "Stratford_virus_C338" : [ - "KM225263", - "KF917540" - ], - "Hepatitis_B_virus__C133" : [ - "EU859938" - ], - "Human_poliovirus_1_strain_Sabin_Sabin_1" : [ - "V01150" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1526_2007" : [ - "EU677154" - ], - "Hepatitis_B_virus__AT2009" : [ - "JN792900" - ], - "Sindbis_virus__Kiihtelysvaara_2002" : [ - "JQ771798" - ], - "Candidatus_Nitrospira_defluvii" : [ - "NC_014355" - ], - "Enterobacteria_phage_P22_ATCC_19585_B1" : [ - "AB426868" - ], - "Hepatitis_B_virus__2111" : [ - "FJ386618" - ], - "Torque_teno_sus_virus_1a__FJ_China_2009_TTV1_9" : [ - "JF937660" - ], - "Variola_virus_India_1964_7125_Vellore" : [ - "DQ437586" - ], - "Sapovirus_C12_C12" : [ - "NC_006554" - ], - "Human_immunodeficiency_virus_1___426" : [ - "AB428556" - ], - "Melon_necrotic_spot_virus__MNSV_HM" : [ - "GU480022" - ], - "South_African_cassava_mosaic_virus__MG_MG140B23_09" : [ - "KJ887669" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19079_J09622_2008" : [ - "KR135307" - ], - "Streptomyces_phage_phiHau3" : [ - "NC_018836" - ], - "Hepatitis_B_virus__WJT35" : [ - "DQ377165" - ], - "Human_immunodeficiency_virus_1__nx2" : [ - "HM067748" - ], - "Hepatitis_B_virus__LAMr_Pt__14_Adefovir_treated_Pt__25" : [ - "AB367405" - ], - "Human_papillomavirus_type_88" : [ - "NC_010329" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2208_2002" : [ - "FJ639775" - ], - "Human_respiratory_syncytial_virus__08_042735" : [ - "JX015496" - ], - "Foot_and_mouth_disease_virus___type_O__UKG_2640_2001" : [ - "FJ542372" - ], - "Hepatitis_B_virus__Occult_HK318" : [ - "KJ410502" - ], - "Tomato_common_mosaic_virus__BR_Coi17_07" : [ - "KC706594" - ], - "Tomato_yellow_leaf_curl_Thailand_virus" : [ - "EU249457", - "EU249458" - ], - "Tembusu_virus__GX2013H" : [ - "KJ700462" - ], - "Dengue_virus_2__MAR_Sep_05" : [ - "EU920839" - ], - "Canna_yellow_streak_virus__BZ2" : [ - "KM882642" - ], - "South_African_cassava_mosaic_virus__MG_MG126A1_09" : [ - "KJ887660" - ], - "Brucella_phage_Bk" : [ - "KC556893" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA133" : [ - "KF670678" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2186_2001" : [ - "FJ744700" - ], - "West_Nile_virus__WNV_1_US_BID_V4808_2005" : [ - "JF899529" - ], - "Porcine_circovirus_2__TN1_1" : [ - "JQ181603" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2478_2008" : [ - "FJ850108" - ], - "Porcine_circovirus_2__A02" : [ - "FJ218000" - ], - "Dengue_virus_2_DENV_2_PR_23DN_1994" : [ - "GQ398274" - ], - "Mumps_virus_MuV_New_York_USA_53_09_3" : [ - "JX287387" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M100" : [ - "KM110939" - ], - "Hedyotis_uncinella_yellow_mosaic_betasatellite__VN1" : [ - "NC_023015" - ], - "Newcastle_disease_virus__NDV05" : [ - "FJ386396" - ], - "Human_papillomavirus_type_16__Qv13040" : [ - "HQ644269" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI6_12_DNA_B" : [ - "HE979783" - ], - "Human_immunodeficiency_virus_1__00BW3886_8" : [ - "AF443112" - ], - "Southern_rice_black_streaked_dwarf_virus__YN_MShi" : [ - "JQ773422", - "JQ773424", - "JQ773428", - "JQ773421", - "JQ773425", - "JQ773427", - "JQ773420", - "JQ773423", - "JQ773429", - "JQ773426" - ], - "Human_papillomavirus_type_53__Qv31688" : [ - "EF546482" - ], - "Japanese_encephalitis_virus__SX09S_01" : [ - "HQ893545" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B80_2008" : [ - "GQ396654" - ], - "Tomato_dwarf_leaf_virus__AR_Pichanal_397" : [ - "NC_016580", - "NC_016581" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5680_2010" : [ - "JF937639" - ], - "Sugarcane_mosaic_virus__SCMV_VER1" : [ - "EU091075" - ], - "Streptococcus_pneumoniae_ST556" : [ - "NC_017769" - ], - "Mycobacterium_phage_Akoma_Akoma" : [ - "NC_023742" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7614_2009" : [ - "KJ189345" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2743_2007" : [ - "FJ898385" - ], - "Human_rhinovirus_A45_ATCC_VR_1155" : [ - "FJ445132" - ], - "Thogoto_virus_IIA" : [ - "AF527529" - ], - "Human_immunodeficiency_virus_1_01UAOD89" : [ - "DQ823367" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_RespPRRS_vaccine" : [ - "AF066183" - ], - "Lactococcus_phage_ul36_k1t1" : [ - "DQ394807" - ], - "Rhodococcus_phage_RRH1" : [ - "NC_016651" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_73_2012" : [ - "KJ686244" - ], - "Hepatitis_B_virus__I_T35" : [ - "GU456638" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V284_2005" : [ - "EU256078" - ], - "Cherry_leaf_roll_virus__Olm1" : [ - "JN104386", - "JN104385" - ], - "Murine_norovirus_GV_NIH_2409_2005_USA_GV_NIH_2409_2005_USA" : [ - "JF320644" - ], - "Hepatitis_E_virus__JE03_1760F_p13_3" : [ - "AB425830" - ], - "Potato_virus_Y__GBVC_PVY_23_N_Wi" : [ - "JQ969040" - ], - "Alteromonas_macleodii__Ionian_Sea_UM7" : [ - "NC_021718", - "NC_021713" - ], - "Dengue_virus_3__DENV_3_VE_BID_V912_2001" : [ - "EU569689" - ], - "Chikungunya_virus_AF15561" : [ - "EF452493" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_91P_029_01_1991" : [ - "KP258698" - ], - "Hepatitis_B_virus__dlz2121" : [ - "KC774430" - ], - "Bean_golden_mosaic_virus__BR_Flt12_11" : [ - "KJ939777" - ], - "Yellow_fever_virus_Ivory_Coast_1999" : [ - "AY603338" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_110526" : [ - "KJ425487" - ], - "Porcine_circovirus_2_49_04_IB_49_04_Br" : [ - "KC835191" - ], - "Plum_pox_virus_Dideron__D__BIII_2" : [ - "GU461890" - ], - "Human_herpesvirus_5_BE_32_2010" : [ - "KP745634" - ], - "Venezuelan_equine_encephalitis_virus_Everglades_Fe3_7c" : [ - "AF075251" - ], - "Mungbean_yellow_mosaic_virus__VN7" : [ - "JX244174", - "JX244179" - ], - "Faba_bean_necrotic_yellows_C11_alphasatellite__EV1_93" : [ - "NC_003558" - ], - "Hepatitis_B_virus__cyc1043" : [ - "KC774353" - ], - "Human_adenovirus_7_L14_XY_CHN_2012" : [ - "KJ019888" - ], - "West_Nile_virus__NY_2003_Albany" : [ - "DQ164189" - ], - "Porcine_circovirus_2__PCV_HZY32" : [ - "KC514997" - ], - "West_Nile_virus__WNV_1_US_BID_V5208_2007" : [ - "JF920738" - ], - "Coxsackievirus_A20_IH_Pool_35" : [ - "AF465514" - ], - "Mycobacterium_phage_Breezona" : [ - "NC_021296" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0137" : [ - "KP759685" - ], - "Chlamydia_trachomatis_D_UW_3_CX" : [ - "NC_000117" - ], - "Hollyhock_leaf_crumple_virus_satellite_DNA" : [ - "AJ316044", - "NC_004092" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4778_2009" : [ - "HM181973" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V509_2001" : [ - "EU862835" - ], - "Polaromonas_naphthalenivorans_CJ2" : [ - "NC_008764", - "NC_008781", - "NC_008760", - "NC_008758", - "NC_008763", - "NC_008762", - "NC_008757", - "NC_008761", - "NC_008759" - ], - "Human_rhinovirus_A13_ATCC_VR_1123" : [ - "FJ445116" - ], - "Maize_streak_virus__MSV_A_CF_Bim3_Car19_2008" : [ - "HQ693307" - ], - "Human_adenovirus_16_ch__79" : [ - "AY601636" - ], - "Small_begomovirus_associated_satellite__wf_S47" : [ - "KJ859202" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3676_2007" : [ - "KF955442" - ], - "Vaccinia_virus_Tashkent" : [ - "KM044310", - "KM044309" - ], - "Hepatitis_B_virus__H4536_07" : [ - "EU833891" - ], - "Canna_yellow_streak_virus__NC1" : [ - "KM882644" - ], - "Hepatitis_B_virus__HBV_77_Mother" : [ - "JN400089" - ], - "Human_enterovirus_94__E210" : [ - "DQ916376" - ], - "Soybean_mosaic_virus__WS151" : [ - "FJ640969" - ], - "Burkholderia_multivorans_ATCC_17616" : [ - "NC_010804", - "NC_010801", - "NC_010805", - "NC_010802" - ], - "Hepatitis_B_virus__No22" : [ - "AB697503" - ], - "Hepatitis_B_virus_Z29" : [ - "AY090452" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2853_2005" : [ - "FJ898392" - ], - "Hepatitis_B_virus__bne341" : [ - "FN594758" - ], - "Human_herpesvirus_3_vOka" : [ - "AB097932" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1898_2008" : [ - "FJ410235" - ], - "Plum_pox_virus__RU_18sc" : [ - "KC020125" - ], - "Dengue_virus_2__DENV_2_US_BID_V1172_1987" : [ - "EU482576" - ], - "Escherichia_phage_ECML_4" : [ - "NC_025446" - ], - "Human_poliovirus_3_NIE0918451" : [ - "KJ170642" - ], - "Human_metapneumovirus_HMPV_USA_TN_83_1211_1983_B" : [ - "KC562244" - ], - "Classical_swine_fever_virus__CSFV_GZ_2009" : [ - "HQ380231" - ], - "Synechococcus_phage_ACG_2014a__Syn7803US62" : [ - "KJ019116" - ], - "JC_polyomavirus__MY" : [ - "AB038250" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c8P1_2009_c8P1" : [ - "KF514395" - ], - "Gallus_gallus_enteric_parvovirus__ChPV_367" : [ - "KM598414" - ], - "Myxoma_virus_Aust_Bulloo_Downs_11_99_BD23" : [ - "JX565584" - ], - "Porcine_teschovirus_8__Fuyu_2009_2" : [ - "KC757344" - ], - "Hepatitis_B_virus__1_D1_5_1" : [ - "GU815646" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V161_2002" : [ - "EU256089" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3826" : [ - "KM233100" - ], - "Dengue_virus_1_D1_SG_05K2895DK1_2005" : [ - "EU081232" - ], - "Pseudomonas_phage_vB_PaeM_PAO1_Ab27_Ab27" : [ - "NC_026586" - ], - "Escherichia_phage_P13374" : [ - "NC_018846" - ], - "Human_rotavirus_A_1263_stool" : [ - "AJ236752" - ], - "Youcai_mosaic_virus_crucifer_strain_Cg" : [ - "MTVCG" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_398_2012" : [ - "KP308444" - ], - "Tomato_yellow_spot_virus_TO1" : [ - "KJ742419" - ], - "Cucumber_mosaic_virus_pepo" : [ - "AB124834", - "AB124835" - ], - "Human_papillomavirus_type_94" : [ - "AB201226", - "AJ620211" - ], - "Streptomyces_avermitilis_MA_4680" : [ - "NC_004719", - "NC_003155" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD197_2013" : [ - "KM229850" - ], - "Hepatitis_B_virus__FH3Q" : [ - "AF461361" - ], - "Human_erythrovirus_V9_V9" : [ - "NC_004295" - ], - "JC_polyomavirus__FC_5" : [ - "AB103412" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_242_2011" : [ - "KJ686272" - ], - "Hepatitis_B_virus__E3_11" : [ - "GU815700" - ], - "Bluetongue_virus_1__IND1988_01" : [ - "AJ586661" - ], - "Dengue_virus_2__DENV_2_NI_BID_V582_2007" : [ - "EU482694" - ], - "Human_immunodeficiency_virus_1__07MYKT016" : [ - "GQ175882" - ], - "Hepatitis_B_virus__No1" : [ - "AB697487" - ], - "Hepatitis_B_virus__TK16" : [ - "JF754622" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09HUN1" : [ - "JF268673" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD01_2013" : [ - "KM229802" - ], - "Porcine_kobuvirus__K_4_2012_CH" : [ - "KC424638" - ], - "Propionibacterium_phage_PHL199M00__PHL199M00" : [ - "NC_027295" - ], - "Newcastle_disease_virus_F" : [ - "KC987036" - ], - "African_cassava_mosaic_virus__MG_MG624A1_11" : [ - "KJ888062" - ], - "Hepatitis_B_virus__S7_2" : [ - "EU916227" - ], - "Hepatitis_B_virus__W75" : [ - "EU787446" - ], - "Human_immunodeficiency_virus_1__D_ZA_85_R214" : [ - "AY773339" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP4A" : [ - "JN013981" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9996_2010" : [ - "KJ627312" - ], - "Propionibacterium_phage_PHL082M04__PHL082M04" : [ - "KJ578771" - ], - "Tomato_common_mosaic_virus__BR_Pda9_05" : [ - "KC706589" - ], - "Bluetongue_virus_2__ITL2002_06" : [ - "AJ586670" - ], - "Pepino_mosaic_virus_EU_CAHN8" : [ - "JQ314457" - ], - "Hepatitis_B_virus__S_IDU8" : [ - "EU185789" - ], - "African_cassava_mosaic_virus__MG_MG99A2_07" : [ - "KJ887907" - ], - "West_Nile_virus__WNV_1_US_BID_V7403_2005" : [ - "KJ501115" - ], - "Tomato_spotted_wilt_virus__YNta" : [ - "KM657118", - "KM657121", - "KM657115" - ], - "MW_polyomavirus_QLDMW03" : [ - "KC549587" - ], - "Tomato_leaf_curl_Sri_Lanka_virus" : [ - "NC_004647" - ], - "Hepatitis_C_virus__IND_HCV_3i" : [ - "FJ407092" - ], - "Hepatitis_B_virus_GIII_14" : [ - "AY781179" - ], - "Culex_nigripalpus_nucleopolyhedrovirus__Florida1997" : [ - "NC_003084" - ], - "Hepatitis_B_virus__8035" : [ - "KJ470888" - ], - "Hepatitis_B_virus__WHDKR" : [ - "JN257154" - ], - "Monkeypox_virus_W_Nigeria" : [ - "KJ642615" - ], - "Human_immunodeficiency_virus_1__03ZASK110B1" : [ - "DQ056411" - ], - "Potato_virus_Y__GBVC_PVY_37_NTN" : [ - "JQ969033" - ], - "Potato_virus_Y_N_Egypt" : [ - "AF522296" - ], - "Calibrachoa_mottle_virus__California" : [ - "NC_021926" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00096_2010_G1P_8" : [ - "JN651843", - "JN651845", - "JN651841", - "JN651844", - "JN651837", - "JN651842", - "JN651839", - "JN651835", - "JN651836", - "JN651840", - "JN651838" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3667_2007" : [ - "GU131960" - ], - "Clostridium_difficile_630" : [ - "NC_008226", - "NC_009089" - ], - "Norovirus_GII_Hu_JP_2001_GII_P12_GII_12_Saitama_T18__Saitama_T18" : [ - "KJ196299" - ], - "Human_immunodeficiency_virus_1__03ZAPS123MB1" : [ - "DQ396369" - ], - "Human_immunodeficiency_virus_1__TV919" : [ - "HM215252" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7569_2009" : [ - "KJ189316" - ], - "Hepatitis_B_virus__3791v2" : [ - "KF922407" - ], - "Hepatitis_B_virus__HBVJSTZ2" : [ - "HQ684849" - ], - "Plum_pox_virus_strain_Marcus_Marcus_VAR_2_SE" : [ - "HF585102" - ], - "Paspalum_striate_mosaic_virus__AU_QG2_2011" : [ - "JQ948076" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2908_2006" : [ - "FJ898423" - ], - "Ralstonia_phage_RSS1" : [ - "NC_008575" - ], - "JC_polyomavirus__PE_1" : [ - "AB081023" - ], - "Beak_and_feather_disease_virus__MU_JP2P" : [ - "AB277747" - ], - "Desulfovibrio_africanus_Walvis_Bay" : [ - "NC_016629" - ], - "Radish_mosaic_virus_Japanese" : [ - "NC_010709", - "NC_010710" - ], - "Acidianus_hospitalis_W1" : [ - "NC_015518" - ], - "Hepatitis_B_virus__J248" : [ - "GQ377636" - ], - "Beak_and_feather_disease_virus__BFDV_Q_PL_418_2007" : [ - "JX221024" - ], - "Hepatitis_B_virus__HBV_TA31" : [ - "AB555496" - ], - "Junin_mammarenavirus_P3096" : [ - "DQ854737" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9531_2013" : [ - "KJ643574" - ], - "Enterovirus_A71__EV063_04" : [ - "HQ647172" - ], - "Lactobacillus_rhamnosus_GG" : [ - "NC_017482" - ], - "Bovine_astrovirus_B18_HK_B18_HK" : [ - "NC_023631" - ], - "Hepatitis_B_virus__D_NZL_WA13_1984" : [ - "HQ700488" - ], - "Dengue_virus_1__13861_BR_PE_10" : [ - "JX669465" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V100_2004" : [ - "EU660383" - ], - "Dengue_virus_2__DF768" : [ - "FM210202" - ], - "Canine_picodicistrovirus_209" : [ - "NC_021178" - ], - "Lelliottia_phage_phD2B" : [ - "NC_025450" - ], - "Pusillimonas_T7_7" : [ - "NC_015459", - "NC_015458" - ], - "Chikungunya_virus_05_061" : [ - "AM258995" - ], - "Feline_coronavirus_UU54_UU54" : [ - "JN183883" - ], - "Human_poliovirus_2_NIE1018408" : [ - "KJ170549" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_4__AHEaCV_4_NZ_3049C3_2012" : [ - "KM874300" - ], - "Bhendi_yellow_vein_India_virus__India_Sonipat_EL12_2006___EL12" : [ - "GU112054" - ], - "Watermelon_chlorotic_stunt_virus__IL3_74" : [ - "KM820264" - ], - "Chikungunya_virus_TM25" : [ - "EU564334" - ], - "Foot_and_mouth_disease_virus___type_C_C_S8p200" : [ - "FJ824812" - ], - "African_cassava_mosaic_virus__CF_CF133BE_07" : [ - "KJ887621" - ], - "Middle_East_respiratory_syndrome_coronavirus__KSA_CAMEL_503" : [ - "KJ713297" - ], - "Ageratum_leaf_curl_Cameroon_betasatellite__SatB6" : [ - "FR717138" - ], - "Salmon_pancreas_disease_virus__F93125" : [ - "NC_003930" - ], - "Salmonella_enterica_serovar_Agona_SL483" : [ - "NC_011148", - "NC_011149" - ], - "Okra_yellow_crinkle_virus__Cameroon___M13F2" : [ - "FM210275" - ], - "Human_astrovirus_4__Guangzhou" : [ - "DQ344027" - ], - "Maize_streak_virus__MSV_A_MZ_Xai2_Moz7_2007" : [ - "HQ693366" - ], - "Cronobacter_phage_vB_CsaM_GAP32_GAP_32" : [ - "NC_019401" - ], - "Maize_streak_virus__MSV_A_GH_gh103_Wia_2010" : [ - "KJ699303" - ], - "Human_immunodeficiency_virus_1__99ZATM10" : [ - "AY228556" - ], - "Thermoanaerobacterium_thermosaccharolyticum_M0795" : [ - "NC_019970", - "NC_019956" - ], - "Enterovirus_C__V3_Tul_5" : [ - "HQ738300" - ], - "Human_papillomavirus_type_28" : [ - "HPU31783" - ], - "Watermelon_chlorotic_stunt_virus__JO2_512" : [ - "KM820214" - ], - "Norovirus_Hu_GII_4_Miyazaki8_2008_JP_Hu_GII_4_Miyazaki8_2008_JP" : [ - "AB541299" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_RNP_B14_1996" : [ - "KF688549" - ], - "Hepatitis_B_virus__BFJT1999_2" : [ - "AB642094" - ], - "Hepatitis_B_virus__FEN60" : [ - "JF440006" - ], - "Hepatitis_B_virus__G1_9" : [ - "GU815759" - ], - "Bhendi_yellow_vein_India_virus__India_Pandarahalli_OY168B_2006___OY168B" : [ - "GU112053" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5478_2010" : [ - "JF920397" - ], - "Potato_virus_Y" : [ - "A08776", - "NC_001616" - ], - "Hepatitis_B_virus__1_B74" : [ - "EU570072" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B2C5" : [ - "JN053457" - ], - "Hepatitis_B_virus__A54a" : [ - "FJ904409" - ], - "Hepatitis_B_virus__Occult_HK76" : [ - "KJ410514" - ], - "Soybean_mosaic_virus_G6" : [ - "FJ640980" - ], - "Escherichia_coli_O157_H7_EDL933" : [ - "NC_007414", - "NC_002655" - ], - "Porcine_circovirus_2_GD_sz" : [ - "JX912915" - ], - "Enterovirus_A71_2006_52_9" : [ - "KP266579" - ], - "Streptococcus_parauberis_KCTC_11537" : [ - "NC_015558" - ], - "Yellow_head_virus__Chachoengsao_1998" : [ - "EU487200" - ], - "Hepatitis_B_virus__HBV51" : [ - "KC875266" - ], - "Enterovirus_E_PA12_24791" : [ - "KC667561" - ], - "Hepatitis_B_virus__Vac03_M_m607" : [ - "KJ173387" - ], - "Hepatitis_B_virus__4312v1" : [ - "KF922426" - ], - "Tribec_virus" : [ - "HQ266582", - "HQ266581", - "HQ266584", - "HM543478", - "HM543479", - "HQ266587", - "HQ266583", - "HM543480", - "HQ266588", - "HQ266590", - "HQ266585", - "HQ266589", - "HQ266586" - ], - "Turnip_yellows_virus__WA_1" : [ - "JQ862472" - ], - "Dengue_virus_2_D2_FJ_UH21_1971" : [ - "HM582099" - ], - "Equine_arteritis_virus__CW96" : [ - "AY349167" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_20__AHEaCV_20_NZ_4957GA_2012" : [ - "KM874348" - ], - "Murray_Valley_encephalitis_virus__V11_10" : [ - "JX123032" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LSD_090830" : [ - "JF828989" - ], - "Common_chimpanzee_papillomavirus_1" : [ - "AF020905" - ], - "Lactococcus_phage_phi93" : [ - "KM091443" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_111172" : [ - "KJ425489" - ], - "West_Nile_virus__WNV_1_US_BID_V6513_2005" : [ - "KJ501335" - ], - "Wheat_dwarf_virus____Hebei_Shijiazhuang___HBSJZ06_3" : [ - "EF536863" - ], - "Human_parechovirus_1__450343" : [ - "GQ183020" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V285_2005" : [ - "EU155363" - ], - "Tembusu_virus__TMUV_SDHS" : [ - "KF826767" - ], - "Maize_streak_virus__MSV_A_NG_Eji3_N29a_2007" : [ - "HQ693371" - ], - "Hepatitis_B_virus__A1_50024" : [ - "FJ692577" - ], - "Human_papillomavirus_type_39__Qv31864" : [ - "KC470235" - ], - "Tomato_yellow_leaf_curl_virus___Mild" : [ - "X76319", - "EF158044", - "EU143745", - "EF054894" - ], - "Okra_leaf_curl_betasatellite__India_Mau_2012___Mau" : [ - "KF515615" - ], - "Penaeus_monodon_penstyldensovirus_1_IN_07" : [ - "GQ411199" - ], - "Foot_and_mouth_disease_virus___type_A_A8_Parma_aparma_iso55" : [ - "AY593792" - ], - "BK_polyomavirus__SJH_LG_306" : [ - "JN192437" - ], - "Japanese_encephalitis_virus_HVI" : [ - "AF098735" - ], - "Human_coronavirus_OC43_OC43_human_USA_9212_33_1992" : [ - "KF530074" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_148_01" : [ - "DQ989317" - ], - "Human_immunodeficiency_virus_1__04ZAPS157MB1" : [ - "DQ351232" - ], - "Hepatitis_C_virus_subtype_1a__TN62" : [ - "EU781813" - ], - "Dengue_virus_2__DENV_2_LK_BID_V2422_2004" : [ - "GQ252677" - ], - "Streptomyces_violaceusniger_Tu_4113" : [ - "NC_015951", - "NC_015957", - "NC_015952" - ], - "Dengue_virus_1__DENV_1_VN_BID_V825_2006" : [ - "EU482819" - ], - "Human_herpesvirus_5_BE_43_2011" : [ - "KP745681" - ], - "Rift_Valley_fever_virus_2007000253" : [ - "JF326192", - "JF326201", - "JF326187" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2704_2006" : [ - "FJ882530" - ], - "Hepatitis_B_virus__A1_48039" : [ - "FJ692560" - ], - "Tomato_leaf_curl_Taiwan_virus__T2_4" : [ - "GU723730" - ], - "Hepatitis_C_virus_subtype_1b__No__29" : [ - "AB154204" - ], - "Thauera_MZ1T" : [ - "NC_011662", - "NC_011667" - ], - "Porcine_circovirus_2_XJ_SW" : [ - "JN639856" - ], - "Bean_golden_mosaic_virus__BR_Par29_12" : [ - "KJ939817" - ], - "Hepatitis_B_virus__S379" : [ - "FJ386667" - ], - "Chilli_leaf_curl_virus__RK02" : [ - "KJ700656" - ], - "Wheat_dwarf_virus__SXTY10_33" : [ - "JQ647504" - ], - "Human_immunodeficiency_virus_1__98USHVTN3605c9" : [ - "AY560108" - ], - "Human_poliovirus_1_NIE1218347" : [ - "KJ170465" - ], - "Hepatitis_B_virus__HE28_CHB" : [ - "JN664935" - ], - "Human_immunodeficiency_virus_1__TRJO_flB1" : [ - "FJ496154" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_LW7_1" : [ - "JQ663567" - ], - "Porcine_circovirus_2__JF11" : [ - "JF682792" - ], - "Potato_virus_Y__VNP415" : [ - "HG810951" - ], - "Dengue_virus_2__DENV_2_US_BID_V1183_1990" : [ - "EU482586" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_161_2012" : [ - "KJ686157" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_19__AHEaCV_19_NZ_4942GA_2012" : [ - "NC_026646" - ], - "Rubella_virus_Cendehill" : [ - "AF188704" - ], - "Nocardiopsis_dassonvillei_DSM_43111" : [ - "NC_014210", - "NC_014211" - ], - "Pseudocowpox_virus_F00_120R" : [ - "GQ329669" - ], - "Human_immunodeficiency_virus_1_98IN022" : [ - "AF286232" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1320" : [ - "KR534590" - ], - "Dengue_virus_2__DENV_2_NI_BID_V549_2005" : [ - "EU482681" - ], - "Corynebacterium_glutamicum_MB001" : [ - "NC_022040" - ], - "Chlamydia_trachomatis_RC_L2_55" : [ - "NC_021893" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7055_2007" : [ - "KJ189271" - ], - "Turnip_mosaic_virus__NSW6" : [ - "KJ936092" - ], - "Melissococcus_plutonius_DAT561" : [ - "NC_016938", - "NC_018265" - ], - "Rice_yellow_mottle_virus__Ug207" : [ - "KM487712" - ], - "Human_papillomavirus_type_31__QV02784" : [ - "HQ537670" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_52_87" : [ - "DQ989313" - ], - "Hepatitis_B_virus__ZADGM1121" : [ - "GQ184323" - ], - "Drosophila_A_virus__HD" : [ - "NC_012958" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA8253_2009" : [ - "KJ672558" - ], - "Pigeon_paramyxovirus_1_pi_CH_LJS_1_03" : [ - "KJ607164" - ], - "Sugarcane_streak_mosaic_virus__IND671" : [ - "JN941985" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_1999_04_DRC" : [ - "JX458825" - ], - "Coxsackievirus_B3_PD" : [ - "AF231765" - ], - "Dengue_virus_3_KJ46" : [ - "AY858043" - ], - "JC_polyomavirus__AN_12" : [ - "AB092586" - ], - "Streptococcus_suis_A7" : [ - "NC_017622" - ], - "Porcine_circovirus_2_PCV2_P6_6" : [ - "FJ667589" - ], - "Chickpea_chlorotic_dwarf_virus__D14" : [ - "JX183065" - ], - "Dengue_virus_3__101905_BR_PE_03" : [ - "JX669489" - ], - "Human_immunodeficiency_virus_1__BREPM1040" : [ - "EF637047" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V209_1992" : [ - "EU255990" - ], - "Enterovirus_A71_SK_EV006_org" : [ - "AB550334" - ], - "Staphylococcus_aureus_N315" : [ - "NC_003140", - "NC_002745" - ], - "Geobacillus_kaustophilus_HTA426" : [ - "NC_006510", - "NC_006509" - ], - "JC_polyomavirus__Ceb_4" : [ - "AB113123" - ], - "African_cassava_mosaic_virus__MG_MG214B15_08" : [ - "KJ887681" - ], - "Human_papillomavirus_type_33__IN241890" : [ - "HQ537703" - ], - "Listeria_phage_LP_125" : [ - "NC_021781" - ], - "Human_adenovirus_4_NHRC_42606" : [ - "AY599835" - ], - "Hepatitis_B_virus__clz2084" : [ - "KC774207" - ], - "Fig_cryptic_virus__BN13" : [ - "NC_015494", - "NC_015495" - ], - "Wheat_dwarf_virus__HNZZ08_7" : [ - "KJ536095" - ], - "Dengue_virus_3__145_BR_PE_04" : [ - "JX669495" - ], - "Hepatitis_B_virus__E_Mad_A032a" : [ - "HQ700550" - ], - "Torque_teno_virus__TTV_HD24b__rheu231" : [ - "FR751507" - ], - "Dengue_virus_1_D1_SG_05K3886DK1_2005" : [ - "EU081240" - ], - "Tianjin_totivirus__Tianjin" : [ - "NC_017084" - ], - "Cowpox_virus_HumMag07_1" : [ - "KC813495" - ], - "Sinorhizobium_fredii_USDA_257" : [ - "NT_187153", - "NT_187168", - "NT_187160", - "NT_187164", - "NT_187165", - "NC_018196", - "NC_018000", - "NT_187154", - "NC_018190", - "NC_018193", - "NT_187152", - "NT_187167", - "NT_187158", - "NT_187162", - "NC_018192", - "NT_187151", - "NC_018189", - "NC_018179", - "NT_187155", - "NT_187161", - "NC_018195", - "NC_018191", - "NC_018187", - "NC_018184", - "NC_018185", - "NT_187166", - "NT_187157", - "NC_018188", - "NT_187163", - "NC_018186", - "NC_018180", - "NT_187159", - "NT_187169", - "NC_018197", - "NT_187156", - "NC_018182", - "NC_018183", - "NC_018194", - "NC_018181" - ], - "Broad_bean_wilt_virus_2__RP7" : [ - "JX183233", - "JX183234" - ], - "Citrus_yellow_mosaic_virus__SOP" : [ - "EU708316" - ], - "Dengue_virus_3__DENV_3_US_BID_V1611_2004" : [ - "FJ850056" - ], - "Dengue_virus_4__DENV_4_IND_624000_1962" : [ - "JQ922558" - ], - "Usutu_virus_V191" : [ - "KJ438779" - ], - "Cleome_leaf_crumple_virus__BR_AL_Smc1_09" : [ - "JN103435" - ], - "Non_primate_hepacivirus_NZP1__NZP1" : [ - "KP325401" - ], - "Hepatitis_B_virus__cxa1662" : [ - "KC774304" - ], - "Hepatitis_B_virus__6_024_1" : [ - "EU871969" - ], - "Cotton_leaf_curl_Rajasthan_virus__S_9" : [ - "KJ959628" - ], - "Bovine_viral_diarrhea_virus_3_Italy_83_10_ncp" : [ - "JQ612704" - ], - "Pseudomonas_phage_PRR1" : [ - "NC_008294" - ], - "Human_immunodeficiency_virus_1__02ZM115" : [ - "AB254148" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00584_2011" : [ - "KJ672549" - ], - "Murine_coronavirus_JHM_WU_Dns2_wb1" : [ - "JX169866" - ], - "Sweet_potato_virus_C_C_Bungo" : [ - "AB509453" - ], - "Enterobacteria_phage_K1_5" : [ - "NC_008152" - ], - "Simian_foamy_virus_Gorilla_gorilla_BAK74" : [ - "JQ867464" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI38_12_DNA_B" : [ - "HE979796" - ], - "Human_papillomavirus_type_6__30" : [ - "HG793838" - ], - "Potato_virus_Y__IUNG_3" : [ - "JF927751" - ], - "Hepatitis_B_virus__HBV_G138" : [ - "AB205189" - ], - "Simian_virus_40_CPC_MEN" : [ - "AF156108" - ], - "Hepatitis_B_virus__dww1016" : [ - "KC774438" - ], - "Cucumber_mosaic_virus_satellite_RNA_T18" : [ - "X86708" - ], - "Enterobacteria_phage_alpha3" : [ - "DQ085810" - ], - "Hepatitis_B_virus__P006_M_B3" : [ - "KJ173368" - ], - "Plum_pox_virus_PPV_D_Ou18" : [ - "AB576072" - ], - "Enterovirus_CA55_1988__CA55_1988" : [ - "AF241359" - ], - "Hepatitis_B_virus__P30" : [ - "EU859906", - "AB493835", - "GQ477476" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_36_2011" : [ - "KJ686260" - ], - "Leek_white_stripe_virus" : [ - "NC_001822" - ], - "Feline_coronavirus_UU19_UU19" : [ - "HQ392470" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_MLI_2014_Makona_Mali_DPR4" : [ - "KP260802" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Kouroussa_531" : [ - "KR534510" - ], - "Human_poliovirus_2_NIE1118433" : [ - "KJ170564" - ], - "Tomato_leaf_curl_Java_betasatellite" : [ - "KC677734", - "KC282642" - ], - "Simian_virus_40_Rh911" : [ - "AF316140" - ], - "Porcine_parvovirus_J_PPV" : [ - "KF742500" - ], - "Human_rotavirus_A__mw467" : [ - "AJ427316" - ], - "West_Nile_virus__WNV_1_US_BID_V4617_2003" : [ - "HM488234" - ], - "Hepatitis_C_virus_subtype_6m__C_0185" : [ - "DQ835765" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9389_2013" : [ - "KJ643477" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V335_2003" : [ - "EU155299" - ], - "Tomato_leaf_curl_China_betasatellite__SC379" : [ - "KF640695" - ], - "Sweet_potato_leaf_curl_virus_Puerto_Rico_SPLCV_PR_BR_Ria_08" : [ - "HQ393449" - ], - "Hepatitis_B_virus__dxn1012" : [ - "KC774468" - ], - "East_African_cassava_mosaic_virus__CF_CF24B_07" : [ - "KM885993" - ], - "Cellulophaga_algicola_DSM_14237" : [ - "NC_014934" - ], - "Cotton_leaf_curl_Kokhran_virus__Sak" : [ - "FN552006" - ], - "Human_immunodeficiency_virus_1__Ph00full" : [ - "AY818641" - ], - "Hepatitis_B_virus__41" : [ - "AF297619" - ], - "Hepatitis_B_virus__E3_4" : [ - "GU815705" - ], - "Prochlorococcus_marinus_MIT_9301" : [ - "NC_009091" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1542_2007" : [ - "EU677167" - ], - "West_Nile_virus__WNV_1_US_BID_V6209_2007" : [ - "KJ501258" - ], - "Human_immunodeficiency_virus_1__CH162_mo6" : [ - "KC156115" - ], - "Blotched_snakehead_virus" : [ - "NC_005982", - "NC_005983" - ], - "Hepatitis_B_virus__HBV_Chi89" : [ - "AB073826" - ], - "Watermelon_chlorotic_stunt_virus__JO2_411" : [ - "KM820209" - ], - "Hepatitis_B_virus__C3_4" : [ - "GU815640" - ], - "Borrelia_valaisiana_VS116" : [ - "NC_012180", - "NC_012130", - "NC_012169", - "NC_012128", - "NC_012131", - "NC_012166", - "NC_012204", - "NC_012177", - "NC_012185", - "NC_012129", - "NC_012133" - ], - "Alteromonas_macleodii__Ionian_Sea_U8" : [ - "NC_021712" - ], - "Human_coronavirus_OC43_87309_Belgium_2003_87309" : [ - "AY903459" - ], - "Staphylococcus_phage_S25_4_S25_4" : [ - "NC_022918" - ], - "Sugarcane_mosaic_virus__JAL_1" : [ - "GU474635" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3431_2006" : [ - "GQ868546" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4083_2008" : [ - "GU131827" - ], - "Hepatitis_B_virus_951_13a" : [ - "KR013820" - ], - "Enterobacteria_phage_mEpX2" : [ - "NC_019705" - ], - "Sweet_potato_feathery_mottle_virus_10_O" : [ - "AB439206" - ], - "Porcine_circovirus_2_GXGW" : [ - "EF675237" - ], - "Hepatitis_B_virus__J101" : [ - "GQ377566" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2308_2001" : [ - "FJ744722" - ], - "Changuinola_virus__CGLV_BE_AR_35646" : [ - "KF680174", - "KF680172", - "KF680176", - "KF680168", - "KF680177", - "KF680175", - "KF680173", - "KF680170", - "KF680171" - ], - "West_Nile_virus__WNV_1_US_BID_V4199_2001" : [ - "HM488135" - ], - "Avian_leukosis_virus_Km_5666" : [ - "AB669896" - ], - "Human_herpesvirus_4_HN17" : [ - "AB850658" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_116_90" : [ - "DQ989305" - ], - "Hepatitis_B_virus__919038" : [ - "JN040778" - ], - "Cauliflower_mosaic_virus__TUR84" : [ - "AB863176" - ], - "Blueberry_virus_A__Elliot" : [ - "KF007212" - ], - "Dengue_virus_1__DENV_1_NI_BID_V1072_2005" : [ - "EU482618" - ], - "Human_papillomavirus_type_53" : [ - "NC_001593" - ], - "Ageratum_leaf_curl_virus____G52___G52" : [ - "NC_006384" - ], - "Hepatitis_B_virus__C7" : [ - "FJ349230" - ], - "Human_bocavirus__HZ1303" : [ - "KP710210" - ], - "Lesavirus_1__Mis101308_2012" : [ - "NC_026315" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2265_2006" : [ - "JN819413" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2194_2001" : [ - "FJ639764" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0152" : [ - "KP759614" - ], - "Hepatitis_A_virus__B1" : [ - "KC182588" - ], - "Human_poliovirus_1_NIE1018354" : [ - "KJ170439" - ], - "Fusarium_graminearum_dsRNA_mycovirus_3" : [ - "NC_013469" - ], - "Foot_and_mouth_disease_virus_O_UKG_9443_2001_UKG_9443_2001" : [ - "EF552695" - ], - "Colwellia_psychrerythraea_34H" : [ - "NC_003910" - ], - "Hepatitis_B_virus__WY_SD_36" : [ - "JX429917" - ], - "Cucumber_yellows_virus" : [ - "AB085613" - ], - "Plum_pox_virus_PPV_D_Ou16" : [ - "AB576070" - ], - "Maize_streak_virus__MSV_A_ZA_Umz_D10_2008" : [ - "HQ693438" - ], - "Hybrid_snakehead_virus__C1207" : [ - "NC_025398" - ], - "Maize_streak_virus__MSV_A_ZA_Tra_D4_2006" : [ - "HQ693437" - ], - "Hepatitis_delta_virus__D7_C" : [ - "KJ744222" - ], - "Dengue_virus_2__DENV_2_US_BID_V585_2006" : [ - "EU529706" - ], - "Hepatitis_B_virus_MEXICO34_G" : [ - "AB375169" - ], - "Thalassolituus_oleivorans_MIL_1" : [ - "NC_020888" - ], - "Watermelon_chlorotic_stunt_virus__JO2_525" : [ - "KM820218" - ], - "Hepatitis_B_virus_1346_3" : [ - "KR013856" - ], - "Human_immunodeficiency_virus_1__X605" : [ - "AF450096" - ], - "Squash_leaf_curl_virus__PA2_Q335" : [ - "KM595227" - ], - "Hepatitis_delta_virus_dFr2172_dFr2172" : [ - "AM902165" - ], - "Pichinde_mammarenavirus__temperature_sensitive_mutant_ts13" : [ - "PVU77602" - ], - "Tembusu_virus_ZJ_GH_2" : [ - "JQ314465" - ], - "Sudan_ebolavirus__EboSud_602_2012" : [ - "KC545389" - ], - "Barley_yellow_dwarf_virus_GAV__05WN7" : [ - "EU402391" - ], - "Hepatitis_B_virus__919051" : [ - "JN040768" - ], - "Cotton_leaf_curl_Gezira_beta____Sudan_Okra_44_2_96___Gezira" : [ - "AY044142" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2795_2007" : [ - "GQ199814" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HC120821_SH2" : [ - "KP998407" - ], - "Cotton_leaf_curl_betasatellite__Sriganganagar" : [ - "GQ369730" - ], - "Human_poliovirus_3_NIE1018460" : [ - "KJ170666" - ], - "Barley_yellow_mosaic_virus_K05" : [ - "AB500948", - "AB500949" - ], - "Rhodobacter_phage_RC1_RC1" : [ - "NC_020839" - ], - "Acheta_domestica_densovirus__AdEu09" : [ - "KF015277" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4757_2009" : [ - "HM631869" - ], - "Transmissible_gastroenteritis_virus_WH_1" : [ - "HQ462571" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__XL2008" : [ - "EU880436" - ], - "Hepatitis_B_virus__Occult_HK10" : [ - "KJ410511" - ], - "Hepatitis_B_virus__6_024_99_5" : [ - "EU871973" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PAN_481460_2000_ID" : [ - "KC344510" - ], - "Borna_disease_virus_avian_bornavirus_2_bil" : [ - "EU781967" - ], - "Hepatitis_B_virus__E1_2" : [ - "GU815683" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2288_2001" : [ - "FJ687443" - ], - "Pelagibacterium_halotolerans_B2" : [ - "NC_016078", - "NC_016079" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG648B7_11" : [ - "KJ888078" - ], - "Hepatitis_B_virus__GU1222" : [ - "GQ161798" - ], - "Hepatitis_A_virus__HAV_Arg_06" : [ - "HM769724" - ], - "Porcine_circovirus_2_Buffalo1" : [ - "KM116513" - ], - "Latino_mammarenavirus_Maru_10924" : [ - "AF485259" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V275_2003" : [ - "EU155357" - ], - "Human_poliovirus_3_NIE1118528" : [ - "KJ170647" - ], - "Hepatitis_B_virus__C25_2" : [ - "FJ899766" - ], - "Megasphaera_elsdenii_DSM_20460" : [ - "NC_015873" - ], - "Maize_streak_virus__MSV_A_CF_Bang6_Car44_2008" : [ - "HQ693301" - ], - "Human_immunodeficiency_virus_1__ES_X2556_3" : [ - "GQ372990" - ], - "Mycobacterium_phage_Shaka_Shaka" : [ - "JF792674" - ], - "Hepatitis_B_virus__Greenland_6" : [ - "AB287325" - ], - "Murid_herpesvirus_1_NO7" : [ - "HE610455" - ], - "Hepatitis_B_virus__S529_6" : [ - "FJ032341" - ], - "Hepatitis_B_virus__HK1512" : [ - "DQ089759" - ], - "Tomato_yellow_leaf_curl_virus_HNKF" : [ - "JQ004049" - ], - "WU_Polyomavirus__O61" : [ - "GU296406" - ], - "Maize_streak_virus__UBus_255" : [ - "EF547119" - ], - "Dengue_virus_2__DENV_2_CO_BID_V3373_2005" : [ - "GQ868557" - ], - "South_African_cassava_mosaic_virus__MG_MG67A2_06" : [ - "KJ887652" - ], - "Broad_bean_wilt_virus_2__Pa" : [ - "JF704084" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__CH2003" : [ - "EU880440" - ], - "Ageratum_yellow_vein_Taiwan_virus__F09" : [ - "EF544600" - ], - "Watermelon_chlorotic_stunt_virus__PAL" : [ - "KC462553", - "KC462552" - ], - "Maize_streak_virus__MSV_E_Za_Ant_M19_1999" : [ - "EU628625" - ], - "Raspberry_ringspot_virus__RAC815" : [ - "EF534293" - ], - "Enterobacteria_phage_phiX174__SCSC2" : [ - "AF176033" - ], - "Enterobacteria_phage_Qbeta_BZ1" : [ - "FJ483844" - ], - "Zucchini_green_mottle_mosaic_virus_Type_strain_ZGMMV_K" : [ - "NC_003878" - ], - "Temperate_fruit_decay_associated_virus__MFB14" : [ - "KR134313" - ], - "Human_immunodeficiency_virus_1__03ZASK092B1" : [ - "AY878057" - ], - "Norovirus_Hu_GI_1_CHA6A007_2010_USA_Hu_GI_1_CHA6A007_2010_USA" : [ - "KF039729" - ], - "Hepatitis_B_virus__MOD_4602" : [ - "GQ183469" - ], - "Porcine_circovirus_2__K378_1" : [ - "EU450587" - ], - "Enterobacteria_phage_HK542" : [ - "NC_019769" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_Cp_Ase_2" : [ - "JF831148" - ], - "Equine_arteritis_virus__S3854" : [ - "GQ903803" - ], - "Hepatitis_B_virus__M34" : [ - "GQ924617" - ], - "White_bream_virus_DF24_00" : [ - "NC_008516" - ], - "Squash_leaf_curl_virus__EG1_6" : [ - "KM595145" - ], - "Porcine_circovirus_2_JS2003" : [ - "AY578327" - ], - "Strawberry_latent_ringspot_virus_satellite_RNA_T_39_H_isolate" : [ - "NC_003848" - ], - "Bluetongue_virus__BT6_2187" : [ - "AY426603" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143753" : [ - "KR653236" - ], - "Barley_mild_mosaic_virus__UK_L" : [ - "AJ544270", - "AJ544269", - "AJ544266" - ], - "Beak_and_feather_disease_virus__BFDV2" : [ - "GU015013" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20142843" : [ - "KR653301" - ], - "Dengue_virus_4_H772846_DENV_4_ROR7357" : [ - "JQ513330" - ], - "Puumala_virus_Samara_94_CG_2005" : [ - "AB574184", - "AB433852", - "AB433845" - ], - "Swine_hepatitis_E_virus__SWP7" : [ - "EU723515" - ], - "Canine_distemper_virus__Onderstpoort" : [ - "NC_001921" - ], - "Citrus_tristeza_virus__NZRB_M17" : [ - "FJ525435" - ], - "West_Nile_virus__WNV_1_US_BID_V4200_2001" : [ - "HM488136" - ], - "Hepatitis_B_virus__919030" : [ - "JN040784" - ], - "Tomato_common_mosaic_virus__BR_Coi22_07" : [ - "NC_010836", - "NC_010835" - ], - "Porcine_circovirus_2_SD_5" : [ - "EU366325" - ], - "Elderberry_latent_virus__ELV" : [ - "NC_026239" - ], - "Human_smacovirus_1__France_3_2008_2623" : [ - "KP264965" - ], - "Desulfotomaculum_acetoxidans_DSM_771" : [ - "NC_013216" - ], - "Bean_golden_mosaic_virus__BgV03A_1_C14" : [ - "JF694450" - ], - "Rabbit_hemorrhagic_disease_virus_SD_SD" : [ - "Z29514" - ], - "Southern_rice_black_streaked_dwarf_virus__Hunan_yy" : [ - "JQ337963" - ], - "Beak_and_feather_disease_virus__MU_JP1P" : [ - "AB277746" - ], - "Cotton_leaf_curl_Rajasthan_virus__IARI_42" : [ - "KJ959630" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT43B04_2008" : [ - "JF909244" - ], - "JC_polyomavirus__JCV161FLC_14" : [ - "JF424922" - ], - "Honeysuckle_ringspot_virus__California" : [ - "NC_014967" - ], - "Hepatitis_B_virus__10A39" : [ - "AB675677" - ], - "Hepatitis_B_virus__DMY_1" : [ - "FJ787487" - ], - "Porcine_circovirus_2_10AH_2" : [ - "KC336418" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00065_2007_G1P_8" : [ - "KC769373", - "KC769368", - "KC769372", - "KC769371", - "KC769376", - "KC769369", - "KC769375", - "KC769374" - ], - "Hepatitis_B_virus_HB257" : [ - "HM011473" - ], - "Maize_streak_virus__MSV_UMub49" : [ - "EF015783" - ], - "Ustilaginoidea_virens_partitivirus_2__Uv0901" : [ - "NC_021873", - "NC_021874" - ], - "Wheat_dwarf_virus_Wheat_Enkoping1" : [ - "NC_003326" - ], - "Honeysuckle_yellow_vein_betasatellite__HYVVNZDNABeta" : [ - "GQ131809" - ], - "Pestivirus_Giraffe_1__giraffe_1_H138" : [ - "NC_003678" - ], - "Dengue_virus_2__DENV_2_IND_P23085_1960" : [ - "JQ922552" - ], - "Ralstonia_solanacearum_CMR15" : [ - "NC_017589", - "NC_017558", - "NC_017559" - ], - "Hepatitis_C_virus__QC382" : [ - "FJ462437" - ], - "Echovirus_E12" : [ - "X77708" - ], - "Human_immunodeficiency_virus_1__07BR_FPS783" : [ - "HM026458" - ], - "Human_rhinovirus_B97_ATCC_VR_1297" : [ - "FJ445172" - ], - "Batai_virus_Chittoor_IG_20217" : [ - "JX846598", - "JX846600" - ], - "Hepatitis_B_virus__HBV85" : [ - "KC875299" - ], - "Hepatitis_B_virus__Midnight" : [ - "HQ603076" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V349_2002" : [ - "EU256100" - ], - "Ugandan_cassava_brown_streak_virus__Ke_125" : [ - "FN433930" - ], - "Enterovirus_A71_SD09_21_SD_CHN_2009" : [ - "JX678884" - ], - "Beak_and_feather_disease_virus__BFDV14" : [ - "GU015021" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG32" : [ - "FJ914391" - ], - "Hepatitis_E_virus_K52_87" : [ - "HPEORFS" - ], - "Methanocaldococcus_jannaschii_DSM_2661" : [ - "NC_000909", - "NC_001732", - "NC_001733" - ], - "Acidovorax_KKS102" : [ - "NC_018708" - ], - "Hepatitis_B_virus__F_7" : [ - "KF373039" - ], - "Macroptilium_yellow_mosaic_virus__Cuba" : [ - "AJ344452" - ], - "Human_rhinovirus_A62_ATCC_VR_1172" : [ - "FJ445145" - ], - "Vibrio_phage_24" : [ - "KJ572844" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1686_2007" : [ - "FJ390386" - ], - "Coxsackievirus_A6_Gdula_CA6" : [ - "AY421764" - ], - "Tobacco_rattle_virus__SP" : [ - "AJ007293" - ], - "Hepatitis_B_virus_1385_8" : [ - "KR013861" - ], - "Escherichia_phage_rv5" : [ - "NC_011041" - ], - "Hepatitis_B_virus__1839Java" : [ - "EF473972" - ], - "Hepatitis_B_virus__A5_50041" : [ - "FJ692602" - ], - "Okra_enation_leaf_curl_virus__India_Munthal_EL37_2006___EL37" : [ - "NC_014894" - ], - "Mycobacterium_phage_Malithi" : [ - "NC_026605" - ], - "Archaeal_BJ1_virus" : [ - "NC_008695" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09HEN2" : [ - "JF268680" - ], - "Squash_leaf_curl_virus__LB3_5_37" : [ - "KM595135" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3758_2008" : [ - "GQ868537" - ], - "Bacteroides_phage_B124_14" : [ - "NC_016770" - ], - "African_cassava_mosaic_virus__MG_MG729A4_11" : [ - "KJ888096" - ], - "BK_polyomavirus__ANY_32" : [ - "AB464958" - ], - "Desulfobacula_toluolica_Tol2" : [ - "NC_018645" - ], - "Leifsonia_xyli_cynodontis_DSM_46306" : [ - "NC_022438" - ], - "Human_enterovirus_70_J670_71_ATCC_VR_836" : [ - "DQ201177" - ], - "Arcobacter_butzleri_RM4018" : [ - "NC_009850" - ], - "Infectious_bursal_disease_virus_Soroa" : [ - "AF140705" - ], - "Feline_coronavirus_Felis_catus_NLD_UU74_2010" : [ - "KF530127" - ], - "Grapevine_virus_E_TvAQ7" : [ - "NC_011106" - ], - "Hepatitis_B_virus__MGL247F" : [ - "AB270550" - ], - "JC_polyomavirus__FL_4" : [ - "AB127348" - ], - "West_Nile_virus__WNV_1_US_BID_V7402_2007" : [ - "KJ501114" - ], - "Temperate_fruit_decay_associated_virus__MFB13" : [ - "KJ955448" - ], - "Dengue_virus_3__rDENV3_4" : [ - "KJ160505" - ], - "Pepino_mosaic_virus_EU_EF09_60" : [ - "JQ314461" - ], - "Plantago_mottle_virus" : [ - "NC_011539" - ], - "Hepatitis_B_virus__LAMr_Pt__19_Adefovir_treated_Pt__19" : [ - "AB367410" - ], - "Human_poliovirus_2__PV2_5104_1_ISR99" : [ - "AM040038" - ], - "Murine_norovirus__O7" : [ - "KF113526" - ], - "Watermelon_chlorotic_stunt_virus__IL3_82" : [ - "KM820268" - ], - "Wheat_dwarf_virus__SA41WhEcoFL6" : [ - "AM921991" - ], - "Hepatitis_B_virus__M93" : [ - "GQ924656" - ], - "WU_Polyomavirus__B4932" : [ - "GU296376" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3855_2008" : [ - "GU131691" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_BRC" : [ - "AB627956", - "AB627953" - ], - "Japanese_encephalitis_virus__GSBY0801" : [ - "JF706274" - ], - "Human_parainfluenza_virus_1_HPIV1_AUS_53_2007" : [ - "KF530221" - ], - "Banana_bunchy_top_virus__bP5" : [ - "AB189067", - "AB189068" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_tc_SLE_2014_Makona_Italy_INMI1" : [ - "KP701371" - ], - "Bacillus_phage_Mater" : [ - "NC_027366" - ], - "Tiger_frog_virus" : [ - "AF389451" - ], - "Tobacco_rattle_virus_ppK20" : [ - "AF314165" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M01" : [ - "KM110941" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4034_2008" : [ - "GU131792" - ], - "Hepatitis_B_virus__D_Tonga_JF5498_2004" : [ - "HQ700584" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0108" : [ - "KP759659" - ], - "Bradyrhizobium_japonicum_USDA_110" : [ - "NC_004463" - ], - "Human_coronavirus_HKU1_N17" : [ - "DQ415913" - ], - "Torque_teno_virus__tth3" : [ - "AJ620218" - ], - "Chickpea_chlorotic_dwarf_virus__LE_E" : [ - "KM377673" - ], - "Enterobacteriaphage_UAB_Phi87" : [ - "NC_027360" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1210" : [ - "KR534539" - ], - "Human_immunodeficiency_virus_1__SE6954" : [ - "AF075701" - ], - "Potato_virus_Y__IUNG_9" : [ - "JF927757" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culicidae_USA_3107_2008" : [ - "KJ469647" - ], - "Hepatitis_C_virus_subtype_1a__colonel" : [ - "AF290978" - ], - "Dengue_virus_2__DENV_2_US_BID_V591_2002" : [ - "EU482722" - ], - "_Cellvibrio__gilvus_ATCC_13127" : [ - "NC_015671" - ], - "Karshi_virus_LEIV_2247" : [ - "NC_006947" - ], - "Hepatitis_A_virus__CP_IND" : [ - "DQ991029" - ], - "Potato_virus_Y_9703_4" : [ - "KC296441" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3442_2006" : [ - "GU131853" - ], - "Small_begomovirus_associated_satellite__Sa19_S1" : [ - "NC_024777" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC32AF2_2009" : [ - "JF909110" - ], - "Hepatitis_B_virus__C19" : [ - "HM363577", - "EU939634" - ], - "Human_respiratory_syncytial_virus__RSV_8" : [ - "GU591765" - ], - "Tomato_yellow_leaf_curl_Indonesia_virus__Lembang" : [ - "NC_008267" - ], - "Newcastle_disease_virus__2009_Mali_ML008" : [ - "JF966387" - ], - "Subterranean_clover_stunt_C6_alphasatellite__F" : [ - "NC_003818" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3941_2008" : [ - "GU131735" - ], - "Dengue_virus_3__DENV_3_US_BID_V2103_2000" : [ - "FJ547071" - ], - "Bat_sapovirus_TLC58_HK_TLC58_HK" : [ - "NC_017936" - ], - "WU_Polyomavirus__B7593" : [ - "GU296384" - ], - "Hepatitis_B_virus__A1_50175" : [ - "FJ692592" - ], - "Sinorhizobium_meliloti_GR4" : [ - "NC_019847", - "NC_019849", - "NC_019845", - "NC_019848", - "NC_019846" - ], - "Simian_adenovirus_41_2" : [ - "FJ025927" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT28B34_2004" : [ - "JF909178" - ], - "Enterovirus_A71__H3_TY" : [ - "KF668443" - ], - "Bean_yellow_mosaic_virus__ES67C" : [ - "HG970857" - ], - "Chikungunya_virus__TR206_H804187" : [ - "KP164572" - ], - "Dengue_virus_1_D1_SG_05K3933DK1_2005" : [ - "EU081251" - ], - "Tomato_leaf_curl_Guangxi_virus__GX_1" : [ - "NC_008329" - ], - "Kocuria_rhizophila_DC2201" : [ - "NC_010617" - ], - "Hepatitis_B_virus__UZ24" : [ - "AB188244" - ], - "Culex_flavivirus_Toyama1431" : [ - "AB701775" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V94_2005" : [ - "EU256033" - ], - "Hepatitis_E_virus_E067_SIJ05C" : [ - "AB369690" - ], - "Maize_streak_virus__MSV_A_CM_Omb_Cam10_2008" : [ - "HQ693326" - ], - "Pseudomonas_phage_phi13" : [ - "NC_004172", - "NC_004171", - "NC_004170" - ], - "Bacillus_phage_Riley" : [ - "NC_024788" - ], - "Vibrio_phage_N4" : [ - "NC_013651" - ], - "Xylanimonas_cellulosilytica_DSM_15894" : [ - "NC_013530", - "NC_013531" - ], - "Hepatitis_B_virus__GZ_LMX" : [ - "DQ448623" - ], - "Gokushovirinae_Bog1183_53__Bog1183_53" : [ - "NC_027633" - ], - "Arracacha_mottle_virus__C_17" : [ - "NC_018176" - ], - "Hepatitis_B_virus__C3_6" : [ - "GU815642" - ], - "Infectious_pancreatic_necrosis_virus_Jasper_serotype" : [ - "NC_001916" - ], - "West_Nile_virus__WNV_1_US_BID_V6433_2002" : [ - "KJ501296" - ], - "Infectious_salmon_anemia_virus__Glesvaer_90" : [ - "AJ012285", - "AF262382" - ], - "Hepatitis_B_virus_580_1a" : [ - "KR013811" - ], - "Human_immunodeficiency_virus_1__ML249_3_1997" : [ - "AY322187" - ], - "Human_rhinovirus_A80_ATCC_VR_1190" : [ - "FJ445156" - ], - "Dengue_virus_2__DENV_2_VI_BID_V2946_1987" : [ - "GQ868603" - ], - "Swine_hepatitis_E_virus__swGX40" : [ - "EU676172" - ], - "Pennisetum_mosaic_virus__CD8" : [ - "JX070154" - ], - "Helicobacter_pylori_51" : [ - "NC_017382" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4982_1" : [ - "KR105288" - ], - "Ectromelia_virus_ERPV_ERPV" : [ - "JQ410350" - ], - "Human_mastadenovirus_D_human_USA_Pitts_00119_1989_8_P8H8F8" : [ - "KF429753" - ], - "Hepatitis_B_virus__H_IDU6" : [ - "JX470760" - ], - "Clerodendrum_golden_mosaic_China_virus" : [ - "FN396963", - "FN396962" - ], - "Hepatitis_B_virus_adw4q__9203" : [ - "X75663" - ], - "Rabies_virus_SAD_P5_88__Rabifox" : [ - "EF206715" - ], - "Hepatitis_B_virus__SHB823" : [ - "KJ598780" - ], - "Newcastle_disease_virus__Chicken_China_Beijing_02_2009" : [ - "KC542903" - ], - "Phocoena_phocoena_papillomavirus_2" : [ - "NC_018075" - ], - "Enterobacteria_phage_phiX174__250A55" : [ - "EF380028" - ], - "Hepatitis_C_virus__KM181" : [ - "FJ435090" - ], - "Bat_coronavirus_HKU9_2_BF_017I" : [ - "EF065514" - ], - "Tobacco_curly_shoot_virus____Y1___y1" : [ - "AF240675" - ], - "Erwinia_phage_Ea9_2_Ea9_2" : [ - "NC_023579" - ], - "Hepatitis_C_virus__4025_FU24" : [ - "EU362883" - ], - "Dengue_virus_2_BA05i" : [ - "AY858035" - ], - "Okra_yellow_crinkle_virus_Cameroon_Lik1_GR9" : [ - "HE793425" - ], - "Hepatitis_B_virus__HE29_LC" : [ - "JN664945" - ], - "Rice_gall_dwarf_virus__GX" : [ - "DQ364683", - "DQ499819", - "DQ364682", - "DQ494209", - "DQ364684", - "DQ499822", - "DQ499824" - ], - "Hepatitis_B_virus_1368_33" : [ - "KR014048" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2010_10_1_2" : [ - "KC862579" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US17" : [ - "KJ019086" - ], - "Magnaporthe_oryzae_chrysovirus_1" : [ - "NC_014465", - "NC_014464", - "NC_014462", - "NC_014463" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP01374_2012" : [ - "KJ627262" - ], - "Salmonella_phage_vB_SalM_SJ3" : [ - "NC_024122" - ], - "Tobacco_mosaic_virus__Huidong" : [ - "HE818430" - ], - "Hepatitis_B_virus__pt9N" : [ - "KM875416" - ], - "Venezuelan_equine_encephalitis_virus_SH3" : [ - "VEU55360" - ], - "Bacillus_phage_phiNIT1_phiNIT1" : [ - "NC_021856" - ], - "Human_poliovirus_3_NIE1218548" : [ - "KJ170586" - ], - "Dengue_virus_2__DENV_2_VE_BID_V1095_2007" : [ - "EU482604" - ], - "Lactobacillus_helveticus_H10" : [ - "NC_017468", - "NC_017467" - ], - "Human_herpesvirus_5_BE_17_2011" : [ - "KP745689" - ], - "Chilli_leaf_curl_virus__KW1" : [ - "JN604500" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0061" : [ - "KP759637" - ], - "Chilli_leaf_curl_virus__India_Amritsar_Papaya_2009" : [ - "GU136803" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0046" : [ - "KP759715" - ], - "Torque_teno_virus__tth15" : [ - "AJ620222" - ], - "Porcine_epidemic_diarrhea_virus__KNU_141112_P10" : [ - "KR873435" - ], - "Pan_troglodytes_verus_polyomavirus_1a__6444" : [ - "NC_025368" - ], - "Pepper_leaf_curl_virus_satellite_DNA_beta" : [ - "NC_010235" - ], - "Dengue_virus_2_ThD2_0026_88" : [ - "DQ181802" - ], - "Human_poliovirus_1__PV1_RC2010_45" : [ - "JF838278" - ], - "Canis_familiaris_papillomavirus_8__Charlotte" : [ - "NC_016014" - ], - "Dengue_virus_2__MD1280" : [ - "FM210243" - ], - "Propionibacterium_phage_PHL132N00__PHL132N00" : [ - "NC_027367" - ], - "Sclerotinia_sclerotiorum_fusarivirus_1_JMTJ14" : [ - "NC_027208" - ], - "Cucumber_mosaic_virus__TC" : [ - "EF640931" - ], - "Potato_apical_leaf_curl_disease_associated_satellite_DNA_beta__Meerut" : [ - "NC_008605" - ], - "Pseudomonas_phage_phikF77" : [ - "NC_012418" - ], - "Malvastrum_yellow_mosaic_alphasatellite__Hn36" : [ - "NC_008561" - ], - "Hepatitis_B_virus_1485_18" : [ - "KR014080" - ], - "Maize_streak_virus__MSV_A_CF_Bos6_Car6_2008" : [ - "HQ693312" - ], - "Melon_chlorotic_mosaic_virus__VE10_224" : [ - "KF670646", - "KF670647" - ], - "Cyanobacterium_stanieri_PCC_7202" : [ - "NC_019778" - ], - "Dengue_virus_2__DENV_2_VN_BID_V776_2007" : [ - "EU482702" - ], - "Hepatitis_B_virus__1747" : [ - "FJ386577" - ], - "Barfin_flounder_virus_BF93Hok_BF93Hok" : [ - "NC_011063", - "NC_011064" - ], - "Hepatitis_B_virus__P2_2_11" : [ - "HE576989" - ], - "Human_papillomavirus_FA75_KI88_03__FA75_KI88_03" : [ - "EU410347" - ], - "Hepatitis_B_virus__SHB3B2" : [ - "KJ598675" - ], - "Hepatitis_B_virus__S1_3" : [ - "EU916206" - ], - "Hepatitis_B_virus__3658v2" : [ - "KF922434" - ], - "Human_immunodeficiency_virus_1__PS2016_Day0" : [ - "DQ676877" - ], - "Enterovirus_A71__02_0_023" : [ - "KP691657" - ], - "Cucumber_mosaic_virus_Ly2" : [ - "AJ535913", - "AJ535914" - ], - "Hepatitis_B_virus__9414346" : [ - "AY934773" - ], - "Newcastle_disease_virus__ndv61_B1" : [ - "KM056357" - ], - "Human_immunodeficiency_virus_1__I_2496" : [ - "AB485633" - ], - "Hepatitis_B_virus__bww1104" : [ - "KC774387" - ], - "Feline_coronavirus_Felis_catus_NLD_UU44_2007" : [ - "KF530133" - ], - "Hepatitis_B_virus__JMY_0210_ETCvs3TC_Brack" : [ - "DQ993701" - ], - "Hepatitis_B_virus__KUHB84" : [ - "AY247031" - ], - "Human_immunodeficiency_virus_1__01AETH04BKD" : [ - "DQ314731" - ], - "Neisseria_meningitidis_alpha14" : [ - "NC_013016" - ], - "Cotton_leaf_curl_Multan_betasatellite__Okra06" : [ - "FJ770371" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1518_2007" : [ - "EU677138" - ], - "Barley_yellow_mosaic_virus" : [ - "AF536957", - "AF536958" - ], - "Tomato_leaf_curl_New_Delhi_virus__Mn_05" : [ - "KC969440", - "KC914896" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C34" : [ - "KJ019159" - ], - "Human_immunodeficiency_virus_1__05BRRJ200" : [ - "EU735539" - ], - "West_Nile_virus_strain_385_99_385_99" : [ - "AY842931" - ], - "Hepatitis_B_virus__C_PNG_P124A_2005" : [ - "HQ700543" - ], - "Measles_virus_Schwarz" : [ - "FJ211590", - "FJ211589" - ], - "Durania_virus_Co_Ar_171162" : [ - "HM566156", - "HM566155", - "HM566157" - ], - "Dengue_virus_2__DENV_2_MX_BID_V7535_2009" : [ - "KJ189308" - ], - "Moorella_thermoacetica_ATCC_39073" : [ - "NC_007644" - ], - "Turnip_mosaic_virus__AUST10" : [ - "AB989634" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD253_2013" : [ - "KM229888" - ], - "Hepatitis_B_virus__J161" : [ - "GQ377600" - ], - "Rice_stripe_virus__JiangY10" : [ - "JQ927434", - "JQ927416", - "JQ927422", - "JQ927428" - ], - "Streptococcus_gallolyticus_ATCC_43143" : [ - "NC_017576" - ], - "JC_polyomavirus__JCV173FLC_07" : [ - "JF424961" - ], - "Dengue_virus_3__DENV_3_IN_BID_V2417_1984" : [ - "KF955477" - ], - "Hepatitis_B_virus__C65" : [ - "FJ349238", - "EU939557" - ], - "Sus_scrofa_papillomavirus_1__variant_b" : [ - "EF395819" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZSheep01_2011" : [ - "JQ693002" - ], - "Hepatitis_C_virus__GZ52557" : [ - "DQ278892" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5853_1" : [ - "KR105329" - ], - "Cardamine_chlorotic_fleck_virus__CCFV_CL" : [ - "NC_001600" - ], - "Potato_virus_X__GAF226" : [ - "KJ534605" - ], - "Barley_yellow_dwarf_virus_PAV__052" : [ - "EF521841" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_R1267_2006_G3P_8__R1267" : [ - "KF371926", - "KF371928", - "KF371931", - "KF371930", - "KF371927", - "KF371925", - "KF371923", - "KF371924", - "KF371922" - ], - "Porcine_circovirus_2__CQWZ12" : [ - "KF742551" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7709_2012" : [ - "KJ189355" - ], - "Dengue_virus_1__MKS_WS81" : [ - "KC762639" - ], - "Beak_and_feather_disease_virus__11_1212_QE2_GGC_NSW" : [ - "KF499139" - ], - "Hepatitis_B_virus__Y1021" : [ - "GU357845" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2816_2007" : [ - "GQ199824" - ], - "Human_parainfluenza_virus_3_HPIV3_USA_629_D01929_2007" : [ - "KF530256" - ], - "Serratia_phage_phiMAM1" : [ - "NC_020083" - ], - "SARS_coronavirus_Sin848" : [ - "AY559085" - ], - "Murine_norovirus_GV_WU20_2005_USA__Mu_NoV_GV_WU20_2005_USA" : [ - "EU004665" - ], - "Small_begomovirus_associated_satellite__Sa27_S132" : [ - "KJ859152" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V72_2006" : [ - "EU256024" - ], - "Enterovirus_B106__148_YN_CHN_12" : [ - "KF990476" - ], - "Hepatitis_B_virus__PRC6029" : [ - "KF779376" - ], - "Canine_distemper_virus_CDV_L" : [ - "KM926612" - ], - "Acholeplasma_laidlawii_PG_8A" : [ - "NC_010163" - ], - "Dengue_virus_2__MD1600" : [ - "FM210206" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2579_2001" : [ - "KF955486" - ], - "Tomato_leaf_curl_China_virus__G16" : [ - "AJ704602" - ], - "Dengue_virus_1_D1_SG_05K2916DK1_2005" : [ - "EU081234" - ], - "Macroptilium_yellow_vein_virus__BR_Pai24_11" : [ - "KJ939904" - ], - "Barley_yellow_dwarf_virus_GAV__FF1" : [ - "KF523381" - ], - "Dengue_virus_2__DENV_2_NI_BID_V670_2005" : [ - "EU482631" - ], - "SFTS_virus_HNXY_245_HNXY_245" : [ - "KC292346", - "KC292320", - "KC292293" - ], - "Dengue_virus_4__DENV_4_US_BID_V2439_1996" : [ - "GQ199885" - ], - "Grapevine_virus_A__GTR1_2" : [ - "DQ855086" - ], - "Dengue_virus_2__DENV_2_VN_BID_V923_2006" : [ - "EU482468" - ], - "Banana_bunchy_top_virus_NSP" : [ - "EF470243", - "AF238879" - ], - "Cellulophaga_phage_phi10_1_phi10_1" : [ - "NC_021802" - ], - "Maize_streak_virus__MSV_A_GH_gh3_Kob_2010" : [ - "KJ699346" - ], - "Simian_virus_40__SV40_LP_KT" : [ - "EF579803" - ], - "Hepatitis_B_virus__MMA_10" : [ - "AM421538" - ], - "Porcine_epidemic_diarrhea_virus_USA_Oklahoma35_2013" : [ - "KJ645642" - ], - "Staphylococcus_phage_SA5" : [ - "JX875065" - ], - "Hepatitis_B_virus__B64a" : [ - "FJ904446" - ], - "Simian_adenovirus_49__C24948" : [ - "NC_015225" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_MLI_2014_Makona_Mali_DPR2" : [ - "KP260800" - ], - "Potato_virus_X_os" : [ - "AB056718" - ], - "Hepatitis_B_virus__B28" : [ - "FJ904436" - ], - "Hepatitis_delta_virus__8" : [ - "HQ005367" - ], - "Bluetongue_virus_22__RSArrrr_22" : [ - "AJ586725" - ], - "Beet_mild_yellowing_virus__2ITB" : [ - "NC_003491" - ], - "Porcine_circovirus_2__SH1002" : [ - "KF850460" - ], - "Porcine_circovirus_2_BB1101" : [ - "JX274295" - ], - "Maize_streak_virus__MSV_A_ZW_Chi_Bet64R_2006" : [ - "HQ693467" - ], - "Norovirus_Hu_GII_4_Armidale_NSW390I_2008_AU_Hu_GII_4_NSW390I_2008_AU" : [ - "GQ845369" - ], - "Dengue_virus_1__DENV_1_VN_BID_V991_2006" : [ - "EU482535" - ], - "Human_mastadenovirus_C_human_RUS_16700_2001_57_P1H57F6" : [ - "HQ003817" - ], - "Cowpox_virus_Germany_1990_2" : [ - "HQ420896" - ], - "Tomato_leaf_curl_New_Delhi_virus_JLX10" : [ - "HM989845" - ], - "West_Nile_virus__5_50_05_Uu" : [ - "FJ159130" - ], - "Human_rhinovirus_A96_ATCC_VR_1296" : [ - "FJ445171" - ], - "Cucumber_mosaic_virus__Rad35_CMV" : [ - "DQ785469" - ], - "Dengue_virus_1_D1_SG_05K4479DK1_2005" : [ - "EU081269" - ], - "Sida_yellow_mottle_virus_Cuba_Sancti_Spiritus159_1_2009_159_1" : [ - "NC_016083", - "NC_016082" - ], - "Maize_streak_virus__MSV_UKas42" : [ - "EF015780" - ], - "Sewage_associated_gemycircularvirus_1__SaGmV_1_NZ_BS3970_2012" : [ - "NC_026254" - ], - "Small_begomovirus_associated_satellite__wf_S18" : [ - "KJ859179" - ], - "Porcine_epidemic_diarrhea_virus_USA_Iowa28_2013" : [ - "KJ645636" - ], - "Rousettus_bat_coronavirus_HKU9_HKU9_1_BF_005I" : [ - "NC_009021" - ], - "Burkholderia_ambifaria_AMMD" : [ - "NC_008390", - "NC_008391", - "NC_008385", - "NC_008392" - ], - "Sweet_potato_virus_2__HN77" : [ - "KP115617" - ], - "Chlamydophila_psittaci_08DC60" : [ - "NC_017290" - ], - "Hepatitis_B_virus__919022" : [ - "JN040785" - ], - "Erwinia_tasmaniensis_Et1_99" : [ - "NC_010695", - "NC_010699", - "NC_010693", - "NC_010696", - "NC_010697", - "NC_010694" - ], - "Enterobacteria_phage_KU1" : [ - "AF227250" - ], - "Hollyhock_yellow_vein_mosaic_virus___Pakistan_17_5_06__Lahore10" : [ - "NC_016649" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1991_2_2" : [ - "Z75882" - ], - "Coxsackievirus_A2_431306" : [ - "JX867333" - ], - "West_Nile_virus__ARC140_07" : [ - "JF957168" - ], - "Hepatitis_A_virus__FH3" : [ - "AB020569" - ], - "Erwinia_phage_phiEa21_4" : [ - "NC_011811" - ], - "Watermelon_silver_mottle_virus__Banna_2011" : [ - "KM242056" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4286_2007" : [ - "GU131937" - ], - "Bluetongue_virus_4__South_Africa_ref" : [ - "AJ585125" - ], - "Human_rhinovirus_A33_ATCC_VR_330" : [ - "FJ445128" - ], - "Raspberry_bushy_dwarf_virus__CmRR_1" : [ - "EU796089" - ], - "West_Nile_virus__WNV_1_US_BID_V6481_2002" : [ - "KJ501319" - ], - "Newcastle_disease_virus__Chicken_China_Liaoning_02_2005" : [ - "KC542893" - ], - "Hepatitis_B_virus__A112" : [ - "HM363597" - ], - "Sindbis_virus__Johannes_2002" : [ - "JQ771797" - ], - "Hepatitis_B_virus__CH109" : [ - "AF222322" - ], - "Stenotrophomonas_phage_Smp131" : [ - "NC_023588" - ], - "Hepatitis_B_virus__KOR46HCC" : [ - "GQ475350" - ], - "Human_immunodeficiency_virus_1__02ZMJM" : [ - "AB254156" - ], - "Human_immunodeficiency_virus_1__A3" : [ - "AB049811" - ], - "Hepatitis_B_virus__A5_50050" : [ - "FJ692603" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5617_1" : [ - "KR105312" - ], - "Porcine_epidemic_diarrhea_virus_LZW_FGE_20140427" : [ - "KJ777677" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7850_2010_A" : [ - "KJ627405" - ], - "Thiobacillus_denitrificans_ATCC_25259" : [ - "NC_007404" - ], - "Dengue_virus_2_D2_TO_UH19_1974" : [ - "HM582112" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0015" : [ - "KP759741" - ], - "West_Nile_virus__WNV_1_US_BID_V4620_2003" : [ - "HQ671705" - ], - "Hepatitis_B_virus__Greenland_1" : [ - "AB287320" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__ZCYZ" : [ - "JF800911" - ], - "Bean_yellow_mosaic_virus__Fr" : [ - "FJ492961" - ], - "Hepatitis_B_virus__N14_M_6692A" : [ - "KJ173409" - ], - "Cowpox_virus_Finland_2000_MAN" : [ - "HQ420893" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3902_2008" : [ - "GU131724" - ], - "Aedes_flavivirus_AEFV_SPFLD_MO_2011_MP6" : [ - "KC181923" - ], - "Dengue_virus_1__DENV_1_NI_BID_V657_2005" : [ - "FJ024480" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V373_2006" : [ - "EU482880" - ], - "Temperate_fruit_decay_associated_virus__MFBpe35f" : [ - "KR134347" - ], - "Hepatitis_B_virus__C106" : [ - "EU939573" - ], - "Human_poliovirus_3_NIE0918518" : [ - "KJ170669" - ], - "Rice_black_streaked_dwarf_virus__LJ_M" : [ - "HQ394210", - "HQ394209" - ], - "Hepatitis_C_virus__QC156" : [ - "KJ439771" - ], - "Tomato_spotted_wilt_virus__GA_1L" : [ - "FM163371" - ], - "WU_Polyomavirus__B3829" : [ - "GU296374" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI1657_2012_A" : [ - "KJ627423" - ], - "Deferribacter_desulfuricans_SSM1" : [ - "NC_013940", - "NC_013939" - ], - "Acinetobacter_baumannii_ZW85_1" : [ - "NC_023031", - "NC_023028" - ], - "Turnip_mosaic_virus__GBR83" : [ - "AB701717" - ], - "Cotton_leaf_curl_Multan_betasatellite__YN01" : [ - "KF766948" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL060A" : [ - "AB985527", - "AB985296" - ], - "Porcine_circovirus_2__2542_18_Treviso_19_25_10_2010" : [ - "KP231157" - ], - "Human_immunodeficiency_virus_1_98BR004" : [ - "AF286228" - ], - "Cyanobacterium_aponinum_PCC_10605" : [ - "NC_019776", - "NC_019777" - ], - "Human_immunodeficiency_virus_1__RBF168" : [ - "GU111555" - ], - "Rice_tungro_bacilliform_virus__Punjab" : [ - "JX255736" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8372_2003" : [ - "KJ627662" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1536_2007" : [ - "EU677163" - ], - "Helicobacter_pylori_HPAG1" : [ - "NC_008087", - "NC_008086" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_54_2012" : [ - "KJ686148" - ], - "Budgerigar_fledgling_disease_polyomavirus_APV3" : [ - "AB453161" - ], - "Maize_dwarf_mosaic_virus__Golestan" : [ - "JQ280313" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7678_2012" : [ - "KF973465" - ], - "Pig_stool_associated_circular_ssDNA_virus__HUN1" : [ - "JX305995" - ], - "Zucchini_yellow_mosaic_virus__SE04T" : [ - "KF976713" - ], - "Francisella_novicida_U112" : [ - "NC_008601" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4793_2009" : [ - "HM631861" - ], - "Porcine_circovirus_2_GXHZ_4" : [ - "EF675233" - ], - "Potato_leafroll_virus" : [ - "KP090166", - "NC_001747", - "AY138970" - ], - "Norovirus_Hu_GII_4_Niigata1_2007_JP_Hu_GII_4_Niigata1_2007_JP" : [ - "AB541309" - ], - "Tobacco_bushy_top_virus_satellite_like_RNA_Dali_MDu" : [ - "FN821689" - ], - "Vibrio_phage_VpV262" : [ - "NC_003907" - ], - "Hepatitis_B_virus__31Y13HCC" : [ - "AB014390" - ], - "Porcine_circovirus_2__A4147" : [ - "JF317570" - ], - "Cacao_swollen_shoot_virus__Peki" : [ - "AJ609019" - ], - "Tomato_yellow_leaf_curl_China_virus__G102" : [ - "AM050555" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Punc_alpha_8" : [ - "EU384648" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_232" : [ - "JQ765569" - ], - "Hepatitis_B_virus_99_32" : [ - "KR013886" - ], - "Dengue_virus_2__DENV_2_US_BID_V1061_1989" : [ - "EU660398" - ], - "Crimean_Congo_hemorrhagic_fever_virus_BT958" : [ - "EF123122" - ], - "Vibrio_phage_ICP2_2011_A" : [ - "KM224878" - ], - "Bluetongue_virus_4__320226" : [ - "DQ191278" - ], - "Hepatitis_B_virus__I199" : [ - "FJ562308" - ], - "Classical_swine_fever_virus_Rovac" : [ - "KJ873238" - ], - "Maize_streak_virus___Reunion__N2AR5___N2A" : [ - "AJ224507" - ], - "Burdock_mottle_virus__S" : [ - "NC_021736", - "NC_021735" - ], - "Cauliflower_mosaic_virus__CB1" : [ - "KF498706" - ], - "Porcine_circovirus_2_FD" : [ - "GQ996404" - ], - "Rabies_virus__SM5451" : [ - "JQ685959" - ], - "Rabies_virus__SM5470" : [ - "JQ685966" - ], - "West_Nile_virus__WNV_1_US_BID_V4189_1999" : [ - "HM488128" - ], - "HBV_genotype_G__MEX918M" : [ - "AB625342" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__NJ5B3" : [ - "FM164725" - ], - "Measles_virus_AIK_C" : [ - "AB046218" - ], - "Lily_symptomless_virus__LSV_jj" : [ - "GU440579" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_143_2012" : [ - "KJ686155" - ], - "Mycobacterium_phage_fionn_Fionnbharth" : [ - "NC_027365" - ], - "Bacillus_phage_BCD7" : [ - "NC_019515" - ], - "Human_immunodeficiency_virus_1__03BRRJ327" : [ - "EU735536" - ], - "Hepatitis_B_virus__cxa1180" : [ - "KC774289" - ], - "Roseburia_hominis_A2_183" : [ - "NC_015977" - ], - "Sugarcane_streak_mosaic_virus__PAK" : [ - "NC_014037" - ], - "Wheat_eqlid_mosaic_virus" : [ - "NC_009805" - ], - "Hepatitis_B_virus_subtype_ayw_PYW310" : [ - "AB033559" - ], - "Strawberry_vein_banding_virus__China" : [ - "HE681085" - ], - "Cercopithecus_erythrotis_polyomavirus_1__4077" : [ - "NC_025892" - ], - "Turnip_mosaic_virus__GK1" : [ - "AB701696" - ], - "West_Nile_virus_Italy_2013_Rovigo_33_2" : [ - "KF647249" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota84_2013" : [ - "KJ645707" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4133_1" : [ - "KR105214" - ], - "West_Nile_virus__WNV_1_US_BID_V6472_2002" : [ - "KJ501315" - ], - "Equid_herpesvirus_1__5586" : [ - "AP012321" - ], - "Measles_virus_genotype_D8_MVi_Muenchen_DEU_19_13_D8" : [ - "KJ410048" - ], - "Foot_and_mouth_disease_virus_O_UKG_9161_2001_UKG_9161_2001" : [ - "EF552691" - ], - "Dengue_virus_2__DENV_2_VN_BID_V736_2006" : [ - "EU482673" - ], - "Nitratifractor_salsuginis_DSM_16511" : [ - "NC_014935" - ], - "Hepatitis_B_virus_513_29a" : [ - "KR013793" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_168_2012" : [ - "KJ686176" - ], - "Human_adenovirus_41__Tak" : [ - "DQ315364" - ], - "Macroptilium_yellow_spot_virus__BR_Agf2_10" : [ - "JN419014" - ], - "Avian_orthoreovirus_S1133wt" : [ - "DQ868790" - ], - "SARS_coronavirus_wtic_MB_wtic_MB" : [ - "FJ882938" - ], - "Human_herpesvirus_5_BE_21_2010" : [ - "KC519322" - ], - "Maize_streak_virus__MSV_A_GH_gh132_Aki3_2010" : [ - "KJ699321" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2165_1998" : [ - "FJ639738" - ], - "Tomato_yellow_leaf_curl_virus__J18_11" : [ - "KJ585666" - ], - "Tomato_yellow_leaf_curl_virus__Guasave" : [ - "FJ609655", - "FJ012358" - ], - "Botryotinia_fuckeliana_partitivirus_1" : [ - "NC_010351", - "NC_010350", - "NC_010349" - ], - "Newcastle_disease_virus__NDV55_TN_Namakkal" : [ - "KM056353" - ], - "Human_poliovirus_3_NIE1018454" : [ - "KJ170640" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V380_2003" : [ - "EU256045" - ], - "Soybean_mosaic_virus_G3" : [ - "FJ640978" - ], - "Hepatitis_B_virus__cxa1205" : [ - "KC774294" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3892_2008" : [ - "HM181961" - ], - "Propionibacterium_phage_PHL111M01" : [ - "NC_022342" - ], - "Hepatitis_B_virus__I_T73" : [ - "GU456672" - ], - "Mycobacterium_phage_JacAttac_JacAttac" : [ - "NC_023740" - ], - "Pigeon_paramyxovirus_1_PPMV_1_Belgium_98_248_1998" : [ - "JX901110" - ], - "Coxsackievirus_A14__PZ15G_JS_2012" : [ - "KP036483" - ], - "Oat_necrotic_mottle_virus__Type_NE" : [ - "NC_005136" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_111_2012" : [ - "KJ686156" - ], - "Hepatitis_B_virus__I_T114" : [ - "GU456658" - ], - "Bluetongue_virus_RSArrrr_06" : [ - "GQ506500", - "GQ506503", - "GQ506499", - "GQ506504", - "GQ506498", - "GQ506505", - "GQ506502", - "GQ506501" - ], - "Eel_River_basin_pequenovirus__c7882" : [ - "KP087939" - ], - "Wheat_dwarf_virus____Hebei_Shijiazhuang___HBSJZ06_9" : [ - "EF536868" - ], - "Pseudogulbenkiania_NH8B" : [ - "NC_016002" - ], - "Maize_streak_virus__MSV_B1_Za_PlaB_g27_2006" : [ - "EU628597" - ], - "Acidithiobacillus_ferrivorans_SS3" : [ - "NC_015942" - ], - "Eastern_equine_encephalitis_virus_EEEV_Vireo_olivaceus_USA_08_3_0855_1960" : [ - "KJ469599" - ], - "Ononis_yellow_mosaic_virus" : [ - "NC_001513" - ], - "Geobacillus_phage_GBSV1" : [ - "NC_008376" - ], - "Tomato_leaf_curl_China_betasatellite__Y11" : [ - "AJ421620" - ], - "Okra_leaf_curl_Cameroon_virus_Cameroon_Lik1_GR17" : [ - "HE793427" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HEB_2013" : [ - "KJ591659" - ], - "Bovine_polyomavirus_2_BPyV2_SF" : [ - "NC_025811" - ], - "Porcine_circovirus_2__ZH20140119" : [ - "KP824726" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5_4P20_2010_c5_4P20" : [ - "KF514390" - ], - "Sweet_potato_leaf_curl_virus__CE__BR_For1" : [ - "FJ969832" - ], - "Chikungunya_virus_06_021" : [ - "AM258992" - ], - "Hepatitis_C_virus_subtype_1a__L838" : [ - "EU781784" - ], - "West_Nile_virus__WNV_1_US_BID_V4635_2008" : [ - "HM488245" - ], - "Maize_streak_virus__UMpi_11" : [ - "EF547066" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_LBC_LBC11" : [ - "KF385424" - ], - "Hepatitis_B_virus__1_3242" : [ - "JX096954" - ], - "Douglas_virus__93_6" : [ - "HE795091", - "HE795092", - "HE795090" - ], - "Hepatitis_B_virus__D_F049PF_2004" : [ - "HQ700493" - ], - "Soybean_chlorotic_spot_virus__BR_Flt15_11" : [ - "KJ939917" - ], - "Helicoverpa_zea_single_nucleopolyhedrovirus" : [ - "NC_003349" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1908_2008" : [ - "FJ410244" - ], - "West_Nile_virus__WNV_USA_BID_G15500" : [ - "JX503091" - ], - "Hepatitis_E_virus__HE_JA10" : [ - "AB089824" - ], - "Coxsackievirus_A6_CA6_CC13_57" : [ - "KM279379" - ], - "Porcine_circovirus_2_SH1111" : [ - "JX948771" - ], - "Dengue_virus_1_D1_SG_05K4142DK1_2005" : [ - "EU081257" - ], - "Human_coronavirus_OC43_OC43_human_USA_008_5_2000" : [ - "KF530092" - ], - "Wheat_dwarf_virus__French" : [ - "X82104" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2295_2001" : [ - "FJ744711" - ], - "Solibacillus_silvestris_StLB046" : [ - "NC_018069", - "NC_018065" - ], - "Bovine_papillomavirus_type_9" : [ - "AB331650" - ], - "Rhodobacter_sphaeroides_ATCC_17025" : [ - "NC_009430", - "NC_009432", - "NC_009433", - "NC_009431", - "NC_009428", - "NC_009429" - ], - "Pseudoplusia_includens_SNPV_IE" : [ - "NC_026268" - ], - "Human_T_lymphotropic_virus_1_1066_05" : [ - "HQ606137" - ], - "Hepatitis_C_virus_subtype_1a_HCV_RMT" : [ - "AB520610" - ], - "Shigella_phage_SfII" : [ - "NC_021857" - ], - "Infectious_bronchitis_virus_Mass_41__M41" : [ - "AY851295" - ], - "Human_parechovirus_3_BONN_1" : [ - "JX682576" - ], - "Papaya_leaf_curl_betasatellite__India_Bangalore_TC281_2010" : [ - "KJ605113" - ], - "Mycobacterium_phage_ScottMcG" : [ - "NC_011269" - ], - "Blainvillea_yellow_spot_virus__BgV06A_1_C80" : [ - "JF694468" - ], - "Newcastle_disease_virus__ndv42_gopalpura_04_2013" : [ - "KM056349" - ], - "West_Nile_virus__WNV_1_US_BID_V6650_2001" : [ - "KJ501394" - ], - "Thottapalayam_virus" : [ - "NC_010704" - ], - "Rabies_virus__SM5077" : [ - "JQ685911" - ], - "Human_immunodeficiency_virus_1__DR6089" : [ - "AB286956", - "AB286955" - ], - "Clostridium_phage_phiCP39_O" : [ - "NC_011318" - ], - "Cas_Br_E_murine_leukemia_virus" : [ - "X57540" - ], - "Rice_yellow_mottle_virus__Tz18" : [ - "AJ877020" - ], - "Hepatitis_B_virus_419_18" : [ - "KR013924" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__BB0907_s34" : [ - "KM453698" - ], - "Drosophila_x_virus" : [ - "NC_004169", - "NC_004177" - ], - "Hepatitis_B_virus__SHB3B3" : [ - "KJ598676" - ], - "Propionibacterium_phage_P101A" : [ - "NC_018841" - ], - "Human_cyclovirus_7046A" : [ - "KF726987" - ], - "Viral_hemorrhagic_septicemia_virus__FYeosu05" : [ - "KF477302" - ], - "West_Nile_virus__AVA1202598" : [ - "KC736486" - ], - "Cucurbit_aphid_borne_yellows_virus__CABYV_JAN" : [ - "GQ221224" - ], - "West_Nile_virus_LEIV_3266Ukr" : [ - "JX041631" - ], - "Tomato_yellow_leaf_curl_China_virus_TYLCV_CHI" : [ - "NC_004044" - ], - "Homalodisca_vitripennis_reovirus__NC4" : [ - "GU437856" - ], - "Bacillus_phage_Nf" : [ - "EU622808" - ], - "Cedar_virus__CG1a" : [ - "NC_025351" - ], - "Burkholderia_gladioli_BSR3" : [ - "NC_015382", - "NC_015378", - "NC_015383", - "NC_015377", - "NC_015376", - "NC_015381" - ], - "Rhodopirellula_baltica_SH_1" : [ - "NC_005027" - ], - "Torque_teno_sus_virus_1b__FJ_China_2010_TTV2_2" : [ - "JF937656" - ], - "Porcine_circovirus_2_HN0602" : [ - "EF524534" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_96I_097A_01_1996" : [ - "KP258739" - ], - "Cleome_leaf_crumple_virus__BR_BA_Cds1_10" : [ - "JN103439" - ], - "Turnip_mosaic_virus__NZ246" : [ - "AB989646" - ], - "Alkhumra_hemorrhagic_fever_virus_1176" : [ - "NC_004355" - ], - "Porcine_circovirus_2_10AH" : [ - "HQ395049" - ], - "Tomato_leaf_curl_China_betasatellite__Y244" : [ - "AM260717" - ], - "Mycobacterium_phage_AnnaL29" : [ - "NC_022087" - ], - "Western_equine_encephalitis_virus_TBT_235" : [ - "KJ554971" - ], - "Watermelon_chlorotic_stunt_virus__JO3_67" : [ - "KM820222" - ], - "Ilesha_virus_HB80P125_26_11_80" : [ - "AM709779" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3792_2008" : [ - "GQ868632" - ], - "Sowbane_mosaic_virus__SoMV_WA" : [ - "HM163159" - ], - "JC_polyomavirus__FL_13" : [ - "AB127353" - ], - "Enterovirus_A92_RJG7" : [ - "EF667344" - ], - "Tick_borne_encephalitis_virus_178_79" : [ - "EF469661" - ], - "African_cassava_mosaic_virus__MG_MG97A3_07" : [ - "KJ887905" - ], - "Venezuelan_equine_encephalitis_virus_66457" : [ - "AF004472" - ], - "Squash_leaf_curl_virus__IL1_20" : [ - "KM595100" - ], - "Tembusu_virus_XHZD_2010" : [ - "JQ595407" - ], - "Cotton_leaf_curl_Gezira_betasatellite__CLC01_C" : [ - "AY669329" - ], - "Human_immunodeficiency_virus_1__99ZALT21" : [ - "EU293446" - ], - "Porcine_circovirus_2__PCV2_JXL" : [ - "AY294310" - ], - "Hepatitis_B_virus__J10" : [ - "GQ377516" - ], - "Maize_streak_virus__MSV_A_GH_gh111_Sek_2010" : [ - "KJ699308" - ], - "Tomato_leaf_curl_China_betasatellite__YN72" : [ - "EF011560" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1000_2006" : [ - "EU482445" - ], - "Rift_Valley_fever_virus_200803169" : [ - "JF311375", - "JF311393", - "JF311384" - ], - "Soybean_mosaic_virus__Ar33" : [ - "KF135489", - "KF297335" - ], - "Dictyoglomus_thermophilum_H_6_12" : [ - "NC_011297" - ], - "Dickeya_dadantii_3937" : [ - "NC_014500" - ], - "Murray_Valley_encephalitis_virus_OR156" : [ - "KF751871" - ], - "Equine_infectious_anemia_virus_DLV_DLV15_16" : [ - "HM141918" - ], - "Pseudomonas_phage_vB_PaeP_Tr60_Ab31" : [ - "NC_023575" - ], - "Dengue_virus_2__DENV_2_TH_BID_V3500_1996" : [ - "GQ868545" - ], - "Turnip_mosaic_virus__BEL1" : [ - "AB701698" - ], - "Cyanophage_NATL1A_7_NATL1A_7" : [ - "NC_016658" - ], - "Squash_leaf_curl_China_virus____Pumpkin__Coimbatore" : [ - "AY184488", - "AY184487" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2856_2005" : [ - "FJ898395" - ], - "Hepatitis_B_virus__018_WAust_Wyn" : [ - "KF873530" - ], - "Mycobacterium_phage_Chy4" : [ - "NC_021338" - ], - "Maize_streak_virus__MSV_C_Ug_LuwA_2007" : [ - "EU628622" - ], - "Enterobacteria_phage_Phi1" : [ - "NC_009821" - ], - "Mesta_yellow_vein_mosaic_virus__India_Bongaon_2008___Bongaon_East_India" : [ - "FJ159262" - ], - "Human_immunodeficiency_virus_1__03ZAPS108MB1" : [ - "DQ396378" - ], - "Bibersteinia_trehalosi_192" : [ - "NC_020515" - ], - "Dengue_virus_2_DENV_2_PR_36DN_1994" : [ - "GQ398284" - ], - "Wheat_dwarf_virus_wheat_strain_Alsleben_3" : [ - "HG422317" - ], - "Human_immunodeficiency_virus_1__I1p21" : [ - "HM469980" - ], - "JC_polyomavirus__Luz_3" : [ - "AB113134" - ], - "Hepatitis_B_virus__KOR43HCC" : [ - "GQ475347" - ], - "Human_coronavirus_NL63_NL63_human_USA_8712_17_1987" : [ - "KF530106" - ], - "Porcine_circovirus_2_KSY_2" : [ - "AF544024" - ], - "Human_herpesvirus_5_BE_16_2010" : [ - "KP745716" - ], - "Hepatitis_E_virus_rat_Mu09_0434_DEU_2010" : [ - "JN167538" - ], - "Bean_golden_mosaic_virus__BR_Sag8_12" : [ - "KJ939786" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3808" : [ - "KM233085" - ], - "Parapoxvirus_red_deer_HL953_HL953" : [ - "NC_025963" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_11GZ_GD" : [ - "JX235370" - ], - "Dengue_virus_1_D1_Hu_Hyogo_NIID188_2014" : [ - "LC016760" - ], - "Hepatitis_B_virus__C_Tonga_BD4171_2001" : [ - "HQ700555" - ], - "Wheat_dwarf_virus__SXHC10_16" : [ - "JQ647498" - ], - "Rice_black_streaked_dwarf_virus__JN_1" : [ - "KC166697" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_94_2013" : [ - "KM042390" - ], - "French_bean_leaf_curl_betasatellite_Kanpur__FbLCbeta" : [ - "NC_018091" - ], - "African_cassava_mosaic_virus__CF_CF72AB_07" : [ - "KJ887780" - ], - "Raspberry_bushy_dwarf_virus__BY8" : [ - "FR687351", - "FR687356" - ], - "Atlantic_salmon_calicivirus__AL_V901" : [ - "KJ577140" - ], - "Torque_teno_sus_virus_k2b__38E05" : [ - "JQ406844" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1806_2007" : [ - "FJ410201" - ], - "Suid_herpesvirus_1_Becker" : [ - "JF797219" - ], - "Human_poliovirus_2__PV2_5074_18_ISR99" : [ - "AM040037" - ], - "Cyclovirus_ZM01_ZM01" : [ - "AB937981" - ], - "Dengue_virus_2__DENV_2_US_BID_V1084_1998" : [ - "EU482565" - ], - "Hepatitis_B_virus__C1_12" : [ - "GU815617" - ], - "Cauliflower_mosaic_virus__GRC83" : [ - "AB863193" - ], - "Hepatitis_B_virus__C185" : [ - "EU939669" - ], - "Croton_yellow_vein_mosaic_betasatellite_India_Barrackpore1_2008" : [ - "EU557375" - ], - "Human_papillomavirus_type_58__Qv04732" : [ - "HQ537767" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_84_2013" : [ - "KJ672462" - ], - "Torque_teno_sus_virus_1a__TTV1_G21" : [ - "GU570201" - ], - "Dengue_virus_4__P75_215" : [ - "EF457906" - ], - "Banana_bunchy_top_virus__KP1" : [ - "FJ859723", - "FJ859736" - ], - "Ross_River_virus_8961" : [ - "GQ433357" - ], - "Chimpanzee_smacovirus__SF2" : [ - "NC_026318" - ], - "Acute_bee_paralysis_virus__Poland_1" : [ - "AF486073" - ], - "Hepatitis_B_virus__HBV_CB15" : [ - "AB115551" - ], - "Human_papillomavirus_type_16__Qv33501" : [ - "HQ644286" - ], - "Maize_streak_virus__MSV_A_KE_Nye3_g377_2008" : [ - "HQ693334" - ], - "West_Nile_virus__WNV_1_US_BID_V7791_2012" : [ - "KJ501226" - ], - "European_mountain_ash_ringspot_associated_virus__E52895" : [ - "HG799732" - ], - "Human_papillomavirus_type_71" : [ - "AB040456" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7062_2007" : [ - "KJ189278" - ], - "Feline_coronavirus_UU4_UU4" : [ - "FJ938054" - ], - "Norovirus_Hu_GII_4_Chiba1_2007_JP_Hu_GII_4_Chiba1_2007_JP" : [ - "AB541228" - ], - "Hepatitis_B_virus__C102" : [ - "EU859945", - "EU939569" - ], - "Hepatitis_B_virus__Cr05" : [ - "KJ843222" - ], - "Roundleaf_bat_hepatitis_B_virus__RBHBV_GB09_301_Hip_rub_GAB_2009" : [ - "KC790375" - ], - "Maguari_virus__R2" : [ - "AY286446" - ], - "Hepatitis_B_virus__CX032C_e247n" : [ - "KJ173355" - ], - "Hepatitis_B_virus__TK176" : [ - "JF754629" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0113" : [ - "KP759662" - ], - "Bean_golden_mosaic_virus__BR_Una1_12" : [ - "KJ939821" - ], - "Chlamydia_trachomatis_Sweden2" : [ - "NC_017441" - ], - "Halorubrum_pleomorphic_virus_1" : [ - "NC_012558" - ], - "Apple_chlorotic_leaf_spot_virus__YH" : [ - "KC935955" - ], - "Circovirus_like_genome_RW_A_RW_A" : [ - "NC_013023" - ], - "Enterovirus_A71_75_Yamagata_LPS1" : [ - "AB550339" - ], - "Newcastle_disease_virus__Pigeon_China_SD2012" : [ - "KJ808820" - ], - "Ageratum_yellow_vein_China_virus__P157" : [ - "EU487045" - ], - "Chilli_leaf_curl_alphasatellite" : [ - "KF471044", - "KF471049", - "KF471050", - "NC_024374", - "KF471048", - "KF471045", - "KF471051", - "KF471052", - "KF471043", - "KF471046" - ], - "Dengue_virus_2__DENV_2_US_BID_V1432_2004" : [ - "EU677147" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2825_2003" : [ - "FJ882562" - ], - "Beak_and_feather_disease_virus__PT09_2" : [ - "GU047347" - ], - "Hepatitis_B_virus__G1" : [ - "DQ399006" - ], - "Norovirus_Hu_GI_6_Kingston_ACT160D_2010_AU_Hu_GI_6_Kingston_ACT160D_2010_AU" : [ - "JQ388274" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_312" : [ - "KP998402" - ], - "African_cassava_mosaic_virus__MG_MG63A3_06" : [ - "KJ887882" - ], - "Hepatitis_C_virus_QC69__QC69" : [ - "EF108306" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kampala_Okra7" : [ - "FN554527" - ], - "Duck_circovirus__33_2" : [ - "KF941313" - ], - "Coxsackievirus_A24_China_GD391_2007" : [ - "JF742578" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG649A1_11" : [ - "KJ888079" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1502_2006" : [ - "EU660403" - ], - "Denitrovibrio_acetiphilus_DSM_12809" : [ - "NC_013943" - ], - "Propionibacterium_acnes_KPA171202" : [ - "NC_006085" - ], - "African_cassava_mosaic_virus__CF_CF88AB_07" : [ - "KJ887786" - ], - "Hepatitis_B_virus__Vc" : [ - "AY167102" - ], - "Allamanda_leaf_curl_virus__G10" : [ - "NC_010947" - ], - "Dengue_virus_2_98900665_DF_DV_2" : [ - "AB189123" - ], - "Dengue_virus_2__DENV_2_NI_BID_V531_2005" : [ - "EU482755" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_YN9" : [ - "GU232738" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_87E_063_01_1987" : [ - "KP258735" - ], - "Wheat_dwarf_virus__SA6PstFL1" : [ - "AM921994" - ], - "Watermelon_mosaic_virus__RKG" : [ - "KM597070" - ], - "Echovirus_E20_JV_1" : [ - "AY302546" - ], - "Watermelon_chlorotic_stunt_virus__JO1_14" : [ - "KM820198" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP6B_subpopulation_2" : [ - "JN014005" - ], - "Hepatitis_B_virus_HB434" : [ - "HM011499" - ], - "Ruminococcus_albus_7" : [ - "NC_014824", - "NC_014827", - "NC_014825", - "NC_014833", - "NC_014826" - ], - "Alkhumra_hemorrhagic_fever_virus_200204519" : [ - "JF416953" - ], - "Pan_troglodytes_schweinfurthii_polyomavirus_2__6350" : [ - "NC_019858" - ], - "Avian_leukosis_virus__CAUHM01" : [ - "JF932000" - ], - "Human_adenovirus_64_88" : [ - "JQ326208" - ], - "Listeria_phage_LP_083_2" : [ - "NC_024383" - ], - "Duck_egg_drop_syndrome_virus_JS" : [ - "JQ920422" - ], - "Microviridae_Bog1249_12__Bog1249_12" : [ - "NC_027634" - ], - "Agrobacterium_fabrum_C58" : [ - "NC_003062", - "NC_003064", - "NC_003063", - "NC_003065" - ], - "Dengue_virus_2__DENV_2_US_BID_V5055_2008" : [ - "JN796245" - ], - "Dengue_virus_2_DENV_2_PR_21DN_1994" : [ - "GQ398297" - ], - "Human_mastadenovirus_B_human_CHN_DG_2011_7_P7H7F7" : [ - "KF268314" - ], - "Hepatitis_C_virus__NE274" : [ - "KJ470619" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PAN_485029_2001_ID" : [ - "KC344474" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL104A" : [ - "AB985314", - "AB985546" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT08A36_2005" : [ - "JF909232" - ], - "Tomato_leaf_curl_Vietnam_virus__Hai_Duong_120" : [ - "GQ246940" - ], - "Rhinovirus_B__3039" : [ - "KF958308" - ], - "Hepatitis_B_virus__patient_B__serum_05_93" : [ - "EF208113" - ], - "Hepatitis_B_virus__B2_3" : [ - "GU815596" - ], - "Beak_and_feather_disease_virus__BKS3ZA_86" : [ - "GQ165758" - ], - "Rotavirus_A_Hu_USA_06_242_2006_G2P_6__Hu_USA_06_242_2006_G2P_6" : [ - "JF460821", - "JF460816", - "JF460818", - "JF460812", - "JF460822", - "JF460817", - "JF460819", - "JF460814", - "JF460813", - "JF460820", - "JF460815" - ], - "East_African_cassava_mosaic_virus__CF_CF351B_08" : [ - "KM885997" - ], - "Norovirus_Hu_GII_4_Aomori2_2007_JP_Hu_GII_4_Aomori2_2007_JP" : [ - "AB541220" - ], - "Propionibacterium_phage_PHL066M04" : [ - "JX570711" - ], - "Hepatitis_B_virus__530_97_1" : [ - "EU872002" - ], - "Circovirus_like_genome_RW_C_RW_C" : [ - "NC_013025" - ], - "Hepatitis_B_virus__A5_48103" : [ - "FJ692596" - ], - "Hepatitis_C_virus_subtype_2a__G2aK3" : [ - "AF169004" - ], - "Abalone_herpesvirus_Victoria_AUS_2009__Victoria" : [ - "NC_018874" - ], - "Hepatitis_B_virus__FC1_9" : [ - "AY796030" - ], - "Hollyhock_leaf_crumple_virus__Giza" : [ - "AF014881" - ], - "JC_polyomavirus__JCV135_46" : [ - "JF424871" - ], - "Enterococcus_faecalis_62" : [ - "NC_017732", - "NC_017314", - "NC_017312", - "NC_017315", - "NC_017313" - ], - "Dengue_virus_2_D2_PF_UH50_1972" : [ - "HM582108" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GDQY1VP65" : [ - "JN387272" - ], - "Hepatitis_B_virus__HBNAT030" : [ - "KJ638660" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_5__AHEaCV_5_NZ_4834GA_2012" : [ - "KM874303" - ], - "Bat_SARS_coronavirus_HKU3_5_HKU3_5" : [ - "GQ153540" - ], - "Hepatitis_B_virus_513_23a" : [ - "KR013956" - ], - "Norovirus_Hu_GII_4_Toyama4_2006_JP_Hu_GII_4_Toyama4_2006_JP" : [ - "AB447444" - ], - "Phlebovirus_JS6_JS6" : [ - "HQ830171", - "HQ830170", - "HQ830169" - ], - "Gallid_herpesvirus_2__GX0101" : [ - "JX844666" - ], - "Hepatitis_B_virus__P5_9" : [ - "HE576988" - ], - "Pseudoalteromonas_SM9913" : [ - "NC_014803", - "NC_014800" - ], - "Dengue_virus_3_BR_DEN3_290_02" : [ - "EF629369" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V210_1989" : [ - "EU255991" - ], - "Ludwigia_leaf_distortion_betasatellite__India_Amadalavalasa_Hibiscus_2007" : [ - "NC_010569" - ], - "Tetragenococcus_halophilus" : [ - "NC_016052" - ], - "Hepatitis_B_virus__I1_M05_0592" : [ - "FJ023661" - ], - "Turnip_mosaic_virus_RC4" : [ - "AY134473" - ], - "Muscovy_duck_circovirus__TC1_2002" : [ - "NC_006561" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7607_2008" : [ - "KJ189338" - ], - "Ostreococcus_tauri_virus_2" : [ - "NC_014789" - ], - "Rabies_virus_Flury_HEP" : [ - "GU565704" - ], - "Hepatitis_B_virus__CR_081" : [ - "DQ361534" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP00574_2011" : [ - "KJ627265" - ], - "Human_papillomavirus_type_6__13" : [ - "HG793821" - ], - "Enterovirus_A71__EV053_07" : [ - "HQ647175" - ], - "Hepatitis_B_virus__QH_53" : [ - "JF491452" - ], - "Mouse_polyomavirus__strain_Crawford_small_plaque" : [ - "PLYCSP" - ], - "Bluetongue_virus_1_RSAvvvv_01_South_Africa_Vaccine" : [ - "AM778437" - ], - "Dengue_virus_1_RGCB592_D1_IN_RGCB592_2009" : [ - "JN903581" - ], - "Okra_enation_leaf_curl_virus__India_Munthal_EL41_2006___EL41" : [ - "GU111999" - ], - "Mosquito_flavivirus__LSFlaviV_A20_09" : [ - "NC_021069" - ], - "West_Nile_virus__BSL173_08" : [ - "JF957173" - ], - "West_Nile_virus__WNV_1_US_BID_V4377_2005" : [ - "HM488197" - ], - "Dengue_virus_2__DENV_2_PE_FPI01399_2011" : [ - "KC294209" - ], - "Tomato_severe_rugose_virus__ToSRV__BR_1646Tom4b_08" : [ - "JX415199" - ], - "Cotton_leaf_curl_Rajasthan_virus__Mustil_6A3" : [ - "EU384574" - ], - "Torque_teno_virus_1__VT416" : [ - "NC_002076" - ], - "Bovine_viral_diarrhea_virus_1__SD0803" : [ - "JN400273" - ], - "Pineapple_mealybug_wilt_associated_virus_1__Hainan" : [ - "KJ872494" - ], - "Canine_papillomavirus_7__Edinburgh" : [ - "FJ492742" - ], - "Bovine_viral_diarrhea_virus_2__NRW_19_13_1_Dup" : [ - "HG426487", - "HG426488" - ], - "Enterovirus_sp___CPML_3961_08" : [ - "KJ420748" - ], - "Tomato_severe_rugose_virus__BR_Car237_08" : [ - "KC706620", - "KC706624" - ], - "Plum_pox_virus_PPV_D_Ou3" : [ - "AB576059" - ], - "Propionibacterium_acnes_HL096PA1" : [ - "NC_021085", - "NC_021086" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2463_2007" : [ - "FJ850101" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1827_2007" : [ - "FJ432746" - ], - "Mycoplasma_conjunctivae" : [ - "NC_012806" - ], - "Classical_swine_fever_virus_SWH" : [ - "DQ127910" - ], - "Simian_adenovirus_38" : [ - "FJ025922" - ], - "Dengue_virus_3__DENV_3_US_BID_V2106_2000" : [ - "FJ547072" - ], - "African_cassava_mosaic_virus__CF_CF59BE_07" : [ - "KJ887601" - ], - "Foot_and_mouth_disease_virus___type_O__UKG_417_2001" : [ - "FJ542365" - ], - "Cassava_brown_streak_virus__Tan_70" : [ - "FN434437" - ], - "Human_immunodeficiency_virus_1__04ZAPS187B1" : [ - "DQ164125" - ], - "Maize_streak_virus__MSV_A_CF_Bos1_Car1_2008" : [ - "HQ693308" - ], - "Human_bocavirus_WLL_1__WLL_1" : [ - "DQ778300" - ], - "Allochromatium_vinosum_DSM_180" : [ - "NC_013851", - "NC_013852", - "NC_013862" - ], - "Usutu_virus_V38" : [ - "KJ438745" - ], - "South_African_cassava_mosaic_virus__MG_MG340A7_10" : [ - "KJ887702" - ], - "Human_herpesvirus_3_8" : [ - "DQ479960" - ], - "Maize_streak_virus__MSV_A_CF_Bos3_Car3_2008" : [ - "HQ693310" - ], - "Human_papillomavirus_type_31__QV13734" : [ - "HQ537686" - ], - "West_Nile_virus__AVA1204485" : [ - "KC736497" - ], - "Propionibacterium_phage_PHL114N00__PHL114N00" : [ - "NC_027343" - ], - "Hepatitis_B_virus_FMU_14" : [ - "AF411408" - ], - "Enterobacteria_phage_phiX174__SC1" : [ - "AF176028" - ], - "Tick_borne_encephalitis_virus_Tobrman" : [ - "KJ922515" - ], - "JC_polyomavirus__JCV144_31" : [ - "JF424886" - ], - "SARS_coronavirus_Taiwan_TC3__TC3" : [ - "AY348314" - ], - "Blueberry_latent_virus__MI_1" : [ - "NC_014593" - ], - "Sapovirus_Hu_GI_Sapporo_MT_2010_1982_Hu_GI_Sapporo_MT_2010_1982" : [ - "HM002617" - ], - "Methylacidiphilum_infernorum_V4" : [ - "NC_010794" - ], - "Grapevine_deformation_virus" : [ - "NC_017938" - ], - "Porcine_circovirus_2_BP_PCV2a_2" : [ - "KM924366" - ], - "Coxsackievirus_B3" : [ - "CXAB3CG", - "CXA3CG" - ], - "JC_polyomavirus__AC_1" : [ - "AB212952" - ], - "Dengue_virus_2__DENV_2_VN_BID_V999_2006" : [ - "EU482543" - ], - "Porcine_bocavirus_5_JS677__5_JS677" : [ - "NC_016647" - ], - "Dengue_virus_2_DR31_01" : [ - "AB122021" - ], - "Hepatitis_B_virus__919014" : [ - "JN040809" - ], - "Hepatitis_C_virus__TV494" : [ - "JX183556" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3780_2006" : [ - "GU131890" - ], - "Human_bocavirus_JPOC07_075" : [ - "AB481076" - ], - "Porcine_circovirus_2__DZ105" : [ - "FJ644558" - ], - "Hepatitis_B_virus__TK23" : [ - "JF754626" - ], - "Barley_yellow_mosaic_virus_III" : [ - "AB920781", - "AB920780" - ], - "Maize_streak_virus__MSV_A_GH_gh32_Tan_2010" : [ - "KJ699345" - ], - "Hepatitis_B_virus_42266" : [ - "FN545839" - ], - "Rotavirus_A__RVA_Human_wt_DEN_L22918477_2012_G9P_8" : [ - "KP013463" - ], - "Norovirus_Hu_GI_1_CHA6A003_20091031_2009_USA_Hu_GI_1_CHA6A003_20091031_2009_USA" : [ - "KF039726" - ], - "Hepatitis_B_virus__B1_8" : [ - "GU815589" - ], - "Arcobacter_nitrofigilis_DSM_7299" : [ - "NC_014166" - ], - "West_Nile_virus__WN_Italy_1998_equine" : [ - "AF404757" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_29__AHEaCV_29_NZ_3425C3_2012" : [ - "KM874367" - ], - "Tobacco_bushy_top_virus__YWDu" : [ - "FM242700" - ], - "Porcine_circovirus_2__P485YH" : [ - "JX099782" - ], - "Bhendi_yellow_vein_India_betasatellite__Vij" : [ - "KJ462075" - ], - "Dengue_virus_1__DENV_1_NI_BID_V630_2005" : [ - "FJ547089" - ], - "Staphylococcus_phage_P108" : [ - "NC_025426" - ], - "Cauliflower_mosaic_virus__IRNIC1" : [ - "KF357595" - ], - "Hepatitis_B_virus__C95" : [ - "EU939629" - ], - "Tomato_leaf_curl_Sudan_virus__Tih_tom11_05" : [ - "JF919729" - ], - "BK_polyomavirus__SWE_2" : [ - "AB263935" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI1717_2012_A" : [ - "KJ627428" - ], - "Hepatitis_B_virus__453" : [ - "EU670260" - ], - "Hepatitis_B_virus_Ehi_OM_lam_6_2" : [ - "AB195946" - ], - "Hepatitis_C_virus_subtype_1b_MD1_1" : [ - "AF165045" - ], - "Dragonfly_circularisvirus__TO_DF3E_2010" : [ - "NC_023853" - ], - "Murray_Valley_encephalitis_virus__MVE_1_51_C10" : [ - "KC852190" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3069_2009" : [ - "GQ199865" - ], - "Human_papillomavirus_type_53__Qv23055" : [ - "EF546474" - ], - "Brucella_suis_ATCC_23445" : [ - "NC_010167", - "NC_010169" - ], - "Streptococcus_phage_O1205_CNRZ1205" : [ - "NC_004303" - ], - "Hepatitis_B_virus_MEXICO30_H" : [ - "AB375160" - ], - "Tomato_leaf_curl_Philippines_virus____LB___Los_Banos_1" : [ - "AF136222" - ], - "Tomato_leaf_curl_China_betasatellite__Y263" : [ - "AM260721" - ], - "Porcine_circovirus_2__NY09" : [ - "KJ680349" - ], - "Hepatitis_B_virus__P18" : [ - "AB493834" - ], - "Persicivirga_phage_P12024S" : [ - "NC_018271" - ], - "Porcine_circovirus_2__A4306" : [ - "JF317582" - ], - "Hepatitis_delta_virus__TW2479_53" : [ - "AY261458" - ], - "Porcine_circovirus_2_Fd1" : [ - "AY322000" - ], - "SARS_coronavirus_MA15_MA15_d4ym1" : [ - "JF292911" - ], - "Vibrio_phage_fs1" : [ - "NC_004306" - ], - "Chikungunya_virus_RGCB755_09" : [ - "KJ796846" - ], - "Torque_teno_felis_virus__SH_F2" : [ - "HM142589" - ], - "Rift_Valley_fever_virus_KEN06_ELH131B08" : [ - "EF467178" - ], - "Human_papillomavirus_type_52__JP0313" : [ - "AB819274" - ], - "Tomato_yellow_leaf_curl_virus__HeZe" : [ - "HQ702863" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HB_1_3_9c" : [ - "HQ233605" - ], - "Macroptilium_yellow_spot_virus__BR_Sti36_11" : [ - "KJ939893" - ], - "Blattabacterium__Cryptocercus_punctulatus__Cpu" : [ - "NC_016621", - "NC_016598" - ], - "Norovirus_Hu_GII_12_HS206_2010_USA_Hu_GII_12_HS206_2010_USA" : [ - "HQ664990" - ], - "Porcine_circovirus_2__PCV_HZY31" : [ - "KC514996" - ], - "West_Nile_virus__AVA1202696" : [ - "KC736493" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_Bulgaria" : [ - "GQ862982", - "GQ862981" - ], - "West_Nile_virus__WNV_1_US_BID_V6498_2002" : [ - "KJ501328" - ], - "Bifidobacterium_breve_UCC2003" : [ - "NC_020517" - ], - "Propionibacterium_phage_PHL112N00" : [ - "NC_022334" - ], - "Trichomonas_vaginalis_virus_T1" : [ - "NC_003824" - ], - "Streptococcus_pneumoniae_P1031" : [ - "NC_012467" - ], - "Madariaga_virus_MADV_Equus_ferus_caballus_VEN_250785_1996" : [ - "KJ469614" - ], - "Norovirus_Hu_GII_20173_2009_VNM_Hu_GII_20173_2009_VNM" : [ - "KC409263" - ], - "Lactococcus_phage_ul36" : [ - "NC_004066" - ], - "Human_bocavirus__HZ1402" : [ - "KP710212" - ], - "JC_polyomavirus__J3_9" : [ - "AB081607" - ], - "Rhodothermus_marinus_DSM_4252" : [ - "NC_013502", - "NC_013501" - ], - "Human_papillomavirus_type_16__AS411" : [ - "HQ644236" - ], - "Streptococcus_phage_DT1_DT1" : [ - "NC_002072" - ], - "Hepatitis_B_virus_FMU003" : [ - "AY206374" - ], - "Human_immunodeficiency_virus_1__01BR087" : [ - "DQ358801" - ], - "Bat_Hp_betacoronavirus_Zhejiang2013__Zhejiang2013" : [ - "NC_025217" - ], - "Maize_streak_virus__MSV_A_NG_Bau_NG3_2006" : [ - "HQ693368" - ], - "Coxsackievirus_A13__CV_A13_67001" : [ - "JF260920" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_89_68" : [ - "JX869188" - ], - "Dengue_virus_2_DENV_2_PR_3DN_1994" : [ - "GQ398308" - ], - "Bhendi_yellow_vein_India_virus__India_Guntur_OYEn_2006___OYEn" : [ - "GU112027" - ], - "Rubella_virus_RVi_HoChiMinh_VNM_34_11_RVV130_2B__RVV130_vero_22w" : [ - "AB928205" - ], - "Merkel_cell_polyomavirus__915F_06_002_KN4" : [ - "JQ479316" - ], - "Hepatitis_B_virus__bxa1556" : [ - "KC774399" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_20_DRC" : [ - "JX458841" - ], - "Feline_coronavirus_UU31_UU31" : [ - "HQ012371" - ], - "Bhendi_yellow_vein_India_virus__India_Pandarahalli_OY169_2006___OY169" : [ - "GU112031" - ], - "Dengue_virus_1__DENV_1_NI_BID_V1223_2007" : [ - "FJ898433" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2617_1996" : [ - "FJ906958" - ], - "Maize_streak_virus__MSV_A_CF_Bos2_Car2_2008" : [ - "HQ693309" - ], - "Human_parainfluenza_virus_3_HPIV3_ZAF_3314_2010" : [ - "KF530228" - ], - "Bean_golden_mosaic_virus__BR_Una3_12" : [ - "KJ939823" - ], - "Hepatitis_B_virus__HBV_VietF_6" : [ - "AB031267" - ], - "Cassava_mosaic_Madagascar_alphasatellite__Madagascar_Diana_635A6_2011" : [ - "NC_018628" - ], - "Hepatitis_B_virus__G67" : [ - "JQ040148" - ], - "Hepatitis_B_virus__D_NZL_RA37_1999" : [ - "HQ700481" - ], - "Enterovirus_C_Saukett" : [ - "KP247597" - ], - "South_African_cassava_mosaic_virus__MG_MG1A3_06" : [ - "KJ887820" - ], - "Choristoneura_fumiferana_multiple_nucleopolyhedrovirus" : [ - "NC_004778" - ], - "Norovirus_Hu_GII_4_Shimane1_2007_JP_Hu_GII_4_Shimane1_2007_JP" : [ - "AB541346" - ], - "Human_papillomavirus_type_101__Qv23954" : [ - "NC_008189" - ], - "Dobrava_Belgrade_virus_SK_Aa" : [ - "AY961615", - "AY961616" - ], - "Chikungunya_virus__IND_GJ53" : [ - "FJ000065" - ], - "Pseudonocardia_dioxanivorans_CB1190" : [ - "NC_015312", - "NC_015313", - "NC_016600", - "NC_017772", - "NC_015314", - "NC_016601" - ], - "Hepatitis_B_virus__1888" : [ - "FJ386597" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda26_05" : [ - "KC706638" - ], - "Coxsackievirus_A24__EH24_70" : [ - "CXA24CG" - ], - "Broad_bean_wilt_virus_2__P3" : [ - "KC625499", - "KC625513" - ], - "Porcine_circovirus_2__ly3" : [ - "EU274310" - ], - "Ross_River_virus_2982" : [ - "GQ433355" - ], - "Hepatitis_B_virus__TK131" : [ - "JF754617" - ], - "Human_papillomavirus_type_16__Z032" : [ - "HQ644297" - ], - "Hepatitis_B_virus__pt15N" : [ - "KM875428" - ], - "Human_immunodeficiency_virus_1__92RW008" : [ - "AB253422", - "AB253421" - ], - "Rice_stripe_virus__SD_JN2" : [ - "EF538684", - "DQ108406" - ], - "European_mountain_ash_ringspot_associated_virus__E53016" : [ - "HG799711" - ], - "Andes_virus_CHI_7913" : [ - "AY228239" - ], - "Hepatitis_B_virus__LAMr_Pt__27_Adefovir_treated_Pt__21" : [ - "AB367418" - ], - "Porcine_circovirus_2_ST" : [ - "AY682996" - ], - "Human_respiratory_syncytial_virus_05_039452" : [ - "JX576756" - ], - "Rift_Valley_fever_virus_1853_78" : [ - "DQ380168", - "DQ375424", - "DQ380220" - ], - "Lucky_bamboo_bacilliform_virus" : [ - "NC_009568" - ], - "Fisavirus_1_HAL1" : [ - "NC_025836" - ], - "Anagyris_vein_yellowing_virus" : [ - "NC_011559" - ], - "Hepatitis_B_virus__ES69_7" : [ - "JF828909" - ], - "Acaryochloris_marina_MBIC11017" : [ - "NC_009932", - "NC_009928", - "NC_009933", - "NC_009930", - "NC_009931", - "NC_009934", - "NC_009925", - "NC_009929", - "NC_009927", - "NC_009926" - ], - "Dengue_virus_2__DENV_2_VE_BID_V1104_2007" : [ - "EU482605" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1454" : [ - "KR534560" - ], - "Tomato_blistering_mosaic_virus__BR001" : [ - "KJ940970" - ], - "Human_parainfluenza_virus_4b_04_13" : [ - "JQ241176" - ], - "Spodoptera_exigua_multiple_nucleopolyhedrovirus__VT_SeAl2" : [ - "HG425344" - ], - "Cucumber_mosaic_virus_KP" : [ - "KM272276" - ], - "Tomato_yellow_leaf_curl_virus__SDZB" : [ - "HM627885", - "GQ352537" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2714_2006" : [ - "FJ882538" - ], - "Sunshine_virus" : [ - "NC_025345" - ], - "Human_endogenous_retrovirus_K115" : [ - "AY037929" - ], - "Human_immunodeficiency_virus_1__03ZASK029B2" : [ - "AY772691" - ], - "Human_immunodeficiency_virus_1__CAP8_3w_F2" : [ - "GQ999972" - ], - "Oropouche_virus_BeAn_626990" : [ - "AY117135" - ], - "Human_mastadenovirus_B_human_USA_UFL_Adv34_2005_34_P34_H34_F34" : [ - "KF268196" - ], - "Maize_streak_virus___Reunion__N2AR4___N2A" : [ - "AJ224506" - ], - "Hosta_virus_X_type_strain__HVX_Kr" : [ - "NC_011544" - ], - "Aeromonas_phage_pIS4_A_pIS4_A" : [ - "JF974294" - ], - "Porcine_circovirus_2__Vos_6908_07" : [ - "EU545546" - ], - "Dickeya_zeae_Ech1591" : [ - "NC_012912" - ], - "Hepatitis_B_virus__7_B74" : [ - "EU560439" - ], - "Mumps_virus_JL5_JL_CK4" : [ - "JQ946553" - ], - "Potato_virus_H__YN" : [ - "NC_018175" - ], - "Human_T_lymphotropic_virus_4_1863LE" : [ - "NC_011800" - ], - "Foot_and_mouth_disease_virus___type_A_Aarg2001_aarg2001_iso93" : [ - "AY593783" - ], - "Hepatitis_B_virus__CAR146" : [ - "AM494711" - ], - "Tembusu_virus__SX1" : [ - "KM066945" - ], - "Pseudomonas_syringae_phaseolicola_1448A" : [ - "NC_007275", - "NC_007274", - "NC_005773" - ], - "Hepatitis_B_virus__cww1021" : [ - "KC774247" - ], - "Human_papillomavirus_type_52" : [ - "X74481" - ], - "Hepatitis_B_virus_WJQ310" : [ - "AY220701" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_131143" : [ - "KJ425502" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_14__AHEaCV_14_NZ_2438TU_2012" : [ - "NC_026641" - ], - "Human_astrovirus_1_Beijing_176_2006_CHN_Beijing_176_2006_CHN" : [ - "FJ755403" - ], - "Bovine_adenovirus_D_THT_62" : [ - "NC_002685" - ], - "Staphylococcus_phage_PH15_PH15" : [ - "NC_008723" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3853_2008" : [ - "GU131689" - ], - "Hepatitis_B_virus__H5" : [ - "FJ349205" - ], - "Broad_bean_wilt_virus_2__XJ14_3a" : [ - "JQ855708" - ], - "Sacbrood_virus_II_2" : [ - "JX270795" - ], - "Odontoglossum_ringspot_virus__SW8" : [ - "KF855954" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_MFF_After" : [ - "EF532819" - ], - "Bluetongue_virus_1__SAD2010" : [ - "KJ577122", - "KJ577114", - "KJ577123", - "KJ577119", - "KJ577121", - "KJ577120", - "KJ577118", - "KJ577116", - "KJ577117" - ], - "JC_polyomavirus__ME_16" : [ - "AB081019" - ], - "Hepatitis_B_virus_FMU015" : [ - "AY206386" - ], - "Bartonella_henselae_Houston_1" : [ - "NC_005956" - ], - "Goutanap_virus_F55_CI_2004" : [ - "KF588039" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_88E_072_01_1988" : [ - "KP258695" - ], - "Human_immunodeficiency_virus_1__X1241" : [ - "AY536238" - ], - "Hepatitis_B_virus__CX003M_e205" : [ - "KJ173342" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_WS" : [ - "KM609213" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus__E6" : [ - "KF446667", - "KF446668" - ], - "Hepatitis_B_virus__C1_8" : [ - "GU815625" - ], - "Human_respiratory_syncytial_virus_A_WI_629_22_07" : [ - "JF920049" - ], - "Edwardsiella_phage_MSW_3" : [ - "NC_020082" - ], - "West_Nile_virus__TX5058" : [ - "JF415929" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0167" : [ - "KP759624" - ], - "Foot_and_mouth_disease_virus_C1_C1_Oberbayern_c1ober_iso88" : [ - "AY593805" - ], - "Escherichia_coli_UMN026" : [ - "NC_011749", - "NC_011739", - "NC_011751" - ], - "HBV_genotype_D3__Mart_B58" : [ - "HE974379" - ], - "Helicobacter_pylori_SJM180" : [ - "NC_014560" - ], - "Macroptilium_mosaic_Puerto_Rico_virus__Bean" : [ - "AF449192", - "AF449193" - ], - "SARS_coronavirus__Tor2_FP1_10895" : [ - "JX163928", - "JX163925" - ], - "Cymbidium_mosaic_virus__2" : [ - "EF125179" - ], - "Hepatitis_B_virus__5" : [ - "EU562219", - "EU833889" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_94_2012" : [ - "KJ686144" - ], - "Hepatitis_B_virus__HBV_NK1" : [ - "AB176643" - ], - "Campylobacter_jejuni_S3" : [ - "NC_017282", - "NC_017281" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2768_2007" : [ - "GQ199792" - ], - "Mycobacterium_phage_244" : [ - "NC_008194" - ], - "Banana_bunchy_top_virus__IG33" : [ - "AB186927", - "AB186924" - ], - "Enterobacteria_phage_UAB_Phi78" : [ - "NC_020414" - ], - "Beak_and_feather_disease_virus__NC108" : [ - "JX049197" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_O9B_2005" : [ - "JQ319165" - ], - "Hepatitis_B_virus__TP49" : [ - "KF192841" - ], - "Measles_virus_strain_MVi_Pennsylvania_USA_20_09_MVi_Pennsylvania_USA_20_09" : [ - "JN635411" - ], - "Koala_retrovirus__Pci_SN265" : [ - "KF786285" - ], - "Canine_parvovirus_2a__UY243" : [ - "KM457102" - ], - "Human_immunodeficiency_virus_1__I5p21" : [ - "HM469981" - ], - "Hepatitis_B_virus__dxn1017" : [ - "KC774470" - ], - "Hepatitis_B_virus__HBV_I_123_HIV_HBV" : [ - "KM524356" - ], - "Human_papillomavirus_type_18__Rw830" : [ - "KC470220" - ], - "Japanese_encephalitis_virus_JaOS75672" : [ - "AB569982" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7086_2006" : [ - "KJ189297" - ], - "Chicken_anemia_virus_GD_L_12" : [ - "KF224936" - ], - "Simian_adenovirus_41_1" : [ - "FJ025913" - ], - "Hepatitis_C_virus_subtype_1a__01L" : [ - "EU781796" - ], - "Soybean_mosaic_virus__WS160" : [ - "FJ640972" - ], - "Porcine_circovirus_2_YZXH1203" : [ - "KC823057" - ], - "Hepatitis_B_virus__SSC115" : [ - "KJ598694" - ], - "Sweet_potato_leaf_curl_virus_USA_SPLCV_US_BR_OPO_08" : [ - "HQ393453" - ], - "Watermelon_chlorotic_stunt_virus__Als_3" : [ - "JN618983" - ], - "Banana_bunchy_top_virus__Haikou" : [ - "FJ463047", - "FJ463042", - "FJ463044", - "FJ463045", - "FJ463043", - "FJ463046" - ], - "Hepatitis_B_virus__FEN72" : [ - "JF440009" - ], - "Grapevine_Syrah_virus_1" : [ - "NC_012484" - ], - "Broad_bean_wilt_virus_2__BB5" : [ - "KC625493", - "KC625507" - ], - "Newcastle_disease_virus__ndv20_Navli_03_2013" : [ - "KM056345" - ], - "Hepatitis_B_virus_29134" : [ - "FN545822" - ], - "Hepatitis_B_virus__7703_01467" : [ - "JN792915" - ], - "Tick_borne_encephalitis_virus_Primorye_86" : [ - "EU816455" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2267_2008" : [ - "FJ639826" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HN2007" : [ - "EU880437" - ], - "Cucumber_mosaic_virus_N" : [ - "MCVCMVA" - ], - "Hepatitis_E_virus__JYN_Shiz08L" : [ - "AB521806" - ], - "Hepatitis_B_virus__HBV19" : [ - "KC875321" - ], - "Penaeus_monodon_hepandensovirus_4" : [ - "NC_011545" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PK_74d_2008" : [ - "HM748929" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V506_2002" : [ - "EU482836" - ], - "Maize_streak_virus__UJin_219" : [ - "EF547111" - ], - "Hepatitis_B_virus__S193_1" : [ - "FJ032331" - ], - "Chilli_leaf_curl_virus__CL_14" : [ - "JN555601" - ], - "Pandoraea_RB_44" : [ - "NC_023018" - ], - "Avian_paramyxovirus_4__APMV_4_Egyptian_goose_South_Africa_N1468_2010" : [ - "JX133079" - ], - "Enterococcus_faecium_NRRL_B_2354" : [ - "NC_020207", - "NC_020208" - ], - "Thermus_phage_P7426" : [ - "NC_009804" - ], - "Porcine_circovirus_2__V0522" : [ - "KJ128270" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI40_12" : [ - "HE979770" - ], - "Hepatitis_B_virus__H59" : [ - "FJ349213" - ], - "Watermelon_chlorotic_stunt_virus__JO1_12" : [ - "KM820199" - ], - "Human_papillomavirus_type_6__4" : [ - "HG793812" - ], - "Gloeobacter_JS" : [ - "NC_022600" - ], - "West_Nile_virus__WNV_1_US_BID_V6568_2001" : [ - "KJ501363" - ], - "Hepatitis_B_virus__D_NZL_AD05_1984" : [ - "HQ700440" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1995_2003" : [ - "FJ639680" - ], - "Hepatitis_B_virus__AK1_1" : [ - "AY721605" - ], - "Pectobacterium_SCC3193" : [ - "NC_017845" - ], - "Hepatitis_B_virus__TK105" : [ - "JF754597" - ], - "Enterobacteria_phage_T7__P82" : [ - "AY264778" - ], - "Dengue_virus_2__DC848Y12" : [ - "KM279570" - ], - "Micromonas_pusilla_virus_12T_12T" : [ - "NC_020864" - ], - "Human_papillomavirus_type_6__36" : [ - "HG793844" - ], - "Hepatitis_B_virus__E3_12" : [ - "GU815701" - ], - "Human_poliovirus_3_NIE1118496" : [ - "KJ170614" - ], - "Equine_arteritis_virus_HK25" : [ - "EU586273" - ], - "Usutu_virus_V297" : [ - "KJ438754" - ], - "Enterovirus_B82_USA_CA64_10390" : [ - "AY843300" - ], - "Rabbit_hemorrhagic_disease_virus__HYD" : [ - "JF412629" - ], - "Dengue_virus_3__DENV_3_US_BID_V1466_1999" : [ - "EU687226" - ], - "Sida_golden_yellow_vein_virus__A11___DNA_AII" : [ - "SGU77964" - ], - "Human_immunodeficiency_virus_1__03GH181AG" : [ - "AB286856", - "AB286855" - ], - "Burkholderia_pseudomallei_1710b" : [ - "NC_007435", - "NC_007434" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota9A" : [ - "KP283408" - ], - "Turnip_mosaic_virus__GBR32" : [ - "AB701714" - ], - "Dengue_virus_2_Cuba13_97" : [ - "AY702034" - ], - "Aeromonas_hydrophila_ATCC_7966" : [ - "NC_008570" - ], - "Cucumber_mosaic_virus_Hnt" : [ - "KC407999" - ], - "Temperate_fruit_decay_associated_virus__MFB24" : [ - "KR134322" - ], - "Hepatitis_C_virus_subtype_1a__F7106" : [ - "EU781764" - ], - "Dengue_virus_3__MKS_0396" : [ - "KC762687" - ], - "Dengue_virus_2_Cuba165_97" : [ - "AY702038" - ], - "Wheat_dwarf_virus_wheat_strain_Leutewitz" : [ - "HG422310", - "HG422311" - ], - "Human_papillomavirus_type_59__Qv23880" : [ - "KC470263" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V16_2004" : [ - "EU256039" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_La_Digue_SC03AK1_2009" : [ - "JF909153" - ], - "Duck_hepatitis_B_virus_DHBV_xz_1" : [ - "HM043822" - ], - "Hepatitis_B_virus__C1_11" : [ - "GU815616" - ], - "Tomato_leaf_curl_New_Delhi_virus__ToLCND_CTM" : [ - "DQ629102" - ], - "West_Nile_virus__WNV_1_US_BID_V6446_2002" : [ - "KJ501303" - ], - "Tomato_leaf_curl_New_Delhi_virus__ToLCNDV__PK_Mul_06" : [ - "HQ658479" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_235" : [ - "JQ765570" - ], - "Nilaparvata_lugens_reovirus__izumo_local_population" : [ - "NC_003652" - ], - "Potato_yellow_mosaic_virus__Venezuela" : [ - "NC_001935", - "NC_001934" - ], - "Human_adenovirus_21_NHRC_63218" : [ - "KJ364575" - ], - "Toscana_virus_TOSV_Siena_ITA_1993_2" : [ - "KM275775" - ], - "Hepatitis_B_virus__JFA4364" : [ - "KF779280" - ], - "Xylella_fastidiosa_M23" : [ - "NC_010577", - "NC_010579" - ], - "Porcine_circovirus_2__26607" : [ - "AF264039" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Must_alpha_E3F7" : [ - "EU384634" - ], - "African_cassava_mosaic_virus__CF_CF42AB_07" : [ - "KJ887772" - ], - "Human_immunodeficiency_virus_1__5084_83" : [ - "AY835754" - ], - "Bean_golden_mosaic_virus__BR_Mur10_11" : [ - "KJ939763" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__J8_2" : [ - "GU723740" - ], - "Synechococcus_PCC_6312" : [ - "NC_019681", - "NC_019680" - ], - "Turnip_curly_top_virus__IR_Hom3_4k_09" : [ - "GU456688" - ], - "Hepatitis_B_virus__D2_7" : [ - "GU815664" - ], - "Hepatitis_B_virus__919040" : [ - "JN040787" - ], - "South_African_cassava_mosaic_virus__MG_MG233I1_10" : [ - "KJ887958" - ], - "Leishmania_RNA_virus_1___1" : [ - "NC_002063" - ], - "Maize_streak_virus__MSV_A_ZA_Har_M11_1989" : [ - "HQ693413" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4816_2009" : [ - "HM756279" - ], - "SIVcpz_Ptt_09Cam155__Ptt_09Cam155" : [ - "FR686511" - ], - "Hepatitis_B_virus__clz2153" : [ - "KC774221" - ], - "Hepatitis_B_virus__PG_66" : [ - "KF471641" - ], - "Bacillus_phage_Gamma_isolate_d_Herelle" : [ - "DQ289556" - ], - "Human_bocavirus__TW2953_06" : [ - "EU984238" - ], - "Hepatitis_B_virus__D_Tonga_Ng_1992" : [ - "HQ700503" - ], - "Hepatitis_B_virus__CHI2" : [ - "FJ709458" - ], - "West_Nile_virus__WNV_1_US_BID_V6374_2001" : [ - "KJ501264" - ], - "Human_immunodeficiency_virus_1__09YNYJ217010sg" : [ - "KC899013" - ], - "Clostridium_perfringens_13" : [ - "NC_003366", - "NC_003042" - ], - "Duck_circovirus__DU103" : [ - "HM162352" - ], - "Deerpox_virus_W_848_83__W_848_83" : [ - "NC_006966" - ], - "Echovirus_E3_OC10_487" : [ - "AB647319" - ], - "Hepatitis_B_virus__D_PNG_P054PF_2004" : [ - "HQ700525" - ], - "Human_rhinovirus_A54_ATCC_VR_1164" : [ - "FJ445138" - ], - "Lactobacillus_salivarius_CECT_5713" : [ - "NC_017480", - "NC_017481", - "NC_017479", - "NC_017499" - ], - "Maize_streak_virus__MSV_A_ZM_Chi6_Z10_2008" : [ - "HQ693457" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL141A" : [ - "AB985565" - ], - "Pasivirus_A_swine_Zsana1_2013_HUN" : [ - "KM259923" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_LIBR10053" : [ - "KR006963" - ], - "Porcine_circovirus_2__GBD20131003" : [ - "KP824713" - ], - "Brucella_microti_CCM_4915" : [ - "NC_013119", - "NC_013118" - ], - "South_African_cassava_mosaic_virus__MG_MG560A1_11" : [ - "KJ888039" - ], - "Hepatitis_B_virus__C3_1" : [ - "GU815637" - ], - "Plantago_asiatica_mosaic_virus_Li5" : [ - "AB360794" - ], - "Salmonella_phage_STP4_a" : [ - "NC_026607" - ], - "Candidatus_Carsonella_ruddii_HT_isolate_Thao2000" : [ - "NC_018417" - ], - "Hepatitis_B_virus__KOR26LC" : [ - "GQ475330" - ], - "Microbacterium_testaceum_StLB037" : [ - "NC_015125" - ], - "Human_immunodeficiency_virus_1__R84" : [ - "FJ647145" - ], - "Acidovorax_citrulli_AAC00_1" : [ - "NC_008752" - ], - "West_Nile_virus__WNV_1_US_BID_V7422_2008" : [ - "KJ501133" - ], - "Hepatitis_B_virus__Vb" : [ - "AY167101" - ], - "Amycolatopsis_mediterranei_S699" : [ - "NC_017186" - ], - "Dengue_virus_2__DENV_2_VN_BID_V930_2007" : [ - "EU482475" - ], - "Porcine_circovirus_2_PCV2_herd_C" : [ - "EU136719" - ], - "Norovirus_Hu_GII_20171_2009_VNM_Hu_GII_20171_2009_VNM" : [ - "KC409261" - ], - "Beet_curly_top_Iran_virus__IR_Kam_B24K_Sug_08" : [ - "JQ707943" - ], - "Haemophilus_parasuis_SH0165" : [ - "NC_011852" - ], - "Rhinovirus_C__1515_MY_10" : [ - "KF734978" - ], - "Ralstonia_phage_RSL1" : [ - "NC_010811" - ], - "Porcine_circovirus_2__GRE_WB2" : [ - "DQ915584" - ], - "Dengue_virus_2__DENV_2_NI_BID_V4650_2007" : [ - "JF357907" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_4___strain_IbAr_33853__IbAr_33853_NIG1968_01" : [ - "AM745020", - "AM745022", - "AM745017", - "AM745024", - "AM745026", - "AM745021", - "AM745023", - "AM745019", - "AM745018", - "AM745025" - ], - "Hepatitis_B_virus__patient_B__7_98" : [ - "AY738146", - "AY738144", - "AY738145" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2198_2001" : [ - "FJ639768" - ], - "Coxsackievirus_A2_Fleetwood_CA2" : [ - "AY421760" - ], - "Enterobacteria_phage_L17" : [ - "AY848684" - ], - "Mycobacterium_tuberculosis_KZN_605" : [ - "NC_018078" - ], - "Dengue_virus_3__DENV_3_US_BID_V1737_1999" : [ - "FJ390377" - ], - "Enterobacteria_phage_RB33" : [ - "KM607001" - ], - "Watermelon_mosaic_virus__FMF03_141" : [ - "EU660583" - ], - "Hepatitis_B_virus_1385_5" : [ - "KR014058" - ], - "Tomato_severe_rugose_virus__BR_Vic29_10" : [ - "JX865642" - ], - "Monkeypox_virus__Sierra_Leone" : [ - "AY741551" - ], - "Hepatitis_B_virus__HK430" : [ - "DQ089769" - ], - "Chickpea_chlorotic_dwarf_virus__A_Q2510" : [ - "KC172655" - ], - "Hepatitis_B_virus__HBV59" : [ - "KC875324" - ], - "Astrovirus_Er_SZAL6_HUN_2011_Er_SZAL6_HUN_2011" : [ - "NC_027426" - ], - "Human_immunodeficiency_virus_1__03ZAPS056MB1" : [ - "DQ396374" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_110851" : [ - "KP118884" - ], - "Black_grass_varicosavirus_like_virus" : [ - "NC_026801", - "NC_026798" - ], - "Ilheus_virus_BrMS_MQ10" : [ - "KC481679" - ], - "Chikungunya_virus_Yap_13_2148" : [ - "KJ689453" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1676_2007" : [ - "FJ024455" - ], - "Human_poliovirus_2_NIE1218419" : [ - "KJ170575" - ], - "Enterovirus_A71__Puyang_461_2012" : [ - "KM211580" - ], - "Enterovirus_A71_AFP2001071_EV71_GX_CHN_2001" : [ - "JQ742002" - ], - "Mamastrovirus_10" : [ - "NC_004579" - ], - "Dengue_virus_1__DENV_1_US_BID_V2096_1993" : [ - "FJ562105" - ], - "Cucumber_mosaic_virus_ALS_NAK" : [ - "AJ304395" - ], - "Tobacco_curly_shoot_alphasatellite__Y216" : [ - "FN678901" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2009_2007" : [ - "KF955440" - ], - "Human_immunodeficiency_virus_1_subtype_B_GB8__CLONE_46R" : [ - "AJ271445" - ], - "Porcine_circovirus_2__JSC" : [ - "DQ104419" - ], - "Dengue_virus_2__DENV_2_US_BID_V1035_2006" : [ - "EU482548" - ], - "Wheat_dwarf_virus__SA45EcoFL38" : [ - "AM922260" - ], - "Human_immunodeficiency_virus_1__C_ZA_J38MA" : [ - "AY463228" - ], - "Rickettsia_felis_URRWXCal2" : [ - "NC_007111", - "NC_007109", - "NC_007110" - ], - "Hepatitis_B_virus__490_01_3" : [ - "EU871988" - ], - "Pedilanthus_leaf_curl_virus__Cestrum_nocturnum" : [ - "JQ012790" - ], - "Junin_mammarenavirus_P3790" : [ - "JN714130", - "JN714129", - "DQ854739" - ], - "Dengue_virus_2__DENV_2_VN_BID_V924_2006" : [ - "EU482469" - ], - "Candidatus_Ruthia_magnifica_Cm__Calyptogena_magnifica" : [ - "NC_008610" - ], - "Hepatitis_B_virus__ES71_2" : [ - "JF828922" - ], - "Dengue_virus_1_D1_SG_05K4605DK1_2005" : [ - "EU081272" - ], - "Okra_leaf_curl_Cameroon_virus__pGRec17F" : [ - "NC_014745" - ], - "Infectious_bronchitis_virus_ck_CH_LHLJ_091205" : [ - "KJ425504" - ], - "Digitaria_streak_virus" : [ - "NC_001478" - ], - "Maize_streak_virus__MSV_A_RE_Pie2_Mic16_1995" : [ - "HQ693394" - ], - "Hepatitis_B_virus__MY761182" : [ - "KJ803761" - ], - "Heliobacterium_modesticaldum_Ice1" : [ - "NC_010337" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d2ym5" : [ - "HQ890530" - ], - "Wheat_yellow_mosaic_virus__Nagano_B" : [ - "AB948223", - "AB948222" - ], - "Human_papillomavirus_type_74" : [ - "AF436130" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_23_A" : [ - "KC106640" - ], - "Human_immunodeficiency_virus_1__03ZASK023B2" : [ - "AY772690" - ], - "Hepatitis_B_virus__BR6" : [ - "KP090179" - ], - "Bean_common_mosaic_virus__DXH023" : [ - "KJ807810" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_1992_PRRS_111_92" : [ - "KC862566" - ], - "Norovirus_Hu_GII_4_Chiba5_2008_JP_Hu_GII_4_Chiba5_2008_JP" : [ - "AB541235" - ], - "Sweet_potato_leaf_curl_virus_USA_SPLCV_US_BR_CA2_08" : [ - "HQ393446" - ], - "SARS_coronavirus_MA15_MA15_d3om4" : [ - "JF292919" - ], - "Dengue_virus_2__MD1273" : [ - "FM210240" - ], - "Porcine_circovirus_2__BL12" : [ - "KJ680369" - ], - "Dengue_virus_3__DENV_3_NI_BID_V2934_2008" : [ - "FJ898476" - ], - "JC_polyomavirus__JCV161FLC_38" : [ - "JF424945" - ], - "Sweet_potato_leaf_curl_virus__Haenam_618_2" : [ - "HM754640" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8435_2001" : [ - "KJ627685" - ], - "Bluetongue_virus__BT1_2172" : [ - "AY426598" - ], - "Epizootic_hemorrhagic_disease_virus_2__600038" : [ - "EHDSEG2C" - ], - "Sida_micrantha_mosaic_virus_Santaremensis_SiMMV_Santaremensis_BR_780Si4b_08" : [ - "JX415195" - ], - "Papaya_ringspot_virus_W_PRSV_W_C" : [ - "DQ374152" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1540_2007" : [ - "EU677140" - ], - "Hepatitis_B_virus__TK173" : [ - "JF754599" - ], - "Enterobacterio_phage_MS2__DL52" : [ - "JQ966307" - ], - "Chickpea_chlorotic_dwarf_virus__D39" : [ - "JX183063" - ], - "Cocksfoot_mild_mosaic_virus__Scotland" : [ - "NC_011108" - ], - "Rabies_virus__SM5101" : [ - "JQ685958" - ], - "Rift_Valley_fever_virus_Entebbe" : [ - "DQ375429", - "DQ380156", - "DQ380191" - ], - "Hepatitis_B_virus__D_Tonga_BB6995_2000" : [ - "HQ700581" - ], - "Human_immunodeficiency_virus_1__G2p21" : [ - "HM469977" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH22_2011" : [ - "KM188447" - ], - "Norovirus_Hu_GII_4_CGMH16_2007_TW" : [ - "JN400614" - ], - "Youcai_mosaic_virus__Br" : [ - "JN634066" - ], - "Hepatitis_B_virus__QHN_57" : [ - "HM750131" - ], - "Cauliflower_mosaic_virus__Xinjiang" : [ - "AF140604" - ], - "Beet_western_yellows_virus_BWYV_Ashoro" : [ - "AB903038" - ], - "Enterovirus_A71_IM11" : [ - "KM673244" - ], - "Hepatitis_B_virus__GRE3643NN" : [ - "AB302945" - ], - "West_Nile_virus_Italy_2013_Mantova_36_1" : [ - "KP789960" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2810_2007" : [ - "GQ199821" - ], - "Duvenhage_virus__86132SA" : [ - "NC_020810" - ], - "Hepatitis_B_virus__8142" : [ - "KJ470898" - ], - "Human_rhinovirus_A30_ATCC_VR_1140" : [ - "FJ445179" - ], - "St__Louis_encephalitis_virus_Palenque_C475" : [ - "JQ957868" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_210_2011" : [ - "KJ686231" - ], - "Lactobacillus_prophage_Lj928" : [ - "NC_005354" - ], - "Hepatitis_B_virus__Leb60" : [ - "JN642164" - ], - "Columbid_circovirus__US_93A" : [ - "DQ915961" - ], - "African_cassava_mosaic_virus__MG_MG23A1_06" : [ - "KJ887843" - ], - "Dragonfly_associated_microphage_1__FL1_NZ54_2010" : [ - "NC_018862" - ], - "Hepatitis_B_virus_258_7a" : [ - "KR013768" - ], - "Hepatitis_B_virus__7983" : [ - "U87742" - ], - "Bean_common_mosaic_necrosis_virus_NL5" : [ - "HQ229993" - ], - "Maize_streak_virus__MSV_A_CF_Bang2_Car40_2008" : [ - "HQ693297" - ], - "Human_poliovirus_1_NIE1118407" : [ - "KJ170457" - ], - "Turnip_yellow_mosaic_virus__DSMZ_PV_0299" : [ - "KJ690173" - ], - "Hepatitis_B_virus__C24" : [ - "EU939540" - ], - "Hepatitis_B_virus__C232" : [ - "EU939674" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V331_2002" : [ - "EU155295" - ], - "Acholeplasma_brassicae" : [ - "NC_022549" - ], - "Hepatitis_B_virus__CX003C_e204" : [ - "KJ173341" - ], - "Dengue_virus_4__DENV_4_IND_793679_1979" : [ - "JQ922559" - ], - "Rift_Valley_fever_virus_Sudan_30_2010" : [ - "JQ820481" - ], - "Rabies_virus__MEXSK13938" : [ - "JQ685954" - ], - "Squash_leaf_curl_virus__JO1_133" : [ - "KM595157" - ], - "Hepatitis_B_virus__MMA_13" : [ - "AM421541" - ], - "Sphaeropsis_sapinea_RNA_virus_2" : [ - "NC_001964" - ], - "Mokola_virus__RV1017" : [ - "KF155007" - ], - "Hepatitis_B_virus__179_04_3" : [ - "EU871976" - ], - "Hepatitis_B_virus__Ag62" : [ - "KJ843217" - ], - "Human_immunodeficiency_virus_1__03ZASK213B1" : [ - "DQ093607" - ], - "Hepatitis_C_virus__QC329" : [ - "KJ439773" - ], - "Xenorhabdus_nematophila_ATCC_19061" : [ - "NC_014170", - "NC_014228" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2764_2007" : [ - "GQ199788" - ], - "Coxsackievirus_B3_GA" : [ - "AY673831" - ], - "Dengue_virus_4_H773583_DENV_4_ROR7465" : [ - "JQ513332" - ], - "Rotavirus_G9_US1212" : [ - "AJ250272" - ], - "Okra_yellow_mosaic_Mexico_virus____Herissantia_Colima_1__Colima_1" : [ - "JX219473" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1892_2007" : [ - "FJ461327" - ], - "Listeria_phage_List_36_List_36" : [ - "NC_024364" - ], - "Japanese_encephalitis_virus_1070_82__Subin" : [ - "GQ902059" - ], - "Duck_hepatitis_B_virus_DHBV_JZ_Henan_jiaozuo" : [ - "HQ328779" - ], - "Bovine_viral_diarrhea_virus_2__JZ05_1" : [ - "GQ888686" - ], - "Acetobacter_pasteurianus_386B" : [ - "NC_021979", - "NC_021976", - "NC_021977", - "NC_021991", - "NC_021993", - "NC_021978", - "NC_021992" - ], - "West_Nile_virus__WNV_1_US_BID_V4887_2005" : [ - "HQ671726" - ], - "Mycoplasma_gallisepticum_NY01_2001_047_5_1P" : [ - "NC_018409" - ], - "Hepatitis_B_virus__V3" : [ - "HM363573" - ], - "Hepatitis_E_virus__JE03_1760F_p10" : [ - "AB362843" - ], - "Bluetongue_virus_19__25_2" : [ - "JX272438" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3788" : [ - "KM233075" - ], - "Seoul_virus_Cherwell" : [ - "KM948593", - "KM948594" - ], - "South_African_cassava_mosaic_virus__MG_MG335A1_10" : [ - "KJ887697" - ], - "Saffold_virus_JPN08_404_mouse_adapted" : [ - "AB983595" - ], - "Sewage_associated_gemycircularvirus_10b__BS3849" : [ - "KJ547645" - ], - "Avian_leukosis_virus__ALV_J_MRL905" : [ - "JF951728" - ], - "Areca_palm_velarivirus_1__APV1_HN" : [ - "NC_027121" - ], - "Classical_swine_fever_virus_94_4_IL_94_TWN" : [ - "AY646427" - ], - "BK_polyomavirus__MT_clone_87" : [ - "AB485707" - ], - "Chikungunya_virus__CU_Chik10" : [ - "GU301780" - ], - "Dengue_virus_3__DENV_3_US_BID_V2107_2000" : [ - "FJ547073" - ], - "Rubella_virus_RA_27_3" : [ - "JF727653", - "JF727654" - ], - "Rickettsia_canadensis_McKiel" : [ - "NC_009879" - ], - "Hepatitis_C_virus__6_VN110" : [ - "KJ567645" - ], - "Tomato_severe_rugose_virus__BR_Car219_10_08" : [ - "KC004077" - ], - "Hepatitis_B_virus__CAR083" : [ - "AM494700" - ], - "Rhodospirillum_rubrum_F11" : [ - "NC_017584" - ], - "Sweet_potato_virus_G__Jesus_Maria" : [ - "NC_018093" - ], - "syncytium_symbiont_of_Diaphorina_citri" : [ - "NC_021885", - "NC_021886" - ], - "Prune_dwarf_virus" : [ - "NC_008037" - ], - "Human_herpesvirus_1_H129" : [ - "GU734772" - ], - "Malvastrum_yellow_vein_betasatellite__Y200" : [ - "AJ971697" - ], - "Newcastle_disease_virus__duck_China_Guangxi16_2008" : [ - "JX193077" - ], - "Hepatitis_B_virus__PNF5383" : [ - "KF779366" - ], - "Potato_virus_X_X3" : [ - "NC_011620" - ], - "Tomato_leaf_curl_China_betasatellite__Y88" : [ - "AJ457819" - ], - "Roundleaf_bat_hepatitis_B_virus__RBHBV_GB09_303_Hip_rub_GAB_2009" : [ - "KC790376" - ], - "Sida_golden_mosaic_Florida_virus_USA__DNA_AI" : [ - "SGU77963" - ], - "Human_coronavirus_HKU1" : [ - "AY884001" - ], - "Hepatitis_B_virus__10B16" : [ - "AB675678" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9309_2010" : [ - "KJ627329" - ], - "Human_immunodeficiency_virus_1__R77" : [ - "AY586544" - ], - "Potato_virus_Y__Foggia" : [ - "EU482153" - ], - "Tomato_golden_leaf_spot_virus__TO83_Araguaina" : [ - "NC_021579" - ], - "Rubella_virus_RVi_Brooklyn_NY_USA_98_1B_CRS" : [ - "JN635282" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4014_2008" : [ - "GU131776" - ], - "Microviridae_phi_CA82_CA82" : [ - "NC_015785" - ], - "Bean_yellow_mosaic_virus__BYMV_SW9" : [ - "KF632713" - ], - "Vibrio_phage_vB_VchM_138__HER52" : [ - "NC_019518" - ], - "Cymbidium_mosaic_virus__1" : [ - "EF125178" - ], - "Wheat_dwarf_virus__HUNGARY_MO10_2" : [ - "JQ647468" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0110" : [ - "KP759660" - ], - "Porcine_circovirus_2__HB05" : [ - "FJ644561" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5000_brain" : [ - "HQ671732" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3863_2008" : [ - "GU131698" - ], - "Hepatitis_B_virus__G222" : [ - "JQ040165" - ], - "Hepatitis_B_virus__S8_2" : [ - "EU916231" - ], - "Apricot_latent_virus__Caserta_12" : [ - "HQ339959" - ], - "Andes_virus_Chile_9717869" : [ - "NC_003466", - "NC_003468", - "NC_003467" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD266_2013" : [ - "KM229890" - ], - "Hepatitis_B_virus__N16_V_FY137C" : [ - "KJ173415" - ], - "Potato_virus_Y_N" : [ - "PVYAAA" - ], - "Plum_pox_virus_PPV_D_Ou9" : [ - "AB576065" - ], - "Human_poliovirus_2_NIE1018420" : [ - "KJ170533" - ], - "Alteromonas_macleodii_AltDE1" : [ - "NC_019393", - "NC_019394" - ], - "Gallid_herpesvirus_3_HPRS24" : [ - "NC_002577" - ], - "Turkey_gallivirus_turkey_M176_2011_HUN" : [ - "NC_018400" - ], - "Human_mastadenovirus_C_human_USA_VT2612_2003_1_P1H1F1" : [ - "JX173085" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V144_2002" : [ - "EU256001" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1120" : [ - "KR534535" - ], - "JC_polyomavirus__JCV161FLC_10" : [ - "JF424918" - ], - "Toscana_virus__SI_40614" : [ - "EU003177" - ], - "Bean_common_mosaic_virus__CD030" : [ - "KM051429" - ], - "Hepatitis_B_virus__JFA4314" : [ - "KF779276" - ], - "West_Nile_virus__M37906" : [ - "JF415923" - ], - "Human_papillomavirus_type_16__LZcc11_16" : [ - "EU918764" - ], - "Human_parvovirus_B19__NAN" : [ - "AY504945" - ], - "Porcine_circovirus_2_SD_09" : [ - "GQ449669" - ], - "Simian_immunodeficiency_virus__Mm251" : [ - "SIVMM251" - ], - "Anomala_cuprea_entomopoxvirus_CV6M" : [ - "NC_023426" - ], - "Human_papillomavirus_type_6__2" : [ - "HG793810" - ], - "Hepatitis_B_virus__CONTROL15" : [ - "JQ801507" - ], - "Rotavirus_A_RVA_Simian_tc_ZAF_SA11_H96_1958_G3P5B_2" : [ - "NC_011501", - "NC_011503", - "NC_011507", - "NC_011508", - "NC_011500", - "NC_011506", - "NC_011510", - "NC_011509", - "NC_011502", - "NC_011505", - "NC_011504" - ], - "Maize_streak_virus__MSV_A_MZ_Chi3_Moz13_2007" : [ - "HQ693344" - ], - "Maize_streak_virus__MSV_A_NG_Iba2_N22_2007" : [ - "HQ693376" - ], - "Hepatitis_B_virus__HBV60" : [ - "KC875325" - ], - "Canine_parvovirus_2a__UY315" : [ - "KM457136" - ], - "Sweet_potato_leaf_curl_Canary_virus__ES_CI_BG7_02" : [ - "EF456745" - ], - "Arabis_mosaic_virus__Neustadt_an_der_Weinstrasse__NW" : [ - "NC_006057" - ], - "Hepatitis_B_virus__C1_10" : [ - "GU815615" - ], - "Human_herpesvirus_5_JHC" : [ - "HQ380895" - ], - "Monkeypox_virus_COP_58" : [ - "AY753185" - ], - "Dengue_virus_2__DF907" : [ - "FM210211" - ], - "Simian_rotavirus_A_SA11_simian" : [ - "X16062" - ], - "Equine_arteritis_virus_Bucyrus__ATCC_VR_796" : [ - "DQ846750" - ], - "Hepatitis_B_virus__FH008M_e47" : [ - "KJ173298" - ], - "Mammalian_orthoreovirus_3" : [ - "REOMCPL1A", - "NC_004275", - "REOS2", - "NC_004279", - "NC_004280", - "NC_004277", - "NC_004278", - "NC_004281", - "NC_004276" - ], - "West_Nile_virus__WNV_1_US_BID_V4559_2007" : [ - "HM488254" - ], - "Hepatitis_B_virus__HBV137" : [ - "JN688703" - ], - "Dengue_virus_2__FGU_Jan2_06" : [ - "EU920845" - ], - "Hepatitis_B_virus__C131" : [ - "EU939591" - ], - "Eggerthella_lenta_DSM_2243" : [ - "NC_013204" - ], - "Tomato_yellow_spot_virus__BR_Jai56_1_08" : [ - "KC706628" - ], - "Cucumber_mosaic_virus_satellite_RNA_FG" : [ - "X89004" - ], - "Ipomoea_yellow_vein_virus__ES_MAL_IG5_06" : [ - "EU839578" - ], - "Cyclovirus_PKbeef23_PAK_2009__PKbeef23" : [ - "HQ738634" - ], - "Aliivibrio_salmonicida_LFI1238" : [ - "NC_011313", - "NC_011314", - "NC_011316", - "NC_011312", - "NC_011315", - "NC_011311" - ], - "Porcine_circovirus_2__PCV2C53" : [ - "GU083583" - ], - "Hepatitis_B_virus__I127" : [ - "FJ562273" - ], - "Human_immunodeficiency_virus_1__A050" : [ - "AF408631" - ], - "Chikungunya_virus_Gibbs_63_263" : [ - "HM045813" - ], - "Enterovirus_A71_804_NO_03" : [ - "DQ452074" - ], - "Maize_streak_virus__UKib_182" : [ - "EF547106" - ], - "Human_immunodeficiency_virus_1__1018_06" : [ - "AY331289" - ], - "Porcine_circovirus_1_NJ03" : [ - "JX566507" - ], - "Tomato_yellow_leaf_curl_virus__SD_WF14" : [ - "KM435326" - ], - "Sugarcane_mosaic_virus__ARG_915" : [ - "JX237863" - ], - "Maguari_virus" : [ - "AY286443" - ], - "Human_poliovirus_3_NIE1018453" : [ - "KJ170677" - ], - "Hepatitis_B_virus__PNF4999" : [ - "KF779349" - ], - "Enterobacteria_phage_Qbeta_BR12" : [ - "FJ483842" - ], - "Pepper_yellow_leaf_curl_Indonesia_virus" : [ - "NC_008283", - "NC_008284" - ], - "Dengue_virus_2_VE_61082_2007" : [ - "HQ332185" - ], - "Hepatitis_B_virus__TK145" : [ - "JF754613" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_3" : [ - "JQ647456" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dav_alpha_21" : [ - "EU384629" - ], - "Duck_coronavirus__DK_GD_27_2014" : [ - "KM454473" - ], - "Cotton_leaf_curl_Burewala_virus__C_58" : [ - "HF549184" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C86" : [ - "KJ019055" - ], - "Human_adenovirus_7_human_CHN_DG01_2011_7_P7H7F7" : [ - "KC440171" - ], - "Hepatitis_B_virus__HBV_HK38" : [ - "AB073829" - ], - "Human_respiratory_syncytial_virus__05_000257" : [ - "JX015485" - ], - "Swine_hepatitis_E_virus__swJB_M8" : [ - "AB481228" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2808_2007" : [ - "GQ199820" - ], - "Mycobacterium_marinum_M" : [ - "NC_010612", - "NC_010604" - ], - "Hepatitis_B_virus__Ag12" : [ - "KJ843174" - ], - "Hepatitis_B_virus__N6" : [ - "KJ790199" - ], - "Pseudomonas_phage_119X" : [ - "NC_007807" - ], - "Sapovirus_Po_OH_JJ681_2000_US__Po_OH_JJ681_2000_US" : [ - "AY974192" - ], - "Crimean_Congo_hemorrhagic_fever_virus_30908" : [ - "AY675240" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4994_1" : [ - "KR105289" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d4ym1" : [ - "HQ890531" - ], - "Geobacillus_HH01" : [ - "NC_020210" - ], - "Dengue_virus_3__PF92_2986" : [ - "AY744683" - ], - "Porcine_circovirus_2__DE138_13" : [ - "KP698397" - ], - "Human_immunodeficiency_virus_1__ZM247F_flH1" : [ - "FJ496207" - ], - "Chikungunya_virus_6441_88" : [ - "HM045789" - ], - "Dehalococcoides_mccartyi_BTF08" : [ - "NC_020387" - ], - "Mycobacterium_phage_ArcherS7" : [ - "NC_021348" - ], - "BK_polyomavirus__ANY_63" : [ - "AB464963" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_114_2012" : [ - "KJ686205" - ], - "Norovirus_Hu_GII_4_Hiroshima2_2006_JP_Hu_GII_4_Hiroshima2_2006_JP" : [ - "AB447452" - ], - "Foot_and_mouth_disease_virus___type_A_Aarg2001_a_general_lopez_iso102" : [ - "AY593790" - ], - "Feline_cyclovirus" : [ - "NC_024700" - ], - "Epizootic_hemorrhagic_disease_virus_2__600042" : [ - "EHDSEG2E" - ], - "Porcine_epidemic_diarrhea_virus__ISU13_22038_IA_passage9" : [ - "KF650375" - ], - "Mastomys_coucha_papillomavirus_2__Mastomys_coucha" : [ - "NC_008519" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HP_PRRSV" : [ - "KJ546412" - ], - "JC_polyomavirus__ZA_2" : [ - "AB127027" - ], - "Deltacoronavirus_PDCoV_USA_Illinois136_2014_PDCoV_USA_Illinois136_2014" : [ - "KJ601779" - ], - "Human_papillomavirus_type_16__Rw768" : [ - "HQ644290" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_97E_101_01_1997" : [ - "KP258727" - ], - "Radish_leaf_curl_virus__Sikar_GD2" : [ - "KF218188" - ], - "Newcastle_disease_virus_Italien" : [ - "EU293914" - ], - "Chlamydia_trachomatis_L2b_8200_07" : [ - "NC_020945", - "NC_020984" - ], - "Hepatitis_delta_virus_dTk6_dTk6" : [ - "AM779585" - ], - "Dengue_virus_1__DENV_1_VN_BID_V827_2006" : [ - "EU482821" - ], - "Radish_leaf_curl_betasatellite__Varanasi" : [ - "NC_010239" - ], - "Tsukamurella_phage_TPA2" : [ - "NC_015210" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA39" : [ - "KF670658" - ], - "Human_bocavirus__TW125_07" : [ - "EU984241" - ], - "Bluetongue_virus__BTV_16_RSArrrr_16__S_5" : [ - "AM773707" - ], - "Mungbean_yellow_mosaic_virus" : [ - "FM242702", - "KC911717", - "KC911722", - "FM242701", - "KC911718", - "DQ400849", - "NC_001983", - "KC911723", - "KC911721", - "DQ400848", - "FM955607", - "E00956", - "E00957", - "AY271892", - "NC_001984" - ], - "Xiburema_virus__XIBV_BE_AR_362159" : [ - "NC_025362" - ], - "Otomops_polyomavirus_2__KY156" : [ - "NC_020066" - ], - "Hepatitis_B_virus__cww1128" : [ - "KC774276" - ], - "Maize_streak_virus__MSV_A_ZA_Pot8_O33_1979" : [ - "FJ882136" - ], - "Cucumber_mosaic_virus_satellite_RNA_q" : [ - "MCVSATRNA" - ], - "Rabies_virus__EF" : [ - "JQ685920" - ], - "Human_mastadenovirus_B_human_IND_MEEI_00057_2011_3_P7H3F3" : [ - "KF268210" - ], - "Yellow_head_virus_YHV1992" : [ - "FJ848673" - ], - "Dehalococcoides_mccartyi_DCMB5" : [ - "NC_020386" - ], - "Dengue_virus_3_D3_SG_05K4141DK1_2005" : [ - "EU081214" - ], - "Coniothyrium_minitans_RNA_virus" : [ - "NC_007523" - ], - "Hepatitis_C_virus_subtype_1b__No__14" : [ - "AB154189" - ], - "Human_immunodeficiency_virus_1__WITO_flF2" : [ - "FJ496181" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GDQY1" : [ - "JN387271" - ], - "Coxsackievirus_A7_LEV8" : [ - "JQ041367" - ], - "Chilli_leaf_curl_virus__Th4" : [ - "JN604499" - ], - "Thermococcus_4557" : [ - "NC_015865" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota89_2013" : [ - "KJ645681" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_COL_309752_1974_ID" : [ - "KC344477" - ], - "Human_poliovirus_3_NIE1018465" : [ - "KJ170630" - ], - "Bluetongue_virus_2_ITL2002_01__Italy_2002" : [ - "AM773687" - ], - "Human_metapneumovirus_HMPV_AUS_133875417_2003_B" : [ - "KF530179" - ], - "Staphylococcus_aureus_ST398" : [ - "NC_017334", - "NC_017335", - "NC_017336", - "NC_017333" - ], - "SARS_coronavirus_wtic_MB_WTic_c1P1" : [ - "JF292921" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20144610" : [ - "KR653270" - ], - "Hepatitis_B_virus__cww1030" : [ - "KC774251" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA93" : [ - "KF670669" - ], - "Human_bocavirus_HoBV_Yamagata_JPN_143" : [ - "AB480170" - ], - "Rotavirus_A_RVA_Horse_wt_ARG_E4040_2008_G14P_12" : [ - "JN872875", - "JN872873", - "JN872868", - "JN872865", - "JN872872", - "JN872867", - "JN872866", - "JN872874", - "JN872870", - "JN872869", - "JN872871" - ], - "South_African_cassava_mosaic_virus__MG_MG617A6_11" : [ - "KJ888057" - ], - "Hepatitis_B_virus__clz2166" : [ - "KC774222" - ], - "Hepatitis_B_virus__MY799421" : [ - "KJ803781" - ], - "Choristoneura_rosaceana_alphabaculovirus__NB_1" : [ - "NC_021924" - ], - "Porcine_circovirus_2__2351_1" : [ - "FJ905466" - ], - "Borrelia_garinii_BgVir" : [ - "NC_017717", - "NC_017725", - "NC_017804" - ], - "Human_immunodeficiency_virus_1__01UYTRA1179" : [ - "AY781127" - ], - "Chiba_virus_Hu_NLV_Chiba_407_1987_JP" : [ - "AB042808" - ], - "Hepatitis_B_virus__C_NC_43577_2003" : [ - "HQ700508" - ], - "Desulfovibrio_desulfuricans_ATCC_27774" : [ - "NC_011883" - ], - "Streptomyces_phage_Lika" : [ - "NC_021298" - ], - "Chicken_anemia_virus__98D02152" : [ - "AF311892" - ], - "Methylocystis_SC2" : [ - "NC_018485" - ], - "Dengue_virus_3_VE_61035_2006" : [ - "HQ332171" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3650_2008" : [ - "GU131884" - ], - "Dengue_virus_2_DENV_2_PR_6DN_1994" : [ - "GQ398292" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V439_2000" : [ - "EU482846" - ], - "Human_immunodeficiency_virus_1_NL4_3" : [ - "HIV1U26942" - ], - "Tomato_common_mosaic_virus__BR_Coi24_07" : [ - "KC706577" - ], - "Enterovirus_F_IL_alpaca" : [ - "KC748420" - ], - "Avian_paramyxovirus_11__common_snipe_France_100212_2010" : [ - "NC_025407" - ], - "Classical_swine_fever_virus_LOM" : [ - "EU789580" - ], - "Bluetongue_virus_7__1504" : [ - "JX272558" - ], - "Dengue_virus_1__DENV_1_VN_BID_V816_2006" : [ - "EU482810" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_LBC_LBC10" : [ - "KF385423" - ], - "Dengue_virus_2_New_Guinea_C" : [ - "KM204118" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDPLP01_2011" : [ - "JQ693013" - ], - "Archaeoglobus_profundus_DSM_5631" : [ - "NC_013742", - "NC_013741" - ], - "Dengue_virus_4__DENV_4_US_BID_V1083_1986" : [ - "EU854295" - ], - "Enterovirus_A71_EV71_Xiamen_2009" : [ - "JN964686" - ], - "West_Nile_virus__WNV_1_US_BID_V6194_2001" : [ - "KJ501439" - ], - "Hepatitis_B_virus__Ag45" : [ - "KJ843205" - ], - "Enterovirus_C__Brunenders" : [ - "KP793687" - ], - "Human_respiratory_syncytial_virus_BE_7004_06" : [ - "JX576732" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_COD_2014_Lomela_Lokolia19" : [ - "KP271020" - ], - "Human_rhinovirus_A29_ATCC_VR_1139" : [ - "FJ445125" - ], - "Middle_East_respiratory_syndrome_coronavirus_Abu_Dhabi_UAE_16_2014" : [ - "KP209308" - ], - "JC_polyomavirus__Tky_2a" : [ - "AB038255" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Yamagata10_7" : [ - "AB811788" - ], - "Hepatitis_B_virus__HBNAT025" : [ - "KJ638659" - ], - "Porcine_circovirus_2__JX2" : [ - "KP824716" - ], - "Junin_mammarenavirus_P35302" : [ - "DQ854738" - ], - "Dengue_virus_2__DENV_2_VN_BID_V723_2006" : [ - "EU482660" - ], - "Bluetongue_virus_5__CAR1982_02" : [ - "AJ586701" - ], - "Tomato_mottle_mosaic_virus__10_100" : [ - "KP202857" - ], - "Sewage_associated_circular_DNA_virus_33__SaCV_33_NZ_BS4147_2012" : [ - "NC_026278" - ], - "Human_immunodeficiency_virus_1__03ZASK086B1" : [ - "DQ164124" - ], - "Porcine_circovirus_2__Kaiyang" : [ - "KJ139962" - ], - "Dengue_virus_2__DENV_2_US_BID_V5411_2006" : [ - "JF730053" - ], - "Hepatitis_B_virus__A1_HBVKK2" : [ - "HPBA1HKK2" - ], - "Human_papillomavirus_type_130__24_43" : [ - "GU117630" - ], - "Turnip_mosaic_virus__ITA5" : [ - "AB701723" - ], - "Porcine_circovirus_2_9741" : [ - "AF086835" - ], - "Chikungunya_virus_MY019IMR_06_BP" : [ - "EU703761" - ], - "Buchnera_aphidicola_JF98__Acyrthosiphon_pisum" : [ - "NC_017254" - ], - "Human_poliovirus_1" : [ - "AJ132960", - "AJ132961" - ], - "Cucumber_mosaic_virus_satellite_RNA_T12" : [ - "X86416" - ], - "Dengue_virus_2__DENV_2_VN_BID_V765_2003" : [ - "EU482787" - ], - "Avian_gyrovirus_2_G17" : [ - "KJ452213" - ], - "Hepatitis_B_virus__MTB163" : [ - "AY902776" - ], - "Cotton_leaf_curl_Burewala_virus__20" : [ - "EU384572" - ], - "Porcine_circovirus_2_Y_3" : [ - "KF027493" - ], - "Maize_streak_virus__MSV_A_ZA_War1_T5_2007" : [ - "HQ693439" - ], - "Tobacco_mild_green_mosaic_virus_Japanese" : [ - "AB078435" - ], - "American_plum_line_pattern_virus" : [ - "NC_003452", - "NC_003453", - "NC_003451" - ], - "Turnip_mosaic_virus__NZW4" : [ - "AB989655" - ], - "Hepatitis_B_virus__Ran103" : [ - "EF103282" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Abohar_2003___In_Abohar_2003" : [ - "JF509752" - ], - "Dengue_virus_3__DEL_72" : [ - "GQ466079" - ], - "Hepatitis_B_virus__I_T129" : [ - "GU456639" - ], - "Hantaan_virus_Hu_Chinese_isolates" : [ - "AB027111" - ], - "Trichoplusia_ni_cypovirus_15" : [ - "NC_002562", - "NC_002566", - "NC_002559", - "NC_002564", - "NC_002565", - "NC_002560", - "NC_002558", - "NC_002557", - "NC_002561", - "NC_002567", - "NC_002563" - ], - "Cassava_brown_streak_virus__Mo_83" : [ - "FN434436" - ], - "Dengue_virus_2__DENV_2_NI_BID_V556_2005" : [ - "EU482763" - ], - "Viral_hemorrhagic_septicemia_virus_DK_3592B" : [ - "KC778774" - ], - "Hepatitis_B_virus__N16_C_FY137B" : [ - "KJ173414" - ], - "Human_rotavirus_A__mw63" : [ - "AJ427315" - ], - "Dengue_virus_3_D83_144" : [ - "KJ737430" - ], - "Circoviridae_5_LDMD_2013" : [ - "NC_025710" - ], - "Propionibacterium_phage_PHL152M00__PHL152M00" : [ - "NC_027386" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_A2" : [ - "KC106649" - ], - "Porcine_epidemic_diarrhea_virus_AJ1102" : [ - "JX188454" - ], - "Chikungunya_virus__SVUCTR_09" : [ - "JN558834" - ], - "West_Nile_virus__WNV_1_Gallus_BID_V4959_kidney" : [ - "HQ671692" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8471_2001" : [ - "KJ627696" - ], - "Klebsiella_pneumoniae_MGH_78578" : [ - "NC_009650", - "NC_009649", - "NC_009651", - "NC_009653", - "NC_009652", - "NC_009648" - ], - "Enterovirus_A71_SZ_HK08_5" : [ - "GQ279369" - ], - "West_Nile_virus_NY_99" : [ - "KC407666" - ], - "Hepatitis_B_virus__I15" : [ - "FJ562223" - ], - "Human_smacovirus_1__Oregon_6_2011_GottageGrove_B45" : [ - "KP233182" - ], - "Bean_yellow_mosaic_virus__GB32A" : [ - "HG970854" - ], - "Carnation_mottle_virus__China" : [ - "HQ660513" - ], - "Seoul_virus__Fj372_2013" : [ - "KP645196", - "KP645197" - ], - "West_Nile_virus_ArEq001" : [ - "GQ379160" - ], - "Hepatitis_B_virus__SHB76" : [ - "KJ598742" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_413N3__413N3" : [ - "JN819501" - ], - "Mink_calicivirus_MCV_DL_2007_CN" : [ - "NC_019712" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1885_2007" : [ - "FJ410231" - ], - "Pennisetum_mosaic_virus__AZ7" : [ - "JX070147" - ], - "Staphylococcus_phage_Team1" : [ - "NC_025417" - ], - "Bacillus_phage_BPS13" : [ - "NC_018857" - ], - "Mycobacterium_phage_Squirty" : [ - "NC_026588" - ], - "Turkey_adenovirus_4__TNI1" : [ - "NC_022612" - ], - "Dengue_virus_2_QHD13CAIQ" : [ - "KF479233" - ], - "Kyasanur_forest_disease_virus_G11338" : [ - "JF416959" - ], - "West_Nile_virus__WNV_1_US_BID_V4889_2006" : [ - "HQ671727" - ], - "Propionibacterium_phage_PHL113M01" : [ - "NC_022341" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V387_2004" : [ - "EU482841" - ], - "Avian_metapneumovirus_VCO3_60616" : [ - "AB548428" - ], - "Human_immunodeficiency_virus_1__BREPM1044" : [ - "FJ195087" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2785_2007" : [ - "GQ199805" - ], - "Dengue_virus_1__ARG0044" : [ - "AY277659" - ], - "Human_poliovirus_1_Brunhilde" : [ - "AY560657" - ], - "Mungbean_yellow_mosaic_India_virus__Bengal" : [ - "HF922628" - ], - "Beak_and_feather_disease_virus__MU_JP4P" : [ - "AB277749" - ], - "West_Nile_virus__WNV_1_US_BID_V4219_2004" : [ - "HM488147" - ], - "Bluetongue_virus_12__75005" : [ - "JX272508" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2573_2005" : [ - "FJ906962" - ], - "Watermelon_mosaic_virus__C05_270" : [ - "EU660585" - ], - "Wheat_dwarf_virus__HUNGARY_PC10_1" : [ - "JQ647454" - ], - "Xanthomonas_phage_CP1" : [ - "NC_019933" - ], - "Torque_teno_virus__CT30F" : [ - "AB064597" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2690_2006" : [ - "JQ287661" - ], - "Squash_leaf_curl_virus__LB2_2_9" : [ - "KM595139" - ], - "Helicobacter_pylori_OK113" : [ - "NC_020508" - ], - "Sporobolus_striate_mosaic_virus_2__AU_3020_2_2011" : [ - "NC_018578" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_BJ" : [ - "EU825723" - ], - "West_Nile_virus__WNV_1_US_BID_V4107_2005" : [ - "HM488118" - ], - "Enterovirus_D68_US_MO_14_18947" : [ - "KM851225" - ], - "Hepatitis_C_virus_subtype_1b_MD9_2" : [ - "AF165062" - ], - "Enterobacteria_phage_SSL2009a" : [ - "NC_012223" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_93_2012" : [ - "KJ686170" - ], - "BK_polyomavirus__FUK_23" : [ - "AB365131" - ], - "Mycoreovirus_3" : [ - "NC_007531", - "NC_007527", - "NC_007526", - "NC_007534", - "NC_007524", - "NC_007535", - "NC_007529", - "NC_007536", - "NC_007532", - "NC_007528", - "NC_007533", - "NC_007525" - ], - "Chickpea_chlorotic_dwarf_virus__D_ICRISAT_2" : [ - "KC172665" - ], - "Porcine_circovirus_2__Ciego_de_Avila" : [ - "FN398022" - ], - "Cauliflower_mosaic_virus__IRNCaE2" : [ - "JX912255" - ], - "Tomato_chlorosis_virus__HP" : [ - "KP114537", - "KP114530" - ], - "Human_immunodeficiency_virus_1__04013396_0_flG8" : [ - "FJ496085" - ], - "Sulfolobus_islandicus_LAL14_1" : [ - "NC_021058" - ], - "Hepatitis_B_virus__CX063C_e307" : [ - "KJ173293" - ], - "Hepatitis_B_virus__S472_24" : [ - "EU554536" - ], - "Newcastle_disease_virus__chicken_China_Guangxi9_2003" : [ - "DQ485230", - "JF343539" - ], - "Hepatitis_B_virus__C1691_11" : [ - "DQ995804" - ], - "Coxsackievirus_A16__AH08_06" : [ - "KF193632" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3771" : [ - "KM233071" - ], - "Hepatitis_B_virus_5051" : [ - "EU796071" - ], - "Newcastle_disease_virus_go_CH_LFJ_1_06" : [ - "KJ607168" - ], - "Tembusu_virus_JS804" : [ - "NC_015843" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1867_2007" : [ - "FJ461318" - ], - "Gossypium_mustilinum_symptomless_alphasatellite__Mus_alphaB_2" : [ - "EU384656" - ], - "Pseudomonas_phage_Lu11_Lu11" : [ - "NC_017972" - ], - "Bluetongue_virus_16__K31_08_ABT_HSR" : [ - "KF664109", - "KF664110", - "KF664112", - "KF664108", - "KF664106", - "KF664107", - "KF664103", - "KF664105", - "KF664111" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH38_2011" : [ - "KM188452" - ], - "Dengue_virus_3__DENV_3_US_BID_V2108_2000" : [ - "FJ547074" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZP06_2011" : [ - "JQ693009" - ], - "Watermelon_chlorotic_stunt_virus__PA2_Q17" : [ - "KM820283" - ], - "Foot_and_mouth_disease_virus___type_O_O2_Brescia_o2brescia_iso17" : [ - "AY593826" - ], - "Human_coronavirus_OC43_HK04_01" : [ - "JN129834" - ], - "Bean_golden_mosaic_virus__BR_Vis6_11" : [ - "KJ939728" - ], - "Ramie_mosaic_virus__Hn" : [ - "KC171650", - "KC171651" - ], - "Enterovirus_A71_1095_org" : [ - "AB550332" - ], - "Bluetongue_virus_2__90726" : [ - "DQ191275" - ], - "Porcine_circovirus_2_Nanyang" : [ - "HQ693092" - ], - "Hepatitis_B_virus_574_6" : [ - "KR013807" - ], - "Newcastle_disease_virus__goose_Guangdong_2010" : [ - "KC551967" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_61_2012" : [ - "KJ686243" - ], - "West_Nile_virus__WNV_1_US_BID_V4913_2002" : [ - "HQ671720" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD31_2013" : [ - "KM229783" - ], - "Hepatitis_B_virus__6871" : [ - "AF241409" - ], - "Eel_River_basin_pequenovirus__c22108" : [ - "KP087956" - ], - "Porcine_circovirus_2__KS" : [ - "HQ202958" - ], - "Salmonella_phage_iEPS5" : [ - "NC_021783" - ], - "Listeria_innocua_Clip11262" : [ - "NC_003383", - "NC_003212" - ], - "Dengue_virus_3__MKS_WS78" : [ - "KC762692" - ], - "Escherichia_phage_vB_EcoM_JS09" : [ - "NC_024124" - ], - "Human_adenovirus_7__CQ1198" : [ - "JX625134" - ], - "Hepatitis_B_virus__B2_9" : [ - "GU815602" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPP00408_2011_A" : [ - "KJ627419" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_177N2__177N2" : [ - "JN819487" - ], - "Hepatitis_E_virus__CHN_BJ_r14_8" : [ - "KJ013414" - ], - "Mesorhizobium_australicum_WSM2073" : [ - "NC_019973" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2309_2001" : [ - "FJ744723" - ], - "Hepatitis_B_virus__T2235_CHB" : [ - "JN664932" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2907_2006" : [ - "FJ898422" - ], - "Human_immunodeficiency_virus_1__ML013_10_1986" : [ - "AY322184" - ], - "Tomato_leaf_curl_China_betasatellite__G32" : [ - "AJ704607" - ], - "Salmonella_phage_FO1a" : [ - "JF461087" - ], - "Human_rotavirus_A_249_stool" : [ - "AJ236779" - ], - "Sulfitobacter_phage_pCB2047_A_pCB2047_A" : [ - "NC_020858" - ], - "Human_immunodeficiency_virus_1__CH164_mo6" : [ - "KC156128" - ], - "Human_enterovirus_107_TN94_0349" : [ - "AB426609" - ], - "Bovine_astrovirus_CH13__CH13" : [ - "NC_024498" - ], - "Zucchini_yellow_mosaic_virus__3rd" : [ - "JN192426" - ], - "Sweet_potato_virus_C__UN202" : [ - "KP115622" - ], - "Canine_distemper_virus_007Lm" : [ - "AB474397" - ], - "Bean_golden_mosaic_virus__BR_Cri13_12" : [ - "KJ939849" - ], - "Penguinpox_virus__PSan92" : [ - "NC_024446" - ], - "JC_polyomavirus_UNN2_cns2" : [ - "KJ659288" - ], - "Citrus_tristeza_virus_T30_FS2_2" : [ - "EU937520" - ], - "Echovirus_E33_Toluca_3" : [ - "AY302556" - ], - "Human_immunodeficiency_virus_1__04ZASK181B1" : [ - "AY878062" - ], - "Miniopterus_bat_coronavirus_HKU8_AFCD77" : [ - "NC_010438" - ], - "Dengue_virus_3__D3PY_AS12_02" : [ - "JF808123" - ], - "JC_polyomavirus__Ceb_5" : [ - "AB113124" - ], - "Human_papillomavirus_type_6__18" : [ - "HG793826" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_93I_045A_01_1993" : [ - "KJ723487" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0057" : [ - "KP759635" - ], - "Human_immunodeficiency_virus_1__LTG0218" : [ - "AY531116" - ], - "Hepatitis_B_virus__SSC112" : [ - "KJ598692" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL146A" : [ - "AB985567" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c13P10_2009_c13P10" : [ - "KF514411" - ], - "Bluetongue_virus_2_BTV_2IT_L" : [ - "JN255863", - "JN255870", - "JN255866", - "JN255869", - "JN255871", - "JN255864", - "JN255868", - "JN255862", - "JN255867", - "JN255865" - ], - "Dengue_virus_2_98900663_DHF_DV_2" : [ - "AB189122" - ], - "Goose_orthoreovirus_03G" : [ - "JX145334", - "JX145333", - "JX145331", - "JX145332", - "JX145335", - "JX145336", - "JX145328", - "JX145337", - "JX145330", - "JX145329" - ], - "Rice_black_streaked_dwarf_virus__zhjs" : [ - "AF459812", - "AF459813" - ], - "Human_respiratory_syncytial_virus_HRSV_A_GZ08_12" : [ - "KP119746" - ], - "Hepatitis_B_virus__DEN5909" : [ - "KF779219" - ], - "Bat_adenovirus_TJM_TJM" : [ - "NC_016895" - ], - "Mycobacterium_phage_KayaCho" : [ - "NC_022061" - ], - "Infectious_bursal_disease_virus_ZJ2000" : [ - "DQ166818" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2881_2006" : [ - "GQ199845" - ], - "Human_immunodeficiency_virus_1__98UA0116" : [ - "AF413987" - ], - "Thermoproteus_tenax_spherical_virus_1" : [ - "NC_006556" - ], - "Cucumber_mosaic_virus_satellite_RNA__Rs" : [ - "AF451896" - ], - "Tobacco_vein_banding_mosaic_virus__TVBMV_SDYS1" : [ - "HQ396791" - ], - "Dengue_virus_2__DGV69" : [ - "JX286525" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT12B76_2005" : [ - "JF909171" - ], - "Mycoplasma_mobile_163K" : [ - "NC_006908" - ], - "Dengue_virus_1__DENV_1_KH_BID_V3784_2007" : [ - "KF955444" - ], - "Asystasia_mosaic_Madagascar_virus__MG147" : [ - "KP663483" - ], - "Hepatitis_C_virus__2027q" : [ - "EU362902" - ], - "Murine_leukemia_virus_Solid_type_Reticulum_cell_Sarcoma__SRS__19_6" : [ - "AF019230" - ], - "Porcine_circovirus_2__SH1" : [ - "FJ644919" - ], - "Dengue_virus_3__DENV_3_IND_664481_1966" : [ - "JQ922555" - ], - "Hepatitis_B_virus__cur1038" : [ - "KC774234" - ], - "Microplitis_demolitor_bracovirus" : [ - "NC_007032", - "NC_007030", - "NC_007038", - "NC_007035", - "NC_007036", - "NC_007041", - "NC_007040", - "NC_007029", - "NC_007044", - "NC_007034", - "NC_007037", - "NC_007028", - "NC_007033", - "NC_007039", - "NC_007031" - ], - "Desulfitobacterium_hafniense_Y51" : [ - "NC_007907" - ], - "Hepatitis_B_virus__JPN_CH9" : [ - "AB453987" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V45_2005" : [ - "EU256004" - ], - "Hepatitis_B_virus__C27" : [ - "FJ349237" - ], - "Hepatitis_A_virus__253042_2013" : [ - "KJ427799" - ], - "Potato_virus_Y__GBVC_PVY_15_NTN" : [ - "JQ969034" - ], - "Mulberry_vein_banding_virus__YZ_3" : [ - "KM819703" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_280_2012" : [ - "KP308430" - ], - "Hepatitis_B_virus__cur1067" : [ - "KC774241" - ], - "Hepatitis_B_virus__Ran113" : [ - "EF103284" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2066_2007" : [ - "FJ639717" - ], - "Coxsackievirus_B4_VD2921" : [ - "AF328683" - ], - "Dengue_virus_2__DENV_2_VN_BID_V724_2006" : [ - "EU482661" - ], - "Israeli_acute_paralysis_virus_DVE31_OP3_PA_USA_2007" : [ - "EU436423" - ], - "Dengue_virus_1_BR_97_233" : [ - "AF311958" - ], - "Cucumber_mosaic_virus__Jatropha" : [ - "EF593026" - ], - "Measles_virus_Leningrad_4__L_4_MEAL4AC" : [ - "AY730614" - ], - "Human_immunodeficiency_virus_1__05MYKL045_1" : [ - "GQ277610", - "DQ366662" - ], - "Ourmia_melon_virus__VE9" : [ - "NC_011070", - "NC_011068", - "NC_011069" - ], - "Hepatitis_B_virus__P38" : [ - "EU859905" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_6__AHEaCV_6_NZ_2194TU_2012" : [ - "NC_026632" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1672_2007" : [ - "FJ024453" - ], - "Candidatus_Desulforudis_audaxviator_MP104C" : [ - "NC_010424" - ], - "Sugarcane_streak_mosaic_virus__THA_NP3" : [ - "JN163911" - ], - "Wheat_dwarf_virus__SXHC09_11" : [ - "KJ536139" - ], - "Bat_coronavirus_1A_AFCD62" : [ - "NC_010437" - ], - "Desulfurispirillum_indicum_S5" : [ - "NC_014836" - ], - "Dengue_virus_1__DH_S1_05_152" : [ - "JN697058" - ], - "Feline_calicivirus_F4" : [ - "FCLF4" - ], - "Duck_circovirus_HZ09" : [ - "EU344802" - ], - "Hepatitis_B_virus__MY511545" : [ - "KJ803811" - ], - "Dengue_virus_3__DENV_3_US_BID_V1613_2004" : [ - "FJ024471" - ], - "Cauliflower_mosaic_virus__Tr_ag_219_1d" : [ - "KF550287" - ], - "Clostridium_thermocellum_ATCC_27405" : [ - "NC_009012" - ], - "Hepatitis_B_virus__G1_6" : [ - "GU815756" - ], - "Hepatitis_B_virus_Ehi_KK_lam_9_1" : [ - "AB195952" - ], - "Hepatitis_B_virus__patient13" : [ - "AB300371" - ], - "Pepper_yellow_vein_Mali_virus_Mali_BF_Po_Hpe_08" : [ - "FN555171" - ], - "Goose_parvovirus_GDaGPV" : [ - "HQ891825" - ], - "Dengue_virus_3__DENV_3_MX_BID_V2985_2003" : [ - "FJ898440" - ], - "Beet_curly_top_Iran_virus__IR_Boj_3Beet_Sug_10" : [ - "JX945570" - ], - "West_Nile_virus__ARC33_06" : [ - "JF957166" - ], - "Urochloa_streak_virus__USV_NIle" : [ - "EU445696" - ], - "Bean_golden_mosaic_virus__BR_Sag11_12" : [ - "KJ939789" - ], - "Tomato_leaf_curl_Hainan_virus__Vietnam_Hanoi_tomato_2010" : [ - "HQ162269" - ], - "Foxtail_mosaic_virus" : [ - "AY121833", - "NC_001483", - "EF630359", - "EF630360" - ], - "Rift_Valley_fever_virus_ZS_6365" : [ - "DQ380145", - "DQ380205", - "DQ375410" - ], - "Newcastle_disease_virus__99_0655" : [ - "AY935494" - ], - "Rahnella_aquatilis_HX2" : [ - "NC_017047", - "NC_017773", - "NC_017807", - "NC_017060" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD219_2013" : [ - "KM229867" - ], - "Dengue_virus_2__DENV_2_VN_BID_V708_2006" : [ - "EU482645" - ], - "Hepatitis_B_virus__dxn1002" : [ - "KC774464" - ], - "Carnation_ringspot_virus" : [ - "NC_003531", - "NC_003530" - ], - "Middle_East_respiratory_syndrome_coronavirus__Jeddah_C7569_KSA_2014_04_03" : [ - "KM027256" - ], - "Human_coronavirus_NL63__Amsterdam_496" : [ - "DQ445912" - ], - "Cycad_leaf_necrosis_virus" : [ - "NC_011097" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LGD_100922" : [ - "JF828987" - ], - "Hepatitis_B_virus__HBV087" : [ - "JN688683" - ], - "Usutu_virus__ArD192495" : [ - "KC754957" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8320_2002" : [ - "KJ627652" - ], - "Hepatitis_B_virus__S1426_3" : [ - "FJ787469" - ], - "Hepatitis_B_virus__CONTROL13" : [ - "JQ801506" - ], - "Human_immunodeficiency_virus_1__U_NL_01_H10986_C11" : [ - "EF029069" - ], - "Tetrasphaera_phage_TJE1" : [ - "NC_019930" - ], - "Alkhumra_hemorrhagic_fever_virus_200905919" : [ - "JF416965" - ], - "Tomato_yellow_leaf_curl_virus_HNTY" : [ - "JQ038236" - ], - "Hepatitis_B_virus__8070_05260" : [ - "JN792917" - ], - "Porcine_circovirus_2_GYFH1110" : [ - "JX948770" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culicidae_USA_1468_2006" : [ - "KJ469649" - ], - "Dengue_virus_1__DENV_1_VN_BID_V961_2007" : [ - "EU482506" - ], - "Torque_teno_virus__tth22g4" : [ - "AJ620234" - ], - "Hepatitis_B_virus__IHHD28" : [ - "KJ533387" - ], - "Rift_Valley_fever_virus_2007002820" : [ - "JF309200" - ], - "Ornithogalum_mosaic_virus__SW3_1" : [ - "JQ807995" - ], - "Euphorbia_yellow_mosaic_virus___Goias__Brazil_GO_Itaberai_5082A_2007" : [ - "JF756671" - ], - "Dengue_virus_1__DENV_1_US_BID_V2130_1995" : [ - "FJ547086" - ], - "Aeromonas_hydrophila_ML09_119" : [ - "NC_021290" - ], - "Streptococcus_pyogenes_M1_GAS" : [ - "NC_002737" - ], - "Cucumber_mosaic_virus_satellite_RNA__0100_satRNA_340" : [ - "JF918969" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL067A" : [ - "AB985299", - "AB985530" - ], - "JC_polyomavirus_UNN2_cns3" : [ - "KJ659286" - ], - "Yersinia_enterocolitica_palearctica_Y11" : [ - "NC_017564", - "NC_017565" - ], - "JC_polyomavirus_SA50329_06" : [ - "EU835194" - ], - "Hepatitis_delta_virus_dTk7_dTk7" : [ - "AM779587" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir_K1P_Squ_09" : [ - "JF501727" - ], - "Hepatitis_B_virus__WHRNA1" : [ - "JN257157" - ], - "West_Nile_virus__WNV_1_US_BID_V6391_2001" : [ - "KJ501275" - ], - "Human_papillomavirus_type_45__Qv26351" : [ - "EF202165" - ], - "Human_papillomavirus_type_99__GA3_1" : [ - "FM955838" - ], - "Human_papillomavirus_type_58_CNZJ_3" : [ - "KC860270" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HUB1" : [ - "EF075945" - ], - "Human_immunodeficiency_virus_1__07YNLC18sg" : [ - "KC898983" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3682_2007" : [ - "GQ868501" - ], - "Epizootic_hemorrhagic_disease_virus_2__SV_124" : [ - "EHDSEG2A", - "EHDVP3A" - ], - "Enterovirus_A71__02_0_035" : [ - "KP691653" - ], - "African_cassava_mosaic_virus__MG_MG30A1_06" : [ - "KJ887849" - ], - "Equid_herpesvirus_1_NMKT04" : [ - "KF644568" - ], - "Helicobacter_pylori_UM299" : [ - "NC_021216" - ], - "Porcine_circovirus_2_09SH" : [ - "HQ395043" - ], - "Human_immunodeficiency_virus_1__04ZASK206B1" : [ - "DQ056415" - ], - "Hepatitis_B_virus__BD2" : [ - "EU239218" - ], - "Pig_stool_associated_circular_ssDNA_virus__FUJ1" : [ - "JX305998" - ], - "Hepatitis_C_virus__HK25" : [ - "KJ470622" - ], - "Sweet_potato_golden_vein_associated_virus_Rondonia_SPGVaV_RO_BR_PV1_08" : [ - "HQ393452" - ], - "Maize_streak_virus__MSV_A_CM_Baf3_Cam18_2008" : [ - "HQ693321" - ], - "Hepatitis_B_virus__FOL496" : [ - "JF440017" - ], - "Human_papillomavirus_type_45__Qv27648" : [ - "KC470254" - ], - "Coxsackievirus_A10_FY01_AH_CHN_2013" : [ - "KP009574" - ], - "Dengue_virus_1__DENV_1_BR_BID_V2401_2008" : [ - "FJ850093" - ], - "Wheat_dwarf_virus__HUNGARY_MO10_1" : [ - "JQ647467" - ], - "Porcine_kobuvirus__XX" : [ - "KC204684" - ], - "Hepatitis_B_virus__dxn1082" : [ - "KC774490" - ], - "Salmonella_phage_ST64T" : [ - "NC_004348" - ], - "Sandfly_fever_Naples_virus_NAMRU_840055" : [ - "EF201828" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_F_SD_SD223_2013" : [ - "KM229790" - ], - "Bean_common_mosaic_virus__DXH020" : [ - "KJ807808" - ], - "Faba_bean_necrotic_stunt_virus__Mor5" : [ - "GQ274038", - "GQ274036", - "GQ274035", - "GQ274032", - "GQ274033", - "GQ274031", - "GQ274034", - "GQ274037" - ], - "Ehrlichia_canis_Jake" : [ - "NC_007354" - ], - "Zucchini_yellow_mosaic_virus__4th" : [ - "JN192425" - ], - "Human_bocavirus__HK6" : [ - "EF450722" - ], - "Pseudomonas_phage_201phi2_1" : [ - "NC_010821" - ], - "Torque_teno_mini_virus_2__TLMV_NLC023" : [ - "NC_014086" - ], - "Chilli_leaf_curl_betasatellite__Meerut" : [ - "JX193616" - ], - "Human_immunodeficiency_virus_1__99BWMC16_8" : [ - "AF443087" - ], - "Hepatitis_B_virus__AIDS18" : [ - "JQ801476" - ], - "Human_metapneumovirus_HMPV_AUS_146892777_2003_A" : [ - "KC403981" - ], - "Influenza_A_virus__A_Puerto_Rico_8_1934_H1N1___A_Puerto_Rico_8_1934" : [ - "NC_002022", - "NC_002021", - "NC_002016", - "NC_002018", - "NC_002017", - "NC_002020", - "NC_002019", - "NC_002023" - ], - "Escherichia_phage_121Q" : [ - "NC_025447" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4981_1" : [ - "KR105287" - ], - "Newcastle_disease_virus__chicken_BYP_Pakistan_2010" : [ - "JN682210" - ], - "West_Nile_virus__WNV_1_US_BID_V4800_2004" : [ - "JF899528" - ], - "Enterobacteria_phage_JL1" : [ - "NC_019419" - ], - "Culex_flavivirus_Toyama1701" : [ - "AB701768" - ], - "East_African_cassava_mosaic_Malawi_virus" : [ - "NC_022644" - ], - "Grapevine_virus_A__Is_151" : [ - "NC_003604" - ], - "Cucumber_mosaic_virus_Rs" : [ - "AJ517801", - "AJ511988", - "AJ517802" - ], - "Wheat_dwarf_virus__SA12PstFL1" : [ - "AM921993" - ], - "Primula_malacoides_virus_China_Mar2007" : [ - "NC_013109", - "NC_013110" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4972_1" : [ - "KR105285" - ], - "Human_gyrovirus_type_1_G13" : [ - "KJ452214" - ], - "Shewanella_putrefaciens_200" : [ - "NC_017566" - ], - "Hepatitis_B_virus__CONTROL31" : [ - "JQ801523" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD145_2013" : [ - "KM229817" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_29_DRC" : [ - "JX458836" - ], - "Hepatitis_B_virus__B61" : [ - "FJ904444" - ], - "Squash_leaf_curl_virus__IL3_99" : [ - "KM595122" - ], - "Hepatitis_B_virus__WHAMR1" : [ - "JN257208" - ], - "Porcine_circovirus_2__Mal004_11_Selangor" : [ - "JF690913" - ], - "Synechococcus_phage_ACG_2014c__Syn7803C98" : [ - "KJ019064" - ], - "Cafeteria_roenbergensis_virus_BV_PW1_BV_PW1" : [ - "NC_014637" - ], - "Porcine_circovirus_2_Fd10" : [ - "AY321991" - ], - "Hepatitis_B_virus__No32" : [ - "AB697509" - ], - "Japanese_encephalitis_virus_Nakayama" : [ - "EF571853" - ], - "Bean_golden_mosaic_virus__BR_Una14_12" : [ - "KJ939834" - ], - "Chinese_wheat_mosaic_virus__Nagano_A" : [ - "AB935554", - "AB935553" - ], - "Squash_leaf_curl_virus__EG2_14" : [ - "KM595153" - ], - "Squash_leaf_curl_virus__YL" : [ - "EU479711" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V237_2005" : [ - "EU255930" - ], - "BK_polyomavirus__ZAF_1" : [ - "AB263938" - ], - "Hepatitis_B_virus__919054" : [ - "JN040790" - ], - "Chilli_leaf_curl_virus_Panipat1__India_Panipat_Papaya_2008___Panipat_1" : [ - "HM140366" - ], - "Human_papillomavirus_type_100__DL267" : [ - "FM955839" - ], - "Hepatitis_B_virus__PO04v2" : [ - "KF922439" - ], - "Rift_Valley_fever_virus_200803162" : [ - "JF311377", - "JF311386", - "JF311368" - ], - "Hepatitis_B_virus__FH8" : [ - "AF461358" - ], - "Tobacco_leaf_curl_Thailand_virus" : [ - "NC_009553" - ], - "Gossypium_mustilinum_symptomless_alphasatellite__Mus_alphaB_F3G7" : [ - "EU384660" - ], - "Clostridium_phage_phiCP13O" : [ - "NC_019506" - ], - "Blattabacterium__Periplaneta_americana__BPLAN" : [ - "NC_013418", - "NC_013419" - ], - "Foot_and_mouth_disease_virus___type_A__IND_64_2004" : [ - "HQ832581" - ], - "Cotton_leaf_curl_Burewala_virus__IARI_45" : [ - "KM070821" - ], - "Rice_stripe_virus__BA2_JB" : [ - "FJ602676", - "FJ602689" - ], - "Morganella_phage_MmP1" : [ - "NC_011085" - ], - "Hepatitis_B_virus__C124" : [ - "EU939622" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM098" : [ - "KM034552" - ], - "Junin_mammarenavirus_recXJ13" : [ - "JN200801" - ], - "Bovine_papular_stomatitis_virus_BV_TX09c1" : [ - "KM875472" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FPP00538_2011" : [ - "KJ627370" - ], - "Pike_fry_rhabdovirus__F4" : [ - "NC_025356" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4082_2008" : [ - "JF937619" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_B5_9D_V" : [ - "JX570655" - ], - "Puumala_virus_Gomselga" : [ - "AJ238790" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Guntur_OY62_2006___OY60" : [ - "GU111982" - ], - "Usutu_virus_V5" : [ - "KJ438723" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P120" : [ - "KC422727" - ], - "Cucumber_mosaic_virus_Tfn" : [ - "Y16925", - "Y16924", - "Y16926" - ], - "Newcastle_disease_virus__Bareilly" : [ - "KF727980" - ], - "Torque_teno_sus_virus_1a__TTV1Hlj20" : [ - "HM633256" - ], - "Banana_bunchy_top_virus__TOS12" : [ - "JF957671", - "JF957647", - "JF957635", - "JF957683", - "JF957695", - "JF957659" - ], - "Hepatitis_B_virus_1346_7" : [ - "KR014040" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9400_2013" : [ - "KJ643488" - ], - "Escherichia_coli__clone_D_i14" : [ - "NC_017652" - ], - "Dengue_virus_2__DENV_2_NI_BID_V3152_2008" : [ - "JX079688" - ], - "Hepatitis_B_virus__1993_N_BRA" : [ - "KJ854698" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL087A" : [ - "AB985309", - "AB985541" - ], - "Human_mastadenovirus_B_ColoAd1" : [ - "EF011630" - ], - "Human_respiratory_syncytial_virus_HRSV_A_GZ08_19" : [ - "KP119748" - ], - "Maize_streak_virus__MSV_A_MZ_Bil2_Moz21_2007" : [ - "HQ693336" - ], - "Escherichia_phage_CICC_80001" : [ - "NC_027387" - ], - "Hepatitis_B_virus__MLT0613" : [ - "KF779287" - ], - "Porcine_coronavirus_HKU15_IN2847" : [ - "KJ569769" - ], - "Dengue_virus_1__MKS_WS88" : [ - "KC762642" - ], - "Pepino_mosaic_virus_Ch2_SIC2_09" : [ - "HQ663892" - ], - "Bean_golden_mosaic_virus__BR_Bel_05" : [ - "KJ939714" - ], - "Japanese_encephalitis_virus_JEV_sw_Okinawa_254_2008" : [ - "AB471667" - ], - "Beet_necrotic_yellow_vein_virus__N7" : [ - "AF197558", - "AF197559" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_DP0369_2012" : [ - "KM452741" - ], - "Tamarillo_leaf_malformation_virus__A" : [ - "NC_026615" - ], - "Chlamydia_trachomatis_Ia_SotonIa1" : [ - "NC_020970", - "NC_020962" - ], - "Dengue_virus_2__DENV_2_VE_BID_V3497_1991" : [ - "GQ868541" - ], - "Human_papillomavirus_type_18__Z63" : [ - "KC470215" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_LW8_1" : [ - "JQ663568" - ], - "Human_T_lymphotropic_virus_2__G12" : [ - "HL2G12GNOM" - ], - "Vaccinia_virus_LC16mO" : [ - "AY678277" - ], - "Hepatitis_B_virus_70H" : [ - "AY090458" - ], - "Porcine_circovirus_2__1313_09_10" : [ - "HQ591379" - ], - "Human_immunodeficiency_virus_1__D2p21" : [ - "HM469973" - ], - "Human_papillomavirus_type_10" : [ - "NC_001576" - ], - "Watermelon_chlorotic_stunt_virus__IL3_84" : [ - "KM820269" - ], - "Human_immunodeficiency_virus_1__14187_1" : [ - "DQ853447" - ], - "Human_immunodeficiency_virus_1_97NOGIL3" : [ - "AJ237565" - ], - "Methanoplanus_petrolearius_DSM_11571" : [ - "NC_014507" - ], - "Tomato_common_mosaic_virus__BR_Pda48_05" : [ - "KC706585" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3657_2006" : [ - "GU131957" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00102_2000_G1P_8" : [ - "JN635546", - "JN635542", - "JN635543", - "JN635538", - "JN635548", - "JN635541", - "JN635544", - "JN635540", - "JN635547", - "JN635539", - "JN635545" - ], - "JC_polyomavirus__KE_1" : [ - "AB126993" - ], - "Rice_stripe_virus__DYa04" : [ - "AJ871751", - "AJ875062" - ], - "Hepatitis_B_virus_Ehi_TH_lam_8_2" : [ - "AB195950" - ], - "Tomato_leaf_curl_Taiwan_virus____Taiwan_Hsinchu_C1_2005___C1" : [ - "DQ866126" - ], - "Chikungunya_virus__IND_06_Guj" : [ - "JF274082" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3730_2007" : [ - "GQ868523" - ], - "Hepatitis_B_virus__Warao189" : [ - "DQ899143" - ], - "Okra_leaf_curl_India_virus__India_Sonipat_EL14A_2006___EL14A" : [ - "NC_014847" - ], - "Human_metapneumovirus_TN96_12" : [ - "JN184399" - ], - "Hepatitis_B_virus__patient33" : [ - "EU919174" - ], - "Banna_virus_strain_JKT_6423_JKT_6423_JKT_6423" : [ - "NC_004211" - ], - "Wheat_dwarf_virus__SxA18" : [ - "AM296018" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2861_2006" : [ - "FJ898398" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1013_2006" : [ - "EU482457" - ], - "Human_herpesvirus_5_BE_15_2011" : [ - "KP745720" - ], - "Human_immunodeficiency_virus_1__0341RI" : [ - "JF804808" - ], - "Human_immunodeficiency_virus_1__CAP229_7w" : [ - "GQ999985" - ], - "Hepatitis_C_virus__patient_A" : [ - "KC155254" - ], - "Human_immunodeficiency_virus_1__90CF11697" : [ - "AF197340" - ], - "Lactococcus_phage_ul36_k1" : [ - "DQ394806" - ], - "Tobacco_streak_virus__pumpkin" : [ - "FJ561300", - "FJ561301", - "FJ561299" - ], - "Hepatitis_B_virus__I137" : [ - "FJ562278" - ], - "Beak_and_feather_disease_virus__BFDV_R_PL_742_2008" : [ - "JX221040" - ], - "Hepatitis_E_virus__IND_HEV_FHF1_2003" : [ - "JF443722" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_ZP_1" : [ - "HM016159" - ], - "Hepatitis_B_virus__GU1146" : [ - "GQ161796" - ], - "Norovirus_Hu_GII_4_Iwate5_2007_JP_Hu_GII_4_Iwate5_2007_JP" : [ - "AB541275" - ], - "Chikungunya_virus__LK_PB_CH1008" : [ - "FJ513628" - ], - "Human_poliovirus_2_EGY88_074" : [ - "AF448782" - ], - "Small_begomovirus_associated_satellite__Sa20_S222" : [ - "KJ859146" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P3pp7" : [ - "FJ882947" - ], - "Mycobacterium_phage_BillKnuckles_BillKnuckles" : [ - "NC_023739" - ], - "Canine_circovirus_Bari_411_13" : [ - "KJ530972" - ], - "Puma_concolor_papillomavirus_type_1" : [ - "AY904723" - ], - "Semliki_Forest_virus_A7" : [ - "Z48163" - ], - "Pepper_yellow_leaf_curl_China_virus__YN57_4" : [ - "KC149940" - ], - "East_African_cassava_mosaic_virus__CF_CF139BE_07" : [ - "KM885994" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_D615" : [ - "JX503073" - ], - "Lettuce_mosaic_virus__Tn516_ev" : [ - "KJ161191" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Guntur_OY112_2006___OY112" : [ - "GU111969" - ], - "Japanese_encephalitis_virus_GD" : [ - "JN711458" - ], - "Human_papillomavirus_type_17" : [ - "X74469" - ], - "Chicken_anemia_virus__20" : [ - "KJ728829" - ], - "Influenza_A_virus__A_New_York_392_2004_H3N2___A_New_York_392_2004" : [ - "NC_007369", - "NC_007368", - "NC_007366", - "NC_007373", - "NC_007372", - "NC_007367", - "NC_007371", - "NC_007370" - ], - "Human_papillomavirus_type_45__Qv35960" : [ - "EF202162" - ], - "Streptococcus_pyogenes_MGAS5005" : [ - "NC_007297" - ], - "Squash_leaf_curl_virus__JO1_113" : [ - "KM595155" - ], - "Thermoanaerobacterium_thermosaccharolyticum_DSM_571" : [ - "NC_014410" - ], - "Hepatitis_B_virus__THB20_LC" : [ - "JN664940" - ], - "Human_papillomavirus_type_2__C2" : [ - "EF362754" - ], - "Hepatitis_B_virus__HCUCH18" : [ - "HM585196" - ], - "Euphorbia_yellow_mosaic_virus__EuYMV__BR_GO_Luz768c_03" : [ - "JX415186" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI62_12" : [ - "HE979774" - ], - "Human_immunodeficiency_virus_1__CH198_TF" : [ - "KC156130" - ], - "Hepatitis_B_virus__C209" : [ - "EU939609" - ], - "Enterovirus_A71_EV71_Ningbo_CHN_107_2_2009" : [ - "JQ086365" - ], - "Tomato_spotted_wilt_virus__TSWV_5" : [ - "KC261950", - "KC261951", - "KC261952" - ], - "Frankia_symbiont_of_Datisca_glomerata" : [ - "NC_015657", - "NC_015656", - "NC_015664" - ], - "Dengue_virus_1__DENV_1_VE_BID_V1134_2007" : [ - "EU482609" - ], - "Mycobacterium_phage_Bernardo" : [ - "NC_022983" - ], - "Cucurbit_chlorotic_yellows_virus__Yilan" : [ - "JN126046" - ], - "Cleome_leaf_crumple_virus__BgV03B_1_C48" : [ - "JF694460" - ], - "Mink_coronavirus_strain_WD1127_WD1127" : [ - "NC_023760" - ], - "Cotton_leaf_curl_Burewala_alphasatellite__Pakistan_cotton_Burewala_2011" : [ - "HF567947" - ], - "Passiflora_latent_carlavirus" : [ - "NC_008292" - ], - "Hepatitis_B_virus__X28" : [ - "AM422939" - ], - "Dengue_virus_1__DENV_1_VN_BID_V995_2006" : [ - "EU482539" - ], - "Merkel_cell_polyomavirus_AmePI" : [ - "KF266965" - ], - "Runella_slithyformis_DSM_19594" : [ - "NC_015703", - "NC_015694", - "NC_015693", - "NC_015704", - "NC_015705", - "NC_015695" - ], - "Streptococcus_phage_SM1" : [ - "NC_004996" - ], - "Human_astrovirus_4_Dresden" : [ - "AY720891" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_88E_009_01_1988" : [ - "KP258715" - ], - "Human_immunodeficiency_virus_1__1001_07" : [ - "AY331282" - ], - "Human_enterovirus_79_USA_CA79_10384" : [ - "AY843297" - ], - "Paramecium_bursaria_chlorella_virus_MT325_MT325" : [ - "DQ491001" - ], - "Human_papillomavirus_type_11__LP255f" : [ - "HE962368" - ], - "South_African_cassava_mosaic_virus__MG_MG468A1_11" : [ - "KJ887721" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_Asia1_MOG_05" : [ - "EF614458" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3824_2006" : [ - "GU131910" - ], - "Sinorhizobium_phage_phiM7" : [ - "KR052480" - ], - "Watermelon_chlorotic_stunt_virus__PA2_Q20" : [ - "KM820286" - ], - "Cleome_leaf_crumple_virus__BR_Mar1_09" : [ - "HM195184" - ], - "Black_grass_cryptic_virus_2" : [ - "NC_026800", - "NC_026799" - ], - "Squash_leaf_curl_virus__JO1_630" : [ - "KM595173" - ], - "Bluetongue_virus_18__BT32_76" : [ - "JX272448" - ], - "Hepatitis_B_virus__TK57" : [ - "JF754589" - ], - "Hepatitis_B_virus__HBV_BAN81" : [ - "AB116084" - ], - "Hepatitis_C_virus__QC113" : [ - "KJ439775" - ], - "Sunn_hemp_leaf_distortion_virus" : [ - "NC_013019" - ], - "Watermelon_mosaic_virus__FMF00_LL1" : [ - "EU660581" - ], - "Hepatitis_B_virus_HB534" : [ - "JQ027323" - ], - "Maize_streak_Reunion_virus__MSRV_NG_NG9_Ife_2011" : [ - "KJ437670" - ], - "Alphavirus_M1__M1" : [ - "EF011023" - ], - "Sudan_ebolavirus__Ebola_virus_H_sapiens_tc_UGA_2000_Gulu_808892" : [ - "KR063670" - ], - "Mannheimia_haemolytica_USDA_ARS_SAM_185" : [ - "NC_020834" - ], - "Human_immunodeficiency_virus_1__CNHN24" : [ - "AY180905" - ], - "Porcine_circovirus_2_SXYIE_01" : [ - "KC800636" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2034_2003" : [ - "GQ868621" - ], - "Japanese_encephalitis_virus_YUNNAN0901" : [ - "JQ086762", - "JN864064" - ], - "Hepatitis_B_virus__A1_48143" : [ - "FJ692568" - ], - "Influenza_D_virus__D_bovine_France_2986_2012" : [ - "NC_026956", - "NC_026953", - "NC_026952", - "NC_026948", - "NC_026950", - "NC_026951", - "NC_026949" - ], - "Uukuniemi_virus__Potepli_63" : [ - "KM114247", - "KM114248", - "KM114246" - ], - "Hepatitis_B_virus__A317" : [ - "Z72478", - "Z72479" - ], - "Bovine_leukemia_virus_Arg41" : [ - "FJ914764" - ], - "Crimean_Congo_hemorrhagic_fever_virus__SPU_130_89" : [ - "KJ682807", - "KJ682821", - "KJ682802" - ], - "Dengue_virus_2__DC635Y12" : [ - "KM279537" - ], - "Pedilanthus_leaf_curl_virus__Crape_Jasmine___crape_jasmine" : [ - "JN807764" - ], - "Hepatitis_B_virus__8290" : [ - "AF241411" - ], - "Foot_and_mouth_disease_virus___type_O__MYA_5_2009" : [ - "KF112880" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_01NP1_2" : [ - "DQ056373" - ], - "Hantaanvirus_CGAa31P9_CGAa31P9" : [ - "EF990924", - "EF990910" - ], - "Papaya_leaf_curl_betasatellite__In_Var_Pum_08_1" : [ - "HM101173" - ], - "Hepatitis_B_virus__SHB3B4" : [ - "KJ598677" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_180_2012" : [ - "KJ686140" - ], - "Porcine_circovirus_2_TJ08" : [ - "FJ608547" - ], - "JC_polyomavirus_713A" : [ - "AF300963" - ], - "African_cassava_mosaic_virus__CF_CF7AN_07" : [ - "KJ887760" - ], - "Foot_and_mouth_disease_virus___type_A_A22_Iraq_a22iraq70_iso92" : [ - "AY593764" - ], - "Dengue_virus_1__DENV_1_NI_BID_V614_2005" : [ - "EU596502" - ], - "Acidovorax_JS42" : [ - "NC_008766", - "NC_008765", - "NC_008782" - ], - "Croton_yellow_vein_mosaic_betasatellite_India_Barrackpore2_2008___Barrackpore2" : [ - "GQ183865" - ], - "Human_immunodeficiency_virus_1__VI1126" : [ - "AF076475" - ], - "Escherichia_phage_Jk06" : [ - "NC_007291" - ], - "Yam_mild_mosaic_virus__SSY_FX_1" : [ - "KJ125474" - ], - "Honeysuckle_yellow_vein_mosaic_beta__Japan_Kumamoto_1998___Kum" : [ - "AB236327" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7599_2008" : [ - "KJ189332" - ], - "Enterobacteria_phage_Ike" : [ - "NC_002014" - ], - "Hepatitis_B_virus__Ia_5" : [ - "AY596105" - ], - "Eel_River_basin_pequenovirus__c20544" : [ - "KP087953" - ], - "Enterobacter_cloacae_ATCC_13047" : [ - "NC_014108", - "NC_014121", - "NC_014107" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_A2_4D_P" : [ - "JX570640" - ], - "Sphingobium_japonicum_UT26S" : [ - "NC_014005", - "NC_014009", - "NC_014013", - "NC_014006", - "NC_014007" - ], - "Helicobacter_felis_ATCC_49179" : [ - "NC_014810" - ], - "Rotavirus_A_RVA_Simian_tc_ESP_SA11_C411_2009_G3P_2" : [ - "KJ450841", - "KJ450836", - "KJ450832", - "KJ450838", - "KJ450831", - "KJ450839", - "KJ450834", - "KJ450840", - "KJ450833", - "KJ450837", - "KJ450835" - ], - "Porcine_parvovirus_NADL_2_M2" : [ - "KF913346" - ], - "Equid_herpesvirus_1_V592" : [ - "AY464052" - ], - "Human_adenovirus_55__Shanxi_QZ01_2011" : [ - "KJ883522" - ], - "Watermelon_chlorotic_stunt_virus__IL2_108" : [ - "KM820249" - ], - "Pepper_mottle_virus__57" : [ - "EU586121" - ], - "Rhizosolenia_setigera_RNA_virus_01__RsRNAV06" : [ - "NC_018613" - ], - "Variola_virus_Tanzania_1965_kembula" : [ - "DQ441443" - ], - "West_Nile_virus__WNV_1_US_BID_V6683_2006" : [ - "KJ501416" - ], - "Human_metapneumovirus_HMPV_AUS_144834728_2003_A" : [ - "KC562241" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10GX_1" : [ - "JQ663558" - ], - "Dengue_virus_2__FGU_Feb_93" : [ - "EU920828" - ], - "Beet_necrotic_yellow_vein_virus" : [ - "BNYVVR4B", - "BNYVVR3A", - "BNYVVR3B" - ], - "Human_immunodeficiency_virus_1__CU76" : [ - "AY586540" - ], - "Porcine_circovirus_2__PCV_F" : [ - "KC515024" - ], - "Hepatitis_B_virus__gib160" : [ - "AJ131572" - ], - "Corchorus_golden_mosaic_virus__India_Bahraich_2008___Bahraich" : [ - "FJ463902", - "FJ463901" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4987_spleen" : [ - "HQ891010" - ], - "Muscovy_duck_circovirus__FJFQ315" : [ - "GQ423744" - ], - "Encephalomyocarditis_virus_BJC3" : [ - "DQ464062" - ], - "Edwardsiella_tarda_C07_087" : [ - "NC_020796" - ], - "Hepatitis_B_virus__HBV66" : [ - "KC875258" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7712_2012" : [ - "KJ189357" - ], - "Hepatitis_B_virus__I38" : [ - "FJ562230" - ], - "Hepatitis_B_virus__P011_M2_170" : [ - "KJ173330" - ], - "JC_polyomavirus__336A" : [ - "AY386377" - ], - "Halovirus_HGTV_1" : [ - "NC_021328" - ], - "Chitinophaga_pinensis_DSM_2588" : [ - "NC_013132" - ], - "Dengue_virus_4__MKS_0706" : [ - "KC762697" - ], - "Hepatitis_B_virus__HBV_GA283" : [ - "AB205188" - ], - "Porcine_circovirus_2_09YN" : [ - "HQ395047" - ], - "Human_immunodeficiency_virus_1__98SE_MP1211" : [ - "AJ251056" - ], - "Listeria_phage_LP_030_3" : [ - "NC_024384" - ], - "Cotton_leaf_curl_Multan_virus____Bhatinda__05___Bhatinda" : [ - "DQ191160" - ], - "Dengue_virus_2__3337_BR_PE_95" : [ - "JX669482" - ], - "Acheta_domesticus_mini_ambidensovirus__Kalamazoo" : [ - "NC_022564" - ], - "Hepatitis_B_virus__HBV_TA62" : [ - "AB555499" - ], - "African_horse_sickness_virus" : [ - "JQ742009", - "NC_006018", - "NC_005996", - "NC_006012", - "JQ742012", - "JQ742014", - "NC_006009", - "JQ742007", - "JQ742008", - "X56676", - "NC_006021", - "JQ742010", - "NC_006017", - "JQ742011", - "JQ742013", - "NC_006020", - "JQ742015", - "NC_006011", - "JQ742006" - ], - "Hepatitis_B_virus__Ag28" : [ - "KJ843189" - ], - "Hepatitis_C_virus_subtype_1a__03_11" : [ - "EU781752" - ], - "Canine_distemper_virus_007Lm_1vp" : [ - "AB462810" - ], - "Banana_bunchy_top_virus__TO121" : [ - "JF957626", - "JF957650", - "JF957662", - "JF957638", - "JF957674", - "JF957686" - ], - "Pleurotus_ostreatus_virus_1" : [ - "NC_006960", - "NC_006961" - ], - "Bombyx_mori_nucleopolyhedrovirus_India" : [ - "JQ991010" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2801_2007" : [ - "FJ882551" - ], - "Bluetongue_virus_12__RSArrrr_12" : [ - "AJ586711" - ], - "Norovirus_Hu_GII_20162_2009_VNM_Hu_GII_20162_2009_VNM" : [ - "KC409259" - ], - "Feline_kobuvirus_FeKoV_TE_52_IT_13" : [ - "KM091960" - ], - "Dengue_virus_1_D1_Hu_Tokyo_NIID149_2014" : [ - "LC011947" - ], - "Human_coronavirus_NL63_NL63_DEN_2009_14" : [ - "JQ765564" - ], - "Porcine_parvovirus_6__BJ" : [ - "KF999681" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3669_2007" : [ - "GU131962" - ], - "West_Nile_virus__WNV_1_BID_V5045" : [ - "JN819318" - ], - "Porcine_circovirus_2__Huanan_7" : [ - "EF421972" - ], - "Hepatitis_B_virus__B3_4" : [ - "GU815609", - "HQ231879" - ], - "Tomato_leaf_curl_Taiwan_virus__YL7_8" : [ - "GU723715" - ], - "Tomato_leaf_curl_Ghana_virus__FGH5_3" : [ - "NC_010313" - ], - "Desulfobacca_acetoxidans_DSM_11109" : [ - "NC_015388" - ], - "Human_immunodeficiency_virus_1__ZM249M_flE10" : [ - "FJ496212" - ], - "Rhesus_adenovirus_52__stool" : [ - "NC_025827" - ], - "Dengue_virus_1_D1_SG_05K4175DK1_2005" : [ - "EU081264" - ], - "Hepatitis_B_virus__MMA_18" : [ - "AM421546" - ], - "Tomato_leaf_curl_China_betasatellite__Y238" : [ - "AM260715" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2279_2001" : [ - "FJ687435" - ], - "Hepatitis_B_virus__AIDS16" : [ - "JQ801474" - ], - "Phaeobacter_gallaeciensis_DSM_26640" : [ - "NC_023142", - "NC_023143", - "NC_023141", - "NC_023138", - "NC_023140", - "NC_023148", - "NC_023139", - "NC_023137" - ], - "Plantago_asiatica_mosaic_virus_Li3" : [ - "AB360792" - ], - "Citrus_tatter_leaf_virus_LCd_NA_1" : [ - "FJ355920" - ], - "Grapevine_chrome_mosaic_virus__H15" : [ - "HG939485" - ], - "Human_immunodeficiency_virus_1__CH256_TF" : [ - "KC156122" - ], - "Potato_leafroll_virus_CU87" : [ - "AF453393" - ], - "Hepatitis_B_virus__XW233" : [ - "FR714505" - ], - "Rhizobium_phage_vB_RleM_PPF1" : [ - "NC_025427" - ], - "Tomato_mosaic_virus__Penghu" : [ - "KJ207374" - ], - "Enterovirus_B85_HTPS_MKLH04F_XJ_CHN_2011" : [ - "JX898907" - ], - "Maize_streak_virus__UHoi_165" : [ - "EF547103" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_99_2012" : [ - "KJ686286" - ], - "Bovine_rotavirus_B_11_B_11" : [ - "AY047488" - ], - "Cucumber_mosaic_virus_satellite_RNA_K8_CMV" : [ - "X53534" - ], - "Hepatitis_C_virus_subtype_1a__00W" : [ - "EU781781" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V416_2001" : [ - "EU155315" - ], - "Desulfitobacterium_hafniense_DCB_2" : [ - "NC_011830" - ], - "Tomato_leaf_curl_China_betasatellite__Y295" : [ - "AM260730" - ], - "Enterovirus_A71__Wuhan1117_HuB_CHN_2011" : [ - "JX986738" - ], - "Chikungunya_virus_UgAg4155" : [ - "HM045812" - ], - "Hepatitis_C_virus__2011_FU24" : [ - "EU362880" - ], - "Bacteriophage_APSE_2__T5A" : [ - "NC_011551" - ], - "Hepatitis_E_virus__IND_HEV_FHF5_2007" : [ - "JF443726" - ], - "Friend_murine_leukemia_virus" : [ - "X02794", - "A42090", - "MLFCG" - ], - "Impatiens_necrotic_spot_virus_NL_07" : [ - "NC_003625", - "NC_003624" - ], - "Human_rhinovirus_B27" : [ - "EF173421" - ], - "Hepatitis_B_virus__AnkaraE24" : [ - "AB674424" - ], - "Merkel_cell_polyomavirus__FraMerk20" : [ - "JN383839" - ], - "Human_immunodeficiency_virus_1__04ZASK128B1" : [ - "DQ093586" - ], - "Galleria_mellonella_densovirus_GmDNV" : [ - "NC_004286" - ], - "Feline_immunodeficiency_virus" : [ - "E43300", - "AY713445", - "NC_001482", - "DD029017" - ], - "Human_herpesvirus_5_BE_15_2010" : [ - "KP745638" - ], - "Tomato_leaf_curl_Sudan_virus__ToLCSDV_Gez" : [ - "NC_005855" - ], - "Human_herpesvirus_5_BE_12_2012" : [ - "KP745688" - ], - "Rice_stripe_virus__YCX07" : [ - "EU931496", - "EU931497", - "EU931495", - "EU931494" - ], - "Ramie_mosaic_virus__F4" : [ - "FJ874927" - ], - "Mycobacterium_phage_Phaux" : [ - "NC_021311" - ], - "Escherichia_phage_PE3_1__PE3_1" : [ - "NC_024379" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V272_2003" : [ - "EU482859" - ], - "Bean_golden_mosaic_virus__BgV03A_1_C3" : [ - "JF694449" - ], - "Hepatitis_B_virus__cur1051" : [ - "KC774237" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2495_2007" : [ - "FJ882586" - ], - "Temperate_fruit_decay_associated_virus__MFBpe18" : [ - "KR134338" - ], - "Dengue_virus_4_814669" : [ - "AF326573" - ], - "Hepatitis_B_virus_FMC_97" : [ - "AF411411" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1OVC" : [ - "KC189895" - ], - "Porcine_circovirus_2_Fh16" : [ - "AY321993" - ], - "Hepatitis_B_virus_580_3a" : [ - "KR013813" - ], - "Hepatitis_B_virus__S3_3" : [ - "EU916213" - ], - "Viral_hemorrhagic_septicemia_virus_SE_SVA_1033_9C" : [ - "AB839747" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3565_2006" : [ - "GU131839" - ], - "Hepatitis_B_virus__KOR48HCC" : [ - "GQ475352" - ], - "Tomato_yellow_leaf_curl_virus___Mild_Tokai" : [ - "AB439842" - ], - "Dengue_virus_2__MKS_IF014" : [ - "KC762668" - ], - "Hepatitis_B_virus_wenlin61" : [ - "AF182802" - ], - "Dengue_virus_3__DENV_3_US_BID_V1453_1999" : [ - "EU726773" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2796_2007" : [ - "GQ199815" - ], - "Human_immunodeficiency_virus_1__DJ263" : [ - "AB485634", - "AB485635", - "AF063223" - ], - "Human_cyclovirus_7078A" : [ - "NC_023874" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V19_2004" : [ - "EU482878" - ], - "Porcine_circovirus_2_09LN" : [ - "HQ395040" - ], - "Hepatitis_A_virus__IND_HAV_06F" : [ - "FJ360730" - ], - "Human_herpesvirus_3_CA123" : [ - "DQ457052" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_rV63" : [ - "EU360129" - ], - "Foot_and_mouth_disease_virus_O_UKG_7299_2001_UKG_7299_2001" : [ - "EF552692" - ], - "Western_equine_encephalitis_virus_CNTR34" : [ - "KJ554984" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4308_2007" : [ - "GU131945" - ], - "Rabies_virus_Lao2" : [ - "AB981663" - ], - "Porcine_circovirus_1_TJ1307" : [ - "KJ808815" - ], - "Hepatitis_B_virus__H4_zhus" : [ - "AY862868", - "AY862867" - ], - "Beet_yellows_virus__Californian" : [ - "AF056575" - ], - "Squash_leaf_curl_virus__IL3_101" : [ - "KM595124" - ], - "Chikungunya_virus_ArD_93229" : [ - "HM045819" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2893_2006" : [ - "GQ199852" - ], - "Bean_golden_mosaic_virus__Brazil_SAdG_7_soybean_2008" : [ - "FJ665283" - ], - "Maize_streak_virus__MSV_B1_Za_Nat_M43_1988" : [ - "EU628594" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4066_2008" : [ - "GU131815" - ], - "Encephalomyocarditis_virus_FJ13" : [ - "KF293299" - ], - "Rice_ragged_stunt_virus_Thai_isolate" : [ - "NC_003770", - "NC_003769", - "NC_003771", - "NC_003759" - ], - "Norovirus_Hu_GII_4_Fukui2_2008_JP_Hu_GII_4_Fukui2_2008_JP" : [ - "AB541246" - ], - "Enterovirus_A71__EV71_9_97_SHA89" : [ - "AJ586873" - ], - "HBV_recombinant_C_G__NAB46" : [ - "AB644285" - ], - "Eupatorium_yellow_vein_virus__SOJ3___Fukuoka_SOJ3" : [ - "AJ438937" - ], - "Bluetongue_virus_2__8340" : [ - "DQ191272" - ], - "Human_metapneumovirus_HMPV_USA_TN_82_518_1982_A" : [ - "KC403973" - ], - "Wesselsbron_virus_AV259" : [ - "JN226796" - ], - "Human_mastadenovirus_B_human_USA_CL_44_1988_7_P7H7F7" : [ - "KF268125" - ], - "Rabbit_hemorrhagic_disease_virus_Meiningen" : [ - "EF558577" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V148_2004" : [ - "EU155221" - ], - "Guanarito_mammarenavirus_CVH_961104" : [ - "AY572561" - ], - "Hepatitis_C_virus__isolate_HC_G9___HC_G9" : [ - "HPCCGS" - ], - "Beak_and_feather_disease_virus__BFDV_Q_PL_1240_2011" : [ - "JX221009" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4750_2009" : [ - "JF937632" - ], - "Human_immunodeficiency_virus_2_ROD_isolate" : [ - "X05291" - ], - "Acholeplasma_phage_L2" : [ - "NC_001447" - ], - "Bos_taurus_papillomavirus_7" : [ - "NC_007612" - ], - "Po_Circo_like_virus_51" : [ - "NC_025684" - ], - "Coxsackievirus_B3_GZ803_GZ08_803" : [ - "FJ357838" - ], - "BK_polyomavirus__TW_4" : [ - "AB211382" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4753_2009" : [ - "HQ541806" - ], - "Tomato_yellow_leaf_curl_Vietnam_virus" : [ - "NC_009548" - ], - "Hepatitis_B_virus__S1732_6" : [ - "FJ787474" - ], - "Rift_Valley_fever_virus_ZH548_derivative_M12" : [ - "X56464" - ], - "Swine_hepatitis_E_virus_swCH25" : [ - "AY594199" - ], - "Hepatitis_B_virus__PNF5380" : [ - "KF779365" - ], - "Dengue_virus_2__DC719Y12" : [ - "KM279597" - ], - "Streptococcus_oligofermentans_AS_1_3089" : [ - "NC_021175" - ], - "Sewage_associated_circular_DNA_molecule__SaCM_4_NZ_BS2920_2012" : [ - "NC_026187" - ], - "Kappapapillomavirus_2" : [ - "NC_001541" - ], - "Cavally_virus__C79" : [ - "NC_015668" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_176_2012" : [ - "KJ686234" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3964_2008" : [ - "GU131744" - ], - "Sclerotinia_sclerotiorum_debilitation_associated_RNA_virus_2__SX247" : [ - "NC_024298" - ], - "Salmonella_phage_SFP10" : [ - "NC_016073" - ], - "Porcine_circovirus_2__A5297" : [ - "JF317586" - ], - "Human_papillomavirus_type_6__94" : [ - "HG793902" - ], - "Mink_coronavirus_strain_WD1133_WD1133" : [ - "HM245926" - ], - "Human_bocavirus_CQ201006" : [ - "JN387079" - ], - "West_Nile_virus__WNV_1_US_BID_V4699_2003" : [ - "JN183890" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3900_2008" : [ - "GU131723" - ], - "Hepatitis_B_virus_327_4" : [ - "KR013774" - ], - "Hepatitis_B_virus_GIII_15" : [ - "AY781180" - ], - "Human_immunodeficiency_virus_1__C_ZA_1228MB" : [ - "AY463222" - ], - "Dengue_virus_1__DENV_1_VN_BID_V935_2006" : [ - "EU482480" - ], - "Hepatitis_B_virus__Leb28" : [ - "JN642138" - ], - "Dengue_virus_3__DENV3_BR_D3LIMHO_2006" : [ - "JN697379" - ], - "Microviridae_Fen7940_21__Fen7940_21" : [ - "NC_027648" - ], - "West_Nile_virus_2_CO_2003_2" : [ - "DQ164203" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9501_2013" : [ - "KJ643556" - ], - "Hepatitis_B_virus__I113" : [ - "FJ562263" - ], - "Hepatitis_B_virus__2392" : [ - "FJ386634" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota61_2013" : [ - "KJ645705" - ], - "Duck_circovirus__FC32_2012" : [ - "KC460524" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2766_2007" : [ - "GQ199790" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__JS2012_020" : [ - "KC505142", - "KC505141", - "KC505143" - ], - "Rotavirus_A_RVA_Human_wt_ITA_ASTI23_2007_G9P8_RVA_Human_wt_ITA_ASTI23_2007_G9P8_ASTI23" : [ - "JX185763", - "JX185767", - "JX185766", - "JX185762", - "JX185768", - "JX185758", - "JX185760", - "JX185761", - "JX185765", - "JX185759" - ], - "Helicobacter_bizzozeronii_CIII_1" : [ - "NC_015670", - "NC_015674" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2205_2007" : [ - "FJ639772" - ], - "Hepatitis_B_virus_1463_16" : [ - "KR014069" - ], - "African_cassava_mosaic_virus__TD_TD4AB_08" : [ - "KJ888099" - ], - "Hepatitis_delta_virus_dFr2139" : [ - "AM183332" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V158_2003" : [ - "EU155228" - ], - "Hepatitis_B_virus_Ehi_SK_lam_2_3" : [ - "AB195935" - ], - "Hepatitis_C_virus_subtype_1a__03S" : [ - "EU781780" - ], - "Avian_leukosis_virus__NM2002_1" : [ - "HM235669" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8437_2001" : [ - "KJ627687" - ], - "Tomato_yellow_leaf_curl_virus__ZJ3" : [ - "AM698117" - ], - "Simian_adenovirus_1_ATCC_VR_195" : [ - "NC_006879" - ], - "Hepatitis_B_virus__TK79" : [ - "JF754604" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1010_2006" : [ - "EU482454" - ], - "Hepatitis_B_virus__016_EA_Gap" : [ - "KF873518" - ], - "Cowpox_virus_France_2001_Nancy" : [ - "HQ420894" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2666_2000" : [ - "FJ873808" - ], - "Hepatitis_E_virus__JAK_Sai" : [ - "AB074915" - ], - "Human_immunodeficiency_virus_1__ZM246F_flA1" : [ - "FJ496185" - ], - "Enterovirus_A71_TW_1956_05" : [ - "GQ231926" - ], - "Hepatitis_B_virus__HBV_14N" : [ - "EU660227" - ], - "Porcine_circovirus_2__P624LB" : [ - "JX099783" - ], - "Classical_swine_fever_virus__JSZL" : [ - "KT119352" - ], - "Bluetongue_virus_9034_03" : [ - "AY775156" - ], - "Hepatitis_B_virus__HBV_9873" : [ - "AF121251" - ], - "Hepatitis_B_virus_274_12a" : [ - "KR013898" - ], - "Murine_norovirus_GV_CR4_2005_USA__Mu_NoV_GV_CR4_2005_USA" : [ - "EU004674" - ], - "Cronobacter_phage_CR9" : [ - "NC_023717" - ], - "Bean_golden_mosaic_virus__BR_Vis13_11" : [ - "KJ939735" - ], - "Canine_parvovirus_2c__UY185" : [ - "KM457116" - ], - "Hepatitis_B_virus__B65" : [ - "FJ904447" - ], - "Foot_and_mouth_disease_virus___type_O__DRK_31_2011" : [ - "KF112888" - ], - "Alkhumra_hemorrhagic_fever_virus_200905926" : [ - "JF416962" - ], - "Phytophthora_endornavirus_1" : [ - "NC_007069" - ], - "Morumbi_virus" : [ - "HM119423", - "HM119424", - "HM119422" - ], - "Rickettsia_prowazekii_BuV67_CWPP" : [ - "NC_017056" - ], - "Hepatitis_B_virus__P57" : [ - "AB493836", - "GQ477486" - ], - "Dengue_virus_1__DENV_1_TH_BID_V2269_2001" : [ - "FJ687426" - ], - "Rabies_virus__192J09" : [ - "JX473839" - ], - "BK_polyomavirus__CH_1" : [ - "KP984526" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V61_2001" : [ - "EU256019" - ], - "Ageratum_yellow_vein_virus" : [ - "KC677733", - "FJ495183", - "KC282641", - "NC_004626" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_5_2011" : [ - "KJ686191" - ], - "Porcine_circovirus_2_JX1110" : [ - "JX948780" - ], - "Potato_virus_A__Hunan" : [ - "KF977085" - ], - "Crimean_Congo_hemorrhagic_fever_virus_TADJ_HU8966" : [ - "AY720893" - ], - "Hepatitis_delta_virus_Miyako_JA_M16" : [ - "AB118831" - ], - "Infectious_salmon_anemia_virus__390_98" : [ - "AJ277461", - "ISA276858" - ], - "Mungbean_yellow_mosaic_virus__Urdbean_New_Delhi_2011___New_Delhi" : [ - "JQ398670", - "JQ398669" - ], - "Chikungunya_virus__NL10_152" : [ - "KC862329" - ], - "Human_immunodeficiency_virus_1__DH12" : [ - "AF069140" - ], - "Papaya_ringspot_virus_P__prT3_AX_M_Ph" : [ - "JX448371" - ], - "Hepatitis_B_virus__HBV8" : [ - "KC875315" - ], - "Wheat_dwarf_virus__GZGY07_3" : [ - "KJ536087" - ], - "Dengue_virus_1__DENV_1_BR_BID_V2378_2001" : [ - "FJ850073" - ], - "Human_immunodeficiency_virus_1__SE9010" : [ - "AY352655" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_6__AHEaCV_6_NZ_3103C1_2012" : [ - "KM874304" - ], - "Dengue_virus_1__DENV_1_VN_BID_V959_2007" : [ - "EU482504" - ], - "Norovirus_Hu_GII_4_NIHIC4_2_2011_USA_Hu_GII_4_NIHIC4_2_2011_USA" : [ - "KC576909" - ], - "JC_polyomavirus__JCV144_27" : [ - "JF424884" - ], - "West_Nile_virus__WNV_1_US_BID_V6506_2002" : [ - "KJ501489" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_8__AHEaCV_8_NZ_3159C1_2012" : [ - "KM874310" - ], - "Vaccinia_virus_MVATGN33_1" : [ - "EF675191" - ], - "Human_herpesvirus_5_U8" : [ - "GU179288" - ], - "Porcine_circovirus_2__GZ_PX" : [ - "KC788505" - ], - "Hepatitis_B_virus__FMD70" : [ - "GU332692" - ], - "West_Nile_virus__WNV_1_US_BID_V4353_2004" : [ - "HM488188" - ], - "Human_immunodeficiency_virus_1__WC10C_4" : [ - "AY314056" - ], - "Wheat_dwarf_virus" : [ - "FJ620684", - "AM980882" - ], - "Porcine_circovirus_2__V1313" : [ - "KJ128271" - ], - "Porcine_circovirus_2__DE144_14" : [ - "KP698405" - ], - "Hepatitis_B_virus__NB129C_m130" : [ - "KJ173301" - ], - "Human_rhinovirus_A51_ATCC_VR_1161" : [ - "FJ445136" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM095" : [ - "KM034550" - ], - "Beak_and_feather_disease_virus__BFDV_NC13_35" : [ - "KF768545" - ], - "JC_polyomavirus__324A" : [ - "AY376828" - ], - "Newcastle_disease_virus__NDV03" : [ - "FJ386394" - ], - "Tomato_leaf_curl_Vietnam_virus__Hung_Yen" : [ - "GQ338766" - ], - "Pouzolzia_golden_mosaic_virus__TY01" : [ - "NC_023849" - ], - "Temperate_fruit_decay_associated_virus__MFB19" : [ - "KR134317" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_33_2011" : [ - "KJ686204" - ], - "MW_polyomavirus__HB039C" : [ - "KC571701" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0055" : [ - "KP759723" - ], - "Hepatitis_B_virus__LAMr_Pt__4" : [ - "AB367395" - ], - "Hepatitis_B_virus__GZ_DYF" : [ - "DQ448620" - ], - "Ectocarpus_siliculosus_virus_1" : [ - "NC_002687" - ], - "Hepatitis_B_virus__S1175_1" : [ - "EU589336" - ], - "Mycobacterium_phage_Contagion" : [ - "NC_022065" - ], - "Tomato_yellow_leaf_curl_virus__AH1" : [ - "FJ646611" - ], - "Coxsackievirus_A16_TS10_07" : [ - "JX068827" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10QY_GD" : [ - "JX215552" - ], - "Junin_mammarenavirus_rXJ13" : [ - "FJ805379", - "FJ805380" - ], - "Pseudomonas_phage_MP1412" : [ - "NC_018282" - ], - "Taura_syndrome_virus__Saudi_Arabia" : [ - "JX094350" - ], - "Propionibacterium_phage_PAS50" : [ - "NC_015453" - ], - "Norovirus_GIII_Norovirus_Bo_GIII_2_Adam_2006_No" : [ - "JX145650" - ], - "Human_immunodeficiency_virus_1__Fj063" : [ - "EF036532" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7580_2007" : [ - "KJ189319" - ], - "Enterovirus_A71__EV003_07" : [ - "HQ647173" - ], - "Rabbit_coronavirus_HKU14_HKU14_3" : [ - "JN874560" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_82I_158A_01_1982" : [ - "KJ723478" - ], - "Dengue_virus_1__MKS_2194" : [ - "KC762648" - ], - "Human_immunodeficiency_virus_1__BREPM1028" : [ - "EF637053" - ], - "Cucumber_mosaic_virus__Na_CMV" : [ - "DQ785471" - ], - "Human_bocavirus__HK2" : [ - "EF450718" - ], - "Murine_norovirus_GV_CR1_2005_USA__Mu_NoV_GV_CR1_2005_USA" : [ - "EU004672" - ], - "Hepatitis_B_virus__patient23" : [ - "EU919162", - "EU919161" - ], - "Hepatitis_C_virus__QC260" : [ - "JF735123" - ], - "Toscana_virus_T152" : [ - "JX867534", - "JX867536", - "JX867535" - ], - "Tomato_leaf_curl_New_Delhi_virus____Potato" : [ - "AY158080" - ], - "Pyrobaculum_calidifontis_JCM_11548" : [ - "NC_009073" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V233_2004" : [ - "EU255929" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus" : [ - "NC_014361" - ], - "Yellow_fever_virus_BeAR646536" : [ - "JF912189" - ], - "Sugarcane_mosaic_virus__SCMV_SX" : [ - "AY569692" - ], - "Ageratum_yellow_vein_China_virus__Hn2" : [ - "NC_004090" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US4" : [ - "KJ019105" - ], - "Tomato_yellow_leaf_curl_virus__Damyon_17" : [ - "JN183874" - ], - "Foot_and_mouth_disease_virus___type_O__TUR_926_2010" : [ - "JX040496" - ], - "Torque_teno_virus__TWH" : [ - "AF351132" - ], - "Human_immunodeficiency_virus_1__C_ZA_J112MA" : [ - "AY585265" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__SX2007" : [ - "EU880434" - ], - "Hepatitis_B_virus_951_11a" : [ - "KR013995" - ], - "Enterovirus_A71_26M_AUS_4_99" : [ - "EU364841", - "EU376005", - "EU376004" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_LBC_LBC7" : [ - "KF385422" - ], - "Dengue_virus_3__DENV_3_US_BID_V1075_1998" : [ - "EU482563" - ], - "Human_herpesvirus_3_SVETA" : [ - "EU154348" - ], - "Hepatitis_B_virus__cxa2053" : [ - "KC774322" - ], - "Hepatitis_C_virus_subtype_1a__DN07" : [ - "EU781815" - ], - "Rice_tungro_bacilliform_virus__West_Bengal" : [ - "AJ314596" - ], - "JC_polyomavirus__UR_15" : [ - "AB113142" - ], - "Porcine_circovirus_2__Xuancheng" : [ - "FJ712215" - ], - "Mulberry_vein_banding_virus__XCBY_1" : [ - "KM819709" - ], - "Campylobacter_jejuni_4031" : [ - "NC_022529" - ], - "Fervidobacterium_pennivorans_DSM_9078" : [ - "NC_017095" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0032" : [ - "KP759691" - ], - "Dengue_virus_2__DENV_2_VN_BID_V712_2006" : [ - "EU482649" - ], - "Human_papillomavirus_type_16_CU6" : [ - "FJ610151" - ], - "Sacbrood_virus_AmSBV_Kor19" : [ - "JQ390592" - ], - "Hepatitis_B_virus__bba10" : [ - "KP341011" - ], - "Human_immunodeficiency_virus_1__MS2004_37_068" : [ - "EF178366" - ], - "West_Nile_virus__LEIV_Vlg99_27889" : [ - "AY277252" - ], - "Sida_micrantha_mosaic_virus__Brazil_Mato_grosso_do_sul_1_2007" : [ - "FN436003", - "FN436004" - ], - "Human_herpesvirus_5_VR1814" : [ - "GU179289" - ], - "Torque_teno_virus__tth5" : [ - "AJ620227" - ], - "Hepatitis_B_virus__582_1" : [ - "AY217363" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD24_2013" : [ - "KM229880" - ], - "Hepatitis_B_virus__Leb53" : [ - "JN642160" - ], - "Human_papillomavirus_type_107__FA85" : [ - "EF422221" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8483_2001" : [ - "KJ627704" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2078_2002" : [ - "FJ639721" - ], - "Escherichia_phage_Akfv33" : [ - "NC_017969" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2711_2006" : [ - "FJ882536" - ], - "Japanese_encephalitis_virus__Fj02_29" : [ - "JF706273" - ], - "Dengue_virus_2__DENV_2_US_BID_V598_1999" : [ - "EU482729" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Forecariah_1623" : [ - "KR534568" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1149" : [ - "KR534582" - ], - "Human_immunodeficiency_virus_1__DR1673" : [ - "AB564744", - "AB564745" - ], - "Hepatitis_B_virus__EG75" : [ - "AB104712" - ], - "Porcine_circovirus_2__NT2" : [ - "HQ202965" - ], - "Coxsackievirus_A16_shzh05_1" : [ - "EU262658" - ], - "Turnip_mosaic_virus__IRN_SS5" : [ - "AB440239" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_69_68" : [ - "JX869186" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1833_2007" : [ - "FJ547062" - ], - "Beak_and_feather_disease_virus__BFDV_NC13_20" : [ - "KF768549" - ], - "Hepatitis_B_virus__B3586_YKH94" : [ - "EF157291" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_414N3__414N3" : [ - "JN819505" - ], - "West_Nile_virus_Ig2266" : [ - "JX041632" - ], - "Chikungunya_virus__BHI3745_H804709" : [ - "KP164570" - ], - "Synechococcus_phage_ACG_2014h" : [ - "NC_023587" - ], - "Enterobacteria_phage_phiX174__Anc" : [ - "AF176034" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_106_2012" : [ - "KJ672424" - ], - "Porcine_circovirus_2__DK428case" : [ - "EF565349" - ], - "Human_papillomavirus_type_52__Qv03719" : [ - "HQ537745" - ], - "Human_herpesvirus_5_BE_13_2010" : [ - "KP745645" - ], - "JC_polyomavirus__315A" : [ - "AY342299" - ], - "Circoviridae_18_LDMD_2013" : [ - "NC_025722" - ], - "Pepino_mosaic_virus__P11" : [ - "JN133846" - ], - "Dengue_virus_2__E1439Y12" : [ - "KM279601" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2212_2003" : [ - "FJ639779" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2761_2007" : [ - "GQ199785" - ], - "Goose_parvovirus_VG32_1" : [ - "EU583392" - ], - "Hepatitis_delta_virus__D64" : [ - "KJ744254" - ], - "Hepatitis_B_virus__AnkaraE44" : [ - "AB674425" - ], - "Campylobacter_fetus_82_40" : [ - "NC_008599" - ], - "Hepatitis_B_virus__G1_5" : [ - "GU815755" - ], - "Hepatitis_B_virus_468_18" : [ - "KR013932" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V44_2001" : [ - "EU595698" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA0489_2008" : [ - "KJ627353" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG90A1_07" : [ - "KJ887903" - ], - "Hepatitis_B_virus__N005v2" : [ - "KF922415" - ], - "JC_polyomavirus__Luz_1" : [ - "AB113125" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_8_1" : [ - "KC106636" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8134_2010" : [ - "KJ627326" - ], - "Thermacetogenium_phaeum_DSM_12270" : [ - "NC_018870" - ], - "East_African_cassava_mosaic_Zanzibar_virus__SB4" : [ - "HE806430" - ], - "Maize_dwarf_mosaic_virus__Sz0605" : [ - "FM883211" - ], - "Enterovirus_A71__V08_2221581" : [ - "KC436269" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__YN57_04" : [ - "KC149951" - ], - "Hepatitis_C_virus_subtype_2a_JFH2_1" : [ - "AB690460" - ], - "Nitratiruptor_SB155_2" : [ - "NC_009662" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3402_2005" : [ - "GQ868576" - ], - "WU_Polyomavirus__C40" : [ - "GU296396" - ], - "Porcine_parvovirus_5__IA469" : [ - "NC_023020", - "JX896320" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Hawkeye4_After" : [ - "EF532812" - ], - "Salmonella_phage_FSLSP088" : [ - "NC_021780" - ], - "Blueberry_red_ringspot_virus__Coville_546" : [ - "JF421559" - ], - "Chlamydia_psittaci_01DC12" : [ - "NC_019391", - "NC_019392" - ], - "Macroptilium_yellow_spot_virus__BR_Sti37_11" : [ - "KJ939894" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_Z1557_2011_G3P_8__Z1557" : [ - "KF372003", - "KF372002", - "KF372005", - "KF372001", - "KF372007", - "KF372008", - "KF371999", - "KF372000", - "KF372004" - ], - "Tomato_yellow_leaf_curl_China_virus_Tb_Y5___Y5" : [ - "AJ319674" - ], - "Tent_making_bat_hepatitis_B_virus__TBHBV_Pan372_Uro_bil_PAN_2010" : [ - "NC_024445" - ], - "Cyanothece_PCC_7822" : [ - "NC_014501", - "NC_014504", - "NC_014534", - "NC_014533", - "NC_014502", - "NC_014503", - "NC_014535" - ], - "Bacillus_phage_Bam35c" : [ - "NC_005258" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0129" : [ - "KP759600" - ], - "Norovirus_Hu_GII_4_Hiroshima2_2008_JP_Hu_GII_4_Hiroshima2_2008_JP" : [ - "AB541254" - ], - "Bundibugyo_virus__EboBund_112_2012" : [ - "KC545393" - ], - "Human_herpesvirus_1_F" : [ - "GU734771" - ], - "African_cassava_mosaic_virus__CF_CF351A_08" : [ - "KJ887813" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_72U23_1972_IE" : [ - "KC344467" - ], - "Human_parechovirus_3__651689" : [ - "GQ183029" - ], - "Borrelia_miyamotoi_LB_2001" : [ - "NC_022079" - ], - "Chickpea_chlorotic_dwarf_virus__F_PL148_97" : [ - "KC172666" - ], - "Bean_golden_mosaic_virus__BR_Cri2_12" : [ - "KJ939838" - ], - "Turkey_coronavirus_TCoV_VA_74_03" : [ - "GQ427173" - ], - "Human_immunodeficiency_virus_1__SE365" : [ - "AB485648", - "AB485649" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_9__AHEaCV_9_NZ_3171C1_2012" : [ - "KM874315" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C72" : [ - "KJ019046" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__CC_1" : [ - "EF153486" - ], - "Japanese_encephalitis_virus_SH17M_07" : [ - "EU429297" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_12_DRC" : [ - "JX458840" - ], - "Papaya_leaf_curl_China_virus__G111" : [ - "HG003651" - ], - "Hepatitis_B_virus__919074" : [ - "JN040802" - ], - "Ugandan_cassava_brown_streak_virus_UG_Uganda_Namulonge_2004" : [ - "NC_014791" - ], - "Porcine_circovirus_2_FJZZ0512" : [ - "GU247987" - ], - "Hepatitis_B_virus__HK477" : [ - "DQ089798" - ], - "Norovirus_Hu_GI_1_8MC_1978_USA_Hu_GI_1_8MC_1978_USA" : [ - "KF429789" - ], - "Hepatitis_B_virus__SamsunD54" : [ - "AB674427" - ], - "Coxsackievirus_A6__5069_SH_CHN_2013" : [ - "KJ541158" - ], - "West_Nile_virus__WNV_1_US_BID_V4583_2003" : [ - "HM488218" - ], - "JC_polyomavirus__SO_1" : [ - "AB127012" - ], - "Cauliflower_mosaic_virus__IRN15" : [ - "AB863150" - ], - "JC_polyomavirus__SA296_02" : [ - "AY536241" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_YN_2011" : [ - "JX857698" - ], - "Glaciecola_nitratireducens_FR1064" : [ - "NC_016041" - ], - "Hepatitis_B_virus__cxa1196" : [ - "KC774292" - ], - "Human_herpesvirus_8_KSHV_BAC36" : [ - "HQ404500" - ], - "Chikungunya_virus_MY021IMR_06_BP" : [ - "EU703762" - ], - "Sweet_potato_leaf_curl_Canary_virus__ES_CI_BG4_02" : [ - "EF456742" - ], - "Dengue_virus_1_D1_SG_05K3935DK1_2005" : [ - "EU081253" - ], - "Human_herpesvirus_5_Davis" : [ - "JX512198" - ], - "Tomato_common_mosaic_virus__BR_Pda27_05" : [ - "KC706604" - ], - "Dengue_virus_1__DENV_1_US_BID_V2131_1996" : [ - "FJ410182" - ], - "Rhynchosia_yellow_mosaic_India_virus__Thiruvananthapuram" : [ - "NC_014903", - "NC_014902" - ], - "Sindbis_virus__Ilomantsi_2002A" : [ - "JQ771794" - ], - "multispecies" : [ - "NC_021838", - "NC_021848", - "NC_021828", - "NC_021825", - "NC_021822", - "NC_021847", - "NC_022045", - "NC_021827", - "NC_022046", - "NC_021840", - "NC_021824", - "NC_021839", - "NC_021834", - "NC_021826", - "NC_022047", - "NC_021837", - "NC_021823", - "NC_022051", - "NC_021821" - ], - "JC_polyomavirus__LA_13" : [ - "AB081609" - ], - "Zymomonas_mobilis_ATCC_10988" : [ - "NC_017185", - "NC_017181", - "NC_017183", - "NC_017182", - "NC_017262", - "NC_017180", - "NC_017184" - ], - "Campylobacter_coli_CVM_N29710" : [ - "NC_022347", - "NC_022348", - "NC_022355" - ], - "Dengue_virus_2__87086_BR_PE_02" : [ - "JX669488" - ], - "Escherichia_phage_T5_st0_deletion_mutant" : [ - "AY692264" - ], - "Eastern_equine_encephalitis_virus_EEEV_Corvus_brachyrhynchos_USA_DES527_01_2001" : [ - "KJ469560" - ], - "Hepatitis_B_virus_419_12" : [ - "KR013780" - ], - "Hepatitis_B_virus__J89" : [ - "GQ377558" - ], - "Human_immunodeficiency_virus_1__ML1076" : [ - "EU110086" - ], - "Homalodisca_vitripennis_reovirus__NC2" : [ - "GU437850" - ], - "Cotton_leaf_curl_Multan_betasatellite__GY2" : [ - "JQ963628" - ], - "Soybean_mosaic_virus__XFQ020" : [ - "KP710878" - ], - "Tomato_yellow_leaf_curl_Mali_virus_Mali_Cameroon_Gashiga_Tomato2_2007" : [ - "FM212663" - ], - "Mycobacterium_chubuense_NBB4" : [ - "NC_018027", - "NC_018023", - "NC_018022" - ], - "Human_papillomavirus_type_118__HPV_b_wart3" : [ - "GQ246951" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PAN_474590_1997_ID" : [ - "KC344473" - ], - "Diuris_virus_B__SW3_3" : [ - "NC_019030" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__VR_2332" : [ - "AY150564" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_291" : [ - "JQ900258" - ], - "Rice_dwarf_virus_Chinese_strain" : [ - "NC_003773", - "NC_003762", - "NC_003764", - "NC_003763", - "NC_003760", - "NC_003765", - "NC_003766", - "NC_003761", - "NC_003774", - "NC_003768" - ], - "Human_coronavirus_OC43_OC43_human_USA_925_1_1992" : [ - "KF530071" - ], - "Candidatus_Kinetoplastibacterium_crithidii_TCC036E" : [ - "NC_020283" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V197_1989" : [ - "EU155342" - ], - "Hepatitis_B_virus__S395" : [ - "FJ386668" - ], - "Hepatitis_B_virus_513_8a" : [ - "KR013796" - ], - "Potato_virus_Y_NTN_NTNKGAM2" : [ - "AB711145" - ], - "Mycobacterium_phage_HanShotFirst" : [ - "NC_022975" - ], - "Murine_coronavirus_RA59_R13_RA59_R13" : [ - "FJ647218" - ], - "Hepatitis_B_virus__HBV_719" : [ - "AF121247" - ], - "Mycoplasma_hyopneumoniae_168" : [ - "NC_017509" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ10AK1_2005" : [ - "JF909202" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C66" : [ - "KJ019041" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK11" : [ - "KF287138" - ], - "East_African_cassava_mosaic_virus_KE2__EACMV_KE2_K25" : [ - "AJ717538", - "AJ704950" - ], - "Human_respiratory_syncytial_virus_A_WI_629_3_06_07" : [ - "JF920069" - ], - "Fikirini_bat_rhabdovirus__KEN352" : [ - "NC_025341" - ], - "Hepatitis_B_virus__IND_2008_1" : [ - "KF214657" - ], - "Human_immunodeficiency_virus_1__PS4048_Day0" : [ - "DQ676886" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Tie_Okra1" : [ - "FN554519" - ], - "Human_immunodeficiency_virus_1__05YNRL09sg" : [ - "KC898977" - ], - "Vibrio_phage_phi_A318" : [ - "NC_025822" - ], - "West_Nile_virus__WNV_1_US_BID_V6419_2002" : [ - "KJ501287" - ], - "Hepatitis_B_virus__HK1733" : [ - "DQ089758" - ], - "Human_papillomavirus_type_31__QV00215" : [ - "HQ537671" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_SN05" : [ - "FJ895884" - ], - "Newcastle_disease_virus__ndv32_vaherakhadi_04_2013" : [ - "KM056347" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1721_2008" : [ - "FJ205885" - ], - "Bacillus_phage_Bastille" : [ - "NC_018856" - ], - "Hepatitis_B_virus__C9_13" : [ - "FJ899765" - ], - "Human_papillomavirus_type_58__HPV58sc144" : [ - "FJ385264" - ], - "Asclepias_asymptomatic_virus" : [ - "NC_015523" - ], - "Sunn_hemp_leaf_distortion_virus__India_Barrackpore2_2008___Barrackpore2" : [ - "GQ183867" - ], - "Porcine_epidemic_diarrhea_virus_USA_Colorado30_2013" : [ - "KJ645638" - ], - "Porcine_circovirus_2__XingYang_PCV2" : [ - "EU647557" - ], - "Maize_streak_virus__MSV_A_MZ_Nam_Moz34_2007" : [ - "HQ693360" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1762_2006" : [ - "FJ744741" - ], - "Beet_severe_curly_top_virus___Cfh__Beta" : [ - "X97203" - ], - "Human_papillomavirus_type_16__Qv15321AA" : [ - "AY686579" - ], - "Sapelovirus_A__KS05151" : [ - "KJ821020" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2707_2006" : [ - "GQ868605" - ], - "Newcastle_disease_virus_mallard_US_MN__00_32_2000" : [ - "GQ288390" - ], - "Dengue_virus_1_ThD1_0336_91" : [ - "AY732477" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V56_2004" : [ - "EU256014" - ], - "Potato_virus_Y__IUNG_6" : [ - "JF927754" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1872_2007" : [ - "FJ410224" - ], - "Cauliflower_mosaic_virus__TUR306" : [ - "AB863191" - ], - "Vibrio_phage_helene_12B3_helene_12B3" : [ - "NC_021067" - ], - "Human_herpesvirus_5_BE_31_2011" : [ - "KP745641" - ], - "Decapod_penstyldensovirus_1__VN2007" : [ - "KF031144" - ], - "Plautia_stali_symbiont" : [ - "NC_022534", - "NC_022546", - "NC_022533" - ], - "Newcastle_disease_virus__99_1435" : [ - "AY935498" - ], - "Hepatitis_B_virus__J20" : [ - "GQ377522" - ], - "Mumps_virus_L3_Russia_Vector" : [ - "AY508995" - ], - "Sida_golden_mosaic_Costa_Rica_virus" : [ - "NC_004657", - "NC_004658" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3689_2007" : [ - "GQ868505" - ], - "Coxsackievirus_B3_28" : [ - "AY752944" - ], - "Human_immunodeficiency_virus_1__URTR23" : [ - "AF385934" - ], - "Epizootic_hemorrhagic_disease_virus_serotype_1__VP3__sv123" : [ - "X61589" - ], - "Hepatitis_B_virus__M78" : [ - "GQ924643" - ], - "Methanobacterium_SWAN_1" : [ - "NC_015574" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1550_2007" : [ - "EU677174" - ], - "Dengue_virus_3__DENV_3_US_BID_V1622_2005" : [ - "FJ182037" - ], - "Bean_common_mosaic_virus__CD012" : [ - "KJ807801" - ], - "Hepatitis_B_virus__GU50" : [ - "GQ161780" - ], - "Hepatitis_B_virus__GU1406" : [ - "GQ161773" - ], - "West_Nile_virus__TX8759" : [ - "KJ786936" - ], - "Hepatitis_B_virus__HBV81" : [ - "KC875295" - ], - "Porcine_bocavirus_1_pig_ZJD_China_2006__PBoV1" : [ - "NC_024453" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA32" : [ - "KF670653" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD172_2013" : [ - "KM229835" - ], - "Soybean_mosaic_virus__L" : [ - "EU871724" - ], - "Porcine_circovirus_2_GXXJ1104" : [ - "JX982227" - ], - "Emilia_yellow_vein_virus__Fz1___Fz1" : [ - "NC_010307" - ], - "Malvastrum_yellow_vein_betasatellite__Y195" : [ - "AJ971463" - ], - "Radish_mosaic_virus__TW" : [ - "HM032711" - ], - "Prunus_necrotic_ringspot_virus__Chr3" : [ - "JN416772", - "JN416771", - "JN416773" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_84I_215A_01_1984" : [ - "KJ723483" - ], - "Usutu_virus_V13" : [ - "KJ438750" - ], - "Hepatitis_B_virus__G246" : [ - "JQ040174" - ], - "Maize_streak_virus__MSV_A_ZA_Pot10_O24_1979" : [ - "FJ882129" - ], - "Tomato_common_mosaic_virus__BR_Pda39_05" : [ - "KC706598" - ], - "Maize_streak_virus__MSV_A_ZM_Chi1_Z6_2008" : [ - "HQ693450" - ], - "Monkeypox_virus_Ikubi" : [ - "KJ642612" - ], - "Human_poliovirus_2_NIE1218450" : [ - "KJ170570" - ], - "Enterovirus_D68__2011_21282" : [ - "KT285320" - ], - "Hepatitis_B_virus__HIY1_3" : [ - "AY721607" - ], - "Lactobacillus_phage_PL_1" : [ - "NC_022757" - ], - "Ixcanal_virus_CA_Ar_170897" : [ - "HM566162", - "HM566163", - "HM566161" - ], - "Enterovirus_A71_306B" : [ - "KJ746494" - ], - "Newcastle_disease_virus_Pheasant_MM20_Pakistan_2011_MM20" : [ - "JX854452" - ], - "Hepatitis_B_virus__CAR066" : [ - "AM494698" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Kashmanov" : [ - "DQ211631", - "DQ211644", - "DQ211618" - ], - "Faba_bean_necrotic_stunt_virus__Ganja_15" : [ - "KC978998", - "KC978999", - "KC978997" - ], - "Bartonella_grahamii_as4aup" : [ - "NC_012846", - "NC_012847" - ], - "Hepatitis_B_virus__107_3_C8" : [ - "EU717218" - ], - "Rabies_virus_MRV" : [ - "DQ875050" - ], - "Hepatitis_B_virus__A1_50084" : [ - "FJ692579" - ], - "Cellulophaga_lytica_DSM_7489" : [ - "NC_015167" - ], - "Vibrio_phage_ICP2" : [ - "NC_015158" - ], - "Hepatitis_B_virus__A76" : [ - "FJ904422" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD147_2013" : [ - "KM229818" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__K4J1" : [ - "JN053453" - ], - "Proteus_phage_PM16" : [ - "NC_027342" - ], - "SARS_coronavirus_HSR_1__HSR_1" : [ - "AY323977" - ], - "Rotavirus_A_Human_tc_USA_Wa_1974_G1P_8" : [ - "JX406755", - "JX406747", - "JX406754", - "JX406757", - "JX406749", - "JX406756", - "JX406748", - "JX406752", - "JX406750", - "JX406753" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3498Eb_2002" : [ - "JN989436" - ], - "Human_immunodeficiency_virus_1__TH_13_26" : [ - "AY082968" - ], - "Foot_and_mouth_disease_virus___type_O_O_BY_CHA_2010" : [ - "JN998085" - ], - "Cotton_leaf_curl_Multan_betasatellite__Lat_beta_9" : [ - "EU384590" - ], - "Canine_distemper_virus__BJ_01" : [ - "KF856711" - ], - "Onion_yellow_dwarf_virus__RR1" : [ - "KJ451436" - ], - "Foot_and_mouth_disease_virus___type_O_persistent_OUKG_91dpc" : [ - "JX947858" - ], - "Rhizobium_etli_CIAT_652" : [ - "NC_010994", - "NC_010998", - "NC_010996", - "NC_010997" - ], - "Hepatitis_B_virus__SamsunLCD2" : [ - "AB674420" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4072_2008" : [ - "HM181970" - ], - "Cowpea_mild_mottle_virus__Florida_Bean_2011" : [ - "KC774020" - ], - "Norovirus_Hu_GII_20150_2009_VNM_Hu_GII_20150_2009_VNM" : [ - "KC409252" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_14_2011" : [ - "KJ686209" - ], - "Hepatitis_C_virus__HCV_AD78P1" : [ - "AJ132997" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1480" : [ - "KR534561" - ], - "Tembusu_virus__YY5" : [ - "JF270480" - ], - "Hepatitis_B_virus__C76_1" : [ - "FJ899796" - ], - "Hepatitis_B_virus__dww1057" : [ - "KC774447" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V293_2002" : [ - "EU256081" - ], - "Porcine_epidemic_diarrhea_virus_USA_Colorado47_2013" : [ - "KJ645651" - ], - "Beak_and_feather_disease_virus__CS08_459_OBP_TAS_19157" : [ - "KF188689" - ], - "Human_immunodeficiency_virus_1__A" : [ - "HM776938" - ], - "Enterovirus_A71_TW_2871_04" : [ - "GQ231932" - ], - "Dragonfly_larvae_associated_circular_virus_3__DflaCV_3_NZ_PG4_LH" : [ - "KF738876" - ], - "Hepatitis_B_virus__EI057" : [ - "DQ315786" - ], - "Hepatitis_B_virus__N05_C_159B" : [ - "KJ173434" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6745_2009" : [ - "KJ627318" - ], - "Urochloa_streak_virus__USV_NG_ng28_mil1_2011" : [ - "KJ437667" - ], - "Hepatitis_B_virus__C14" : [ - "EU859935" - ], - "Norovirus_Hu_GII_4_Miyazaki2_2007_JP_Hu_GII_4_Miyazaki2_2007_JP" : [ - "AB541290" - ], - "Dengue_virus_1_FGA_NA_P6" : [ - "EF122231" - ], - "Bovine_adenovirus_6_671130" : [ - "NC_020074" - ], - "Hepatitis_B_virus_HB420" : [ - "HM011498" - ], - "Milk_vetch_dwarf_virus_N" : [ - "NC_023626" - ], - "Hepatitis_B_virus__E3529_LC" : [ - "JN664936" - ], - "Dengue_virus_3_Sleman_78" : [ - "AY648961" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US111" : [ - "KJ019075" - ], - "Duck_hepatitis_A_virus_1_P16" : [ - "JF828998" - ], - "Usutu_virus_V256" : [ - "KJ438722" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus" : [ - "NC_003828", - "JX131285" - ], - "Classical_swine_fever_virus_96TD" : [ - "AY554397" - ], - "Rift_Valley_fever_virus_ARD_38388" : [ - "DQ380181", - "DQ375399", - "DQ380187" - ], - "Rhizobium_phage_16_3" : [ - "NC_011103" - ], - "Porcine_coronavirus_HKU15_KY4813" : [ - "KJ584357" - ], - "Beet_virus_Q" : [ - "NC_003510", - "NC_003512", - "NC_003511" - ], - "Hepatitis_E_virus__IND_HEV_AVH4_2006" : [ - "JF443720" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0148" : [ - "KP759612" - ], - "Rabies_virus__A10_0511" : [ - "JQ685943" - ], - "Panicum_streak_virus__G_YT_Tsa_g386" : [ - "GQ415393" - ], - "Norovirus_Hu_GII_30026_2009_VNM_Hu_GII_30026_2009_VNM" : [ - "KC409305" - ], - "Sacbrood_virus_K1A" : [ - "JX270796" - ], - "Melon_yellow_spot_virus" : [ - "NC_008306", - "NC_008307" - ], - "Human_poliovirus_3_NIE1018459" : [ - "KJ170624" - ], - "Ovine_enzootic_nasal_tumor_virus__sheep_TNO28" : [ - "NC_007015" - ], - "Valsa_ceratosperma_hypovirus_1_MVC86" : [ - "NC_017099" - ], - "Maize_streak_virus__MSV_A_GH_gh52_Hwi_2010" : [ - "KJ699348" - ], - "Hepatitis_B_virus__TK104" : [ - "JF754598" - ], - "BK_polyomavirus__TW_3" : [ - "AB211391" - ], - "Guanarito_mammarenavirus_AV_97021119" : [ - "AY573922" - ], - "Porcine_circovirus_2__MN500" : [ - "GQ404853" - ], - "Tobacco_mosaic_virus__Fenggang_2" : [ - "HE818421" - ], - "Norovirus_GII_Hu_JP_2007_GII_P15_GII_15_Sapporo_HK299__Sapporo_HK299" : [ - "KJ196290" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0100" : [ - "KP759655" - ], - "Hepatitis_B_virus__I_WA1034A" : [ - "HQ700547" - ], - "Porcine_circovirus_1__HB2013_1" : [ - "KC527543" - ], - "Chicken_anemia_virus_GD_G_12" : [ - "KF224931" - ], - "Hepatitis_B_virus__PG_22" : [ - "KF471651" - ], - "Hepatitis_B_virus__AH1_SY" : [ - "AB078032" - ], - "Hepatitis_B_virus__EN48_IC" : [ - "JN664914" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3552_2004" : [ - "GU131835" - ], - "Dengue_virus_2_ThNH_28_93" : [ - "AF022435" - ], - "Rhodopseudomonas_palustris_BisB5" : [ - "NC_007958" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLE4204_2009" : [ - "KJ672605" - ], - "Norovirus_Hu_GII_4_Aomori5_2006_JP_Hu_GII_4_Aomori5_2006_JP" : [ - "AB447435" - ], - "Hepatitis_B_virus__patient_554" : [ - "DQ993685" - ], - "Okra_leaf_curl_betasatellite__India_Chandigarh_OY177_2006___OY177" : [ - "GU111981" - ], - "Hepatitis_B_virus__011_EA_Ram" : [ - "KF873512" - ], - "Hepatitis_C_virus_subtype_6a_6a73" : [ - "DQ480517" - ], - "Hepatitis_B_virus__1958_6" : [ - "KR013876" - ], - "West_Nile_virus__Ast02_3_146" : [ - "DQ411032" - ], - "Hepatitis_B_virus_HB743" : [ - "JQ027329" - ], - "Legionella_pneumophila" : [ - "NC_018140" - ], - "Gallid_herpesvirus_1_CL9" : [ - "JN804827" - ], - "Porcine_circovirus_2__PCV_6" : [ - "KC515019" - ], - "West_Nile_virus__WNV_1_US_BID_V6388_2003" : [ - "KJ501447" - ], - "Human_papillomavirus_type_XS2" : [ - "KC138720" - ], - "Gyrovirus_4_G14" : [ - "KJ452215" - ], - "Acinetobacter_phage_Abp1" : [ - "NC_021316" - ], - "Coxsackievirus_B4__CVB4_GX_10" : [ - "JX308222" - ], - "Newcastle_disease_virus__Chicken_China_Zhejiang_01_2006" : [ - "KC542894" - ], - "Thermus_phage_phiYS40" : [ - "NC_008584" - ], - "Pepper_yellow_vein_Mali_virus_Mali_Burkina_Faso_Ouaga_hot_pepper_2008" : [ - "FM876850" - ], - "Thiomonas_3As" : [ - "NC_014145", - "NC_014144" - ], - "Foot_and_mouth_disease_virus___type_A__IND_447_2005" : [ - "HQ832583" - ], - "Dengue_virus_2_ThD2_0263_95" : [ - "DQ181800" - ], - "Plum_pox_virus_Rec_BULG" : [ - "GU461889" - ], - "West_Nile_virus__WNV_1_US_BID_V6500_2003" : [ - "KJ501329" - ], - "South_African_cassava_mosaic_virus__MG_MG373A2_11" : [ - "KJ888000" - ], - "Oropouche_virus_IQT_1690" : [ - "KC759125" - ], - "Plum_pox_virus_PPV_D_Hi3" : [ - "AB576054" - ], - "Hepatitis_B_virus__cxn1076" : [ - "KC774345" - ], - "Porcine_circovirus_2_Pingtung_1" : [ - "AY146991" - ], - "Itaituba_virus" : [ - "HM119417", - "HM119418", - "HM119416" - ], - "Mycobacterium_KMS" : [ - "NC_008703", - "NC_008705", - "NC_008704" - ], - "Avian_orthoreovirus_NC_SEP_R44_03" : [ - "DQ525419" - ], - "Human_immunodeficiency_virus_1_GR84" : [ - "AF119819" - ], - "African_horse_sickness_virus__L" : [ - "KP009764", - "KP009768", - "KP009765", - "KP009766", - "KP009763", - "KP009769", - "KP009767", - "KP009761", - "KP009770" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3820_2006" : [ - "GU131908" - ], - "Human_immunodeficiency_virus_1__CTL_015" : [ - "EF514713" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Bathinda_2005" : [ - "JF502376" - ], - "JC_polyomavirus__JCV161FLC_15" : [ - "JF424923" - ], - "Hepatitis_B_virus__I13" : [ - "FJ562221" - ], - "Turnip_mosaic_virus__NZ402" : [ - "AB989647" - ], - "Sewage_associated_circular_DNA_virus_29__SaCV_29_NZ_BS4325_2012" : [ - "NC_026274" - ], - "Arthrobacter_phage_vB_ArtM_ArV1" : [ - "NC_026606" - ], - "South_African_cassava_mosaic_virus__MG_MG67A1_06" : [ - "KJ887886" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4924_spleen" : [ - "HQ671673" - ], - "Norovirus_GI_Hu_NL_2012_GI_6_Groningen_GI_Hu_NL_2012_GI_6_Groningen" : [ - "LN854564" - ], - "Dengue_virus_1__DENV_1_PR_BID_V8181_2010" : [ - "KJ189361" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2859_2006" : [ - "GQ199839" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_208_2011" : [ - "KJ686294" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_122_2012" : [ - "KJ686132" - ], - "West_Nile_virus__WNV_1_US_BID_V4709_2002" : [ - "HM756665" - ], - "SARS_coronavirus_HZS2_Fc__HZS2_Fc" : [ - "AY394991" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V154_2001" : [ - "EU660388" - ], - "Cauliflower_mosaic_virus__TUR279" : [ - "AB863187" - ], - "Enterobacteria_phage_St_1" : [ - "NC_012868" - ], - "Pepino_mosaic_virus__LP_2001" : [ - "AJ606361" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus__Spain1__Murcia_TYLCV_M" : [ - "Z25751" - ], - "Coxsackievirus_A16_BJ08_07" : [ - "JX068833" - ], - "Infectious_bronchitis_virus_Mass41_2006" : [ - "FJ904713" - ], - "Crimean_Congo_hemorrhagic_fever_virus_VLV_100" : [ - "AY995166" - ], - "Croton_yellow_vein_virus" : [ - "NC_014473" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1150_2007" : [ - "EU932688" - ], - "Pebjah_virus__F628" : [ - "KR139838" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota73_2013" : [ - "KJ645668" - ], - "West_Nile_virus__WNV_1_US_BID_V6200_2008" : [ - "KJ501253" - ], - "African_cassava_mosaic_virus__MG_MG5A23_05" : [ - "KJ887824" - ], - "Cotton_leaf_curl_Multan_betasatellite__Okra08" : [ - "JX286665" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4251_2007" : [ - "HM181950" - ], - "Cleome_leaf_crumple_virus__BgV05B_1_C49" : [ - "JF694465" - ], - "Tomato_mottle_wrinkle_virus__AR_Pichanal_397_08" : [ - "KM243018" - ], - "Tomato_chlorotic_mottle_virus__BR_Car217_1_08" : [ - "KC706564" - ], - "Dengue_virus_1__DENV_1_VN_BID_V784_2007" : [ - "EU482710" - ], - "Norovirus_Hu_GII_4_Niigata5_2007_JP_Hu_GII_4_Niigata5_2007_JP" : [ - "AB541317" - ], - "Beak_and_feather_disease_virus__4IT09" : [ - "KF723389" - ], - "Foot_and_mouth_disease_virus___type_O_O1_Caseros_o1caseros_iso35" : [ - "AY593821" - ], - "Porcine_circovirus_2__JX1" : [ - "KP824715" - ], - "Listeria_monocytogenes_HCC23" : [ - "NC_011660" - ], - "Sulfolobus_islandicus_rod_shaped_virus_2_HVE10_4" : [ - "NC_004086" - ], - "Prochlorococcus_phage_P_SSP7" : [ - "NC_006882" - ], - "Tomato_leaf_curl_Philippines_virus" : [ - "NC_005032" - ], - "Duck_hepatitis_B_virus_A" : [ - "AY521226" - ], - "Hepatitis_B_virus__bxa2009" : [ - "KC774406" - ], - "Hepatitis_B_virus__I122" : [ - "FJ562269" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_103_2012" : [ - "KJ686195" - ], - "Rabies_virus__239K09" : [ - "JX473840" - ], - "Porcine_reovirus_SHR_A__SHR_A" : [ - "JX415473", - "JX415466", - "JX415468", - "JX415469", - "JX415465", - "JX415471", - "JX415467", - "JX415472", - "JX415474", - "JX415470" - ], - "Faba_bean_necrotic_stunt_virus__Ganja_10" : [ - "KC978980", - "KC978981", - "KC978979" - ], - "Methanohalobium_evestigatum_Z_7303" : [ - "NC_014253", - "NC_014254" - ], - "Bovine_parainfluenza_virus_3_TtPIV_1" : [ - "KP764763" - ], - "Hepatitis_B_virus__HBV230" : [ - "KJ647353" - ], - "Torque_teno_sus_virus_1a__TTV1Hlj21" : [ - "HM633257" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2354_2007" : [ - "FJ639834" - ], - "Human_immunodeficiency_virus_1__CH042_mo6" : [ - "KC156124" - ], - "Cotton_leaf_curl_Burewala_betasatellite" : [ - "NC_013802", - "JF416948", - "FN658737" - ], - "Human_bocavirus__CU8N" : [ - "EU262978" - ], - "Hepatitis_B_virus__cxa1183" : [ - "KC774290" - ], - "Yellow_fever_virus_BeAR513008" : [ - "JF912185" - ], - "Potato_virus_S__Id4106_US" : [ - "FJ813513" - ], - "Yersinia_pestis_biovar_Microtus_91001" : [ - "NC_005813", - "NC_005816", - "NC_005815", - "NC_005810", - "NC_005814" - ], - "Dengue_virus_2__DENV_2_NI_BID_V529_2005" : [ - "EU482680" - ], - "Sapelovirus_A__KS04105" : [ - "KJ821019" - ], - "Coxsackievirus_B3__CVB3SD2012CHN" : [ - "JX976770" - ], - "Bell_pepper_endornavirus__BPEV_YW" : [ - "NC_015781" - ], - "Banana_bunchy_top_virus_TW3" : [ - "EU366170", - "EU366171", - "EU366173", - "FJ773283", - "EU366172", - "EU366169" - ], - "Okra_leaf_curl_virus_Cameroon_LY11" : [ - "NC_013017" - ], - "RD114_retrovirus__SC3C" : [ - "NC_009889" - ], - "Respiratory_syncytial_virus_B_WI_629_15_06_07" : [ - "JN032117" - ], - "Chilli_veinal_mottle_virus__Korea" : [ - "AM909717" - ], - "Soybean_mosaic_virus__WS145" : [ - "FJ640967" - ], - "Grapevine_chrome_mosaic_virus__H27" : [ - "HG939486" - ], - "Porcine_epidemic_diarrhea_virus__ISU13_22038_IA_homogenate" : [ - "KF650373" - ], - "Hyphomonas_neptunium_ATCC_15444" : [ - "NC_008358" - ], - "West_Nile_virus__WNV_1_US_BID_V4599_2003" : [ - "HM488222" - ], - "Soybean_dwarf_virus__MD6_Y" : [ - "JN674405", - "JN674409", - "JN674402", - "JN674404", - "JN674406", - "JN674403", - "JN674408", - "JN674407" - ], - "Pediococcus_pentosaceus_SL4" : [ - "NC_022780" - ], - "Gibbon_ape_leukemia_virus" : [ - "NC_001885" - ], - "Dengue_virus_4_Singapore_8976_95" : [ - "AY762085" - ], - "Lactobacillus_acidophilus_30SC" : [ - "NC_015214", - "NC_015213", - "NC_015218" - ], - "Human_immunodeficiency_virus_1__PMVL_039" : [ - "EF514703" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7053_2007" : [ - "KJ189270" - ], - "Hepatitis_B_virus_258_6b" : [ - "KR013767" - ], - "Pepper_leaf_curl_virus" : [ - "NC_000882" - ], - "Viral_hemorrhagic_septicemia_virus__SE_SVA_1033" : [ - "FJ460591" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE8149_2010_A" : [ - "KJ627406" - ], - "Hepatitis_B_virus__V43" : [ - "HM363576" - ], - "Cauliflower_mosaic_virus__BBC" : [ - "MCAMADCRI" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7090_2008" : [ - "KJ189300" - ], - "Human_papillomavirus_type_58__AS405" : [ - "HQ537759" - ], - "Small_begomovirus_associated_satellite__Sa20_S1" : [ - "KJ859140" - ], - "Hepatitis_B_virus__patient2" : [ - "AB300360" - ], - "Phodopus_sungorus_papillomavirus_type_1__APV105" : [ - "KP099578" - ], - "Southern_rice_black_streaked_dwarf_virus__Ninh_Binh2" : [ - "KM454849" - ], - "BK_polyomavirus__BKV_CAP_h22" : [ - "AY628227" - ], - "Hepatitis_B_virus_Toshima_1" : [ - "AB210819" - ], - "Dengue_virus_2__DENV_2_PK" : [ - "KF360005" - ], - "Hepatitis_delta_virus_dFr2043_dFr2043" : [ - "AM902180" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4067_2008" : [ - "GU131816" - ], - "WU_Polyomavirus__HB087C" : [ - "KC571696" - ], - "Hepatitis_delta_virus__TW2479_13" : [ - "AY261459" - ], - "Hepatitis_B_virus__NH006M_e35" : [ - "KJ173314" - ], - "Human_immunodeficiency_virus_1__53143" : [ - "GU595149" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI17_12" : [ - "HE979758" - ], - "Hepatitis_B_virus__37Y19HCC" : [ - "AB014396" - ], - "Hepatitis_B_virus__dww1035" : [ - "KC774442" - ], - "Human_immunodeficiency_virus_1___329" : [ - "AB428559" - ], - "Banana_bunchy_top_virus__JY1" : [ - "AB108451", - "AB108456" - ], - "Cucumber_mosaic_virus_242" : [ - "AJ585520" - ], - "Burkholderia_phage_KS14" : [ - "NC_015273" - ], - "Betacoronavirus_England_1_England_1_H123990006" : [ - "KC164505" - ], - "Porcine_circovirus_2__HNYiYPC151" : [ - "KM235961" - ], - "Jatropha_curcas_mosaic_virus__Jalgaon___Jalgaon" : [ - "JF496657", - "JF496656" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6927_2009" : [ - "KJ627248" - ], - "Norovirus_Hu_GI_1_CHA3A007_2008_USA_Hu_GI_1_CHA3A007_2008_USA" : [ - "KF039735" - ], - "Mycobacterium_phage_Jovo" : [ - "NC_022984" - ], - "Grapevine_geminivirus__3138_03" : [ - "JX559642" - ], - "Chikungunya_virus__SGEHICHD93508" : [ - "FJ445430" - ], - "SARS_coronavirus_LC1__LC1" : [ - "AY394998" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0082" : [ - "KP759751" - ], - "Bovine_papillomavirus_type_4" : [ - "X05817" - ], - "Hepatitis_B_virus__A1_50010" : [ - "FJ692570" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus__TYLCSV_Sar__IT_Sic_04" : [ - "GU951759" - ], - "Kangiella_koreensis_DSM_16069" : [ - "NC_013166" - ], - "Ross_River_virus_9057" : [ - "GQ433358" - ], - "Human_adenovirus_7_XY1_XY_CHN_2012" : [ - "KJ019880" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P3pp23" : [ - "FJ882949" - ], - "Norovirus_Hu_GII_4_Aomori1_2008_JP_Hu_GII_4_Aomori1_2008_JP" : [ - "AB541219" - ], - "Watermelon_chlorotic_stunt_virus__JO2_59" : [ - "KM820208" - ], - "Duck_hepatitis_A_virus_1_A66_China" : [ - "DQ886445" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__BF_Po_Okra4" : [ - "FN554582" - ], - "Cherry_necrotic_rusty_mottle_virus__FC4" : [ - "EU188438" - ], - "Tomato_leaf_curl_New_Delhi_virus__India_Guntur_OY136B_2006___OY136B" : [ - "GU112086", - "GU112087" - ], - "Halanaerobium_hydrogeniformans" : [ - "NC_014654" - ], - "Hepatitis_C_virus_subtype_1a__L8106" : [ - "EU781775" - ], - "Cyclovirus_NGchicken8_NGA_2009__NGchicken8" : [ - "HQ738643" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3487P_2002" : [ - "JN989428" - ], - "Maize_streak_virus___A_South_Africa__South_African" : [ - "Y00514" - ], - "South_African_cassava_mosaic_virus" : [ - "NC_003804", - "NC_003803" - ], - "Squirrel_monkey_polyomavirus__Squi0106" : [ - "NC_009951" - ], - "Hepatitis_B_virus__M91" : [ - "GQ924654" - ], - "Porcine_circovirus_2__DK442case" : [ - "EF565354" - ], - "Cimodo_virus_C74_CI_2004" : [ - "NC_024915", - "NC_024917", - "NC_024910", - "NC_024919", - "NC_024916", - "NC_024918", - "NC_024914", - "NC_024912", - "NC_024911", - "NC_024913", - "NC_024920", - "NC_023420" - ], - "Enterovirus_D68__NY329" : [ - "KP745767" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Hissar1_2010" : [ - "JF502396" - ], - "Chikungunya_virus_M127" : [ - "KM923918" - ], - "Tupaiid_herpesvirus_1_2" : [ - "NC_002794" - ], - "Eel_River_basin_pequenovirus__c22476" : [ - "NC_026665" - ], - "Porcine_bocavirus_3_23" : [ - "JF713715" - ], - "Hepatitis_B_virus__Wong" : [ - "U87747" - ], - "Human_cosavirus__Cosavirus_Amsterdam_1994" : [ - "NC_023984" - ], - "Small_begomovirus_associated_satellite__Sa27_S124" : [ - "KJ859151" - ], - "Norovirus_Hu_GI_1_CHA7A009_2010_USA_Hu_GI_1_CHA7A009_2010_USA" : [ - "KF039725" - ], - "Mungbean_yellow_mosaic_virus__Namakkal" : [ - "DQ865203", - "DQ865202", - "DQ865201" - ], - "Dengue_virus_4__P75_514" : [ - "JF262779" - ], - "Human_immunodeficiency_virus_1__97KR004" : [ - "AF286239" - ], - "Bombyx_mori_cypovirus_1_I" : [ - "AF323784", - "AF323783" - ], - "Pseudomonas_phage_JG024_JG024" : [ - "NC_017674" - ], - "Sweet_potato_feathery_mottle_virus__GJ122" : [ - "KP115609" - ], - "Sweet_potato_leaf_curl_virus__SPLCV_JAM_JAM_10" : [ - "KC253235" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2752_2007" : [ - "GQ199777" - ], - "Potato_virus_Y_Ordinary_OUNKG" : [ - "AB711154" - ], - "Hepatitis_B_virus__HBV_TH124" : [ - "AB112472" - ], - "Hepatitis_B_virus__I185" : [ - "FJ562301" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__HL_Egg_G2" : [ - "KF791959", - "KF791954", - "KF791949" - ], - "Maize_streak_virus__MSV_F_NG_ng3_Zar_2011" : [ - "KJ437655" - ], - "Rabies_virus__TX4904" : [ - "JQ685915" - ], - "Hepatitis_B_virus__cxa2044" : [ - "KC774319" - ], - "Pepino_mosaic_virus_Ch2_SIC1_09" : [ - "HQ663891" - ], - "Dengue_virus_1_A88" : [ - "AB074761" - ], - "Burkholderia_pseudomallei_BPC006" : [ - "NC_018527", - "NC_018529" - ], - "Sulfitobacter_phage_NYA_2014a" : [ - "NC_027299" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_371_2012" : [ - "KP308454" - ], - "Porcine_circovirus_2_Fd7" : [ - "AY321990" - ], - "Turnip_mosaic_virus__ZH1" : [ - "KF246570" - ], - "Okra_leaf_curl_alphasatellite" : [ - "FJ868830" - ], - "Houston_virus_16757" : [ - "KC807178" - ], - "Human_poliovirus_1_NIE1118397" : [ - "KJ170452" - ], - "Rotavirus_A__RVA_Human_wt_DEN_L23021505_2012_G3P_8" : [ - "KP013464" - ], - "WU_Polyomavirus__CU_Chonburi3" : [ - "KJ725028" - ], - "Human_parainfluenza_virus_1_HPIV1_MEX_447_2003" : [ - "KF687309" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culicidae_USA_2999_2005" : [ - "KJ659367" - ], - "Porcine_circovirus_2_ZS" : [ - "AY596823" - ], - "Tomato_yellow_leaf_curl_virus_Israel_New_Caledonia_Noumea2_2010" : [ - "HE603242" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dar_Beta_11" : [ - "EU384599" - ], - "West_Nile_virus__WNV_1_US_BID_V5182_2004" : [ - "JF488092" - ], - "Enterovirus_A71_Chongqing1_09_China" : [ - "GQ994989" - ], - "Hepatitis_E_virus__CHN_BJ_rb14" : [ - "JQ768461" - ], - "West_Nile_virus__WNV_1_US_BID_V6192_2001" : [ - "KJ501248" - ], - "Toscana_virus_TOSV_Firenze_ITA_2009_2" : [ - "KM275780" - ], - "Norovirus_Hu_GII_4_CHDC5191_1974_US_Hu_GII_4_CHDC5191_1974_US" : [ - "FJ537134" - ], - "Hepatitis_B_virus__B3_5" : [ - "HQ231880", - "GU815610" - ], - "butyrate_producing_bacterium_SM4_1" : [ - "NC_021024" - ], - "Hepatitis_B_virus__2039" : [ - "FJ386613" - ], - "Hepatitis_B_virus__HBV90" : [ - "KC875329" - ], - "Synechococcus_phage_Syn5" : [ - "NC_009531" - ], - "Potato_virus_Y__VNP413" : [ - "HG810950" - ], - "Hepatitis_B_virus_UZBV74_UZBV74" : [ - "AB222708" - ], - "Chlamydia_trachomatis_A_HAR_13" : [ - "NC_007430", - "NC_007429" - ], - "Tanay_virus__11_2" : [ - "NC_024071" - ], - "Verrucosispora_maris_AB_18_032" : [ - "NC_015409", - "NC_015434" - ], - "Syntrophothermus_lipocalidus_DSM_12680" : [ - "NC_014220" - ], - "Pronghorn_antelope_pestivirus" : [ - "NC_024018" - ], - "Porcine_circovirus_2__PCV_G" : [ - "KC515025" - ], - "Human_immunodeficiency_virus_1__99FR_MP1307" : [ - "AJ291720" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V245_2005" : [ - "EU255951" - ], - "Papaya_leaf_curl_China_virus__C379" : [ - "KF373768" - ], - "Hepatitis_B_virus__HBV010" : [ - "JN688679" - ], - "Human_herpesvirus_2__HSV_2_JP_BID_G32589_JA5" : [ - "KR135325" - ], - "Hendra_virus_HeV_Australia_Bat_2009_Yeppoon_Y4a" : [ - "JN255801" - ], - "Dengue_virus_1_D1_SG_05K3905DK1_2005" : [ - "EU081244" - ], - "Hepatitis_B_virus__HK2100" : [ - "DQ089801" - ], - "Exiguobacterium_MH3" : [ - "NC_022794" - ], - "Foot_and_mouth_disease_virus___type_O_O1_BFS_o1bfs_iso18" : [ - "AY593815" - ], - "Potato_virus_T__Japanese" : [ - "AB697482" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2290_2001" : [ - "FJ687445" - ], - "Mavirus_Spezl" : [ - "NC_015230" - ], - "Arenavirus_AV_96010025_AV_96010025" : [ - "EU486820" - ], - "Hepatitis_B_virus__WHMJD2" : [ - "JN257180" - ], - "Rousettus_aegyptiacus_papillomavirus_1" : [ - "NC_008298" - ], - "Pennisetum_mosaic_virus__AZGL1" : [ - "JX070142" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4298_2007" : [ - "GU131941" - ], - "Hepatitis_B_virus__Tibet_18" : [ - "HM750145" - ], - "Hepatitis_B_virus__31UC" : [ - "AB493842" - ], - "Measles_virus_strain_MVi_Arizona_USA_11_08_2_MVi_Arizona_USA_11_08_2" : [ - "JN635406" - ], - "Cucumber_mosaic_virus__Bn57" : [ - "HF572916", - "HF572915", - "HF572914" - ], - "Bacillus_phage_phiAGATE" : [ - "NC_020081" - ], - "Salmonella_enterica_serovar_Newport_SL254" : [ - "NC_011079", - "NC_009140", - "NC_011080" - ], - "Grapevine_virus_F__V5" : [ - "KP114220" - ], - "Monkeypox_virus__Yambuku_DRC_1985" : [ - "KP849471" - ], - "Pepper_leaf_curl_Yunnan_virus_satellite_DNA_beta__YN323" : [ - "NC_010619" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7634_2011" : [ - "KF973476" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1345" : [ - "KM573771" - ], - "Lactococcus_phage_340" : [ - "NC_021853" - ], - "Hepatitis_B_virus__HBV_BAN1" : [ - "AB116082" - ], - "Hepatitis_B_virus__P27" : [ - "EU859910", - "GQ477473", - "JX898699" - ], - "Torque_teno_virus__TTV_HD24f__rheu241" : [ - "FR751511" - ], - "Human_poliovirus_2_NIE0711441_NIS07_01" : [ - "JX275071" - ], - "Vibrio_phage_PVA1" : [ - "NC_023605" - ], - "Hepatitis_B_virus__TX327" : [ - "FR714501" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_COL_306425_1972_ID" : [ - "KC344502" - ], - "Tobacco_rattle_virus__OR2" : [ - "AY166661" - ], - "Hepatitis_B_virus__BV_25" : [ - "GU563554" - ], - "JC_polyomavirus__TL_7" : [ - "AB077858" - ], - "Human_herpesvirus_8_GK18" : [ - "NC_009333" - ], - "Lily_mottle_virus__ML61" : [ - "AB570195" - ], - "Euphorbia_leaf_curl_virus__Shandong" : [ - "KC852148" - ], - "Dengue_virus_4_H402276_DENV_4_ROR82" : [ - "JN559740" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT43A46_2008" : [ - "JF909243" - ], - "Enterobacteria_phage_BZ13_DL10" : [ - "FJ483837" - ], - "West_Nile_virus__WNV_1_US_BID_V6483_2002" : [ - "KJ501481" - ], - "Porcine_circovirus_2__JX_2" : [ - "HM776446" - ], - "Tamus_red_mosaic_virus__IT" : [ - "NC_016003" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V453_2006" : [ - "EU255934" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_117_2012" : [ - "KJ686138" - ], - "Duck_circovirus__DB6_8" : [ - "KP229362" - ], - "Human_immunodeficiency_virus_1_98ZA445" : [ - "AY158533" - ], - "Antheraea_pernyi_nucleopolyhedrovirus_Liaoning_AnpeMNPV_L2" : [ - "EF207986" - ], - "Hepatitis_B_virus__Ag16" : [ - "KJ843178" - ], - "Duck_hepatitis_A_virus_1__FZ05" : [ - "JX390983" - ], - "Hepatitis_E_virus__wbJYG1" : [ - "AB222184" - ], - "Hepatitis_C_virus__DH8_JFH1" : [ - "KC967477" - ], - "Sulfitobacter_phage_EE36phi1_EE36P1" : [ - "NC_012696" - ], - "Porcine_circovirus_2_PCV2_pig_134" : [ - "EU136712" - ], - "Staphylococcus_phage_ISP" : [ - "FR852584" - ], - "Hepatitis_B_virus__I230" : [ - "FJ562329" - ], - "Foot_and_mouth_disease_virus_O_UKG_3952_2001_UKG_3952_2001" : [ - "EF552688" - ], - "Bos_grunniens_papillomavirus_type_1_QH_2" : [ - "JX174438" - ], - "Human_herpesvirus_5_HAN8" : [ - "JX512202" - ], - "Circoviridae_12_LDMD_2013" : [ - "KF133819" - ], - "Ageratum_yellow_vein_virus__AFSP8d" : [ - "JN809826" - ], - "Cassava_mosaic_Madagascar_alphasatellite__Madagascar_Diana_635A4_2011" : [ - "HE984149" - ], - "Listeria_phage_A500" : [ - "NC_009810" - ], - "Enterovirus_B111_Q0011_XZ_CHN_2000" : [ - "KF312882" - ], - "Hepatitis_B_virus_1240_3b" : [ - "KR013838" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo188_08" : [ - "KC706553" - ], - "Human_respiratory_syncytial_virus__Kilifi_9465_1_RSVB_2012" : [ - "KP317934" - ], - "Hepatitis_E_virus__HE_JF3" : [ - "AB220971" - ], - "Norovirus_Hu_GII_4_Saga1_2008_JP_Hu_GII_4_Saga1_2008_JP" : [ - "AB541331" - ], - "Ageratum_leaf_curl_Buea_betasatellite__SatB33" : [ - "NC_014746" - ], - "Torque_teno_sus_virus_k2b__38E19" : [ - "JQ406845" - ], - "Bacillus_amyloliquefaciens_CC178" : [ - "NC_022653" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0001" : [ - "KP759636" - ], - "Hepatitis_B_virus__HBV_Th44" : [ - "AB074755" - ], - "Porcine_circovirus_2_RUZHOU" : [ - "EU418626" - ], - "Human_poliovirus_1_NIE1118386" : [ - "KJ170479" - ], - "Squash_leaf_curl_virus__EG2_13" : [ - "KM595152" - ], - "Hepatitis_B_virus__cxa2006" : [ - "KC774306" - ], - "Shigella_phage_pSf_2" : [ - "NC_026010" - ], - "Soybean_mosaic_virus_4469_4_CHN_2004__4469_4" : [ - "HM590055" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2357_2007" : [ - "FJ639836" - ], - "West_Nile_virus__WNV_1_US_BID_V6459_2002" : [ - "KJ501309" - ], - "Mycobacterium_phage_PattyP" : [ - "NC_021297" - ], - "Cauliflower_mosaic_virus__TUR59" : [ - "AB863173" - ], - "Leek_yellow_stripe_virus__SW3_5" : [ - "JQ899450" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_MP7_09" : [ - "HQ393469" - ], - "Human_immunodeficiency_virus_1__U61" : [ - "DQ854716" - ], - "Krokinobacter_4H_3_7_5" : [ - "NC_015496" - ], - "Listeria_phage_LP_114" : [ - "NC_024392" - ], - "Enterobacteria_phage_phi80" : [ - "NC_021190" - ], - "Wheat_dwarf_virus__YNKM08_10" : [ - "KJ536129" - ], - "Tomato_yellow_leaf_curl_virus_Oman__Tom_46" : [ - "KF229723" - ], - "Dengue_virus_2__DC792Y12" : [ - "KM279595" - ], - "Japanese_encephalitis_virus__SCYA201201" : [ - "KM658163" - ], - "Echovirus_E3_Morrisey" : [ - "AY302553" - ], - "Tomato_common_mosaic_virus__BR_Pda51_05" : [ - "KC706586" - ], - "Porcine_parvovirus_6__SC" : [ - "KF999684" - ], - "West_Nile_virus__WNV_1_US_BID_V6669_2006" : [ - "KJ501409" - ], - "Alternanthera_yellow_vein_virus" : [ - "FN432361" - ], - "Hepatitis_B_virus__PW4" : [ - "EU239223" - ], - "Cherry_leaf_roll_virus__1978" : [ - "KC937029", - "KC937023" - ], - "Chatanga_virus__Mohko_M07_2_84" : [ - "KF719231", - "KF719232" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite__Vellanad" : [ - "JN663876" - ], - "Watermelon_chlorotic_stunt_virus__IL3_79" : [ - "KM820267" - ], - "Panicum_streak_virus__G_YT_Coc_g385" : [ - "GQ415395" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3460_2006" : [ - "GU131858" - ], - "Middle_East_respiratory_syndrome_coronavirus_Hu_Riyadh_KSA_4050_2015" : [ - "KT026454" - ], - "Maguari_virus__R1" : [ - "AY286445" - ], - "Human_papillomavirus_type_33__LZcc12_33" : [ - "EU918766" - ], - "Pseudomonas_aeruginosa_LESB58" : [ - "NC_011770" - ], - "Hepatitis_B_virus__He74" : [ - "AY641558" - ], - "Procyon_lotor_papillomavirus_1__Z146_02" : [ - "NC_007150" - ], - "Rotavirus_A_RVA_Human_wt_IND_N121_2003_G10P_11" : [ - "KC174907" - ], - "Watermelon_chlorotic_stunt_virus__PA2_Q10" : [ - "KM820280" - ], - "Human_immunodeficiency_virus_1__WC10C_12" : [ - "AY314063" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dav_alpha_7c" : [ - "EU384623" - ], - "Hepatitis_B_virus__bww1015" : [ - "KC774378" - ], - "Proteus_phage_PM_93" : [ - "NC_027390" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_COL_CO97_0054_2001_ID" : [ - "KC344429" - ], - "Cowpea_mild_mottle_virus__CPMMV_BR_MG_09_2" : [ - "KC884244" - ], - "JC_polyomavirus__SA28_03" : [ - "AY536242" - ], - "Torque_teno_sus_virus_1b__TTV2_G31" : [ - "GU570204" - ], - "Dengue_virus_3__411_BR_PE_06" : [ - "JX669504" - ], - "HBV_genotype_H__904MEXM" : [ - "AB516393" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3376_1998" : [ - "GQ868559" - ], - "Rice_grassy_stunt_virus__IRRI" : [ - "NC_002325", - "NC_002326", - "NC_002323", - "NC_002324" - ], - "Maporal_virus_HV_97021050" : [ - "AY363179" - ], - "Crimean_Congo_hemorrhagic_fever_virus__SPU_44_08" : [ - "KJ682800", - "KJ682805", - "KJ682824" - ], - "Tomato_leaf_curl_Guangdong_virus__G2" : [ - "NC_008373" - ], - "Acinetobacter_baumannii_SDF" : [ - "NC_010396", - "NC_010395", - "NC_010398", - "NC_010400" - ], - "Hepatitis_C_virus__6_TV453" : [ - "KJ567648" - ], - "Squash_leaf_curl_virus__JO2_214" : [ - "KM595191" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_152_2012" : [ - "KJ686128" - ], - "Dengue_virus_2_VE_61136_2007" : [ - "HQ332188" - ], - "Small_begomovirus_associated_satellite__wf_S8" : [ - "KJ859216" - ], - "Clostridium_tetani_E88" : [ - "NC_004557", - "NC_004565" - ], - "Hepatitis_B_virus__EN56_IC" : [ - "JN664915" - ], - "Tomato_leaf_curl_New_Delhi_virus__pp78" : [ - "KJ000564" - ], - "Tomato_leaf_curl_Guangxi_virus__GX_2" : [ - "AM236785" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PER_FSE507_2000_ID" : [ - "KC344522" - ], - "Hepatitis_B_virus__P84" : [ - "GQ477456" - ], - "Porcine_circovirus_2__CQWL09" : [ - "KF742548" - ], - "Propionibacterium_phage_P100_1" : [ - "NC_018840" - ], - "Macaca_fascicularis_papillomavirus_type_3b__Mac171" : [ - "EF591299" - ], - "Dengue_virus_1__DENV_1_VN_BID_V963_2007" : [ - "EU482508" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_134_2012" : [ - "KJ686289" - ], - "Cucumber_mosaic_virus_M" : [ - "MCVCP3A2" - ], - "Hepatitis_B_virus__F1S_C1" : [ - "AB471850" - ], - "African_cassava_mosaic_virus__MG_MG67A9_06" : [ - "KJ887887" - ], - "Changuinola_virus__CGLV_BE_AR_434080" : [ - "KF690618", - "KF690613", - "KF690611", - "KF690620", - "KF690614", - "KF690616", - "KF690617", - "KF690619" - ], - "Hepatitis_B_virus__I45" : [ - "FJ562232" - ], - "Human_papillomavirus_type_6__92" : [ - "HG793900" - ], - "Watermelon_chlorotic_stunt_virus__JO3_620" : [ - "KM820230" - ], - "Small_begomovirus_associated_satellite__wf_S37" : [ - "KJ859193" - ], - "Dengue_virus_1__DENV_1_VN_BID_V808_2006" : [ - "EU482802" - ], - "Hepatitis_B_virus__HK1205" : [ - "DQ089791" - ], - "Hepatitis_B_virus__YY014C_e115" : [ - "KJ173377" - ], - "Porcine_circovirus_2__121108" : [ - "KJ599673" - ], - "Bluetongue_virus_4_BTV_4RSA_WT" : [ - "KM233617", - "KM233616", - "KM233621", - "KM233620", - "KM233623", - "KM233615", - "KM233618", - "KM233614", - "KM233622", - "KM233619" - ], - "Soybean_mosaic_virus__XFQ014" : [ - "KP710876" - ], - "JC_polyomavirus__JCV161FLC_05" : [ - "JF424914" - ], - "Hepatitis_B_virus__252_92_6" : [ - "EU872007" - ], - "Hepatitis_B_virus__B1_5" : [ - "GU815586" - ], - "Human_immunodeficiency_virus_1__92BR025_from_Brazil" : [ - "HIVU52953" - ], - "South_African_cassava_mosaic_virus__MG_MG202A1_09" : [ - "KJ887676" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3460B_2002" : [ - "JN989426" - ], - "Hepatitis_B_virus__A10a" : [ - "FJ904395" - ], - "Rice_dwarf_virus__Akita" : [ - "AB263418" - ], - "Toscana_virus_TOSV_Siena_ITA_1991" : [ - "KM275770" - ], - "Porcine_circovirus_2_GDYF_2007_GuangDong" : [ - "EU283329" - ], - "Bacillus_phage_Spock" : [ - "NC_022763" - ], - "Citrus_tristeza_virus__NZRB_M12" : [ - "FJ525431" - ], - "Tomato_yellow_leaf_curl_China_virus_Dali198__Dali198" : [ - "EU365686" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V122_1991" : [ - "EU155325" - ], - "Human_papillomavirus_type_18__Qv17955" : [ - "EF202150" - ], - "Hepatitis_B_virus__PNF3907" : [ - "KF779312" - ], - "West_Nile_virus__WNV_1_US_BID_V7392_2003" : [ - "KJ501104" - ], - "Dengue_virus_2_DENV_2_ID_1017DN_1976" : [ - "GQ398259" - ], - "Bovine_viral_diarrhea_virus_1__Egy_Ismailia_2014" : [ - "KR029825" - ], - "Soybean_mosaic_virus__SX" : [ - "KC845321" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V368_2006" : [ - "EU256062" - ], - "WU_Polyomavirus__B9242" : [ - "GU296390" - ], - "Bluetongue_virus__BT3_2058" : [ - "AY426599" - ], - "Tomato_aspermy_virus_KC_TAV" : [ - "AJ320273", - "AJ320274" - ], - "Variola_virus_Guinea_1969__005" : [ - "DQ441426" - ], - "Duck_hepatitis_A_virus_3_C_YCW" : [ - "GU066824" - ], - "Enterovirus_A71_6F_AUS_6_99" : [ - "DQ381846" - ], - "Norovirus_Hu_GII_4_New_Orleans1805_2009_USA_Hu_GII_4_New_Orleans1805_2009_USA" : [ - "GU445325" - ], - "Human_immunodeficiency_virus_1__ES_P1261__CRF02_AG" : [ - "EU786671" - ], - "Hepatitis_B_virus__S_IDU19" : [ - "EU185788" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2484_2007" : [ - "FJ850111" - ], - "Human_immunodeficiency_virus_1__DR6824" : [ - "AB253426", - "AB253427" - ], - "Hepatitis_B_virus__SDAC_024" : [ - "KF170739" - ], - "Norovirus_Hu_GI_10360_2010_VNM_Hu_GI_10360_2010_VNM" : [ - "JQ911594" - ], - "Human_papillomavirus_type_16__Qv13791" : [ - "HQ644270" - ], - "Dengue_virus_2_VE_61115_2007" : [ - "HQ332186" - ], - "Norovirus_pig_GII_Ch6_China_2009" : [ - "HQ392821" - ], - "JC_polyomavirus__UZ_24" : [ - "AB127024" - ], - "Lactococcus_Phage_ASCC365" : [ - "JQ740797" - ], - "Narcissus_late_season_yellows_virus__Marijiniup8" : [ - "NC_023628" - ], - "Anopheles_minimus_irodovirus__AMIV" : [ - "NC_023848" - ], - "Dengue_virus_2__DENV_2_NI_BID_V580_2006" : [ - "EU482692" - ], - "Hepatitis_C_virus_subtype_1b__No__15" : [ - "AB154190" - ], - "African_cassava_mosaic_virus__CF_CF125AN_07" : [ - "KJ887801" - ], - "Hepatitis_B_virus__SZ6" : [ - "JF436920" - ], - "Duck_hepatitis_A_virus_1_P40" : [ - "JF829000" - ], - "Strawberry_vein_banding_virus" : [ - "NC_001725" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5506_2009" : [ - "JF937636" - ], - "Hepatitis_B_virus__FH008C_e46n" : [ - "KJ173297" - ], - "Cotton_leaf_curl_Rajasthan_virus__IARI_34" : [ - "KJ959629" - ], - "Hepatitis_B_virus__G67_123" : [ - "EU305540" - ], - "Hepatitis_B_virus__S251" : [ - "FJ386661" - ], - "Ageratum_yellow_vein_virus__Lis_1" : [ - "JN703794" - ], - "Hepatitis_B_virus__I190" : [ - "FJ562304" - ], - "Hepatitis_E_virus_genotype_3_JIO_swJ19_1" : [ - "AB443623" - ], - "Faba_bean_necrotic_yellows_virus__Lahic_13_5" : [ - "KC979017", - "KC979016" - ], - "Human_immunodeficiency_virus_1__1012_08" : [ - "AY331285" - ], - "Madariaga_virus_MADV_Mesocricetus_VEN_HB250784_1996" : [ - "KJ469576" - ], - "Celery_mosaic_virus__California" : [ - "NC_015393" - ], - "Hepatitis_B_virus__S1732_2" : [ - "FJ787473" - ], - "Tomato_yellow_leaf_curl_virus__Kermanshah" : [ - "JQ231214" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2477_2008" : [ - "FJ850107" - ], - "Dengue_virus_3__PF90_6056" : [ - "AY744681" - ], - "South_African_cassava_mosaic_virus__MG_MG565A1_11" : [ - "KJ887734" - ], - "Temperate_fruit_decay_associated_virus__MFB26" : [ - "KR134324" - ], - "Escherichia_phage_vB_EcoM_ep3" : [ - "NC_025430" - ], - "Infectious_bronchitis_virus_NGA_A116E7_2006__NGA_A116E7_2006" : [ - "FN430415" - ], - "Dengue_virus_1__DENV_1_US_BID_V2138_1996" : [ - "FJ478457" - ], - "Actinoplanes_SE50_110" : [ - "NC_017803" - ], - "Hepatitis_delta_virus_dTk12_dTk12" : [ - "AM779595" - ], - "African_cassava_mosaic_virus__MG_MG87A1_06" : [ - "KJ887900" - ], - "Dengue_virus_1__HNRG25001" : [ - "KC692512" - ], - "Human_papillomavirus_type_58__Qv03858" : [ - "HQ537766" - ], - "Yellow_fever_virus_BeH655417" : [ - "JF912190" - ], - "Toscana_virus_TOSV_Firenze_ITA_1985" : [ - "KM275767" - ], - "Macroptilium_yellow_spot_virus__BR_Sti17_11" : [ - "KJ939874" - ], - "Porcine_circovirus_2_SXZZA_03" : [ - "KC800645" - ], - "Human_immunodeficiency_virus_2__ROD" : [ - "HIV2ROD" - ], - "Maize_streak_virus__UBug_245" : [ - "EF547117" - ], - "Pennisetum_mosaic_virus__AZGL2" : [ - "JX070143" - ], - "Paspalum_striate_mosaic_virus__AU_QG16_2011" : [ - "JQ948073" - ], - "Newcastle_disease_virus_Peacock12" : [ - "KJ769262" - ], - "Dengue_virus_2__DENV_2_PE_FPI00174_2011" : [ - "KC294204" - ], - "Hepatitis_B_virus__I2_M04_2305" : [ - "FJ023672" - ], - "Torque_teno_sus_virus_1b__TTV2Ln13" : [ - "HM633235" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4946_1" : [ - "KR105280" - ], - "Methanocella_arvoryzae_MRE50" : [ - "NC_009464" - ], - "Squash_mosaic_virus__CH_99_211" : [ - "EU421059", - "EU421060" - ], - "Xanthomonas_oryzae_oryzicola_BLS256" : [ - "NC_017267" - ], - "West_Nile_virus__WNV_1_US_BID_V6508_2002" : [ - "KJ501491" - ], - "Hepatitis_B_virus__17372_NE_BRA" : [ - "KJ854692" - ], - "Squash_leaf_curl_virus__JO3_330" : [ - "KM595213" - ], - "Staphylococcus_phage_phiETA2_TY94" : [ - "NC_008798" - ], - "BK_polyomavirus_MON_5" : [ - "AB269849" - ], - "South_African_cassava_mosaic_virus__MG_MG404A5_11" : [ - "KJ887713" - ], - "Tobacco_mosaic_virus__Pingtan_2" : [ - "HE818439" - ], - "Streptococcus_dysgalactiae_equisimilis_GGS_124" : [ - "NC_012891" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_CFI1376_2011" : [ - "KJ672569" - ], - "African_cassava_mosaic_virus__CF_CF64BE_07" : [ - "KJ887604" - ], - "Aurantimonas_phage_AmM_1_AmM_1" : [ - "NC_027334" - ], - "Rhynchosia_mosaic_Sinaloa_virus__Sinaloa" : [ - "DQ406673", - "DQ406672" - ], - "Fibrella_aestuarina" : [ - "NC_019012", - "NC_020054" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3737_2007" : [ - "GU131979" - ], - "Chicken_anemia_virus__TJBD33" : [ - "AY843527" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2185_2001" : [ - "FJ639756" - ], - "Muromegalovirus_WP15B_WP15B" : [ - "EU579860" - ], - "Diatraea_saccharalis_densovirus" : [ - "NC_001899" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4849_2009" : [ - "HQ705622" - ], - "Rice_stripe_virus__GC_JB" : [ - "FJ602679", - "FJ602692" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1982_2001" : [ - "JN819423" - ], - "Mycobacterium_phage_Sarfire" : [ - "NC_022324" - ], - "Tomato_leaf_curl_Joydebpur_betasatellite__India_Amadalavalasa2_Kenaf_2007___ToLCB_kenaf_02" : [ - "EU880232" - ], - "Mycoplasma_hyorhinis_HUB_1" : [ - "NC_014448" - ], - "Human_immunodeficiency_virus_1__09YNLC10sg" : [ - "KC898984" - ], - "Porcine_epidemic_diarrhea_virus_USA_Ohio120_2014" : [ - "KJ645698" - ], - "Human_bocavirus_HBoV3" : [ - "JN086998" - ], - "Erysipelothrix_rhusiopathiae_Fujisawa" : [ - "NC_015601" - ], - "Tomato_common_mosaic_virus__BR_Pda44_05" : [ - "KC706584" - ], - "Sida_mosaic_Alagoas_virus__BgV02A_1_C59" : [ - "NC_016573" - ], - "Hepatitis_B_virus_subtype_ayw_JYW796" : [ - "AB033558" - ], - "Hepatitis_B_virus__AIDS36" : [ - "JQ801489" - ], - "Human_poliovirus_2_NIE1018443" : [ - "KJ170539" - ], - "Hepatitis_B_virus_C_1858_ea1" : [ - "AF223954" - ], - "Rice_dwarf_virus__A" : [ - "X54622", - "X54620" - ], - "Lymantria_dispar_multiple_nucleopolyhedrovirus__2161" : [ - "KF695050" - ], - "Avian_leukosis_virus_Km_5845" : [ - "AB670314" - ], - "Hepatitis_B_virus__PNF5403" : [ - "KF779367" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1714_2007" : [ - "FJ205868" - ], - "Japanese_encephalitis_virus_XJP613" : [ - "EU693899" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V226_2005" : [ - "EU255946" - ], - "Porcine_circovirus_2_HANY12" : [ - "JX534237" - ], - "Foot_and_mouth_disease_virus_O_UKG_4014_2001_UKG_4014_2001" : [ - "EF552693" - ], - "Hepatitis_C_virus_SA4" : [ - "KJ925149" - ], - "Mycobacterium_phage_Phlyer" : [ - "NC_012027" - ], - "Hepatitis_B_virus_HBV_P47" : [ - "KC510656" - ], - "BK_polyomavirus__TW_2" : [ - "AB213487" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V394_2006" : [ - "EU256048" - ], - "Dengue_virus_3__98TW349" : [ - "DQ675521" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_R18_2010" : [ - "JF519619" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_91_2013" : [ - "KJ672452" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V383_2003" : [ - "EU482881" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_Pasteur" : [ - "DQ868486", - "DQ868485" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT34B44_2004" : [ - "JF909180" - ], - "Hepatitis_B_virus__G15" : [ - "FM209512" - ], - "Tomato_yellow_leaf_curl_virus__Buyeo_12" : [ - "HM856910" - ], - "Hepatitis_E_virus__SAAS_FX17" : [ - "JF915746" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3430_2006" : [ - "GU131849" - ], - "Turnip_mosaic_virus_BJ_B03" : [ - "KC119187" - ], - "Proteus_phage_PM_85" : [ - "NC_027379" - ], - "Stachytarpheta_leaf_curl_virus____Hn5_4___Hn5_4" : [ - "AJ564743" - ], - "Tomato_leaf_curl_New_Delhi_virus__tomato_del25_2006" : [ - "EF408038" - ], - "Wheat_dwarf_virus__GZGY07_5" : [ - "KJ536088" - ], - "Dengue_virus_2__DENV_2_US_BID_V1442_2005" : [ - "EU781135" - ], - "Corynebacterium_maris_DSM_45190" : [ - "NC_021920", - "NC_021915" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3919_2000" : [ - "GQ868637" - ], - "Chthonomonas_calidirosea_T49" : [ - "NC_021487" - ], - "Human_immunodeficiency_virus_1__CB118" : [ - "AY900571" - ], - "Cronobacter_sakazakii_45402" : [ - "NC_023024", - "NC_023032", - "NC_023025" - ], - "Roseburia_intestinalis_XB6B4" : [ - "NC_021012" - ], - "Porcine_epidemic_diarrhea_virus_USA_Ohio69_2013" : [ - "KJ645665" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_4" : [ - "JQ647457" - ], - "Soybean_mosaic_virus__6067_1" : [ - "JF833015" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__SY0608" : [ - "EU144079" - ], - "Porcine_circovirus_2_GD003" : [ - "KM503044" - ], - "Listeria_monocytogenes_10403S" : [ - "NC_017544" - ], - "Hepatitis_B_virus__J165" : [ - "GQ377602" - ], - "Giardia_lamblia_virus" : [ - "NC_003555", - "AF525216" - ], - "Newcastle_disease_virus__ndv58_D_58" : [ - "KM056354" - ], - "Rabies_virus__Rus_Lipetsk_8054f_2011" : [ - "KC595282" - ], - "Dengue_virus_3__DENV_3_MX_BID_V2987_2006" : [ - "FJ898441" - ], - "Tobacco_vein_clearing_virus" : [ - "NC_003378" - ], - "Tomato_yellow_leaf_curl_virus_SDCL" : [ - "JQ038240" - ], - "Maize_streak_virus__MSV_B1_Za_Mof_g219_2007" : [ - "EU628593" - ], - "Tomato_yellow_leaf_curl_China_betasatellite__SC176" : [ - "NC_019532" - ], - "West_Nile_virus__WNV_1_Gallus_BID_V5109_skin" : [ - "JF357960" - ], - "Coxsackievirus_B5_A210_KM_09" : [ - "JX843811" - ], - "Wheat_dwarf_virus__GZGY07_2" : [ - "KJ536086" - ], - "Hepatitis_B_virus__IND_2009_5" : [ - "KF214656" - ], - "JC_polyomavirus__UK_2" : [ - "AB048576" - ], - "Gallid_herpesvirus_2_strain_814_814" : [ - "JF742597" - ], - "JC_polyomavirus__330A" : [ - "AY382188" - ], - "Nilaparvata_lugens_honeydew_virus_3__Kagoshima" : [ - "NC_021567" - ], - "Malvastrum_yellow_vein_betasatellite__SC226_5" : [ - "JX679255" - ], - "Mycobacterium_phage_Methuselah" : [ - "KC661272" - ], - "Oscivirus_A2_10878" : [ - "NC_014413" - ], - "Barley_dwarf_virus__ES1BDV" : [ - "HF968639", - "HF968640" - ], - "Enterovirus_D68__2014_R1011" : [ - "KT280498" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00089_1988_NEW_P23H32F62" : [ - "KF268327" - ], - "Dengue_virus_3__418_BR_PE_06" : [ - "JX669505" - ], - "Frog_virus_3__RUK13" : [ - "KJ538546" - ], - "Hepatitis_B_virus__Q53K_4" : [ - "EU717217" - ], - "Hepatitis_B_virus__114" : [ - "EU787435" - ], - "Vaccinia_virus_MVA_BN" : [ - "DQ983238" - ], - "Hepatitis_B_virus__DEN6119" : [ - "KF779238" - ], - "JC_polyomavirus__ZJ_1" : [ - "JQ237146" - ], - "Hepatitis_C_virus__Eg9" : [ - "DQ988077" - ], - "Hepatitis_B_virus__SHB620" : [ - "KJ598733" - ], - "Japanese_encephalitis_virus__HB97" : [ - "JF706285" - ], - "Enterobacteria_phage_phiX174__phiX_2_FR" : [ - "JF719727" - ], - "Eragrostis_curvula_streak_virus__ECSV_ZA_Gre2_g256_2007" : [ - "FJ665629" - ], - "Hepatitis_C_virus_subtype_6i__Th602" : [ - "DQ835770" - ], - "McMurdo_Ice_Shelf_pond_associated_circular_DNA_virus_4__alg49_63" : [ - "NC_024480" - ], - "Mushroom_bacilliform_virus" : [ - "NC_001633" - ], - "Hepatitis_B_virus__HCUCH16" : [ - "HM585194" - ], - "Israeli_acute_paralysis_virus_Korea3" : [ - "KC690270" - ], - "Human_immunodeficiency_virus_1__1333_d2" : [ - "AY308760" - ], - "Simian_immunodeficiency_virus__SIVgsn_99CM71" : [ - "AF468658" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC20B00_2004" : [ - "JF909097" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0066" : [ - "KP759730" - ], - "Torque_teno_canis_virus__LDL" : [ - "GU951508" - ], - "Macroptilium_golden_mosaic_virus_Wissadula_August_Town" : [ - "NC_010953", - "NC_010952" - ], - "Pirital_mammarenavirus_VAV_488" : [ - "NC_005897", - "AY216505", - "NC_005894" - ], - "Human_papillomavirus_type_106__Qv28897" : [ - "DQ080082" - ], - "Porcine_circovirus_2_SCNB_CHA_05" : [ - "FJ998185" - ], - "Hepatitis_B_virus__AIDS22" : [ - "JQ801479" - ], - "Porcine_epidemic_diarrhea_virus_CH_FJND_3_2011" : [ - "JQ282909" - ], - "Dengue_virus_2_ThD2_0168_79" : [ - "DQ181805" - ], - "Dengue_virus_1_VE_61059_2006" : [ - "HQ332177" - ], - "Ugandan_cassava_brown_streak_virus_Ugandan" : [ - "FJ185044" - ], - "Whitewater_Arroyo_mammarenavirus_Whitewater_Arroyo_virus_S_prototype_strain_AV_9310135" : [ - "NC_010700" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_35_2011" : [ - "KJ686142" - ], - "Middle_East_respiratory_syndrome_coronavirus__Riyadh_14_2013" : [ - "KJ156934" - ], - "Bacillus_phage_SPbeta" : [ - "NC_001884" - ], - "Hepatitis_B_virus__CAR187" : [ - "AM494717" - ], - "Human_papillomavirus_type_84" : [ - "AF293960" - ], - "Hantaan_virus_76_118" : [ - "NC_005222", - "Y00386" - ], - "Norovirus_Hu_GII_20258_2009_VNM_Hu_GII_20258_2009_VNM" : [ - "KC409285" - ], - "Mycobacterium_gilvum_Spyr1" : [ - "NC_014811", - "NC_014814", - "NC_014812" - ], - "Dengue_virus_2__DENV_2_TH_BID_V1458_1994" : [ - "EU726767" - ], - "Peru_tomato_mosaic_virus__PPK11" : [ - "AJ516010" - ], - "Human_immunodeficiency_virus_1__15389_1" : [ - "DQ853457" - ], - "Yellow_fever_virus_vaccine_strain_17D_213" : [ - "YFU17067" - ], - "Human_immunodeficiency_virus_1__Fj057" : [ - "EF036530" - ], - "Hepatitis_B_virus__cxa2019" : [ - "KC774308" - ], - "Maize_streak_virus__MSV_A_ZW_Maz4_Mic3_1992" : [ - "FJ882149" - ], - "Porcine_circovirus_2_PP_3757" : [ - "EU594438" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2759_2007" : [ - "GQ199783" - ], - "East_African_cassava_mosaic_virus__EACMV__K325" : [ - "AJ704937", - "AJ717548" - ], - "West_Nile_virus__BSL5_09" : [ - "JF957176" - ], - "Human_immunodeficiency_virus_1__TRJO_flC6" : [ - "FJ496155" - ], - "O_nyong_nyong_virus" : [ - "NC_001512" - ], - "Human_papillomavirus_type_16__JP0278" : [ - "AB818689" - ], - "Rhinovirus_C__N10" : [ - "GQ223228" - ], - "Himetobi_P_virus__Zhejiang" : [ - "KF280585" - ], - "Human_respiratory_syncytial_virus__RSV_7" : [ - "GU591764" - ], - "Dehalococcoides_ethenogenes_195" : [ - "NC_002936" - ], - "MW_polyomavirus__HN037" : [ - "KC571704" - ], - "Exogenous_mouse_mammary_tumor_virus" : [ - "AF228552", - "AF228551" - ], - "Chlamydia_trachomatis_B_Jali20_OT" : [ - "NC_012686" - ], - "Hepatitis_B_virus_genotype_F_VNZ8339_2" : [ - "AB036907" - ], - "Bhendi_yellow_vein_India_virus__India_Phalaghat_OY011_2005___OY011" : [ - "GU112016" - ], - "Human_papillomavirus_type_111" : [ - "EU410349" - ], - "Beak_and_feather_disease_virus__BKS2ZA_85" : [ - "GQ165757" - ], - "Bovine_viral_diarrhea_virus_2_Hokudai_Lab_09" : [ - "AB567658" - ], - "African_cassava_mosaic_virus__B5J2" : [ - "JN053423" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140024" : [ - "KR653252" - ], - "Keunjorong_mosaic_virus__Cheongwon" : [ - "NC_016159" - ], - "West_Nile_virus__WNV_1_US_BID_V6550_2002" : [ - "KJ501505" - ], - "Hepatitis_B_virus_258_13a" : [ - "KR013893" - ], - "Mesta_yellow_vein_mosaic_virus__India_Raigunj_2008___Raigunj_East_India" : [ - "FJ159264" - ], - "Wheat_dwarf_virus__Winter_wheat_110" : [ - "KJ473700" - ], - "Bluetongue_virus_16_IND2004_05" : [ - "AM900386" - ], - "Chlamydophila_pneumoniae_CWL029" : [ - "NC_000922" - ], - "Hepatitis_B_virus__Leb10" : [ - "JN642127" - ], - "Mamastrovirus_3__PAstV_GX1" : [ - "NC_025379" - ], - "Infectious_bronchitis_virus_4_91_vaccine" : [ - "KF377577" - ], - "Columbid_circovirus__Bel_18" : [ - "DQ915957" - ], - "Norovirus_Hu_GII_4_CGMH03_2006_TW" : [ - "JN400601" - ], - "Cucumber_green_mottle_mosaic_virus__CGMMV11" : [ - "HQ692886" - ], - "Potato_virus_Y_Ordinary_OKUM4" : [ - "AB711150" - ], - "Mycobacterium_phage_Bxz1" : [ - "NC_004687" - ], - "West_Nile_virus__TX6276" : [ - "JF415916" - ], - "Hepatitis_B_virus__THB49_IC" : [ - "JN664912" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC40BR2_2009" : [ - "JF909116" - ], - "Bean_golden_mosaic_virus__BR_Cri16_12" : [ - "KJ939852" - ], - "Hepatitis_B_virus__BV_122" : [ - "GU563552" - ], - "Human_papillomavirus_type_62__Qv18091" : [ - "AY395706" - ], - "Grapevine_geminivirus__OR1a" : [ - "KF137562" - ], - "Clerodendrum_golden_mosaic_China_virus__Fz9" : [ - "FJ011673" - ], - "Bluetongue_virus_9__TUR2000_03" : [ - "AJ586684" - ], - "GB_virus_C__263_26" : [ - "KP710598" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7591_2007" : [ - "KJ189325" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0067" : [ - "KP759731" - ], - "Norovirus_GII_Hu_TW_2012_GII_Pe_GII_4_Sydney2012_Taipei_108__Taipei_108" : [ - "KJ196285" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V413_2003" : [ - "EU155313" - ], - "Avian_paramyxovirus_8__APMV_8_Goose_Delaware_1053_76" : [ - "NC_025374" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2174_2000" : [ - "FJ639746" - ], - "Hepatitis_B_virus__MY753983" : [ - "KJ803778" - ], - "Porcine_circovirus_2__HUB_5" : [ - "HM776441" - ], - "Hepatitis_C_virus__QC297" : [ - "JF735117" - ], - "Duck_hepatitis_B_virus_Guilin_DHBV2" : [ - "JX469897" - ], - "Hepatitis_B_virus_C0503463_MTR_F" : [ - "AP011107" - ], - "Dengue_virus_3__DENV_3_US_BID_V1616_2004" : [ - "FJ182006" - ], - "Rosa_rugosa_leaf_distortion_virus__MN_3" : [ - "NC_020415" - ], - "Mycobacterium_phage_Crossroads" : [ - "NC_022071" - ], - "Bluetongue_virus_2_BTV_2RSA_vacc" : [ - "JN255938", - "JN255939", - "JN255934", - "JN255936", - "JN255933", - "JN255937", - "JN255932", - "JN255941", - "JN255940", - "JN255935" - ], - "West_Nile_virus__WNV_1_US_BID_V4622_2008" : [ - "HM488237" - ], - "Enterovirus_B81__99279_XZ_CHN_1999" : [ - "KJ755189" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_1483" : [ - "KP998403" - ], - "Human_immunodeficiency_virus_1__03ZASK065B1" : [ - "AY772694" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2717_2006" : [ - "FJ882541" - ], - "African_horse_sickness_virus_serotype_3_attenuated_South_Africa" : [ - "AJ007304" - ], - "Hepatitis_B_virus__1356_SE_BRA" : [ - "KJ854686" - ], - "Porcine_circovirus_2_GD1218" : [ - "KM096530" - ], - "Tomato_leaf_curl_Bangalore_virus__ToLCBV_AVT1" : [ - "AY428770" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2218_2003" : [ - "FJ639785" - ], - "Pseudomonas_phage_MPK6" : [ - "NC_022746" - ], - "Crimean_Congo_hemorrhagic_fever_virus_HSADL_Gujrat_India_2011_292240_Gujrat_2011" : [ - "JX051650" - ], - "Escherichia_phage_wV8" : [ - "NC_012749" - ], - "Porcine_circovirus_2__DE136_13" : [ - "KP698395" - ], - "Hamster_polyomavirus" : [ - "X02449", - "PPCCGAAA" - ], - "Pepper_mild_mottle_virus_Iw" : [ - "AB254821" - ], - "Tomato_mottle_virus__Florida" : [ - "NC_001939", - "NC_001938" - ], - "Human_adenovirus_19__2001" : [ - "AB448774" - ], - "Hepatitis_B_virus__MOD_4574" : [ - "GQ183453" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P3pp29" : [ - "FJ882934" - ], - "Human_parainfluenza_virus_3_HPIV3_FRA_30264021_2010" : [ - "KF530236" - ], - "Beak_and_feather_disease_virus__BKS1ZA_84" : [ - "GQ165756" - ], - "JC_polyomavirus__JCV176FLC_17" : [ - "JF424908" - ], - "Hepatitis_B_virus__clz1030" : [ - "KC774189" - ], - "SIVcpz_Ptt_04Cam155__Ptt_04Cam155" : [ - "FR686510" - ], - "Human_immunodeficiency_virus_1__98CMU2901" : [ - "AY169812" - ], - "Toscana_virus_TOSV_Pesaro_ITA_1992" : [ - "KM275772" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_101_2012" : [ - "KJ686181" - ], - "Simian_immunodeficiency_virus_SIVmac239_1937" : [ - "AY611495" - ], - "Porcine_circovirus_2_XN_1" : [ - "JF928002" - ], - "JC_polyomavirus__339A" : [ - "AY386374" - ], - "Hepatitis_B_virus__M76" : [ - "GQ924641" - ], - "Bluetongue_virus_13__160" : [ - "JX272498", - "JX272489" - ], - "Porcine_circovirus_2_GD_ss" : [ - "JX945577" - ], - "Pepper_yellow_vein_Mali_virus_Mali_Burkina_Faso_Bazega_hot_pepper2_2008" : [ - "FM876852" - ], - "West_Nile_virus__WNV_USA_BID_G15503" : [ - "JX503094" - ], - "Human_adenovirus_5" : [ - "ADRCOMPGEN" - ], - "Torque_teno_sus_virus_1a__TTV1SL" : [ - "JX535326" - ], - "Astrovirus_MLB1__SY071" : [ - "JQ086552" - ], - "Tembusu_virus__GX2013G" : [ - "KM275941" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG57" : [ - "FJ914397" - ], - "Canine_distemper_virus_SD_14_11" : [ - "KP738610" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_9788_2001" : [ - "DQ404166" - ], - "Human_immunodeficiency_virus_1__96CMABB637" : [ - "AY169810" - ], - "Jatropha_mosaic_virus__DO_Azua_Az_4_2012" : [ - "KJ174336", - "KJ174332" - ], - "Hepatitis_B_virus__PNF5063" : [ - "KF779353" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1233_2007" : [ - "FJ410291" - ], - "BK_polyomavirus__SHA_43" : [ - "AB365171" - ], - "Human_immunodeficiency_virus_1__98CMABB197" : [ - "AY169811" - ], - "Human_papillomavirus_type_6__116" : [ - "HG793924" - ], - "Hepatitis_B_virus__AlaskaG23" : [ - "AB287319" - ], - "Hepatitis_B_virus__P64" : [ - "GQ477488" - ], - "Enterobacteria_phage_4MG" : [ - "NC_022968" - ], - "Okra_leaf_curl_alphasatellite__OKB_2" : [ - "KF267445" - ], - "Hepatitis_B_virus__I_T53" : [ - "GU456641" - ], - "Hepatitis_B_virus__cxa1601" : [ - "KC774299" - ], - "African_cassava_mosaic_virus__MG_MG24A1_06" : [ - "KJ887844" - ], - "Porcine_astrovirus_3__US_MO123" : [ - "NC_019494" - ], - "Jatropha_leaf_curl_virus_JCLCV_PDVN_MPR_Guj_1" : [ - "GU451249" - ], - "Dengue_virus_2_DENV_2_PR_12DN_1994" : [ - "GQ398285" - ], - "Usutu_virus_V190" : [ - "KJ438744" - ], - "Porcine_circovirus_2__ML1" : [ - "HQ202954" - ], - "Eubacterium_cylindroides_T2_87" : [ - "NC_021019" - ], - "Human_herpesvirus_5_BE_26_2010" : [ - "KP745719" - ], - "Hepatitis_C_virus_subtype_1a__BR554_P10_10_21_03" : [ - "EF032888" - ], - "JC_polyomavirus__ET_8" : [ - "AB126986" - ], - "Rice_stripe_virus__HuZ10" : [ - "JQ927415", - "JQ927427", - "JQ927433", - "JQ927421" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2713_2006" : [ - "GQ868606" - ], - "Mycobacterium_phage_Jobu08" : [ - "NC_021535" - ], - "Hepatitis_B_virus__TP65" : [ - "KF192835" - ], - "Bovine_leukemia_virus__LS1" : [ - "HE967301" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V262_2004" : [ - "EU155352" - ], - "Thermus_thermophilus_SG0_5JP17_16" : [ - "NC_017273", - "NC_017272" - ], - "South_African_cassava_mosaic_virus__MG_MG342B4_11" : [ - "KJ887993" - ], - "Treponema_pallidum_Nichols" : [ - "NC_021490" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_121040" : [ - "KJ425495" - ], - "Beet_mild_yellowing_virus__IPP" : [ - "DQ132996" - ], - "Hepatitis_B_virus__DEN6090" : [ - "KF779233" - ], - "Eel_River_basin_pequenovirus__c15438" : [ - "KP087947" - ], - "Human_astrovirus_5__Goiania_GO_12_94_Brazil" : [ - "DQ028633" - ], - "Tobacco_leaf_curl_Japan_virus__JP3___TLCV_Jp3" : [ - "AB079689" - ], - "African_cassava_mosaic_virus__CF_CF114AB3_07" : [ - "KJ887795" - ], - "SARS_coronavirus_BJ03__BJ03" : [ - "AY278490" - ], - "Viral_hemorrhagic_septicemia_virus_FA281107" : [ - "EU481506" - ], - "Hepatitis_B_virus__Cuba64" : [ - "KM606751" - ], - "Porcine_circovirus_2_10GX" : [ - "HQ395056" - ], - "Vanilla_distortion_mosaic_virus__VDMV_Cor" : [ - "NC_025250" - ], - "Chikungunya_virus_Thailand_2009_CK11_53" : [ - "KJ796850" - ], - "Geobacter_lovleyi_SZ" : [ - "NC_010815", - "NC_010814" - ], - "Gallid_herpesvirus_3_SB_1" : [ - "HQ840738" - ], - "Porcine_epidemic_diarrhea_virus__CHYJ130330" : [ - "KJ020932" - ], - "Parachlamydia_acanthamoebae_UV7" : [ - "NC_015702" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4740_2009" : [ - "HQ541795" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3423_2006" : [ - "GU131845" - ], - "Madariaga_virus_MADV_Culex_BRA_BEAR300851_1975" : [ - "KJ469641" - ], - "Hepatitis_B_virus_4374_97" : [ - "EU594415" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4087_2008" : [ - "GU131830" - ], - "Potato_virus_A__Ali" : [ - "AJ131401" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6730_2009" : [ - "KJ627266" - ], - "Human_bocavirus_3_MC8" : [ - "GQ867666" - ], - "Human_herpesvirus_5_JP" : [ - "GQ221975" - ], - "Hepatitis_C_virus__7041_FU24" : [ - "EU362894" - ], - "Porcine_circovirus_2__Bd3_2007" : [ - "KM624031" - ], - "Sida_yellow_vein_virus_satellite_DNA_beta" : [ - "NC_007213" - ], - "Alternanthera_yellow_vein_virus__LC1" : [ - "EF544603" - ], - "West_Nile_virus__WNV_1_US_BID_V6626_2002" : [ - "KJ501517" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3885_2008" : [ - "GU131715" - ], - "Feline_picornavirus_356F" : [ - "JN572117" - ], - "Human_polyomavirus_7__713b" : [ - "HM011567" - ], - "Cotton_leaf_curl_Rajasthan_virus__Rh_4" : [ - "KM096470" - ], - "Chlamydia_pecorum_W73" : [ - "NC_022440" - ], - "Dobrava_Belgrade_virus_Kurkino_53Aa_98" : [ - "AJ131673" - ], - "Squash_leaf_curl_virus__IL1_12" : [ - "KM595098" - ], - "Tomato_aspermy_virus_C_chrysanthemum" : [ - "TOARNA3" - ], - "Rabbit_fibroma_virus_Kasza" : [ - "NC_001266" - ], - "JC_polyomavirus__SS" : [ - "AB118235" - ], - "Dengue_virus_4__DSS_patient" : [ - "JN638572" - ], - "Pygoscelis_adeliae_papillomavirus__Crozier_2013" : [ - "NC_023894" - ], - "Porcine_circovirus_2_Tainan" : [ - "AF166528" - ], - "Watermelon_chlorotic_stunt_virus__JO3_618" : [ - "KM820236" - ], - "Human_rotavirus_A_1152_stool" : [ - "AJ236771" - ], - "Potato_virus_Y_Ordinary_OUNKS" : [ - "AB711155" - ], - "Chino_del_tomate_virus__IC" : [ - "NC_003831", - "NC_003830" - ], - "Circovirus_like_genome_SAR_A_SAR_A" : [ - "NC_013030" - ], - "West_Nile_virus__WNV_1_US_BID_V6573_2002" : [ - "KJ501368" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE3832_2009" : [ - "KJ627253" - ], - "Porcine_circovirus_2__V0521" : [ - "KJ128273" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__CH_1R" : [ - "EU807840" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBGB3_6" : [ - "FJ914405" - ], - "Middle_East_respiratory_syndrome_coronavirus__Hafr_Al_Batin_1_2013" : [ - "KF600628" - ], - "Hepatitis_B_virus__clz1046" : [ - "KC774195" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL107A" : [ - "AB985317", - "AB985549" - ], - "Salmonella_phage_ViI" : [ - "NC_015296" - ], - "Wheat_dwarf_virus__SXHC10_8" : [ - "JQ647491" - ], - "Human_respiratory_syncytial_virus__03_036544" : [ - "JQ901458" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__Y304" : [ - "AM236776" - ], - "Human_rhinovirus_A30" : [ - "DQ473512" - ], - "Streptococcus_iniae_SF1" : [ - "NC_021314" - ], - "Bacillus_phage_pGIL01" : [ - "AJ536073" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Culex_vomerifer_COL_00SMM480_11_2000_ID" : [ - "KC344460" - ], - "Human_poliovirus_1_Sabin_1" : [ - "AY184219" - ], - "Brassica_yellows_virus__BrYV_BBJ" : [ - "HQ388349" - ], - "Dugbe_virus__IbAr_1792" : [ - "AF434164" - ], - "Newcastle_disease_virus_Du_CH_LGX_280_2013" : [ - "KM885162" - ], - "Beak_and_feather_disease_virus__2NC89B" : [ - "JX049217" - ], - "Transmissible_gastroenteritis_virus" : [ - "AX154950", - "CQ870486" - ], - "Avian_paramyxovirus_9_duck_New_York_22_1978" : [ - "NC_025390" - ], - "Hepatitis_B_virus__N060v1" : [ - "KF922435" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1329_2006" : [ - "EU660409" - ], - "Beak_and_feather_disease_virus__CS10_1017_OBP_VIC_HS030910_B" : [ - "KF188691" - ], - "Classical_swine_fever_virus_CSFV_2_3_dp_CSF864_2007_BG_Jambul" : [ - "HQ148062" - ], - "BK_polyomavirus__J2B_11" : [ - "AB301101" - ], - "Human_immunodeficiency_virus_1__BREPM1066" : [ - "FJ195090" - ], - "Hepatitis_B_virus__P01" : [ - "EU859928" - ], - "Vernonia_yellow_vein_virus" : [ - "NC_007730" - ], - "Human_calicivirus_Hu_NLV_Oxford_B5S22_2003_UK_Hu_NLV_Oxford_B5S22_2003_UK" : [ - "AY581254" - ], - "Hepatitis_B_virus__PNF5521" : [ - "KF779369" - ], - "Grapevine_leafroll_associated_virus_3__Cl_766" : [ - "EU344893" - ], - "Dengue_virus_1__DENV_1_VN_BID_V957_2007" : [ - "EU482502" - ], - "Hepatitis_B_virus__cww1126" : [ - "KC774275" - ], - "Hepatitis_E_virus_JMNG36_Oki08" : [ - "AB591734" - ], - "Dengue_virus_2__DENV_2_US_BID_V1436_2004" : [ - "EU687215" - ], - "Hepatitis_B_virus__Occult_HK514" : [ - "KJ410519" - ], - "Squash_leaf_curl_virus__JO1_641" : [ - "KM595174" - ], - "Watermelon_chlorotic_stunt_virus__JO3_616" : [ - "KM820227" - ], - "Dengue_virus_1_DENV_1_SG_07K3640DK1_2008" : [ - "GQ398255" - ], - "Human_poliovirus_2__CHN15284_Sichuan_CHN_2011" : [ - "KJ419274" - ], - "Hepatitis_B_virus__cxa1065" : [ - "KC774284" - ], - "Watermelon_chlorotic_stunt_virus__JO2_412" : [ - "KM820210" - ], - "Chicken_anemia_virus__16" : [ - "KJ728825" - ], - "Sweet_potato_leaf_curl_virus_USA_SPLCV_US_BR_PA_08" : [ - "HQ393450" - ], - "Hepatitis_B_virus__MY795059" : [ - "KJ803767" - ], - "Porcine_circovirus_2_GD_ZJ" : [ - "DQ017036" - ], - "Koala_retrovirus__Br2_1CETTG" : [ - "NC_021704" - ], - "Dengue_virus_3_D3_SG_05K4477DK1_2005" : [ - "EU081223" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2469_2008" : [ - "FJ850104" - ], - "Human_poliovirus_3__31974" : [ - "FJ460227" - ], - "Himetobi_P_virus" : [ - "KM270559", - "NC_003782" - ], - "Ophiostoma_mitovirus_6" : [ - "NC_004054" - ], - "Goose_hemorrhagic_polyomavirus__Toulouse_Mule_Duck_2008" : [ - "HQ681905" - ], - "Puumala_virus_Udmurtia_458Cg_88" : [ - "Z30707" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_5_2009" : [ - "KF686340" - ], - "Norovirus_Hu_GII_4_Miyagi4_2006_JP_Hu_GII_4_Miyagi4_2006_JP" : [ - "AB447441" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2073_2001" : [ - "FJ639720" - ], - "Human_metapneumovirus_TN94_49" : [ - "JN184400" - ], - "Staphylococcus_aureus_TW20" : [ - "NC_017332", - "NC_017352", - "NC_017331" - ], - "Propionibacterium_phage_PHL082M02__PHL082M02" : [ - "KJ578769" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V181_1992" : [ - "EU255974" - ], - "Porcine_circovirus_2__YL4" : [ - "HQ202964" - ], - "Porcine_circovirus_2__La_Habana_21" : [ - "FN687846" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_M_SD_SD231_2013" : [ - "KM229909" - ], - "Enterobacteria_phage_DE3" : [ - "EU078592" - ], - "Hepatitis_B_virus__72_Mutare" : [ - "HM535205" - ], - "Bathycoccus_sp__RCC1105_virus_BpV2" : [ - "HM004430" - ], - "Usutu_virus_V45" : [ - "KJ438770" - ], - "Human_papillomavirus_type_18__Qv39775" : [ - "KC470229" - ], - "Norovirus_Hu_GII_4_5M_USA_2004_Hu_GII_4_5M_USA_2004_5M" : [ - "JQ798158" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2769_2007" : [ - "GQ199793" - ], - "Avian_adeno_associated_virus__YZ_1" : [ - "GQ368252" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_321_01" : [ - "AY687333" - ], - "Potato_virus_X__PVX2_7" : [ - "HQ450387" - ], - "Citrus_chlorotic_dwarf_associated_virus__CN001" : [ - "KF561253" - ], - "Human_respiratory_syncytial_virus__07_039193" : [ - "JX015489" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4744_2009" : [ - "JN093517" - ], - "Hepatitis_B_virus__cww1039" : [ - "KC774253" - ], - "Dengue_virus_2__DENV_2_VN_BID_V738_2006" : [ - "EU482675" - ], - "Dengue_virus_2__DC619Y12" : [ - "KM279533" - ], - "Feline_immunodeficiency_virus__Mc100" : [ - "EF455605" - ], - "African_horse_sickness_virus__HS21_07" : [ - "KP009621", - "KP009626", - "KP009628", - "KP009625", - "KP009623", - "KP009627", - "KP009629", - "KP009630", - "KP009624" - ], - "Enterobacteria_phage_phiX174__100C90" : [ - "EF380021" - ], - "Tomato_leaf_curl_China_betasatellite__G7" : [ - "AJ704618" - ], - "Mycobacterium_phage_HINdeR" : [ - "NC_021308" - ], - "Newcastle_disease_virus__NDV_Yakutiya_mallard_852_2011" : [ - "KJ920203" - ], - "Betacoronavirus_Erinaceus_VMC_DEU_2012__ErinaceusCoV_2012_216_GER_2012" : [ - "NC_022643" - ], - "Echovirus_E6_KM57_09" : [ - "JQ801739" - ], - "Hepatitis_B_virus__dww1108" : [ - "KC774458" - ], - "Birao_virus_ArB2198_18_08_1969" : [ - "AM711131" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_X_ECU_R16905_1977_ID" : [ - "KC344517" - ], - "Streptococcus_phage_Cp_1" : [ - "NC_001825" - ], - "Hepatitis_C_virus__QC132" : [ - "JF735130" - ], - "Porcine_circovirus_2__TN1" : [ - "HQ202950" - ], - "Watermelon_chlorotic_stunt_virus__JO1_15" : [ - "KM820197" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLI5761_2010" : [ - "KJ672548" - ], - "Human_rotavirus_A__I321" : [ - "X94618" - ], - "Hepatitis_B_virus_Hiroshima" : [ - "AB206816" - ], - "Bluetongue_virus_322222" : [ - "AY775157" - ], - "Hepatitis_B_virus__12_8957" : [ - "JX096953" - ], - "Hepatitis_B_virus__MMA_19" : [ - "AM421547" - ], - "Dengue_virus_3__DENV_3_PR_BID_V1728_2006" : [ - "KF955456" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP00616_2011" : [ - "KJ627332" - ], - "Sheeppox_virus_A_A" : [ - "AY077833" - ], - "Mumps_virus_Miyahara_parent" : [ - "AB744049" - ], - "Hepatitis_C_virus_subtype_1b__EU1" : [ - "FN435993" - ], - "Barley_yellow_dwarf_virus_PAV__043" : [ - "EF521837" - ], - "Hepatitis_E_virus_Sar_55" : [ - "AF444002", - "AF444003" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3495Ma_2002" : [ - "JN989432" - ], - "Mycoplasma_gallisepticum_F" : [ - "NC_017503" - ], - "Erethizon_dorsatum_papillomavirus_1" : [ - "NC_006951" - ], - "Human_rhinovirus_A82_ATCC_VR_1192" : [ - "FJ445160" - ], - "Human_parechovirus_1__252581" : [ - "GQ183019" - ], - "Vibrio_phage_VSKK" : [ - "AF452449" - ], - "West_Nile_virus__TX6647" : [ - "JF415917" - ], - "Rabies_virus__DRV_NG11" : [ - "KC196743" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_1999_01_DRC" : [ - "JX458833" - ], - "Dengue_virus_2__DENV_2_NI_BID_V4915_2009" : [ - "HQ705625" - ], - "Cucumber_mosaic_virus_Pf" : [ - "AJ237850" - ], - "Human_parainfluenza_virus_1_HPIV1_AUS_54_2007" : [ - "KF687310" - ], - "Hepatitis_B_virus__SHB1A4" : [ - "KJ598642" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2322_2001" : [ - "FJ810414" - ], - "Torque_teno_virus__S72" : [ - "KP343839" - ], - "Hepatitis_B_virus__Ag34" : [ - "KJ843195" - ], - "Listeria_phage_A006" : [ - "NC_009815" - ], - "Chikungunya_virus__PER160_H803609" : [ - "KP164571" - ], - "Brucella_suis_1330" : [ - "NC_004311", - "NC_004310" - ], - "Vaccinia_virus_L_IVP" : [ - "KP233807" - ], - "Salmonella_enterica_Serovar_Typhimurium_var__5__CFSAN001921" : [ - "NC_021815", - "NC_021814", - "NC_021843", - "NC_021816" - ], - "Porcine_circovirus_2_BY" : [ - "HM038018" - ], - "Halobacterium_NRC_1" : [ - "NC_002607", - "NC_001869", - "NC_002608" - ], - "Burkholderia_phage_phi1026b" : [ - "NC_005284" - ], - "Japanese_encephalitis_virus__GSS" : [ - "JF706275" - ], - "Temperate_fruit_decay_associated_virus__MFBpe15" : [ - "KR134335" - ], - "Potato_virus_X_HB" : [ - "X72214" - ], - "Hepatitis_B_virus__530_00_7" : [ - "EU871999" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0009" : [ - "KP759734" - ], - "Human_papillomavirus_type_58__HPV58sc78" : [ - "FJ385268" - ], - "Duck_astrovirus_1_DA93" : [ - "FJ919228" - ], - "Hepatitis_B_virus__WHTRK" : [ - "JN257178" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HLJHL" : [ - "HM189676" - ], - "Human_immunodeficiency_virus_1__04ZAPS160B1" : [ - "DQ164107" - ], - "Porcine_epidemic_diarrhea_virus_USA_Ohio68_2013" : [ - "KJ645664" - ], - "Clostridium_tetani_12124569" : [ - "NC_022778", - "NC_022777" - ], - "Hepatitis_B_virus__P7" : [ - "AB493848" - ], - "Torque_teno_virus__TTV_HD14d__gbDhDi33_33" : [ - "FR751466" - ], - "Bovine_viral_diarrhea_virus_strain_Oregon_C24V_Oregon_C24V" : [ - "AF091605" - ], - "Methylocella_silvestris_BL2" : [ - "NC_011666" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG3_5" : [ - "FJ914404" - ], - "Clerodendron_golden_mosaic_virus__YN1095" : [ - "HQ317134", - "HQ317135" - ], - "Porcine_circovirus_2_S0255_210_03__S0255_210_03" : [ - "EU057188" - ], - "West_Nile_virus__WNV_1_US_BID_V6381_2001" : [ - "KJ501445" - ], - "Bhendi_yellow_vein_betasatellite__Var" : [ - "KJ462080" - ], - "Propionibacterium_phage_P9_1" : [ - "NC_018834" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NC16845" : [ - "HQ699067" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1889_2007" : [ - "FJ461325" - ], - "Xenotropic_MuLV_related_virus_VP62__VP62" : [ - "EF185282", - "DQ399707" - ], - "Metallosphaera_cuprina_Ar_4" : [ - "NC_015435" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HB_XL" : [ - "KP162169" - ], - "Wheat_dwarf_virus__QHLD10_19" : [ - "JQ647482" - ], - "Viral_hemorrhagic_septicemia_virus_JF00Ehi1_JF00Ehi1" : [ - "AB490792" - ], - "Bluetongue_virus_12__INDAPADBNMO1_11" : [ - "KC662621" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_K_SD_FR1_1997" : [ - "KM229901" - ], - "Coxsackievirus_A16_shzh00_1" : [ - "AY790926" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_Galah_04_245" : [ - "KF385434" - ], - "Hepatitis_B_virus__HBV46" : [ - "KC875337" - ], - "Norovirus_Hu_GII_3_CBNU1_2006_KOR__CBNU1" : [ - "GU980585" - ], - "Hepatitis_B_virus__SHB2A8" : [ - "KJ598658" - ], - "Hepatitis_E_virus__HE_JA28" : [ - "AB220976" - ], - "Bovine_viral_diarrhea_virus_2__VOE_4407" : [ - "HG426495" - ], - "Hepatitis_B_virus__13D13HCC" : [ - "AB014372" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GGC_96_1404" : [ - "KF385401" - ], - "Human_immunodeficiency_virus_2__MCR35" : [ - "AY509260" - ], - "Bluetongue_virus_USA2006_01" : [ - "GQ506544", - "GQ506542", - "GQ506543", - "GQ506539", - "GQ506541", - "GQ506536", - "GQ506545", - "GQ506540", - "GQ506537", - "GQ506538" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10BJ_2" : [ - "JQ663543" - ], - "Zucchini_yellow_mosaic_virus__Kuchyna" : [ - "DQ124239" - ], - "Feline_picornavirus_1021F" : [ - "JN572119" - ], - "Dengue_virus_1__HNRG13707" : [ - "KC692504" - ], - "Peste_des_petits_ruminants_virus_China_BJ_2014" : [ - "KP260624" - ], - "West_Nile_virus__WNV_1_US_BID_V6183_2008" : [ - "KJ501240" - ], - "Porcine_circovirus_2__GRE_1" : [ - "DQ915585" - ], - "Potato_black_ringspot_virus__PRI_Ec" : [ - "NC_022799", - "NC_022798" - ], - "Coxsackievirus_A16_CC097" : [ - "KF055244" - ], - "Human_immunodeficiency_virus_1__14182_1" : [ - "DQ853440" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2898_2006" : [ - "GQ199854" - ], - "Lily_mottle_virus__LMoV_Gang_Medusa" : [ - "GU440578" - ], - "Tomato_leaf_curl_Joydebpur_betasatellite__India_Kolkatta_TC352_2011" : [ - "KJ605117" - ], - "Hepatitis_B_virus__I173" : [ - "FJ562337" - ], - "Dragonfly_larvae_associated_circular_virus_1__DflaCV_1_NZ_PG11_LD" : [ - "NC_023427" - ], - "Rousettus_bat_coronavirus_HKU10__175A" : [ - "JQ989271" - ], - "Hepatitis_B_virus__919018" : [ - "JN040796" - ], - "Porcine_circovirus_2__DBN_02" : [ - "FJ660967" - ], - "Chickpea_chlorotic_dwarf_virus_A_Lor_8" : [ - "KR014247" - ], - "Tick_borne_encephalitis_virus_Tomsk_PT122" : [ - "KM019545" - ], - "Hepatitis_B_virus__HBV_16T_del1" : [ - "EU660230" - ], - "Dengue_virus_1__MKS_WS72" : [ - "KC762647" - ], - "Tomato_spotted_wilt_virus__NC_6" : [ - "AY744489" - ], - "Hepatitis_B_virus_wenlinA1" : [ - "AF182803" - ], - "Hepatitis_B_virus__530_92_8" : [ - "EU872001" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00080_1982_NEW_P33H56F56" : [ - "KF268201" - ], - "Hepatitis_B_virus_28052" : [ - "EU414136" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V430_2005" : [ - "EU256104" - ], - "West_Nile_virus_strain_385_99_385_99_hamster_passage_strain_TVP_9376" : [ - "AY848697" - ], - "Norovirus_Hu_GII_4_CHDC4108_1987_US_Hu_GII_4_CHDC4108_1987_US" : [ - "FJ537137" - ], - "Human_papillomavirus_type_6__LP11" : [ - "FR751329" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0126" : [ - "KP759675" - ], - "Spiroplasma_taiwanense_CT_1" : [ - "NC_021832", - "NC_021846" - ], - "Maize_streak_virus__MSV_A_CM_Baf6_Cam23_2008" : [ - "HQ693324" - ], - "Norovirus_Hu_Texas_TCH04_577_2004_US_Hu_Texas_TCH04_577_2004_US" : [ - "AB365435" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3805_1" : [ - "KM233082" - ], - "Pepper_golden_mosaic_virus__Tablon" : [ - "JN688727" - ], - "Human_mastadenovirus_B_human_USA_UFL_Adv3a51_2007_3_P3H3F3" : [ - "KF268123" - ], - "Pepper_yellow_vein_Mali_virus__FY5" : [ - "AM691550" - ], - "Enterovirus_A71_FY17_08_8_AH_CHN_2008" : [ - "JX678879" - ], - "Soybean_dwarf_virus__W4" : [ - "KJ786322" - ], - "Mycobacterium_phage_RidgeCB_RidgeCB" : [ - "NC_023710" - ], - "Enterovirus_D68__NY153" : [ - "KP745755" - ], - "Hepatitis_B_virus__M2" : [ - "KF584159" - ], - "SARS_coronavirus_MA15_MA15_P3pp3" : [ - "FJ882948" - ], - "Torque_teno_virus__TTV_HD20f__uro958" : [ - "FR751497" - ], - "Bacillus_amyloliquefaciens_XH7" : [ - "NC_017191" - ], - "Human_papillomavirus_type_39__Qv25609" : [ - "KC470242" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P160" : [ - "KC422731" - ], - "Asystasia_mosaic_Madagascar_virus__MG493" : [ - "NC_026514", - "NC_026513" - ], - "Wheat_dwarf_virus__SDJN07_2" : [ - "KJ536102" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0111" : [ - "KP759595" - ], - "Botryosphaeria_dothidea_victorivirus_1__GY25" : [ - "NC_025214" - ], - "SFTS_virus_HNXY_186_HNXY_186" : [ - "KC292308", - "KC292281", - "KC292334" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_P_SD_SD256_2013" : [ - "KM229912" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_3" : [ - "EU384607" - ], - "Porcine_circovirus_2_ZJU0601" : [ - "EU257513" - ], - "Neisseria_meningitidis_MC58" : [ - "NC_003112" - ], - "Mycobacterium_phage_Keshu" : [ - "NC_026603" - ], - "Bacillus_phage_Gamma__53" : [ - "DQ222855" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0133" : [ - "KP759681" - ], - "Human_immunodeficiency_virus_1__1057_09" : [ - "AY331293" - ], - "Hepatitis_B_virus__HK1371" : [ - "DQ089802" - ], - "Eastern_equine_encephalitis_virus_PE_3_0815" : [ - "DQ241303" - ], - "Clerodendron_yellow_mosaic_virus" : [ - "HE863667" - ], - "Columbid_circovirus__PL14" : [ - "KF738847" - ], - "Human_immunodeficiency_virus_1__03ZASK112B1" : [ - "AY772695" - ], - "Hepatitis_B_virus__HBVFLS64" : [ - "JX154582" - ], - "Hepatitis_B_virus__919016" : [ - "JN040816" - ], - "Dengue_virus_2__FGU_May_99" : [ - "EU920832" - ], - "Tomato_leaf_curl_Hainan_virus_HaNHK7__HaNHK7" : [ - "FN256261" - ], - "Chlamydia_trachomatis_L1_440_LN" : [ - "NC_020937" - ], - "Norovirus_Hu_GII_4_Shimane5_2008_JP_Hu_GII_4_Shimane5_2008_JP" : [ - "AB541353" - ], - "Hepatitis_B_virus__BV_10" : [ - "GU563553" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1975_2008" : [ - "FJ461339" - ], - "Escherichia_phage_bV_EcoS_AHP24" : [ - "KF771236" - ], - "Porcine_circovirus_2_PT_18359_07" : [ - "HQ831535" - ], - "Hepatitis_B_virus__CHN_QH32" : [ - "DQ478896" - ], - "Berrimah_virus_DPP_63" : [ - "NC_025358" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2013_2007" : [ - "FJ639695" - ], - "Human_parainfluenza_virus_3_HPIV3_ZAF_3227_2010" : [ - "KF687338" - ], - "Crimean_Congo_hemorrhagic_fever_virus_ROS_HUVLV_100" : [ - "DQ206447", - "DQ206448" - ], - "Human_immunodeficiency_virus_1__05MYKL031_1" : [ - "DQ366661" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V203_1989" : [ - "EU255986" - ], - "Mobala_mammarenavirus_ACAR_3080_MRC5_P2" : [ - "NC_007903" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__YN65_9" : [ - "KC149944" - ], - "West_Nile_virus__WNV_1_US_BID_V4340_2002" : [ - "HM488181" - ], - "Human_herpesvirus_5_BE_28_2010" : [ - "KP745676" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LBJ_090809" : [ - "JF828997" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda22_05" : [ - "KC706635" - ], - "Mycobacterium_phage_D29" : [ - "NC_001900" - ], - "Hepatitis_B_virus__HBV_Chi59" : [ - "AB073833" - ], - "Eastern_equine_encephalitis_virus_EEEV_Canis_lupus_familiaris_USA_82_8409_1982" : [ - "KJ469579" - ], - "TT_virus_sle2065" : [ - "AM712034" - ], - "Hepatitis_B_virus__W46" : [ - "EU787447" - ], - "Coxsackievirus_A16__BJ10_03" : [ - "KF193629" - ], - "Hepatitis_B_virus__HBV_CB10" : [ - "AB117758" - ], - "Tribec_virus_Tr19" : [ - "KJ010796" - ], - "Rabies_virus__CQH1202D_China_2012" : [ - "KM272192" - ], - "Yersinia_phage_phiA1122" : [ - "NC_004777" - ], - "Guar_leaf_curl_alphasatellite__Wellington" : [ - "KC305095" - ], - "Coxsackievirus_B4_HHHT34T_NM_CHN_2010" : [ - "KF781524" - ], - "Staphylococcus_aureus_M013" : [ - "NC_016928" - ], - "Murine_coronavirus_MHV_1_MHV_1" : [ - "FJ647223" - ], - "Tomato_leaf_curl_China_betasatellite__G65" : [ - "AJ704617" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1660_2007" : [ - "FJ024450" - ], - "Cucumber_green_mottle_mosaic_virus__TY" : [ - "KF155229" - ], - "Bluetongue_virus_17" : [ - "S72158" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3886_1" : [ - "KR105204" - ], - "Hepatitis_E_virus__114d_A549" : [ - "AB362840" - ], - "Hepatitis_B_virus_45082" : [ - "FM199976" - ], - "Dengue_virus_3__DENV_3_US_BID_V1090_1998" : [ - "EU529703" - ], - "Astrovirus_MLB1_HK05__MLB1_HK05" : [ - "NC_014320" - ], - "Lactobacillus_johnsonii_NCC_533" : [ - "NC_005362" - ], - "Enterovirus_C__V2_Tsi_2" : [ - "HQ738293" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LYN_080704" : [ - "JF828993" - ], - "Cucumber_mosaic_virus_CS" : [ - "MCVCMVD" - ], - "African_cassava_mosaic_virus__MG_MG49A1_06" : [ - "KJ887867" - ], - "Hepatitis_B_virus_China_Xinjiang_HB97_2009_Xinjiang_HB97" : [ - "HQ833471" - ], - "Tomato_yellow_leaf_curl_virus__Jizan103" : [ - "KC845301" - ], - "Porcine_circovirus_2__HD1_1" : [ - "JQ181585" - ], - "Hepatitis_B_virus__bww1101" : [ - "KC774386" - ], - "Mycobacterium_phage_Gizmo" : [ - "NC_021346" - ], - "Hepatitis_C_virus__QC262" : [ - "FJ462434" - ], - "Peste_des_petits_ruminants_virus__KN5_2011" : [ - "KM463083" - ], - "Hepatitis_B_virus_1368_32" : [ - "KR014047" - ], - "Human_immunodeficiency_virus_1__14298_1" : [ - "DQ853453" - ], - "Human_papillomavirus_type_16__Z016" : [ - "HQ644296" - ], - "Hepatitis_B_virus__063_K_Ngk" : [ - "KF873521" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1965_2008" : [ - "FJ410279" - ], - "Streptococcus_phage_IC1" : [ - "NC_024370" - ], - "Human_herpesvirus_3_VZVi_Heidelberg_GER_10_07_V_3__405_2007" : [ - "JN704702" - ], - "Burkholderia_phage_DC1" : [ - "NC_018452" - ], - "Bhendi_yellow_vein_India_virus__India_Jalgov_OY121_2006___OY121" : [ - "GU112040" - ], - "Simian_immunodeficiency_virus_SIVmm239_r01027_SIVmm239" : [ - "EU280805" - ], - "JC_polyomavirus__G5" : [ - "AB074581" - ], - "Hepatitis_B_virus__J138" : [ - "GQ377587" - ], - "Porcine_circovirus_2_HN0907_2" : [ - "GU938304" - ], - "Porcine_epidemic_diarrhea_virus_CH_GDZQ_2014" : [ - "KM242131" - ], - "Dengue_virus_1_D1_SG_05K4173DK1_2005" : [ - "EU081262" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V251_2005" : [ - "EU529681" - ], - "Human_respiratory_syncytial_virus_A2" : [ - "HRU63644", - "AF035006", - "HRU50363", - "HRU50362" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V59_2005" : [ - "EU256017" - ], - "Papaya_leaf_curl_betasatellite__India_Pune_TC255_2010" : [ - "KJ605112" - ], - "Hepatitis_B_virus__GZ_QSA" : [ - "DQ448624" - ], - "Tomato_necrotic_stunt_virus_MX9354" : [ - "NC_017824" - ], - "Wolbachia_endosymbiont_of_Onchocerca_ochengi" : [ - "NC_018267" - ], - "Enterovirus_D68_US_KY_14_18953" : [ - "KM851231" - ], - "Hepatitis_C_virus_subtype_1a__F7133" : [ - "EU781792" - ], - "Porcine_circovirus_2__Mal006_11_Sarawak" : [ - "JF690915" - ], - "Simian_foamy_virus_Gorilla_gorilla_BAD468" : [ - "JQ867465" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1782_2007" : [ - "FJ432727" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo186_08" : [ - "KC706551" - ], - "Rabies_virus__WA1185" : [ - "JQ685895" - ], - "Banana_streak_MY_virus__BSMYV_IN3" : [ - "KF724856" - ], - "West_Nile_virus__WNV_USA_BID_G15506" : [ - "JX503097" - ], - "Grapevine_leafroll_associated_virus_5__3138_03" : [ - "JX559639" - ], - "Porcine_circovirus_2__HT06" : [ - "FJ644925" - ], - "Chikungunya_virus_StVE" : [ - "KP003810" - ], - "Coxsackievirus_A6__TW_409_10" : [ - "JQ946055" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT48E15_2008" : [ - "JF909188" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0144" : [ - "KP759605" - ], - "Hepatitis_B_virus__I2_M04_3223" : [ - "FJ023668" - ], - "Variola_virus_Syria_1972_V72_199" : [ - "DQ437592" - ], - "Mesta_yellow_vein_mosaic_virus__India_Bongaon_leaf_curl_2007" : [ - "FJ345400" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3721_2007" : [ - "GQ868517" - ], - "Human_respiratory_syncytial_virus_HRSV_B_GW0047_14" : [ - "KP663729" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3764" : [ - "KM233063" - ], - "Streptococcus_suis_P1_7" : [ - "NC_012925" - ], - "Human_immunodeficiency_virus_1_H434" : [ - "AY970949", - "AY970948", - "AY970946", - "AY970950", - "AY970947" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V267_2005" : [ - "EU155353" - ], - "Wheat_dwarf_virus___barley_Germany_Baden_2005___Baden_Wuerttemberg_1" : [ - "AM411651" - ], - "Measles_virus__WA_USA_17_98" : [ - "DQ227321" - ], - "Hepatitis_B_virus__313_N_BRA" : [ - "KJ854700" - ], - "Coxsackievirus_A10_CVA10_SD_CHN_09" : [ - "HQ728262" - ], - "Starling_circovirus__AM_R" : [ - "KC846096" - ], - "Human_adenovirus_7_XY6_XY_CHN_2013" : [ - "KJ019879" - ], - "Equine_infectious_anemia_virus_DV_DV10_3" : [ - "HM141910" - ], - "Hepatitis_E_virus_FR_SHEVF3f" : [ - "JN906975" - ], - "Hepatitis_B_virus_1463_21" : [ - "KR014071" - ], - "Human_parainfluenza_virus_4b_68_333" : [ - "AB543337" - ], - "Southern_rice_black_streaked_dwarf_virus__Anhui_HN2" : [ - "HF954996", - "HF954998", - "HF955003", - "HF954995", - "HF955004", - "HF955000", - "HF955002", - "HF954997", - "HF955001", - "HF954999" - ], - "Chloris_striate_mosaic_virus__AU_QG31_2011" : [ - "JQ948081" - ], - "Newcastle_disease_virus_APMV_1_chicken_U_S__TX__GB_1948" : [ - "GU978777" - ], - "Sugarcane_yellow_leaf_virus__REU_YL1b" : [ - "AM072755" - ], - "Tomato_leaf_curl_virus_satellite__Indonesia_03" : [ - "AB116230" - ], - "Duck_circovirus__D11_JW_015" : [ - "KC851809" - ], - "Helicobacter_pylori_Sat464" : [ - "NC_017356", - "NC_017359" - ], - "Hepatitis_B_virus_Ehime10__Iyo_41676" : [ - "AB109478" - ], - "Hepatitis_B_virus__patient21" : [ - "EU882004", - "EU882003" - ], - "Serratia_AS13" : [ - "NC_017573" - ], - "Japanese_encephalitis_virus_JaOS75722" : [ - "AB569983" - ], - "Malvastrum_yellow_vein_betasatellite__Y190" : [ - "AJ971460" - ], - "Human_bocavirus_2c_PK__PK_5510" : [ - "NC_012042" - ], - "Mycobacterium_phage_32HC" : [ - "NC_023602" - ], - "JC_polyomavirus__ML_1" : [ - "AB048548" - ], - "Infectious_pancreatic_necrosis_virus_AM_98" : [ - "AY283780" - ], - "Human_coronavirus_OC43_OC43_human_USA_912_6_1991" : [ - "KF530095" - ], - "Hepatitis_B_virus__EI0399" : [ - "DQ315779" - ], - "Hepatitis_B_virus__CHN_L49" : [ - "AY817511" - ], - "Foot_and_mouth_disease_virus___type_O_persistent_OUKG_98dpc" : [ - "JX947859" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD221_2013" : [ - "KM229775" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_28__AHEaCV_28_NZ_3281C3_2012" : [ - "KM874362" - ], - "Tomato_leaf_curl_New_Delhi_virus__ToLCNDV_OM" : [ - "GU180096", - "GU180095" - ], - "Hepatitis_B_virus__cxa2063" : [ - "KC774325" - ], - "Dengue_virus_2__DENV_2_CO_BID_V1595_2005" : [ - "FJ024474" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V318_2001" : [ - "EU155285" - ], - "Culex_originated_Tymoviridae_like_virus" : [ - "NC_018703" - ], - "Bluetongue_virus_1_SUD1987_01" : [ - "AM900383" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1810_2007" : [ - "FJ432741" - ], - "Sugarcane_mosaic_virus__Yuhang" : [ - "AJ310104" - ], - "Helicobacter_pylori_UM032" : [ - "NC_021215" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US5" : [ - "KJ019113" - ], - "Staphylococcus_phage_S25_3_S25_3" : [ - "NC_022920" - ], - "Hepatitis_B_virus__I160" : [ - "FJ562289" - ], - "Cyclovirus_PKgoat21_PAK_2009__PKgoat21" : [ - "NC_014927" - ], - "Frankia_EAN1pec" : [ - "NC_009921" - ], - "Tomato_severe_rugose_virus__ToSRV__BR_3539Tom8a_09" : [ - "JX415201" - ], - "Hepatitis_B_virus__A3_CMR" : [ - "KP234052" - ], - "Campylobacter_hominis_ATCC_BAA_381" : [ - "NC_009713", - "NC_009714" - ], - "Pirellula_staleyi_DSM_6068" : [ - "NC_013720" - ], - "Mungbean_yellow_mosaic_India_virus__130_12" : [ - "AJ512497" - ], - "Streptococcus_phage_858" : [ - "NC_010353" - ], - "Yellow_fever_virus_17D_vaccine_strain" : [ - "NC_002031" - ], - "Hepatitis_B_virus__TK141" : [ - "JF754615" - ], - "Human_immunodeficiency_virus_1__671_00T167" : [ - "AY423384" - ], - "Sida_yellow_mottle_virus__02A_1_C1204" : [ - "HE806448" - ], - "Hepatitis_B_virus__TX164" : [ - "FR714500" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K78" : [ - "AJ717525" - ], - "Ageratum_leaf_curl_Cameroon_virus__CM_AGFG14_2009___AGFG14" : [ - "FR873229" - ], - "Rhizoctonia_solani_dsRNA_virus_2" : [ - "NC_023685", - "NC_023684" - ], - "Sudan_ebolavirus_Yambio_EBOV_S_2004" : [ - "EU338380" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2087_2005" : [ - "GQ868629" - ], - "Watermelon_chlorotic_stunt_virus__PA1_J68" : [ - "KM820278" - ], - "Hepatitis_B_virus__C733" : [ - "AF458665" - ], - "Human_adenovirus_19__1997" : [ - "AB448773" - ], - "Enterovirus_A71__VN152_2011" : [ - "KP691665" - ], - "Chimpanzee_polyomavirus__Azzie" : [ - "FR692336" - ], - "Plum_pox_virus_PPV_D_Ak3" : [ - "AB576047" - ], - "Okra_yellow_mosaic_Mexico_virus__Iguala_15_16" : [ - "HQ116414" - ], - "Rabies_virus__RRV_ON_99_2" : [ - "EU311738" - ], - "Human_poliovirus_2_NIE0918441" : [ - "KJ170569" - ], - "Rice_stripe_virus__JSu1" : [ - "KP083238", - "KP083246" - ], - "Bacillus_phage_IEBH" : [ - "NC_011167" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_15__AHEaCV_15_NZ_2320TU_2012" : [ - "NC_026642" - ], - "BK_polyomavirus__ANY_57" : [ - "AB464962" - ], - "Human_immunodeficiency_virus_1__C_ZA_2134MB" : [ - "AY463237" - ], - "Beak_and_feather_disease_virus__CS08_418_OBP_TAS_19118" : [ - "KF188682" - ], - "Hepatitis_B_virus__919062" : [ - "JN040763" - ], - "Escherichia_coli_E24377A" : [ - "NC_009801", - "NC_009788", - "NC_009791", - "NC_009786", - "NC_009790", - "NC_009787", - "NC_009789" - ], - "Hepatitis_B_virus__F_1" : [ - "KF373033" - ], - "SFTS_virus_HB29_HB29" : [ - "NC_018138", - "KP202164", - "KP202165", - "NC_018137", - "KP202163", - "NC_018136" - ], - "Feline_immunodeficiency_virus__Mc350" : [ - "EF455604" - ], - "Hepatitis_C_virus_subtype_1a__02_11" : [ - "EU781800" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2846_2005" : [ - "GQ199837" - ], - "Redspotted_grouper_nervous_necrosis_virus" : [ - "AY369136" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3876_2008" : [ - "GU131710" - ], - "Acidovorax_avenae_ATCC_19860" : [ - "NC_015138" - ], - "Rift_Valley_fever_virus_2007000041" : [ - "JF326197" - ], - "JC_polyomavirus__JCV176FLC_19" : [ - "JF424909" - ], - "Columbid_circovirus__SDDZ" : [ - "KJ704805" - ], - "Dengue_virus_2__DENV_2_US_BID_V1426_1999" : [ - "EU677143" - ], - "Desulfotomaculum_reducens_MI_1" : [ - "NC_009253" - ], - "Hepatitis_B_virus__HBV79" : [ - "KC875342" - ], - "Human_polyomavirus_6__BJ376" : [ - "KM387421" - ], - "Hepatitis_B_virus__I92" : [ - "FJ562255" - ], - "Sweet_potato_leaf_curl_virus__SPLCV_US_StV_10" : [ - "KC253238" - ], - "Human_immunodeficiency_virus_1__5127_93" : [ - "AY835776" - ], - "Sida_micrantha_mosaic_virus___Rhombifolia__Bolivia_Cerro_Fraile_2_2007__SimMV_rho_Bo_CF2_07" : [ - "HM585440", - "HM585439" - ], - "Arthrobacter_phage_vB_ArS_ArV2" : [ - "NC_022972" - ], - "Human_immunodeficiency_virus_1__5113_86" : [ - "AY835757" - ], - "Hepatitis_B_virus_1491_22" : [ - "KR014091" - ], - "Soybean_mosaic_virus__Aa15_M2" : [ - "AB100443" - ], - "Dengue_virus_2__DENV_2_US_BID_V1368_1995" : [ - "EU569707" - ], - "Porcine_circovirus_2__Mal001_11_Melaka" : [ - "JF690923" - ], - "Hepatitis_B_virus__J18" : [ - "GQ377520" - ], - "Rabies_virus_DRV" : [ - "DQ875051" - ], - "JC_polyomavirus__Luz_4" : [ - "AB113135" - ], - "Duck_astrovirus_C_NGB_C_NGB" : [ - "NC_012437" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V343_2002" : [ - "EU256098" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GGC_04_604" : [ - "KF385402" - ], - "Echovirus_E24__PZ18G_JS_20120703" : [ - "KP036484" - ], - "Citrus_leaf_blotch_virus_Actinidia_M3_A" : [ - "JN900477" - ], - "Brucella_melitensis_M5_90" : [ - "NC_017247", - "NC_017246" - ], - "Andean_potato_latent_virus__Col" : [ - "NC_020470" - ], - "Beak_and_feather_disease_virus__YCP01_11" : [ - "JQ782201" - ], - "Porcine_circovirus_2__Vos_32820_21_06" : [ - "EU545544" - ], - "Porcine_circovirus_2__C12" : [ - "FJ218001" - ], - "Human_poliovirus_3_NIE1018520" : [ - "KJ170628" - ], - "Newcastle_disease_virus_9a3b" : [ - "AB534205" - ], - "Lassa_mammarenavirus_Weller" : [ - "AY628206" - ], - "Nora_virus__FR1" : [ - "JX220408" - ], - "Human_immunodeficiency_virus_1__98VNBG4" : [ - "FJ185228" - ], - "Hepatitis_B_virus__MY781114" : [ - "KJ803784" - ], - "Feline_immunodeficiency_virus__FIV_C36" : [ - "AY600517" - ], - "Rice_stripe_virus__YQJ07" : [ - "EU931505", - "EU931502", - "EU931504", - "EU931503" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3693_2007" : [ - "GU131969" - ], - "Turnip_mosaic_virus__AUST28" : [ - "AB989642" - ], - "Clostridium_phage_PhiS63" : [ - "NC_017978" - ], - "Human_rhinovirus_B91_ATCC_VR_1292" : [ - "FJ445168" - ], - "Human_parainfluenza_virus_1__VIROAF9" : [ - "KM190940" - ], - "Potato_virus_Y_strain_nnp_nnp" : [ - "AF237963" - ], - "Orientia_tsutsugamushi_Boryong" : [ - "NC_009488" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5101_2009" : [ - "JF920407" - ], - "Papaya_ringspot_virus_Leaf_deformation_Ping_tong" : [ - "DQ340769" - ], - "WU_Polyomavirus__B39" : [ - "GU296371" - ], - "Bovine_viral_diarrhea_virus_3__CH_KaHo_cont" : [ - "JX985409" - ], - "Porcine_circovirus_2_GX0853" : [ - "GQ359007" - ], - "Human_rotavirus_A__IS2" : [ - "X94617" - ], - "Human_immunodeficiency_virus_1__WC10C_5" : [ - "AY314057" - ], - "Hepatitis_B_virus__BR6_SOUTHEAST" : [ - "KC494400" - ], - "Maize_streak_virus__MSV_A_CM_Ton_Cam6_2008" : [ - "HQ693327" - ], - "Zucchini_yellow_mosaic_virus__F83" : [ - "JN192407" - ], - "Bovine_viral_diarrhea_virus_3_Italy_83_10_cp" : [ - "JQ612705" - ], - "Hepatitis_B_virus_580_10a" : [ - "KR013809" - ], - "Tick_borne_encephalitis_virus__Senzhang" : [ - "JQ650523" - ], - "Madariaga_virus_MADV_Culex_BRA_76V25343_1976" : [ - "KJ469574" - ], - "Yersinia_pestis_Antiqua" : [ - "NC_008122", - "NC_008121", - "NC_008120", - "NC_008150" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL112A" : [ - "AB985551", - "AB985319" - ], - "Tomato_leaf_curl_Hainan_virus__Vietnam_Hungyen_papaya_2010" : [ - "HQ162268" - ], - "Staphylococcus_phage_SpaA1" : [ - "NC_018277" - ], - "South_African_cassava_mosaic_virus__MG_MG126B2_09" : [ - "KJ887661" - ], - "Squash_leaf_curl_virus__PA1_J2411" : [ - "KM595214" - ], - "Enterovirus_B88_BAN01_10398" : [ - "AY843306" - ], - "Murine_leukemia_virus" : [ - "MLVENVR", - "MLMCG" - ], - "American_bat_vesiculovirus_TFFN_2013__liver2008" : [ - "NC_022755" - ], - "Human_immunodeficiency_virus_1__EE0369" : [ - "AY535660" - ], - "South_African_cassava_mosaic_virus__MG_MG246A10_10" : [ - "KJ887965" - ], - "Simian_immunodeficiency_virus__SIVcpzLB7" : [ - "DQ373064" - ], - "Dengue_virus_2__DENV_2_US_BID_V690_1988" : [ - "EU482747" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V214_1996" : [ - "EU155343" - ], - "West_Nile_virus__WNV_1_US_BID_V4362_2008" : [ - "HM488166" - ], - "Citrus_tatter_leaf_virus__CTLV_Pk" : [ - "JX416228" - ], - "Bluetongue_virus_1__5012" : [ - "JX272388" - ], - "Papaya_leaf_curl_Guandong_virus__F11" : [ - "FJ869907" - ], - "Turnip_crinkle_virus" : [ - "NC_003821" - ], - "Ageratum_enation_virus__Mohali" : [ - "JF728864", - "JF728861", - "JF728862", - "JF728865", - "JF728866", - "JF728863", - "JF728860", - "JF728867" - ], - "Methanomethylovorans_hollandica_DSM_15978" : [ - "NC_019977", - "NC_019972" - ], - "Hepatitis_B_virus__539_16_2004" : [ - "DQ463799" - ], - "Beet_curly_top_Iran_virus__IR_Neg_B33P_Sug_08" : [ - "JQ707949" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P70" : [ - "FJ548852" - ], - "Porcine_circovirus_2_GX0602" : [ - "EF524533" - ], - "Enterobacteria_phage_ID11" : [ - "AY751298" - ], - "Hepatitis_B_virus__SLC1A4" : [ - "KJ598765" - ], - "Hepatitis_B_virus__179" : [ - "AY233291" - ], - "Human_immunodeficiency_virus_1__TZBFL0170_3_2" : [ - "AY237166" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_LIBR0503" : [ - "KR006956" - ], - "Hepatitis_B_virus__C_PNG_D058A_2005" : [ - "HQ700517" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD10_2013" : [ - "KM229808" - ], - "Turnip_mosaic_virus__GBR30" : [ - "AB701712" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2807_2007" : [ - "GQ868611" - ], - "Middle_East_respiratory_syndrome_coronavirus_Abu_Dhabi_UAE_26_2014" : [ - "KP209313" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1694_2007" : [ - "FJ205883" - ], - "Rous_sarcoma_virus_Pr_RSV_C_da_Pr_RSV_C" : [ - "X68524" - ], - "Papaya_ringspot_virus__YK_from_Taiwan" : [ - "X97251" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2742_2007" : [ - "FJ898384" - ], - "Hepatitis_B_virus_018" : [ - "AB900100" - ], - "Psychrobacter_cryohalolentis_K5" : [ - "NC_007969", - "NC_007968" - ], - "Dengue_virus_3__MKS_0388" : [ - "KC762685" - ], - "Tobacco_leaf_curl_Yunnan_virus____Y161___Y161" : [ - "AJ566744" - ], - "Tomato_yellow_leaf_curl_virus__SX_8" : [ - "JN412854" - ], - "SFTS_virus_HN13_HN13" : [ - "HQ141600", - "HQ141599", - "HQ141598" - ], - "Hepatitis_delta_virus_dFr_644" : [ - "AJ584849" - ], - "Wasabi_mottle_virus_wasabi_Tochigi" : [ - "AB017504" - ], - "Hendra_virus_HeV_Australia_Horse_2007_Clifton_Beach_Q" : [ - "JN255804" - ], - "Cucumber_mosaic_virus__ZMBJ" : [ - "KC693009" - ], - "Lactococcus_phage_949" : [ - "NC_015263" - ], - "JC_polyomavirus__JCV144_05" : [ - "JF424876" - ], - "Human_immunodeficiency_virus_1__14302_1" : [ - "DQ853450" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI29_12" : [ - "HE979765" - ], - "JC_polyomavirus__G4" : [ - "AB074580" - ], - "Rana_grylio_iridovirus" : [ - "JQ654586" - ], - "Duck_flavivirus_TA_TA" : [ - "JQ289550" - ], - "Rhinovirus_A__hrv_A101_v1" : [ - "GQ415052" - ], - "Tomato_severe_rugose_virus__BR_Flo202_08" : [ - "KC004071" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3658_2006" : [ - "GU131958" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4969_serum" : [ - "HQ671679" - ], - "Human_papillomavirus_type_6__44" : [ - "HG793852" - ], - "Hepatitis_B_virus__P001_M_003" : [ - "KJ173324" - ], - "Garlic_latent_virus__YH1" : [ - "NC_003557" - ], - "Southern_rice_black_streaked_dwarf_virus__Lao_Cai" : [ - "KM576886", - "KM576874", - "KM454846" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM106" : [ - "KM233036" - ], - "Hantavirus_CJAp93_CJAp93" : [ - "EF208930", - "EF208929" - ], - "Hepatitis_B_virus__M92" : [ - "GQ924655" - ], - "Rotavirus_G4__Rota_49" : [ - "AB012069" - ], - "West_Nile_virus__WNV_1_US_BID_V6541_2003" : [ - "KJ501346" - ], - "Enterovirus_A71_02363_Thai_02" : [ - "AB747375" - ], - "Enterobacteria_phage_T3" : [ - "KC960671" - ], - "Sweet_potato_leaf_curl_virus__SPLCV_MEX_MEX_10" : [ - "KC253237" - ], - "West_Nile_virus__WNV_1_US_BID_V4110_2005" : [ - "HM488121" - ], - "Ageratum_yellow_vein_China_alphasatellite__Sn3" : [ - "NC_023443" - ], - "Small_begomovirus_associated_satellite__Sa27_S107" : [ - "KJ859150" - ], - "Hepatitis_B_virus__A1_48049" : [ - "FJ692563" - ], - "Porcine_circovirus_2_SD_2008" : [ - "GQ174519" - ], - "Blainvillea_yellow_spot_virus__BR_Vic26s_10" : [ - "KC706529" - ], - "Gokushovirinae_Bog8989_22__Bog8989_22" : [ - "NC_027637" - ], - "Erysimum_latent_virus" : [ - "NC_001977" - ], - "Enterobacteria_phage_phiX174__CGGloMhi" : [ - "AF299312" - ], - "Human_papillomavirus_type_6__76" : [ - "HG793884" - ], - "Newcastle_disease_virus__Ch_JS_09_03" : [ - "JN688862" - ], - "Porcine_circovirus_2__SH1105" : [ - "KF850467" - ], - "Beet_curly_top_virus" : [ - "HQ634913" - ], - "Hepatitis_B_virus__919044" : [ - "JN040822" - ], - "Hepatitis_B_virus__H85" : [ - "AY306136" - ], - "Hepatitis_B_virus__bur1012" : [ - "KC774368" - ], - "DeBrazza_s_monkey_virus_1__PREDICT1" : [ - "NC_026509" - ], - "African_cassava_mosaic_virus__CF_CF27AN_07" : [ - "KJ887769" - ], - "Human_papillomavirus_type_58__Rw937" : [ - "HQ537764" - ], - "Hepatitis_B_virus__TK62" : [ - "JF754619" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_66U11_1966_IE" : [ - "KC344440" - ], - "Human_rhinovirus_A44" : [ - "DQ473499" - ], - "Hepatitis_B_virus__A5_50052" : [ - "FJ692604" - ], - "Porcine_circovirus_1__Jiangsu" : [ - "GU722334" - ], - "Frankia_CcI3" : [ - "NC_007777" - ], - "Coraliomargarita_akajimensis_DSM_45221" : [ - "NC_014008" - ], - "Hepatitis_B_virus__C229" : [ - "EU939617" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M75" : [ - "KM110940" - ], - "Homalodisca_vitripennis_reovirus__Pauma1" : [ - "GU370370", - "GU370369", - "GU370362", - "GU370368", - "GU370366", - "GU370363", - "GU370367", - "GU370371", - "GU370364", - "GU370372", - "GU370365", - "GU370373" - ], - "Hepatitis_B_virus__N03_M_134A" : [ - "KJ173397" - ], - "Equine_arteritis_virus__CW01" : [ - "AY349168" - ], - "Dengue_virus_2__DENV_2_Harvard_BID_V2992_2009" : [ - "FJ906968" - ], - "Hepatitis_B_virus__IIa" : [ - "AY167093" - ], - "Hepatitis_B_virus__IN_01" : [ - "KP017266" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO02B00_2005" : [ - "JF909127" - ], - "Porcine_circovirus_2_HB0801" : [ - "FJ608548" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K139" : [ - "AJ717519" - ], - "Monkeypox_virus__DRC_07_0092" : [ - "JX878415" - ], - "Hepatitis_B_virus_C_1858_ea7" : [ - "AF223960" - ], - "Escherichia_coli_IAI1" : [ - "NC_011741" - ], - "Porcine_epidemic_diarrhea_virus_FL2013" : [ - "KP765609" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3690_2007" : [ - "GU131968" - ], - "Hepatitis_B_virus__M_1" : [ - "KF425553" - ], - "Hepatitis_B_virus__MLT1009" : [ - "KF779302" - ], - "Cucurbit_aphid_borne_yellows_virus_Sq_2004_1_9" : [ - "JF939814" - ], - "Mycobacterium_phage_KBG_KBG" : [ - "NC_011019" - ], - "Dengue_virus_3__DENV_3_LC_BID_V2979_2001" : [ - "FJ898463" - ], - "Beet_soil_borne_virus_Ahlum" : [ - "NC_003520", - "NC_003518" - ], - "Chikungunya_virus__MY_08_068" : [ - "FN295487" - ], - "Tobacco_mosaic_virus__TMV_017" : [ - "AF395128" - ], - "Enterovirus_A71__GDV103" : [ - "KC954663" - ], - "Human_immunodeficiency_virus_1__98VNBG5" : [ - "FJ185229" - ], - "Tomato_bushy_stunt_virus__pepper" : [ - "TBU80935" - ], - "Hepatitis_B_virus__MY495063" : [ - "KJ803768" - ], - "Tomato_leaf_curl_Sulawesi_virus__FI08No1_1" : [ - "NC_013413" - ], - "Hepatitis_B_virus__10A33" : [ - "AB675674" - ], - "Plum_pox_virus_PPV_W_UKR_44189" : [ - "JN596110" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1197_2007" : [ - "FJ850116" - ], - "Human_immunodeficiency_virus_1__CM237" : [ - "AY167123" - ], - "Hepatitis_B_virus__UK5" : [ - "AB219533" - ], - "Hepatitis_B_virus__MLT1293" : [ - "KF779308" - ], - "Dioscorea_bacilliform_virus" : [ - "NC_009010" - ], - "Beak_and_feather_disease_virus__CS12_0827_20214_OBP_TAS" : [ - "KF561250" - ], - "Hepatitis_B_virus__C16" : [ - "HM363567" - ], - "Maize_streak_virus__MSV_A_ZM_Chi2_Z7_2008" : [ - "HQ693453" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC33BN1_2009" : [ - "JF909113" - ], - "Lassa_mammarenavirus_AV" : [ - "FR832710", - "FR832711" - ], - "Human_respiratory_syncytial_virus__RSV_12" : [ - "GU591769" - ], - "Torque_teno_mini_virus_1__TLMV_CBD279" : [ - "NC_014097" - ], - "West_Nile_virus__WNV_1_US_BID_V4529_2007" : [ - "KJ145832" - ], - "Porcine_epidemic_diarrhea_virus_TC_Iowa106__PV39__P1" : [ - "KM392232" - ], - "Duck_hepatitis_B_virus_B" : [ - "AY521227" - ], - "Human_immunodeficiency_virus_1__GHNJ176" : [ - "AB231894" - ], - "Coxsackievirus_A6_Kyoto5" : [ - "AB779618" - ], - "Foot_and_mouth_disease_virus___type_O__MOG_7_2010" : [ - "KF112881" - ], - "Strawberry_polerovirus_1__AB4101" : [ - "KM233706" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8453_2001" : [ - "KJ627688" - ], - "Watermelon_chlorotic_stunt_virus__JO2_47" : [ - "KM820202" - ], - "Hepatitis_B_virus__HBV_VT103" : [ - "AB111946" - ], - "Sugarcane_yellow_leaf_virus__chn1" : [ - "GU327735" - ], - "Basella_rugose_mosaic_virus__AC" : [ - "NC_009741" - ], - "Enterovirus_A71_Taipei_C4_Y100_P5_2011" : [ - "KP274875" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_G15479" : [ - "JX503080" - ], - "Middle_East_respiratory_syndrome_coronavirus__Riyadh_4_2013" : [ - "KJ156952" - ], - "Bhendi_yellow_vein_betasatellite__Barrackpore" : [ - "EF417919" - ], - "Human_immunodeficiency_virus_1__WCD32P1195" : [ - "DQ487189" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3976_2008" : [ - "GU131749" - ], - "Pseudomonas_phage_MP48" : [ - "NC_024782" - ], - "Porcine_circovirus_2_BR_SPF_084_2011" : [ - "KR868575" - ], - "Tomato_golden_mottle_virus__GT94_R2___GT94_R2" : [ - "AF132852" - ], - "Hepatitis_B_virus__239_1127_Nature3_1_unSero" : [ - "DQ993704" - ], - "Japanese_encephalitis_virus_Sw_Tokyo_373_2005" : [ - "AB698907" - ], - "Human_papillomavirus_type_110" : [ - "EU410348" - ], - "Duck_circovirus__D12_KD_027" : [ - "KC851820" - ], - "Human_immunodeficiency_virus_1__WITO_flE2" : [ - "FJ496179" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_79E_495_01_1979" : [ - "KP856969" - ], - "Bean_golden_mosaic_virus__BR_Vis5_11" : [ - "KJ939727" - ], - "Striped_Jack_nervous_necrosis_virus" : [ - "NC_003448", - "NC_003449" - ], - "Halovirus_PH1__1" : [ - "NC_020998" - ], - "Cellulophaga_phage_phi13_1_phi13_1" : [ - "KC821625" - ], - "Feline_immunodeficiency_virus__1027" : [ - "EU117992" - ], - "Hepatitis_B_virus__310" : [ - "JX507215" - ], - "Tomato_severe_rugose_virus__BR_Vic34_10" : [ - "JX865647" - ], - "Synechococcus_elongatus_PCC_6301" : [ - "NC_006576" - ], - "Pseudomonas_phage_LUZ7" : [ - "NC_013691" - ], - "Hepatitis_C_virus__452" : [ - "DQ437509" - ], - "JC_polyomavirus_718B" : [ - "AF363830" - ], - "Human_poliovirus_2_NIE0811456_BAS08_06" : [ - "JX275140" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI18_12_DNA_B" : [ - "HE979786" - ], - "Hepatitis_B_virus__2242" : [ - "FJ386627" - ], - "Human_herpesvirus_5_HAN19" : [ - "JX512205" - ], - "Human_papillomavirus_type_59" : [ - "X77858" - ], - "Candidatus_Phytoplasma_solani_284_09" : [ - "NC_022588" - ], - "Simian_immunodeficiency_virus__95086" : [ - "AY607703" - ], - "Newcastle_disease_virus_JS10" : [ - "HQ008337" - ], - "Echovirus_E2_Cornelis" : [ - "AY302545", - "AF465518" - ], - "Streptococcus_pyogenes_NZ131" : [ - "NC_011375" - ], - "African_cassava_mosaic_virus__MG_MG65A1_06" : [ - "KJ887884" - ], - "Cleome_leaf_crumple_virus__BR_SE_Ind1_10" : [ - "JN103428" - ], - "Hepatitis_B_virus__CONTROL11" : [ - "JQ801504" - ], - "Bean_golden_mosaic_virus__BgV03A_1_C60" : [ - "JF694451" - ], - "Sida_micrantha_mosaic_virus__A1B3" : [ - "AJ557454", - "AJ557450" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9500_2013" : [ - "KJ643555" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1016_2006" : [ - "EU482460" - ], - "Acanthamoeba_polyphaga_mimivirus__M4" : [ - "JN036606" - ], - "Cassava_common_mosaic_virus" : [ - "NC_001658" - ], - "Dengue_virus_3__DENV_3_LK_BID_V2405_1983" : [ - "GQ199887" - ], - "Enterobacteria_phage_PsP3" : [ - "NC_005340" - ], - "Hepatitis_B_virus__10B1" : [ - "JF899335" - ], - "Lambdapapillomavirus_2" : [ - "PPHCG" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00051_1999_G1P_8" : [ - "JN635531", - "JN635534", - "JN635533", - "JN635527", - "JN635528", - "JN635532", - "JN635530", - "JN635537", - "JN635536", - "JN635535", - "JN635529" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0065" : [ - "KP759729" - ], - "Tomato_spotted_wilt_virus__CA_7" : [ - "AY744474", - "AY744485" - ], - "Rift_Valley_fever_virus__25010_24" : [ - "KM210508" - ], - "Hepatitis_C_virus_subtype_1g__1804" : [ - "AM910652" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1581_2007" : [ - "FJ024440" - ], - "Bean_golden_mosaic_virus__BR_Mur11_11" : [ - "KJ939764" - ], - "Pseudomonas_phage_phiPto_bp6g_Phi_Pto_bp6g" : [ - "NC_023718" - ], - "Shallot_latent_virus__WA_1" : [ - "JF320811" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus__AC21" : [ - "KF446662", - "KF446661" - ], - "Dengue_virus_2__DENV2_CN_GZ25_2014" : [ - "KP723478" - ], - "West_Nile_virus__WNV_1_US_BID_V5202_2006" : [ - "JF920732" - ], - "Newcastle_disease_virus_JKT1997" : [ - "JX393313" - ], - "Hepatitis_B_virus_419_4" : [ - "KR013783" - ], - "Human_immunodeficiency_virus_1__04ZASK031B2" : [ - "AY901974" - ], - "Human_adenovirus_21a__LRTI_4" : [ - "KF938576", - "KF938575" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1990_5_1" : [ - "Z75883" - ], - "Cucumber_mosaic_virus__Rauvolfia" : [ - "EF593025" - ], - "Macroptilium_yellow_spot_virus__BR_Bat1_10" : [ - "JN419012" - ], - "Human_immunodeficiency_virus_1__C_ZA_1157M3M" : [ - "AY585266" - ], - "Bluetongue_virus_4__SUD1983_01" : [ - "AJ586677" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5017_brain" : [ - "HQ671686" - ], - "Chilli_leaf_curl_Multan_alphasatellite" : [ - "NC_013103", - "FN432360" - ], - "Halobacteroides_halobius_DSM_5150" : [ - "NC_019978" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P3pp60" : [ - "FJ882950" - ], - "Simian_immunodeficiency_virus__SIVcpzMB66" : [ - "DQ373063" - ], - "Tobacco_necrosis_virus_A_A_Velence" : [ - "GQ221829" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2159_2005" : [ - "FJ639733" - ], - "Bluetongue_virus_11_BTV_11_DE" : [ - "JQ972851", - "JQ972853", - "JQ972854", - "JQ972858", - "JQ972852", - "JQ972856", - "JQ972859", - "JQ972860", - "JQ972855", - "JQ972857" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG235A2_10" : [ - "KJ887960" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2153_2001" : [ - "FJ639828" - ], - "Hepatitis_B_virus__C144" : [ - "EU939593" - ], - "Middle_East_respiratory_syndrome_coronavirus__Qatar4" : [ - "KF961222" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19073_F70764_2007" : [ - "KR135301" - ], - "Human_rotavirus_C_BCN6" : [ - "AM118018", - "AM118024", - "AM118021" - ], - "Dengue_virus_2__DENV_2_CO_BID_V3368_1998" : [ - "GQ868552" - ], - "Hepatitis_B_virus__E3_3" : [ - "GU815704" - ], - "Hepatitis_B_virus__GU846" : [ - "GQ161794" - ], - "Indian_peanut_clump_virus_Hyderabad_serotype" : [ - "NC_004729" - ], - "Human_papillomavirus_type_58__HPV58sc174" : [ - "FJ385266" - ], - "Enterovirus_A71_2008_43_16" : [ - "KP266572" - ], - "Kadipiro_virus_JKT_7075" : [ - "NC_004208", - "NC_004207", - "NC_004214", - "NC_004206", - "NC_004205", - "NC_004212", - "NC_004199", - "NC_004213", - "NC_004209", - "NC_004215", - "NC_004216" - ], - "Human_papillomavirus_type_6__110" : [ - "HG793918" - ], - "Human_herpesvirus_5_BE_10_2011" : [ - "KP745639" - ], - "Porcine_circovirus_2__DK450case" : [ - "EF565356" - ], - "Murine_coronavirus_repJHM_RA59_repJHM_RA59" : [ - "FJ647227" - ], - "Foot_and_mouth_disease_virus___type_O__BUL_11_2011" : [ - "JX040486" - ], - "Coxsackievirus_A24_INDNIV1040633LV639" : [ - "KF667361" - ], - "Chlamydia_trachomatis_D_SotonD1" : [ - "NC_020986", - "NC_020967" - ], - "Human_immunodeficiency_virus_1__ES_X2102__B" : [ - "EU786677" - ], - "Tomato_yellow_leaf_curl_virus__SDYN" : [ - "HM358879" - ], - "Norovirus_Hu_GII_4_Aichi1_2008_JP_Hu_GII_4_Aichi1_2008_JP" : [ - "AB541202" - ], - "Maize_streak_virus__UKas_63" : [ - "EF547076" - ], - "Mycoplasma_hyopneumoniae_232" : [ - "NC_006360" - ], - "Dengue_virus_3__07CHLS001" : [ - "EU367962" - ], - "Human_bocavirus__HK7" : [ - "EF450723" - ], - "Dengue_virus_2__DENV_2_US_BID_V1178_1989" : [ - "EU482581" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4173_midgut" : [ - "HQ705674" - ], - "Newcastle_disease_virus_MG_1992" : [ - "HQ266603" - ], - "Myxoma_virus_California_San_Francisco_1950" : [ - "KF148065" - ], - "Pedobacter_saltans_DSM_12145" : [ - "NC_015177" - ], - "Hepatitis_B_virus__I_T79" : [ - "GU456681" - ], - "Porcine_circovirus_2__Vos_13964_65_06" : [ - "EU545545" - ], - "Human_papillomavirus_type_151__SIBX2" : [ - "FN677756" - ], - "Sida_golden_mosaic_Buckup_virus__Jamaica_St__Elizabeth_2004" : [ - "NC_014794", - "NC_014795" - ], - "Mycoplasma_fermentans_JER" : [ - "NC_014552" - ], - "Pelagibacter_phage_HTVC019P" : [ - "NC_020483" - ], - "Norovirus_GII_Hu_JP_2007_GII_P7_GII_14_Sendai_YG99__Sendai_YG99" : [ - "KJ196278" - ], - "Bluetongue_virus_4__RSArrrr_04" : [ - "AJ586699" - ], - "Columbid_circovirus__PL58" : [ - "KF738862" - ], - "Hepatitis_B_virus__J47" : [ - "GQ377536" - ], - "Stork_hepatitis_B_virus__STHBV_16" : [ - "AJ251936" - ], - "Panine_herpesvirus_2_Heberling" : [ - "NC_003521" - ], - "Foot_and_mouth_disease_virus___type_A_A25_Argentina_a25_argentina_iso38" : [ - "AY593769" - ], - "Alteromonas_SN2" : [ - "NC_015554" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4999_brain" : [ - "JF357959" - ], - "Stx2_converting_phage_II_Stx2_phage_II" : [ - "NC_004914" - ], - "Colobus_guereza_papillomavirus_type_1__CgPV1" : [ - "GU014532" - ], - "West_Nile_virus__WNV_1_US_BID_V4217_2004" : [ - "HM488145" - ], - "Hepatitis_B_virus__bww1023" : [ - "KC774379" - ], - "Tomato_leaf_curl_China_betasatellite__143_30" : [ - "AJ536625" - ], - "Norovirus_Hu_GII_4_Miyazaki10_2008_JP_Hu_GII_4_Miyazaki10_2008_JP" : [ - "AB541285" - ], - "Dengue_virus_1__DENV_1_VN_BID_V798_2006" : [ - "EU249495" - ], - "Coxsackievirus_A13_USA_Ca98_10615" : [ - "DQ995644" - ], - "Hepatitis_B_virus__GU1660" : [ - "GQ161797" - ], - "Rotavirus_A_RVA_Human_wt_USA_2008747095_2008_G2P_4" : [ - "KC442888" - ], - "Enterovirus_A71_Nagoya" : [ - "AB747373", - "AB482183", - "AB747374" - ], - "Cucumber_green_mottle_mosaic_virus_MC_2" : [ - "GQ495274" - ], - "Potato_virus_Y_1106" : [ - "KC296438" - ], - "Hepatitis_B_virus__dxn1047" : [ - "KC774483" - ], - "PRRSV_HB_2_sh__2002__HB_2_sh__2002" : [ - "AY262352" - ], - "Human_poliovirus_3_Sabin_3" : [ - "AY184221" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2253_2005" : [ - "FJ810415" - ], - "Cucumber_fruit_mottle_mosaic_virus__Cm" : [ - "JN226146" - ], - "Cucumber_necrosis_virus" : [ - "NC_001469" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2209_2002" : [ - "FJ639776" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140161" : [ - "KR653265" - ], - "East_African_cassava_mosaic_virus__EACMV_Ybi2_Pr" : [ - "FN435279" - ], - "Porcine_circovirus_2__HNXTPC191" : [ - "KM235959" - ], - "Delftia_phage_RG_2014" : [ - "NC_027348" - ], - "Dengue_virus_1__HNRG28425" : [ - "KC692516" - ], - "Hepatitis_B_virus__I_T49" : [ - "GU456637" - ], - "Cucumber_mosaic_virus__Lucknow" : [ - "EF153733" - ], - "Human_herpesvirus_5_BE_25_2010" : [ - "KP745678" - ], - "Gallid_herpesvirus_1_1874C5" : [ - "JN542533" - ], - "Human_herpesvirus_3_SD" : [ - "DQ479953" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2496_2007" : [ - "FJ882587" - ], - "Tomato_leaf_deformation_virus__PA10_S8" : [ - "JX501505" - ], - "Norovirus_GII_Hu_JP_2011_GII_Yuzawa_Gira2HS__Yuzawa_Gira2HS" : [ - "KJ196291" - ], - "Maize_streak_virus__MSV_SDav" : [ - "EU152261" - ], - "JC_polyomavirus__MU_7" : [ - "AB198954" - ], - "Hepatitis_B_virus__SHB513" : [ - "KJ598710" - ], - "Infectious_bursal_disease_virus__HuB_1" : [ - "KF569805" - ], - "Clostridium_botulinum_A3_Loch_Maree" : [ - "NC_010520", - "NC_010418" - ], - "Banana_bunchy_top_virus__TA1" : [ - "FJ859738", - "FJ859725" - ], - "Hepatitis_B_virus__No9" : [ - "AB697494" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1904_2008" : [ - "FJ410240" - ], - "Duck_hepatitis_B_virus_Guilin_DHBV3" : [ - "JX469898" - ], - "Hepatitis_B_virus__C172" : [ - "EU939599" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1923_2008" : [ - "FJ410255" - ], - "Rotavirus_A_RVA_Human_wt_USA_DC5390_1991_G1P_8" : [ - "KC579841", - "KC579840" - ], - "Porcine_circovirus_2__PCV_Y2" : [ - "KC515002" - ], - "Dengue_virus_4__EHI310A129CY10" : [ - "JX024757" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Hawkeye2_Before" : [ - "EF532811" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2840_2005" : [ - "GQ199835" - ], - "Hepatitis_B_virus__P29" : [ - "GQ477475", - "EU859907", - "JX898689" - ], - "Hepatitis_B_virus_HBV_YA34" : [ - "AB106885" - ], - "Hepatitis_B_virus__ZADGM4521" : [ - "GQ167302" - ], - "Hepatitis_B_virus__50" : [ - "JQ040127" - ], - "Escherichia_coli_LF82" : [ - "NC_011993" - ], - "Japanese_encephalitis_virus__TLA" : [ - "JN381868" - ], - "Artichoke_mottled_crinkle_virus__AMCV_Bari_Dr_Gallitelli_isolate" : [ - "NC_001339" - ], - "Hepatitis_B_virus__C51" : [ - "FJ349232" - ], - "Human_papillomavirus_type_11__LP8" : [ - "HE611261" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__H5_5" : [ - "GU723748" - ], - "Newcastle_disease_virus__APMV1_Pigeon_NJ_USA_0607_2006" : [ - "KC013033" - ], - "JC_polyomavirus__N4" : [ - "AB048554" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2492_2007" : [ - "FJ882583" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3917_2008" : [ - "GU131922" - ], - "Dengue_virus_1__14985_BR_PE_10" : [ - "JX669466" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4250_1" : [ - "KR105222" - ], - "Duck_hepatitis_A_virus_3_DN2" : [ - "JF914944" - ], - "Maize_streak_virus__MSV_A_BF_Lou1_BF5_2008" : [ - "HQ693282" - ], - "Dengue_virus_3__ND143" : [ - "FJ644564" - ], - "Rice_ragged_stunt_virus" : [ - "NC_003750", - "NC_003751", - "NC_003752", - "NC_003749" - ], - "Human_immunodeficiency_virus_1__CAP85_5w_F1" : [ - "GQ999979" - ], - "Chikungunya_virus_Thailand_2009_CK539" : [ - "KJ796852" - ], - "South_African_cassava_mosaic_virus__MG_MG411_06" : [ - "KJ888010" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_74_3362_1974" : [ - "KJ469567" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Fazilka_2004" : [ - "JF502374" - ], - "Human_immunodeficiency_virus_1__03ZAPS051MB1" : [ - "DQ396385" - ], - "Hepatitis_B_virus__WY_SD_44" : [ - "JX429918" - ], - "Bovine_viral_diarrhea_virus_1_type_1_NADL" : [ - "AJ133738" - ], - "Human_immunodeficiency_virus_1" : [ - "AB731667", - "AB547464", - "AB731669", - "HIVU455A", - "HIVBRUCG", - "HIVMNCG", - "HIV1U23487", - "AF256207", - "GU230139", - "EU541617", - "HIVNDK", - "AF290028", - "AF289549", - "HIV1U34603", - "AF084936", - "HIV1U26546", - "A07867", - "KF990605", - "AB480048", - "DD409979", - "AY618998", - "AB731663", - "AB480047", - "AY049708", - "HIV1U21135", - "HIVRF", - "X01762", - "AB731670", - "EF368372", - "AB731666", - "KF990607", - "AB641837", - "A14116", - "AB480045", - "NC_001802", - "KM390026", - "AB646289", - "AB731664", - "AY046058", - "HIVU51188", - "A34828", - "AB480044", - "EF368370", - "HIVU51190", - "X04415", - "AB641836", - "AF256206", - "AB731665", - "AB547463", - "Z11530", - "AF290027", - "GU733715", - "A07116", - "AF256205", - "GU733717", - "HIVJRCSF", - "HIVMVP5180", - "HIV1U34604", - "EF469243", - "AY623602", - "AJ006022", - "A07108", - "HIVBH102", - "GU230137", - "AF290029", - "AY445524", - "AY049710", - "AB746345", - "EF368371", - "AF290030", - "AY271690", - "HIVSF2CG", - "HIVOYI", - "AB746342", - "HIVU51189", - "JN188292", - "AF289548", - "KF990608", - "AB646691", - "AB480046", - "KF990606", - "AY049711", - "AF070521", - "A04321", - "GU733713", - "HIVANT70C", - "AB078005", - "AB731668", - "AB746344", - "AB052867", - "AF256211", - "HIVZ2Z6", - "AF321523", - "GU733716", - "HIVNL43", - "AF289550", - "HIVPV22", - "AB746343", - "GU733714", - "AY049709" - ], - "Borna_disease_virus" : [ - "NC_001607", - "AJ311522", - "AB032031", - "BDVSEQ" - ], - "Bhendi_yellow_vein_mosaic_virus__Bhendi_yellow_vein_mosaic_virus__Madurai" : [ - "NC_003418" - ], - "Norovirus_Hu_GII_4_Hokkaido5_2007_JP_Hu_GII_4_Hokkaido5_2007_JP" : [ - "AB541267" - ], - "Rubella_virus_RVi_Seattle_WA_USA_16_00_2B" : [ - "JN635293" - ], - "Columbid_circovirus__PL172" : [ - "KF738849" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V208_1990" : [ - "EU255989" - ], - "Human_poliovirus_2__31996" : [ - "FJ460225" - ], - "Nostoc_PCC_7107" : [ - "NC_019676" - ], - "Hepatitis_B_virus__21077" : [ - "AJ627227" - ], - "Staphylococcus_aureus_Newman" : [ - "NC_009641" - ], - "Hepatitis_B_virus__KAMCHATKA27" : [ - "AB188243" - ], - "Broad_bean_wilt_virus_2__MB7" : [ - "AB013616", - "AB013615" - ], - "Rabies_virus__SM1545" : [ - "JQ685941" - ], - "Bermejo_virus_Oc22531" : [ - "AF482713" - ], - "Hepatitis_delta_virus_TW2667" : [ - "AF104263" - ], - "Wheat_dwarf_virus____Sanxi_Taiyuan___SXTY05_2" : [ - "EF536873" - ], - "Enterococcus_phage_EfaCPT1" : [ - "NC_025465" - ], - "Hepatitis_B_virus__HBV173" : [ - "JN688713" - ], - "Torque_teno_mini_virus_9__TLMV_CLC062" : [ - "NC_002195" - ], - "Hepatitis_B_virus__A2_12" : [ - "GU815571" - ], - "Dengue_virus_2_DENV_2_PR_49DN_1994" : [ - "GQ398272" - ], - "Hepatitis_B_virus__HCUCH5" : [ - "HM622135" - ], - "Mycoreovirus_1_Cryphonectria_parasitica_mycoreovirus_1__9B21" : [ - "NC_010748", - "NC_010751", - "NC_010746", - "NC_010745", - "NC_010749", - "NC_010743", - "NC_010753", - "NC_010752", - "NC_010744", - "NC_010750", - "NC_010747" - ], - "Cauliflower_mosaic_virus__GRC87E" : [ - "AB863197" - ], - "Brachyspira_pilosicoli_P43_6_78" : [ - "NC_019908" - ], - "Gardnerella_vaginalis_409_05" : [ - "NC_013721" - ], - "Human_immunodeficiency_virus_1__WCD32P0793" : [ - "DQ487188" - ], - "South_African_cassava_mosaic_virus__MG_MG146A1_09" : [ - "KJ887936" - ], - "Urochloa_streak_virus__USV_NEji" : [ - "EU445698" - ], - "Measles_virus_strain_Schwarz_Measles_virus_strain_Edmonston__Schwarz_vaccine" : [ - "AF266291" - ], - "Turnip_mosaic_virus__NZ419B" : [ - "AB989651" - ], - "Enterovirus_Yanbian_96_83csf" : [ - "AF230973" - ], - "Tomato_chlorotic_mottle_virus__BR_Car238_1_08" : [ - "KC706567" - ], - "Hepatitis_B_virus__Ran99" : [ - "EF103279" - ], - "Bean_common_mosaic_virus__HB" : [ - "KC478389" - ], - "Hepatitis_B_virus__09D09HCC" : [ - "AB014368" - ], - "Yersinia_pestis_A1122" : [ - "NC_017168", - "NC_017169", - "NC_017170" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y39" : [ - "AJ579356" - ], - "Hepatitis_B_virus__DEN6142" : [ - "KF779243" - ], - "West_Nile_virus__Ast01_66" : [ - "DQ411029" - ], - "Simian_immunodeficiency_virus_SIVtal_00CM266" : [ - "AY655744" - ], - "Ammonifex_degensii_KC4" : [ - "NC_013386", - "NC_013385" - ], - "Foot_and_mouth_disease_virus___type_O__IND250_541__2013" : [ - "KJ825809" - ], - "East_Asian_Passiflora_virus_AO_AO" : [ - "NC_007728" - ], - "Simian_enterovirus_43_OM112t__P12" : [ - "AF326761" - ], - "Homalodisca_coagulata_virus_1" : [ - "NC_008029" - ], - "Malvastrum_yellow_vein_betasatellite__Y249" : [ - "AJ971703" - ], - "Mycoplasma_suis_KI3806" : [ - "NC_015153" - ], - "Helicoverpa_armigera_nucleopolyhedrovirus_LB3" : [ - "KJ701030" - ], - "Human_poliovirus_3_NIE1018485" : [ - "KJ170671" - ], - "Porcine_circovirus_2_Y_6" : [ - "KF027496" - ], - "JC_polyomavirus__KB_13" : [ - "AB220940" - ], - "Ferroplasma_acidarmanus_fer1" : [ - "NC_021592" - ], - "Hepatitis_B_virus__PNF4424" : [ - "KF779326" - ], - "Haloferax_mediterranei_ATCC_33500" : [ - "NC_017943", - "NC_017944", - "NC_017942", - "NC_017941" - ], - "Human_immunodeficiency_virus_1_ES_P1981_2" : [ - "FJ670530" - ], - "Hepatitis_B_virus__M85_8" : [ - "EU330993" - ], - "Human_immunodeficiency_virus_1_08YN065" : [ - "GU362013" - ], - "Shewanella_amazonensis_SB2B" : [ - "NC_008700" - ], - "Human_immunodeficiency_virus_1__C_ZA_1119MB" : [ - "AY463229" - ], - "Porcine_circovirus_2__P789NH" : [ - "JX099784" - ], - "Tomato_yellow_leaf_curl_Axarquia_virus__Portugal_Algarve_38_Solanum_nigrum_2002" : [ - "JN859138" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7650_2012" : [ - "KF973455" - ], - "JC_polyomavirus__FB_2" : [ - "AB103404" - ], - "Tomato_leaf_curl_New_Delhi_virus___chili_pepper" : [ - "DQ116882", - "DQ116880" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_23__AHEaCV_23_NZ_2161TU_2012" : [ - "NC_026651" - ], - "Cucumber_mosaic_virus__Am" : [ - "JX993909", - "JX993911", - "JX993910" - ], - "Chrysodeixis_chalcites_nucleopolyhedrovirus" : [ - "NC_007151" - ], - "Torque_teno_sus_virus_1b__TTV2Jx2" : [ - "HM633234" - ], - "JC_polyomavirus_717B" : [ - "AF300967" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0085" : [ - "KP759645" - ], - "Hepatitis_B_virus__S1026_3" : [ - "FJ032352" - ], - "Enterovirus_A71_FY17_08_6_AH_CHN_2008" : [ - "JX678877" - ], - "Wheat_dwarf_virus____Taiyuan___Taiyuan" : [ - "DQ868525" - ], - "Okra_mottle_virus__6319" : [ - "NC_011181", - "NC_011182" - ], - "Bacillus_amyloliquefaciens_plantarum_CAU_B946" : [ - "NC_016784" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO11BP3_2009" : [ - "JF909134" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1927_2008" : [ - "FJ410258" - ], - "Bluetongue_virus_2__IND1982_01" : [ - "JQ713562", - "JQ713561", - "JQ713559", - "JQ713560", - "JQ713563", - "AJ586675", - "JQ713558", - "JQ713557" - ], - "Chikungunya_virus_MY003IMR_06_BP" : [ - "EU703760" - ], - "African_cassava_mosaic_virus__S4C2" : [ - "JN053431" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Raichur_OY54_2005___OY54" : [ - "GU111966" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1836" : [ - "JX869178" - ], - "Duck_hepatitis_B_virus__DHBV1" : [ - "X58567" - ], - "Human_immunodeficiency_virus_1__03ZASK058B2" : [ - "AY901967" - ], - "Banana_bunchy_top_virus__HaiKou_3" : [ - "HM212635" - ], - "Torque_teno_virus_27__CT23F" : [ - "NC_014074" - ], - "Human_polyomavirus_9_UF_1" : [ - "KC831440" - ], - "Cowpox_virus_CatBer07_1" : [ - "KC813502" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH27_2011" : [ - "KM188450" - ], - "Variola_virus_India_1953__New_Delhi" : [ - "DQ441428" - ], - "Indian_peanut_clump_virus_H" : [ - "NC_004730" - ], - "JC_polyomavirus__KB_4" : [ - "AB220939" - ], - "West_Nile_virus__M38488" : [ - "JF415925" - ], - "Hepatitis_B_virus__WHAKF1" : [ - "JN257206" - ], - "European_mountain_ash_ringspot_associated_virus__E52287" : [ - "HG799719" - ], - "Foot_and_mouth_disease_virus_O_UKG_4141_2001_UKG_4141_2001" : [ - "EF552689" - ], - "Clostridium_novyi_NT" : [ - "NC_008593" - ], - "Suid_herpesvirus_1__ZJ01" : [ - "KM061380" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_DOM_R23541_1978" : [ - "KJ469636" - ], - "Bifidobacterium_animalis_lactis_B420" : [ - "NC_017866" - ], - "Chinese_wheat_mosaic_virus__Yantai__China" : [ - "NC_002359", - "NC_002356" - ], - "Leptospirillum_ferriphilum_ML_04" : [ - "NC_018649" - ], - "Human_papillomavirus_type_6__83" : [ - "HG793891" - ], - "Oryctes_rhinoceros_nudivirus__Ma07" : [ - "NC_011588" - ], - "Chikungunya_virus_Angola_M2022" : [ - "HM045823" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_MMC_04_593" : [ - "KF385406" - ], - "Treponema_pallidum_pertenue_SamoaD" : [ - "NC_016842" - ], - "Porcine_circovirus_2__PCV2Izn_218_13" : [ - "KJ729074" - ], - "Tomato_mosaic_virus_Kazakh_strain_K1" : [ - "AJ243571" - ], - "Cucumber_mosaic_virus_HB24" : [ - "KC019301", - "KC019300", - "KC019299" - ], - "Dengue_virus_2__DENV_2_VE_BID_V1456_1996" : [ - "EU687220" - ], - "Murray_Valley_encephalitis_virus_OR156_OR156_C10" : [ - "KC852194" - ], - "Dengue_virus_1_VE_61060_2006" : [ - "HQ332178" - ], - "Hepatitis_B_virus__G1_14" : [ - "GU815750" - ], - "Hepatitis_B_virus__549" : [ - "EU670262" - ], - "Hepatitis_B_virus__GaziantepHCCC4" : [ - "AB674434" - ], - "Porcine_circovirus_2_QTH" : [ - "HM038026" - ], - "Grapevine_leafroll_associated_virus_3__3138_07" : [ - "JX559645" - ], - "Cotton_leafroll_dwarf_virus" : [ - "HQ827780" - ], - "WU_Polyomavirus_WU_Wuerzburg_02_07" : [ - "EU711057" - ], - "Yersinia_pestis_Angola" : [ - "NC_010158", - "NC_010157", - "NC_010159" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota86_2013" : [ - "KJ645679" - ], - "Hepatitis_B_virus__QHX_115" : [ - "HM750141" - ], - "Wheat_dwarf_virus__SXHC09_1" : [ - "KJ536138" - ], - "Tomato_leaf_curl_Sudan_virus__Tih_tom3_05" : [ - "JF919728" - ], - "Beak_and_feather_disease_virus__BFDV7" : [ - "FJ685979" - ], - "MW_polyomavirus_QLDMW09" : [ - "KC549590" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141232" : [ - "KR653266" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141997" : [ - "KR653293" - ], - "Youcai_mosaic_virus__Wh" : [ - "EU571218" - ], - "Gluconacetobacter_diazotrophicus_PAl_5" : [ - "NC_010123", - "NC_010124", - "NC_010125" - ], - "Maize_streak_virus__UMuk_203" : [ - "EF547110" - ], - "Human_immunodeficiency_virus_1__US1" : [ - "AY173952" - ], - "Feline_calicivirus__USDA" : [ - "AY560118" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__MN184C" : [ - "EF488739" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__S4C6" : [ - "JN053458" - ], - "JC_polyomavirus__CW_3" : [ - "AB118657" - ], - "Inachis_io_cypovirus_2" : [ - "NC_023494", - "NC_023492", - "NC_023491", - "NC_023490", - "NC_023493", - "NC_023487", - "NC_023489", - "NC_023495", - "NC_023488", - "NC_023486" - ], - "Halovirus_HSTV_2" : [ - "NC_020159" - ], - "Fervidobacterium_nodosum_Rt17_B1" : [ - "NC_009718" - ], - "Okra_enation_leaf_curl_betasatellite__India_Sonipat_EL10_2006___EL10" : [ - "NC_014896" - ], - "Bovine_viral_diarrhea_virus_1_M31182" : [ - "JQ799141" - ], - "Porcine_circovirus_2__Vos_19015_06" : [ - "EU545548" - ], - "Hepatitis_B_virus__clz2087" : [ - "KC774209" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00066_2007_G1P_8" : [ - "KC769387", - "KC769380" - ], - "Human_papillomavirus_type_6__55" : [ - "HG793863" - ], - "Human_bocavirus_4_NI_HBoV4_NI_385" : [ - "NC_012729" - ], - "South_African_cassava_mosaic_virus__MG_MG333A5_10" : [ - "KJ887695" - ], - "Hepatitis_B_virus__HBV53" : [ - "KC875323" - ], - "Hepatitis_B_virus__111002958" : [ - "JN792906" - ], - "Planktothrix_phage_PaV_LD" : [ - "NC_016564" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_COL_993MM304_1_1999_ID" : [ - "KC344521" - ], - "Human_papillomavirus_type_52__Qv05867" : [ - "HQ537744" - ], - "Mammalian_orthoreovirus_3__R124" : [ - "GU991659", - "GU991667", - "GU991661", - "GU991668", - "GU991665", - "GU991662", - "GU991666", - "GU991663", - "GU991660", - "GU991664" - ], - "Crimean_Congo_hemorrhagic_fever_virus_SPU41_84" : [ - "AY900142" - ], - "Avian_leukosis_virus_NX0101_China" : [ - "DQ115805" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_O_SD_SD261_2014" : [ - "KM229911" - ], - "Foot_and_mouth_disease_virus_C3_C3_Indaial_c3ind_iso19" : [ - "AY593806" - ], - "Hepatitis_B_virus_1303_3" : [ - "KR014031" - ], - "Porcine_circovirus_2_BF" : [ - "AF381175" - ], - "Canine_papillomavirus_5__Birkenfeld" : [ - "FJ492743" - ], - "Pepper_mottle_virus__205135" : [ - "EU586129" - ], - "Coxsackievirus_A1__HT_THLH02F_XJ_CHN_2011" : [ - "JX174176" - ], - "Agromonas_oligotrophica_S58" : [ - "NC_020453" - ], - "Staphylococcus_aureus_CC45" : [ - "NC_021552", - "NC_021554" - ], - "Syntrophobotulus_glycolicus_DSM_8271" : [ - "NC_015172" - ], - "Human_bocavirus_HoBV_Shiga_JPN_171" : [ - "AB480176" - ], - "Tomato_leaf_curl_Bangalore_virus____India_Kerala_IV_2005__Kerala_IV" : [ - "DQ887537" - ], - "Human_papillomavirus_type_6__68" : [ - "HG793876" - ], - "Chickpea_chlorotic_dwarf_virus__PK103" : [ - "KM377672" - ], - "Ageratum_enation_virus__NBRI_2" : [ - "KM262822" - ], - "Mycobacterium_phage_Halo" : [ - "NC_008202" - ], - "Human_papillomavirus_type_12" : [ - "X74466" - ], - "Human_papillomavirus_type_6__CAC11" : [ - "FR751334" - ], - "Peste_des_petits_ruminants_virus_ICV89" : [ - "EU267273" - ], - "West_Nile_virus__ARC17_06" : [ - "JF957163" - ], - "Melon_chlorotic_mosaic_virus__VE04_15" : [ - "KF670615", - "KF670614" - ], - "Tomato_yellow_leaf_curl_Thailand_betasatellite__Y79" : [ - "AJ566748" - ], - "Hepatitis_B_virus__V195" : [ - "HM363587" - ], - "Hepatitis_B_virus_574_17" : [ - "KR013805" - ], - "Hepatitis_B_virus__dww1054" : [ - "KC774446" - ], - "Mouse_astrovirus_M_52_USA_2008_M_52" : [ - "NC_015935" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7063_2007" : [ - "KJ189279" - ], - "Broad_bean_wilt_virus_2__Hunan" : [ - "KJ825857", - "KJ789403" - ], - "Eggplant_mottled_dwarf_virus__Agapanthus" : [ - "NC_025389" - ], - "Chicken_anemia_virus_GD_I_12" : [ - "KF224933" - ], - "Hepatitis_B_virus__HBV30" : [ - "KC875319" - ], - "Alkhumra_hemorrhagic_fever_virus_200201035" : [ - "JF416951" - ], - "Porcine_circovirus_2_FJGT0602" : [ - "GU247991" - ], - "Human_mastadenovirus_D_human_CAN_SW_2009_60_P60H20F60" : [ - "HQ007053" - ], - "Hepatitis_C_virus_subtype_1b__No__25" : [ - "AB154200" - ], - "Tomato_yellow_leaf_curl_China_virus__XJ26_4" : [ - "FN985163" - ], - "Human_immunodeficiency_virus_1__03ZAPS105MB2" : [ - "DQ445632" - ], - "West_Nile_virus__WNV_1_US_BID_V6692_2006" : [ - "KJ501526" - ], - "Dengue_virus_2__DC629Y12" : [ - "KM279536" - ], - "Bean_golden_mosaic_virus__BR_Pai14_11" : [ - "KJ939750" - ], - "Rice_black_streaked_dwarf_virus__SDJNiR23" : [ - "HM209070" - ], - "Cucumber_mosaic_virus_SD" : [ - "AB008777" - ], - "Hepatitis_B_virus__Ag29" : [ - "KJ843190" - ], - "Blainvillea_yellow_spot_virus__BR_Lim1_09" : [ - "JX871393" - ], - "Hepatitis_B_virus__Leb29" : [ - "JN642139" - ], - "Infectious_bronchitis_virus__CQ04_1" : [ - "HM245924" - ], - "Tomato_golden_mosaic_virus_Yellow_vein" : [ - "NC_001508", - "NC_001507" - ], - "Coxsackievirus_B3_Beijing0811" : [ - "GQ141875" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1074_2006" : [ - "EU482620" - ], - "Hepatitis_B_virus__HBV48" : [ - "KC875317" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_A2_32D_P" : [ - "JX570643" - ], - "Norovirus_Hu_GII_10012_2009_VNM_Hu_GII_10012_2009_VNM" : [ - "JQ911597" - ], - "Hepatitis_B_virus__C_Tonga_Ve_1992" : [ - "HQ700504" - ], - "Homalodisca_vitripennis_reovirus__Riverside18" : [ - "GU437844" - ], - "Nanovirus_like_particle__1" : [ - "AJ132344" - ], - "Hepatitis_B_virus__I200" : [ - "FJ562309" - ], - "Plum_pox_virus_PPV_D_Hi4" : [ - "AB576055" - ], - "Salmonella_phage_SPN3UB" : [ - "NC_019545" - ], - "SFTS_virus_HNXY_212_HNXY_212" : [ - "KC292300", - "KC292273", - "KC292327" - ], - "Broad_bean_wilt_virus_2__RP6" : [ - "JX183232", - "JX183231" - ], - "Subterranean_clover_mottle_virus__MB" : [ - "AY376452" - ], - "Cotton_leaf_curl_Multan_virus__GD01" : [ - "KP762786" - ], - "Badger_feces_associated_gemycircularvirus_588t" : [ - "NC_026806" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_12_2011" : [ - "KJ686301" - ], - "Human_poliovirus_1__10095c" : [ - "FJ859063" - ], - "West_Nile_virus__WNV_1_US_BID_V6404_2002" : [ - "KJ501281" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_388_2012" : [ - "KP308424" - ], - "JC_polyomavirus__NK" : [ - "AB118232" - ], - "Human_immunodeficiency_virus_1__02CM_DJO0131" : [ - "AY532635" - ], - "Enterobacteria_phage_ime09__ime09" : [ - "NC_019503" - ], - "Newcastle_disease_virus_YT" : [ - "KF935230" - ], - "Dengue_virus_2__DENV_2_US_BID_V1393_1998" : [ - "EU569712" - ], - "Potato_virus_Y__1116" : [ - "KJ603223" - ], - "Human_papillomavirus_type_152__Muc17_1" : [ - "JF304768" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT04B41_2005" : [ - "JF909165" - ], - "Human_immunodeficiency_virus_1__X477" : [ - "AF423759" - ], - "Porphyromonas_gingivalis_ATCC_33277" : [ - "NC_010729" - ], - "Hepatitis_B_virus__CX027M_e235n" : [ - "KJ173354" - ], - "Cowpox_virus_Germany_2002_MKY" : [ - "HQ420898" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_79_2012" : [ - "KJ686292" - ], - "West_Nile_virus__WNV_1_US_BID_V6204_2008" : [ - "KJ501255" - ], - "Duck_hepatitis_B_virus_B_DHBV_F1_6" : [ - "X12798" - ], - "Halovirus_HRTV_8" : [ - "NC_021321" - ], - "Porcine_rotavirus_C60" : [ - "PRVS11" - ], - "Hepatitis_B_virus_Ehi_TH_lam_8_1" : [ - "AB195949" - ], - "Papaya_leaf_distortion_mosaic_virus_P_J56P" : [ - "AB088221" - ], - "Dengue_virus_1__HNRG13154" : [ - "KC692499" - ], - "Rabies_virus_Rb_E3_15_5" : [ - "EU182347" - ], - "Hepatitis_B_virus__MY043147" : [ - "KJ803764" - ], - "Vulcanisaeta_distributa_DSM_14429" : [ - "NC_014537" - ], - "Dengue_virus_2_TSV01" : [ - "AY037116" - ], - "Porcine_circovirus_2__PCV_Y12" : [ - "KC515007" - ], - "SARS_coronavirus_HKU_39849__recSARS_CoV_HKU_39849" : [ - "JN854286" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7068_2008" : [ - "KJ189284" - ], - "Hepatitis_B_virus_42002" : [ - "FN545831" - ], - "Potato_leafroll_virus_Zim13" : [ - "AF453388" - ], - "Hepatitis_B_virus__TK193" : [ - "JF754631" - ], - "Highlands_J_virus__744_01" : [ - "GU167952" - ], - "Tomato_leaf_curl_Sudan_virus__Tih_tom12_05" : [ - "JF919730" - ], - "JC_polyomavirus__AN_9" : [ - "AB092584" - ], - "Watermelon_chlorotic_stunt_virus__PA1_J69" : [ - "KM820279" - ], - "Norovirus_Hu_GII_4_Hiroshima1_2008_JP_Hu_GII_4_Hiroshima1_2008_JP" : [ - "AB541252" - ], - "Plum_pox_virus_strain_Marcus_Marcus_VAR_2_551" : [ - "HF585101" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA0756_2008" : [ - "KJ627260" - ], - "Hepatitis_B_virus__I134" : [ - "FJ562277" - ], - "Olsenella_uli_DSM_7084" : [ - "NC_014363" - ], - "Aino_virus__38K" : [ - "NC_018459", - "NC_018460", - "NC_018465" - ], - "Human_poliovirus_3_NIE1018467" : [ - "KJ170604" - ], - "Hepatitis_C_virus_subtype_6j__C_0667" : [ - "DQ835761" - ], - "Human_immunodeficiency_virus_1__BREPM1024" : [ - "EF637056" - ], - "Corchorus_golden_mosaic_virus__India_Bahraich2_2008___Bahraich2" : [ - "GQ183864", - "GQ183863" - ], - "Bifidobacterium_animalis_lactis_Bi_07" : [ - "NC_017867" - ], - "Dengue_virus_2_DENV_2_PR_13DN_1994" : [ - "GQ398314" - ], - "Columbid_circovirus__PL124" : [ - "KF738845" - ], - "Rice_tungro_spherical_virus" : [ - "NC_001632", - "AM234049", - "AM234048" - ], - "Shewanella_oneidensis_MR_1" : [ - "NC_004347", - "NC_004349" - ], - "Human_adenovirus_46" : [ - "AY875648" - ], - "Staphylococcus_phage_tp310_3" : [ - "NC_009763" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO13AA3_2009" : [ - "JF909136" - ], - "Geobacillus_thermoleovorans_CCB_US3_UF5" : [ - "NC_016593" - ], - "Hipposideros_bat_coronavirus_HKU10__LSH5A" : [ - "JQ989269" - ], - "Hepatitis_B_virus__GU1086" : [ - "GQ161822" - ], - "Hepatitis_B_virus__GU459" : [ - "GQ161791" - ], - "Shewanella_sp__phage_3_49" : [ - "NC_025466" - ], - "Rousettus_bat_coronavirus_HKU10__183A" : [ - "NC_018871" - ], - "Hepatitis_B_virus_027" : [ - "AB900099" - ], - "Neisseria_meningitidis_M01_240355" : [ - "NC_017517" - ], - "Canine_coronavirus_TN_449" : [ - "JQ404410" - ], - "Subterranean_clover_mottle_virus__pFL" : [ - "AY376454" - ], - "Dengue_virus_1_D1_SG_05K847DK1_2005" : [ - "EU081227" - ], - "Cucumber_mosaic_virus_P" : [ - "AB369272" - ], - "Porcine_circovirus_2_PP_12763" : [ - "EU594439" - ], - "Murine_norovirus_Berlin_06_06_DE_S99" : [ - "EF531291" - ], - "Human_immunodeficiency_virus_1__UY03_3389" : [ - "FJ213783" - ], - "West_Nile_virus__WNV_1_US_BID_V6539_2002" : [ - "KJ501345" - ], - "Nandina_mosaic_virus__PLH_1" : [ - "AY800279" - ], - "West_Nile_virus__WNV_1_US_BID_V6524_2005" : [ - "KJ501342" - ], - "Hepatitis_C_virus__QC29" : [ - "JF735121" - ], - "Isfahan_virus" : [ - "NC_020806" - ], - "Human_rhinovirus_A38_ATCC_VR_1148" : [ - "FJ445180" - ], - "Turnip_curly_top_virus__IR_Zaf_B11_06" : [ - "NC_014324" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3671_2007" : [ - "GU131963" - ], - "Rotavirus_A__RVA_Human_wt_DEN_Hv2511118_2010_G4P_8" : [ - "KP013446" - ], - "Blackberry_yellow_vein_associated_virus" : [ - "NC_006963", - "NC_006962" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant" : [ - "FJ882926", - "FJ882930" - ], - "Feline_astrovirus_D1__FAstV_D1" : [ - "NC_024701" - ], - "Human_immunodeficiency_virus_1_subtype_E_95TNIH047" : [ - "AB032741" - ], - "Hepatitis_B_virus_274_20a" : [ - "KR013904" - ], - "Porcine_parvovirus_SR_1" : [ - "DQ675456" - ], - "Hepatitis_C_virus_subtype_1b_MD29" : [ - "AF207770" - ], - "South_African_cassava_mosaic_virus__MG_MG130A1_09" : [ - "KJ887923" - ], - "Rhodococcus_phage_ReqiPoco6" : [ - "NC_023694" - ], - "Hepatitis_B_virus__919027" : [ - "JN040812" - ], - "Tomato_leaf_curl_virus_TRN1" : [ - "KF612318" - ], - "Enterobacteria_phage_NC5" : [ - "DQ079885" - ], - "Potato_virus_Y__VNP417" : [ - "HG810952" - ], - "Human_immunodeficiency_virus_1__97US08692A" : [ - "AY169805" - ], - "West_Nile_virus__WNV_1_US_BID_V4901_2000" : [ - "HQ671709" - ], - "Avian_infectious_bronchitis_virus_partridge_GD_S14_2003_Partridge_GD_S14_2003_s14" : [ - "AY646283" - ], - "Homalodisca_vitripennis_reovirus__Riverside3" : [ - "GU437845" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C77" : [ - "KJ019050" - ], - "Red_clover_necrotic_mosaic_virus_Australia" : [ - "NC_003756" - ], - "Hepatitis_B_virus__CONTROL30" : [ - "JQ801522" - ], - "Watermelon_chlorotic_stunt_virus__JO1_110" : [ - "KM820193" - ], - "Tomato_leaf_curl_New_Delhi_virus__ToLCV_186b" : [ - "GQ865546" - ], - "Cucumber_mosaic_virus_O" : [ - "MCVORNA2", - "MCVO3" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_ZB_CHA_58_att" : [ - "DQ533483" - ], - "Spiroplasma_phage_SVTS2" : [ - "NC_001270" - ], - "Hepatitis_B_virus__S1416" : [ - "FJ386682" - ], - "Hepatitis_B_virus_subtype_adw2_patient_A938" : [ - "X70185" - ], - "Hepatitis_B_virus_544_5a" : [ - "KR013965" - ], - "Beak_and_feather_disease_virus__MU_JP3P" : [ - "AB277748" - ], - "Bovine_papular_stomatitis_virus_BV_AR02_ORFB" : [ - "NC_005337" - ], - "Human_respiratory_syncytial_virus_A_WI_629_17_06_07" : [ - "JF920058" - ], - "Human_parainfluenza_virus_3_HPIV3_USA_629_D1_2009" : [ - "KF530241" - ], - "Dengue_virus_2__DF674" : [ - "FM210220" - ], - "Mannheimia_haemolytica_D174" : [ - "NC_021739" - ], - "European_mountain_ash_ringspot_associated_virus__E52897" : [ - "HG799733" - ], - "Human_papillomavirus_type_33" : [ - "PPH33CG", - "A12360" - ], - "Hepatitis_B_virus__cxn1015" : [ - "KC774336" - ], - "Macroptilium_yellow_mosaic_virus__pmrsrfb14" : [ - "EF585292" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2305_2001" : [ - "FJ744719" - ], - "Wheat_dwarf_virus__SA45Ecogr11" : [ - "AM921996" - ], - "Chilli_leaf_curl_betasatellite__RKB2" : [ - "KJ700655" - ], - "Hepatitis_B_virus_28058" : [ - "EU414133" - ], - "Dengue_virus_3_BR74886_02" : [ - "AY679147" - ], - "Guanarito_mammarenavirus_VHF_3990__AV_97021237" : [ - "AY576604" - ], - "Hepatitis_B_virus__DEN6106" : [ - "KF779235" - ], - "Hepatitis_B_virus__C1S_HB11_1418" : [ - "AB931169" - ], - "Human_papillomavirus_type_6__112" : [ - "HG793920" - ], - "Hepatitis_B_virus__HBV_TR3" : [ - "AB116081" - ], - "Hepatitis_B_virus_H001" : [ - "AB818694" - ], - "Leptospira_borgpetersenii_serovar_Hardjo_bovis_JB197" : [ - "NC_008511", - "NC_008510" - ], - "Salmonella_phage_PVP_SE1__PVP_SE1" : [ - "NC_016071" - ], - "Dengue_virus_3__UNC3001" : [ - "JQ411814" - ], - "Hepatitis_B_virus__N005v6" : [ - "KF922419" - ], - "Rotavirus_G_chicken_03V0567_DEU_2003_chicken_03V0567_DEU_2003" : [ - "NC_021585", - "NC_021583", - "NC_021580", - "NC_021586", - "NC_021581", - "NC_021584", - "NC_021590", - "NC_021589", - "NC_021582", - "NC_021587" - ], - "Synechococcus_phage_S_RIM8_A_HR5_S_RIM8_A_HR5" : [ - "HQ317385" - ], - "Sugarcane_yellow_leaf_virus__IND1" : [ - "JF925152" - ], - "Coxsackievirus_A13_BAN00_10494" : [ - "DQ995639" - ], - "Duck_hepatitis_A_virus_1_HDHV1_SC" : [ - "FJ157174" - ], - "Parrot_hepatitis_B_virus__P1036" : [ - "JX274034" - ], - "Hepatitis_B_virus_4628_97" : [ - "EU594427" - ], - "Hepatitis_B_virus__LAMr_Pt__43_Adefovir_treated_Pt__26" : [ - "AB367434" - ], - "Japanese_encephalitis_virus__BL06_54" : [ - "JF706271" - ], - "Hepatitis_E_virus_Osh_205" : [ - "AF455784" - ], - "Cherry_leaf_roll_virus__FNW" : [ - "KC937028", - "KC937022" - ], - "Ground_squirrel_hepatitis_virus" : [ - "NC_001484" - ], - "Human_herpesvirus_3__Var160" : [ - "KC112914" - ], - "Classical_swine_fever_virus_P97" : [ - "HCVSEQB" - ], - "Hepatitis_B_virus__E_Mad_F017A" : [ - "HQ700551" - ], - "Tomato_common_mosaic_virus__BR_Coi8_07" : [ - "KC706579" - ], - "Adlercreutzia_equolifaciens_DSM_19450" : [ - "NC_022567" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3544_1998" : [ - "GU056032" - ], - "Hepatitis_B_virus_HBV_P32" : [ - "KC510652" - ], - "Enterovirus_E__BEV_Egypt_2014" : [ - "KM667941" - ], - "Tomato_leaf_curl_Cameroon_alphasatellite__CM_TOS2D1_To_09___TOS2D1" : [ - "FN675299" - ], - "Hepatitis_delta_virus__D5_A" : [ - "KJ744218" - ], - "Avian_leukosis_virus__CAUYL01" : [ - "JF932004" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1121" : [ - "KR534536" - ], - "Potato_virus_Y_NTN_NTNKGAM1" : [ - "AB711144" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT36B00_2004" : [ - "JF909181" - ], - "Hepatitis_C_virus_subtype_6k__KM45" : [ - "AY878650", - "DQ278891" - ], - "Micromonospora_L5" : [ - "NC_014815" - ], - "HBV_genotype_A2__Mart_B15" : [ - "HE974364" - ], - "Hepatitis_B_virus__J168" : [ - "GQ377604" - ], - "Klebsiella_phage_NTUH_K2044_K1_1_NTUH_K2044_K1_1" : [ - "NC_025418" - ], - "Mycobacterium_tuberculosis_CCDC5079" : [ - "NC_021251" - ], - "Sacbrood_virus__CSBV_FZ" : [ - "KM495267" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1972_2008" : [ - "FJ410285" - ], - "Rabies_virus_GD_SH_01" : [ - "JX088694" - ], - "Hepatitis_B_virus__J61" : [ - "GQ377542" - ], - "Helicobacter_pylori_BM012A" : [ - "NC_022886" - ], - "Rift_Valley_fever_virus_200803167" : [ - "JF311382", - "JF311391", - "JF311373" - ], - "Porcine_circovirus_2__244_08_4" : [ - "HQ591374" - ], - "Human_papillomavirus_type_24" : [ - "HPU31782" - ], - "Streptococcus_pneumoniae_SPN994038" : [ - "NC_021026" - ], - "Foot_and_mouth_disease_virus___type_A_Aarg2000_a_argentina_2000_iso104" : [ - "AY593782" - ], - "Dengue_virus_2__IQT_1950" : [ - "EU056811" - ], - "Human_poliovirus_2_NIE1118438" : [ - "KJ170571" - ], - "Burkholderia_phage_Bcep22" : [ - "NC_005262" - ], - "Infectious_bursal_disease_virus__Uk_661" : [ - "AJ318897" - ], - "South_African_cassava_mosaic_virus__MG_MG179A9_09" : [ - "KJ887675" - ], - "Human_enterovirus_C104_Pavia262_11228" : [ - "JX982259" - ], - "Porcine_circovirus_2__Mal007_11_Penang" : [ - "JF690916" - ], - "BK_polyomavirus__MT_clone_51" : [ - "AB485704" - ], - "Porcine_circovirus_1_HZ2006" : [ - "EF533941" - ], - "Gossypium_punctatum_mild_leaf_curl_virus__Gossypium_somalense___Soma_B2_7" : [ - "FJ218490" - ], - "Human_immunodeficiency_virus_2__01JP_IMCJ_KR020_1" : [ - "AB100245" - ], - "Mupapillomavirus_1" : [ - "NC_001356" - ], - "Porcine_circovirus_2_SXYID_01" : [ - "KC800638" - ], - "Hepatitis_B_virus_551_11" : [ - "KR013970" - ], - "Reston_ebolavirus___Reston_Reston08_A" : [ - "FJ621583" - ], - "Hepatitis_C_virus__QC264" : [ - "FJ462435" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pun_beta_11" : [ - "EU384585" - ], - "Burkholderia_phage_phiE202" : [ - "NC_009234" - ], - "Bovine_astrovirus_B76_2_HK_B76_2_HK" : [ - "NC_023630" - ], - "Human_immunodeficiency_virus_1__WR27" : [ - "AF286365" - ], - "Infectious_bronchitis_virus_A2" : [ - "EU526388" - ], - "Sida_yellow_blotch_virus__BR_Rla1_10" : [ - "NC_020254" - ], - "Human_immunodeficiency_virus_1__C_ZA_1184MB" : [ - "AY585267" - ], - "Human_immunodeficiency_virus_1__119_28" : [ - "KP718937" - ], - "Duck_hepatitis_B_virus__Chiloe_Wigeon_hepatitis_B_virus" : [ - "AY494850" - ], - "Getah_virus__LEIV_16275_Mag" : [ - "EF631998" - ], - "Hepatitis_B_virus__F2_3" : [ - "GU815728" - ], - "Cauliflower_mosaic_virus__IRN14" : [ - "AB863149" - ], - "Hepatitis_B_virus__S897" : [ - "FJ386645" - ], - "Bhendi_yellow_vein_India_betasatellite__WB1" : [ - "KJ462076" - ], - "Propionibacterium_phage_PHL070N00__PHL070N00" : [ - "NC_027333" - ], - "Hepatitis_B_virus__059_DR_Wad" : [ - "KF873538" - ], - "Marivirga_tractuosa_DSM_4126" : [ - "NC_014759", - "NC_014750" - ], - "West_Nile_virus__WNV_1_US_BID_V7419_2008" : [ - "KJ501130" - ], - "Rabies_virus__A10_0515" : [ - "JQ685899" - ], - "Human_immunodeficiency_virus_1__C_IN_05_NIRT333_1" : [ - "KF766540" - ], - "Mycoplasma_genitalium_G37" : [ - "NC_000908" - ], - "Dengue_virus_3__DENV_3_US_BID_V1050_1998" : [ - "EU482559" - ], - "JC_polyomavirus__SI_1" : [ - "AB074589" - ], - "West_Nile_virus__BSL4_11" : [ - "JQ700438" - ], - "Woodchuck_hepatitis_virus__WHV_tm4" : [ - "GU734791" - ], - "Human_papillomavirus_type_135__NJ3500" : [ - "NC_017993" - ], - "Hepatitis_B_virus__141" : [ - "EU498228" - ], - "Hepatitis_B_virus_494_9" : [ - "KR013942" - ], - "Beak_and_feather_disease_virus__D134144" : [ - "JQ782198" - ], - "Hepatitis_B_virus_HBV_P2" : [ - "KC510642" - ], - "Spinach_latent_virus" : [ - "NC_003808", - "NC_003810", - "NC_003809" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V70_2002" : [ - "EU482869" - ], - "Hepatitis_B_virus_513_27a" : [ - "KR013958" - ], - "Human_immunodeficiency_virus_1__03ZASK016MB2" : [ - "DQ351233" - ], - "Porcine_circovirus_2__PCV_Y5" : [ - "KC515004" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Haryana_2010" : [ - "JF502398" - ], - "Human_immunodeficiency_virus_1__WITO_flA2" : [ - "FJ496168" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3768_2004" : [ - "GU131955" - ], - "Porcine_circovirus_2_strain_SD6_SD6" : [ - "DQ218421" - ], - "Foot_and_mouth_disease_virus___type_O__UKG_1558_2001" : [ - "FJ542367" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V449_2006" : [ - "EU155235" - ], - "Classical_swine_fever_virus_0406_CH_01_TWN" : [ - "AY568569" - ], - "Hepatitis_B_virus__HK1476" : [ - "DQ089781" - ], - "Pseudomonas_phage_KPP12" : [ - "NC_019935" - ], - "Hepatitis_A_virus__A2" : [ - "KC182587" - ], - "Human_papillomavirus_type_6__CAC377" : [ - "FR751325" - ], - "Hepatitis_B_virus__38" : [ - "JQ040126" - ], - "Rhodococcus_phage_REQ1" : [ - "NC_016655" - ], - "Rice_yellow_mottle_virus__Mg11" : [ - "JX966244" - ], - "Parvibaculum_lavamentivorans_DS_1" : [ - "NC_009719" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2287_2001" : [ - "FJ687442" - ], - "Cotton_leaf_curl_Multan_betasatellite__Balurghat_East_India" : [ - "FJ159275" - ], - "Torque_teno_sus_virus_1b__TTV2Bj12" : [ - "HM633228" - ], - "Hepatitis_B_virus_1130_2" : [ - "KR014002" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2836_2004" : [ - "FJ882569" - ], - "Human_adenovirus_55_TJ_2013_90" : [ - "KF908851" - ], - "West_Nile_virus__WNV_1_US_BID_V4095_2007" : [ - "HM756678" - ], - "Human_poliovirus_2__32189_AP1" : [ - "FJ460224" - ], - "Streptomyces_phage_phiSASD1" : [ - "NC_014229" - ], - "Malvastrum_yellow_vein_Yunnan_virus__SC101" : [ - "JN082238", - "JN082234" - ], - "Hepatitis_B_virus__HBVKL" : [ - "AY034878" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_678" : [ - "KR534516" - ], - "Kytococcus_sedentarius_DSM_20547" : [ - "NC_013169" - ], - "Torque_teno_virus__tth9" : [ - "AJ620219" - ], - "WU_Polyomavirus_GD_WU168" : [ - "GQ926975" - ], - "Chicken_anemia_virus_GD_E_12" : [ - "KF224929" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus__E4" : [ - "KF446663", - "KF446664" - ], - "Avian_orthoreovirus_GuangxiR2" : [ - "KF741735", - "KF741733", - "KF741727", - "KF741734", - "KF741730", - "KF741726", - "KF741728", - "KF741729", - "KF741731" - ], - "Hepatitis_B_virus__AnkaraE15" : [ - "AB674422" - ], - "Human_immunodeficiency_virus_1__09YNLX047sg" : [ - "KC898994" - ], - "Hepatitis_B_virus__SLC13" : [ - "KJ598755" - ], - "Hepatitis_B_virus_4605_97" : [ - "EU594433" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2297_2001" : [ - "FJ810411" - ], - "Dengue_virus_2__DENV_2_NI_BID_V527_2005" : [ - "EU482770" - ], - "Rhodobacter_phage_RcapNL" : [ - "NC_020489" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3979_2008" : [ - "GU131752" - ], - "West_Nile_virus__WNV_1_US_BID_V4090_2007" : [ - "HM488199" - ], - "Simian_immunodeficiency_virus__SIVcpzGAB2" : [ - "AF382828" - ], - "SARS_coronavirus_NS_1_NS_1" : [ - "AY508724" - ], - "Sewage_associated_circular_DNA_molecule__SaCM_5_NZ_BS3056_2012" : [ - "KM877827" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Faridpur_2013___Bangladesh_Faridpur_2013" : [ - "AB971843", - "AB971842" - ], - "Nanovirus_like_particle__Palampur" : [ - "FN794199" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_LIBR0286" : [ - "KR006952" - ], - "Ockelbo_virus_Edsbyn_82_5_Ockelbo_82" : [ - "SINOCK82" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1805_2007" : [ - "FJ432740" - ], - "Hepatitis_B_virus__PRC6136" : [ - "KF779379" - ], - "Rabies_virus__CAR_11_001h" : [ - "KF977826" - ], - "Chaetoceros_salsugineum_DNA_virus" : [ - "NC_007193" - ], - "Staphylococcus_phage_K" : [ - "AY176327", - "NC_005880" - ], - "Porcine_circovirus_2__Aust_9" : [ - "AY754020" - ], - "Mandrillus_leucophaeus_cytomegalovirus__OCOM6_2" : [ - "KR297253" - ], - "Human_respiratory_syncytial_virus_RSVA_human_USA_A2001_02_20_2001_GA2_A2001_2_20" : [ - "JX069798" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3403_2005" : [ - "GQ868577" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2037_2003" : [ - "GQ868622" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLI1374_2010" : [ - "KJ672566" - ], - "West_Nile_virus_AZ10_581" : [ - "KF704153" - ], - "SARS_coronavirus_TW9__TW9" : [ - "AY502932" - ], - "Dengue_virus_2_PL046" : [ - "KJ734727", - "AJ968413" - ], - "Bifidobacterium_animalis_lactis_CNCM_I_2494" : [ - "NC_017215" - ], - "Pantoea_ananatis_PA13" : [ - "NC_017554", - "NC_017553" - ], - "Enterovirus_D_Enterovirus_70" : [ - "NC_001430" - ], - "Brevicoryne_brassicae_picorna_like_virus__IL" : [ - "KP777548" - ], - "Porcine_circovirus_2_TZ0601" : [ - "EU257511" - ], - "Tomato_leaf_curl_Bangalore_virus__Ban5___Bangalore_5" : [ - "AF295401" - ], - "Human_mastadenovirus_C_human_USA_UFL_Adv2_2004_2_P2H2F2" : [ - "KF268130" - ], - "Bhendi_yellow_vein_India_virus__India_Jalgov_OY126_2006___OY126" : [ - "GU112026" - ], - "Enterovirus_A71_HCM82_VNM_2011" : [ - "KC296443" - ], - "Hepatitis_B_virus__F2S_C2" : [ - "AB471852" - ], - "Newcastle_disease_virus__02_1334" : [ - "AY935490" - ], - "Bluetongue_virus_9_RSAvvv1_09" : [ - "AM900374" - ], - "Hepatitis_B_virus__1716" : [ - "FJ386646" - ], - "Watermelon_chlorotic_stunt_virus__Als_1" : [ - "JN618981", - "JN618980" - ], - "Human_immunodeficiency_virus_1__04ZAPS284B1" : [ - "DQ164120" - ], - "Tembusu_virus__Shandong1" : [ - "JX965381" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20142477" : [ - "KR653255" - ], - "Porcine_circovirus_2__Bd2014" : [ - "KM624038" - ], - "Acetobacter_pasteurianus_IFO_3283_12" : [ - "NC_017136", - "NC_017115", - "NC_017114", - "NC_017137", - "NC_017116", - "NC_017113", - "NC_017108" - ], - "Human_poliovirus_2__CHN8316" : [ - "HM107835" - ], - "Enterovirus_A71__BC08" : [ - "JQ514785" - ], - "Hepatitis_C_virus__isolate_6a33__6a33" : [ - "AY859526" - ], - "Potato_virus_M_Russian_wild" : [ - "NC_001361" - ], - "Sri_Lankan_cassava_mosaic_virus__Tamil_Nadu_6" : [ - "AJ890228" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_100801" : [ - "JF330898" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3934_2008" : [ - "GU131730" - ], - "Delftia_acidovorans_SPH_1" : [ - "NC_010002" - ], - "Bovine_enterovirus_type_2_BJ50" : [ - "HQ917061" - ], - "Lactobacillus_phage_Lb338_1_Lb338_1" : [ - "NC_012530" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3741_2007" : [ - "GU131980" - ], - "Aleutian_mink_disease_virus" : [ - "Z18276" - ], - "Hepatitis_B_virus__MY155693" : [ - "KJ803752" - ], - "Microbacterium_phage_vB_MoxS_ISF9" : [ - "NC_023859" - ], - "South_African_cassava_mosaic_virus__MG_MG125B1_09" : [ - "KJ887659" - ], - "Chilli_leaf_curl_virus__Taq1" : [ - "JN604492" - ], - "Avian_orthoreovirus_P100" : [ - "DQ868791" - ], - "Hepatitis_B_virus_Ehi_MM_lam_1_2" : [ - "AB195931" - ], - "Human_immunodeficiency_virus_1__96BWMO3_2" : [ - "AF443075" - ], - "Salmonella_phage_Det7" : [ - "NC_027119" - ], - "Blueberry_red_ringspot_virus__Darrow_5" : [ - "HM159264" - ], - "Norovirus_Hu_GI_Otofuke_1979_JP_Otofuke" : [ - "AB187514" - ], - "Tomato_yellow_leaf_curl_virus__TYLCV_SXXY" : [ - "KC138546" - ], - "Rice_yellow_mottle_virus__Ni1" : [ - "AJ608212" - ], - "Dengue_virus_2__DENV_2_VN_BID_V922_2006" : [ - "FJ873811" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_26_DRC" : [ - "JX458844" - ], - "Hepatitis_B_virus__SSC129" : [ - "KJ598699" - ], - "Human_rotavirus_A_RVA_Human_tc_CHN_R709_2005_G3P_8__R709" : [ - "KF371687", - "KF371686", - "DQ873677", - "KF371685", - "KF371692", - "KF371690", - "KF371688", - "KF371684", - "KF371689" - ], - "West_Nile_virus_Greece_2013_Thessaloniki_3" : [ - "KJ883350" - ], - "Merkel_cell_polyomavirus__R17a" : [ - "HM011555" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V362_2006" : [ - "EU155252" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3841_2008" : [ - "JF937600" - ], - "Catenulispora_acidiphila_DSM_44928" : [ - "NC_013131" - ], - "Simian_virus_40__SV40_PV_264" : [ - "EF579666" - ], - "African_cassava_mosaic_virus__MG_MG15B2_06" : [ - "KJ887638" - ], - "Shewanella_loihica_PV_4" : [ - "NC_009092" - ], - "JC_polyomavirus__NG_3" : [ - "AB127005" - ], - "Dengue_virus_2__DENV_2_VE_BID_V1457_1996" : [ - "EU726775" - ], - "Pepper_mottle_virus__Vb1" : [ - "DQ631638" - ], - "Bovine_herpesvirus_1_Composite_of_5_strains" : [ - "NC_001847" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__GZ1101" : [ - "KF771273" - ], - "Waterbuck_coronavirus_US_OH_WD358_1994" : [ - "FJ425186" - ], - "Hepatitis_C_virus_subtype_1b_MD25" : [ - "AF207766" - ], - "Chicken_parvovirus__ADL120019" : [ - "KJ486489" - ], - "Eclipta_yellow_vein_virus" : [ - "NC_016660" - ], - "Sweet_potato_leaf_curl_virus__RS2__BR_Mac1" : [ - "FJ969835" - ], - "Hepatitis_B_virus__SHB69" : [ - "KJ598725" - ], - "Hepatitis_B_virus__M31" : [ - "GQ924614" - ], - "Hibiscus_latent_Fort_Pierce_virus__J" : [ - "NC_025381" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_MP2_09" : [ - "HQ393465" - ], - "Hepatitis_B_virus__WJT16" : [ - "DQ377160" - ], - "Human_immunodeficiency_virus_1__03ZAPS112MB2" : [ - "DQ396386" - ], - "Porcine_circovirus_2_09NX" : [ - "HQ395041" - ], - "Torque_teno_virus__TTV_HD14b__gbCuCv33_2" : [ - "FR751464" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Guntur_OY163_2006___OYSOK3" : [ - "GU111992" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2689_2006" : [ - "JQ287660" - ], - "JC_polyomavirus__KE_4" : [ - "AB126995" - ], - "Feline_calicivirus__21223" : [ - "JX519212" - ], - "Hepatitis_B_virus__M154" : [ - "GQ358158" - ], - "Cucumber_mosaic_virus_satellite_RNA_F2" : [ - "X89003" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3968_2008" : [ - "GU131746" - ], - "Synechococcus_phage_ACG_2014j__Syn7803US23" : [ - "KJ019089" - ], - "Banana_bunchy_top_virus__TO290" : [ - "JF957655", - "JF957643", - "JF957631", - "JF957679", - "JF957691", - "JF957667" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO21AH3_2009" : [ - "JF909148" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3590_2007" : [ - "GU131869" - ], - "Leuconostoc_mesenteroides_J18" : [ - "NC_016820", - "NC_016827", - "NC_016821", - "NC_016806", - "NC_016828", - "NC_016805" - ], - "Cotton_leaf_curl_Gezira_virus__Cameroon___M51R2" : [ - "FM210276" - ], - "Thermoproteus_uzoniensis_768_20" : [ - "NC_015315" - ], - "Human_immunodeficiency_virus_1__CTL_023" : [ - "EF514707" - ], - "Turnip_mosaic_virus__GBR91" : [ - "AB701718" - ], - "Chicken_megrivirus_chicken_CHK_IV_CHV_2013_HUN" : [ - "NC_023857" - ], - "Infectious_bronchitis_virus_Ck_CH_LGD_120723" : [ - "KC013541" - ], - "Rose_cryptic_virus_1__ShB_1" : [ - "NC_010348", - "NC_010346", - "NC_010347" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2702_2006" : [ - "FJ882528" - ], - "South_African_cassava_mosaic_virus__MG_MG73A1_06" : [ - "KJ887892" - ], - "Staphylococcus_phage_StB27" : [ - "NC_019914" - ], - "Hepatitis_B_virus__TP68" : [ - "KF192833" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL077A" : [ - "AB985536", - "AB985304" - ], - "Hepatitis_B_virus__16202_NE_BRA" : [ - "KJ854689" - ], - "Human_immunodeficiency_virus_1__D88_845" : [ - "GQ290462" - ], - "Chlamydia_psittaci_M56" : [ - "NC_018635", - "NC_018623" - ], - "Duck_hepatitis_A_virus_JS2010" : [ - "HQ654774" - ], - "Ethiopian_tobacco_bushy_top_virus_satellite_RNA__18_2" : [ - "NC_024807" - ], - "Clostridium_phage_vB_CpeS_CP51" : [ - "NC_021325" - ], - "Hepatitis_B_virus__MY590465" : [ - "KJ803804" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2499_2007" : [ - "FJ882590" - ], - "Sparrow_coronavirus_HKU17_HKU17_6124" : [ - "NC_016992" - ], - "Okra_leaf_curl_betasatellite__India_Munthal_EL41_2006___EL41" : [ - "GU111965" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX08_H50_2008_IE" : [ - "KC344449" - ], - "Newcastle_disease_virus_PPMV_1_pigeon_IE_806_04_806" : [ - "JN986839" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPP01153_2012_A" : [ - "KJ627427" - ], - "Small_begomovirus_associated_satellite__Sa19_S6" : [ - "KJ859139" - ], - "Hepatitis_B_virus__S5_4" : [ - "EU916222" - ], - "Foot_and_mouth_disease_virus___type_C__KEN_1_2004" : [ - "KM268897" - ], - "Dengue_virus_2__DC771Y12" : [ - "KM279594" - ], - "Sida_yellow_mosaic_virus__China__associated_DNA_beta__Hn41" : [ - "AJ810095" - ], - "Hepatitis_B_virus__PNF5760" : [ - "KF779375" - ], - "Mapuera_virus__BeAnn_370284" : [ - "NC_009489" - ], - "Precarious_point_virus" : [ - "HM566180", - "HM566179", - "HM566181" - ], - "Hepatitis_B_virus__1958_7" : [ - "KR014099" - ], - "Acinetobacter_phage_Presley" : [ - "NC_023581" - ], - "Hepatitis_B_virus__HBDI03" : [ - "AB353764" - ], - "Bean_common_mosaic_virus__NKY022" : [ - "KJ807820" - ], - "Human_rhinovirus_A9__F02" : [ - "FJ445115" - ], - "West_Nile_virus__WNV_1_US_BID_V4899_1999" : [ - "HQ671707" - ], - "Staphylococcus_phage_92" : [ - "NC_007064" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_TD_2" : [ - "KP998427" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1249" : [ - "KR534541" - ], - "Corynebacterium_pseudotuberculosis_31" : [ - "NC_017730" - ], - "Colombian_datura_virus" : [ - "NC_020072" - ], - "Hepatitis_B_virus__BA10" : [ - "AY179735" - ], - "Human_adenovirus_13" : [ - "JN226747" - ], - "Tomato_leaf_curl_China_betasatellite__Y286" : [ - "AJ971336" - ], - "Hepatitis_B_virus_28129" : [ - "EU414138" - ], - "Dragonfly_cyclovirus_4__BG_NZ46_2007" : [ - "NC_023867" - ], - "New_Jersey_polyomavirus_2013__NJ_PyV_2013" : [ - "NC_024118" - ], - "Synechococcus_phage_S_RSM4" : [ - "NC_013085" - ], - "Hantaanvirus_CGRn53_CGRn53" : [ - "EF990921", - "EF990907" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZCattle01_2011" : [ - "JQ693001" - ], - "Yellow_baboon_polyomavirus_1__BS20" : [ - "NC_025894" - ], - "Tobacco_leaf_curl_Yunnan_virus_associated_DNA_1__Y143" : [ - "NC_005060" - ], - "Hepatitis_B_virus__P32" : [ - "GQ477452", - "JX898697", - "EU859902" - ], - "Methanococcus_aeolicus_Nankai_3" : [ - "NC_009635" - ], - "Human_immunodeficiency_virus_1__02ZAPS014MB1" : [ - "DQ351218" - ], - "Hepatitis_B_virus__MOD_4632" : [ - "GQ183468" - ], - "Euphorbia_yellow_mosaic_virus___Goias__Brazil_GO_Sao_Miguel_do_Passa_Quatro_AB404_2002" : [ - "JF756675" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2616_1996" : [ - "FJ906957" - ], - "Plum_pox_virus_D_PENN2" : [ - "AF401296" - ], - "Highlands_J_virus__585_01" : [ - "NC_012561" - ], - "Human_cyclovirus_7081A" : [ - "KF726985" - ], - "Melissococcus_plutonius_ATCC_35311" : [ - "NC_015516", - "NC_015517" - ], - "Sweet_potato_virus_C__IL" : [ - "JX489166" - ], - "Tomato_yellow_leaf_curl_China_virus_Tb_Y11___Y11" : [ - "AJ319676" - ], - "Hepatitis_B_virus__WHMJD1" : [ - "JN257179" - ], - "Human_papillomavirus_type_6__120" : [ - "HG793928" - ], - "Salinibacter_ruber_M8" : [ - "NC_014157", - "NC_014026", - "NC_014032", - "NC_014028", - "NC_014030" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US63" : [ - "KJ019117" - ], - "Butterbur_mosaic_virus_J" : [ - "NC_013527" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4445_1" : [ - "KR105256" - ], - "Visna_maedi_virus__697" : [ - "HQ848062" - ], - "Human_poliovirus_1_NIE1118340" : [ - "KJ170462" - ], - "Beet_necrotic_yellow_vein_virus_C_Baotou" : [ - "AJ236894" - ], - "Porcine_circovirus_2__PCV_Y15" : [ - "KC515010" - ], - "European_mountain_ash_ringspot_associated_virus__E52900" : [ - "HG799734" - ], - "Hepatitis_B_virus__1746" : [ - "FJ386576" - ], - "Tomato_yellow_leaf_curl_virus__Mauritius" : [ - "HM448447" - ], - "Hepatitis_B_virus__CONTROL12" : [ - "JQ801505" - ], - "Hepatitis_C_virus__QC93" : [ - "FJ462440" - ], - "Psychrobacter_phage_Psymv2" : [ - "NC_023734" - ], - "Hepatitis_C_virus_subtype_4v__HCV_4v_GB_BID_G1249" : [ - "JX227960" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_LBC_LBC2" : [ - "KF385420" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL078A" : [ - "AB985305", - "AB985537" - ], - "Human_adenovirus_55__CQ_1657" : [ - "JX123028" - ], - "JC_polyomavirus__SA_7" : [ - "AB127010" - ], - "Porcine_circovirus_type_1_2a__FMV09_1134568" : [ - "FJ790425" - ], - "Human_papillomavirus_type_11__LP253f" : [ - "HE962367" - ], - "Hepatitis_B_virus__GRE3639NN" : [ - "AB302943" - ], - "Small_begomovirus_associated_satellite__Sa39_S119" : [ - "KJ859154" - ], - "Human_papillomavirus_type_6__39" : [ - "HG793847" - ], - "Feline_immunodeficiency_virus__SR631" : [ - "EF455613" - ], - "Gyrovirus_GyV8__GyV8" : [ - "NC_027430" - ], - "Human_rotavirus_A_US321" : [ - "AJ400641" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_C5" : [ - "KC106651" - ], - "Plum_pox_virus_PPV_D_Hi1" : [ - "AB576052" - ], - "Porcine_circovirus_2_PCV2b_1C_HNYYPC331" : [ - "KP112486" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US24" : [ - "KJ019090" - ], - "Gyrovirus_GyV3_FecGy" : [ - "NC_017091" - ], - "Corynebacterium_halotolerans_YIM_70093___DSM_44683" : [ - "NC_020302", - "NC_020303" - ], - "Watermelon_silver_mottle_virus__Tospo_W" : [ - "NC_003843" - ], - "Ustilaginoidea_virens_RNA_virus_L__GX_1" : [ - "NC_025366" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5508_2010" : [ - "JF937626" - ], - "Ageratum_yellow_vein_virus__F11" : [ - "FJ869908" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0029" : [ - "KP759688" - ], - "Newcastle_disease_virus__CBU2374" : [ - "JX401405" - ], - "Hepatitis_B_virus_99_2" : [ - "KR013882" - ], - "Pseudomonas_phage_phiPSA1" : [ - "NC_024365" - ], - "Human_immunodeficiency_virus_1__96CMABB55" : [ - "AY772535" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD228_2013" : [ - "KM229871" - ], - "Human_herpesvirus_4_HN1" : [ - "AB850643" - ], - "Sida_yellow_vein_alphasatellite__India_Okra_OK1_2013" : [ - "KJ843305" - ], - "Escherichia_coli_BL21_DE3" : [ - "NC_012892" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_P3pp4" : [ - "FJ882953" - ], - "Tobacco_curly_shoot_alphasatellite__Y135" : [ - "AJ579350" - ], - "Myxococcus_xanthus_DK_1622" : [ - "NC_008095" - ], - "Aerococcus_urinae_ACS_120_V_Col10a" : [ - "NC_015278" - ], - "Hepatitis_B_virus__M11" : [ - "GQ924605" - ], - "Rabies_virus_BD06" : [ - "EU549783" - ], - "Marseillevirus_marseillevirus_T19" : [ - "NC_013756" - ], - "Bluetongue_virus_serotype_1_South_Africa__BTV1SA" : [ - "X53740" - ], - "Papaya_leaf_curl_Guangdong_virus____China_Fujian_Euphorbia_2006" : [ - "FJ495184" - ], - "Mesta_yellow_vein_mosaic_virus__India_Balurghat_2008___Balurghat_East_India" : [ - "FJ159266" - ], - "Human_immunodeficiency_virus_1__CH457_w8" : [ - "KC156220" - ], - "Staphylococcus_aureus_71193" : [ - "NC_017673" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5008_brain" : [ - "HQ671685" - ], - "Dengue_virus_2__DENV_2_NI_BID_V620_2005" : [ - "EU482632" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3735_2" : [ - "KM233057" - ], - "SARS_coronavirus_MA15_MA15_d2ym4" : [ - "JF292909" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1853_2007" : [ - "FJ410217" - ], - "Hepatitis_B_virus__D_NZL_AN12_1984" : [ - "HQ700442" - ], - "Porcine_circovirus_2_37_Bhu" : [ - "KM975682" - ], - "Urochloa_streak_virus__USV_NLag1" : [ - "EU445692" - ], - "SARS_coronavirus__HC_GZ_81_03" : [ - "AY545917" - ], - "Canary_polyomavirus__CaPyV_Ha09" : [ - "NC_017085" - ], - "Beet_curly_top_Iran_virus__Siv___Sivand" : [ - "JX082259" - ], - "Avian_paramyxovirus_4_APMV_4_duck_Delaware_549227_2010_Delaware_4" : [ - "NC_019531" - ], - "Dengue_virus_2__DENV_2_US_BID_V1428_1999" : [ - "EU677145" - ], - "Equine_rhinitis_B_virus_2_P313_75" : [ - "AF361253" - ], - "Human_immunodeficiency_virus_1__CM235" : [ - "AF259954", - "AF259955" - ], - "African_cassava_mosaic_virus__MG_MG312A5_10" : [ - "KJ887692" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7637_2011" : [ - "KF973477" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL158A" : [ - "AB985570" - ], - "Sphingopyxis_alaskensis_RB2256" : [ - "NC_008048", - "NC_008036" - ], - "Hepatitis_B_virus_1988_02" : [ - "EU594402" - ], - "Bat_SARS_coronavirus_HKU3_4_HKU3_4" : [ - "GQ153539" - ], - "Human_metapneumovirus__NL_94_01" : [ - "FJ168778" - ], - "Hepatitis_B_virus__Occult_HK526" : [ - "KJ410506" - ], - "Human_mastadenovirus_D_human_USA_Pitts_00114_1992_NEW_P26H56F56" : [ - "KF429747" - ], - "Leucania_separata_nucleopolyhedrovirus_AH1" : [ - "NC_008348" - ], - "African_cassava_mosaic_virus__MG_MG638A4_11" : [ - "KJ888070" - ], - "Duck_egg_drop_syndrome_virus_goose" : [ - "JQ920424" - ], - "Desulfarculus_baarsii_DSM_2075" : [ - "NC_014365" - ], - "Human_adenovirus_14__CHN_2012" : [ - "JX892927" - ], - "Human_poliovirus_1_NIE1118402" : [ - "KJ170455" - ], - "Human_immunodeficiency_virus_1__CH77E_flC3" : [ - "FJ496003" - ], - "Bagaza_virus__Spain_B_2010" : [ - "HQ644144" - ], - "Wheat_dwarf_virus__YNKM08_2" : [ - "KJ536130" - ], - "Hepatitis_B_virus__WY_SD_10" : [ - "JX429913" - ], - "Xenotropic_murine_leukemia_virus__LAPC4" : [ - "JF908816" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0123" : [ - "KP759672" - ], - "Human_immunodeficiency_virus_1__04ZASK168B1" : [ - "AY878058" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus__P3" : [ - "KF446669", - "KF446670" - ], - "Hepatitis_B_virus__D3_4" : [ - "GU815673" - ], - "Hepatitis_B_virus__No11" : [ - "AB697496" - ], - "Human_immunodeficiency_virus_1__97VNAG210" : [ - "FJ185251" - ], - "Bacillus_phage_Page" : [ - "NC_022764" - ], - "Turnip_crinkle_virus__UK" : [ - "AY312063" - ], - "Equid_herpesvirus_1_OH03" : [ - "KF644571" - ], - "Myxoma_virus_6918" : [ - "EU552530" - ], - "Clostridium_phage_phiC2" : [ - "NC_009231" - ], - "Rift_Valley_fever_virus_200803170" : [ - "JF311394", - "JF311376", - "JF311385" - ], - "Bacillus_pseudofirmus_OF4" : [ - "NC_013793", - "NC_013791", - "NC_013792" - ], - "Avian_leukosis_virus_JS09GY3" : [ - "GU982308" - ], - "Human_immunodeficiency_virus_1__15381_1" : [ - "DQ853462" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4259_2007" : [ - "HM181956" - ], - "West_Nile_virus__WNV_1_US_BID_V6639_2007" : [ - "KJ501386" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2688_2006" : [ - "KF921934" - ], - "Human_papillomavirus_type_6__78" : [ - "HG793886" - ], - "Human_papillomavirus_type_11__A346" : [ - "FN870022" - ], - "Duck_hepatitis_A_virus_1_NA" : [ - "GQ130377" - ], - "Human_poliovirus_1__99_056_252_14" : [ - "AF462418" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_573_2008" : [ - "JX221032" - ], - "Brucella_pinnipedialis_B2_94" : [ - "NC_015857", - "NC_015858" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3800" : [ - "KM233081" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C109" : [ - "KJ019140" - ], - "Enterovirus_A71__V09_2225777" : [ - "KC436271" - ], - "Brucella_ceti_TE28753_12" : [ - "NC_022907", - "NC_022908" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3169_2008" : [ - "HQ541790" - ], - "Ageratum_yellow_vein_China_virus____Z1___Z1" : [ - "JX911332" - ], - "Canary_circovirus" : [ - "NC_003410" - ], - "Dengue_virus_2__DENV_2_VN_BID_V719_2006" : [ - "EU482656" - ], - "Coxsackievirus_A15_G_9" : [ - "AF465512" - ], - "Hepatitis_B_virus__M53" : [ - "GQ924631" - ], - "Temperate_fruit_decay_associated_virus__MFBpe11" : [ - "KR134333" - ], - "Beet_black_scorch_virus" : [ - "NC_004452" - ], - "Saimiriine_herpesvirus_2_C488" : [ - "AJ410493" - ], - "Norovirus_Hu_NLV_Oxford_B4S2_2002_UK__Hu_NLV_Oxford_B4S2_2002_UK" : [ - "AY587983" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SX2009" : [ - "FJ895329" - ], - "Hepatitis_B_virus__9401_03738" : [ - "JN792921" - ], - "Western_equine_encephalitis_virus_R02PV002957B" : [ - "KJ554988" - ], - "Rickettsia_montanensis_OSU_85_930" : [ - "NC_017043" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5474_2010" : [ - "JF920408" - ], - "Dengue_virus_1__DENV_1_BR_BID_V2384_2003" : [ - "FJ850077" - ], - "Salmonella_enterica_serovar_Gallinarum_287_91" : [ - "NC_011274" - ], - "BK_polyomavirus__MT_clone_97" : [ - "AB485709" - ], - "Hepatitis_B_virus__ES71_8" : [ - "JF828928" - ], - "Bombyx_mori_nucleopolyhedrovirus_Zhejiang" : [ - "JQ991008" - ], - "Mesorhizobium_opportunistum_WSM2075" : [ - "NC_015675" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD156_2013" : [ - "KM229823" - ], - "Enterobacteria_phage_9g" : [ - "NC_024146" - ], - "Mycobacterium_rhodesiae_NBB3" : [ - "NC_016604" - ], - "Foot_and_mouth_disease_virus___type_O__HKN_20_2010" : [ - "HM229661" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3856_2008" : [ - "GU131692" - ], - "Beak_and_feather_disease_virus__BFDV_DL11B" : [ - "KF768553" - ], - "Gossypium_punctatum_mild_leaf_curl_virus__Gossypium_lobatum___Loba_1B" : [ - "FJ218488" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C33" : [ - "NC_026925" - ], - "Artemisia_virus_A" : [ - "NC_017914" - ], - "Cucumber_mosaic_virus__Tss_In" : [ - "JF279605" - ], - "Sewage_associated_circular_DNA_virus_16__SaCV_16_NZ_BS3759_2012" : [ - "NC_026258" - ], - "Human_mastadenovirus_D__880249C_Hiroshima_1988" : [ - "AB605241" - ], - "Bacillus_phage_SPO1" : [ - "NC_011421" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0147" : [ - "KP759611" - ], - "Dengue_virus_2__MD1520" : [ - "FM210245" - ], - "Clostridium_difficile_M68" : [ - "NC_017175" - ], - "Hepatitis_B_virus__clz2183" : [ - "KC774223" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1652_2007" : [ - "FJ390381" - ], - "Hepatitis_delta_virus_Miyako_JA_M37" : [ - "AB118846" - ], - "Synechococcus_phage_ACG_2014j__Syn7803US103" : [ - "NC_026926" - ], - "Merkel_cell_polyomavirus__MCC350" : [ - "EU375803" - ], - "Hepatitis_B_virus__D3_12" : [ - "GU815669" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA5080_2008" : [ - "KJ672603" - ], - "Pseudomonas_phage_SPM_1" : [ - "NC_023596" - ], - "South_African_cassava_mosaic_virus__MG_MG339A1_10" : [ - "KJ887990" - ], - "TTV_like_mini_virus__D11" : [ - "KF764701" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_14__AHEaCV_14_NZ_3341SG_2012" : [ - "KM874334" - ], - "Listeria_phage_vB_LmoM_AG20" : [ - "NC_020871" - ], - "Escherichia_coli_DH1" : [ - "NC_017625" - ], - "Porcine_circovirus_2__PCV_HZY33" : [ - "KC514998" - ], - "Satsuma_dwarf_virus__FJ" : [ - "GU901210" - ], - "Columbid_circovirus__NJPK_21" : [ - "KJ704804" - ], - "Hepatitis_B_virus__TK73" : [ - "JF754606" - ], - "Human_papillomavirus_type_6b_type_6b__HPV6b" : [ - "NC_001355" - ], - "Duck_hepatitis_B_virus__Puna_teal_hepatitis_B_virus" : [ - "AY494851" - ], - "Foot_and_mouth_disease_virus___type_SAT_2__EGY_3_2012" : [ - "KC440884" - ], - "Rabies_virus__BR_DR1" : [ - "AB519642" - ], - "Hepatitis_B_virus__Ag43" : [ - "KJ843203" - ], - "Porcine_circovirus_2__ZS01" : [ - "KM360054" - ], - "Sewage_associated_circular_DNA_virus_24__SaCV_24_NZ_BS4091_2012" : [ - "NC_026267" - ], - "SARS_coronavirus_TWH__TWH" : [ - "AP006557" - ], - "Louping_ill_virus__LI3_1" : [ - "KP144331" - ], - "Porcine_epidemic_diarrhea_virus_USA_Kansas29_2013" : [ - "KJ645637" - ], - "Dengue_virus_1__DENV_1_NI_BID_V604_2005" : [ - "FJ024478" - ], - "Duck_circovirus__WF0802" : [ - "GU131341" - ], - "Cyanothece_PCC_8801" : [ - "NC_011727", - "NC_011721", - "NC_011726", - "NC_011723" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3665_2007" : [ - "GQ868500" - ], - "BK_polyomavirus__MT_clone_8" : [ - "AB485696" - ], - "Murine_norovirus_GV_NIH_2747_2005_USA_GV_NIH_2747_2005_USA" : [ - "JF320647" - ], - "Streptococcus_mutans_GS_5" : [ - "NC_018089" - ], - "Hepatitis_B_virus__919021" : [ - "JN040797" - ], - "Human_papillomavirus_type_87" : [ - "AJ400628" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K337" : [ - "AJ717583", - "AJ704946" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG619A2_11" : [ - "KJ888061" - ], - "Dengue_virus_2__DENV_2_NI_BID_V4914_2009" : [ - "HQ705624" - ], - "Hepatitis_B_virus__cww1069" : [ - "KC774263" - ], - "Hepatitis_B_virus_468_1" : [ - "KR013926" - ], - "Porcine_circovirus_2_JXIII" : [ - "AY686765" - ], - "Cotton_leaf_curl_Allahabad_virus__India_Karnal_OY81B_2005___OY81B" : [ - "GU112004" - ], - "Hepatitis_B_virus__GU1169" : [ - "GQ161789" - ], - "Bluetongue_virus_10353_03" : [ - "AY775155" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_228_2011" : [ - "KJ686167" - ], - "Hepatitis_B_virus__08D08HCC" : [ - "AB014367" - ], - "Sandfly_fever_Sicilian_virus_I_701735" : [ - "EF201827" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C90" : [ - "NC_026927" - ], - "Spirochaeta_africana_DSM_8902" : [ - "NC_017098" - ], - "Hepatitis_B_virus__clz2051" : [ - "KC774203" - ], - "Human_immunodeficiency_virus_1__00BW0762_1" : [ - "AF443088" - ], - "South_African_cassava_mosaic_virus__MG_MG73A3_06" : [ - "KJ887653" - ], - "Ferrimonas_balearica_DSM_9799" : [ - "NC_014541" - ], - "Cymbidium_mosaic_virus__3" : [ - "EF125180" - ], - "Corynebacterium_diphtheriae_PW8" : [ - "NC_016789" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_44_2013" : [ - "KJ672469" - ], - "Hepatitis_delta_virus_Miyako_JA_M19" : [ - "AB118834" - ], - "Hepatitis_B_virus__S852_7" : [ - "EU589340" - ], - "JC_polyomavirus__HR_13" : [ - "AB048571" - ], - "Human_immunodeficiency_virus_1_subtype_E__CRF01_AE__93JP_NH1" : [ - "AB052995" - ], - "Watermelon_mosaic_virus_Watermelon" : [ - "AB369278" - ], - "Enterovirus_B73__088_SD_CHN_04" : [ - "KF874626" - ], - "Slow_bee_paralysis_virus_Rothamsted" : [ - "NC_014137" - ], - "Gallid_herpesvirus_1_CEO_low_passage" : [ - "JN580317" - ], - "Hepatitis_B_virus_1263_2" : [ - "KR013845" - ], - "Human_immunodeficiency_virus_1__00BW2036_1" : [ - "AF443102" - ], - "Human_bocavirus__CU74W" : [ - "EU262979" - ], - "Rift_Valley_fever_virus_200803164" : [ - "JF311370", - "JF311388", - "JF311379" - ], - "Tomato_leaf_curl_Bangalore_virus__Ban4__LCV_Ban4" : [ - "AF165098" - ], - "Hepatitis_B_virus__07UC" : [ - "AB493845" - ], - "Dengue_virus_2_DENV_2_ID_1127DN_1976" : [ - "GQ398262" - ], - "Cauliflower_mosaic_virus__TUR303" : [ - "AB863190" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8547_2003" : [ - "KJ627733" - ], - "Human_papillomavirus_type_50" : [ - "NC_001691" - ], - "Spinach_curly_top_Arizona_virus__09_10_spinach" : [ - "NC_015051" - ], - "Human_papillomavirus_type_52__Qv18359" : [ - "HQ537750" - ], - "Hepatitis_C_virus_subtype_4f_IFBT88" : [ - "EF589161" - ], - "Squash_leaf_curl_virus__IL3_98" : [ - "KM595121" - ], - "Rat_theilovirus_1" : [ - "EU815052" - ], - "Hepatitis_C_virus_subtype_4r__HCV_4r_GB_BID_G2036" : [ - "JX227976" - ], - "Euphorbia_yellow_mosaic_virus__EuYMV__BR_GO_Luz768b_03" : [ - "JX415185" - ], - "West_Nile_virus__WNV_1_US_BID_V4628_2008" : [ - "HM488241" - ], - "Chlamydophila_pneumoniae_J138" : [ - "NC_002491" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3734_1" : [ - "KM233055" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_209_2011" : [ - "KJ686278" - ], - "Hepatitis_B_virus__C215_9" : [ - "FJ899787" - ], - "Staphylococcus_aureus_ED98" : [ - "NC_013451", - "NC_013450", - "NC_013452", - "NC_013453" - ], - "Human_poliovirus_3_NIE1118535" : [ - "KJ170675" - ], - "Radish_mosaic_virus_California" : [ - "AB456532", - "AB456531" - ], - "Enterococcus_phage_phiFL1C_phiFL1C" : [ - "GQ478083" - ], - "Citrus_tristeza_virus_HA16_5" : [ - "GQ454870" - ], - "Chikungunya_virus_Ross_low_psg" : [ - "HM045811" - ], - "Homalodisca_vitripennis_reovirus__NC12" : [ - "GU384993", - "GU384989", - "GU384985", - "GU384991", - "GU384990", - "GU384983", - "GU384986", - "GU384984", - "GU384988", - "GU384987", - "GU384994", - "GU384992" - ], - "Hepatitis_C_virus_subtype_2m__HCV_2m_CA_BID_G1315" : [ - "JX227968" - ], - "Variola_major_virus_Bangladesh_1975" : [ - "VARCG" - ], - "Hepatitis_B_virus__Ran102" : [ - "EF103281" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0143" : [ - "KP759604" - ], - "Dengue_virus_4_MRS_6169642904_2014" : [ - "KP140942" - ], - "Human_immunodeficiency_virus_1__CTL_035" : [ - "EF514710" - ], - "Beet_necrotic_yellow_vein_virus__F76" : [ - "AF197550", - "AF197549" - ], - "Nienokoue_virus__B51_CI_2004" : [ - "NC_024299" - ], - "Squash_leaf_curl_virus__EG1_2" : [ - "KM595141" - ], - "Murine_type_C_retrovirus" : [ - "NC_001702" - ], - "Crimean_Congo_hemorrhagic_fever_virus__SPU_383_87" : [ - "KJ682816", - "KJ682806", - "KJ682801" - ], - "Hepatitis_B_virus__D_Tonga_BQ3450_2001" : [ - "HQ700583" - ], - "Human_coronavirus_NL63_NL63_human_USA_838_9_1983" : [ - "KF530110" - ], - "Simian_immunodeficiency_virus_SIVmm239_r02019_SIVmm239" : [ - "EU280806" - ], - "Bovine_herpesvirus_4_V_test" : [ - "JN133502" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT45B07_2008" : [ - "JF909246" - ], - "Classical_swine_fever_virus_Shimen_HVRI" : [ - "AY775178" - ], - "Hepatitis_B_virus__dww1058" : [ - "KC774448" - ], - "Infectious_bronchitis_virus_CK_CH_LLN_111169" : [ - "KF411040" - ], - "Porcine_circovirus_2_PCV2SH0822" : [ - "GU450330" - ], - "Human_adenovirus_22_AV_2711" : [ - "FJ619037" - ], - "South_African_cassava_mosaic_virus__MG_MG369A9_11" : [ - "KJ887708" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Punc_alphaB_16" : [ - "EU384651" - ], - "Porcine_circovirus_2_PCV2_P6_70708" : [ - "FJ667593" - ], - "Turnip_mosaic_virus__AllA" : [ - "AB701694" - ], - "Porcine_circovirus_2__HN1_5" : [ - "KC473165" - ], - "Thermotoga_lettingae_TMO" : [ - "NC_009828" - ], - "Human_respiratory_syncytial_virus_01_000312" : [ - "JQ901447" - ], - "Macroptilium_yellow_spot_virus__BR_Sti13_11" : [ - "KJ939871" - ], - "Porcine_circovirus_2__ML2" : [ - "HQ202955" - ], - "Sendai_virus_Moscow" : [ - "KP717417" - ], - "Porcine_circovirus_1_ZY" : [ - "KF732857" - ], - "Wheat_dwarf_virus_barley_strain_Aschersleben_3" : [ - "HG422314" - ], - "Human_poliovirus_1__EGY1218587" : [ - "KJ155495" - ], - "Sugarcane_yellow_leaf_virus__CHN_FJ1" : [ - "GU190159" - ], - "Norovirus_Hu_GII_4_Hokkaido2_2008_JP_Hu_GII_4_Hokkaido2_2008_JP" : [ - "AB541263" - ], - "Porcine_bocavirus__GD6" : [ - "KM402137" - ], - "Porcine_circovirus_2_UFV1" : [ - "KJ187306" - ], - "Muscovy_duck_circovirus__TC2_2002" : [ - "DQ166836" - ], - "Escherichia_coli_P12b" : [ - "NC_017663" - ], - "Hepatitis_B_virus_HB424" : [ - "HM011478" - ], - "Human_papillomavirus_type_6__58" : [ - "HG793866" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_77_2012" : [ - "KJ686256" - ], - "XMRV__S_162" : [ - "FR872816" - ], - "Dragonfly_cyclovirus_1__TO_DFpB3_2010" : [ - "JX185420" - ], - "Fluviicola_taffensis_DSM_16823" : [ - "NC_015321" - ], - "Human_immunodeficiency_virus_1__04ZASK174B1" : [ - "AY901980" - ], - "Hepatitis_B_virus_42128" : [ - "FN545836" - ], - "SARS_coronavirus_MA15_MA15_d2om1" : [ - "HQ890542" - ], - "Simian_immunodeficiency_virus__SIVmus01CM1239" : [ - "EF070330" - ], - "Dengue_virus_3_80_2" : [ - "AF317645" - ], - "Hipposideros_bat_coronavirus_HKU10__SL12A" : [ - "JQ989267" - ], - "Human_poliovirus_3_NIE0918515" : [ - "KJ170673" - ], - "Dictyoglomus_turgidum_DSM_6724" : [ - "NC_011661" - ], - "Hepatitis_B_virus__CAR039" : [ - "AM494693" - ], - "Hepatitis_B_virus__HBV_TH57" : [ - "AB073830" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V68_2004" : [ - "EU155240" - ], - "Plum_pox_virus_D_Cdn_7_2" : [ - "AY953265" - ], - "Hepatitis_B_virus__WHSLI" : [ - "JN257202" - ], - "Newcastle_disease_virus__APMV1_Pigeon_PA_USA_0810_2008" : [ - "KC013038" - ], - "South_African_cassava_mosaic_virus__MG_MG133A4_09" : [ - "KJ887663" - ], - "Onion_yellow_dwarf_virus__OYDV_At" : [ - "JX433020" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US113" : [ - "KJ019077" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Pandarahalli_OY168_2006___OY168" : [ - "GU111990" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_19_2013" : [ - "KJ672483" - ], - "Salmonella_phage_SPN9CC" : [ - "NC_017985" - ], - "Porcine_circovirus_2__S94_0371_1a" : [ - "JX512853" - ], - "West_Nile_virus_Italy_2011_Piave" : [ - "JQ928175" - ], - "Human_immunodeficiency_virus_1__04ZASK182B1" : [ - "AY878054" - ], - "Human_parainfluenza_virus_1_HPIV1_AUS_57_2007" : [ - "KF530205" - ], - "Enterovirus_A71__EV92_07" : [ - "HQ647168" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2813_2007" : [ - "FJ882557" - ], - "Hepatitis_B_virus__DEN6088" : [ - "KF779232" - ], - "Bluetongue_virus_4_GRE2000_01" : [ - "AM900372" - ], - "Shewanella_sp__phage_1_4" : [ - "NC_025436" - ], - "SFTS_virus_HNXY_157_HNXY_157" : [ - "KC292305", - "KC292278" - ], - "Hepatitis_B_virus__26Y08HCC" : [ - "AB014385" - ], - "Human_bocavirus__2012GZ1433" : [ - "KJ684072" - ], - "Nipah_virus__NIVBGD2008MANIKGONJ" : [ - "JN808857" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7673_2012" : [ - "KF973461" - ], - "Gossypium_punctatum_mild_leaf_curl_virus__Dar_6B" : [ - "NC_012120" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_13" : [ - "JQ647464" - ], - "Human_papillomavirus_type_6__89" : [ - "HG793897" - ], - "Wheat_dwarf_virus__SXDT07_3" : [ - "KJ536107" - ], - "Piper_yellow_mottle_virus__PL" : [ - "KJ873043" - ], - "Tobacco_mosaic_virus__Wenxing" : [ - "HE818446" - ], - "Human_immunodeficiency_virus_1__99UGE13613" : [ - "AF484515" - ], - "Hepatitis_B_virus__D95" : [ - "EU939677" - ], - "Yellow_fever_virus_17D_YF_VAX_Vero_adapted_Series_A_P1" : [ - "JN811140" - ], - "Porcine_circovirus_2__755_08_2" : [ - "HQ591377" - ], - "West_Nile_virus__WNV_1_US_BID_V5150_2004" : [ - "JF488094" - ], - "Porcine_circovirus_2__PCV2Izn_89_13" : [ - "KJ729072" - ], - "Cellulophaga_phage_phi48_2_phi48_2" : [ - "NC_021793" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_11676_2001" : [ - "DQ404164" - ], - "Human_rotavirus_A_261_stool" : [ - "AJ236783" - ], - "Hepatitis_C_virus__2005_FU24" : [ - "EU362879" - ], - "Mumps_virus_MuVi_Split_CRO_05_11_G" : [ - "JN635498" - ], - "Urochloa_streak_virus__USV_NOdo" : [ - "EU445695" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3786" : [ - "KM233073" - ], - "Tobacco_mosaic_virus__Wuxi" : [ - "HE818447" - ], - "Magnetospirillum_magneticum_AMB_1" : [ - "NC_007626" - ], - "Murine_hepatitis_virus_Penn_97_1" : [ - "AF208066" - ], - "Mycobacterium_phage_Obama12" : [ - "NC_023577" - ], - "East_African_cassava_mosaic_virus__Uganda1" : [ - "AF230375" - ], - "Chikungunya_virus__LK_EH_CH4408" : [ - "FJ513645" - ], - "Newcastle_disease_virus__GD450_2011" : [ - "KC152048" - ], - "Rickettsia_prowazekii_GvV257" : [ - "NC_017048" - ], - "Norovirus_GII_Hu_JP_2002_GII_P12_GII_13_Saitama_T80__Saitama_T80" : [ - "KJ196276" - ], - "Hepatitis_C_virus_subtype_1b__Whu" : [ - "EU857431" - ], - "Pepper_mottle_virus__PepMoV_Vb" : [ - "AB126033" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_9625_2012" : [ - "KJ415276" - ], - "Macroptilium_yellow_spot_virus__BR_Ced3_11" : [ - "KJ939896" - ], - "Hepatitis_B_virus__blz2088" : [ - "KC774364" - ], - "Hepatitis_B_virus__33Y15HCC" : [ - "AB014392" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4788_2009" : [ - "HM181975" - ], - "Dengue_virus_1__MKS_0398" : [ - "KC762643" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_XJu_1" : [ - "KF815525" - ], - "Murine_norovirus_Guangzhou_K162_09_CHN" : [ - "HQ317203" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00103_2001_G1P_8" : [ - "JN651846", - "JN651854", - "JN651852", - "JN651855", - "JN651847", - "JN651850", - "JN651851", - "JN651856", - "JN651848", - "JN651849", - "JN651853" - ], - "SARS_coronavirus__HC_GZ_32_03" : [ - "AY545918" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Must_alpha_C4D8" : [ - "EU384632" - ], - "Vibrio_phage_Vf33" : [ - "NC_005948" - ], - "Human_coronavirus_OC43__3074A_2012" : [ - "KF923896" - ], - "Rotavirus_G4__Rota_104" : [ - "AB012065" - ], - "Cryptophlebia_leucotreta_granulovirus__CV3" : [ - "NC_005068" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP01297_2012" : [ - "KJ627342" - ], - "Turnip_mosaic_virus_Lu2" : [ - "HQ446216" - ], - "Bean_golden_mosaic_virus__BR_Par26_12" : [ - "KJ939813" - ], - "Bluetongue_virus_8__NIG1982_07" : [ - "AJ586706" - ], - "Hepatitis_B_virus__C2_6" : [ - "GU815632" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_111219" : [ - "KJ435283" - ], - "Human_immunodeficiency_virus_1__04ZASK137B1" : [ - "DQ164105" - ], - "Hepatitis_B_virus__A71b" : [ - "FJ904421" - ], - "Hepatitis_B_virus__bww2163" : [ - "KC774391" - ], - "JC_polyomavirus__UK_1" : [ - "AB048567" - ], - "African_cassava_mosaic_virus__MG_MG78A2_06" : [ - "KJ887897" - ], - "Cucumber_mosaic_virus_Le02_RNA3_CMV_Le02" : [ - "AM114273" - ], - "Corynebacterium_kroppenstedtii_DSM_44385" : [ - "NC_012704" - ], - "Maize_streak_virus__MSV_A_GH_gh140_Kwa_2010" : [ - "KJ699327" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__Tomato_yellow_leaf_curl_Thailand_virus__2" : [ - "NC_000869", - "NC_000870" - ], - "Mycobacterium_phage_Bruns_Bruns" : [ - "NC_023687" - ], - "JC_polyomavirus__JCV183FLC_13" : [ - "JF425500" - ], - "Testudo_hermanni_ranavirus__CH8_96" : [ - "KP266741" - ], - "Helicobacter_pylori_India7" : [ - "NC_017372" - ], - "Bean_golden_mosaic_virus__BR_Par9_12" : [ - "KJ939809" - ], - "Squash_leaf_curl_virus__IL3_106" : [ - "KM595128" - ], - "Canine_distemper_virus__98_2645" : [ - "AY445077" - ], - "Hepatitis_B_virus__SHB718" : [ - "KJ598751" - ], - "Human_immunodeficiency_virus_1__GDDG318" : [ - "JX574662" - ], - "PRRSV_HB_1_sh__2002__HB_1_sh__2002" : [ - "AY150312" - ], - "Hepatitis_B_virus__GZ_XLB" : [ - "DQ448626" - ], - "Human_immunodeficiency_virus_1__04ZASK127B1" : [ - "DQ011172" - ], - "Bordetella_phage_BMP_1" : [ - "NC_005808" - ], - "Human_poliovirus_1__10097c" : [ - "FJ859064" - ], - "Viral_hemorrhagic_septicemia_virus_23_75" : [ - "FN665788" - ], - "Hepatitis_B_virus__JFA4392" : [ - "KF779282" - ], - "Dengue_virus_3__D3BR_SL3_02" : [ - "JF808125" - ], - "Porcine_circovirus_1__Aust_4" : [ - "AY754015" - ], - "Potato_virus_Y__VNP411" : [ - "HG810949" - ], - "Human_poliovirus_1__CHN_Guangdong_92_2__CHN_5157GD92" : [ - "AF111961" - ], - "Human_poliovirus_2_USA0911201" : [ - "GU390707" - ], - "Monkeypox_virus__DRC_07_0120" : [ - "JX878418" - ], - "Hepatitis_B_virus__ADVT_Pt__16" : [ - "AB367802" - ], - "Hepatitis_B_virus__Ran105" : [ - "EF103283" - ], - "Hepatitis_B_virus__J28" : [ - "GQ377527" - ], - "Hepatitis_B_virus_4658_97" : [ - "EU594421" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141397" : [ - "KR653288" - ], - "Hepatitis_B_virus_Ehime11__Iyo_529207" : [ - "AB109479" - ], - "Porcine_circovirus_2_BJ07" : [ - "FJ608540" - ], - "Small_begomovirus_associated_satellite__Sa39_S306" : [ - "KJ859156" - ], - "Rotavirus_A_RVA_Human_tc_USA_DS_1_1976_G2P_4__DS_1" : [ - "HQ650124", - "HQ650121", - "HQ650126", - "HQ650117", - "HQ650125", - "HQ650122", - "HQ650116", - "HQ650123", - "HQ650118", - "HQ650119", - "HQ650120" - ], - "Torque_teno_midi_virus_2__MD2_013" : [ - "NC_014093" - ], - "Rice_black_streaked_dwarf_virus__Ta_m2" : [ - "EU267108" - ], - "JC_polyomavirus_247D" : [ - "AF363833" - ], - "Porcine_circovirus_2_09XJ" : [ - "HQ395046" - ], - "Beak_and_feather_disease_virus__AU_D2C" : [ - "JX049195" - ], - "Porcine_parvovirus_HNZK_1" : [ - "KJ201928" - ], - "Human_papillomavirus_type_18__CU15" : [ - "GQ180791" - ], - "Shigella_phage_Sf6" : [ - "NC_005344" - ], - "Thermococcus_litoralis_DSM_5473" : [ - "NC_022084" - ], - "Tobacco_mosaic_virus__Tor2_L2" : [ - "KF972435" - ], - "Tomato_leaf_curl_Cameroon_alphasatellite__SatA8" : [ - "NC_014747" - ], - "Dengue_virus_4_H780120_DENV_4_ROR7620" : [ - "JQ513341" - ], - "Chicken_anemia_virus__AH4" : [ - "DQ124936" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_Zhejiang_01_2011" : [ - "KJ597825", - "KJ597824", - "KJ597823" - ], - "Human_adenovirus_8__8e" : [ - "AB448769" - ], - "Tomato_leaf_curl_Taiwan_virus__H7_1" : [ - "GU723721" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V218_1993" : [ - "EU862827" - ], - "JC_polyomavirus__CY" : [ - "AB038249" - ], - "Tomato_chlorotic_mottle_virus_Crumple" : [ - "AY090557" - ], - "Porcine_circovirus_2__PCV_HZY35" : [ - "KC515000" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2428_2007" : [ - "GQ868646" - ], - "Hepatitis_B_virus__P44" : [ - "EU859899" - ], - "Eastern_equine_encephalitis_virus_EEEV_Aedes_USA_3756_1998" : [ - "KJ469608" - ], - "Gallid_herpesvirus_2_648a_p101" : [ - "JQ836662" - ], - "Human_immunodeficiency_virus_1_TV002" : [ - "AY162224" - ], - "West_Nile_virus__WNV_1_Gallus_BID_V4960_kidney" : [ - "HQ705677" - ], - "Klebsiella_oxytoca_E718" : [ - "NC_021501", - "NC_018106", - "NC_018107" - ], - "Streptococcus_mutans_UA159" : [ - "NC_004350" - ], - "Malvastrum_yellow_mosaic_alphasatellite__Hn38" : [ - "AM236764" - ], - "Measles_virus_KS" : [ - "HM439386" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00059_2007_G1P_8" : [ - "KC769341", - "KC769343" - ], - "East_African_cassava_mosaic_virus__EACMV_Ybi2_Cm" : [ - "FN435281" - ], - "Hepatitis_B_virus__MMA_12" : [ - "AM421540" - ], - "Chikungunya_virus_LR2006_OPY1" : [ - "DQ443544" - ], - "Hepatitis_B_virus_1263_13" : [ - "KR013842" - ], - "Dengue_virus_2_DENV_2_PR_2DN_1994" : [ - "GQ398270" - ], - "Methanohalophilus_mahii_DSM_5219" : [ - "NC_014002" - ], - "Human_immunodeficiency_virus_1__ML1979" : [ - "EU110091" - ], - "Macaca_fascicularis_papillomavirus_2__Mac191" : [ - "NC_015691" - ], - "Blueberry_scorch_virus__BC_1" : [ - "AY941198" - ], - "JC_polyomavirus__HS" : [ - "AB103421" - ], - "Muscovy_duck_circovirus__MH25" : [ - "EF451157" - ], - "Infectious_bursal_disease_virus_P2_1977_from_Schobries_et_al__1977" : [ - "X84035" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7074_2008" : [ - "KJ189289" - ], - "Human_papillomavirus_type_11__LPX27" : [ - "HE962025" - ], - "Turnip_mosaic_virus__GBR7" : [ - "AB701709" - ], - "Ageratum_enation_virus__TC358" : [ - "KC795968" - ], - "Infectious_bronchitis_virus__SAIBK" : [ - "DQ288927" - ], - "Human_immunodeficiency_virus_1__00BW3970_2" : [ - "AF443114" - ], - "Bhendi_yellow_vein_India_virus__India_Bamanpura_OY150B_2006___OY150B" : [ - "GU112039" - ], - "Cotton_leaf_curl_Bangalore_betasatellite" : [ - "NC_007219" - ], - "Ugandan_cassava_brown_streak_virus__UCBSV__UG_Kab_07" : [ - "HG965222" - ], - "Wheat_dwarf_virus__Spelt9" : [ - "KJ473696" - ], - "Enterobacteria_phage_NC37" : [ - "DQ079889" - ], - "West_Nile_virus__NY_2002_Broome" : [ - "DQ164187" - ], - "Papaya_leaf_curl_China_virus_Guangzhou_isolate__Guangzhou" : [ - "AY650283" - ], - "Porcine_circovirus_2_ZJjh_2" : [ - "FJ870970" - ], - "Human_poliovirus_1_NIE1218351" : [ - "KJ170437" - ], - "Hepatitis_B_virus__G237" : [ - "JQ040169" - ], - "Usutu_virus_V19" : [ - "KJ438710" - ], - "Echovirus_E25_E25_2010_CHN_BJ" : [ - "KJ957190" - ], - "Tomato_mosaic_Havana_virus" : [ - "EF088197" - ], - "JC_polyomavirus__J3_3" : [ - "AB081604" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7443_2009" : [ - "KJ627306" - ], - "Puumala_virus_PUUV_Mg23_HungaryTR17_00" : [ - "FN377822" - ], - "Raoultella_ornithinolytica_B6" : [ - "NC_021066" - ], - "Hepatitis_B_virus__D_Tonga_To29_2004" : [ - "HQ700585" - ], - "Human_papillomavirus_type_35__Qv24860" : [ - "HQ537711" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1709_2007" : [ - "FJ205867" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2911_2006" : [ - "FJ898425" - ], - "Faba_bean_necrotic_stunt_alphasatellite_2__Peshtatuek_12b" : [ - "NC_023880" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V126_1991" : [ - "EU234061" - ], - "Tomato_severe_leaf_curl_virus__NI2" : [ - "AJ508785" - ], - "Enterovirus_A71__01011Y" : [ - "JX017384" - ], - "Hepatitis_B_virus__MY854757" : [ - "KJ803776" - ], - "Human_immunodeficiency_virus_1__04ZASK172B1" : [ - "DQ369998" - ], - "Human_immunodeficiency_virus_2__MDS" : [ - "Z48731" - ], - "Human_immunodeficiency_virus_1__DR6737" : [ - "AB287365", - "AB287364" - ], - "Duck_hepatitis_A_virus_1_GD" : [ - "KM017068" - ], - "Middle_East_respiratory_syndrome_coronavirus__ChinaGD01" : [ - "KT036372" - ], - "Horseshoe_bat_hepatitis_B_virus__HBHBV_GB09_403_Rhi_alc_GAB_2009" : [ - "NC_024444" - ], - "Porcine_circovirus_2_P0404c_03__P0404c_03" : [ - "EU057185" - ], - "Porcine_circovirus_2__India_GN_07" : [ - "GU808525" - ], - "Human_mastadenovirus_C_human_USA_CL_42_1988_5_P5H5F5" : [ - "KF268127" - ], - "Human_immunodeficiency_virus_1__671_00T36" : [ - "AY423387" - ], - "Temperate_fruit_decay_associated_virus__MFB4" : [ - "KJ955447" - ], - "Rift_Valley_fever_virus" : [ - "DQ380182", - "RVFMRNA", - "DQ380213" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9526_2013" : [ - "KJ643572" - ], - "Hepatitis_B_virus__A14" : [ - "FJ904398" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_GR01" : [ - "FJ895883" - ], - "Caulobacter_phage_phiCbK" : [ - "JX163858", - "NC_019405" - ], - "Hepatitis_B_virus__J27" : [ - "GQ377526" - ], - "Escherichia_coli_BW2952" : [ - "NC_012759" - ], - "Dengue_virus_2__DENV_2_US_BID_V1057_1994" : [ - "EU529694" - ], - "Coxsackievirus_B5__17Y" : [ - "JX017382" - ], - "Yellow_fever_virus_17D_Flavimun_WSL" : [ - "JN628280" - ], - "Human_immunodeficiency_virus_1__plwj" : [ - "GU177863" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4813_2009" : [ - "HM756278" - ], - "Mycobacterium_phage_Brujita" : [ - "NC_011291" - ], - "West_Nile_virus" : [ - "CS568918", - "CS543188", - "HM147824", - "CS568917", - "CS568919", - "HM147822", - "HM147823", - "CS568914", - "AY646354", - "CS568916" - ], - "Hepatitis_B_virus__DEN6084" : [ - "KF779231" - ], - "Escherichia_phage_phAPEC8" : [ - "NC_020079" - ], - "Foot_and_mouth_disease_virus___type_O__MAY_1_2004" : [ - "HQ632770" - ], - "Human_papillomavirus_type_45__Qv27565" : [ - "EF202157" - ], - "BK_polyomavirus__APJ" : [ - "LC029413" - ], - "Simian_torque_teno_virus_30__VWP00522_2" : [ - "NC_026663" - ], - "Hepatitis_B_virus_genotype_F_VNZ8351" : [ - "AB036915" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Punc_alpha_5" : [ - "EU384647" - ], - "Hepatitis_C_virus_subtype_4v__HCV_4v_GB_BID_G1248" : [ - "JX227959" - ], - "White_clover_mosaic_virus_O" : [ - "X16636" - ], - "Satellites_of_Trichomonas_vaginalis_T1_virus__T1" : [ - "NC_004048" - ], - "Dengue_virus_1__DV1_SL_2010b" : [ - "JN054255" - ], - "Mycobacterium_phage_Peaches" : [ - "NC_013694" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3980_2008" : [ - "GU131753" - ], - "Chicken_anemia_virus__7" : [ - "KJ728818" - ], - "Propionibacterium_phage_PHL163M00__PHL163M00" : [ - "NC_027405" - ], - "Bacillus_cereus_biovar_anthracis_CI" : [ - "NC_014333", - "NC_014331", - "NC_014335", - "NC_014332" - ], - "Bluetongue_virus_Ardennes" : [ - "KJ872781", - "KJ872782" - ], - "BK_polyomavirus_MON_2" : [ - "AB269847" - ], - "Simian_virus_40_776" : [ - "AF316139" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__ODLAR13" : [ - "FM164730" - ], - "Pantoea_At_9b" : [ - "NC_014841", - "NC_014840", - "NC_014842", - "NC_014837", - "NC_014838", - "NC_014839" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Raichur_OY56_2005___OY56" : [ - "GU111967" - ], - "Tomato_yellow_leaf_curl_virus__Arizona" : [ - "EF210554" - ], - "Hepatitis_B_virus__D_Samoa_Fa_1991" : [ - "HQ700501" - ], - "Tomato_leaf_curl_China_betasatellite__G36T_2" : [ - "AJ704579" - ], - "Hepatitis_B_virus__HBV202" : [ - "KJ647351" - ], - "Human_bocavirus_JPOC06_089" : [ - "AB481074" - ], - "Human_immunodeficiency_virus_1__00IC_10092" : [ - "AJ866553" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_15_2009" : [ - "KF686344" - ], - "Hepatitis_B_virus__J14" : [ - "GQ377518" - ], - "Astrovirus_MLB1__BtnMLB1_40" : [ - "AB823731" - ], - "Ehrlichia_chaffeensis_Arkansas" : [ - "NC_007799" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__LY3" : [ - "EF577267", - "EF577266" - ], - "Hepatitis_B_virus__B45" : [ - "FJ904442" - ], - "Human_immunodeficiency_virus_1__79867" : [ - "GU595158" - ], - "Duck_hepatitis_A_virus_1_C_XNH" : [ - "GU066820" - ], - "Infectious_salmon_anemia_virus__Svolvaer_96" : [ - "AF262381" - ], - "Human_immunodeficiency_virus_1__MERLBDTRC9" : [ - "JN860768" - ], - "Hepatitis_B_virus__I123" : [ - "FJ562270" - ], - "Mycobacterium_phage_Alma_Alma" : [ - "NC_023716" - ], - "Hepatitis_B_virus__HBV_D1" : [ - "AF280817" - ], - "Rabies_virus__JX08_45" : [ - "GU647092" - ], - "Hepatitis_B_virus__S4_3" : [ - "EU916217" - ], - "Hepatitis_B_virus_362_33" : [ - "KR013918" - ], - "Foot_and_mouth_disease_virus___type_O_O1_Argentina_o1argentina_iso5" : [ - "AY593814" - ], - "Melon_aphid_borne_yellows_virus__MABYV_TW1" : [ - "JQ700307" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US110" : [ - "KJ019074" - ], - "JC_polyomavirus__GU_8" : [ - "AB081015" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4872_2009" : [ - "HQ705616" - ], - "Hepatitis_B_virus_1130_9a" : [ - "KR014007" - ], - "West_Nile_virus__WNV_1_US_BID_V7399_2009" : [ - "KJ501111" - ], - "Ageratum_leaf_curl_Cameroon_betasatellite__AGLI4B7" : [ - "FN298806" - ], - "Human_immunodeficiency_virus_1__US3" : [ - "AY173954" - ], - "Middle_East_respiratory_syndrome_coronavirus__KSA_CAMEL_505" : [ - "KJ713295" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7219_2009_A" : [ - "KJ627420" - ], - "Alicycliphilus_denitrificans_BC" : [ - "NC_014908", - "NC_014910", - "NC_014911" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_110529" : [ - "KJ425511" - ], - "Tobacco_mosaic_virus__Guangyuan" : [ - "HE818460" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL129A" : [ - "AB985559", - "AB985326" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_LN2012_42" : [ - "KF887439", - "KF887434", - "KF887444" - ], - "Salmonid_alphavirus_subtype_3__SAV3_1_T_10" : [ - "KC122924" - ], - "Bluetongue_virus_2__IAH_IND2003_01" : [ - "AJ783904" - ], - "Chikungunya_virus__SGEHICHS422808" : [ - "FJ445433" - ], - "Gordil_virus__Dak_ANBr_496d" : [ - "KF297900" - ], - "Squash_leaf_curl_virus__EG2_10" : [ - "KM595149" - ], - "Human_papillomavirus_type_39__Qv25959" : [ - "KC470240" - ], - "Clostera_anachoreta_granulovirus__ClanGV_HBHN" : [ - "NC_015398" - ], - "Tomato_yellow_leaf_curl_virus__Kahnooj" : [ - "EU635776" - ], - "Helicobacter_pylori_OK310" : [ - "NC_020556", - "NC_020509" - ], - "Dengue_virus_2__DENV_2_US_BID_V5412_2007" : [ - "JF730050" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4302_2007" : [ - "GU131943" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4955_1" : [ - "KR105281" - ], - "Porcine_circovirus_2__ISU_31" : [ - "AJ223185" - ], - "Circoviridae_16_LDMD_2013" : [ - "NC_025720" - ], - "Parainfluenza_virus_5_CPI" : [ - "JQ743320", - "JQ743321" - ], - "Dengue_virus_3__DENV_3_US_BID_V2113_2000" : [ - "FJ547078" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI22_12" : [ - "HE979760" - ], - "Maize_streak_virus__MSV_G_Ml_Mic25_1987" : [ - "EU628631" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0064" : [ - "KP759728" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9381_2013" : [ - "KJ643469" - ], - "Porcine_pestivirus_isolate_Bungowannah__Bungowannah" : [ - "NC_023176" - ], - "Civet_SARS_CoV_007_2004__civet007" : [ - "AY572034" - ], - "Oceanimonas_GK1" : [ - "NC_016747", - "NC_016745", - "NC_016746" - ], - "Mycoplasma_mycoides_capri_LC_95010" : [ - "NC_015431", - "NC_015407" - ], - "Lactobacillus_plantarum_P8" : [ - "NC_021226", - "NC_021233", - "NC_021224", - "NC_021225", - "NC_021227", - "NC_021228", - "NC_021234" - ], - "Hepatitis_B_virus__bxa2001" : [ - "KC774403" - ], - "Maize_streak_virus__MSV_A_ZA_Pot5_O28k_1979" : [ - "FJ882133" - ], - "African_cassava_mosaic_virus__CF_CF54AN_07" : [ - "KJ887776" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_La_Digue_SC08AX1_2004" : [ - "JF909154" - ], - "Enterobacteria_phage_phiX174__3C90" : [ - "EF380012" - ], - "Lactococcus_lactis_cremoris_KW2" : [ - "NC_022369" - ], - "Hepatitis_B_virus__HB13_1196" : [ - "AB937796" - ], - "Hepatitis_B_virus__AH2" : [ - "KC836877" - ], - "Brucella_phage_Wb" : [ - "KC556898" - ], - "Mycoplasma_arthritidis_158L3_1" : [ - "NC_011025" - ], - "Hepatitis_delta_virus_dFr2600" : [ - "AM183326" - ], - "Peste_des_petits_ruminants_virus_Izatnagar_94" : [ - "KR140086" - ], - "Hepatitis_B_virus__WHAZI" : [ - "JN257163" - ], - "Human_bocavirus__st1" : [ - "DQ000495" - ], - "Norovirus_Hu_NLV_GII_Neustrelitz260_2000_DE_Hu_NLV_GGII_Neustrelitz260_2000_DE" : [ - "AY772730" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2783_2007" : [ - "GQ199803" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V428_2001" : [ - "EU155322" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_49_23" : [ - "LN846609" - ], - "Ralstonia_phage_RSS0" : [ - "NC_019548" - ], - "Hepatitis_B_virus__J254" : [ - "GQ377641" - ], - "Tomato_leaf_curl_Philippine_betasatellite__Laguna2" : [ - "NC_009570" - ], - "Fragaria_chiloensis_cryptic_virus__NCGR_CFRA_9089" : [ - "NC_009520", - "NC_009521", - "NC_009519" - ], - "Human_mastadenovirus_B_human_DEU_HEIM_00092_1985_NEW_P35H34F7" : [ - "KF268328" - ], - "Enterobacteria_phage_P1__mod1902__IS5_c1_100_rev_dmt_del_MB_mutant" : [ - "AF234173" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Kindia_1047" : [ - "KR534528" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_11" : [ - "JQ647463" - ], - "Porcine_circovirus_2__FJ_4" : [ - "HM776438" - ], - "Velvet_tobacco_mottle_virus_K1" : [ - "NC_014509" - ], - "Mamestra_configurata_nucleopolyhedrovirus_A__90_4" : [ - "AF539999" - ], - "Civet_SARS_CoV_SZ3_2003__SZ3" : [ - "AY304486" - ], - "Hepatitis_B_virus_HBV_P45" : [ - "KC510655" - ], - "Hepatitis_B_virus__S269" : [ - "FJ386662" - ], - "Norovirus_Hu_GI_1_CHA9A004_20110419_2011_USA_Hu_GI_1_CHA9A004_20110419_2011_USA" : [ - "KF039730" - ], - "Pandoravirus_inopinatum__KlaHel" : [ - "NC_026440" - ], - "Agrotis_segetum_nucleopolyhedrovirus_B__English" : [ - "NC_025960" - ], - "Octadecabacter_arcticus_238" : [ - "NC_020909", - "NC_020910", - "NC_020908" - ], - "Cangyuan_orthoreovirus_Cangyuan" : [ - "NC_025808", - "NC_025802", - "NC_025803", - "NC_025805", - "NC_025810", - "NC_025809", - "NC_025801", - "NC_025804", - "NC_025806", - "NC_025807" - ], - "Sugarcane_bacilliform_IM_virus__Ireng_Maleng" : [ - "NC_003031" - ], - "Rabies_virus__RV2417" : [ - "KF154999" - ], - "Squash_leaf_curl_virus__EG2_8" : [ - "KM595147" - ], - "Hepatitis_B_virus__J96" : [ - "GQ377561" - ], - "Salmonella_enterica_serovar_Gallinarum_pullorum_RKS5078" : [ - "NC_016831" - ], - "Human_immunodeficiency_virus_1__04013226_2_flH11" : [ - "FJ496078" - ], - "Hepatitis_B_virus__HBV54" : [ - "KC875322" - ], - "TT_virus_sle1932" : [ - "AM712004" - ], - "Tomato_leaf_curl_Pakistan_virus__Rahim_Yar_Khan_1" : [ - "NC_008299" - ], - "Hepatitis_B_virus__H2252_01" : [ - "FJ882610" - ], - "Hepatitis_B_virus__THB17_LC" : [ - "JN664946" - ], - "Hepatitis_B_virus__HK1048" : [ - "DQ089763" - ], - "Hepatitis_B_virus__S_IDU11" : [ - "EU185786" - ], - "Goose_circovirus__TW4_2001" : [ - "AF536934" - ], - "Human_parechovirus_7_PAK5045" : [ - "EU556224" - ], - "Hepatitis_B_virus__H_IDU7__Rec_Arg_1" : [ - "EU185780" - ], - "Hepatitis_B_virus__MGL79F" : [ - "AB270549" - ], - "Human_immunodeficiency_virus_1__15384_1" : [ - "DQ853463" - ], - "West_Nile_virus_Greece_2013_Xanthi_1" : [ - "KJ883343" - ], - "Nipah_virus__NV_MY_99_VRI_2794" : [ - "AJ564621" - ], - "Deformed_wing_virus__VDV_1_DWV_No_5" : [ - "HM067437" - ], - "Simian_rotavirus_SA_11" : [ - "X66158" - ], - "Canine_distemper_virus_Uy251" : [ - "KM280689" - ], - "Dengue_virus_4__MKS_2007" : [ - "KC762698" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B192_2008" : [ - "GU936295" - ], - "Enterobacteria_phage_phi92_ATCC_35860_B1" : [ - "NC_023693" - ], - "Torque_teno_virus__JA9" : [ - "AF122915" - ], - "Epsilonpapillomavirus_1" : [ - "NC_004195", - "AJ620206" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA121" : [ - "KF670677" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3750_2" : [ - "KM233059" - ], - "Torque_teno_virus__HD13b_gsB20_58" : [ - "FR848326" - ], - "Enterovirus_B98_T92_1499" : [ - "AB426608" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4754_2009" : [ - "JN093514" - ], - "Cucurbit_leaf_crumple_virus" : [ - "NC_002984", - "NC_002985" - ], - "Human_papillomavirus_type_39__Qv28005" : [ - "KC470231" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_CFI1849_2012" : [ - "KJ672618" - ], - "Hepatitis_B_virus__5494" : [ - "JN827422" - ], - "Watermelon_chlorotic_stunt_virus__E" : [ - "KJ854915" - ], - "Human_coronavirus_HKU1__Caen1" : [ - "HM034837" - ], - "JC_polyomavirus_730B" : [ - "AF300955" - ], - "Hepatitis_B_virus__A1_50091" : [ - "FJ692585" - ], - "Turnip_vein_clearing_virus_NZ_587_TP9_271_1" : [ - "JN205074" - ], - "Squash_leaf_curl_virus__JO3_139" : [ - "KM595205" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10HEB_2" : [ - "JQ663552" - ], - "Bluetongue_virus_14__RSArrrr_14" : [ - "AJ586714" - ], - "Enterovirus_C__V2_BEL" : [ - "HQ738286" - ], - "Dengue_virus_3__DENV_3_VE_BID_V907_2001" : [ - "EU529689" - ], - "Methanococcus_vannielii_SB" : [ - "NC_009634" - ], - "Hepatitis_B_virus__KOR22LC" : [ - "GQ475326" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1910_2008" : [ - "FJ461330" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M71" : [ - "KM110942" - ], - "Grapevine_red_blotch_associated_virus__CF214_1" : [ - "NC_022002" - ], - "Human_papillomavirus_type_134__39_65" : [ - "NC_014956" - ], - "Croton_yellow_vein_mosaic_betasatellite_India_Barrackpore3_2008___Barrackpore3" : [ - "GQ183866" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL086A" : [ - "AB985308", - "AB985540" - ], - "Pseudomonas_phage_CHA_P1" : [ - "NC_022974" - ], - "Gallid_herpesvirus_2_648a_p11" : [ - "JQ806361" - ], - "Human_immunodeficiency_virus_1__1013_07" : [ - "AY331288" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2293_2001" : [ - "FJ687447" - ], - "Euphorbia_yellow_mosaic_virus___Goias__Brazil_GO_Sao_Miguel_do_Passa_Quatro_AB403_2002" : [ - "JF756672" - ], - "Prochlorococcus_phage_P_SSM4" : [ - "NC_006884" - ], - "Human_immunodeficiency_virus_1__06KECst_021" : [ - "FJ623477" - ], - "Potato_virus_A_B11_infectious_cDNA_clone" : [ - "NC_004039" - ], - "Chickpea_chlorotic_dwarf_virus_PK_Lod_Gher_MV27B_09" : [ - "HG313782" - ], - "Human_immunodeficiency_virus_1__03HJY8" : [ - "JQ316131" - ], - "Rhodococcus_pyridinivorans_SB3094" : [ - "NC_023144", - "NC_023145", - "NC_023150" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V159_2004" : [ - "EU155229" - ], - "Opitutus_terrae_PB90_1" : [ - "NC_010571" - ], - "Human_poliovirus_1_NIE0918380" : [ - "KJ170486" - ], - "Papaya_leaf_curl_China_virus" : [ - "DQ641700" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7676_2012" : [ - "KF973463" - ], - "Chlamydia_pecorum_P787" : [ - "NC_022441" - ], - "Barley_stripe_mosaic_virus_ND18" : [ - "BSU13917" - ], - "Human_papillomavirus_type_68__Qv30285" : [ - "KC470276" - ], - "Legionella_pneumophila_LPE509" : [ - "NC_020521", - "NC_020522" - ], - "Middle_East_respiratory_syndrome_coronavirus__Hu_Riyadh_KSA_4050_2015" : [ - "KT026456" - ], - "Mycobacterium_phage_Artemis2UCLA" : [ - "NC_022977" - ], - "HBV_genotype_F4__Mart_B24" : [ - "HE974368" - ], - "African_cassava_mosaic_virus__CF_CF361BN_07" : [ - "KJ887631" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3435_2006" : [ - "GU131851" - ], - "Porcine_circovirus_2__JXPX201304" : [ - "KJ437192" - ], - "Newcastle_disease_virus_Blackbird_China_08" : [ - "KC934169" - ], - "Canine_parvovirus_2c__UY82" : [ - "KM457108" - ], - "Hepatitis_B_virus__D_NZL_PA31_1999" : [ - "HQ700474" - ], - "Foot_and_mouth_disease_virus___type_SAT_2_SAT2_1rhod_48_sat2_1rhod_iso26" : [ - "AY593847" - ], - "Torque_teno_sus_virus_1b__TTV2XYF7" : [ - "JX535334" - ], - "Panicum_streak_virus__A_MZ_Nac1" : [ - "GQ415387" - ], - "Hepatitis_E_virus__EChZ20" : [ - "HM439284" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA3621_2008" : [ - "KJ672615" - ], - "Cymbidium_ringspot_virus_satellite_RNA" : [ - "NC_004009" - ], - "Hepatitis_B_virus__Leb36" : [ - "JN642145" - ], - "Canine_parvovirus__Y1" : [ - "PVCY1A" - ], - "Hepatitis_B_virus__RST_PAK_1a" : [ - "KF061167" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7608_2008" : [ - "KJ189339" - ], - "Mammalian_orthoreovirus__SC_A" : [ - "DQ482462", - "EF029088" - ], - "Barley_yellow_dwarf_virus_PAV__012" : [ - "EF521832" - ], - "Mycobacterium_phage_Hamulus" : [ - "NC_022056" - ], - "BK_polyomavirus__SHA_30" : [ - "AB365168" - ], - "Human_papillomavirus_type_16__NG609" : [ - "HQ644252" - ], - "Human_immunodeficiency_virus_1__03YGS3" : [ - "JQ316135" - ], - "Enterovirus_A71_Henan2_09_China" : [ - "GQ994992" - ], - "West_Nile_virus__WNV_1_US_BID_V7823_2011" : [ - "KJ501539" - ], - "Torque_teno_sus_virus_1a__TTV1_SC1" : [ - "JF694116" - ], - "Hepatitis_C_virus__6_TV548" : [ - "KJ567650" - ], - "Equine_rhinitis_B_virus_1_P1436__71" : [ - "NC_003983" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3866_2008" : [ - "GU131701" - ], - "Potato_leafroll_virus_Fr1" : [ - "AF453391" - ], - "Akabane_virus_Okayama2004" : [ - "AB289320", - "AB289323" - ], - "Human_immunodeficiency_virus_1__5155_96" : [ - "AY835753" - ], - "Rubella_virus_BR1" : [ - "AY258322" - ], - "Porcine_circovirus_2_SY" : [ - "HM038028" - ], - "Casuarina_virus__0071" : [ - "NC_023986" - ], - "Human_immunodeficiency_virus_1__5084_86" : [ - "AY835775" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_FR33_2006" : [ - "KM229801" - ], - "Banana_bunchy_top_virus__Bangalore" : [ - "EU046323" - ], - "Tomato_spotted_wilt_virus__CA_6" : [ - "AY744473", - "AY744484" - ], - "Lactobacillus_phage_phiJB" : [ - "NC_022775" - ], - "Cucumber_mosaic_virus_satellite_RNA_T8A" : [ - "X86408" - ], - "Banana_bunchy_top_virus__TOS28" : [ - "JF957660", - "JF957672", - "JF957684", - "JF957636", - "JF957648", - "JF957696" - ], - "Mycobacterium_smegmatis_JS623" : [ - "NC_019966", - "NC_019959", - "NC_019958", - "NC_019957" - ], - "Human_papillomavirus_type_68__Rw900" : [ - "KC470282" - ], - "Human_immunodeficiency_virus_1__99CMU4122" : [ - "AY169815" - ], - "African_swine_fever_virus__Kashino_04_13" : [ - "KJ747406" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus__ES_Mlg_TY73_Pep2003" : [ - "KC953603" - ], - "Lactobacillus_prophage_Lj965" : [ - "NC_005355" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_197_2011" : [ - "KJ686145" - ], - "Human_smacovirus_1__France_12_2008_3454" : [ - "NC_026252", - "KP264967" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_Mahe_SC02B07_2006" : [ - "JF909152" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1081" : [ - "KR534532" - ], - "Feline_coronavirus_UU22_UU22_TCVSP_ROTTIER_00022" : [ - "GU553361" - ], - "Hepatitis_B_virus__E1_5" : [ - "GU815686" - ], - "SARS_coronavirus_ZMY_1" : [ - "AY351680" - ], - "Hepatitis_B_virus__1958_16" : [ - "KR013873" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V32_2004" : [ - "EU256106" - ], - "Sinorhizobium_phage_phiM12" : [ - "NC_027204" - ], - "Hepatitis_B_virus__CHN_QH33" : [ - "DQ478883" - ], - "Middle_East_respiratory_syndrome_coronavirus_Abu_Dhabi_UAE_18_2014" : [ - "KP209307" - ], - "Norovirus_Hu_GII_20373_2010_VNM_Hu_GII_20373_2010_VNM" : [ - "KC409294" - ], - "Porcine_circovirus_2_HX1" : [ - "KJ956690" - ], - "Tomato_spotted_wilt_virus__TSWV_12" : [ - "KC261965", - "KC261966", - "KC261967" - ], - "Human_immunodeficiency_virus_1__04ZASK138B1" : [ - "DQ011168" - ], - "Pantoea_phage_LIMElight" : [ - "NC_019454" - ], - "Tomato_severe_rugose_virus__BR_Vic32_10" : [ - "JX865645" - ], - "Anaplasma_centrale_Israel" : [ - "NC_013532" - ], - "Coxsackievirus_B5__2000_CSF_KOR" : [ - "AY875692" - ], - "Streptococcus_suis_ST3" : [ - "NC_015433" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_GT10_2011" : [ - "KM188456" - ], - "Hepatitis_B_virus__1914" : [ - "FJ386602" - ], - "Maize_streak_virus__MSV_A_ZA_Cat2_D3_2006" : [ - "HQ693407" - ], - "Pseudomonas_phage_vB_PaeM_C2_10_Ab10_Ab10" : [ - "LN610586" - ], - "Hepatitis_B_virus__HK1202" : [ - "KJ410489" - ], - "Porcine_circovirus_2_PCV2_P4" : [ - "FJ667586" - ], - "Human_papillomavirus_type_16__IN272098" : [ - "HQ644250" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_70U80_X_IE" : [ - "KC344458" - ], - "West_Nile_virus__WNV_1_US_BID_V6612_2002" : [ - "KJ501510" - ], - "Mungbean_yellow_mosaic_India_virus_Indonesia__Purwakarta_2" : [ - "JN368442", - "JN368434" - ], - "Turkey_megrivirus_turkey_B407_THV_2011_HUN" : [ - "NC_023858" - ], - "Human_rotavirus_C_Belem" : [ - "X79441" - ], - "Hepatitis_B_virus__bxa1670" : [ - "KC774402" - ], - "Hepatitis_B_virus__He100" : [ - "AY641560" - ], - "Hepatitis_B_virus_28050" : [ - "EU414140" - ], - "Bovine_enterovirus_type_2_BJ001" : [ - "HQ663846" - ], - "Torque_teno_sus_virus_1b__TTSuV2_ZJ" : [ - "KF660540" - ], - "Grapevine_leafroll_associated_virus_3" : [ - "KJ174518", - "JQ796828" - ], - "Bovine_parvovirus_1_Abinanti" : [ - "DQ335247" - ], - "Bat_picornavirus_3_TLC5F" : [ - "NC_015934" - ], - "Zucchini_yellow_mosaic_virus_RDA" : [ - "AB369279" - ], - "Variola_virus_Nepal_1973_V73_175" : [ - "DQ437588" - ], - "Rabies_virus__IMDRV_13" : [ - "KJ564280" - ], - "Araraquara_like_virus_strain_P5_Cajuru_P5_Cajuru" : [ - "EF571895" - ], - "Wolbachia_wRi" : [ - "NC_012416" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0060" : [ - "KP759726" - ], - "Human_immunodeficiency_virus_1__BREPM119" : [ - "AY771590" - ], - "BK_polyomavirus__TW_8" : [ - "AB211385" - ], - "Feline_coronavirus__Black" : [ - "EU186072" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_OR3_2012" : [ - "KF467252" - ], - "Hepatitis_B_virus_6945" : [ - "FJ518813" - ], - "Hendra_virus_HeV_Australia_Human_Female_2008_Redlands" : [ - "JN255805" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pun_beta_13" : [ - "EU384584" - ], - "Enterovirus_A71__EV71_Hun12_10_2012" : [ - "KJ004555" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2005_2007" : [ - "FJ639688" - ], - "Echovirus_E3_OC10_540" : [ - "AB647322" - ], - "Hepatitis_B_virus__HBV_I_017_HIV_HBV" : [ - "KM524350" - ], - "Newcastle_disease_virus__Pi_Rus_Kemerovo_0267_09" : [ - "JF827027" - ], - "Pennisetum_mosaic_virus__AZ5" : [ - "JX070139" - ], - "European_mountain_ash_ringspot_associated_virus__E52905" : [ - "HG799736" - ], - "Synechococcus_JA_3_3Ab" : [ - "NC_007775" - ], - "Cydia_pomonella_granulovirus__CpGV_I12" : [ - "KM217576" - ], - "Hepatitis_B_virus__J141" : [ - "GQ377588" - ], - "Tomato_severe_rugose_virus__BR_Car226_3_08" : [ - "KC004080" - ], - "Rabies_virus_Nishigahara" : [ - "AB044824" - ], - "Hendra_virus_HeV_Australia_Bat_2009_CedarGrove_11c" : [ - "JN255803" - ], - "Porcine_circovirus_2__PCV2_LJR" : [ - "JN388690" - ], - "Tahyna_virus_181_57" : [ - "KF361879" - ], - "Hepatitis_B_virus__PNF5291" : [ - "KF779361" - ], - "Porcine_teschovirus_4__10BJ02" : [ - "JQ975417" - ], - "Newcastle_disease_virus_Du_CH_LFJ_045_2011" : [ - "KM885158" - ], - "Human_herpesvirus_5_BE_27_2010" : [ - "KC519323" - ], - "Hepatitis_B_virus__gib731" : [ - "AJ131570" - ], - "Umatilla_virus__USA1969_01" : [ - "NC_024507", - "NC_024503", - "NC_024510", - "NC_024509", - "NC_024508", - "NC_024506", - "NC_024499", - "NC_024504", - "NC_024500", - "NC_024505" - ], - "Avian_paramyxovirus_8_goose_Delaware_1053_76" : [ - "FJ215863" - ], - "Faba_bean_necrotic_stunt_virus__Samukh_1" : [ - "KC978973", - "KC978971", - "KC978972" - ], - "Chikungunya_virus_GABOPY1" : [ - "KP003812" - ], - "Cowpea_mild_mottle_virus__CPMMV_BR_GO_10_5" : [ - "KC884249" - ], - "Apricot_latent_virus__SB12452" : [ - "HQ339957" - ], - "Dengue_virus_1__DH_S1_05_154" : [ - "JN697057" - ], - "Bluetongue_virus__BTV_16_ISR2001_18_S_6" : [ - "AM773704" - ], - "Human_immunodeficiency_virus_1__03LSH1" : [ - "JQ316127" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1893_2007" : [ - "FJ461328" - ], - "BK_polyomavirus__GBR_12" : [ - "AB263920" - ], - "African_cassava_mosaic_virus__CF_CF92BE_07" : [ - "KJ887611" - ], - "Mycoplasma_genitalium_M2288" : [ - "NC_018498" - ], - "Murine_norovirus_Berlin_04_06_DE_M21" : [ - "DQ911368" - ], - "Porcine_circovirus_2__34464" : [ - "AF264043" - ], - "Ornithobacterium_rhinotracheale_DSM_15997" : [ - "NC_018016" - ], - "African_cassava_mosaic_virus__CF_CF1AN_07" : [ - "KJ887754" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT49A66_2008" : [ - "JF909189" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD154_2013" : [ - "KM229821" - ], - "Human_poliovirus_1__DOR01001C1" : [ - "AF405674" - ], - "Infectious_bronchitis_virus_Massachusetts" : [ - "GQ504724" - ], - "Newcastle_disease_virus__99_1997PR_32" : [ - "AY935497" - ], - "Porcine_circovirus_2__iB2" : [ - "DQ629119" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1505_2007" : [ - "EU660395" - ], - "Human_parechovirus_3__251360" : [ - "GQ183027" - ], - "Hepatitis_B_virus__WY_NNJ_14" : [ - "JX504541" - ], - "Enterobacteria_phage_phiX174__30A90" : [ - "EF380016" - ], - "Plantago_asiatica_mosaic_virus_Li6" : [ - "AB360795" - ], - "Ludwigia_leaf_distortion_betasatellite__In_Var_Pum_08_2" : [ - "HM101174" - ], - "Hepatitis_B_virus__C98" : [ - "HM363568" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda14_05" : [ - "KC706631", - "KC706657" - ], - "Hippeastrum_latent_virus" : [ - "NC_011540" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4258_2007" : [ - "HM181955" - ], - "SARS_coronavirus_GZ02__GZ02" : [ - "AY390556" - ], - "Barley_yellow_dwarf_virus_PAV__064" : [ - "EF521850" - ], - "Cucumber_green_mottle_mosaic_virus__CCMV_TANG" : [ - "HM008919" - ], - "Hepatitis_B_virus__HBVC1" : [ - "JQ688403" - ], - "Human_mastadenovirus_B_human_USA_ak33_AdV3a_2003_3_P3H3F3" : [ - "JX423381" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V260_2004" : [ - "EU255957" - ], - "Hepatitis_B_virus__FEN77" : [ - "JF440010" - ], - "Japanese_encephalitis_virus_HW" : [ - "AY849939" - ], - "Coxsackievirus_A22_ban99_10427" : [ - "DQ995647" - ], - "JC_polyomavirus__JCV135_03" : [ - "JF424836" - ], - "Bat_SARS_CoV_Rm1_2004__Rm1" : [ - "DQ412043" - ], - "Yellow_fever_virus__ArD149194" : [ - "JX898874" - ], - "Hepatitis_B_virus__A85" : [ - "HM363570" - ], - "Squash_leaf_curl_virus__JO3_323" : [ - "KM595212" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_570_2008" : [ - "JX221030" - ], - "Hepatitis_B_virus__IR_IPI_50" : [ - "AY741794" - ], - "Human_immunodeficiency_virus_1_ES_X1702_3" : [ - "FJ670521" - ], - "African_cassava_mosaic_virus__Burkina_Faso_Kamboinse_2008" : [ - "FM877473" - ], - "Hepatitis_B_virus__dxn1035" : [ - "KC774478" - ], - "Toscana_virus_TOSV_Macerata_ITA_1990_1" : [ - "KM275768" - ], - "Cereal_yellow_dwarf_virus_RPV__NY" : [ - "NC_004751" - ], - "Human_papillomavirus_type_31__QV05335" : [ - "HQ537681" - ], - "Japanese_encephalitis_virus_SH0601" : [ - "EF543861" - ], - "TTV_like_mini_virus__D50" : [ - "KF764702" - ], - "Sugarcane_streak_virus_Natal" : [ - "NC_003744" - ], - "Hepatitis_E_virus__CHN_QH_Yak27" : [ - "KF736234" - ], - "Human_herpesvirus_2__HSV_2_JP_BID_G32591_JA7" : [ - "KR135327" - ], - "Hepatitis_B_virus__dww1105" : [ - "KC774457" - ], - "Maize_streak_virus__MSV_A_CF_Bang9_Car47_2008" : [ - "HQ693304" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2746_2007" : [ - "GQ199774" - ], - "Hepatitis_B_virus__202" : [ - "HQ603082" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3495Mb_2002" : [ - "JN989433" - ], - "Human_immunodeficiency_virus_1__02TH_OUR1332" : [ - "AF529573" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_424N2__424N2" : [ - "JN819509" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1914_2008" : [ - "FJ410248" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20145835" : [ - "KR653295" - ], - "Mahella_australiensis_50_1_BON" : [ - "NC_015520" - ], - "Hepatitis_C_virus__811" : [ - "JF735126" - ], - "Tomato_yellow_leaf_curl_virus__Ra3" : [ - "EF051116" - ], - "Human_calicivirus_Hu_NLV_GII_MD145_12_1987_US" : [ - "AY032605" - ], - "Enterovirus_C__V2_Tol_1" : [ - "HQ738303" - ], - "Chikungunya_virus__SGEHICHD13508" : [ - "FJ445511" - ], - "Mycobacterium_phage_MoMoMixon_MoMoMixon" : [ - "NC_023733" - ], - "Beak_and_feather_disease_virus__2NC85B" : [ - "JX049213" - ], - "Hepatitis_B_virus__490_96_3" : [ - "EU872014" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2003_2006" : [ - "FJ744702" - ], - "South_African_cassava_mosaic_virus__MG_MG549A2_11" : [ - "KJ887732" - ], - "Human_immunodeficiency_virus_1__03ZAPS140MB1" : [ - "DQ369981" - ], - "Hepatitis_E_virus__JKS_Shiz07L" : [ - "AB521805" - ], - "Sida_yellow_vein_disease_associated_DNA_1__Y340" : [ - "NC_014065" - ], - "South_African_cassava_mosaic_virus__MG_MG123A5_09" : [ - "KJ887658" - ], - "Ovine_mastadenovirus_A" : [ - "NC_002513" - ], - "Dengue_virus_1__DENV_1_US_BID_V2139_1996" : [ - "FJ410188" - ], - "Yellow_fever_virus__ArD156468" : [ - "JX898876" - ], - "Bean_golden_mosaic_virus__BR_Una4_12" : [ - "KJ939824" - ], - "Hepatitis_B_virus__G247_B5" : [ - "EF134946" - ], - "SARS_coronavirus_HKU_39849_HKU_39849_UOB" : [ - "JQ316196" - ], - "Synechocystis_PCC_6803_substr__GT_I" : [ - "NC_017038" - ], - "Camelus_dromedarius_papillomavirus_type_1" : [ - "NC_015267" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B2J13" : [ - "JN053439" - ], - "Shewanella_ANA_3" : [ - "NC_008577", - "NC_008573" - ], - "Watermelon_mosaic_virus__VE10_099" : [ - "KC292915" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GDQY1VP100" : [ - "JN387274" - ], - "Hepatitis_C_virus__HK38" : [ - "KJ470624" - ], - "Hepatitis_B_virus__EHBV_I_058_HIV_HBV" : [ - "KM524359" - ], - "Garlic_virus_A__WA7" : [ - "JX997952" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3743_2007" : [ - "GQ868528" - ], - "Persimmon_virus_B__variant_1" : [ - "NC_025967" - ], - "Human_bocavirus__KU2" : [ - "GQ925675" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC29AK1_2009" : [ - "JF909104" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V212_1990" : [ - "EU234065" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7644_2012" : [ - "KF973454" - ], - "Wheat_dwarf_virus__SXDT10_2" : [ - "JQ647486" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7658_2012" : [ - "KF973480" - ], - "Coxsackievirus_B3_20" : [ - "AY752946" - ], - "Human_immunodeficiency_virus_1__04CMU11421" : [ - "GU237072" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7674_2011" : [ - "KF973485" - ], - "Hepatitis_B_virus__HBV6" : [ - "KC875276" - ], - "Maize_streak_virus__MSV_A_ZA_New_D9_2006" : [ - "FJ882126" - ], - "Tomato_yellow_leaf_curl_virus__LNBX" : [ - "KJ754187" - ], - "Foot_and_mouth_disease_virus___type_O__IND139_302__2013" : [ - "KJ825803" - ], - "Newcastle_disease_virus_JS_1_02_Du" : [ - "FJ436306" - ], - "Sida_mosaic_Sinaloa_virus__Guasave_Sinaloa" : [ - "NC_008059" - ], - "Dengue_virus_2__DENV_2_NI_BID_V631_2006" : [ - "EU482633" - ], - "Rice_stripe_virus__YYL" : [ - "FM242704", - "FM242706" - ], - "Hepatitis_B_virus__HK926" : [ - "DQ089789" - ], - "Hepatitis_B_virus__C_Tonga_T003_2A" : [ - "HQ700544" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_787" : [ - "KR534522" - ], - "Enterovirus_A71__FY23_K12" : [ - "GU459070" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1589_37987_5" : [ - "KF955453" - ], - "Echovirus_E3_PicoBank_DM1_E3" : [ - "AJ849942" - ], - "Human_respiratory_syncytial_virus_10_053210" : [ - "JX576738" - ], - "FTLS_virus__YPQ133" : [ - "KF356530", - "KF356542", - "KF356518" - ], - "Picrophilus_torridus_DSM_9790" : [ - "NC_005877" - ], - "Tick_borne_encephalitis_virus_KrM_93" : [ - "HM535611" - ], - "Bat_circovirus_POA_2012_II__cluster_II" : [ - "NC_025791" - ], - "JC_polyomavirus__TL_6" : [ - "AB113141" - ], - "Cutthroat_trout_virus__Heenan88" : [ - "NC_015521" - ], - "Potato_virus_M__PVM_Del_144" : [ - "KJ194171" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1675_2007" : [ - "FJ024454" - ], - "Small_begomovirus_associated_satellite__Sa20_S212" : [ - "KJ859144" - ], - "Dengue_virus_2__MKS_2145" : [ - "KC762664" - ], - "Maize_streak_virus___Reunion__N2AR6___N2A" : [ - "AJ224508" - ], - "Duck_hepatitis_A_virus_1_R85952__ATCC_VR_191" : [ - "NC_008250" - ], - "African_horse_sickness_virus_serotype_5_South_African" : [ - "AJ007309" - ], - "Human_coronavirus_OC43_OC43_human_USA_965_6_1996" : [ - "KF530098" - ], - "Hepatitis_B_virus__919007" : [ - "JN040762" - ], - "JC_polyomavirus__CA_8" : [ - "AB126981" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_CAN_32_14_989_1961" : [ - "KJ469595" - ], - "Paspalum_striate_mosaic_virus__AU_1654_2004" : [ - "JQ948065" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4004_2008" : [ - "GU131768" - ], - "Squash_leaf_curl_virus__JO1_162" : [ - "KM595159" - ], - "Hepatitis_C_virus_subtype_1b_MD22" : [ - "AF207763" - ], - "Duck_circovirus__WF0701" : [ - "EU022375" - ], - "Newcastle_disease_virus__Chicken_China_Liaoning_01_2009" : [ - "KC542905" - ], - "Sewage_associated_gemycircularvirus_3__BS4149" : [ - "NC_026168" - ], - "Mokola_virus__86100CAM" : [ - "EU293117" - ], - "Canine_astrovirus_Lincoln_2012_UK" : [ - "KP404150" - ], - "Human_poliovirus_3_NIE1218551" : [ - "KJ170623" - ], - "West_Nile_virus__WNV_1_US_BID_V6497_2005" : [ - "KJ501487" - ], - "West_Nile_virus_T2_HRS_8211TR" : [ - "KJ958922" - ], - "Amycolatopsis_orientalis_HCCB10007" : [ - "NC_021252", - "NC_023497" - ], - "Foot_and_mouth_disease_virus___type_A_Aarg2001_aarg_Trenquelauquen_iso103" : [ - "AY593786" - ], - "Human_immunodeficiency_virus_1__833_62" : [ - "KP718926" - ], - "Enterovirus_E_VG_5_27" : [ - "NC_001859" - ], - "Citrobacter_phage_CR8" : [ - "NC_023548" - ], - "Hepatitis_B_virus__WHBRH2" : [ - "JN257212" - ], - "Human_immunodeficiency_virus_1__5157_83" : [ - "AY835781" - ], - "Chilli_leaf_curl_virus__Th3" : [ - "JN604498" - ], - "WU_Polyomavirus__J1" : [ - "KJ643309" - ], - "West_Nile_virus__WNV_1_US_BID_V6635_2002" : [ - "KJ501384" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_IND_491_97__WBN_117_85" : [ - "AY687334" - ], - "Human_immunodeficiency_virus_1__04013396_0_flG7" : [ - "FJ496084" - ], - "Japanese_encephalitis_virus__YL2009_4" : [ - "JF499789" - ], - "Human_herpesvirus_5_BE_12_2010" : [ - "KP745694" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9214_2010" : [ - "KJ627298" - ], - "Norovirus_Hu_GII_4_Jiangsu1_2011_CHN_Hu_GII_4_Jiangsu1_2011_CHN" : [ - "KC577174" - ], - "Hepatitis_B_virus__919006" : [ - "JN040765" - ], - "Torque_teno_felis_virus__276" : [ - "KM229765" - ], - "Maize_streak_virus__MSV_A_NG_ng6_Bin_2011" : [ - "KJ437663" - ], - "Porcine_circovirus_2_HF1111" : [ - "JX948776" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K212" : [ - "AJ704941", - "AJ717568" - ], - "Human_papillomavirus_type_16__IN000078" : [ - "HQ644247" - ], - "Tobacco_necrosis_virus_A__TNV_A_FM1B" : [ - "NC_001777" - ], - "Candidatus_Rickettsia_amblyommii_GAT_30V" : [ - "NC_017020", - "NC_017028", - "NC_017021", - "NC_017029" - ], - "Japanese_encephalitis_virus_K87P39" : [ - "AY585242" - ], - "Porcine_circovirus_2_PCV2_herd_D" : [ - "EU136720" - ], - "Junin_mammarenavirus_Rumero" : [ - "JN801476", - "AY619641", - "JN801477", - "AY619640" - ], - "Bidens_mottle_virus__B4" : [ - "EU250211" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5006_brain" : [ - "HQ671683" - ], - "Murine_leukemia_virus_PVC_441" : [ - "Y13893" - ], - "Hepatitis_B_virus__HBV_AN29" : [ - "AB049610" - ], - "West_Nile_virus__WNV_1_US_BID_V4198_2001" : [ - "HM488134" - ], - "Duck_circovirus__FC35_2012" : [ - "KC460527" - ], - "Hepatitis_B_virus__A79" : [ - "HM363580" - ], - "Enterovirus_A71_EV71_Henan_106_2009" : [ - "HQ998852" - ], - "Pseudomonas_phage_14_1" : [ - "NC_011703" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD209_2013" : [ - "KM229858" - ], - "Enterobacter_aerogenes_KCTC_2190" : [ - "NC_015663" - ], - "Human_poliovirus_3_NIE0918452" : [ - "KJ170662" - ], - "Rabbit_hemorrhagic_disease_virus_Rossi" : [ - "EF558584" - ], - "Human_immunodeficiency_virus_1_96ZM751" : [ - "AF286225" - ], - "Hepatitis_B_virus__J77" : [ - "GQ377546" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ03B00_2004" : [ - "JF909066" - ], - "East_African_cassava_mosaic_Kenya_virus__Seychelles_La_Digue_SC04AP1_2009" : [ - "JF909227" - ], - "JC_polyomavirus__SL_3" : [ - "AB262399" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_89I_123A_01_1989" : [ - "KJ723474" - ], - "Coxsackievirus_A8__CVA8_SZ157_CHN_2012" : [ - "KM609479" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP4B" : [ - "JN013995" - ], - "Human_immunodeficiency_virus_1__X558" : [ - "AF423760" - ], - "Torque_teno_sus_virus_1a__TTV1Bj7_1" : [ - "HM633250" - ], - "Rickettsia_bellii_OSU_85_389" : [ - "NC_009883" - ], - "BK_polyomavirus__NEC_15" : [ - "AB365145" - ], - "Hepatitis_B_virus__20953" : [ - "AJ627217" - ], - "Lactococcus_phage_KSY1" : [ - "NC_009817" - ], - "Methanothermobacter_thermautotrophicus_Delta_H" : [ - "NC_000916" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B5J15" : [ - "JN053450" - ], - "Porcine_circovirus_2__K13" : [ - "EU450590" - ], - "Beet_western_yellows_virus_BWYV_Otofukke" : [ - "AB903035" - ], - "Human_immunodeficiency_virus_1__21301" : [ - "AF067156" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8485_2001" : [ - "KJ627706" - ], - "Desulfovibrio_piezophilus_C1TLV30" : [ - "NC_020409" - ], - "Porcine_circovirus_2_09SD" : [ - "HQ395042" - ], - "Echovirus_E30_2002_59" : [ - "KP266571" - ], - "Helicobacter_cinaedi_PAGU611" : [ - "NC_017761", - "NC_017762" - ], - "Circoviridae_20_LDMD_2013" : [ - "KF133827" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__0510" : [ - "KF444094" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V446_2006" : [ - "EU482861" - ], - "Human_immunodeficiency_virus_1__X1093_2" : [ - "DQ979025" - ], - "Dengue_virus_1_FGA_NA_a5c" : [ - "EF122232" - ], - "Human_immunodeficiency_virus_1__CH40E_flA3" : [ - "FJ495820" - ], - "Human_poliovirus_2__PV2_4568_1_ISR98" : [ - "AM040035" - ], - "Bacillus_phage_Curly" : [ - "NC_020479" - ], - "Paspalum_striate_mosaic_virus__AU_QG12_2011" : [ - "JQ948066" - ], - "Maize_streak_virus__UMask_25" : [ - "EF547071" - ], - "Bartonella_australis_Aust_NH1" : [ - "NC_020300" - ], - "Enterovirus_A71_TW_96016_08" : [ - "GQ231942" - ], - "Papaya_leaf_curl_China_virus__G8" : [ - "NC_005321" - ], - "African_cassava_mosaic_virus__ACMV__NG_Ll_06" : [ - "EU685320" - ], - "Human_immunodeficiency_virus_1__00NE95" : [ - "AJ508596" - ], - "Hepatitis_B_virus__GU896" : [ - "GQ161771" - ], - "JC_polyomavirus__SO_4" : [ - "AB127015" - ], - "Escherichia_phage_ADB_2_ADB_2" : [ - "NC_019725" - ], - "African_cassava_mosaic_virus__KE_mtw_CMD_MI83_12" : [ - "HG530121" - ], - "Maize_streak_virus__MSV_A_GH_gh112_Sek2_2010" : [ - "KJ699309" - ], - "Tomato_yellow_leaf_curl_virus__SDWF_L3" : [ - "KC999849" - ], - "Rift_Valley_fever_virus_2007000260" : [ - "JF326202", - "JF326188", - "JF326193" - ], - "Human_herpesvirus_5_BE_2_2011" : [ - "KP745652" - ], - "Porcine_circovirus_2_GXHZ_6" : [ - "EF675235" - ], - "Watermelon_mosaic_virus__IR02_54" : [ - "EU660584" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2380_2001" : [ - "FJ913015" - ], - "Mycobacterium_phage_Phaedrus" : [ - "NC_011057" - ], - "Tomato_yellow_leaf_curl_virus__TYLCV_SXYL2" : [ - "KC138545" - ], - "Human_immunodeficiency_virus_1__04ZASK234B1" : [ - "DQ093605" - ], - "Dengue_virus_2__MKS_0091" : [ - "KC762670" - ], - "Vibrio_phage_JA_1" : [ - "NC_021540" - ], - "Maize_streak_virus__MSV_B1_Za_Mil_g128_2006" : [ - "EU628590" - ], - "Pepper_golden_mosaic_virus__Cervantes" : [ - "JN688726" - ], - "Streptococcus_macedonicus_ACA_DC_198" : [ - "NC_016750", - "NC_016749" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_MFF_Before" : [ - "EF535999" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__Y160" : [ - "NC_006632" - ], - "Bovine_parainfluenza_virus_3__TVMDL20" : [ - "KJ647287" - ], - "Simian_virus_12_SA12" : [ - "NC_007611" - ], - "Neisseria_lactamica_020_06" : [ - "NC_014752" - ], - "Usutu_virus_V32" : [ - "KJ438753" - ], - "Hepatitis_B_virus_274_9a" : [ - "KR013906" - ], - "Escherichia_phage_HK578" : [ - "NC_019724" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2011_05_11_14" : [ - "KC862567" - ], - "Hepatitis_B_virus__HBNAT013" : [ - "KJ638657" - ], - "Dendrolimus_punctatus_cypovirus_1_2" : [ - "AY204879", - "AY180908" - ], - "Hepatitis_B_virus__GU1156" : [ - "GQ161757" - ], - "Infectious_pancreatic_necrosis_virus_5B1d" : [ - "AY780918", - "AY780925" - ], - "West_Nile_virus__WNV_1_US_BID_V6653_2003" : [ - "KJ501396" - ], - "Human_papillomavirus_type_6__74" : [ - "HG793882" - ], - "Bluetongue_virus_1__SAD2012" : [ - "KJ577101", - "KJ577102", - "KJ577097", - "KJ577098", - "KJ577103", - "KJ577099", - "KJ577094", - "KJ577100", - "KJ577096" - ], - "Dengue_virus_2__DENV_2_US_BID_V1440_2005" : [ - "EU726770" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_39_2011" : [ - "KJ686147" - ], - "Bovine_leukemia_virus__B19" : [ - "AF257515" - ], - "Porcine_coronavirus_HKU15_PA3148" : [ - "KJ584358" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_8C" : [ - "KM609205" - ], - "Bartonella_quintana_Toulouse" : [ - "NC_005955" - ], - "Iranian_johnsongrass_mosaic_virus__Shz" : [ - "NC_018833" - ], - "Hepatitis_C_virus__QC283" : [ - "JF735115" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V125_1992" : [ - "EU155327" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00087_1987_NEW_P67H28F60" : [ - "KF268320" - ], - "Hepatitis_B_virus__HBV_Amsterdam_2_1994" : [ - "KJ194508" - ], - "Tick_borne_encephalitis_virus_Tomsk_PT14" : [ - "KJ914682" - ], - "Macroptilium_yellow_spot_virus__BR_Sti6_11" : [ - "KJ939864" - ], - "Hepatitis_B_virus__YOGHhbv98" : [ - "AB713531" - ], - "Porcine_epidemic_diarrhea_virus_TC_PC177_P2" : [ - "KM392229" - ], - "Oscillatoria_nigro_viridis_PCC_7112" : [ - "NC_019729", - "NC_019732", - "NC_019764", - "NC_019731", - "NC_019763", - "NC_019730" - ], - "Norovirus_Hu_GI_1_CHA6A003_20091028_2009_USA_Hu_GI_1_CHA6A003_20091028_2009_USA" : [ - "KF039727" - ], - "Enterovirus_A71__V06_2218645" : [ - "KC436267" - ], - "Shewanella_sp__phage_1_44" : [ - "NC_025463" - ], - "Bordetella_phage_BPP_1" : [ - "NC_005357" - ], - "Coxsackievirus_A16_FY18" : [ - "EU812514" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_42_2011" : [ - "KJ686258" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9420_2013" : [ - "KJ643499" - ], - "Hepatitis_B_virus_subtype_adw_AK66" : [ - "AB033556" - ], - "Chickpea_chlorotic_dwarf_virus_L_TM4" : [ - "HE956705" - ], - "Bovine_viral_diarrhea_virus_1_Singer_Arg_Singer" : [ - "DQ088995" - ], - "Yellow_fever_virus_BeH423602" : [ - "JF912183" - ], - "Human_immunodeficiency_virus_1__1006_08" : [ - "AY331284" - ], - "Hipposideros_bat_coronavirus_HKU10__TT3A" : [ - "JQ989266" - ], - "Hepatitis_B_virus__B2_8" : [ - "GU815601" - ], - "Simian_virus_40_H328_H328_1" : [ - "AF316141" - ], - "Hepatitis_B_virus__BR7_CENTRAL" : [ - "KC494399" - ], - "Bromus_associated_circular_DNA_virus_3__BasCV_3_NZ_NZG01_Sef_2012" : [ - "NC_026261" - ], - "Bombyx_mandarina_nucleopolyhedrovirus__S1" : [ - "NC_012672" - ], - "Hepatitis_B_virus__Leb50" : [ - "JN642156" - ], - "Hepatitis_B_virus_Ehi_YY_lam_4_3" : [ - "AB195941" - ], - "Human_immunodeficiency_virus_1__663_13" : [ - "KP718922" - ], - "Sapovirus_Hu_Nagoya_NGY_1_2012_JPN_Hu_SaV_Nagoya_NGY_1_2012_JPN" : [ - "NC_027026" - ], - "Mycobacterium_phage_Spud" : [ - "NC_011270" - ], - "Bean_golden_mosaic_virus__BR_Sag3_12" : [ - "KJ939781" - ], - "Hepatitis_B_virus__SHB63" : [ - "KJ598736" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM124_2" : [ - "KM233046" - ], - "Porcine_circovirus_2__HLJ_10" : [ - "HM776440" - ], - "Dengue_virus_2__DENV_2_US_BID_V1434_2004" : [ - "EU687213" - ], - "Porcine_circovirus_2__INDON07_P09_07_07Lg1" : [ - "EU302140" - ], - "Epirus_cherry_virus__VE450" : [ - "NC_011067", - "NC_011066", - "NC_011065" - ], - "Human_immunodeficiency_virus_1___197" : [ - "AB428554" - ], - "Human_immunodeficiency_virus_1__94CY017_41" : [ - "AF286237" - ], - "Potato_virus_Y_strain_N_Wi_N_Wi_MAF_VOY" : [ - "JQ924286" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8433_2001" : [ - "KJ627683" - ], - "Bluetongue_virus_South_Africa" : [ - "X58064" - ], - "Tobacco_bushy_top_virus_isolate_Baoshan_satellite_like_RNA__Baoshan" : [ - "AF510392" - ], - "West_Nile_virus__WNV_1_US_BID_V6510_2002" : [ - "KJ501333" - ], - "Porcine_circovirus_2_GXHZ_2" : [ - "EF675231" - ], - "Cyanophage_PSS2__PSS2" : [ - "NC_013021" - ], - "Melon_necrotic_spot_virus__MNSV_Al" : [ - "DQ339157" - ], - "Rhinovirus_C__LZY101" : [ - "JF317017" - ], - "African_cassava_mosaic_virus__CF_CF100BE_07" : [ - "KJ887613" - ], - "Avian_leukosis_virus__SD09DP03" : [ - "JN624879" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9415_2013" : [ - "KJ643495" - ], - "Hepatitis_B_virus__patient_P2" : [ - "AY739674", - "AY739675" - ], - "Human_herpesvirus_3_Kel" : [ - "DQ479954" - ], - "Crimean_Congo_hemorrhagic_fever_virus__SPU_431_85" : [ - "KJ682815", - "KJ682812", - "KJ682799" - ], - "Soybean_mosaic_virus_G7H" : [ - "AY294045", - "FJ807700" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_80_2012" : [ - "KJ686130" - ], - "Human_rotavirus_A_RVA_Human_tc_CHN_E566_2007_G3P_8__E566" : [ - "KF371668", - "KF371667", - "KF371671", - "KF371663", - "KF371665", - "KF371664", - "KF371666", - "KF371669" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo209_08" : [ - "KC706559" - ], - "Hepatitis_B_virus__cxa1659" : [ - "KC774303" - ], - "Foot_and_mouth_disease_virus__R_B_45" : [ - "AM503966" - ], - "Human_coronavirus_OC43_OC43_human_USA_873_19_1987" : [ - "KF530083" - ], - "Human_bocavirus__CRD2" : [ - "DQ340570" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_96_014834_1996" : [ - "KJ469602" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C59" : [ - "KJ019038" - ], - "Murine_osteosarcoma_virus" : [ - "NC_001506" - ], - "Dengue_virus_4__DENV_4_US_BID_V2447_1999" : [ - "FJ882600" - ], - "Bean_golden_mosaic_virus__BR_Sag10_12" : [ - "KJ939788" - ], - "Sitiawan_virus" : [ - "JX477686" - ], - "Avian_metapneumovirus_Colorado" : [ - "AY590688" - ], - "Cucurbit_yellow_stunting_disorder_virus__Arizona_1" : [ - "EF547827", - "FJ492808" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V213_1992" : [ - "EU255992" - ], - "Vibrio_phage_ICP1_2006_D" : [ - "HQ641348" - ], - "Human_adenovirus_21_NHRC_32493" : [ - "KJ364574" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2004_1_7_Pl" : [ - "KC862578" - ], - "Turnip_mosaic_virus__AU1" : [ - "AB989628" - ], - "Coxsackievirus_A9_LHY03" : [ - "KP266574" - ], - "Hantaan_virus" : [ - "NC_005218", - "NC_005219" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLU8652_2007" : [ - "KJ672606" - ], - "South_African_cassava_mosaic_virus__MG_MG594A1_11" : [ - "KJ888054" - ], - "Maize_streak_virus__MSV_A_MZ_Chi2_Moz11_2007" : [ - "HQ693343" - ], - "Hepatitis_B_virus__TK29" : [ - "JF754587" - ], - "Parietaria_mottle_virus_CR_8" : [ - "FJ858204", - "FJ858203", - "FJ858202" - ], - "Hepatitis_B_virus__J294" : [ - "GQ377644" - ], - "Hepatitis_B_virus__C_Tonga_To250_2006" : [ - "HQ700576" - ], - "Lettuce_mosaic_virus__CL117" : [ - "KJ161175" - ], - "Hepatitis_B_virus__C2" : [ - "EU939587" - ], - "Mungbean_yellow_mosaic_virus_Soybean_Madurai__Madurai_Tamil_Nadu" : [ - "AJ421642" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP6C" : [ - "JN014006" - ], - "Hepatitis_B_virus__S2a" : [ - "KF584163" - ], - "Tobacco_curly_shoot_betasatellite__Y289" : [ - "AM260734" - ], - "Human_immunodeficiency_virus_1__Ph01full" : [ - "AY818643" - ], - "Human_immunodeficiency_virus_2__MCN13" : [ - "AY509259" - ], - "Tomato_leaf_curl_Bangalore_virus__Ban5__satellite_DNA_beta__Bangalore_5" : [ - "NC_010148" - ], - "Hepatitis_B_virus__cyc1020" : [ - "KC774350" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4051_2008" : [ - "GU131804" - ], - "Porcine_circovirus_2_09BJFS" : [ - "HQ395023" - ], - "Hepatitis_B_virus__S5" : [ - "EU678474" - ], - "Dengue_virus_1__CHN_GuangDong_ZhongShan_Guzhen01_2013" : [ - "KF971870" - ], - "Newcastle_disease_virus__Pigeon_China_BJ2013" : [ - "KJ808819" - ], - "Human_herpesvirus_3__1002_2008" : [ - "JN704697" - ], - "Hepatitis_A_virus__SoloA07_P15" : [ - "AB839696" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_01_2012" : [ - "KJ672484" - ], - "Dengue_virus_1__MKS_0390" : [ - "KC762620" - ], - "Rabies_virus_Shaanxi_HZ_6" : [ - "KC977995" - ], - "South_African_cassava_mosaic_virus__MG_MG142A1_09" : [ - "KJ887670" - ], - "Human_immunodeficiency_virus_1__301905" : [ - "AF067158" - ], - "Human_rhinovirus_A89" : [ - "HRV89" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG178B2_09" : [ - "KJ887944" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G19085_9335_2007_14_2011" : [ - "KR135313" - ], - "Hepatitis_B_virus__490_99_1" : [ - "EU871992" - ], - "Wheat_dwarf_virus__SXHC09_27" : [ - "KJ536140" - ], - "Torque_teno_virus__Kt_10F" : [ - "AB054648" - ], - "Rotavirus_A_RVA_Human_wt_FRA_E10585_2013_G1P_8__RVA_Human_wt_FRA_E10585_2013_G1P_8" : [ - "HG917371" - ], - "Hepatitis_B_virus_362_32" : [ - "KR013917" - ], - "Venezuelan_equine_encephalitis_virus_3880" : [ - "EEVNSPECFA" - ], - "Hepatitis_B_virus__T1245" : [ - "GQ205380" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT45B12_2008" : [ - "JF909186" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1674_2007" : [ - "FJ205877" - ], - "Hepatitis_B_virus__cur1042" : [ - "KC774236" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FLE8323_2010" : [ - "KJ627278" - ], - "Hepatitis_C_virus_subtype_1b__05W" : [ - "EU781832" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2170_1999" : [ - "FJ639742" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_228H5__228H5" : [ - "JN819492" - ], - "Human_poliovirus_1__EGY1218588" : [ - "KJ155496" - ], - "Chikungunya_virus_IbH35" : [ - "HM045786" - ], - "Human_immunodeficiency_virus_1__TZBFL0210_1_2" : [ - "AY237167" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7665_2011" : [ - "KF973483" - ], - "Tomato_severe_rugose_virus__BR_Vic14_09" : [ - "JX865628" - ], - "Enterovirus_A71_KMM_09" : [ - "HQ423142" - ], - "Human_immunodeficiency_virus_1__ZM247F_flE11" : [ - "FJ496201" - ], - "Human_immunodeficiency_virus_1__09YNLC494sg" : [ - "KC898990" - ], - "Okra_leaf_curl_betasatellite__EL32" : [ - "KJ437508" - ], - "WU_Polyomavirus__v367" : [ - "GU296395" - ], - "Beak_and_feather_disease_virus__9IT11" : [ - "KF723390" - ], - "Human_adenovirus_21_NHRC_52331" : [ - "KJ364581" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1891_2007" : [ - "FJ461326" - ], - "Clostridium_difficile_BI1" : [ - "NC_017176", - "NC_017179", - "NC_017177" - ], - "Ross_River_virus_T48" : [ - "GQ433359" - ], - "Hepatitis_B_virus__P9" : [ - "AB493833", - "JX898687" - ], - "Hepatitis_B_virus__EICI_51" : [ - "KF679996" - ], - "Barley_yellow_dwarf_virus_PAV__050" : [ - "EF521847" - ], - "Human_immunodeficiency_virus_1__94UG114" : [ - "U88824" - ], - "Duck_hepatitis_A_virus_3__D11_JW_018" : [ - "JX312194" - ], - "Chikungunya_virus__LK_PB_chik3408" : [ - "GU013528" - ], - "Hepatitis_B_virus__23Y05HCC" : [ - "AB014382" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V278_2003" : [ - "EU155360" - ], - "Soybean_mosaic_virus__LJZ010" : [ - "KP710866" - ], - "Desulfovibrio_alaskensis_G20" : [ - "NC_007519" - ], - "JC_polyomavirus__CW_2" : [ - "AB048579" - ], - "Hepatitis_B_virus__HBV_C6" : [ - "Y18857" - ], - "Hepatitis_B_virus_HBV_P11" : [ - "KC510644" - ], - "Seoul_virus_ZT71" : [ - "EF190551", - "AY750171" - ], - "Sonchus_yellow_net_virus" : [ - "NC_001615" - ], - "Hepatitis_B_virus__CHN_L79" : [ - "AY817514" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0041" : [ - "KP759710" - ], - "Rubella_virus_F_Therien" : [ - "NC_001545" - ], - "Hepatitis_B_virus__Leb41" : [ - "JN642149" - ], - "Ageratum_yellow_vein_virus__Tomato" : [ - "AB100305" - ], - "Merkel_cell_polyomavirus_EurCauC1" : [ - "KF266963" - ], - "Macaca_fuscata_rhadinovirus__3A1" : [ - "JN885136" - ], - "South_African_cassava_mosaic_virus__MG_MG347A1_11" : [ - "KJ887996" - ], - "Beet_western_yellows_ST9_associated_virus_ST9" : [ - "NC_004045" - ], - "Hepatitis_B_virus__patient6" : [ - "AB300364" - ], - "Human_immunodeficiency_virus_1__ZM246F_flB1" : [ - "FJ496189" - ], - "Hepatitis_B_virus__F3_10" : [ - "GU815735" - ], - "Hepatitis_B_virus__J206" : [ - "GQ377621" - ], - "Human_immunodeficiency_virus_1_ES_X845_4" : [ - "FJ670516" - ], - "Tomato_leaf_curl_Philippine_betasatellite__Laguna1" : [ - "AB307732" - ], - "Hepatitis_B_virus_494_8" : [ - "KR013790" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V195_1990" : [ - "EU255983" - ], - "Human_herpesvirus_4_GC1" : [ - "KP735248" - ], - "Chilli_leaf_curl_virus__Sh1" : [ - "JN604491" - ], - "Dehalogenimonas_lykanthroporepellens_BL_DC_9" : [ - "NC_014314" - ], - "Hepatitis_B_virus__HBV73" : [ - "KC875259" - ], - "Human_immunodeficiency_virus_1__04ZASK191B1" : [ - "DQ369993" - ], - "Hepatitis_B_virus__TK39" : [ - "JF754620" - ], - "Hepatitis_B_virus_C0503133_DIL_F" : [ - "AP011108" - ], - "Tomato_spotted_wilt_virus__CA_4" : [ - "AY744471", - "AY744482" - ], - "Plum_pox_virus_D_Cdn_1" : [ - "AY953261" - ], - "Respiratory_syncytial_virus__RSV_USA_BID_V6100" : [ - "JX503100" - ], - "Propionibacterium_phage_Ouroboros" : [ - "NC_027630" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_683_2008" : [ - "JX221035" - ], - "West_Nile_virus__WNV_1_US_BID_V6452_2002" : [ - "KJ501306" - ], - "Torque_teno_virus_8__Kt_08F" : [ - "NC_014084" - ], - "Apple_stem_pitting_virus__YT" : [ - "KF915809" - ], - "Aeromonas_phage_31" : [ - "NC_007022" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_83_2013" : [ - "KM042391" - ], - "Hepatitis_B_virus_1491_17" : [ - "KR014089" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH15_2010" : [ - "KM188444" - ], - "Torque_teno_virus__tth13" : [ - "AJ620232" - ], - "Donggang_virus__DG0909" : [ - "NC_016997" - ], - "TT_virus_sle1957" : [ - "AM711976" - ], - "Mungbean_yellow_mosaic_India_virus____India_Varanasi_Dolichos_2005__Varanasi" : [ - "AY547317" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V231_2003" : [ - "EU255928" - ], - "Hepatitis_B_virus__patient12" : [ - "EU487256", - "AB300370" - ], - "Chickpea_chlorotic_dwarf_virus__mild" : [ - "DQ458791" - ], - "Hepatitis_delta_virus_Tokyo_JA_T" : [ - "AB118847" - ], - "Staphylococcus_phage_phiBU01" : [ - "NC_026016" - ], - "Human_bocavirus__IR_RIGLD_PA5176" : [ - "JF699044" - ], - "Dengue_virus_2__DENV_2_PE_FPI00154_2010" : [ - "KC294203" - ], - "Sida_micrantha_mosaic_virus__Brazil_Mato_grosso_do_sul_2_2007" : [ - "FN436005", - "FN436006" - ], - "Bhendi_yellow_vein_India_virus__India_Karnal_OY80A_2005___OY80A" : [ - "GU112008" - ], - "Hepatitis_delta_virus_dFr_45" : [ - "AJ584844" - ], - "Synechococcus_phage_S_CRM01" : [ - "NC_015569" - ], - "Hepatitis_B_virus__919019" : [ - "JN040767" - ], - "Hepatitis_B_virus__F1_2" : [ - "GU815715" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8313_2001" : [ - "KJ627647" - ], - "Human_rotavirus_A_1125_stool" : [ - "AJ236753" - ], - "Flavobacterium_indicum_GPTSA100_9" : [ - "NC_017025" - ], - "JC_polyomavirus__JCV161FLC_39" : [ - "JF424946" - ], - "Human_enterovirus_Ningbo3_02__Ningbo3_02" : [ - "AY876912" - ], - "Human_immunodeficiency_virus_1__06KECst_008" : [ - "FJ623493" - ], - "Dengue_virus_3__YN02" : [ - "KF824903" - ], - "Porcine_circovirus_2__SF08" : [ - "FJ644932" - ], - "Hepatitis_B_virus__A1_48032" : [ - "FJ692559" - ], - "Hepatitis_B_virus__29Y11HCC" : [ - "AB014388" - ], - "Dengue_virus_2__51347_BR_PE_98" : [ - "JX669485" - ], - "Watermelon_chlorotic_stunt_virus__IL1_25" : [ - "KM820245" - ], - "Bacillus_thuringiensis_MC28" : [ - "NC_018694", - "NC_018689", - "NC_018688", - "NC_018684", - "NC_018685", - "NC_018687", - "NC_018686", - "NC_018693" - ], - "Hepatitis_B_virus__YY003M_e105" : [ - "KJ173334" - ], - "Porcine_circovirus_2__PCV_Y14" : [ - "KC515009" - ], - "Renibacterium_salmoninarum_ATCC_33209" : [ - "NC_010168" - ], - "Dengue_virus_2__DENV_2_VN_BID_V766_2003" : [ - "EU482788" - ], - "Dengue_virus_3_BR_DEN3_RO2_02" : [ - "EF629373" - ], - "Porcine_circovirus_2__GER2" : [ - "AF201306" - ], - "Human_immunodeficiency_virus_1_HIV_1_C18MBC" : [ - "HIV1U37270" - ], - "Dengue_virus_1_D1_SG_05K4183DK1_2005" : [ - "EU081265" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_GT07_2011" : [ - "KM188455" - ], - "Human_immunodeficiency_virus_1_pXJDC6441_2" : [ - "EF420986" - ], - "Monkeypox_virus_Nigeria_SE_1971" : [ - "KJ642617" - ], - "Tomato_leaf_curl_Sudan_virus_Shambat" : [ - "JX483708", - "JX483705", - "JX483704", - "JX483707", - "JX483706" - ], - "Coxsackievirus_A16_YY157" : [ - "KC507895" - ], - "Mycobacterium_phage_Hosp" : [ - "NC_024145" - ], - "Rubella_virus__Anam5_Korea_1996" : [ - "DQ085342" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00099_1986_NEW_P49H46F65" : [ - "KF268332" - ], - "Hepatitis_B_virus__4_D1_5_4" : [ - "GU815649" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP7C" : [ - "JN014000" - ], - "Porcine_circovirus_2__QZ0907" : [ - "GU325759" - ], - "Human_poliovirus_2__VDPV_MAD006" : [ - "AM884185" - ], - "African_cassava_mosaic_virus__CF_CF96BN_07" : [ - "KJ887612" - ], - "Foot_and_mouth_disease_virus___type_A__IND_50_2006" : [ - "HQ832587" - ], - "Synechococcus_phage_S_RIM8_A_HR3_S_RIM8_A_HR3" : [ - "JF974289" - ], - "Foot_and_mouth_disease_virus___type_O__TUR_36_2010" : [ - "JX040492" - ], - "Foot_and_mouth_disease_virus___type_A__IND_43_2006" : [ - "HQ832586" - ], - "Sodalis_phage_phiSG1" : [ - "NC_007902", - "DQ785801" - ], - "Wheat_dwarf_virus____Hebei_Shijiazhuang___HBSJZ06_4" : [ - "EF536864" - ], - "Turnip_mosaic_virus__NSW2" : [ - "KJ936088" - ], - "Human_papillomavirus_type_6__125" : [ - "HG793933" - ], - "Cotton_leaf_curl_Burewala_virus__18" : [ - "EU384571" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__MN9B" : [ - "KP283400" - ], - "Hepatitis_B_virus__J245" : [ - "GQ377635" - ], - "Human_papillomavirus_type_120__SIBX_3a" : [ - "FN598907" - ], - "Pseudomonas_poae_RE_1_1_14" : [ - "NC_020209" - ], - "Hepatitis_B_virus__2061" : [ - "FJ386615" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Po_Okra2" : [ - "FN554532" - ], - "Human_rhinovirus_A71_ATCC_VR_1181" : [ - "FJ445152" - ], - "Segniliparus_rotundus_DSM_44985" : [ - "NC_014168" - ], - "Francisella_tularensis_WY96_3418" : [ - "NC_009257" - ], - "Vesicular_stomatitis_New_Jersey_virus__NJ1184HDB" : [ - "NC_024473" - ], - "Cauliflower_mosaic_virus__JPNUV26" : [ - "AB863165" - ], - "Hollyhock_yellow_vein_mosaic_Islamabad_virus__2YI" : [ - "LM645009" - ], - "Small_begomovirus_associated_satellite__wf_S54" : [ - "KJ859209" - ], - "Dengue_virus_2__DENV_2_NI_BID_V524_2005" : [ - "EU482753" - ], - "Mycoplasma_leachii_99_014_6" : [ - "NC_017521" - ], - "Hepatitis_B_virus__DR074_EP_CHB" : [ - "KM524343" - ], - "Ageratum_leaf_curl_betasatellite__Lucknow" : [ - "JX512904" - ], - "Cherry_rasp_leaf_virus__potato" : [ - "NC_006271" - ], - "Human_papillomavirus_type_201__HPV201" : [ - "NC_027528" - ], - "Methylobacterium_extorquens_AM1" : [ - "NC_012807", - "NC_012811", - "NC_012809", - "NC_012810", - "NC_012808" - ], - "Hepatitis_C_virus__Eg3" : [ - "DQ988074" - ], - "Hepatitis_B_virus__B2_1" : [ - "GU815594" - ], - "Hepatitis_B_virus__SHB617" : [ - "KJ598730" - ], - "Friend_murine_leukemia_virus__FrC6_A8F5" : [ - "D88386" - ], - "Middle_East_respiratory_syndrome_coronavirus__Riyadh_1_2012" : [ - "KF600612" - ], - "Deltapapillomavirus_2" : [ - "NC_001523" - ], - "Dahlia_mosaic_virus" : [ - "NC_018616" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_63_2012" : [ - "KJ686305" - ], - "Pyrolobus_fumarii_1A" : [ - "NC_015931" - ], - "Hipposideros_bat_coronavirus_HKU10__TLC1343A" : [ - "JQ989272" - ], - "West_Nile_virus_Egypt_101" : [ - "EU081844" - ], - "Human_immunodeficiency_virus_1__14189_1" : [ - "DQ853441" - ], - "Dengue_virus_4_ThD4_0017_97" : [ - "AY618989" - ], - "Canine_parvovirus_2c__UY12" : [ - "KM457103" - ], - "Citrus_leaf_blotch_virus__NZ_G78" : [ - "EU857540" - ], - "Tomato_severe_rugose_virus__MG_BR_Pip1696_03" : [ - "JF803260" - ], - "Maize_streak_virus__MSV_A_ZA_Pot6_O29_1979" : [ - "FJ882134" - ], - "Classical_swine_fever_virus_Koslov" : [ - "KF977607", - "KF977609", - "KF977608", - "KF977610" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2657_2000" : [ - "FJ850117" - ], - "Mycobacterium_phage_Graduation" : [ - "NC_022979" - ], - "Mycobacterium_phage_Acadian_Acadian" : [ - "NC_023701" - ], - "African_cassava_mosaic_virus__MG_MG13B10_06" : [ - "KJ887637" - ], - "Methylophaga_JAM1" : [ - "NC_017857" - ], - "Mycoplasma_putrefaciens_Mput9231" : [ - "NC_021083" - ], - "Human_papillomavirus_type_11__LP174" : [ - "HE962023" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8522_2004" : [ - "KJ627721" - ], - "Hepatitis_B_virus__235_01" : [ - "AF405706", - "DQ060830" - ], - "Hepatitis_C_virus__7003_FU24" : [ - "EU362891" - ], - "Hepatitis_B_virus__PAN037" : [ - "GQ358152" - ], - "Burkholderia_phytofirmans_PsJN" : [ - "NC_010679", - "NC_010681", - "NC_010676" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3825_2" : [ - "KM233099" - ], - "Ageratum_enation_virus___Lucknow_Lucknow_Amaranths" : [ - "EU867513" - ], - "Hepatitis_B_virus__cxa1650" : [ - "KC774302" - ], - "Prunus_virus_T__Aze239" : [ - "NC_024686" - ], - "Norovirus_Hu_GII_20144_2009_VNM_Hu_GII_20144_2009_VNM" : [ - "KC409250" - ], - "Porcine_circovirus_2__YL5" : [ - "HQ202972" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2756_2007" : [ - "GQ199780" - ], - "Dengue_virus_2__MD510" : [ - "FM210238" - ], - "TT_virus_sle1931" : [ - "AM712003" - ], - "Okra_yellow_crinkle_Cameroon_alphasatellite_Cameroon_Njo5_OY05" : [ - "HE858193" - ], - "Porcine_circovirus_2_DG" : [ - "AY682993" - ], - "Bluetongue_virus_16_DPP965" : [ - "JQ086233", - "JQ086237", - "JQ086239", - "JQ086231", - "JQ086234", - "JQ086232", - "JQ086235", - "JQ086238", - "JQ086240", - "JQ086236" - ], - "Enterobacteria_phage_phiX174__CGGlo" : [ - "AF299303" - ], - "Kenaf_leaf_curl_virus__YN377" : [ - "HM448898" - ], - "Human_papillomavirus_type_11__JO_RRP_4" : [ - "HE574704" - ], - "Porcine_circovirus_2_NIVS_6" : [ - "HQ378161" - ], - "Japanese_encephalitis_virus__YLG" : [ - "JF706280" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLA6941_2009_A" : [ - "KJ627431" - ], - "Hepatitis_C_virus__7002_FU24" : [ - "EU362890" - ], - "Foot_and_mouth_disease_virus___type_O__UKG_1450_2001" : [ - "FJ542366" - ], - "West_Nile_virus__WNV_1_US_BID_V4104_2005" : [ - "HM488116" - ], - "Endosymbiont_phage_APSE_1" : [ - "NC_000935" - ], - "Gardnerella_vaginalis_HMP9231" : [ - "NC_017456" - ], - "Canine_parvovirus_CPV_N" : [ - "NC_001539" - ], - "Human_immunodeficiency_virus_1__03ZASK233B1" : [ - "DQ351234" - ], - "Dengue_virus_2__DC618Y12" : [ - "KM279532" - ], - "Hepatitis_B_virus__WY_HZ_19" : [ - "JX504534" - ], - "Porcine_circovirus_2__XQ12" : [ - "KJ680364" - ], - "Human_herpesvirus_5_3157" : [ - "GQ221974" - ], - "Human_poliovirus_3_NIE1018506" : [ - "KJ170601" - ], - "Human_immunodeficiency_virus_1__04KJin8_1955" : [ - "DQ295195" - ], - "Hepatitis_B_virus__C1_7" : [ - "GU815624" - ], - "Human_bocavirus__2012GZ1755" : [ - "KJ684076" - ], - "Agrotis_segetum_nucleopolyhedrovirus" : [ - "NC_007921" - ], - "Foot_and_mouth_disease_virus___type_A__IND_109_2006" : [ - "HQ832589" - ], - "Coxsackievirus_B6_LEV15" : [ - "JQ041368" - ], - "BK_polyomavirus__MMR_6" : [ - "AB263929" - ], - "Coxsackievirus_A24_CA24v_Okinawa_20_2011" : [ - "AB769160" - ], - "West_Nile_virus__BSL176_08" : [ - "JF957174" - ], - "Torque_teno_virus__CT25F" : [ - "AB064596" - ], - "Shewanella_sediminis_HAW_EB3" : [ - "NC_009831" - ], - "Fusobacterium_nucleatum_ATCC_25586" : [ - "NC_003454" - ], - "Mycobacterium_phage_Predator" : [ - "NC_011039" - ], - "Beet_curly_top_virus__SLP1" : [ - "EU586260" - ], - "Panicum_streak_virus__F_KE_Nye2_g364" : [ - "GQ415392" - ], - "Ageratum_yellow_vein_virus__NT" : [ - "EF458639" - ], - "Hepatitis_B_virus__HBV013_EP_CHB" : [ - "KM524337" - ], - "Sweet_potato_leaf_curl_Lanzarote_virus__ES_CI_BG27_02" : [ - "EF456746" - ], - "Human_poliovirus_1_CHN8229_3_GZ_CHN_2004" : [ - "FJ769381" - ], - "Newcastle_disease_virus_R2B" : [ - "JX316216" - ], - "Human_immunodeficiency_virus_1__97CNGX_11F" : [ - "AY008718" - ], - "Cucumber_mosaic_virus_satellite_RNA__isolate_1998_China_5" : [ - "AJ236905" - ], - "JC_polyomavirus__SO_2" : [ - "AB127013" - ], - "Watermelon_chlorotic_stunt_virus__IL3_69" : [ - "KM820260" - ], - "Goose_calicivirus_N" : [ - "NC_024078" - ], - "Adeno_associated_virus___2" : [ - "AA2CG", - "NC_001401" - ], - "Sugarcane_mosaic_virus__Guangdong" : [ - "AJ310105" - ], - "West_Nile_virus__WNV_1_US_BID_V6689_2004" : [ - "KJ501525" - ], - "Hepatitis_B_virus__M72" : [ - "GQ924640" - ], - "Hepatitis_B_virus_Ehi_IK_lam_5_3" : [ - "AB195944" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM119" : [ - "KM233042" - ], - "Potato_virus_Y__IUNG_4" : [ - "JF927752" - ], - "Deformed_wing_virus__VDV_1_DWV_No_9" : [ - "HM067438" - ], - "Hepatitis_B_virus__E2_2" : [ - "GU815692" - ], - "Hepatitis_B_virus__B1_10" : [ - "GU815579" - ], - "Bhendi_yellow_vein_India_virus__India_Trichy_OY117_2005___OY117" : [ - "GU112052" - ], - "Chikungunya_virus_IND_06_RJ1" : [ - "EF027137" - ], - "Bovine_parainfluenza_virus_3_Ka" : [ - "AX073600" - ], - "Senecio_yellow_mosaic_virus__G46" : [ - "NC_006995" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_20_2010" : [ - "KF686345" - ], - "Campylobacter_phage_CPX" : [ - "NC_016562" - ], - "Foot_and_mouth_disease_virus___type_O__O1Campos" : [ - "AJ320488" - ], - "Human_immunodeficiency_virus_1__98CMA104" : [ - "AY169802" - ], - "African_cassava_mosaic_virus__CF_CF121BE_07" : [ - "KJ887618" - ], - "Euphorbia_yellow_mosaic_virus___Goias__Brazil_DF_Planaltina_AB5818_2007" : [ - "JF756669" - ], - "South_African_cassava_mosaic_virus__MG_MG44B8_06" : [ - "KJ887647" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5489_2010" : [ - "JF937624" - ], - "Beet_curly_top_virus__MX_P24" : [ - "HQ214016" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9106_2010" : [ - "KJ627303" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4845_2009" : [ - "HQ705620" - ], - "Porcine_circovirus_2_GZ" : [ - "AY682994", - "EF515839", - "AY596822" - ], - "Shimoni_bat_virus__Shimoni" : [ - "NC_025365" - ], - "JC_polyomavirus__NY" : [ - "AB118233" - ], - "Equine_arteritis_virus_HK116" : [ - "EU586274" - ], - "West_Nile_virus__WNV_1_US_BID_V6610_2002" : [ - "KJ501370" - ], - "Maize_streak_virus__MSV_A_MZ_Bil5_Moz6_2007" : [ - "HQ693339" - ], - "Chilli_leaf_curl_virus_Najafgarh2__India_New_Delhi_Papaya_2009___Najafgarh_2" : [ - "HM140370" - ], - "Human_papillomavirus_type_16__Rw918" : [ - "HQ644293" - ], - "Porcine_circovirus_2__1054_Vicenza_15_28_05_2012" : [ - "KP231161" - ], - "Lactobacillus_phage_phiAT3" : [ - "NC_005893" - ], - "Viral_hemorrhagic_septicemia_virus_Hededam" : [ - "Z93412" - ], - "Watermelon_chlorotic_stunt_virus__JO3_621" : [ - "KM820231" - ], - "Human_immunodeficiency_virus_1__263_26" : [ - "KP718914" - ], - "Sorghum_mosaic_virus__Yuhang" : [ - "AJ310198" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PER_IQT3971_1997_ID" : [ - "KC344507" - ], - "Enterovirus_A71__FY23_K14" : [ - "GU459071" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA72" : [ - "KF670668" - ], - "Tobacco_mosaic_virus__TMV_WS06" : [ - "KF280646" - ], - "Hepatitis_B_virus__89" : [ - "EU787439" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V377_2006" : [ - "EU256065" - ], - "Porcine_circovirus_2__Han0_4" : [ - "JQ181590" - ], - "Dengue_virus_2__DENV_2_VI_BID_V2960_2005" : [ - "FJ898453" - ], - "Hepatitis_B_virus__SamsunD87" : [ - "AB674403" - ], - "Dengue_virus_2__DENV_2_TH_BID_V3499_1996" : [ - "GQ868544" - ], - "Hepatitis_B_virus__ZY041027" : [ - "AY800392" - ], - "West_Nile_virus__WNV_1_US_BID_V7494_2011" : [ - "KJ501195" - ], - "Yam_mild_mosaic_virus__ZY_XZ_1" : [ - "KJ125479" - ], - "Nse_virus_F24_CI_2004" : [ - "NC_020901" - ], - "Perinet_virus" : [ - "NC_025394" - ], - "Hepatitis_B_virus__C_Tonga_To426_2007" : [ - "HQ700573" - ], - "Hepatitis_B_virus__IHHD24" : [ - "KJ533386" - ], - "Citrus_tristeza_virus_seedling_yellows_strain_NUagA" : [ - "AB046398" - ], - "Botryotinia_fuckeliana_totivirus_1" : [ - "NC_009224" - ], - "Marine_RNA_virus_JP_A" : [ - "NC_009757" - ], - "Enterobacteria_phage_f1__f1_3_FR" : [ - "JF719734" - ], - "Tomato_leaf_deformation_virus__PA98_1_1" : [ - "JX501502" - ], - "Enterobacteria_phage_HK633" : [ - "NC_019719" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_X_89_42682_X" : [ - "KJ469593" - ], - "Dengue_virus_1__DENV_1_VN_BID_V974_2006" : [ - "EU482518" - ], - "Maize_streak_virus__MSV_A_GH_gh105_Mam_2010" : [ - "KJ699305" - ], - "Norovirus_Hu_GII_4_Toyama5_2008_JP_Hu_GII_4_Toyama5_2008_JP" : [ - "AB541362" - ], - "Black_queen_cell_virus_South_African" : [ - "NC_003784" - ], - "Grapevine_virus_A__PA3" : [ - "AF007415" - ], - "Tobacco_mild_green_mosaic_virus__HN" : [ - "KM596785" - ], - "Hepatitis_B_virus__Ag20" : [ - "KJ843181" - ], - "Hepatitis_B_virus__UdeA_054" : [ - "FJ589066" - ], - "Dengue_virus_3__MKS_WS79b" : [ - "KC762693" - ], - "Murray_Valley_encephalitis_virus__MVE_1_51_P0" : [ - "KC852189" - ], - "Tomato_leaf_curl_Taiwan_virus__KD" : [ - "DQ866130" - ], - "Human_herpesvirus_5_BE_9_2010" : [ - "KC519319" - ], - "Figwort_mosaic_virus" : [ - "NC_003554" - ], - "Hepatitis_B_virus__GU1399" : [ - "GQ161828" - ], - "Mycoplasma_pneumoniae_M129_B7" : [ - "NC_020076" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3830_2007" : [ - "GU131915" - ], - "Human_poliovirus_2_NIE0511436_BAS05_01" : [ - "JX274980" - ], - "Human_poliovirus_1_NIE1218353" : [ - "KJ170498" - ], - "Porcine_circovirus_2_ZJ0701" : [ - "GQ359001" - ], - "Hepatitis_B_virus__4_B24" : [ - "EU570071" - ], - "Human_adenovirus_55_HAdV_B55_XZ2012_492" : [ - "KC857701" - ], - "European_mountain_ash_ringspot_associated_virus__E52283" : [ - "HG799716" - ], - "Beet_necrotic_yellow_vein_virus__F72" : [ - "AF197546", - "AF197545" - ], - "Macroptilium_yellow_spot_virus__BR_Sti11_11" : [ - "KJ939869" - ], - "Porcine_circovirus_2__BG0_2" : [ - "JQ181593" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V116_2002" : [ - "EU255999" - ], - "Porcine_circovirus_2__La_Habana_25" : [ - "FN687844" - ], - "Asparagus_virus_1__DSMZ_PV_0955" : [ - "KJ830761" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7041_2004" : [ - "KJ189262" - ], - "Hepatitis_E_virus_TK15_92" : [ - "AF051830" - ], - "Hepatitis_B_virus__G51" : [ - "FM209515" - ], - "Maize_chlorotic_dwarf_virus_Severe" : [ - "AY362551" - ], - "Hepatitis_B_virus__bba11" : [ - "KP341012" - ], - "Hepatitis_B_virus__ES70_4" : [ - "JF828915" - ], - "Usutu_virus_V53" : [ - "KJ438775" - ], - "Newcastle_disease_virus__duck_China_Guangxi20_2010" : [ - "JX193081" - ], - "Human_mastadenovirus_B_human_DEU_HEIM_00086_X_X_PXHXFX" : [ - "KF633445" - ], - "Hepatitis_B_virus__C_Tonga_To356_2006" : [ - "HQ700570" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1825_2007" : [ - "FJ410209" - ], - "Hepatitis_B_virus_574_12" : [ - "KR013803" - ], - "Hepatitis_C_virus_subtype_4o__HCV_4o_GB_BID_G2039" : [ - "JX227979" - ], - "Mycobacterium_phage_Alvin" : [ - "NC_026583" - ], - "Chilli_ringspot_virus__ChiRSV_HN_14" : [ - "NC_016044" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0059" : [ - "KP759725" - ], - "Rubella_virus__I_11_Israel_1968" : [ - "DQ085338" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SX_1" : [ - "GQ857656" - ], - "Dengue_virus_1__DENV_1_VN_BID_V979_2006" : [ - "EU482523" - ], - "European_mountain_ash_ringspot_associated_virus" : [ - "NC_013106", - "NC_013105", - "NC_013107", - "NC_013108" - ], - "Hepatitis_B_virus__patient_5N" : [ - "EU522068" - ], - "South_African_cassava_mosaic_virus__MG_MG530A2_11" : [ - "KJ888032" - ], - "Maize_streak_virus__MSV_A4_Za_MitC_g129_2006" : [ - "EU628572" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1646_2007" : [ - "FJ182025" - ], - "Human_bocavirus_GZ2011_01" : [ - "JN128954" - ], - "Cucumber_mosaic_virus_satellite_RNA__YNs" : [ - "AF451897" - ], - "Temperate_fruit_decay_associated_virus__MFB10" : [ - "NC_027632" - ], - "JC_polyomavirus__N5" : [ - "AB074588" - ], - "Mycobacterium_phage_Barnyard" : [ - "NC_004689" - ], - "Wheat_dwarf_virus__HBSJZ10_10" : [ - "JQ647470" - ], - "Sphingobacterium_21" : [ - "NC_015277" - ], - "African_cassava_mosaic_virus__MG_MG619B2_11" : [ - "KJ887739" - ], - "Human_adenovirus_61_JPN_2004_5082__P31_H_NEW_F31" : [ - "JF964962" - ], - "Wheat_dwarf_virus__HBSJZ10_21" : [ - "JQ647474" - ], - "Baboon_orthoreovirus" : [ - "NC_015878", - "NC_015886", - "NC_015884", - "NC_015881", - "NC_015882", - "NC_015885", - "NC_015877", - "NC_015879", - "NC_015880", - "NC_015883" - ], - "Tomato_leaf_curl_Yemen_betasatellite__Tih_tom138_05" : [ - "JF919722" - ], - "JC_polyomavirus__JCV161FLC_45" : [ - "JF424952" - ], - "Hepatitis_B_virus__MTB162" : [ - "AY902775" - ], - "Dengue_virus_2_ThNH_7_93" : [ - "AF022434" - ], - "Kenaf_leaf_curl_virus__Y340" : [ - "FN806777" - ], - "Junonia_coenia_densovirus" : [ - "NC_004284", - "A12984" - ], - "Beak_and_feather_disease_virus__BFDV_I_PL_717_2008" : [ - "JX221039" - ], - "Dengue_virus_3_D3_Hu_TL129NIID_2005" : [ - "AB214882" - ], - "Tobacco_streak_virus__okra" : [ - "FJ561303", - "FJ561304", - "FJ561302" - ], - "Hepatitis_B_virus__KOR42HCC" : [ - "GQ475346" - ], - "Maize_streak_virus__MSV_A_LS_Mal1_Les1_2005" : [ - "FJ882095" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2172_1999" : [ - "FJ639744" - ], - "Ilesha_virus_R5964" : [ - "KF234073", - "KF234075" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT14B79_2005" : [ - "JF909172" - ], - "Squash_leaf_curl_China_virus" : [ - "HM566112", - "HM566113", - "AB027465", - "AM709505", - "AM778959" - ], - "Tomato_yellow_leaf_curl_virus__KW3" : [ - "JN604486" - ], - "Enterobacter_aerogenes_EA1509E" : [ - "NC_020180", - "NC_020181", - "NC_020182" - ], - "Bacillus_phage_SPP1" : [ - "NC_004166" - ], - "Hepatitis_C_virus__6_VN139" : [ - "KJ567644" - ], - "Human_immunodeficiency_virus_1__M61" : [ - "DQ854714" - ], - "Bordetella_parapertussis_12822" : [ - "NC_002928" - ], - "Hepatitis_B_virus__252_92_3" : [ - "EU872010" - ], - "Beak_and_feather_disease_virus__7IT09" : [ - "KF723388" - ], - "Thioalkalimicrobium_cyclicum_ALM1" : [ - "NC_015581" - ], - "Hepatitis_B_virus_HB310" : [ - "JQ027316" - ], - "Small_begomovirus_associated_satellite__wf_S38" : [ - "KJ859194" - ], - "Vibriophage_VP4" : [ - "NC_007149" - ], - "Hepatitis_delta_virus_dFr2005" : [ - "AM183331" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20144819" : [ - "KR653299" - ], - "Torque_teno_virus__tth17" : [ - "AJ620221" - ], - "Porcine_circovirus_2_TJ1312" : [ - "KP670420" - ], - "Murray_Valley_encephalitis_virus_OR156_OR156_D10" : [ - "KC852195" - ], - "Cellulophaga_phage_phi3_1_phi3_1" : [ - "KC821630" - ], - "Mycobacterium_phage_Oline_Oline" : [ - "NC_023711" - ], - "Hepatitis_B_virus__919078" : [ - "JN040750" - ], - "Bat_coronavirus_HKU4_3_B07f" : [ - "EF065507" - ], - "Hepatitis_A_virus__td51" : [ - "KP177964" - ], - "Hepatitis_B_virus__HBV_VietF_3" : [ - "AB031266" - ], - "Human_bocavirus__HK8" : [ - "EF450724" - ], - "Hepatitis_B_virus__95" : [ - "JQ040130" - ], - "Cotton_leaf_curl_Gezira_virus__okra_Niger" : [ - "FJ469627", - "FJ469626" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V390_2006" : [ - "EU155266" - ], - "Viral_hemorrhagic_septicemia_virus_MI03GL" : [ - "GQ385941" - ], - "Bluetongue_virus_16_ITL2002" : [ - "KF387530", - "KF387525" - ], - "Beet_necrotic_yellow_vein_virus_C_NM" : [ - "AJ239200", - "AJ239199" - ], - "Human_immunodeficiency_virus_1__HK001" : [ - "DQ234790" - ], - "Equine_rhinitis_A_virus_PERV" : [ - "NC_003982" - ], - "Human_immunodeficiency_virus_1__CAP255_8w_F1" : [ - "GQ999988" - ], - "Porcine_kobuvirus__JS_02a_CHN_2014_China" : [ - "NC_027054" - ], - "JC_polyomavirus__ME_12" : [ - "AB081017" - ], - "Dendrolimus_punctatus_densovirus" : [ - "NC_006555" - ], - "Porcine_circovirus_2__PCV_Y20" : [ - "KC515012" - ], - "Tula_virus_Tula_Moravia_5293Ma_94" : [ - "Z48574" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4234_2006" : [ - "HM181936" - ], - "Hepatitis_B_virus__D88" : [ - "EU939646" - ], - "Tomato_mottle_wrinkle_virus__AR_Pichanal_398_08" : [ - "KM243017", - "KM243019" - ], - "Torque_teno_sus_virus_1b__TTV2Gx3_2" : [ - "HM633231" - ], - "Human_papillomavirus_type_6_Human_papillomavirus_type_6vc" : [ - "AF092932" - ], - "Callitrichine_herpesvirus_3_CJ0149" : [ - "NC_004367" - ], - "Baminivirus__BamiV" : [ - "NC_023850" - ], - "Uncultured_phage_WW_nAnB_strain_2" : [ - "NC_026612" - ], - "Goose_parvovirus_SH" : [ - "JF333590" - ], - "Chloris_striate_mosaic_virus__AU_QG32_2011" : [ - "JQ948082" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1520_2007" : [ - "EU677149" - ], - "Chloroflexus_Y_400_fl" : [ - "NC_012032" - ], - "Duck_hepatitis_B_virus_GD2" : [ - "AY433937" - ], - "Dengue_virus_2__DENV_2_PE_NFI_52_2002" : [ - "KC294222" - ], - "Usutu_virus_3125" : [ - "KJ438708" - ], - "Pantoea_ananatis_LMG_20103" : [ - "NC_013956" - ], - "Human_immunodeficiency_virus_1__C_96BW01B03" : [ - "AF110959" - ], - "Papaya_leaf_curl_China_virus___G4___G4" : [ - "AJ811914" - ], - "Bovine_mastadenovirus_B" : [ - "NC_001876" - ], - "Human_poliovirus_3_NIE1118530" : [ - "KJ170658" - ], - "African_horse_sickness_virus__Westerman" : [ - "KP009785", - "KP009788", - "KP009790", - "KP009784", - "KP009781", - "KP009787", - "KP009789", - "KP009786", - "KP009783" - ], - "Lily_mottle_virus__Sb" : [ - "NC_005288" - ], - "Human_herpesvirus_5_Merlin" : [ - "NC_006273" - ], - "Myxoma_virus_Aust_Corowa_12_52_2A_KM132A" : [ - "KC660080" - ], - "Murine_leukemia_virus_SL3_3" : [ - "AF169256" - ], - "Beak_and_feather_disease_virus__NCF19" : [ - "JX049199" - ], - "Vibrio_phage_11895_B1_11895_B1" : [ - "NC_020843" - ], - "JC_polyomavirus__JCV135_15" : [ - "JF424846" - ], - "Hepatitis_B_virus__FOR2" : [ - "DQ823086" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_201845_2013" : [ - "KM452736" - ], - "Apricot_latent_virus__A18" : [ - "NC_014821" - ], - "Hepatitis_B_virus__JFA3825" : [ - "KF779255" - ], - "BK_polyomavirus__OKN_28" : [ - "AB365151" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1320_2006" : [ - "EU660390" - ], - "Bovine_coronavirus__BCoV_ENT" : [ - "NC_003045" - ], - "Bean_yellow_mosaic_virus__ES69C" : [ - "HG970856" - ], - "Hepatitis_B_virus_FMU018" : [ - "AY206389" - ], - "Human_T_lymphotropic_virus_3_Pyl_43" : [ - "DQ462191" - ], - "Dengue_virus_1__HNRG12188" : [ - "KC692495" - ], - "Hepatitis_B_virus__C3_11" : [ - "GU815635" - ], - "Human_bocavirus__HBov_sh5" : [ - "JN632515" - ], - "Hepatitis_B_virus_MH534978" : [ - "AY220700" - ], - "Acinetobacter_baumannii_MDR_TJ" : [ - "NC_020524", - "NC_017847", - "NC_017848" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1114_2001" : [ - "FJ182015" - ], - "Dengue_virus_3__D3PY_PJ4_03" : [ - "JF808128" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HPBEDV" : [ - "EU236259" - ], - "Staphylococcus_phage_88" : [ - "NC_007063" - ], - "Hepatitis_B_virus__16T01HCC" : [ - "AB014375" - ], - "Legionella_pneumophila_Thunder_Bay" : [ - "NC_021350" - ], - "Sida_micrantha_mosaic_virus_Santaremensis_SiMMV_Santaremensis_BR_780Si4a_08" : [ - "JX415194" - ], - "West_Nile_virus__WNV_1_US_BID_V6465_2005" : [ - "KJ501471" - ], - "Faecal_associated_gemycircularvirus_8__P21" : [ - "NC_025732" - ], - "Rice_stripe_virus__JYC07" : [ - "EU931514", - "EU931516", - "EU931517", - "EU931515" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1822_2007" : [ - "FJ547060" - ], - "Hepatitis_B_virus_468_7" : [ - "KR013935" - ], - "Hepatitis_B_virus__DEN6156" : [ - "KF779245" - ], - "Enterovirus_A71__NUH0075_SIN_08" : [ - "FJ172159" - ], - "JC_polyomavirus__Han_3" : [ - "AB198945" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXM20" : [ - "GQ499193" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir4_T6P_Cuc_07" : [ - "FJ660429" - ], - "Hepatitis_B_virus__Y10" : [ - "GU357846" - ], - "West_Nile_virus__goose_Hungary_03" : [ - "DQ118127" - ], - "Hepatitis_B_virus__C3_9" : [ - "GU815645" - ], - "Human_herpesvirus_5_BE_13_2012" : [ - "KP745707" - ], - "Hepatitis_B_virus__GU932" : [ - "GQ161793" - ], - "Hepatitis_B_virus__BC_NC_AM263" : [ - "HQ700546" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_60_2013" : [ - "KJ672459" - ], - "HCBI8_215_virus__HCBI8_215__I_10E_5" : [ - "NC_024689" - ], - "Bhendi_yellow_vein_India_virus__India_Jalgov_OY127_2006___OY127" : [ - "GU112046" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_8___strain_CPR_3961A__CPR_3961A_AUS1982_06" : [ - "AM745064", - "AM745059", - "AM745066", - "AM745063", - "AM745061", - "AM745058", - "AM745065", - "AM745057", - "AM745062", - "AM745060" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1990_20_1" : [ - "Z75879" - ], - "Seoul_virus_80_39" : [ - "NC_005238", - "NC_005237", - "NC_005236" - ], - "Human_poliovirus_1__DOR00028" : [ - "AF405684" - ], - "Norovirus_Hu_GII_4_Sakai3_2006_JP_Hu_GII_4_Sakai3_2006_JP" : [ - "AB447449" - ], - "Sewage_associated_circular_DNA_virus_17__SaCV_17_NZ_BS4236_2012" : [ - "NC_026259" - ], - "Hepatitis_B_virus__SHB44" : [ - "KJ598682" - ], - "Simian_immunodeficiency_virus_SIVmac239_80035" : [ - "AY611486" - ], - "Beet_curly_top_Iran_virus__IR_Kav_B22K_Sug_08" : [ - "JQ707941" - ], - "Human_poliovirus_2_NIE1018423" : [ - "KJ170543" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20144837" : [ - "KR653259" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143187" : [ - "KR653298" - ], - "Helicobacter_pylori_Shi169" : [ - "NC_017740" - ], - "Classical_swine_fever_virus_Shimen" : [ - "AF092448" - ], - "Human_immunodeficiency_virus_1__Cu100" : [ - "AY586546" - ], - "Porcine_circovirus_2__SG11" : [ - "KJ680340" - ], - "Croton_yellow_vein_mosaic_betasatellite" : [ - "HQ631430", - "NC_008579", - "EF597245", - "JX270685" - ], - "Bean_golden_mosaic_virus__BR_Pai10_11" : [ - "KJ939746" - ], - "Amapari_mammarenavirus_BeAn_70563" : [ - "NC_010251", - "NC_010247" - ], - "Human_immunodeficiency_virus_1__CH067_TF" : [ - "KC156125" - ], - "Human_immunodeficiency_virus_1__04CM_632_28" : [ - "DQ845387" - ], - "Hepatitis_B_virus__1377_SE_BRA" : [ - "KJ854687" - ], - "Zaliv_Terpenia_virus_LEIV_13841Ka" : [ - "KF767463", - "KF767464", - "KF767465" - ], - "Hepatitis_delta_virus_Miyako_JA_M17" : [ - "AB118832" - ], - "Chikungunya_virus_Thailand_2009_CK257" : [ - "KJ796851" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0033" : [ - "KP759692" - ], - "JC_polyomavirus__UR_8" : [ - "AB198941" - ], - "Listeria_monocytogenes_SLCC2378" : [ - "NC_018585" - ], - "Chlamydia_trachomatis_L2_434_Bu_f" : [ - "NC_021049", - "NC_021052" - ], - "West_Nile_virus__WNV_1_US_BID_V6554_2003" : [ - "KJ501353" - ], - "Human_immunodeficiency_virus_1__00BW2087_2" : [ - "AF443104" - ], - "Human_herpesvirus_5_Merlin_RCMV1111" : [ - "KM192298" - ], - "Rice_stripe_virus__YWS" : [ - "FM242703", - "FM242705" - ], - "Enterovirus_A71_HCM84_VNM_2011" : [ - "KC296444" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SD01_08" : [ - "DQ489311" - ], - "Dengue_virus_2__DENV_2_US_BID_V1397_1997" : [ - "EU569715" - ], - "Hepatitis_B_virus_419_9" : [ - "KR013786" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1657_2007" : [ - "FJ182003" - ], - "Borrelia_garinii_NMJW1" : [ - "NC_018747" - ], - "Rhinolophus_bat_coronavirus_HKU2_HKU2_HK_298_2006" : [ - "EF203066" - ], - "Human_bocavirus__HZ1403" : [ - "KP710213" - ], - "Meleagris_gallopavo_enteric_parvovirus__TuPV_1030" : [ - "KM598418" - ], - "Human_mastadenovirus_B_human_USA_ak34_AdV3a2_2008_3_P3H3F3" : [ - "JX423382" - ], - "Human_enteric_coronavirus_strain_4408_4408" : [ - "NC_012950" - ], - "Luffa_puckering_and_leaf_distortion_associated_DNA_beta" : [ - "NC_007459" - ], - "Hepatitis_C_virus_subtype_1b_HC_J4_pCV_J4L6S" : [ - "AF054247" - ], - "Newcastle_disease_virus__NDV_4_chicken_Namakkal_Tamil_Nadu_India" : [ - "HM357251" - ], - "Middle_East_respiratory_syndrome_coronavirus__Camel_Qatar_2_2014" : [ - "KJ650098" - ], - "Hepatitis_B_virus__CONTROL9" : [ - "JQ801502" - ], - "Duck_hepatitis_B_virus__27" : [ - "AY250904" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_SCC_06_854" : [ - "KF385414" - ], - "Pseudomonas_phage_MR299_2" : [ - "JN254801" - ], - "Bacteroides_fragilis_NCTC_9343" : [ - "NC_006873", - "NC_003228" - ], - "Porcine_circovirus_1_SD_73_3" : [ - "KJ746930" - ], - "Circoviridae_17_LDMD_2013" : [ - "NC_025721" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C7" : [ - "KJ019052" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1747_2008" : [ - "FJ390395" - ], - "KI_polyomavirus__CU_258" : [ - "EU358767" - ], - "Streptococcus_dysgalactiae_equisimilis_RE378" : [ - "NC_018712" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Fazilka1_2010" : [ - "JF502386" - ], - "South_African_cassava_mosaic_virus__MG_MG404A1_11" : [ - "KJ888007" - ], - "Enterobacteria_phage_mEpX1" : [ - "NC_019709" - ], - "Norovirus_Hu_GII_4_Akita1_2006_JP_Hu_GII_4_Akita1_2006_JP" : [ - "AB447436" - ], - "Hepatitis_B_virus_1130_18a" : [ - "KR014000" - ], - "Human_bocavirus__TW3003_06" : [ - "EU984239" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_APRRS" : [ - "GQ330474" - ], - "Porcine_circovirus_2__LN_19" : [ - "HM776448" - ], - "Hepatitis_C_virus__QC78" : [ - "KJ439770" - ], - "Enterovirus_A71__UH1_PM_1997" : [ - "AM396587" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9382_2013" : [ - "KJ643470" - ], - "Rhodococcus_phage_ReqiPine5" : [ - "NC_023722" - ], - "Dengue_virus_3__98TW407" : [ - "DQ675528" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C19" : [ - "KJ019148" - ], - "Maize_streak_virus___Reunion__SP2R7___SP2" : [ - "AJ225008" - ], - "Citrus_tristeza_virus_SP_NZ_M16" : [ - "EU857538" - ], - "West_Nile_virus__WNV_1_US_BID_V6410_2002" : [ - "KJ501284" - ], - "Hepatitis_B_virus_FMC_15" : [ - "AF411412" - ], - "Hepatitis_B_virus_FMU020" : [ - "AY206391" - ], - "Hepatitis_B_virus_HB217" : [ - "HM011470" - ], - "Propionibacterium_phage_PHL179M00__PHL179M00" : [ - "NC_027370" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V39_2004" : [ - "EU529676" - ], - "JC_polyomavirus__JCV135_45" : [ - "JF424870" - ], - "Hepatitis_B_virus__HBV_TA41" : [ - "AB555498" - ], - "Oat_blue_dwarf_virus__OBDV_2r" : [ - "GU396990" - ], - "Chickpea_chlorosis_virus_E__3459D" : [ - "KC172695" - ], - "Changuinola_virus__CGLV_BE_AR_440541" : [ - "KF690588", - "KF690586", - "KF690590", - "KF690587", - "KF690581", - "KF690583", - "KF690589", - "KF690584" - ], - "Hepatitis_B_virus__Ag22" : [ - "KJ843183" - ], - "African_cassava_mosaic_virus__K4J2" : [ - "JN053425" - ], - "Coxiella_burnetii_CbuK_Q154" : [ - "NC_011526", - "NC_011528" - ], - "Listeria_monocytogenes_SLCC2479" : [ - "NC_018589" - ], - "Cotton_leaf_curl_Multan_betasatellite__Octa_beta_34" : [ - "EU384589" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V132_1996" : [ - "EU155332" - ], - "Chikungunya_virus__DRDE_07" : [ - "EU372006" - ], - "Gallid_herpesvirus_2_648a_p31" : [ - "JQ806362" - ], - "Hepatitis_B_virus__EG104" : [ - "AB104711" - ], - "Human_immunodeficiency_virus_1__04ZASK201B1" : [ - "DQ396397" - ], - "Peste_des_petits_ruminants_virus__China_XJYL_2013" : [ - "KM091959" - ], - "Beet_black_scorch_virus_satellite_RNA__Ir_Msh1sat" : [ - "FN543473" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NM1" : [ - "EU860249" - ], - "Enterobacteria_phage_NC16" : [ - "DQ079888" - ], - "Beak_and_feather_disease_virus__BFDV9" : [ - "GU015017" - ], - "Tomato_leaf_curl_virus__Australia" : [ - "NC_003896" - ], - "Tomato_severe_rugose_virus__BR_Vic08_10" : [ - "JX865622" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1935_2008" : [ - "FJ410261" - ], - "Bluetongue_virus_4__82027" : [ - "DQ191276" - ], - "Hepatitis_C_virus_subtype_4m__HCV_4m_GB_BID_G1250" : [ - "JX227961" - ], - "Porcine_circovirus_1_GY" : [ - "KC894933" - ], - "Human_immunodeficiency_virus_1__99BW4754_7" : [ - "AF443086" - ], - "Maize_streak_virus__MSV_A_CF_Yal1_Car32_2008" : [ - "HQ693317" - ], - "Porcine_epidemic_diarrhea_virus_USA_Missouri101_2013" : [ - "KJ645692" - ], - "Chikungunya_virus__IMTSSA6424C" : [ - "FR717337" - ], - "Dengue_virus_1__DENV_1_MX_BID_V8195_2012" : [ - "KJ189368" - ], - "Avian_orthoreovirus_T1781" : [ - "KC865791" - ], - "Hepatitis_B_virus__303" : [ - "AY233281" - ], - "Corchorus_golden_mosaic_virus__BKP08" : [ - "KF962542" - ], - "Porcine_parvovirus_6__TJ" : [ - "NC_023860" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V149_2003" : [ - "EU256088" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_14" : [ - "KM609207" - ], - "Dengue_virus_3_D3_SG_05K3912DK1_2005" : [ - "EU081209" - ], - "Papiine_herpesvirus_2_A189164" : [ - "KF908239" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1374" : [ - "KR534556" - ], - "Venezuelan_equine_encephalitis_virus_Trinidad_donkey_donkey_Trinidad_1943" : [ - "EEVNSPEPA" - ], - "Tomato_yellow_leaf_curl_virus__120_Dargaz" : [ - "JQ928348" - ], - "Human_T_lymphotropic_virus_1_Aus_Aus_CS" : [ - "KF242506" - ], - "African_cassava_mosaic_virus__CF_CF49AN_07" : [ - "KJ887775" - ], - "Hepatitis_B_virus__dxn1058" : [ - "KC774485" - ], - "Zucchini_yellow_mosaic_virus_Reunion_Island" : [ - "ZYMP13PREP" - ], - "SARS_coronavirus_Sin3725V" : [ - "AY559087" - ], - "Corynebacterium_aurimucosum_ATCC_700975" : [ - "NC_010813", - "NC_012590" - ], - "Hepatitis_E_virus__JE03_1760F_p5_B" : [ - "AB425831" - ], - "Zebra_finch_circovirus__8454V25_1" : [ - "NC_026945" - ], - "Sinorhizobium_meliloti_2011" : [ - "NC_020527", - "NC_020528", - "NC_020560" - ], - "Enterobacteria_phage_phiX174__3F90" : [ - "EF380024" - ], - "Nitrosospira_multiformis_ATCC_25196" : [ - "NC_007614", - "NC_007617", - "NC_007615", - "NC_007616" - ], - "Human_metapneumovirus_HMPV_USA_TN_95_252_1995_B" : [ - "KC562237" - ], - "Hepatitis_B_virus__T1178" : [ - "GQ205377" - ], - "Thermoproteus_tenax_Kra_1" : [ - "NC_016070" - ], - "Human_rotavirus_A" : [ - "Z32552", - "X81427" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota42_2013" : [ - "KJ645648" - ], - "Chickpea_chlorotic_dwarf_virus__K_ErC243_05" : [ - "KC172680" - ], - "Human_papillomavirus_type_6__23" : [ - "HG793831" - ], - "Dengue_virus_2__ACS46" : [ - "JX286516" - ], - "Hepatitis_B_virus__SDAC_125" : [ - "KF170742" - ], - "Tomato_yellow_leaf_curl_virus__AH_BB" : [ - "KC312655" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ19AQ1_2009" : [ - "JF909204" - ], - "Human_immunodeficiency_virus_1__06KECst_010" : [ - "FJ623491" - ], - "Jurona_virus" : [ - "NC_025392" - ], - "Pennisetum_mosaic_virus__CD2" : [ - "JX070150" - ], - "African_cassava_mosaic_virus__CF_CF22AB_07" : [ - "KJ887767" - ], - "Bifidobacterium_animalis_lactis_ATCC_27673" : [ - "NC_022523" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141491" : [ - "KR653289" - ], - "Thioalkalivibrio_K90mix" : [ - "NC_013889", - "NC_013930" - ], - "Dengue_virus_2__DGV106" : [ - "JX286524" - ], - "Dengue_virus_1__MKS_2058" : [ - "KC762628" - ], - "Cauliflower_mosaic_virus__IRN2" : [ - "AB863137" - ], - "Human_papillomavirus_type_18__Qv15957" : [ - "EF202149" - ], - "Hepatitis_B_virus__WY_SD_13" : [ - "JX429914" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2732_2007" : [ - "GQ199773" - ], - "Measles_virus" : [ - "BD137596", - "BD137594", - "BD137597", - "BD137592", - "BD137593", - "S58435", - "BD137590", - "BD137591", - "BD137595", - "E04903" - ], - "Measles_virus__D_VI" : [ - "EU293551" - ], - "Feline_coronavirus_UU16_UU16" : [ - "FJ938058" - ], - "Pigeon_circovirus_PiCV_Japan_2_2010" : [ - "LC035390" - ], - "Beak_and_feather_disease_virus__BFDV_I_PL_830_2009" : [ - "JX221042" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite" : [ - "JQ654466", - "JQ654465", - "JQ654464", - "JX311469", - "JQ654467" - ], - "Hepatitis_B_virus__GSF_12" : [ - "HM750156" - ], - "Human_immunodeficiency_virus_1__WITO_flC4" : [ - "FJ496173" - ], - "Homalodisca_vitripennis_reovirus__Riverside" : [ - "GU350427", - "GU350425", - "GU350429", - "GU350424", - "GU350422", - "GU350432", - "GU350426", - "GU350430", - "GU350428", - "GU350431", - "GU350423", - "GU350421" - ], - "Hepatitis_B_virus__18T03HCC" : [ - "AB014377" - ], - "Hepatitis_B_virus__C56_7" : [ - "FJ899768" - ], - "Candidatus_Phytoplasma_mali" : [ - "NC_011047" - ], - "Brachyspira_pilosicoli_B2904" : [ - "NC_018607" - ], - "Coxsackievirus_A13_BAN00_10562" : [ - "DQ995643" - ], - "Dengue_virus_3__DENV_3_US_BID_V1076_1999" : [ - "EU529696" - ], - "Salmonid_alphavirus_subtype_3__SAV3_3_MR_10" : [ - "KC122925" - ], - "Hepatitis_C_virus_subtype_1a__03_13" : [ - "EU781783" - ], - "Porcine_circovirus_2_LN05" : [ - "EF524526" - ], - "Tomato_yellow_leaf_curl_China_virus__Y231" : [ - "AM260701" - ], - "Hepatitis_B_virus__MGL47F" : [ - "AB270541" - ], - "Hepatitis_B_virus_FMU013" : [ - "AY206384" - ], - "Tomato_leaf_curl_Cotabato_virus__GSD6" : [ - "EU487048" - ], - "Moussa_virus__D24" : [ - "FJ985749" - ], - "Zucchini_yellow_mosaic_virus_KR_PS" : [ - "AY279000" - ], - "Southwest_baboon_virus_1__SWBV_16986_4_14_2014" : [ - "KM110947" - ], - "Dengue_virus_1__59049_BR_PE_99" : [ - "JX669471" - ], - "Hepatitis_C_virus_subtype_1a_HC_TN" : [ - "EF621489" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4735_2009" : [ - "JF937630" - ], - "Feline_coronavirus_UU15_UU15" : [ - "FJ938057" - ], - "Hepatitis_B_virus__JFA3956" : [ - "KF779267" - ], - "Temperate_fruit_decay_associated_virus__MFBpe35b" : [ - "KR134343" - ], - "Melon_chlorotic_mosaic_virus__VE09_62" : [ - "KF670621", - "KF670620" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C75" : [ - "KJ019048" - ], - "Hepatitis_B_virus__HK_1323" : [ - "KJ410491" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_5___strain_CSIRO_157__CSIRO_157_AUS1977_01" : [ - "AM745028", - "AM745029", - "AM745032", - "AM745030", - "AM745033", - "AM745027", - "AM745031", - "AM745034", - "AM745035", - "AM745036" - ], - "Hepatitis_B_virus__042_DR_Wad" : [ - "KF873541" - ], - "Almpiwar_virus__MRM4059" : [ - "NC_025391" - ], - "Pigeon_paramyxovirus_1_AV324_96" : [ - "GQ429292" - ], - "Anaplasma_phagocytophilum_JM" : [ - "NC_021880" - ], - "Dengue_virus_2__DENV_2_UMASS_Medical_BID_V2620_2008" : [ - "GQ199900" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_6___strain_CSIRO_753__CSIRO_753_AUS1981_07" : [ - "AM745039", - "AM745038", - "AM745041", - "AM745046", - "AM745037", - "AM745044", - "AM745045", - "AM745040", - "AM745043", - "AM745042" - ], - "Hepatitis_B_virus__928_9_1979" : [ - "DQ463787" - ], - "Human_papillomavirus_type_16_CU14" : [ - "JQ004098" - ], - "Junin_mammarenavirus_P2045" : [ - "DQ854733" - ], - "West_Nile_virus__WNV_1_US_BID_V6647_2003" : [ - "KJ501391" - ], - "Human_papillomavirus_type_16__Fr050094" : [ - "HQ644241" - ], - "Cyanobium_gracile_PCC_6307" : [ - "NC_019675" - ], - "Maize_streak_virus___Reunion__SP2R12___SP2" : [ - "AJ225010" - ], - "Porcine_circovirus_2_SH0733" : [ - "GQ358998" - ], - "Passion_fruit_woodiness_virus__Gld_1" : [ - "AB761400" - ], - "Japanese_encephalitis_virus_Beijing_1" : [ - "JEVBEICG" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_88I_015A_01_1988" : [ - "KJ723491" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4871_2009" : [ - "HQ705615" - ], - "Dengue_virus_1__DENV_1_CO_BID_V7290_1998" : [ - "KJ189302" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXM80" : [ - "GQ499196" - ], - "Hepatitis_B_virus_adrq__HMA" : [ - "X75665" - ], - "Hepatitis_B_virus__HK1285" : [ - "DQ089784" - ], - "PRRSV_HN1__HN1" : [ - "AY457635" - ], - "Newcastle_disease_virus__JS_07_04_Pi" : [ - "FJ766530" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9457_2013" : [ - "KJ643526" - ], - "Dengue_virus_1__DENV_1_VN_BID_V782_2007" : [ - "EU482708" - ], - "Hepatitis_B_virus__I116" : [ - "FJ562265" - ], - "Japanese_encephalitis_virus__SH03103" : [ - "JN381847" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1358" : [ - "KM573775" - ], - "Porcine_circovirus_2__KSY_1" : [ - "AF454546" - ], - "Hepatitis_E_virus__JNH_Ehi04L" : [ - "AB291958" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4055_2008" : [ - "GU131807" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2074_2001" : [ - "KF955462" - ], - "Dengue_virus_3__DENV_3_US_BID_V1448_1998" : [ - "EU726771" - ], - "East_African_cassava_mosaic_virus__EACMV__K33" : [ - "AJ717553" - ], - "Human_immunodeficiency_virus_1__03ZAPS143MB1" : [ - "DQ396391" - ], - "Newcastle_disease_virus__APMV1_Pigeon_MD_USA_0719_2007" : [ - "KC013036" - ], - "Porcine_circovirus_2__NT4" : [ - "HQ202968" - ], - "Duck_hepatitis_B_virus_Guilin_DHBV1" : [ - "JX469896" - ], - "Citrus_leaf_blotch_virus__NZ_G18" : [ - "EU857539" - ], - "Coxsackievirus_B5_CVB5_CC10_16" : [ - "JN695050" - ], - "Bacillus_amyloliquefaciens_plantarum_UCMB5033" : [ - "NC_022075" - ], - "Escherichia_coli_K_12_substr__W3110" : [ - "NC_007779" - ], - "Maize_streak_virus__MSV_G_Ng_Dig45_Jic5_2002" : [ - "EU628633" - ], - "Puumala_virus_PUUV_Pieksamaki_human_kidney_2008" : [ - "JN831952", - "JN831950", - "JN831951" - ], - "Mycobacterium_phage_LinStu_LinStu" : [ - "NC_023714" - ], - "Wheat_dwarf_virus__GSTS07_7" : [ - "KJ536084" - ], - "Sendai_virus_Ohita_MVC11" : [ - "AB005796" - ], - "Enterovirus_A71__DTID_ZJU_62" : [ - "FJ158600" - ], - "Zygosaccharomyces_bailii_virus_Z" : [ - "NC_003874" - ], - "Sinorhizobium_meliloti_1021" : [ - "NC_003047", - "NC_003037", - "NC_003078" - ], - "Hepatitis_B_virus__J241" : [ - "GQ377633" - ], - "Enterococcus_phage_phiFL3A_phiFL3A" : [ - "NC_013648" - ], - "Staphylococcus_aureus_04_02981" : [ - "NC_017340" - ], - "Human_herpesvirus_6A__GS" : [ - "KJ123690" - ], - "Maize_streak_virus__MSV_A_GH_gh154_Nka_2010" : [ - "KJ699336" - ], - "Bean_golden_mosaic_virus__BR_Vis12_11" : [ - "KJ939734" - ], - "Acinetobacter_phage_AB3" : [ - "NC_021337" - ], - "Canine_coronavirus_A76" : [ - "JN856008" - ], - "Enterovirus_A71_EV71_Jinan1002" : [ - "JQ074187" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0118" : [ - "KP759598" - ], - "Ageratum_enation_virus__NBRI_1" : [ - "KM066975" - ], - "Mycobacterium_MOTT36Y" : [ - "NC_017904" - ], - "Pelobacter_propionicus_DSM_2379" : [ - "NC_008608", - "NC_008609", - "NC_008607" - ], - "Rice_black_streaked_dwarf_virus" : [ - "AJ297432", - "NC_003737", - "AY144568", - "NC_003730", - "AY160687", - "NC_003728", - "AJ291707", - "AJ297434", - "NC_003731", - "NC_003735", - "S63914", - "AF536564", - "AJ297429", - "RBDSEG10", - "AY144569", - "AF521806", - "NC_003734", - "S63917", - "NC_003733", - "AY144570", - "NC_003736", - "AJ297428", - "NC_003732", - "NC_003729", - "AF397894" - ], - "Hepatitis_B_virus__No17" : [ - "AB697500" - ], - "Foot_and_mouth_disease_virus___type_A_A_Philippines_aphilippines_iso50" : [ - "AY593793" - ], - "Porcine_circovirus_2_09JS" : [ - "HQ395038" - ], - "Dengue_virus_2__DENV_2_US_BID_V1484_2003" : [ - "EU687236" - ], - "Hepatitis_B_virus__JFA4219" : [ - "KF779270" - ], - "Hepatitis_B_virus__E1_1" : [ - "GU815682" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_87I_072A_01_1987" : [ - "KJ723463" - ], - "Swine_hepatitis_E_virus__swKOR_2" : [ - "FJ426404" - ], - "African_cassava_mosaic_virus__CF_CF356BE_08" : [ - "KJ887630" - ], - "Squash_leaf_curl_Philippines_virus__Wg1" : [ - "EU310406" - ], - "Ageratum_yellow_vein_virus__AFSP7d" : [ - "JN809824" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG9B2_07" : [ - "KJ887829" - ], - "Hepatitis_B_virus__LT10" : [ - "DQ486023" - ], - "Oscivirus_A1_10717" : [ - "NC_014412" - ], - "Cotton_leaf_curl_Multan_betasatellite__Punc_beta_15" : [ - "EU384583" - ], - "Foot_and_mouth_disease_virus___type_C__H595" : [ - "AM409325" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4312_2" : [ - "KR105230" - ], - "Dengue_virus_3__mutant_BDH02_04" : [ - "DQ401692" - ], - "Moraxella_catarrhalis_BBH18" : [ - "NC_014147" - ], - "Dengue_virus_3_PH86" : [ - "AY858045" - ], - "Measles_virus_strain_Edmonston_Zagreb_Measles_virus_strain_Edmonston__Zagreb_vaccine" : [ - "AF266290" - ], - "Beet_black_scorch_virus__Xinjiang_variant_m81" : [ - "JN635329" - ], - "Hepatitis_B_virus_OS25" : [ - "EU155824" - ], - "Rift_Valley_fever_virus_T_46__228113" : [ - "DQ380147", - "DQ380199", - "DQ375405" - ], - "Bluetongue_virus_2_v7291" : [ - "JQ086248", - "JQ086249", - "JQ086246", - "JQ086250", - "JQ086245", - "JQ086241", - "JQ086242", - "JQ086244", - "JQ086247", - "JQ086243" - ], - "Porcine_astrovirus_2_51_USA" : [ - "JF713712" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_pool_MEX_MX10_95M9_2010_IE" : [ - "KC344500" - ], - "Hepatitis_B_virus__C66" : [ - "EU939558" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0115" : [ - "KP759597" - ], - "Hepatitis_B_virus__C122_7" : [ - "FJ899776" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus" : [ - "DQ169055", - "DQ641702" - ], - "Bovine_viral_diarrhea_virus_1__CC13B" : [ - "KF772785" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_177N4__177N4" : [ - "JN819488" - ], - "European_mountain_ash_ringspot_associated_virus__E52993" : [ - "HG799741" - ], - "Hepatitis_B_virus__HBsAg_negative_patient_X27" : [ - "AJ344115" - ], - "Syntrophomonas_wolfei_Goettingen" : [ - "NC_008346" - ], - "Campylobacter_jejuni_NCTC_11168_BN148" : [ - "NC_018521" - ], - "West_Nile_virus_Italy_2014_Pavia5" : [ - "KP789958" - ], - "Hepatitis_B_virus__3358v1" : [ - "KJ010776" - ], - "Phage_Gifsy_1" : [ - "NC_010392" - ], - "Macroptilium_yellow_mosaic_virus__Hope_Pastures" : [ - "EF585288", - "EF585289" - ], - "Human_papillomavirus_type_57b_HPV_57b" : [ - "HPU37537" - ], - "African_cassava_mosaic_virus__MG_MG349A3_11" : [ - "KJ887997" - ], - "Bifidobacterium_bifidum_PRL2010" : [ - "NC_014638" - ], - "Yellow_oat_grass_mosaic_virus__YOgMV_Ra" : [ - "KF984547" - ], - "Human_rhinovirus_A95_ATCC_VR_1301" : [ - "FJ445170" - ], - "Rhinovirus_A" : [ - "DQ473509", - "NC_001617" - ], - "Sweet_potato_leaf_curl_virus__US_SC_634_2" : [ - "HQ333136" - ], - "Hepatitis_E_virus__JKK_Shiz13" : [ - "AB909125" - ], - "Dengue_virus_2__DENV_2_NI_BID_V623_2005" : [ - "EU482600" - ], - "Simian_virus_40_K661" : [ - "AF038616" - ], - "Maize_streak_virus__MSV_A_NG_Eji6_N11_2006" : [ - "HQ693374" - ], - "Hepatitis_B_virus__ph80" : [ - "EU410081" - ], - "Echovirus_E30__ECV30_GX10_05" : [ - "JX854435" - ], - "Treponema_denticola_ATCC_35405" : [ - "NC_002967" - ], - "Porcine_circovirus_2__DK529control" : [ - "EF565362" - ], - "Mycobacterium_phage_Wee_Wee" : [ - "NC_014901" - ], - "Hepatitis_B_virus_Ehi_IK_lam_5_2" : [ - "AB195943" - ], - "Hepatitis_B_virus__040_K_Laj" : [ - "KF873526" - ], - "BK_polyomavirus__NEC_7" : [ - "AB365144" - ], - "Sweet_potato_badnavirus_B__Huachano1" : [ - "NC_012728" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1330_2006" : [ - "EU660410" - ], - "Human_immunodeficiency_virus_1__04ZASK190B1" : [ - "DQ056409" - ], - "Enterovirus_A71_C7_Osaka_org" : [ - "AB550336" - ], - "Rhodobacter_sphaeroides_2_4_1" : [ - "NC_009007", - "NC_007494", - "NC_007493", - "NC_007490", - "NC_007489", - "NC_009008", - "NC_007488" - ], - "Avian_paramyxovirus_6__mallard_Jilin_190_2011" : [ - "JX522537" - ], - "Bluetongue_virus_4__ARG2002_01" : [ - "AJ586682" - ], - "Meleagris_gallopavo_enteric_parvovirus__TuPV_JO11" : [ - "KM598421" - ], - "Torque_teno_sus_virus_1b__TTV2Bj8" : [ - "HM633226" - ], - "Human_poliovirus_1_NIE1118337" : [ - "KJ170473" - ], - "Human_herpesvirus_5_BE_29_2011" : [ - "KP745672" - ], - "Dengue_virus_1_D90_1197" : [ - "JN638342" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Kerouane_1331" : [ - "KR534548" - ], - "Lake_Victoria_marburgvirus___Angola2005_Ang0754" : [ - "DQ447659" - ], - "JC_polyomavirus__CN_25" : [ - "AB081009" - ], - "Acinetobacter_phage_Bphi_B1251" : [ - "NC_019541" - ], - "Hepatitis_B_virus__patient_C__HBsAg_positiv_HBV_subtype_ayw" : [ - "X65257" - ], - "Porcine_circovirus_2__Mal009_11_Sarawak" : [ - "JF690918" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3722_2007" : [ - "GU131976" - ], - "Rhizobium_leguminosarum_bv__viciae_3841" : [ - "NC_008384", - "NC_008381", - "NC_008382", - "NC_008383", - "NC_008378", - "NC_008379", - "NC_008380" - ], - "African_cassava_mosaic_virus__MG_MG95A1_07" : [ - "KJ887904" - ], - "Walleye_dermal_sarcoma_virus__NY_2003" : [ - "EF428979" - ], - "JC_polyomavirus__KE_5" : [ - "AB126996" - ], - "Indian_cassava_mosaic_virus__Maharashtra___ICMV_Mah" : [ - "AJ314739", - "AJ314740" - ], - "JC_polyomavirus_708C" : [ - "AF300958" - ], - "Human_poliovirus_1_NIE1118406" : [ - "KJ170443" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0169" : [ - "KP759706" - ], - "JC_polyomavirus__JCV183FLC_07" : [ - "JF425494" - ], - "Halyomorpha_halys_virus__Beltsville" : [ - "NC_022611" - ], - "Bacillus_thuringiensis_BMB171" : [ - "NC_014171", - "NC_014172" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2325_2001" : [ - "FJ744736" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota127_2014" : [ - "KJ645703" - ], - "Macroptilium_yellow_spot_virus__BR_Sti19_11" : [ - "KJ939876" - ], - "Hepatitis_B_virus__MOD_4598" : [ - "GQ183484" - ], - "Swine_vesicular_disease_virus__STRAIN_H_3__76" : [ - "SVDG" - ], - "African_swine_fever_virus_Ken05_Tk1" : [ - "KM111294" - ], - "Sweet_potato_chlorotic_fleck_virus__HG176" : [ - "KP715159" - ], - "Usutu_virus__ArD19848" : [ - "KC754954" - ], - "Ustilaginoidea_virens_RNA_virus_1" : [ - "NC_020997" - ], - "Cotton_atypical_red_leaf_virus__DeltaOpal" : [ - "KF906261" - ], - "Cotton_leaf_curl_virus_betasatellite__IARI_34" : [ - "KM070822" - ], - "Hepatitis_B_virus__Japreira116" : [ - "DQ899147" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC09B43_2008" : [ - "JF909085" - ], - "Adoxophyes_honmai_nucleopolyhedrovirus_ADN001" : [ - "NC_004690" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0018" : [ - "KP759644" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2799_2007" : [ - "GQ199818" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d4ym3" : [ - "HQ890533" - ], - "Staphylococcus_phage_13" : [ - "NC_004617" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C15" : [ - "KJ019145" - ], - "Hepatitis_B_virus__dlz2120" : [ - "KC774429" - ], - "Cotton_leaf_curl_Multan_betasatellite__ZhSh" : [ - "HQ455368" - ], - "Hepatitis_B_virus__MT" : [ - "KC492739" - ], - "South_African_cassava_mosaic_virus__MG_MG414A1_11" : [ - "KJ888012" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL137A" : [ - "AB985564" - ], - "Monkeypox_virus__DRC_07_0337" : [ - "JX878423" - ], - "Beet_black_scorch_virus_satellite_RNA" : [ - "FJ176575", - "NC_006460" - ], - "Norovirus_Hu_GII_4_Aomori4_2008_JP_Hu_GII_4_Aomori4_2008_JP" : [ - "AB541225" - ], - "Cyprinid_herpesvirus_3_KHV_I" : [ - "DQ177346" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2791_2007" : [ - "GQ199811" - ], - "JC_polyomavirus__GH_3" : [ - "AB048545" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD239_2013" : [ - "KM229879" - ], - "Ageratum_yellow_vein_China_betasatellite__Y342" : [ - "HF569261" - ], - "Dengue_virus_1__DENV_1_VN_BID_V807_2006" : [ - "EU482801" - ], - "Norovirus_Hu_GII_4_CGMH13_2007_TW" : [ - "JN400611" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__OMHB12" : [ - "FM164732" - ], - "Bean_common_mosaic_virus_NL1" : [ - "KM023744", - "AY112735" - ], - "Human_immunodeficiency_virus_1__01_BR_RGS45" : [ - "GQ365651" - ], - "Tomato_leaf_curl_Gandhinagar_betasatellite__pToGNbH14" : [ - "NC_023038" - ], - "Cotton_leaf_curl_Multan_virus_Rajasthan" : [ - "EU365616" - ], - "Hepatitis_B_virus__IND_2009_16" : [ - "KF214669" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E2432_2010_G3P_8__E2432" : [ - "KF371849", - "KF371856", - "KF371848", - "KF371847", - "KF371855", - "KF371852", - "KF371850", - "KF371853", - "KF371851" - ], - "Human_poliovirus_2_NIE1118435" : [ - "KJ170553" - ], - "Hepatitis_B_virus__SHB314" : [ - "KJ598665" - ], - "Hepatitis_B_virus_OS23" : [ - "EU155823" - ], - "Chikungunya_virus__LKMTCH2707" : [ - "FJ445427" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3962_2008" : [ - "GU131742" - ], - "Japanese_encephalitis_virus_131V" : [ - "GU205163" - ], - "Hepatitis_B_virus__MOD_4591" : [ - "GQ183449" - ], - "Hepatitis_B_virus__M35" : [ - "GQ924618" - ], - "Dengue_virus_1__HNRG13405" : [ - "KC692502" - ], - "Human_immunodeficiency_virus_1__CH40E_flA1" : [ - "FJ495818" - ], - "Hepatitis_B_virus__Ia_7" : [ - "AY596112" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Equus_ferus_caballus_PER_111_73_1973_IAB" : [ - "KC344483" - ], - "Chickpea_chlorotic_dwarf_virus__F_YeV18_96" : [ - "KC172670" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C92" : [ - "KJ019061" - ], - "Hepatitis_B_virus__EHBV128_EP_CHB" : [ - "KM524341" - ], - "Dengue_virus_4_DENV_4_SG_06K2270DK1_2005" : [ - "GQ398256" - ], - "Human_mastadenovirus_D_human_USA_UFL_Adv19_2005_64_P64H64F64" : [ - "KF268323" - ], - "Infectious_bursal_disease_virus_89163" : [ - "HG974563", - "HG974564" - ], - "Echovirus_E6_Charles" : [ - "AF465517" - ], - "Dengue_virus_2_ThNH73_93" : [ - "AF169686" - ], - "East_African_cassava_mosaic_virus_KE2__EACMV_KE2_K16" : [ - "AJ717543" - ], - "Hepatitis_B_virus__S1600" : [ - "FJ386687" - ], - "Enterovirus_A71__02_0_070" : [ - "KP691646" - ], - "JC_polyomavirus__SU_5" : [ - "AB127019" - ], - "Sandfly_fever_Naples_virus_R_3" : [ - "EF201832" - ], - "Human_papillomavirus_type_16__AS310" : [ - "HQ644235" - ], - "Bluetongue_virus_17__RSArrrr_17" : [ - "AJ586720" - ], - "Human_parainfluenza_virus_3_HPIV3_USA_629_10_2009" : [ - "KF530229", - "KF687317" - ], - "Tomato_yellow_leaf_curl_China_virus__Y193___Y193" : [ - "AJ971524" - ], - "Human_papillomavirus_type_16__UPB02" : [ - "HQ644294" - ], - "Hepatitis_B_virus__SEA_05" : [ - "KM999992" - ], - "Human_immunodeficiency_virus_1__03ZASK073B1" : [ - "AY901970" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K137" : [ - "AJ704964", - "AJ717518" - ], - "Maize_streak_virus__MSV_A_ZA_War5_Ta4_2008" : [ - "HQ693445" - ], - "Torque_teno_virus__TTV_HD17__uro702" : [ - "FR751488" - ], - "Potato_virus_Y_NTN_PB312" : [ - "EF026075" - ], - "JC_polyomavirus__JCV161FLC_34" : [ - "JF424941" - ], - "Soybean_mosaic_virus_G1" : [ - "FJ640977" - ], - "Maize_streak_virus__MSV_A_ZW_Maz1_Bet49_2006" : [ - "HQ693471" - ], - "African_swine_fever_virus_BA71V" : [ - "NC_001659" - ], - "Human_papillomavirus_type_73" : [ - "X94165" - ], - "Carnation_mottle_virus" : [ - "FJ843021", - "NC_001265" - ], - "Norovirus_Hu_GII_4_Miyazaki13_2008_JP_Hu_GII_4_Miyazaki13_2008_JP" : [ - "AB541287" - ], - "Human_metapneumovirus_HMPV_USA_C1_718_2005_A" : [ - "KC562220" - ], - "Chicken_anemia_virus__3_1P60" : [ - "AY040632" - ], - "Newcastle_disease_virus__Chicken_China_Shandong_02_2010" : [ - "KC542907" - ], - "Middle_East_respiratory_syndrome_coronavirus__Jeddah_C10306_KSA_2014_04_20" : [ - "KM027260" - ], - "West_Nile_virus_strain_385_99_385_99_hamster_passage_strain_9317A" : [ - "AY848695" - ], - "Human_mastadenovirus_B_Guangzhou01" : [ - "DQ099432" - ], - "Dengue_virus_2__DF897" : [ - "FM210223" - ], - "Maize_streak_virus___A_Ama__MSV_A_MSV_Ama" : [ - "NC_001346" - ], - "Chronic_bee_paralysis_virus__A_79P" : [ - "NC_010712", - "NC_010711" - ], - "Eupatorium_yellow_vein_virus____Yamaguchi" : [ - "AB079766" - ], - "Mannheimia_haemolytica_USDA_ARS_USMARC_183" : [ - "NC_020833" - ], - "Bluetongue_virus__SAD2004_03" : [ - "FM179951" - ], - "Bluetongue_virus_4__TUR1978_01" : [ - "AJ586679" - ], - "Sclerotinia_sclerotiorum_endornavirus_1_JZJL2" : [ - "NC_021706" - ], - "Hepatitis_B_virus__WHAFF" : [ - "JN257169" - ], - "Hepatitis_C_virus_subtype_6c__Th846" : [ - "EF424629" - ], - "Human_cosavirus_B_HCoSV_B1_2263" : [ - "NC_012801" - ], - "Staphylococcus_epidermidis_ATCC_12228" : [ - "NC_005008", - "NC_004461", - "NC_005003", - "NC_005005", - "NC_005004", - "NC_005006", - "NC_005007" - ], - "Equine_infectious_anemia_virus_DLV_DLV19_9" : [ - "HM141917" - ], - "Usutu_virus_V15" : [ - "KJ438727" - ], - "Hepatitis_B_virus__GU607" : [ - "GQ161826" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1900_2008" : [ - "FJ410237" - ], - "Human_bocavirus_HoBV_Shiga_JPN_53" : [ - "AB480175" - ], - "Human_immunodeficiency_virus_1__C_ZA_1171MB" : [ - "AY463232" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3654_2006" : [ - "GQ868497" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2569_2007" : [ - "FJ906960" - ], - "Tomato_yellow_leaf_curl_virus__Minab_Iran___TYLCV_Ker_IR_Ho33_06" : [ - "GU076443" - ], - "Lactobacillus_phage_phig1e" : [ - "NC_004305" - ], - "Human_poliovirus_3_NIE1118498" : [ - "KJ170578" - ], - "Hepatitis_B_virus__E3_8" : [ - "GU815709" - ], - "Turkey_astrovirus_TAstV_PA_01" : [ - "EU143849" - ], - "Echovirus_E30__14916net87" : [ - "DQ534205" - ], - "Tomato_leaf_curl_Bangalore_virus_DNA_beta__Hessarghatta" : [ - "GU984046" - ], - "Human_astrovirus_4__Rus_Nsc10_N358" : [ - "KF039913" - ], - "Human_papillomavirus_type_95" : [ - "AJ620210" - ], - "Human_poliovirus_1__DOR00042" : [ - "AF405678" - ], - "African_cassava_mosaic_virus__MG_MG75A1_06" : [ - "KJ887894" - ], - "Porcine_circovirus_2_PCV2_RP4" : [ - "FJ667590" - ], - "Bluetongue_virus__CSIRO_19" : [ - "X56735" - ], - "Sunguru_virus__Ug_41" : [ - "NC_025401" - ], - "Halorubrum_phage_CGphi46_CGphi46" : [ - "NC_021537" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA2268_2008" : [ - "KJ627311" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_28_8" : [ - "KC106645" - ], - "Dengue_virus_2__DENV_2_Pk_Swat_02" : [ - "KJ701507" - ], - "Lactobacillus_delbrueckii_bulgaricus_2038" : [ - "NC_017469" - ], - "Hepatitis_B_virus__MY630304" : [ - "KJ803769" - ], - "Helicoverpa_zea_nudivirus_2__MS1" : [ - "NC_004156" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d3om1" : [ - "HQ890539" - ], - "Human_metapneumovirus_BJ1816" : [ - "DQ843658" - ], - "Hepatitis_B_virus__Japreira80" : [ - "DQ899146" - ], - "Apple_chlorotic_leaf_spot_virus_MO_5" : [ - "AB326225" - ], - "Hepatitis_B_virus_N2829" : [ - "DQ207798" - ], - "Oenococcus_oeni_PSU_1" : [ - "NC_008528" - ], - "Porcine_circovirus_2__Ciego_de_Avila_18" : [ - "FN687850" - ], - "Neodiprion_abietis_NPV" : [ - "NC_008252" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9484_2013" : [ - "KJ643544" - ], - "Xanthomonas_citri_Aw12879" : [ - "NC_020816", - "NC_020815", - "NC_020817" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3728_2007" : [ - "GQ868522" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_57_2012" : [ - "KJ686149" - ], - "Homalodisca_vitripennis_reovirus__NC32" : [ - "GU437855" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1303_2007" : [ - "FJ182014" - ], - "Hepatitis_E_virus__JSN_Sap_FH" : [ - "AB091395" - ], - "Newcastle_disease_virus__duck_China_Guangxi19_2011" : [ - "KC920893" - ], - "Sewage_associated_circular_DNA_virus_18__SaCV_18_NZ_BS3994_2012" : [ - "NC_026260" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9433_2013" : [ - "KJ643510" - ], - "Sri_Lankan_cassava_mosaic_virus__Colombo___SLCMV_Col" : [ - "NC_003862", - "NC_003861" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V425_2001" : [ - "EU155320" - ], - "Poinsettia_latent_virus" : [ - "NC_011543" - ], - "Hepatitis_B_virus__MLT1294" : [ - "KF779309" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8525_2004" : [ - "KJ627724" - ], - "Hepatitis_C_virus_subtype_3a_S310_B" : [ - "AB691596" - ], - "Duck_circovirus__HLJ_2010" : [ - "HG532019" - ], - "Ageratum_leaf_curl_Cameroon_virus__CM_AGFG24_2009___AGFG24" : [ - "FR873228" - ], - "Salmonella_phage_Stitch" : [ - "NC_027297" - ], - "Maize_streak_virus__MSV_A_NG_Ife_N22_2006" : [ - "HQ693380" - ], - "Bombyx_mori_cypovirus_1_satellite_RNA" : [ - "NC_006630" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9951_2010" : [ - "KJ627367" - ], - "BK_polyomavirus__Dik" : [ - "AB211369" - ], - "Hepatitis_B_virus__MY805753" : [ - "KJ803760" - ], - "Porcine_circovirus_2__TN5_3" : [ - "JQ181607" - ], - "Bhendi_yellow_vein_India_virus__India_Thondawada_OY39A_2005___OY39A" : [ - "GU112020" - ], - "Human_coronavirus_OC43_OC43_human_USA_951_18_1995" : [ - "KF530084" - ], - "Simian_adenovirus_27_1" : [ - "FJ025909" - ], - "Myxococcus_fulvus_HW_1" : [ - "NC_015711" - ], - "Hepatitis_E_virus__US_C031008" : [ - "JN837481" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_G6_53" : [ - "LN846602" - ], - "Hepatitis_B_virus__C76_3" : [ - "FJ899769" - ], - "Human_papillomavirus_type_4" : [ - "NC_001457" - ], - "Hepatitis_B_virus__No25" : [ - "AB697505" - ], - "Hepatitis_B_virus__bne305" : [ - "FN594757" - ], - "Human_immunodeficiency_virus_1__5048_82" : [ - "AY835759" - ], - "Tanapox_virus__TPV_Kenya" : [ - "NC_009888" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9485_2013" : [ - "KJ643545" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2831_2003" : [ - "FJ882566" - ], - "Hepatitis_B_virus__HBVB2" : [ - "JQ688405" - ], - "Mycobacterium_phage_Chah" : [ - "NC_011284" - ], - "Corynebacterium_pseudotuberculosis_267" : [ - "NC_017462" - ], - "SARS_coronavirus_Sin2677__SIN2677" : [ - "AY283795" - ], - "Peach_mosaic_virus_2022_01__CA_1" : [ - "NC_011552" - ], - "African_swine_fever_virus__Mkuzi_1979" : [ - "AY261362" - ], - "BK_polyomavirus__KEN_3" : [ - "AB263927" - ], - "Hepatitis_B_virus__HBV_MY656" : [ - "AB112348" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4979_serum" : [ - "JF899531" - ], - "Bacillus_phage_BCP8_2__BCP8_2" : [ - "NC_027355" - ], - "Mycobacterium_phage_Wheeler" : [ - "NC_022070" - ], - "Enterobacteria_phage_RB55" : [ - "KM607002" - ], - "Dragonfly_orbiculatusvirus__TO_DF14_2010" : [ - "JX185417" - ], - "Halobacterium_salinarum_R1" : [ - "NC_010364", - "NC_010369", - "NC_010367", - "NC_010366", - "NC_010368" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3545_1998" : [ - "GU056033" - ], - "Cauliflower_mosaic_virus__TUR289" : [ - "AB863189" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2944_2005" : [ - "FJ898467" - ], - "Choristoneura_occidentalis_granulovirus" : [ - "NC_008168" - ], - "Zucchini_yellow_mosaic_virus__F84" : [ - "JN192408" - ], - "Tomato_leaf_curl_Joydebpur_beta____India_Amadalavalasa1_Kenaf_2007" : [ - "EU431115" - ], - "Parrot_hepatitis_B_virus__P1194" : [ - "JX274032" - ], - "Bean_common_mosaic_virus__CD010" : [ - "KJ807800" - ], - "Goose_hemorrhagic_polyomavirus__Toulouse_Goose_2000" : [ - "HQ681903" - ], - "Human_immunodeficiency_virus_1_98CN006" : [ - "AF286229" - ], - "SARS_coronavirus__Tor2_FP1_10851" : [ - "JX163927", - "JX163924" - ], - "Human_enterovirus_C104_Pavia261_9570" : [ - "JX982257" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7088_2005" : [ - "KJ189299" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3854_2008" : [ - "GU131690" - ], - "Human_immunodeficiency_virus_1__5073_89" : [ - "AY835766" - ], - "Bovine_papular_stomatitis_virus_BV_TX09c5" : [ - "KM875471" - ], - "Bhendi_yellow_vein_mosaic_alphasatellite" : [ - "KF471059" - ], - "Tuhoko_virus_2" : [ - "NC_025348" - ], - "Odontoglossum_ringspot_virus" : [ - "E04305" - ], - "Hepatitis_B_virus__HCUCH2" : [ - "HM585199" - ], - "Hepatitis_E_virus__HE_JA1" : [ - "AB097812" - ], - "Hepatitis_B_virus_419_5" : [ - "KR013784" - ], - "Wigglesworthia_glossinidia_endosymbiont_of_Glossina_morsitans__Yale_colony" : [ - "NC_016893" - ], - "Porcine_circovirus_2__NG20150102" : [ - "KP824720" - ], - "Dengue_virus_3__13GDZDVS30E" : [ - "KF954949" - ], - "Human_papillomavirus_type_86" : [ - "AF349909" - ], - "Rice_black_streaked_dwarf_virus__Ta_m1" : [ - "EU267107" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Shariatpur_2013___Bangladesh_Shariatpur_2013" : [ - "AB971845", - "AB971844" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_23_7" : [ - "KC106638" - ], - "Hepatitis_B_virus__83" : [ - "AF297623" - ], - "Hepatitis_E_virus__CHN_BJ_R14" : [ - "JX109834", - "JX121233" - ], - "Avian_leukosis_virus_PDRC_3249" : [ - "EU070902" - ], - "Brucella_ovis_ATCC_25840" : [ - "NC_009505", - "NC_009504" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6331_2009" : [ - "KJ627339" - ], - "Porcine_circovirus_2_HNLYYAL5201405" : [ - "KJ867555" - ], - "Bluetongue_virus_23__RSArrrr_23" : [ - "AJ586727" - ], - "Hepatitis_C_virus__S83_JFH1" : [ - "KC967479" - ], - "Campylobacter_curvus_525_92" : [ - "NC_009715" - ], - "Hepatitis_B_virus__SWT3_2" : [ - "EU916240" - ], - "Mycobacterium_phage_Cali" : [ - "NC_011271" - ], - "BK_polyomavirus_NWC_15" : [ - "AB269856" - ], - "Dengue_virus_1_FGA_89" : [ - "AF226687" - ], - "Human_papillomavirus_type_16_type_16_variant" : [ - "HPU89348" - ], - "Torque_teno_sus_virus_1b__472142" : [ - "GU188046" - ], - "Human_herpesvirus_5_BE_8_2011" : [ - "KP745648" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C29" : [ - "KJ019155" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG54" : [ - "FJ914394" - ], - "Dengue_virus_2__MD944" : [ - "FM210230" - ], - "Propionibacterium_phage_PHL171M01__PHL171M01" : [ - "NC_027346" - ], - "Tomato_spotted_wilt_virus__LL_N_05" : [ - "FM163373" - ], - "Human_poliovirus_2_NIE1118426" : [ - "KJ170568" - ], - "Hepatitis_B_virus__1848" : [ - "AY233277" - ], - "Hepatitis_B_virus__TW1244" : [ - "EF494378" - ], - "Cotton_leaf_curl_Multan_virus__Okra06" : [ - "FJ770370" - ], - "Pseudomonas_phage_PA1phi" : [ - "NC_023700" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL054A" : [ - "AB985293", - "AB985524" - ], - "Rabies_virus__SM5076" : [ - "JQ685932" - ], - "SARS_coronavirus" : [ - "CS569493", - "CQ918598", - "CQ918584", - "CS079027", - "CQ918585", - "CS254197", - "CS079029", - "CS079026", - "CS079028" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_13_91" : [ - "DQ989312" - ], - "Hepatitis_B_virus_280_01" : [ - "EU594409" - ], - "BK_polyomavirus__SJH_LG_166" : [ - "JN192432" - ], - "Tomato_yellow_leaf_curl_virus__Handan" : [ - "GU951437" - ], - "Bartonella_bacilliformis_KC583" : [ - "NC_008783" - ], - "Hepatitis_C_virus_subtype_1b_MD16" : [ - "AF207757" - ], - "West_Nile_virus__WNV_1_US_BID_V4883_2005" : [ - "HQ671724" - ], - "Human_poliovirus_3_NIE1118455" : [ - "KJ170577" - ], - "Japanese_encephalitis_virus_WHe" : [ - "EF107523" - ], - "Tobacco_mosaic_virus__Tor1_L2" : [ - "KF972432" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1116_2001" : [ - "EU529685" - ], - "Soybean_chlorotic_spot_virus__BR_Jai9254_10" : [ - "NC_018456", - "NC_018457" - ], - "Tomato_leaf_curl_betasatellite__ToLCBV_AVT1" : [ - "AY428768" - ], - "Redspotted_grouper_nervous_necrosis_virus_SGWak97" : [ - "NC_008040", - "NC_008041" - ], - "Marine_gokushovirus__SI2" : [ - "KC131023" - ], - "Norovirus_Hu_GII_20048_2009_VNM_Hu_GII_20048_2009_VNM" : [ - "KC409245" - ], - "Human_parainfluenza_virus_2" : [ - "NC_003443", - "AB176531" - ], - "Maize_chlorotic_mottle_virus__ANETF2S1" : [ - "KP798453" - ], - "Truepera_radiovictrix_DSM_17093" : [ - "NC_014221" - ], - "Tomato_bushy_stunt_virus" : [ - "AY579432" - ], - "Enterobacteria_phage_fr" : [ - "X15031" - ], - "Chicken_anemia_virus__10" : [ - "KJ728821" - ], - "Macroptilium_yellow_spot_virus__BR_Sti30_11" : [ - "KJ939887" - ], - "Sweet_potato_latent_virus__HG181" : [ - "KP115611" - ], - "Tomato_yellow_leaf_curl_Thailand_virus_associated_DNA_1__Y72" : [ - "AJ579360" - ], - "BK_polyomavirus__MT" : [ - "AB211372" - ], - "Grapevine_vein_clearing_virus_VRU" : [ - "KJ725346" - ], - "Tuhoko_virus_3" : [ - "NC_025350" - ], - "Hepatitis_C_virus_subtype_4r__HCV_4r_GB_BID_G1251" : [ - "JX227962" - ], - "Human_poliovirus_2_NIE1118431" : [ - "KJ170555" - ], - "Youcai_mosaic_virus" : [ - "AY318866", - "NC_004422" - ], - "Human_poliovirus_3_NIE1218540" : [ - "KJ170620" - ], - "Foot_and_mouth_disease_virus___type_SAT_3_SAT3_4bech_1_65_sat3_4bech_iso23" : [ - "AY593853" - ], - "Maize_streak_virus__MSV_B3_Re_BasD_R6_2006" : [ - "EU628618" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1641_2007" : [ - "FJ024446" - ], - "Botrytis_cinerea_mitovirus_1" : [ - "NC_011372" - ], - "Hepatitis_B_virus__DEN6078" : [ - "KF779230" - ], - "Beak_and_feather_disease_virus__D134138" : [ - "JQ782196" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1830_2007" : [ - "FJ410211" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7713_2012" : [ - "KJ189358" - ], - "Coxsackievirus_A8__CVA8_SZ124_CHN_2012" : [ - "KM609476" - ], - "Human_papillomavirus_type_11__LP138" : [ - "HE611258" - ], - "Pseudomonas_phage_73" : [ - "NC_007806" - ], - "Israeli_acute_paralysis_virus_Korea1" : [ - "KC690268" - ], - "Foot_and_mouth_disease_virus___type_O_O1M11_o1m11_iso57" : [ - "AY593822" - ], - "Halovirus_VNH_1__VNH_1" : [ - "NC_025213" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2900_2006" : [ - "FJ898417" - ], - "Yunnan_orbivirus__Rioja" : [ - "FJ225402" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3841" : [ - "KM233107" - ], - "Sulfolobus_virus_Ragged_Hills" : [ - "NC_005360" - ], - "Elephant_endotheliotropic_herpesvirus_5_Vijay" : [ - "NC_024696" - ], - "Desmodium_leaf_distortion_virus" : [ - "NC_008495", - "NC_008494" - ], - "Tomato_yellow_leaf_curl_virus__Andong_1" : [ - "JN183879" - ], - "JC_polyomavirus__CW_7" : [ - "AB198942" - ], - "Malvastrum_yellow_vein_Yunnan_virus__SC226_5" : [ - "JX679250" - ], - "Circoviridae_14_LDMD_2013" : [ - "NC_025718" - ], - "Chimpanzee_parv4__PT_P48" : [ - "HQ113143" - ], - "Norovirus_Hu_GII_4_CGMH23_2010_TW" : [ - "JN400621" - ], - "Hepatitis_C_virus_subtype_1a__02_39" : [ - "EU781786" - ], - "Salmonella_enterica_serovar_Newport_USMARC_S3124_1" : [ - "NC_021902" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_84I_250A_01_1984" : [ - "KJ723485" - ], - "Porcine_circovirus_2__HM08" : [ - "FJ644930" - ], - "Foot_and_mouth_disease_virus" : [ - "APHA12CDR", - "X00871" - ], - "Japanese_encephalitis_virus_B_1381_85" : [ - "GQ902061" - ], - "Hepatitis_B_virus__A2_HBVYS2" : [ - "HPBA2HYS2" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Punc_alpha_2" : [ - "EU384645" - ], - "KI_polyomavirus_Stockholm_380__Stockholm_380" : [ - "EF127908" - ], - "Equine_infectious_anemia_virus_DLV_DLV10_19" : [ - "HM141916" - ], - "Chikungunya_virus_06_049" : [ - "AM258994" - ], - "Hepatitis_B_virus__G1_2" : [ - "GU815752" - ], - "Human_poliovirus_1__DOR00028C" : [ - "AF405683" - ], - "Dengue_virus_1__41111_BR_PE_97" : [ - "JX669469" - ], - "Small_begomovirus_associated_satellite__Sa19_S5" : [ - "KJ859138" - ], - "Cotton_leaf_curl_Burewala_virus__India_Vehari_2004" : [ - "NC_012137" - ], - "Hepatitis_B_virus_2009_02" : [ - "EU594400" - ], - "BK_polyomavirus__A_43H" : [ - "AB369090" - ], - "Alteromonas_macleodii__Balearic_Sea_AD45" : [ - "NC_018680", - "NC_018679" - ], - "Rickettsia_philipii_364D" : [ - "NC_016930" - ], - "Bamboo_mosaic_virus_S" : [ - "AF018156" - ], - "African_cassava_mosaic_virus__MG_MG45A7_06" : [ - "KJ887861" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5122_serum" : [ - "HQ891013" - ], - "Cellulophaga_phage_phi14_2_phi14_2" : [ - "NC_021806" - ], - "Turnip_mosaic_virus__WFLB06" : [ - "EU734434" - ], - "Hepatitis_B_virus__AH25" : [ - "KC836880" - ], - "Bovine_parainfluenza_virus_3_Q5592" : [ - "EU277658" - ], - "Hepatitis_B_virus__I2_M04_0033" : [ - "FJ023665" - ], - "Human_bocavirus_CQ201101_1" : [ - "JN387081" - ], - "Dengue_virus_3__MKS_0057" : [ - "KC762681" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2606_2006" : [ - "JN819405" - ], - "West_Nile_virus__WNV_1_US_BID_V4379_2005" : [ - "JN183892" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2301_2001" : [ - "FJ744715" - ], - "Pepper_veinal_mottle_virus__ns1" : [ - "FJ617225" - ], - "Blainvillea_yellow_spot_virus__BR_Vic07_10" : [ - "KC706523" - ], - "Human_parainfluenza_virus_1_HPIV1_USA_32193A_2010" : [ - "KF687315" - ], - "Classical_swine_fever_virus__Sp01" : [ - "FJ265020" - ], - "Staphylococcus_phage_phiN315" : [ - "NC_004740" - ], - "Human_metapneumovirus_HMPV_USA_TN_91_320_1991_B" : [ - "KC403972" - ], - "Porcine_circovirus_2_LW" : [ - "EU095020" - ], - "Duck_hepatitis_virus_2_strain_90D_90D" : [ - "EF067924" - ], - "HBV_genotype_H_HB_JI260_HB_JI260F" : [ - "AP007261" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI35_12_DNA_B" : [ - "HE979793" - ], - "Dengue_virus_3__13GDZDVS30B" : [ - "KF954946" - ], - "Newcastle_disease_virus_GM" : [ - "DQ486859" - ], - "Chikungunya_virus_D570_06" : [ - "EF012359" - ], - "Human_immunodeficiency_virus_1__97CA_MP645M_O" : [ - "AJ239083" - ], - "Cucumber_mosaic_virus__Tfr_In" : [ - "JF279606" - ], - "CAS_virus__ATB" : [ - "NC_018481", - "NC_018484" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1878_2008" : [ - "FJ410226" - ], - "Human_papillomavirus_type_2__CN_SC1" : [ - "EF117890" - ], - "Camelpox_virus__M_96" : [ - "NC_003391" - ], - "JC_polyomavirus__AM_5" : [ - "AB074576" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2377_2000" : [ - "JN819419" - ], - "Mycobacterium_phage_TM4" : [ - "NC_003387" - ], - "Squash_leaf_curl_virus__JO3_216" : [ - "KM595207" - ], - "Hepatitis_B_virus__318_92_1" : [ - "EU872006" - ], - "Hepatitis_B_virus__09_80_055" : [ - "JQ429081" - ], - "West_Nile_virus__WNV_1_US_BID_V6462_2003" : [ - "KJ501469" - ], - "Norovirus_Hu_GII_4_Ehime3_2007_JP_Hu_GII_4_Ehime3_2007_JP" : [ - "AB541239" - ], - "Human_parainfluenza_virus_1_HPIV1_USA_629_D00712_2009" : [ - "KF687307" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_GT11_2011" : [ - "KM188457" - ], - "Candidatus_Blochmannia_pennsylvanicus_BPEN" : [ - "NC_007292" - ], - "Duck_reovirus_NP03_CHN_2009_NP03_CHN_2009" : [ - "KC312700", - "KC312702", - "KC312701" - ], - "Maize_streak_virus__UMasin_144" : [ - "EF547097" - ], - "Duck_hepatitis_A_virus_1_SG" : [ - "FJ971623" - ], - "Dengue_virus_2__DENV_2_US_BID_V1356_1993" : [ - "EU569705" - ], - "Hepatitis_B_virus__Leb52" : [ - "JN642159" - ], - "Wheat_yellow_dwarf_virus_GPV" : [ - "NC_012931" - ], - "Human_immunodeficiency_virus_1__03ZAPS026MB1" : [ - "DQ369985" - ], - "Dengue_virus_2_DENV_2_PR_22DN_1994" : [ - "GQ398306" - ], - "Human_herpesvirus_5_BE_10_2012" : [ - "KP745649" - ], - "Legionella_pneumophila_Lorraine" : [ - "NC_018139", - "NC_018141" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1993_2003" : [ - "FJ639679" - ], - "Pigeon_paramyxovirus_1_NL_Human_2003" : [ - "KJ544861" - ], - "Pseudomonas_phage_phi2954" : [ - "NC_012093", - "NC_012092", - "NC_012091" - ], - "Banana_bunchy_top_virus__MT1" : [ - "FJ859729", - "FJ859742" - ], - "Porcine_circovirus_2_Shenzhen03" : [ - "HQ113118" - ], - "Coxsackievirus_A6_Shizuoka_18" : [ - "AB678778" - ], - "African_swine_fever_virus_Georgia_2007_1_Georgia_2007_1" : [ - "FR682468" - ], - "Burkholderia_cenocepacia_HI2424" : [ - "NC_008543", - "NC_008542", - "NC_008544", - "NC_008545" - ], - "Human_immunodeficiency_virus_1__CAP244_8w_F1" : [ - "GQ999986" - ], - "Newcastle_disease_virus__chicken_China_SD0901_2009" : [ - "KR338979" - ], - "Hepatitis_B_virus__LAMr_Pt__9" : [ - "AB367400" - ], - "Desulfovibrio_gigas_DSM_1382" : [ - "NC_022436", - "NC_022444" - ], - "Human_poliovirus_1_NIE1118335" : [ - "KJ170495" - ], - "Squash_leaf_curl_virus__Qaliobeya" : [ - "KJ579954" - ], - "Blainvillea_yellow_spot_virus__BgV06A_1_C81" : [ - "JF694476" - ], - "Barley_yellow_dwarf_virus_PAV__M14" : [ - "HE985229" - ], - "Human_immunodeficiency_virus_1__04ZAPS198MB1" : [ - "DQ445637" - ], - "Hepatitis_B_virus__NH017C_e36" : [ - "KJ173315" - ], - "Tomato_mild_mosaic_virus__BR_Pda60_05" : [ - "KC706611", - "KC706613" - ], - "Hepatitis_B_virus__919072" : [ - "JN040780" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V31_2004" : [ - "EU862824" - ], - "Maize_streak_virus__MSV_A_ZM_Chi4_Z9b_2008" : [ - "HQ693455" - ], - "Tomato_yellow_leaf_curl_virus__Moroccan" : [ - "EF060196" - ], - "Hepatitis_B_virus__SHB72" : [ - "KJ598741" - ], - "Human_immunodeficiency_virus_1__HIV_1JC" : [ - "AF049494" - ], - "Human_bocavirus__TW925_07" : [ - "EU984245" - ], - "Human_immunodeficiency_virus_1__MO108" : [ - "GU207884" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__JS2011_004" : [ - "KC505124", - "KC505123", - "KC505125" - ], - "JC_polyomavirus__JCV183FLC_18" : [ - "JF425503" - ], - "Klebsiella_phage_KP27" : [ - "NC_020080" - ], - "Human_immunodeficiency_virus_1__BZ163" : [ - "AY173958", - "AB485657", - "AB485656" - ], - "Banana_bunchy_top_virus__DanZhou" : [ - "GU559705" - ], - "Soybean_mosaic_virus_severe_Hangzhou" : [ - "AJ312439" - ], - "Feline_leukemia_virus_Glasgow_1" : [ - "KP728112" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9387_2013" : [ - "KJ643475" - ], - "Hepatitis_E_virus__JYI_ChiSai01C" : [ - "AB197674" - ], - "Sweet_potato_feathery_mottle_virus_ordinary" : [ - "AB465608" - ], - "Mycoplasma_mycoides_SC_Gladysdale" : [ - "NC_021025" - ], - "Hepatitis_B_virus__HBV_16091" : [ - "AF121245" - ], - "Tomato_severe_rugose_virus__BR_Vic25_10" : [ - "KC004090", - "JX865638" - ], - "West_Nile_virus__WNV_1_US_BID_V6569_2002" : [ - "KJ501364" - ], - "Ralstonia_solanacearum_Po82" : [ - "NC_017574", - "NC_017575" - ], - "Bluetongue_virus_3__ZIM2002_01" : [ - "AJ586698" - ], - "Porcine_circovirus_2_HNLYYAS4201405" : [ - "KJ867554" - ], - "Hepatitis_B_virus__C_Tonga_Is_1991" : [ - "HQ700502" - ], - "Hepatitis_B_virus__CHI6" : [ - "FJ709462" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3913_1" : [ - "KR105206" - ], - "Uncultured_phage_WW_nAnB_strain_3" : [ - "NC_026613" - ], - "Middle_East_respiratory_syndrome_coronavirus__Jeddah_C9055_KSA_2014_04_14" : [ - "KM027259" - ], - "Agrobacterium_vitis_S4" : [ - "NC_011984", - "NC_011981", - "NC_011986", - "NC_011989", - "NC_011982", - "NC_011988", - "NC_011991" - ], - "Porcine_circovirus_2_05_24387" : [ - "EF394776" - ], - "Dengue_virus_4__MKS_0252" : [ - "KC762696" - ], - "Coxsackievirus_A13__CV_A13_68095" : [ - "JF260922" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_39_2013" : [ - "KM042385" - ], - "Banana_bunchy_top_virus__HD1" : [ - "FJ859733", - "FJ859750", - "FJ859746" - ], - "Porcine_circovirus_2_PCV2_Ha11" : [ - "KJ920205" - ], - "Hepatitis_B_virus__4038" : [ - "AY233283" - ], - "Cauliflower_mosaic_virus__IRNRaTVa5" : [ - "JX912264" - ], - "Human_immunodeficiency_virus_1__CANA5FULL" : [ - "AY779551" - ], - "Ageratum_enation_virus" : [ - "FN543099", - "AM698011", - "AM261836", - "NC_003434" - ], - "Malvastrum_yellow_vein_virus__SC103" : [ - "JN082236" - ], - "Hepatitis_B_virus__ES71_11" : [ - "JF828930" - ], - "Human_papillomavirus_type_31" : [ - "PPH31A" - ], - "Norovirus_Hu_GII_4_Sakai4_2007_JP_Hu_GII_4_Sakai4_2007_JP" : [ - "AB541344" - ], - "Porcine_circovirus_2__WF" : [ - "HM027579" - ], - "Norovirus_Hu_GII_4_Iwate3_2007_JP_Hu_GII_4_Iwate3_2007_JP" : [ - "AB541271" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3833_2007" : [ - "GU131918" - ], - "Human_poliovirus_3_NIE1118512" : [ - "KJ170579" - ], - "Foot_and_mouth_disease_virus___type_A_A12_119_a12valle_119_iso20" : [ - "AY593752" - ], - "Enterobacteria_phage_EcoDS1" : [ - "NC_011042" - ], - "Dengue_virus_2__DENV_2_US_BID_V685_1988" : [ - "EU482742" - ], - "Maize_streak_virus__MSV_A_ZA_Wil_O38_1993" : [ - "FJ882139" - ], - "Streptococcus_pyogenes_MGAS6180" : [ - "NC_007296" - ], - "Sweet_potato_leaf_curl_virus__US_MS_WS3_8" : [ - "HQ333142" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__YN65_5" : [ - "KC149943" - ], - "Dengue_virus_3_98901403_DSS_DV_3" : [ - "AB189125" - ], - "Human_immunodeficiency_virus_1__ES_X1890__B" : [ - "EU786672" - ], - "Sri_Lankan_cassava_mosaic_virus_India_Attur_2009___Attur" : [ - "KC424490" - ], - "Crimean_Congo_hemorrhagic_fever_virus__SPU_187_90" : [ - "KJ682795", - "KJ682823", - "KJ682814" - ], - "Pyrobaculum_arsenaticum_DSM_13514" : [ - "NC_009376" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLI1294_2010" : [ - "KJ627356" - ], - "Hepatitis_delta_virus__VnzD8349" : [ - "AB037948" - ], - "Cucumber_mosaic_virus__New_Delhi" : [ - "GU111228", - "GU111227", - "GU111229" - ], - "Alfalfa_mosaic_virus__Lst" : [ - "FN667967", - "FN667966", - "FN667965" - ], - "Rabies_virus_WH11" : [ - "JQ647510" - ], - "Human_bocavirus_JPOC08_458" : [ - "AB481085" - ], - "Wheat_dwarf_virus__SXLF07_5" : [ - "KJ536118" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_78_2012" : [ - "KJ686268" - ], - "Tomato_leaf_curl_Gujarat_virus____Dhanbad___Dhanbad" : [ - "EU573714" - ], - "Human_mastadenovirus_A_Huie" : [ - "NC_001460" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9394_2013" : [ - "KJ643482" - ], - "Lettuce_mosaic_virus__13" : [ - "KJ161173" - ], - "Gallid_herpesvirus_2_CVI988" : [ - "DQ530348" - ], - "Watermelon_chlorotic_stunt_virus__PA2_Q23" : [ - "KM820287" - ], - "Hepatitis_B_virus_951_1" : [ - "KR013994" - ], - "South_African_cassava_mosaic_virus__MG_MG143A5_09" : [ - "KJ887935" - ], - "Potato_virus_S__Leona" : [ - "NC_007289" - ], - "Puumala_virus_Kazan" : [ - "EF405801" - ], - "Rivularia_PCC_7116" : [ - "NC_019686", - "NC_019679", - "NC_019678" - ], - "BK_polyomavirus__LAB_8" : [ - "AB301087" - ], - "Listeria_monocytogenes" : [ - "NC_013766", - "NC_013767" - ], - "Hepatitis_B_virus__M007" : [ - "GQ358157" - ], - "Porcine_circovirus_2__PCV_Y24" : [ - "KC515016" - ], - "Malvastrum_yellow_vein_betasatellite__Y198" : [ - "AJ971696" - ], - "Cotton_leaf_curl_Gezira_betasatellite__BF_Kap_Okra5" : [ - "FN554577" - ], - "Andrographis_yellow_vein_leaf_curl_betasatellite" : [ - "NC_023876", - "KM359407", - "KM359409" - ], - "Wheat_dwarf_virus__QHLD10_8" : [ - "JQ647478" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7611_2009" : [ - "KJ189342" - ], - "Mycobacterium_phage_ADLER_F1725" : [ - "KF981876" - ], - "JC_polyomavirus__GH_2" : [ - "AB038253" - ], - "Tomato_severe_rugose_virus__BR_Flo203_08" : [ - "KC004072" - ], - "Human_immunodeficiency_virus_1__04ZASK185B1" : [ - "DQ011174" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3940_2008" : [ - "GU131734" - ], - "Tick_borne_encephalitis_virus_Kubinova" : [ - "KJ922512" - ], - "West_Nile_virus__Mosquito_v4369" : [ - "AY712948" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_376_2012" : [ - "KP308405" - ], - "Dengue_virus_1_VE_61068_2006" : [ - "HQ332180" - ], - "Pepper_yellow_vein_Mali_virus_Mali_Burkina_Faso_Bazega_hot_pepper1_2007" : [ - "FM876848" - ], - "Potato_leafroll_virus__VIRUBRA_1_045" : [ - "EU717545" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2363_2000" : [ - "FJ744705" - ], - "Human_adenovirus_11_34_IC763" : [ - "KF906413" - ], - "BK_polyomavirus__FNL_22" : [ - "AB263919" - ], - "Thermodesulfobium_narugense_DSM_14796" : [ - "NC_015499" - ], - "Human_immunodeficiency_virus_1__HK004" : [ - "FJ460501" - ], - "Torque_teno_sus_virus_1b__TTV2DT1" : [ - "JX535328" - ], - "South_African_cassava_mosaic_virus__MG_MG545A3_11" : [ - "KJ888036" - ], - "Bluetongue_virus__BTV1_SAD2012" : [ - "KC896852" - ], - "Enterovirus_A71_Chongqing2_09_China" : [ - "GQ994990" - ], - "Rotavirus_G8__U25_96_River_Switzerland" : [ - "AF045228" - ], - "Human_poliovirus_3_NIE0918517" : [ - "KJ170663" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5118_serum" : [ - "HQ891012" - ], - "Hepatitis_B_virus__C62" : [ - "EU859951", - "EU939662" - ], - "Turnip_mosaic_virus__IRN_TRa6" : [ - "AB440238" - ], - "Infectious_bronchitis_virus_ck_CH_LDL_091022" : [ - "JX195175" - ], - "Dengue_virus_2__DENV_2_US_BID_V1411_2007" : [ - "EU596489" - ], - "Shallot_latent_virus__SW3" : [ - "JQ899443" - ], - "Foot_and_mouth_disease_virus___type_O__JPN_1_2010" : [ - "KF112885" - ], - "Hepatitis_B_virus__PW5" : [ - "EU239220" - ], - "Sindbis_virus__LEIV_9298" : [ - "JQ771799" - ], - "Wheat_dwarf_virus__SXDT07_2" : [ - "KJ536106" - ], - "Human_immunodeficiency_virus_1__Q23_CxC" : [ - "AF004885" - ], - "Tomato_leaf_curl_New_Delhi_virus__Pakistan_Solanum_1997" : [ - "AJ620188", - "DQ116883", - "AJ620187" - ], - "Border_disease_virus_H2121__Chamois_1" : [ - "GU270877" - ], - "Torque_teno_sus_virus_1a__TTV1Bj1_1" : [ - "HM633242" - ], - "Eragrostis_streak_virus__ESV_ZmGur" : [ - "NC_010352" - ], - "Bagaza_virus__96363" : [ - "EU684972" - ], - "Squash_leaf_curl_virus__Cairo" : [ - "DQ285019" - ], - "Hepatitis_C_virus__5009_FU24" : [ - "EU362885" - ], - "Hepatitis_B_virus__bne6" : [ - "FN594748" - ], - "South_African_cassava_mosaic_virus__MG_MG571A1_11" : [ - "KJ888044" - ], - "Hepatitis_B_virus__MY832150" : [ - "KJ803754" - ], - "Hepatitis_B_virus__bww1063" : [ - "KC774382" - ], - "Sida_mottle_virus__Brazil" : [ - "NC_004637" - ], - "Tobacco_mild_green_mosaic_virus__HP" : [ - "DQ821941" - ], - "Macaca_fascicularis_polyomavirus_1__2085" : [ - "NC_019851" - ], - "Mycoplasma_fermentans_M64" : [ - "NC_014921" - ], - "Zucchini_yellow_mosaic_virus__7th" : [ - "JN192422" - ], - "Maize_streak_virus__MSV_A_NG_Oko_N32a_2007" : [ - "HQ693391" - ], - "Hepatitis_B_virus_genotype_F_VNZ8323" : [ - "AB036912" - ], - "Sulfolobus_spindle_shaped_virus_4" : [ - "NC_009986" - ], - "Hepatitis_B_virus__04D04HCC" : [ - "AB014363" - ], - "Cotton_leaf_curl_Multan_betasatellite__NH01" : [ - "JX286661" - ], - "Human_poliovirus_1__CHN_Hebei_91_2__CHN_3645HB91" : [ - "AF111953" - ], - "Thermus_phage_P23_77" : [ - "NC_013197" - ], - "Hepatitis_B_virus__IVb" : [ - "AY167099" - ], - "Simian_hemorrhagic_fever_virus_LVR_42_0_M6941" : [ - "NC_003092" - ], - "Dengue_virus_3__249_BR_PE_05" : [ - "JX669500" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V232_2003" : [ - "EU256070" - ], - "Porcine_circovirus_2_HLJ2_HLJ" : [ - "EF592575" - ], - "Phomopsis_vexans_RNA_virus__1" : [ - "NC_026135" - ], - "Human_immunodeficiency_virus_1__pXJDC6291_3_6" : [ - "KC503854" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_334_00" : [ - "DQ989304" - ], - "Sweet_potato_leaf_curl_virus__RL7" : [ - "EU267799" - ], - "Tomato_yellow_leaf_curl_virus__Baoding" : [ - "GU951436" - ], - "South_African_cassava_mosaic_virus__MG_MG262A2_10" : [ - "KJ887969" - ], - "Hepatitis_B_virus__HK1402" : [ - "DQ089783" - ], - "JC_polyomavirus__KO_3" : [ - "AB074586" - ], - "Vaccinia_virus_Brazil_Serro_2" : [ - "KF179385" - ], - "Reston_ebolavirus_Alice__TX_USA_MkCQ8167_RESTV_M_fascicularis_tc_PHL_USA_1996_Ferlite__Philippines_Alice__TX" : [ - "JX477166" - ], - "Infectious_bronchitis_virus_Mass41_1972" : [ - "FJ904721" - ], - "Hepatitis_B_virus__MY799841" : [ - "KJ803762" - ], - "Phodopus_sungorus_papillomavirus_type_1__APV34" : [ - "LM653111" - ], - "Hepatitis_B_virus__GU1408" : [ - "GQ161790" - ], - "Tahyna_virus_89" : [ - "KF361876" - ], - "Rotavirus_A_02V0002G3" : [ - "FJ169858", - "FJ169862", - "FJ169860", - "FJ169853", - "FJ169856", - "FJ169863", - "FJ169857", - "FJ169854", - "FJ169861", - "FJ169855", - "FJ169859" - ], - "Rubella_virus_RVi_Springfield_MA_USA_49_98_1E" : [ - "JN635287" - ], - "Canine_parvovirus_2a__UY306" : [ - "KM457135" - ], - "Feline_calicivirus__5789" : [ - "JX519210" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL089A" : [ - "AB985310", - "AB985542" - ], - "Burkholderia_phage_JG068" : [ - "NC_022916" - ], - "Tomato_leaf_curl_Gandhinagar_virus__pToGNAX15" : [ - "NC_023034" - ], - "Pepper_mild_mottle_virus_L4BV" : [ - "AB276030" - ], - "Middle_East_respiratory_syndrome_coronavirus_Hu_Oman_2285_2013" : [ - "KT156560" - ], - "Burkholderia_CCGE1001" : [ - "NC_015137", - "NC_015136" - ], - "Porcine_circovirus_2__HKS091_04" : [ - "DQ997817" - ], - "Rice_yellow_mottle_virus__Ma10" : [ - "AJ608208" - ], - "Cucumber_leaf_spot_virus" : [ - "DQ227315", - "NC_007816" - ], - "Sclerotinia_sclerotiorum_hypovirulence_associated_DNA_virus_1__SsHADV_1_NZ_H6_2012" : [ - "KF268025" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V123_1992" : [ - "EU482888" - ], - "Mycobacterium_phage_Cjw1" : [ - "NC_004681" - ], - "Hepatitis_B_virus__EIH45AChinese" : [ - "EF473973" - ], - "Hepatitis_B_virus__9615549" : [ - "AY934774" - ], - "HBV_genotype_C__NMB09124" : [ - "AB554020" - ], - "African_cassava_mosaic_virus__MG_MG38A1_06" : [ - "KJ887854" - ], - "Tomato_leaf_curl_New_Delhi_virus__Pakistan_Solanum_2009" : [ - "FN435310", - "FN435309", - "FN435311", - "FN435312" - ], - "Hepatitis_C_virus__QC180" : [ - "KJ439777" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8383_2003" : [ - "KJ627667" - ], - "Tembusu_virus_Du_CH_LSD_110128" : [ - "KC136210" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_46_2012" : [ - "KJ686160" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL055A" : [ - "AB985294", - "AB985525" - ], - "Enterovirus_A71_NB_2010_01" : [ - "JN001860" - ], - "Maize_streak_virus__MSV_A_NG_Eji5_N33_2007" : [ - "HQ693373" - ], - "Maize_streak_virus__MSV_A_NG_Iba5_N22b_2007" : [ - "HQ693379" - ], - "Hepatitis_B_virus__S1158_7" : [ - "FJ787482" - ], - "Artichoke_latent_virus__FR37" : [ - "NC_026759" - ], - "Hepatitis_B_virus_513_16a" : [ - "KR013792" - ], - "Caulobacter_phage_CcrColossus" : [ - "NC_019406" - ], - "Torque_teno_virus__TTV_HD15a__gbCsCt38_2" : [ - "FR751472" - ], - "Dengue_virus_4_H774846_DENV_4_ROR7542" : [ - "JQ513333" - ], - "Maize_streak_virus__MSV_B1_Za_Elu_M27" : [ - "EU628583" - ], - "Hepatitis_B_virus__CAR024" : [ - "AM494691" - ], - "Vibrio_phage_VP882" : [ - "NC_009016" - ], - "Human_papillomavirus_type_6__CAC301" : [ - "FR751328" - ], - "Maize_streak_virus__MSV_UKas43" : [ - "EF015779" - ], - "Human_polyomavirus_12_hu1403" : [ - "NC_020890" - ], - "Dengue_virus_1_HawM3430" : [ - "DQ672561" - ], - "Skua_adenovirus_1__T03" : [ - "NC_016437" - ], - "Poinsettia_mosaic_virus__JO1" : [ - "AB550789" - ], - "Chaetoceros_lorenzianus_DNA_virus_ClorDNAV01" : [ - "NC_015211" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota1" : [ - "KP283414" - ], - "African_swine_fever_virus_OURT_88_3__OURT_88_3" : [ - "AM712240" - ], - "Merkel_cell_polyomavirus__12a" : [ - "HM011541" - ], - "Enterovirus_A71_SDLY96_D" : [ - "JX244185" - ], - "Hepatitis_B_virus__BFJT1996_1" : [ - "AB642091" - ], - "Peste_des_petits_ruminants_virus_Nigeria_75_1" : [ - "HQ197753", - "X74443" - ], - "Wheat_dwarf_virus__WDV_HU_2Marton" : [ - "FN806785", - "FN806786" - ], - "Tomato_yellow_leaf_curl_virus__neyshabur" : [ - "JQ414025" - ], - "Rice_black_streaked_dwarf_virus__maize" : [ - "AF432355" - ], - "Human_coronavirus_NL63_NL63_DEN_2009_22" : [ - "JQ900256" - ], - "Chikungunya_virus__CU_Chik_OBF" : [ - "GU908223" - ], - "Hepatitis_B_virus__J103" : [ - "GQ377568" - ], - "Torque_teno_virus__JA2B" : [ - "AF122918" - ], - "Satsuma_dwarf_virus__S_58" : [ - "NC_003786", - "NC_003785" - ], - "Dengue_virus_1__DENV_1_NI_BID_V2646_2008" : [ - "GQ199858" - ], - "Hepatitis_B_virus__FEN52" : [ - "JF440004" - ], - "South_African_cassava_mosaic_virus__MG_MG490A3_11" : [ - "KJ888023" - ], - "Citrus_tristeza_virus__FS701_T36" : [ - "KC517486" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC09B29_2008" : [ - "JF909084" - ], - "Hepatitis_B_virus__I175" : [ - "FJ562299" - ], - "Dengue_virus_1__DENV_1_IND_55290_2005" : [ - "JQ922548" - ], - "Human_parainfluenza_virus_3_HPIV3_USA_629_D01959_2007" : [ - "KF687318" - ], - "Culex_flavivirus_Toyama71" : [ - "AB701766" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3486_2008" : [ - "GQ868551" - ], - "Banana_bunchy_top_virus__DanZhouHD" : [ - "GU559706" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4075_2008" : [ - "GU131823" - ], - "Jacunda_virus" : [ - "HM466935", - "HM466936", - "HM466934" - ], - "Enterobacteria_phage_EK99P_1" : [ - "NC_024783" - ], - "Hepatitis_B_virus__J84" : [ - "GQ377553" - ], - "Hepatitis_B_virus__HBV_NEP30" : [ - "AB116088" - ], - "Human_immunodeficiency_virus_1_CM240" : [ - "HIVU54771" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG213A1_09" : [ - "KJ887953" - ], - "Tobacco_rattle_virus" : [ - "AB369280" - ], - "Beet_curly_top_Iran_virus__IR_Yaz_B35K_Sug_06" : [ - "JQ707951" - ], - "West_Nile_virus__WNV_1_US_BID_V4692_2001" : [ - "HM756661" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9510_2013" : [ - "KJ643561" - ], - "Porcine_circovirus_2_05_22779" : [ - "EF394775" - ], - "Candidatus_Liberibacter_solanacearum_CLso_ZC1" : [ - "NC_014774" - ], - "Cotton_leaf_curl_Multan_betasatellite__JM" : [ - "HQ455364" - ], - "Hepatitis_B_virus__clz1032" : [ - "KC774191" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT51B14_2008" : [ - "JF909192" - ], - "Hepatitis_B_virus__Ag18" : [ - "KJ843180" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3562_2006" : [ - "GU131838" - ], - "Human_immunodeficiency_virus_1__03ZASK107B1" : [ - "DQ056410" - ], - "Melon_chlorotic_mosaic_virus__VE10_148" : [ - "KF670634", - "KF670635" - ], - "Hepatitis_B_virus__TK12" : [ - "JF754634" - ], - "Leptospirillum_ferrooxidans_C2_3" : [ - "NC_017094" - ], - "Toscana_virus__SI_68809" : [ - "EU003179" - ], - "Basella_rugose_mosaic_virus__BR" : [ - "DQ821939" - ], - "Cardinium_endosymbiont_cEper1_of_Encarsia_pergandiella" : [ - "NC_018606", - "NC_018605" - ], - "Budgerigar_fledgling_disease_polyomavirus_APV7" : [ - "AB453165" - ], - "Human_papillomavirus_type_38" : [ - "HPU31787" - ], - "Hepatitis_delta_virus_dFr2736" : [ - "AM183327" - ], - "Enterobacteria_phage_phiX174_gamma" : [ - "HM775306" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1NA4" : [ - "FJ744146" - ], - "Squash_leaf_curl_virus__PA2_Q328" : [ - "KM595225" - ], - "West_Nile_virus__WNV_1_US_BID_V5181_2004" : [ - "JF488091" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_LBC_LBC33" : [ - "KF385425" - ], - "Dengue_virus_3__DENV_3_KH_BID_V4307_2007" : [ - "JF295012" - ], - "Tick_borne_encephalitis_virus_Petracova" : [ - "KJ922513" - ], - "Hepatitis_B_virus__919028" : [ - "JN040804" - ], - "Sacbrood_virus_AcSBV_Kor4" : [ - "KP296803" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_Galah_04_093A" : [ - "KF385432" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_95P_047_01_1995" : [ - "KP258707" - ], - "Porcine_circovirus_2__CQFL07" : [ - "KF742543" - ], - "Porcine_circovirus_2__JZB9" : [ - "KC821785" - ], - "Hepatitis_B_virus__bne281" : [ - "FN594769" - ], - "BK_polyomavirus__CAF_9" : [ - "AB263914" - ], - "Human_papillomavirus_type_70" : [ - "HPU21941" - ], - "Dengue_virus_2__DC811Y12" : [ - "KM279567" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1713_2007" : [ - "FJ024278" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2697_2006" : [ - "FJ882523" - ], - "Dengue_virus_4__DENV_4_CO_BID_V3410_2004" : [ - "GQ868583" - ], - "Eastern_equine_encephalitis_virus_EEEV_Coquillettidia_USA_5467_2001" : [ - "KJ469570" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3398_2003" : [ - "GQ868574" - ], - "Bhendi_yellow_vein_India_virus__India_Bangalore_OYNun_2006___OYNun" : [ - "GU112034" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__JS2011_034" : [ - "KC505132", - "KC505133", - "KC505134" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus__Sicily__Sicily_TYLCV_Sic" : [ - "Z28390" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K18" : [ - "AJ717566", - "AJ704940" - ], - "Pasteurella_multocida_Pm70" : [ - "NC_002663" - ], - "Sulfobacillus_acidophilus_DSM_10332" : [ - "NC_016884", - "NC_016888" - ], - "Cauliflower_mosaic_virus__TUR213" : [ - "AB863178" - ], - "Usutu_virus_V69" : [ - "KJ438712" - ], - "Hepatitis_B_virus_C1248" : [ - "DQ975272" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus__Portugal_Algarve_6_2001" : [ - "JN859136" - ], - "Rhizoctonia_cerealis_endornavirus_1__R0959" : [ - "NC_022619" - ], - "Duck_hepatitis_A_virus_1_HDHV1_BJ" : [ - "FJ157172" - ], - "Hepatitis_B_virus__M85_1046" : [ - "EU331001" - ], - "Maize_streak_virus__MSV_A_ZM_Chi3_Z8_2008" : [ - "HQ693454" - ], - "Chikungunya_virus__IND_KR51" : [ - "FJ000066" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Prime_Pac" : [ - "DQ779791" - ], - "Human_immunodeficiency_virus_1__04KMH5" : [ - "DQ295193" - ], - "Hepatitis_B_virus__IHHBS14" : [ - "KJ533389" - ], - "Human_immunodeficiency_virus_1__07BR844" : [ - "FJ771010" - ], - "Human_immunodeficiency_virus_1__INDNARI_0218437" : [ - "EU000511", - "EU000510", - "EU000509" - ], - "Hepatitis_B_virus__S3_4" : [ - "EU916214" - ], - "Duck_hepatitis_A_virus_1__CL" : [ - "EF427899" - ], - "Human_papillomavirus_type_52__TJ49_52" : [ - "GQ472848" - ], - "Tomato_yellow_leaf_curl_virus__Sinaloa" : [ - "EF523478" - ], - "Human_coronavirus_HKU1_N22" : [ - "DQ415899" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2175_2000" : [ - "FJ639747" - ], - "Hepatitis_C_virus_subtype_4g__HCV_4g_GB_BID_G1656" : [ - "JX227971" - ], - "Tomato_leaf_curl_Liwa_virus__Tom_44" : [ - "KF111686" - ], - "Desulfatibacillum_alkenivorans_AK_01" : [ - "NC_011768" - ], - "Hepatitis_B_virus__MY062175" : [ - "KJ803814" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B4J3" : [ - "JN053441" - ], - "Human_immunodeficiency_virus_1__00BW1795_6" : [ - "AF443097" - ], - "Acinetobacter_baumannii_AB307_0294" : [ - "NC_011595" - ], - "Avian_leukosis_virus_TymS_90" : [ - "AB303223" - ], - "Hepatitis_B_virus__HBV163" : [ - "JN688712" - ], - "TT_virus_sle2072" : [ - "AM712032" - ], - "West_Nile_virus__WNV_1_Culex_BID_V5808_midgut" : [ - "JN183897" - ], - "Hepatitis_B_virus__10B17" : [ - "AB675679" - ], - "Hepatitis_B_virus__MY571524" : [ - "KJ803809" - ], - "Soybean_mosaic_virus__NN" : [ - "KF982784" - ], - "Rhizobium_leguminosarum_bv__trifolii_WSM1325" : [ - "NC_012853", - "NC_012848", - "NC_012850", - "NC_012854", - "NC_012858", - "NC_012852" - ], - "Rotavirus_A_RVA_Human_wt_ITA_AV28_2010_G9P8_RVA_Human_wt_ITA_AV28_2010_G9P8_AV28" : [ - "JX195074", - "JX195083", - "JX195082", - "JX195079", - "JX195084", - "JX195081", - "JX195077", - "JX195078", - "JX195075", - "JX195076" - ], - "Hepatitis_B_virus__3319v1" : [ - "KF922422" - ], - "Dengue_virus_1__CHN_GuangDong_ZhongShan_HuangPu01_2013" : [ - "KF971869" - ], - "Porcine_circovirus_2__DK440case" : [ - "EF565353" - ], - "Cyprinid_herpesvirus_3_KHV_GZ11_moribund_koi" : [ - "KJ627438" - ], - "Hepatitis_B_virus__MLT0767" : [ - "KF779292" - ], - "Human_poliovirus_1_USA10786" : [ - "EF682359" - ], - "Hepatitis_B_virus__8052_03506" : [ - "JN792914" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0080" : [ - "KP759749" - ], - "Maize_chlorotic_mottle_virus__Yunnan2" : [ - "JQ982468" - ], - "Vibrio_phage_VvAW1" : [ - "NC_020488" - ], - "Cotton_leaf_curl_Multan_virus__Faisalabad2___31cf" : [ - "AJ496287" - ], - "Porcine_circovirus_2__Villa_Clara_V4" : [ - "FN398025" - ], - "Dragonfly_cyclovirus_3__FL2_5E_2010" : [ - "NC_023868" - ], - "Streptomyces_SirexAA_E" : [ - "NC_015953" - ], - "Dengue_virus_2__DENV_2_US_BID_V1036_2006" : [ - "EU482549" - ], - "Hepatitis_B_virus__WSQ_k1" : [ - "KM213033" - ], - "Human_herpesvirus_5__AD169_BAC" : [ - "AC146999" - ], - "Soybean_mosaic_virus__WS101" : [ - "FJ640957" - ], - "Streptomyces_fulvissimus_DSM_40593" : [ - "NC_021177" - ], - "Torque_teno_virus__TUPB" : [ - "AF247137" - ], - "Hepatitis_B_virus__J8" : [ - "GQ377514" - ], - "Human_immunodeficiency_virus_1__97VNHCM319" : [ - "FJ185242" - ], - "Human_papillomavirus_type_5__S401" : [ - "JN211194" - ], - "Human_coronavirus_OC43_OC43_human_USA_901_43_1990" : [ - "KF530061" - ], - "Salmonella_phage_ST64B" : [ - "NC_004313" - ], - "Human_rotavirus_A_US1111" : [ - "AJ400637" - ], - "Human_immunodeficiency_virus_1__MBCC54" : [ - "AF042103" - ], - "Dengue_virus_2__DENV_2_JM_BID_V2963_2007" : [ - "GQ199892" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH23_2011" : [ - "KM188448" - ], - "Daphne_virus_S_type_strain__K" : [ - "NC_008020" - ], - "Hepatitis_B_virus__NB161M_m161" : [ - "KJ173360" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1921_2008" : [ - "FJ410254" - ], - "Banana_streak_MY_virus__BSMYV_IN2" : [ - "KF724855" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG169A1_09" : [ - "KJ887939" - ], - "Broad_bean_wilt_virus_2__XJ14_3" : [ - "HQ283389", - "FN985164" - ], - "Simian_immunodeficiency_virus__SIVcpzCAM13" : [ - "AY169968" - ], - "Watermelon_chlorotic_stunt_virus__IL1_7" : [ - "KM820239" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD02_2013" : [ - "KM229803" - ], - "BK_polyomavirus__SHA_56" : [ - "AB365174" - ], - "Hepatitis_B_virus__H3_2nd" : [ - "AY862865", - "AY862866" - ], - "Human_papillomavirus_type_11__JO_RRP_3" : [ - "HE574703" - ], - "Watermelon_chlorotic_stunt_virus__JO2_51" : [ - "KM820204" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V91_2003" : [ - "EU155245" - ], - "Hepatitis_B_virus__CX012M_e221" : [ - "KJ173348" - ], - "Vibrio_phage_fs2" : [ - "NC_001956" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2235_2004" : [ - "FJ639802" - ], - "Pepper_leaf_curl_Bangladesh_virus__Pakistan" : [ - "DQ116881" - ], - "Tomato_leaf_curl_China_betasatellite__SC230" : [ - "KF640694" - ], - "Hepatitis_B_virus__PG_14" : [ - "KF471654" - ], - "Mycobacterium_phage_Bethlehem" : [ - "NC_009878" - ], - "Chicken_anemia_virus_GD_J_12" : [ - "KF224934" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4074_2008" : [ - "GU131822" - ], - "West_Nile_virus__WNV_USA_BID_G15507" : [ - "JX503098" - ], - "Bluetongue_virus_15_RSArrrr_15" : [ - "AM900379" - ], - "Hepatitis_B_virus__I189" : [ - "FJ562303" - ], - "Trichoplusia_ni_ascovirus_2c" : [ - "NC_008518" - ], - "Beak_and_feather_disease_virus__3IT09" : [ - "KF723385" - ], - "West_Nile_virus__WNV_1_US_BID_V4625_2008" : [ - "HQ671721" - ], - "Hepatitis_B_virus_adw_MX_HBV_0114" : [ - "HM066946" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda49_05" : [ - "KC706649" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE0425_2009_A" : [ - "KJ627435" - ], - "Newcastle_disease_virus__JS_9_05_Go" : [ - "FJ430160" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V273_2003" : [ - "EU155356" - ], - "Bat_coronavirus_HKU5_3_TT06f" : [ - "EF065511" - ], - "Porcine_circovirus_2__PCV_D" : [ - "KC515022" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B4J15" : [ - "JN053435" - ], - "Hepatitis_B_virus_HBV_P60" : [ - "KC510660" - ], - "Maize_streak_virus__MSV_A_ZA_Let3_O14_1989" : [ - "FJ882122" - ], - "Enterobacteria_phage_phiX174__CGGhiC" : [ - "AF299309" - ], - "Beet_necrotic_yellow_vein_virus__F2" : [ - "BNYVVR4A" - ], - "Hepatitis_B_virus__C_Tonga_BD5561_2001" : [ - "HQ700559" - ], - "Pepino_mosaic_virus__P22" : [ - "HQ650560" - ], - "Hepatitis_B_virus__A12" : [ - "FJ904396" - ], - "Tadarida_brasiliensis_polyomavirus_1" : [ - "NC_026012" - ], - "Human_herpesvirus_4_Mutu" : [ - "KC207814" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC243" : [ - "KF551587" - ], - "McMurdo_Ice_Shelf_pond_associated_circular_DNA_virus_8__alg49_57" : [ - "NC_024484" - ], - "Hepatitis_A_virus__IND_HAV_07F" : [ - "FJ360731" - ], - "BK_polyomavirus__SJH_LG_168" : [ - "JN192433" - ], - "JC_polyomavirus__JCV183FLC_06" : [ - "JF425493" - ], - "South_African_cassava_mosaic_virus__MG_MG400A2_11" : [ - "KJ887711" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E2421_2010_G3P_8__E2421" : [ - "KF371834", - "KF371826", - "KF371833", - "KF371825", - "KF371829", - "KF371827", - "KF371830", - "KF371831", - "KF371828" - ], - "Melon_chlorotic_mosaic_virus__VE10_180" : [ - "KF670639", - "KF670638" - ], - "Hepatitis_B_virus_C_1858_sa14" : [ - "AF223964" - ], - "Mumps_virus_MuVi_Hikaru_JPN_22_97_B" : [ - "AB823535" - ], - "Mumps_virus_genotype_G_MuV_Gabon_13_2_G" : [ - "KM597072" - ], - "Tomato_leaf_curl_Gujarat_virus__TC153" : [ - "KP164862" - ], - "Liberibacter_phage_SC1" : [ - "NC_019549" - ], - "Zucchini_yellow_mosaic_virus__E71" : [ - "JN192419" - ], - "Mumps_virus_Y213" : [ - "AB576764" - ], - "Hepatitis_B_virus_adr_subtype_NSS_4" : [ - "AB042285" - ], - "FTLS_virus__YXX1" : [ - "KF356521", - "KF356533", - "KF356545" - ], - "Chlamydophila_pneumoniae_TW_183" : [ - "NC_005043" - ], - "Mulberry_vein_banding_virus__XZDL_1" : [ - "KM819704" - ], - "Torque_teno_virus_26__Mf_TTV3" : [ - "NC_014079" - ], - "Mumps_virus__87_1005" : [ - "AF314562" - ], - "Simian_T_lymphotropic_virus_2" : [ - "STU90557" - ], - "Japanese_encephalitis_virus_TL" : [ - "AF098737" - ], - "Synechococcus_phage_ACG_2014a__Syn7803US19" : [ - "KJ019087" - ], - "Human_papillomavirus_type_6__40" : [ - "HG793848" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Pakistan_Luffa_Burewala_2011" : [ - "HF567944" - ], - "JC_polyomavirus__Luz_10" : [ - "AB113126" - ], - "Human_respiratory_syncytial_virus_A_GZ_11_224" : [ - "KM517572" - ], - "Tomato_chlorosis_virus__AT80_99_IC" : [ - "KJ740257", - "KJ740256" - ], - "Zinnia_leaf_curl_disease_associated_sequence" : [ - "AJ316041", - "NC_005047" - ], - "Grapevine_red_blotch_associated_virus__CS337_1" : [ - "KC896624" - ], - "Hepatitis_B_virus__clz1022" : [ - "KC774184" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2899_2006" : [ - "FJ898416" - ], - "Macacine_herpesvirus_1_E2490" : [ - "NC_004812" - ], - "Cauliflower_mosaic_virus__IRN6" : [ - "AB863141" - ], - "Norovirus_Hu_GII_4_Kumamoto5_2006_JP_Hu_GII_4_Kumamoto5_2006_JP" : [ - "AB447463" - ], - "Chandipura_virus__CIN_0451" : [ - "NC_020805" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI53_12" : [ - "HE979772" - ], - "JC_polyomavirus__SO_3" : [ - "AB127014" - ], - "Canine_distemper_virus__164071" : [ - "EU716337" - ], - "West_Nile_virus_AZ10_892" : [ - "KF704158" - ], - "Hepatitis_B_virus__4" : [ - "EU155893" - ], - "Horsegram_yellow_mosaic_virus__India_Banglore_French_bean_2011" : [ - "KC019307", - "KC019306" - ], - "Hepatitis_B_virus__7_1276" : [ - "JX096958" - ], - "Mycobacterium_phage_Hawkeye" : [ - "NC_024209" - ], - "Panicum_streak_virus__PanSV_A_SBak" : [ - "EU224261" - ], - "Hepatitis_B_virus__CMR151" : [ - "AB194949" - ], - "Pseudomonas_phage_PAK_P3" : [ - "NC_022970" - ], - "Acidithiobacillus_ferrooxidans_ATCC_23270" : [ - "NC_011761" - ], - "JC_polyomavirus__JCV183FLC_08" : [ - "JF425495" - ], - "Hepatitis_B_virus_A0583" : [ - "DQ993181" - ], - "Lily_virus_X" : [ - "NC_007192" - ], - "Hepatitis_B_virus__D3_50157" : [ - "FJ692506" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2977_2001" : [ - "FJ898446" - ], - "Sida_leaf_curl_virus_associated_DNA_1__Hn60" : [ - "AM050735" - ], - "Human_coronavirus_HKU1_N16" : [ - "DQ415912" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20144865" : [ - "KR653231" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K66" : [ - "AJ717524", - "AJ704954" - ], - "Dengue_virus_4__DENV_4_CO_BID_V1600_1997" : [ - "FJ024476" - ], - "Human_papillomavirus_type_39__Qv36565" : [ - "KC470238" - ], - "Eupatorium_yellow_vein_virus__Suya___Suya_2003" : [ - "AB300463" - ], - "Hepatitis_B_virus__HBV55" : [ - "KC875289" - ], - "Bean_yellow_mosaic_virus__AR87C" : [ - "HG970863" - ], - "Infectious_bronchitis_virus_Conn46_1991" : [ - "FJ904719" - ], - "Dengue_virus_4__DENV_4_US_BID_V2436_1996" : [ - "GQ199882" - ], - "BK_polyomavirus_MMR_28" : [ - "AB269843" - ], - "Tomato_leaf_curl_China_betasatellite__Y319" : [ - "AM260726" - ], - "Hepatitis_B_virus__C94" : [ - "EU939621" - ], - "Escherichia_phage_bV_EcoS_AKS96" : [ - "NC_024789" - ], - "Hepatitis_B_virus__cxa1194" : [ - "KC774291" - ], - "Cotton_leaf_curl_Multan_betasatellite__HN08" : [ - "KF444949" - ], - "Campylobacter_jejuni_00_2426" : [ - "NC_022352" - ], - "SARS_coronavirus_P2_P2" : [ - "FJ882963" - ], - "Hepatitis_B_virus__gib151" : [ - "AJ131574" - ], - "Hepatitis_B_virus__PNF4865" : [ - "KF779342" - ], - "Syntrophus_aciditrophicus_SB" : [ - "NC_007759" - ], - "Staphylococcus_phage_StauST398_3" : [ - "NC_021332" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3395_2003" : [ - "GQ868572" - ], - "Eastern_equine_encephalitis_virus_EEEV_Coquillettidia_USA_M05_315_2005" : [ - "KJ469568" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8415_2001" : [ - "KJ627675" - ], - "Hepatitis_C_virus__QC165" : [ - "KJ439767" - ], - "Foot_and_mouth_disease_virus___type_A_IND17_77" : [ - "HM854022" - ], - "Hepatitis_B_virus__LAMr_Pt__22_Adefovir_treated_Pt__4" : [ - "AB367413" - ], - "Xanthomonas_phage_phiL7" : [ - "NC_012742" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C26" : [ - "KJ019153" - ], - "Hepatitis_B_virus__PNF4733" : [ - "KF779337" - ], - "Human_parechovirus_1__2007_863" : [ - "GQ183034" - ], - "Human_bocavirus_CBJ030" : [ - "KM464730" - ], - "Myxoma_virus_Aust_Southwell_Hill_2_96_SWH_1209" : [ - "JX565583" - ], - "Avian_orthoreovirus_HB06" : [ - "EU526387" - ], - "Pear_black_necrotic_leaf_spot_virus__South_Korea" : [ - "AY596172" - ], - "Dengue_virus_3__DENV_3_USA_633798_1963" : [ - "JQ922554" - ], - "Watermelon_chlorotic_stunt_virus__PA1_J44" : [ - "KM820271" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9385_2013" : [ - "KJ643473" - ], - "Enterovirus_A71__Henan_ZMD_CHN_2012" : [ - "KP198624" - ], - "Porcine_circovirus_2_09HeN" : [ - "HQ395033" - ], - "Human_immunodeficiency_virus_1__CH77E_flB3" : [ - "FJ496002" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1772_2008" : [ - "FJ410192" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LSD_101006" : [ - "JF828992" - ], - "Human_mastadenovirus_D_human_USA_CHOP_LRRI_2010_P20H20F15_49_21_10_vt10230" : [ - "KJ626291" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00090_1986_NEW_P38H32F27" : [ - "KF268325" - ], - "West_Nile_virus__WNV_1_US_BID_V4806_2005" : [ - "HM756675" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8405_2003" : [ - "KJ627671" - ], - "Infectious_salmon_anemia_virus__Vedoy_99" : [ - "AF262383" - ], - "Helicobacter_pylori_Puno120" : [ - "NC_017378", - "NC_017377" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1843_2008" : [ - "FJ410214" - ], - "Cowpox_virus_HumGri07_1" : [ - "KC813511" - ], - "Hepatitis_B_virus__F1_3" : [ - "GU815716" - ], - "Hepatitis_B_virus__BOL71" : [ - "AB365448" - ], - "Bovine_polyomavirus_3__3S5" : [ - "NC_025800" - ], - "Sida_golden_mosaic_Florida_virus_Malvastrum_Cuba_Havana_Malvastrum_111_2009_111" : [ - "NC_014447", - "NC_014446" - ], - "Dengue_virus_1_D1_SG_05K872DK1_2005" : [ - "EU081228" - ], - "Cotton_leaf_curl_Multan_betasatellite__ZhH" : [ - "HQ455366" - ], - "Budgerigar_fledgling_disease_polyomavirus_APV2" : [ - "AB453160" - ], - "Sacbrood_virus_S2" : [ - "JX270799" - ], - "Tent_making_bat_hepatitis_B_virus__TBHBV_Pan362_Uro_bil_PAN_2010" : [ - "KC790380" - ], - "Human_immunodeficiency_virus_1__CH256_w96" : [ - "KC156214" - ], - "Tomato_severe_rugose_virus__BR_Vic21_09" : [ - "JX865634" - ], - "Hantaanvirus_CGAa4MP9_CGAa4MP9" : [ - "EF990915", - "EF990929" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_22__AHEaCV_22_NZ_3009SG_2012" : [ - "KM874352" - ], - "Human_herpesvirus_5_BE_8_2010" : [ - "KP745708" - ], - "Ngari_virus_SUD_HKV66" : [ - "JX857319", - "JX857321" - ], - "Southern_rice_black_streaked_dwarf_virus__Ninh_Binh_2" : [ - "KM576878", - "KM576890" - ], - "Arthrobacter_Rue61a" : [ - "NC_018531", - "NC_009453", - "NC_018532" - ], - "Porcine_circovirus_2_PCV2_RP3" : [ - "FJ667585" - ], - "South_African_cassava_mosaic_virus__MG_MG140A8_09" : [ - "KJ887933" - ], - "Human_poliovirus_3_NIE1118456" : [ - "KJ170618" - ], - "Beak_and_feather_disease_virus__2NC37F" : [ - "JX049204" - ], - "Chikungunya_virus_S27_African_prototype" : [ - "NC_004162" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_17__AHEaCV_17_NZ_2032TU_2012" : [ - "KM874343" - ], - "Tomato_leaf_curl_China_betasatellite__G61" : [ - "AJ704616" - ], - "Cucumber_green_mottle_mosaic_virus__XS7" : [ - "KM873783" - ], - "Ravn_virus___Ravn__Kenya__1987__R3" : [ - "EU500826" - ], - "Olive_mild_mosaic_virus__GP" : [ - "HQ651834", - "HQ651833", - "HQ651832", - "NC_006939" - ], - "Encephalomyocarditis_virus_BD2" : [ - "KF709977" - ], - "Hepatitis_B_virus__AIDS28" : [ - "JQ801483" - ], - "Streptococcus_pyogenes_phage_315_2" : [ - "NC_004585" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_93I_109A_01_1993" : [ - "KJ723466" - ], - "Human_poliovirus_3_NIE1018489" : [ - "KJ170582" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7437_2009" : [ - "KJ627338" - ], - "Beak_and_feather_disease_virus__CS11_1361_OBP_VIC_B10750" : [ - "KF188693" - ], - "Mulberry_mosaic_dwarf_associated_virus__AK2_38" : [ - "KP699131" - ], - "Hepatitis_B_virus__WHQNT" : [ - "JN257164" - ], - "Hepatitis_B_virus__CX012C_e220" : [ - "KJ173347" - ], - "Hepatitis_B_virus__HBV_11066" : [ - "AF121240" - ], - "Hepatitis_B_virus_327_3" : [ - "KR013909" - ], - "Salmonella_phage_S16" : [ - "NC_020416" - ], - "Southern_rice_black_streaked_dwarf_virus__Thai_Binh1" : [ - "KM454854" - ], - "Bluetongue_virus__BTV_16_Gre1999_13_S_6" : [ - "AM773703" - ], - "Chikungunya_virus_SL_CK1" : [ - "HM045801" - ], - "Propionibacterium_phage_PHL055N00__PHL055N00" : [ - "NC_027400" - ], - "Chandipura_virus__CIN_0327" : [ - "GU212858" - ], - "South_African_cassava_mosaic_virus__MG_MG569A2_11" : [ - "KJ888042" - ], - "Hepatitis_B_virus__S1104" : [ - "FJ386677" - ], - "Hepatitis_B_virus__GD4" : [ - "HQ603058" - ], - "Cotton_leaf_curl_Bangalore_virus" : [ - "NC_007290" - ], - "West_Nile_virus__WNV_1_BID_V5051" : [ - "JN819321" - ], - "Chaetoceros_tenuissimus_RNA_virus_type_II__SS10_39V" : [ - "AB971662" - ], - "Hepatitis_C_virus_subtype_2c__HCV_2c_GB_BID_G1240" : [ - "JX227951" - ], - "Porcine_circovirus_2_09HeB" : [ - "HQ395032" - ], - "Porcine_circovirus_2_SD0701" : [ - "GQ358996" - ], - "Hepatitis_B_virus__C206" : [ - "EU939606" - ], - "Passion_fruit_woodiness_virus__PWV_MU2" : [ - "NC_014790" - ], - "Rubella_virus__Surkova" : [ - "AF435866" - ], - "Norovirus_Hu_Houston_TCH186_2002_US_Hu_Houston_TCH186_2002_US" : [ - "EU310927" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM095B" : [ - "KM034549" - ], - "Pan_troglodytes_verus_polyomavirus_2a__6512" : [ - "NC_025370" - ], - "Hepatitis_B_virus__J23" : [ - "GQ377524" - ], - "HBV_genotype_D3__Mart_B47" : [ - "HE974377" - ], - "Hepatitis_delta_virus_dFr2258_dFr2258" : [ - "AM902171" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V370_2006" : [ - "EU482839" - ], - "Simiduia_agarivorans_SA1" : [ - "NC_018868" - ], - "Human_T_lymphotropic_virus_1_HN1" : [ - "KC807984" - ], - "Propionibacterium_phage_PHL041M10__PHL041M10" : [ - "NC_027391" - ], - "Foot_and_mouth_disease_virus___type_O__PAK_45_2008" : [ - "GU384683" - ], - "JC_polyomavirus__JCV183FLC_02" : [ - "JF425489" - ], - "Hepatitis_B_virus__D_NZL_PE09_1999" : [ - "HQ700553" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_IPE00957_2012_A" : [ - "KJ627433" - ], - "Tomato_yellow_leaf_curl_virus_Israel__Japan_Haruno_2005__TYLCV_Tosa_H" : [ - "AB192966" - ], - "Hepatitis_B_virus__HBNAT035" : [ - "KJ638661" - ], - "Dengue_virus_2__DENV_2_NI_BID_V658_2005" : [ - "EU482637" - ], - "Hepatitis_delta_virus_Miyako_JA_M29" : [ - "AB118840" - ], - "Sandfly_fever_Sicilian_virus_Sabin" : [ - "EF201822" - ], - "Porcine_circovirus_2__PCV_511" : [ - "KC514993" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_185_2012" : [ - "KJ686192" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1848_2008" : [ - "FJ461311" - ], - "Rabbit_hemorrhagic_disease_virus__CB137_Pt" : [ - "JX886002" - ], - "Rabies_virus_4aGV" : [ - "JN234411" - ], - "Hepatitis_B_virus__310000127" : [ - "JN792903" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7589_2007" : [ - "KJ189323" - ], - "Acetobacter_pasteurianus_IFO_3283_03" : [ - "NC_017100", - "NC_017142", - "NC_017101", - "NC_017118", - "NC_017119", - "NC_017120", - "NC_017109" - ], - "Hepatitis_B_virus__WHMLL1" : [ - "JN257187" - ], - "Human_poliovirus_2_NIE1118432" : [ - "KJ170541" - ], - "Enterovirus_A71__BJ08" : [ - "FJ828519" - ], - "Human_papillomavirus_type_35H" : [ - "X74477" - ], - "Hepatitis_B_virus__bba12" : [ - "KP341013" - ], - "Hepatitis_B_virus_C0503222_MND_F" : [ - "AP011099" - ], - "Tomato_leaf_curl_New_Delhi_virus__ToLCND_CTS" : [ - "DQ629101" - ], - "Hepatitis_B_virus__SHB618" : [ - "KJ598731" - ], - "Sugarcane_streak_Reunion_virus__SSRV_B_NG_ng1_Sam_2011" : [ - "KJ437668" - ], - "Waddlia_chondrophila_WSU_86_1044" : [ - "NC_014226", - "NC_014225" - ], - "Porcine_sapelovirus_1_V13" : [ - "NC_003987" - ], - "Puumala_virus__Mu_07_1219" : [ - "KJ994778", - "KJ994776", - "KJ994777" - ], - "Dengue_virus_3_D3_SG_05K3900DK1_2005" : [ - "EU081208" - ], - "Infectious_salmon_anemia_virus__CCBB" : [ - "NC_006498", - "NC_006499", - "NC_006500", - "NC_006503", - "NC_006501", - "NC_006497", - "NC_006502" - ], - "Prochlorococcus_marinus_MIT_9515" : [ - "NC_008817" - ], - "Hepatitis_B_virus__MLT0943" : [ - "KF779299" - ], - "Dengue_virus_1_D1_SG_05K3903DK1_2005" : [ - "EU081242" - ], - "Dengue_virus_1_FP0908" : [ - "DQ672558" - ], - "Banana_bunchy_top_virus__JN4" : [ - "AB108449", - "AB108452" - ], - "Cucumber_mosaic_virus__PNb" : [ - "DQ512476" - ], - "Hantaanvirus_CGHu3612_CGHu3612" : [ - "EF990923", - "EF990909" - ], - "Tomato_yellow_leaf_curl_virus_ZJHZ12__ZJHZ12" : [ - "FN256256" - ], - "Duck_circovirus__31_1" : [ - "KF941312" - ], - "Hepatitis_E_virus__JRA1" : [ - "AP003430" - ], - "Hepatitis_B_virus_FMU009" : [ - "AY206380" - ], - "Goutanap_virus_F35_CI_2004" : [ - "KF588036" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9523_2013" : [ - "KJ643570" - ], - "Human_bocavirus__HZ1302" : [ - "KP710209" - ], - "Enterovirus_B80_USA_CA67_10387" : [ - "AY843298" - ], - "Brachyspira_pilosicoli_95_1000" : [ - "NC_014330" - ], - "Colorado_tick_fever_virus_Florio_strain__ATCC_reference_VR_90" : [ - "NC_004180" - ], - "Hepatitis_B_virus__FH4" : [ - "AY066028" - ], - "Infectious_bronchitis_virus__ck_ZA_3665_11" : [ - "KP662631" - ], - "Helicobacter_pylori_B38" : [ - "NC_012973" - ], - "Porcine_circovirus_2__DZ2" : [ - "KC514984" - ], - "Rotavirus_A_RVA_Human_wt_USA_VU08_09_8_2008_G2P_4_P_8__mixed_genotype" : [ - "KC442953" - ], - "Dengue_virus_1_30231_97" : [ - "JN638340" - ], - "Coxsackievirus_A16__PM_15765_00" : [ - "JQ746666" - ], - "Human_metapneumovirus__Jpn03_1" : [ - "AB503857" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_23_2011" : [ - "KJ686161" - ], - "Columbid_circovirus__PL44B" : [ - "KF738858" - ], - "Brochothrix_phage_A9" : [ - "NC_015253" - ], - "Columbid_circovirus__PL48" : [ - "KF738859" - ], - "Tomato_yellow_leaf_curl_virus__BJ2" : [ - "KJ125411" - ], - "Middle_East_respiratory_syndrome_coronavirus__MERS_CoV_Jeddah_Camel_1" : [ - "KF917527" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V310_2005" : [ - "EU482875" - ], - "Hepatitis_B_virus__N005v8" : [ - "KF922421" - ], - "HBV_genotype_A_HB_JI444A_HB_JI444AF" : [ - "AP007263" - ], - "Squash_mild_leaf_curl_virus__4" : [ - "DQ285015", - "DQ285014" - ], - "BK_polyomavirus__LAB_21" : [ - "AB301092" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2010_10_13_1" : [ - "KF183946" - ], - "Hepatitis_B_virus__PRC6295" : [ - "KF779382" - ], - "Hepatitis_B_virus__P43" : [ - "EU859929" - ], - "Human_papillomavirus_type_18__BF172" : [ - "KC470225" - ], - "Tomato_leaf_curl_Philippines_virus____San_Leonardo" : [ - "DQ092867" - ], - "Hepatitis_B_virus__10A37" : [ - "AB675676" - ], - "Hepatitis_B_virus__KOR35HCC" : [ - "GQ475339" - ], - "Beak_and_feather_disease_virus__BFDV_B_B_PL_1035_2010" : [ - "JX221002" - ], - "Human_parainfluenza_virus_1_HPIV1_FRA_30384043_2010" : [ - "KF687314" - ], - "Southern_rice_black_streaked_dwarf_virus__Quang_Ngai_2" : [ - "KM576880" - ], - "Malvastrum_yellow_vein_betasatellite__Y300" : [ - "AJ971707" - ], - "Human_parainfluenza_virus_3_HPIV3_ZAF_6538_2009" : [ - "KF687346" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3543_1998" : [ - "GU056031" - ], - "Okra_mottle_virus____Brazil_okra___6328" : [ - "EU914819" - ], - "Hepatitis_B_virus__patient10" : [ - "AB300368" - ], - "Coxsackievirus_A9_Griggs" : [ - "CXA9CG" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2072_2000" : [ - "KF955332" - ], - "West_Nile_virus__WNV_1_US_BID_V7790_2012" : [ - "KJ501230" - ], - "Mycobacterium_phage_Nigel" : [ - "NC_011044" - ], - "Hepatitis_B_virus__PG_32" : [ - "KF471648" - ], - "Cucumber_Bulgarian_virus" : [ - "NC_004725" - ], - "Hepatitis_B_virus__HBV_CN578_1" : [ - "AB205123" - ], - "Bovine_viral_diarrhea_virus_2__SH2210_23" : [ - "HG426494" - ], - "Tomato_yellow_leaf_curl_Thailand_betasatellite" : [ - "KF471033" - ], - "Hepatitis_B_virus__cww1084" : [ - "KC774267" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2220_2004" : [ - "FJ639787" - ], - "Hepatitis_B_virus__WY_NJ_11" : [ - "JX026877" - ], - "Human_immunodeficiency_virus_1__C_ZA_1197MB" : [ - "AY463234" - ], - "Human_respiratory_syncytial_virus__Kilifi_11862_29_RSVA_2011" : [ - "KP317953" - ], - "SARS_coronavirus_TJF__TJF" : [ - "AY654624" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD142_2013" : [ - "KM229816" - ], - "Pseudomonas_phage_phi12" : [ - "NC_004175", - "NC_004174", - "NC_004173" - ], - "Bluetongue_virus_1_Y863" : [ - "KC879624" - ], - "Hepatitis_B_virus__ES69_1" : [ - "JF828905" - ], - "Hepatitis_B_virus__tumor_19" : [ - "X52939" - ], - "Squash_leaf_curl_Philippines_virus__P133" : [ - "EU487041" - ], - "Coxsackievirus_A11__CV_A11_66122" : [ - "JF260917" - ], - "Norwalk_like_virus__Saitama_U3" : [ - "AB039776" - ], - "Avian_hepatitis_E_virus" : [ - "NC_023425" - ], - "Hepatitis_B_virus_29135" : [ - "FN545823" - ], - "Foot_and_mouth_disease_virus___type_O_Andong" : [ - "KC503937" - ], - "Thermotoga_hypogea_NBRC_106472" : [ - "NC_022795" - ], - "Squash_leaf_curl_virus__LB1_1_8" : [ - "KM595130" - ], - "Human_herpesvirus_4_HN10" : [ - "AB850645" - ], - "Mesta_yellow_vein_mosaic_virus_associated_alphasatellite__MeYVMVA_Okra_Ludhiana_2010" : [ - "NC_018573" - ], - "Streptococcus_thermophilus_ND03" : [ - "NC_017563" - ], - "Human_immunodeficiency_virus_1__TW_D3" : [ - "DQ230841" - ], - "Bos_grunniens_papillomavirus_type_1_QH_6" : [ - "JX174442" - ], - "Porcine_circovirus_2_BD1A" : [ - "DQ910865" - ], - "African_cassava_mosaic_virus__CF_CF37BE_07" : [ - "KJ887595" - ], - "Cotton_leaf_curl_Multan_betasatellite__Sir_13" : [ - "KJ868821" - ], - "Newcastle_disease_virus__JX07" : [ - "JF893453" - ], - "Human_papillomavirus_type_164__KC4" : [ - "JX413106" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4006_2008" : [ - "GU131770" - ], - "Small_begomovirus_associated_satellite__Sa46_S110" : [ - "KJ859158" - ], - "Bluetongue_virus_1_SZ97_1" : [ - "JN848766", - "JN848760", - "JN848768", - "JN848763", - "JN848764", - "JN848762", - "JN848759", - "JN848767", - "JN848765", - "JN848761" - ], - "Chlorobium_luteolum_DSM_273" : [ - "NC_007512" - ], - "Human_immunodeficiency_virus_1__ES_X2524_2" : [ - "GQ372989" - ], - "Duck_hepatitis_B_virus__8" : [ - "AY250903" - ], - "Listeria_monocytogenes_serotype_4b_F2365" : [ - "NC_002973" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PGM_69A_2008" : [ - "HM748922" - ], - "Treponema_pallidum_Fribourg_Blanc" : [ - "NC_021179" - ], - "Human_immunodeficiency_virus_1__RL42" : [ - "HIVU71182" - ], - "Human_immunodeficiency_virus_1__MERLBDTRC5" : [ - "JN860764" - ], - "Dengue_virus_2__1349" : [ - "EU056810" - ], - "Columbid_circovirus__PL53" : [ - "KF738860" - ], - "Cotton_leaf_curl_betasatellite__CLcuV_H" : [ - "AY763123" - ], - "West_Nile_virus__NY_2003_Chautauqua" : [ - "DQ164191" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_11__AHEaCV_11_NZ_3371C2_2012" : [ - "KM874324" - ], - "Enterobacteria_phage_T3_Luria" : [ - "NC_003298" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_BJBLZ" : [ - "FJ950745" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culex_USA_12122_2003" : [ - "KJ469642" - ], - "Hepatitis_B_virus__CAR143" : [ - "AM494709" - ], - "Hepatitis_B_virus__Ag01" : [ - "KJ843163" - ], - "Lactobacillus_phage_phiadh" : [ - "NC_000896" - ], - "Avian_orthoreovirus_NK" : [ - "JQ916907" - ], - "Yellowtail_ascites_virus_YTAV_06" : [ - "AB281674", - "AB281673" - ], - "Hepatitis_B_virus__BFJT1999_1" : [ - "AB642093" - ], - "Hepatitis_B_virus__490_04_1" : [ - "EU871990" - ], - "Norovirus_Hu_GII_4_Aomori4_2007_JP_Hu_GII_4_Aomori4_2007_JP" : [ - "AB541224" - ], - "Dengue_virus_2__DENV_2_PE_FPI01345_2011" : [ - "KC294208" - ], - "Carboxydothermus_hydrogenoformans_Z_2901" : [ - "NC_007503" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2283_2001" : [ - "FJ687439" - ], - "Dengue_virus_3__DENV_3_US_BID_V1478_2002" : [ - "FJ373306" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0017" : [ - "KP759747" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7087_2008" : [ - "KJ189298" - ], - "Porcine_circovirus_2_SXYLA_05" : [ - "KC800642" - ], - "Dengue_virus_3__DENV_3_VE_BID_V913_2001" : [ - "EU482614" - ], - "African_horse_sickness_virus_serotype_6" : [ - "NC_006019" - ], - "Human_T_lymphotropic_virus_3_2026ND" : [ - "DQ093792" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2240_2005" : [ - "FJ639804" - ], - "Hepatitis_B_virus__B21" : [ - "FJ904434" - ], - "Porcine_circovirus_2__Huanan_4" : [ - "EF421969" - ], - "Tomato_leaf_curl_betasatellite__F30" : [ - "EU286799" - ], - "Human_rhinovirus_A89__F09" : [ - "FJ445165" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD213_2013" : [ - "KM229863" - ], - "Nudaurelia_capensis_beta_virus" : [ - "NC_001990" - ], - "Cucumber_mosaic_virus_satellite_RNA_Yn12" : [ - "EF363687" - ], - "Deformed_wing_virus_Korea_1" : [ - "JX878304" - ], - "Hepatitis_B_virus__A3_1" : [ - "GU815572" - ], - "Porcine_circovirus_2__PCV_E" : [ - "KC515023" - ], - "Apple_stem_pitting_virus__PR1__Pear" : [ - "EU095327" - ], - "Jaagsiekte_sheep_retrovirus_JSRV21" : [ - "AF105220" - ], - "Hepatitis_B_virus_551_8" : [ - "KR013979" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4733_2009" : [ - "HQ166032" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD238_2013" : [ - "KM229878" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7067_2007" : [ - "KJ189283" - ], - "Ageratum_yellow_vein_virus_Ishigaki__Tomato_Ishigaki05" : [ - "AB306314" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPI01165_2011_A" : [ - "KJ627401" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10BJ_4" : [ - "JQ663544" - ], - "Rice_black_streaked_dwarf_virus__Anhui_LJ" : [ - "HF955011", - "HF955012", - "HF955006", - "HF955014", - "HF955009", - "HF955007", - "HF955010", - "HF955013", - "HF955008", - "HF955005" - ], - "Simian_immunodeficiency_virus_SIVsyk_KE51" : [ - "AY523867" - ], - "Hepatitis_B_virus_China_Xinjiang_HB80_2009_Xinjiang_HB80" : [ - "HQ833470" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5738_1" : [ - "KR105322" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9445_2013" : [ - "KJ643519" - ], - "Infectious_bursal_disease_virus__HLJ_3" : [ - "FJ040159" - ], - "Hepatitis_B_virus_HB419" : [ - "HM011497" - ], - "Human_mastadenovirus_E_CL_68578__vaccine" : [ - "NC_003266" - ], - "Prochlorococcus_phage_P_SSP3_P_SSP3" : [ - "NC_020874" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3904_2008" : [ - "GU131726" - ], - "West_Nile_virus_Italy_2013_Rovigo_33_1" : [ - "KF647250" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2083_2004" : [ - "FJ639726" - ], - "Hepatitis_B_virus__PNF4804" : [ - "KF779339" - ], - "Hepatitis_B_virus_B0503233_BJS_F" : [ - "AP011086" - ], - "Hepatitis_B_virus__C215_5" : [ - "FJ899785" - ], - "Newcastle_disease_virus_Du_CH_LHuB_085_2013" : [ - "KM885161" - ], - "Potato_virus_Y__Chile3" : [ - "FJ214726" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL124A" : [ - "AB985324", - "AB985556" - ], - "Honeysuckle_yellow_vein_mosaic_virus" : [ - "NC_003609", - "AJ421523" - ], - "Potato_black_ringspot_virus__PBRSV_GAF14" : [ - "KC832895" - ], - "Porcine_circovirus_2__RC120140710" : [ - "KP824721" - ], - "Hepatitis_C_virus_subtype_6a_6a67" : [ - "DQ480520" - ], - "Maize_chlorotic_mottle_virus__Yunnan3" : [ - "JQ982469" - ], - "Hepatitis_B_virus__HBV40" : [ - "KC875318" - ], - "Tomato_severe_rugose_virus__BR_Car233_08" : [ - "KC004085" - ], - "Hepatitis_B_virus__N005v4" : [ - "KF922417" - ], - "West_Nile_virus__WNV_1_US_BID_V6474_2003" : [ - "KJ501477" - ], - "Tomato_leaf_curl_Nigeria_virus__Nigeria_2006" : [ - "NC_012206" - ], - "Tomato_yellow_vein_streak_virus__AR_Mi_Albardon_Tom120_05" : [ - "KJ413253" - ], - "Variola_virus_Bangladesh_1974__nur_islam" : [ - "DQ441420" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1679_2007" : [ - "FJ390384" - ], - "Coxsackievirus_B2_Ohio" : [ - "AF081485" - ], - "Human_poliovirus_3_NIE1118478" : [ - "KJ170592" - ], - "Mycobacterium_phage_Hades" : [ - "NC_026595" - ], - "Dengue_virus_1__DENV_1_PF_BID_V2939_2001" : [ - "FJ898448" - ], - "Streptococcus_suis_SC84" : [ - "NC_012924" - ], - "Duck_circovirus__D12_KD_019" : [ - "KC851819" - ], - "Hepatitis_B_virus__M28" : [ - "GQ924611" - ], - "Hepatitis_B_virus__IND_2009_6" : [ - "KF214658" - ], - "Human_poliovirus_1__TCDC01_113" : [ - "AF538841" - ], - "WU_Polyomavirus__B1988" : [ - "GU296370" - ], - "Tomato_leaf_curl_Vietnam_virus__Hanoi_112" : [ - "GQ373254" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_FR31_2008" : [ - "KM229800" - ], - "Tomato_rugose_yellow_leaf_curl_virus__MT8" : [ - "KC132844" - ], - "Hepatitis_B_virus__E3_9" : [ - "GU815710" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1768_2008" : [ - "FJ410191" - ], - "Hepatitis_B_virus__A2_2" : [ - "GU815561" - ], - "Hepatitis_B_virus__GH16" : [ - "GQ161754" - ], - "Hepatitis_B_virus__Tibet_31" : [ - "JF491455" - ], - "Measles_virus_MVi_Zhejiang_CHN_7_05_4" : [ - "DQ211902" - ], - "Tomato_leaf_curl_China_betasatellite__Y285" : [ - "AJ971335" - ], - "Chikungunya_virus_IND_06_MH2" : [ - "EF027136" - ], - "Wheat_dwarf_virus__SCCD10_6" : [ - "JQ647485" - ], - "Maize_streak_virus__MSV_A_CF_Bos7_Car7_2008" : [ - "HQ693313" - ], - "Streptococcus_suis_SC070731" : [ - "NC_020526" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_Mahe_SC18B32_2005" : [ - "JF909161" - ], - "Chilli_leaf_curl_virus__CapAS_1" : [ - "KM023147" - ], - "Ageratum_conyzoides_associated_symptomless_alphasatellite__Okra" : [ - "HG518792", - "NC_024710", - "HG518790", - "HG518791", - "HG518789" - ], - "Hepatitis_B_virus__clz2129" : [ - "KC774217" - ], - "Porcine_circovirus_2__DK1980PMWSfree" : [ - "EU148503" - ], - "Porcine_circovirus_2_struve" : [ - "KC618389" - ], - "Dengue_virus_3__DENV_3_NI_BID_V2649_2008" : [ - "FJ873813" - ], - "Apple_stem_pitting_virus__KL9" : [ - "JF946772" - ], - "Soybean_Putnam_virus" : [ - "NC_018505" - ], - "Tomato_leaf_curl_Palampur_virus__BRJ_1" : [ - "KC501924" - ], - "Candidatus_Kinetoplastibacterium_desouzaii_TCC079E" : [ - "NC_020294" - ], - "Hepatitis_B_virus__J171" : [ - "GQ377606" - ], - "Sevenband_grouper_nervous_necrosis_virus_SG2001Nag" : [ - "AB373029", - "AB373028" - ], - "Scotophilus_bat_coronavirus_512_BtCoV_512_2005" : [ - "NC_009657" - ], - "Hepatitis_B_virus_34033" : [ - "FN545830" - ], - "Columbid_circovirus__PL67" : [ - "KF738868" - ], - "SARS_coronavirus_FRA_FRA" : [ - "AY310120" - ], - "Staphylococcus_aureus_MSSA476" : [ - "NC_005951", - "NC_002953" - ], - "Enterobacteria_phage_phiX174_beta4" : [ - "HM775311" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_MN30100" : [ - "EF536000" - ], - "Tahyna_virus_4034" : [ - "KF361883" - ], - "Baumannia_cicadellinicola_Hc__Homalodisca_coagulata" : [ - "NC_007984" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6743_2009" : [ - "KJ627321" - ], - "Bean_golden_mosaic_virus__BR_Pai6_11" : [ - "KJ939742" - ], - "Mungbean_yellow_mosaic_India_virus____Nepal___Nepal" : [ - "AY271895" - ], - "Porcine_stool_associated_circular_virus_4__CP2" : [ - "NC_023877" - ], - "Rhizobium_phage_vB_RglS_P106B" : [ - "NC_023566" - ], - "Bluetongue_virus_4__10353" : [ - "DQ191280" - ], - "SARS_coronavirus_Sin3408L" : [ - "AY559097" - ], - "Human_immunodeficiency_virus_1__00BW3842_8" : [ - "AF443109" - ], - "Human_papillomavirus_type_6__131" : [ - "HG793939" - ], - "Coxsackievirus_A7__275_58" : [ - "GU942820" - ], - "Eimeria_brunetti_RNA_virus_1" : [ - "NC_002701" - ], - "Hepatitis_B_virus__MK082_EP_CHB" : [ - "KM524345" - ], - "JC_polyomavirus__SU_4" : [ - "AB127018" - ], - "Enterovirus_A71_BJ08_Z020_1" : [ - "FJ606449" - ], - "Hepatitis_B_virus__HB12_0929" : [ - "AB775201" - ], - "Banana_streak_virus__Acuminata_Yunnan" : [ - "NC_008018" - ], - "Horsegram_yellow_mosaic_virus__LK_09" : [ - "GU323321", - "GU323322" - ], - "Geobacter_sulfurreducens_KN400" : [ - "NC_017454" - ], - "Southern_rice_black_streaked_dwarf_virus__Nam_Dinh" : [ - "KM576875", - "KM576887", - "KM454847" - ], - "African_cassava_mosaic_virus__MG_MG214A2_08" : [ - "KJ887954" - ], - "Human_papillomavirus_type_16__Fr160232" : [ - "HQ644242" - ], - "SFTS_virus_HNXY_2_HNXY_2" : [ - "KC292344", - "KC292318", - "KC292291" - ], - "Human_bocavirus_LZFB199" : [ - "KM624026" - ], - "West_Nile_virus__WNV_1_US_BID_V4719_2003" : [ - "HM488251" - ], - "Torque_teno_virus__TTV_HD20c__uro745" : [ - "FR751494" - ], - "Hepatitis_B_virus__I_T13" : [ - "GU456675" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_2___strain_Ibaraki__Ibaraki_JAP1959_01" : [ - "AM745085", - "AM745083", - "AM745079", - "AM745086", - "AM745082", - "AM745078", - "AM745084", - "AM745081", - "AM745077", - "AM745080" - ], - "Chlorobium_chlorochromatii_CaD3" : [ - "NC_007514" - ], - "Hepatitis_B_virus__CHN_QH5" : [ - "DQ478886" - ], - "Macroptilium_yellow_spot_virus__BR_Sti31_11" : [ - "KJ939888" - ], - "Hepatitis_B_virus__MY241913" : [ - "KJ803817" - ], - "South_African_cassava_mosaic_virus__MG_MG624A4_11" : [ - "KJ888063" - ], - "Hepatitis_B_virus__cxa2075" : [ - "KC774330" - ], - "Bean_golden_mosaic_virus__BR_Pai8_11" : [ - "KJ939744" - ], - "Dengue_virus_3_BR_DEN3_97_04" : [ - "EF629367" - ], - "Dengue_virus_2__CSF63" : [ - "FM210214" - ], - "Parana_mammarenavirus_12056" : [ - "NC_010756", - "NC_010761" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2728_2007" : [ - "FJ898376" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_R107_2003_G3P_8__R107" : [ - "KF371957", - "KF371964", - "KF371960", - "KF371961", - "KF371959", - "KF371958", - "KF371955", - "KF371956", - "KF371963" - ], - "Porcine_circovirus_2__DK575control" : [ - "EF565366" - ], - "Human_enterovirus_Hangzhou13_02__Hangzhou13_02" : [ - "AY876913" - ], - "Hepatitis_B_virus__F3_1" : [ - "GU815738" - ], - "Neorickettsia_risticii_Illinois" : [ - "NC_013009" - ], - "Tomato_leaf_curl_Joydebpur_virus__India_Ponduru_Kenaf_2007" : [ - "FJ345402" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__NT1_3" : [ - "GU723738" - ], - "Human_immunodeficiency_virus_1_98IN012" : [ - "AF286231" - ], - "Methylibium_petroleiphilum_PM1" : [ - "NC_008826", - "NC_008825" - ], - "Hepatitis_E_virus__Morocco" : [ - "AY230202" - ], - "Human_bocavirus_HoBV_Fukushima_JPN_505" : [ - "AB480173" - ], - "Dengue_virus_1__DENV_1_BR_BID_V2375_2000" : [ - "FJ850071" - ], - "Porcine_circovirus_2_FMV05_7098" : [ - "DQ220731" - ], - "Murine_norovirus_GV_WU23_2005_USA__Mu_NoV_GV_WU23_2005_USA" : [ - "EU004668" - ], - "Kamiti_River_virus__SR_82" : [ - "NC_005064" - ], - "Dengue_virus_1__DENV_1_US_BID_V2129_1995" : [ - "FJ410181" - ], - "Hepatitis_B_virus__ph109" : [ - "EU410079" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD249_2013" : [ - "KM229885" - ], - "butyrate_producing_bacterium_SS3_4" : [ - "NC_021035" - ], - "South_African_cassava_mosaic_virus__MG_MG570A1_11" : [ - "KJ887735" - ], - "Middle_East_respiratory_syndrome_coronavirus__KSA_CAMEL_378" : [ - "KJ713296" - ], - "Hepatitis_B_virus__MOD_4605" : [ - "GQ183478" - ], - "Riemerella_anatipestifer_RA_CH_1" : [ - "NC_018609" - ], - "Beak_and_feather_disease_virus__2NC87B" : [ - "JX049215" - ], - "Hepatitis_B_virus__MTB159" : [ - "AY902773" - ], - "Hepatitis_delta_virus_Miyako_JA_M44" : [ - "AB118836" - ], - "Hepatitis_B_virus__HBV_Th11" : [ - "AB074047" - ], - "Mycobacterium_phage_Gadjet_Gadjet" : [ - "NC_023686" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2015_Makona_Liberia_DQE4" : [ - "KR074998" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL136A" : [ - "AB985563" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG5C3_05" : [ - "KJ887825" - ], - "Potato_virus_X_Tula" : [ - "EU021215" - ], - "West_Nile_virus__WNV_1_US_BID_V7434_2011" : [ - "KJ501144" - ], - "Turnip_mosaic_virus__NZW3" : [ - "AB989654" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1324_2006" : [ - "EU660394" - ], - "Lactococcus_Phage_ASCC337" : [ - "JQ740794" - ], - "African_swine_fever_virus__Warthog" : [ - "AY261366" - ], - "Cocksfoot_mottle_virus" : [ - "NC_002618" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Kosova_Hoti" : [ - "EU037902", - "EU044832" - ], - "Hepatitis_C_virus_subtype_1b__No__4" : [ - "AB154179" - ], - "Hepatitis_B_virus__SHB724" : [ - "KJ598754" - ], - "Tomato_yellow_leaf_curl_virus_HNWZ" : [ - "JQ038238" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2489_2007" : [ - "FJ882580" - ], - "Coxsackievirus_A7__USSR" : [ - "GU942822" - ], - "Methanothermus_fervidus_DSM_2088" : [ - "NC_014658" - ], - "Human_immunodeficiency_virus_1__WC3_0498_1" : [ - "EF175209" - ], - "JC_polyomavirus__Luz_6" : [ - "AB113137" - ], - "Chickpea_chlorotic_dwarf_virus__F_SC54_99" : [ - "KC172668" - ], - "Enterovirus_C__V3_Tul_3" : [ - "HQ738298" - ], - "Porcine_epidemic_diarrhea_virus__KNU_1406_1" : [ - "KM403155" - ], - "Norovirus_Hu_GII_4_Saga4_2008_JP_Hu_GII_4_Saga4_2008_JP" : [ - "AB541336" - ], - "Croton_yellow_vein_mosaic_betasatellite__KP1" : [ - "KM588256" - ], - "Hepatitis_B_virus_1456_27a" : [ - "KR014064" - ], - "Hepatitis_B_virus__I206" : [ - "FJ562314" - ], - "Bos_taurus_papillomavirus_7_IT_221" : [ - "KM096429" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5112_1" : [ - "KR105298" - ], - "Hepatitis_B_virus__cxn1019" : [ - "KC774337" - ], - "Bluetongue_virus_8__RSArrrr_08" : [ - "AJ586705" - ], - "Temperate_fruit_decay_associated_virus__MFB22" : [ - "KR134320" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4237_2006" : [ - "HM181939" - ], - "Torque_teno_mini_virus_7__TLMV_CLC156" : [ - "NC_014082" - ], - "West_Nile_virus__WNV_1_US_BID_V4910_2001" : [ - "HQ671717" - ], - "Trichomonas_vaginalis_virus_2_TVV2_OC5" : [ - "HQ607524" - ], - "West_Nile_virus__NY_2002_Queens" : [ - "DQ164186" - ], - "West_Nile_virus__WNV_1_US_BID_V7818_2011" : [ - "KJ501534" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_L1621_2013_G3P_8__L1621" : [ - "KF371938", - "KF371935", - "KF371933", - "KF371937", - "KF371941", - "KF371939", - "KF371942", - "KF371936", - "KF371934" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Culex_taeniopus_MEX_MX09_M64_2008_IE" : [ - "KC344480" - ], - "Zucchini_yellow_mosaic_virus__F81" : [ - "JN192405" - ], - "Porcine_circovirus_2_PCV2_P6_1" : [ - "FJ667592" - ], - "Human_immunodeficiency_virus_1__05YNRL07sg" : [ - "KC898975" - ], - "Hepatitis_B_virus__bne9449" : [ - "FN594766" - ], - "Plum_pox_virus_PPV_D_Ou4" : [ - "AB576060" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US36" : [ - "KJ019096" - ], - "Canna_yellow_streak_virus__NC2" : [ - "KM882645" - ], - "Maize_chlorotic_mottle_virus" : [ - "NC_003627" - ], - "Coxsackievirus_B3__DH09Y_JS_2012" : [ - "KP036479" - ], - "Human_immunodeficiency_virus_1__CH77E_flD5" : [ - "FJ496007" - ], - "West_Nile_virus__WNV_1_US_BID_V6602_2012" : [ - "KJ501220" - ], - "Rabies_virus_CJX0903D" : [ - "JQ970484" - ], - "Rinderpest_virus_LATC06" : [ - "GU168576" - ], - "Hepatitis_B_virus_Ehi_SK_lam_7_2" : [ - "AB195948" - ], - "Mycobacterium_phage_Saal" : [ - "NC_023580" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V334_2002" : [ - "EU155298" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1481" : [ - "KR534575" - ], - "Hepatitis_C_virus__02Q" : [ - "DQ418785" - ], - "Chatanga_virus_LEIV_17756" : [ - "EU616903" - ], - "Foot_and_mouth_disease_virus___type_O__O_S12KOR_2002" : [ - "KF694742" - ], - "Squash_leaf_curl_virus__JO2_118" : [ - "KM595182" - ], - "Hepatitis_C_virus_subtype_1b_MD2_2" : [ - "AF165048" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA35" : [ - "KF670655" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d3om4" : [ - "JF292905" - ], - "Gossypium_darwinii_symptomless_virus__Dar3" : [ - "EU365614" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2360_2007" : [ - "FJ744707" - ], - "Turnip_mosaic_virus" : [ - "NC_002509" - ], - "Chicken_anemia_virus__SH16" : [ - "DQ141671" - ], - "Hepatitis_B_virus_327_5" : [ - "KR013910" - ], - "Newcastle_disease_virus__I_2" : [ - "AY935499" - ], - "Whitewater_Arroyo_mammarenavirus_AV_9310135" : [ - "EU646186", - "NC_010703" - ], - "Diadromus_pulchellus_ascovirus_4a" : [ - "NC_011335" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_167_2012" : [ - "KJ686295" - ], - "Eidolon_helvum__bat__parvovirus" : [ - "NC_016744" - ], - "Norovirus_Hu_GII_4_Toyama4_2008_JP_Hu_GII_4_Toyama4_2008_JP" : [ - "AB541360" - ], - "Porcine_parvovirus__HN_H" : [ - "KF429253" - ], - "Black_beetle_virus" : [ - "NC_002037", - "NC_001411" - ], - "Bovine_viral_diarrhea_virus_1_KE9" : [ - "EF101530" - ], - "Chimpanzee_polyomavirus__Tanu" : [ - "FR692335" - ], - "Hepatitis_C_virus_subtype_1a__00_21" : [ - "EU781749" - ], - "Human_poliovirus_1_NIE1018394" : [ - "KJ170515" - ], - "Human_immunodeficiency_virus_1__03ZASK019B2" : [ - "AY878063" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7050_2007" : [ - "KJ189267" - ], - "Human_mastadenovirus_C_human_USA_VT5544_2003_2_P2H2F2" : [ - "JX173084" - ], - "Rift_Valley_fever_virus_Sudan_85_2010" : [ - "JQ820488", - "JQ820476", - "JQ820485" - ], - "Cellulophaga_phage_phi19_1_phi19_1" : [ - "NC_021799" - ], - "Leuconostoc_phage_Lmd1" : [ - "NC_018273" - ], - "Tomato_leaf_curl_Joydebpur_virus__India_Amadalavalasa1_Kenaf_2007" : [ - "EU431116" - ], - "Nitrosococcus_halophilus_Nc4" : [ - "NC_013958", - "NC_013960" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1783_2007" : [ - "FJ432728" - ], - "Hepatitis_E_virus__CMC_1" : [ - "JX565469" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7592_2007" : [ - "KJ189326" - ], - "South_African_cassava_mosaic_virus__MG_MG420A2_11" : [ - "KJ887718" - ], - "Sida_golden_mosaic_Florida_virus_Malvastrum_Cuba_Havana_Malvastrum_123_2009_123" : [ - "HM359015", - "HM359016" - ], - "Ehrlichia_ruminantium_Gardel" : [ - "NC_006831" - ], - "Synechocystis_PCC_6803" : [ - "NC_017277" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1NA1" : [ - "GU292317" - ], - "Infectious_hematopoietic_necrosis_virus_WRAC" : [ - "NC_001652" - ], - "Chikungunya_virus_FD080008" : [ - "GU199350" - ], - "West_Nile_virus__WNV_1_US_BID_V6702_2006" : [ - "KJ501429" - ], - "Propionibacterium_acidipropionici_ATCC_4875" : [ - "NC_019395" - ], - "Eclipta_yellow_vein_virus__India__Lucknow__Andrographis_paniculata_2010___CSIR_CIMAP_A24" : [ - "KC476655" - ], - "African_cassava_mosaic_virus__Central_African_Republic_Bambari_CF35_2007" : [ - "HE814062" - ], - "Enterovirus_A71__03_KOR_00" : [ - "DQ341356" - ], - "Tomato_mosaic_virus_L11A_Fukushima" : [ - "AB083196" - ], - "Siegesbeckia_yellow_vein_virus__GD27__associated_DNA_beta__GD27" : [ - "AM230645" - ], - "Dengue_virus_3__DENV_3_NI_BID_V2654_2008" : [ - "FJ850049" - ], - "West_Nile_virus__WNV_1_US_BID_V6544_2003" : [ - "KJ501348" - ], - "Middle_East_respiratory_syndrome_coronavirus__KFU_HKU_19Dam" : [ - "KJ650296" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1705_2007" : [ - "FJ024087" - ], - "Human_poliovirus_1__HAI01009" : [ - "AF405664" - ], - "Newcastle_disease_virus__2K3_Chennai_Tamil_Nadu" : [ - "FJ986192" - ], - "Sida_mottle_Alagoas_virus__BR_Mar3_10" : [ - "JX871388" - ], - "Porcine_circovirus_2_yantai_2" : [ - "KP313252" - ], - "Hepatitis_B_virus__EIHB006" : [ - "GQ358153" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4748_1" : [ - "KR105270" - ], - "Tobacco_leaf_curl_Yunnan_virus__Y3___y3" : [ - "AF240674" - ], - "Tomato_yellow_leaf_curl_virus_Israel_New_Caledonia_Noumea3_2010" : [ - "HE603243" - ], - "Puumala_virus_Puu_Vindeln_L20Cg_83" : [ - "Z49214" - ], - "West_Nile_virus__WNV_1_US_BID_V6522_2003" : [ - "KJ501340" - ], - "Hepatitis_B_virus__2_B74" : [ - "EU560438" - ], - "Brassica_yellows_virus__Cheongsong" : [ - "KF923236" - ], - "Hepatitis_B_virus__I65" : [ - "FJ562240" - ], - "Usutu_virus_V60" : [ - "KJ438711" - ], - "Small_begomovirus_associated_satellite__Sa19_S101" : [ - "KJ859135" - ], - "Ralstonia_eutropha_H16" : [ - "NC_008314", - "NC_005241", - "NC_008313" - ], - "Small_begomovirus_associated_satellite__Sa8_S134" : [ - "KJ859168" - ], - "Tomato_severe_rugose_virus__BR_Flo208_08" : [ - "KC004074" - ], - "Hepatitis_B_virus__4312v2" : [ - "KF922427" - ], - "Tomato_leaf_curl_Java_virus__Ageratum__satellite_DNA" : [ - "NC_005497" - ], - "Porcine_circovirus_2__CQWL13" : [ - "KF742549" - ], - "Plum_bark_necrosis_stem_pitting_associated_virus__Tatao25_Q_375_02" : [ - "KC590344" - ], - "Foot_and_mouth_disease_virus___type_O__persistent_O_UKG_UV13_49dpc" : [ - "KR401161" - ], - "Human_papillomavirus_type_16__Rw862" : [ - "HQ644292" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_10__AHEaCV_10_NZ_3241C3_2012" : [ - "KM874320" - ], - "Foot_and_mouth_disease_virus___type_O_O_YS_CHA_05" : [ - "HM008917" - ], - "Crimean_Congo_hemorrhagic_fever_virus_SPU103_87" : [ - "DQ211621", - "DQ211647", - "DQ211634" - ], - "Sulfitobacter_phage_pCB2047_C_pCB2047_C" : [ - "NC_020856" - ], - "Curionopolis_virus__BE_AR_440009" : [ - "NC_025354" - ], - "Hepatitis_B_virus__cxa2043" : [ - "KC774318" - ], - "Sindbis_virus__Ilomantsi_2002B" : [ - "JQ771795" - ], - "Human_immunodeficiency_virus_1__97VNAG220" : [ - "FJ185256" - ], - "Enterovirus_C96__FIN05_2" : [ - "FJ751915" - ], - "Guanarito_mammarenavirus_CVH_960103" : [ - "AY572556" - ], - "HBV_genotype_B__NMB09010" : [ - "AB554017" - ], - "Mycobacterium_tuberculosis_KZN_1435" : [ - "NC_012943" - ], - "Rabies_virus__SH06" : [ - "GU345748" - ], - "Spring_viraemia_of_carp_virus_Fijan_Reference_Strain__ATCC_VR_1390" : [ - "AJ318079" - ], - "Lactococcus_phage_bIL309" : [ - "NC_002668" - ], - "West_Nile_virus__WNV_1_US_BID_V4225_2005" : [ - "HM488151" - ], - "Hepatitis_B_virus_1463_39" : [ - "KR014074" - ], - "Singulisphaera_acidiphila_DSM_18658" : [ - "NC_019893", - "NC_019894", - "NC_019895", - "NC_019892" - ], - "Wheat_streak_mosaic_virus__WA99" : [ - "AF511643" - ], - "Chlamydia_trachomatis_RC_F_s_342" : [ - "NC_021890" - ], - "Wheat_dwarf_virus__HNHYK08_4" : [ - "KJ536128" - ], - "Pseudomonas_fluorescens_CHA0" : [ - "NC_021237" - ], - "Hepatitis_B_virus__GZ_DYH" : [ - "DQ246215", - "DQ448619" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5004_brain" : [ - "HQ671733" - ], - "Porcine_circovirus_2_GD_pz" : [ - "JX945575" - ], - "Hepatitis_B_virus__CAR097" : [ - "AM494701" - ], - "Porcine_circovirus_2_HB0601" : [ - "EF524536" - ], - "Wissadula_golden_mosaic_virus" : [ - "NC_010951", - "NC_010948" - ], - "Cauliflower_mosaic_virus__IRNZC20" : [ - "KF357599" - ], - "Astrovirus_VA4__VA4_human_Nepal_S5363_2008" : [ - "NC_019027" - ], - "Porcine_circovirus_2_ZJU0702" : [ - "EU257515" - ], - "Rodent_hepacivirus__RHV_339" : [ - "NC_021153" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7351_2002" : [ - "KF973334" - ], - "Human_papillomavirus_type_136__CL3865" : [ - "NC_017994" - ], - "Dengue_virus_2_D2_TO_UH94_1974" : [ - "HM582116" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10GZ_GD" : [ - "JX192633" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1791_2007" : [ - "FJ410197" - ], - "Simian_immunodeficiency_virus__96135" : [ - "AY607702" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_LN2012_14" : [ - "KF887436", - "KF887441", - "KF887431" - ], - "Hepatitis_B_virus__1159" : [ - "JQ023663" - ], - "Dengue_virus_1__DENV_1_VN_BID_V977_2006" : [ - "EU482521" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0104" : [ - "KP759765" - ], - "Human_papillomavirus_type_6__PV1666" : [ - "JN252316" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Karnal_OY80A_2006___OY80A" : [ - "GU111979" - ], - "Potato_leafroll_virus__Australia" : [ - "PLVRA" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P3pp21" : [ - "FJ882935" - ], - "Porcine_circovirus_2_WHFC1203" : [ - "KC823056" - ], - "Long_Island_tick_rhabdovirus_LS1" : [ - "NC_025340" - ], - "Hepatitis_B_virus__C138" : [ - "EU939624" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__08SDWF" : [ - "GU168569" - ], - "Hepatitis_B_virus__S659_4" : [ - "FJ032343" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2924_2000" : [ - "FJ898478" - ], - "Porcine_circovirus_2__176_1_Venezia_23_04_02_2011" : [ - "KP231156" - ], - "Amphibacillus_xylanus_NBRC_15112" : [ - "NC_018704" - ], - "Hepatitis_B_virus__17T02HCC" : [ - "AB014376" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20144192" : [ - "KR653238" - ], - "Western_equine_encephalitis_virus__85_452NM" : [ - "GQ287647" - ], - "West_Nile_virus__WNV_1_US_BID_V4907_2001" : [ - "JF920307" - ], - "Squash_leaf_curl_China_virus__B" : [ - "NC_007338" - ], - "Wheat_dwarf_virus__QHLD10_9" : [ - "JQ647479" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1720_2006" : [ - "FJ205869" - ], - "Escherichia_coli_IHE3034" : [ - "NC_017628" - ], - "Soybean_dwarf_virus__Wisc3" : [ - "DQ145545" - ], - "Tomato_severe_rugose_virus__BR_Vic05_09" : [ - "JX865619" - ], - "Hepatitis_B_virus__WY_NJ_79" : [ - "JX026887" - ], - "Classical_swine_fever_virus_CSFV_2_3_wb_XXX0609_2004_Uelzen" : [ - "GU324242" - ], - "Bifidobacterium_longum_BBMN68" : [ - "NC_014656" - ], - "Dengue_virus_2__MD1240" : [ - "FM210231" - ], - "Human_rotavirus_A_254_stool" : [ - "AJ236780" - ], - "Bearded_dragon_parvovirus_2014" : [ - "NC_027429" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI20_12_DNA_B" : [ - "HE979787" - ], - "Cocksfoot_mottle_virus__Oxford" : [ - "FJ669143" - ], - "Hipposideros_bat_coronavirus_HKU10__TLC1347A" : [ - "JQ989273" - ], - "Human_immunodeficiency_virus_1__ML1990" : [ - "EU110092" - ], - "Porcine_circovirus_2__ly2" : [ - "EU274309" - ], - "Tomato_yellow_leaf_curl_virus__HB_SJZ" : [ - "KC312657" - ], - "Sida_leaf_curl_virus_associated_DNA_beta__Hn60" : [ - "AM050733" - ], - "Hepatitis_B_virus__HE27_CHB" : [ - "JN664928" - ], - "South_African_cassava_mosaic_virus__MG_MG520A1_11" : [ - "KJ887729" - ], - "West_Nile_virus__WNV_1_US_BID_V4586_2003" : [ - "HM488220" - ], - "Hepatitis_delta_virus__C15" : [ - "KF660600" - ], - "Pseudomonas_phage_phiIBB_PF7A" : [ - "NC_015264" - ], - "Hepatitis_B_virus__HBV_CB14" : [ - "AB117759" - ], - "Vibrio_phage_PV94" : [ - "NC_027368" - ], - "African_cassava_mosaic_virus__ACMV_Ybi1_Pr" : [ - "FN435271" - ], - "Dengue_virus_2__DENV_2_NI_BID_V514_2005" : [ - "EU482749" - ], - "Hepatitis_B_virus__patient19" : [ - "EU882000", - "EU881999" - ], - "West_Nile_virus__WNV_1_US_BID_V6670_2006" : [ - "KJ501410" - ], - "Hepatitis_B_virus__HBV58" : [ - "KC875291" - ], - "Norwalk_like_virus__Saitama_U4" : [ - "AB039777" - ], - "Bat_picornavirus_1_NC16A" : [ - "NC_015940" - ], - "Hepatitis_B_virus__C214" : [ - "EU939613" - ], - "Hepatitis_B_virus__P75" : [ - "GQ477491" - ], - "Streptococcus_constellatus_pharyngis_C818" : [ - "NC_022245" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2818_2007" : [ - "FJ882559" - ], - "Dengue_virus_2__Jeddah_2014" : [ - "KJ830750" - ], - "Pan_troglodytes_verus_polyomavirus_2c__5927" : [ - "HQ385750" - ], - "Enterovirus_A71_TW_71552_05" : [ - "GQ231938" - ], - "Hepatitis_B_virus__919010" : [ - "JN040820" - ], - "Cellulophaga_phage_phi19_3_phi19_3" : [ - "NC_021789" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD157_2013" : [ - "KM229824" - ], - "Peste_des_petits_ruminants_virus__CIV_01P_2009" : [ - "KR781451" - ], - "Bacteroides_phage_B40_8" : [ - "NC_011222" - ], - "Avian_paramyxovirus_5_budgerigar_Kunitachi_74" : [ - "NC_025361" - ], - "Atkinsonella_hypoxylon_virus_2H" : [ - "NC_003470", - "NC_003472", - "NC_003471" - ], - "Hepatitis_B_virus__SHB42" : [ - "KJ598680" - ], - "Hepatitis_B_virus__dxn1008" : [ - "KC774466" - ], - "Enterobacteria_phage_Qbeta_HL4_9" : [ - "FJ483841" - ], - "Hepatitis_B_virus__HK352" : [ - "DQ089787" - ], - "Yellow_fever_virus_YF_Vaccine_USA_Sanofi_Pasteur_17D__204_UF795AA_YFVax" : [ - "JX503529" - ], - "Maize_streak_virus__MSV_G_Pas_Jic16_2002" : [ - "EU628637" - ], - "Hepatitis_B_virus_580_7a" : [ - "KR013986" - ], - "Hepatitis_B_virus_JL1" : [ - "AJ131133" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4334_1" : [ - "KR105237" - ], - "Avirulent_turkey_hemorrhagic_enteritis_virus_Virginia" : [ - "AY849321" - ], - "Hepatitis_C_virus_subtype_1a__03_45" : [ - "EU781777" - ], - "Hepatitis_B_virus__Cc" : [ - "GQ205441" - ], - "Varroa_destructor_virus_1" : [ - "NC_006494" - ], - "Hepatitis_B_virus__SHB312" : [ - "KJ598664" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG45A1_06" : [ - "KJ887648" - ], - "Bacillus_megaterium_QM_B1551" : [ - "NC_010009", - "NC_014025", - "NC_014031", - "NC_014023", - "NC_010010", - "NC_014019", - "NC_004604", - "NC_010008" - ], - "Begomovirus_associated_DNA_III" : [ - "NC_006957" - ], - "Human_immunodeficiency_virus_1__CAP248_9w" : [ - "GQ999987" - ], - "Canine_distemper_virus_M25CR" : [ - "AB475097" - ], - "Squash_leaf_curl_virus__JO1_135" : [ - "KM595168" - ], - "Tobacco_rattle_virus__TRV_TpC30_12" : [ - "DQ448616" - ], - "Wheat_dwarf_virus__SXHC10_5" : [ - "JQ647488" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo187_08" : [ - "KC706552" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_228H1__228H1" : [ - "JN819490" - ], - "Bidens_mottle_virus__B3" : [ - "EU250212" - ], - "Human_papillomavirus_type_16__Qv00346" : [ - "HQ644255" - ], - "Hepatitis_B_virus__N060v3" : [ - "KF922437" - ], - "Cotton_leaf_curl_Rajasthan_virus" : [ - "FM202328", - "FN645912", - "AM501481" - ], - "Chilli_leaf_curl_virus__Taq3" : [ - "JN604494" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE7947_2010" : [ - "KJ627267" - ], - "Ngari_virus_DakArD28542" : [ - "JX857316", - "JX857318" - ], - "Orgyia_pseudotsugata_multiple_nucleopolyhedrovirus" : [ - "NC_001875" - ], - "Goose_circovirus__TW10_2001" : [ - "AF536940" - ], - "Bovine_papillomavirus_type_8_EB" : [ - "DQ098917" - ], - "Human_papillomavirus_type_16__Qv00079" : [ - "HQ644253" - ], - "Spissistilus_festinus_reovirus_Type" : [ - "NC_016883", - "NC_016880", - "NC_016876", - "NC_016877", - "NC_016878", - "NC_016881", - "NC_016874", - "NC_016879", - "NC_016875", - "NC_016882" - ], - "Usutu_virus_V1" : [ - "KJ438719" - ], - "Dengue_virus_1__DENV_1_Jeddah" : [ - "KJ649286" - ], - "Hepatitis_B_virus__LYG_k1" : [ - "KM213034" - ], - "Porcine_circovirus_2__PF65_1" : [ - "FJ905464" - ], - "Murine_norovirus_GV_NIH_2750_2005_USA_GV_NIH_2750_2005_USA" : [ - "JF320648" - ], - "Hepatitis_B_virus__C167" : [ - "EU939625" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20142407" : [ - "KR653249" - ], - "Maize_streak_virus__MSV_A_NG_ng25_Mil_2011" : [ - "KJ437658" - ], - "Papaya_leaf_curl_China_virus__JX01" : [ - "KP685599" - ], - "Human_respiratory_syncytial_virus__B05" : [ - "KF640637" - ], - "Human_papillomavirus_type_6__CAC251c" : [ - "FR751321" - ], - "Lactococcus_lactis_cremoris_A76" : [ - "NC_017492", - "NC_017496", - "NC_017495", - "NC_017497", - "NC_017493" - ], - "Caldicellulosiruptor_saccharolyticus_DSM_8903" : [ - "NC_009437" - ], - "Eragrostis_curvula_streak_virus__ECSV_ZA_Gre3_g257_2007" : [ - "FJ665632" - ], - "Digitaria_ciliaris_striate_mosaic_virus__AU_QG5_2011" : [ - "NC_018579" - ], - "Listeria_monocytogenes_serotype_4a_L99" : [ - "NC_017529" - ], - "Human_immunodeficiency_virus_1__02ZAPS013MB1" : [ - "DQ351222" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_413N5__413N5" : [ - "JN819502" - ], - "Hepatitis_B_virus__patient_B__serum_12_95" : [ - "EF208115", - "EF208114" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLA6964_2009_A" : [ - "KJ627402" - ], - "Candidatus_Carsonella_ruddii" : [ - "NC_008512" - ], - "BK_polyomavirus__FUJ_4" : [ - "AB369095" - ], - "Dengue_virus_1__DENV_1_VN_BID_V788_2007" : [ - "EU482714" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2237_2004" : [ - "FJ744701" - ], - "Newcastle_disease_virus_Du_CH_LAH_209_2011" : [ - "KM885165" - ], - "Avian_orthoreovirus_526" : [ - "KF741697", - "KF741705", - "KF741701", - "KF741699", - "KF741700", - "KF741698", - "KF741704", - "KF741703", - "KF741696" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1NA3" : [ - "GU292318" - ], - "Coxsackievirus_A19_8663" : [ - "AF499641" - ], - "Dengue_virus_3__HN_2013_107" : [ - "KJ622197" - ], - "BK_polyomavirus__LAB_29" : [ - "AB301096" - ], - "South_African_cassava_mosaic_virus__MG_MG336A5_10" : [ - "KJ887987" - ], - "Dengue_virus_2_16681" : [ - "DENCMEMSB", - "NC_001474" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4073_2008" : [ - "GU131821" - ], - "West_Nile_virus__WNV_1_US_BID_V6393_2002" : [ - "KJ501448" - ], - "Soft_shelled_turtle_iridovirus" : [ - "EU627010" - ], - "Human_bocavirus_3_W471" : [ - "NC_012564" - ], - "Duck_Tembusu_virus_BZ_2010" : [ - "KC990540" - ], - "Variola_virus_Pakistan_1969__Rafig_Lahore" : [ - "DQ437589" - ], - "Farmington_virus" : [ - "HM627182" - ], - "Hepatitis_B_virus_ayw" : [ - "Y07587" - ], - "Human_immunodeficiency_virus_1__CH40E_flF9" : [ - "FJ495824" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_1102_2005_HKU1_1102" : [ - "KF850450" - ], - "Infectious_pancreatic_necrosis_virus__S_IPNV_FS12_01" : [ - "DQ536090" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0170" : [ - "KP759625" - ], - "Peanut_stunt_virus_P" : [ - "EU570237", - "EU570236", - "EU570238" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1699_2007" : [ - "FJ373299" - ], - "Human_immunodeficiency_virus_1__WEAU_flF2" : [ - "FJ496162" - ], - "Dragonfly_larvae_associated_circular_virus_9__DflaCV_9_NZ_PG10_LD" : [ - "NC_023435" - ], - "Human_adenovirus_50_Wan__ATCC_VR_1502" : [ - "AY737798" - ], - "Dengue_virus_1__KDH0026A" : [ - "HG316481" - ], - "Rubella_virus_RVi_LA_CA_USA_91_1C" : [ - "JN635283" - ], - "Cucumber_green_mottle_mosaic_virus__Rd" : [ - "KF155230" - ], - "Ageratum_leaf_curl_Cameroon_betasatellite__SatBToF3" : [ - "HG972118" - ], - "Porcine_circovirus_2_ADDLPP_12912" : [ - "EU589463" - ], - "Porcine_circovirus_2__26606" : [ - "AF264038" - ], - "Human_immunodeficiency_virus_1__INDNARI_9917796" : [ - "EU000516", - "EU000515" - ], - "Murine_hepatitis_virus_MHV_MI" : [ - "AB551247" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5461_2009" : [ - "JF920396" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_2___strain_439__439_AUS1979_01" : [ - "AM744996", - "AM744991", - "AM744994", - "AM744988", - "AM744992", - "AM744990", - "AM744993", - "AM744989", - "AM744995" - ], - "Torque_teno_virus_12__CT44F" : [ - "NC_014075" - ], - "Bhendi_yellow_vein_India_virus__India_Thadagan_OY155B_2006___OY155B" : [ - "GU112029" - ], - "Penaeus_merguiensis_hepandensovirus_Australia" : [ - "DQ458781" - ], - "Hepatitis_C_virus_subtype_1b_MD32" : [ - "AF207773" - ], - "Psychromonas_CNPT3" : [ - "NC_020802" - ], - "Blainvillea_yellow_spot_virus__BgV06B_1_C56" : [ - "JF694477" - ], - "Hepatitis_B_virus__AIDS10" : [ - "JQ801473" - ], - "Hepatitis_B_virus__EHBV_I_057_HIV_HBV" : [ - "KM524358" - ], - "Hepatitis_B_virus__A69a" : [ - "FJ904418" - ], - "Orchid_fleck_virus__So" : [ - "NC_009608", - "NC_009609" - ], - "Merkel_cell_polyomavirus__85" : [ - "JF813002" - ], - "Bat_coronavirus_HKU9_5_1" : [ - "HM211098" - ], - "Potato_black_ringspot_virus__PV0056__2" : [ - "KC832890", - "KC832894" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_NM042_1" : [ - "KM233116" - ], - "MW_polyomavirus_QLDMW12" : [ - "KC549593" - ], - "Hepatitis_C_virus__TV476" : [ - "JX183552" - ], - "Pigeon_paramyxovirus_1_pi_CH_LJS_1_04" : [ - "KJ607163" - ], - "Chino_del_tomate_virus" : [ - "CDU57458" - ], - "Human_rhinovirus_A23" : [ - "DQ473497" - ], - "Hepatitis_B_virus_468_12" : [ - "KR013928" - ], - "Piper_yellow_mottle_virus__PB" : [ - "KJ873042" - ], - "Human_T_lymphotropic_virus_1__Aus_NR" : [ - "JX891479" - ], - "Cucumber_mosaic_virus_Z1" : [ - "GU327366", - "GU327368", - "GU327367" - ], - "Merkel_cell_polyomavirus__09b" : [ - "HM011539" - ], - "Human_poliovirus_1_NIE1018363" : [ - "KJ170531" - ], - "Beak_and_feather_disease_virus__2NC42B" : [ - "JX049209" - ], - "Hepatitis_B_virus__LAMr_Pt__29" : [ - "AB367420" - ], - "Hepatitis_B_virus__HBV_14611" : [ - "AF121243" - ], - "Papaya_leaf_curl_virus__PF1" : [ - "KC161184" - ], - "BK_polyomavirus__PHL_7" : [ - "AB263934" - ], - "Porcine_circovirus_2_ZJ" : [ - "AY686764" - ], - "Hepatitis_B_virus__A54b" : [ - "FJ904410" - ], - "Methylophaga_JAM7" : [ - "NC_017858", - "NC_017856" - ], - "BK_polyomavirus_MMR_24" : [ - "AB269842" - ], - "Chikungunya_virus_10Mdy30" : [ - "KF590566" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2203_2001" : [ - "FJ639770" - ], - "Hepatitis_B_virus__JFA3949" : [ - "KF779266" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2826_2003" : [ - "FJ882563" - ], - "Newcastle_disease_virus_LaSota" : [ - "AY845400", - "JF950510", - "AF077761" - ], - "Sida_golden_yellow_vein_virus" : [ - "AJ577395" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0014" : [ - "KP759740" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0159" : [ - "KP759619" - ], - "Achimota_virus_1" : [ - "NC_025403" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta" : [ - "NC_009731" - ], - "Porcine_circovirus_2_PT_26216_04" : [ - "HQ831531" - ], - "Hepatitis_B_virus__I129" : [ - "FJ562275" - ], - "Beet_black_scorch_virus__CO" : [ - "EF153268" - ], - "Hepatitis_B_virus_HBV_P25" : [ - "KC510649" - ], - "Mammalian_orthoreovirus_3__T3_Human_Colorado_1996" : [ - "AY302467" - ], - "Sida_leaf_curl_virus_associated_DNA_beta__Hn57" : [ - "NC_007639" - ], - "Human_immunodeficiency_virus_1__53" : [ - "EF363127" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2217_2003" : [ - "FJ639784" - ], - "Hepatitis_B_virus__G243" : [ - "JQ040172" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V177_1992" : [ - "EU234063" - ], - "Dengue_virus_2__DC740Y12" : [ - "KM279560" - ], - "Mesta_yellow_vein_mosaic_virus__India_Haringhata_Leaf_Curl_2007" : [ - "FJ345399" - ], - "Dromedary_camel_coronavirus_HKU23_HKU23_368F" : [ - "KF906251" - ], - "Dengue_virus_3__98TW360" : [ - "DQ675523" - ], - "Dobrava_Belgrade_virus_Saaremaa_90Aa_97" : [ - "AJ009775" - ], - "Simian_immunodeficiency_virus_SIVwrc_98CI04" : [ - "AM713177" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9522_2013" : [ - "KJ643569" - ], - "Hepatitis_B_virus_HB286" : [ - "HM011491" - ], - "Yam_mild_mosaic_virus__TG_NH_1" : [ - "KJ125475" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4030_2008" : [ - "GU131789" - ], - "Hepatitis_B_virus__P45" : [ - "GQ477481", - "EU859898" - ], - "Dengue_virus_4_H778887_DENV_4_BEL83846" : [ - "JQ513337" - ], - "Pigeon_paramyxovirus_1_pi_CH_LLN_110713" : [ - "JX486552" - ], - "Tomato_mottle_virus" : [ - "AY965901", - "AY965900" - ], - "BK_polyomavirus__BKV_HI_u6" : [ - "AY628237" - ], - "Porcine_circovirus_2__DBS12" : [ - "KJ680366" - ], - "Hepatitis_B_virus__TF051" : [ - "FR714499" - ], - "Human_immunodeficiency_virus_1__DJ264" : [ - "AF063224" - ], - "Porcine_circovirus_2_JX0601" : [ - "EF524535" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC237" : [ - "KF551582", - "KF571462" - ], - "Norovirus_Hu_GII_4_Osaka5_2008_JP_Hu_GII_4_Osaka5_2008_JP" : [ - "AB541328" - ], - "Porcine_epidemic_diarrhea_virus_NPL_PEDv_2013_p10_1" : [ - "KM052365" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2390_2004" : [ - "FJ850082" - ], - "Mycobacterium_phage_PhatBacter" : [ - "NC_022969" - ], - "Hepatitis_B_virus__HK_1328" : [ - "KJ410499" - ], - "Escherichia_coli_NA114" : [ - "NC_017644" - ], - "Rotavirus_A_RVA_Cow_wt_FRA_V019_2010_G6P_5" : [ - "HE646643" - ], - "JC_polyomavirus__JCV161FLC_44" : [ - "JF424951" - ], - "Avian_paramyxovirus_6_red_necked_stint_Japan_8KS0813_2008" : [ - "AB759118" - ], - "Hepatitis_B_virus__N208C_e416" : [ - "KJ173446" - ], - "Rotavirus_A_RVA_Vaccine_USA_Rotarix_AROLA490AB_1988_G1P1A_8__RVA_Vaccine_USA_Rotarix_AROLA490AB_1988_G1P1A_8" : [ - "HG917354", - "HG917357" - ], - "Macroptilium_yellow_vein_virus__BR_Pai19_11" : [ - "KJ939899" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0076" : [ - "KP759744" - ], - "Maize_streak_virus___B_Vaalhart_wheat___VW" : [ - "AF239960" - ], - "SARS_coronavirus_AS_AS" : [ - "AY427439" - ], - "Pasteurella_phage_F108" : [ - "NC_008193" - ], - "Tomato_mosaic_virus__S_1" : [ - "AJ132845" - ], - "Hepatitis_B_virus_GDH1" : [ - "AY766463" - ], - "Cowpox_virus_HumLit08_1" : [ - "KC813493" - ], - "WU_Polyomavirus__B6807" : [ - "GU296382" - ], - "Herpetosiphon_aurantiacus_DSM_785" : [ - "NC_009973", - "NC_009972", - "NC_009974" - ], - "Duck_hepatitis_B_virus__GD1" : [ - "AY392760" - ], - "Beak_and_feather_disease_virus__1IT08" : [ - "KF723391" - ], - "Human_respiratory_syncytial_virus__03_036456" : [ - "JQ901457" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4982_serum" : [ - "JF730040" - ], - "Marinobacter_BSs20148" : [ - "NC_018268" - ], - "West_Nile_virus_ORCO0559_07" : [ - "GQ379158" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_cw46" : [ - "KP998405" - ], - "Porcine_circovirus_2__JX0803" : [ - "GU325753" - ], - "Hepatitis_B_virus__dww1071" : [ - "KC774449" - ], - "West_Nile_virus_Greece_2013_Thessaloniki_4" : [ - "KJ883346" - ], - "Equine_rotavirus_A_H2" : [ - "KM454493", - "KM454492", - "KM454494", - "KM454500", - "KM454496", - "KM454502", - "KM454497", - "KM454501", - "KM454495", - "KM454499" - ], - "Rattus_norvegicus_polyomavirus_1__3671" : [ - "KR065723" - ], - "Bluetongue_virus_23__Dehradoon" : [ - "AJ277802" - ], - "Hepatitis_C_virus_subtype_1b__No__5" : [ - "AB154180" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2862_2006" : [ - "FJ898399" - ], - "Hepatitis_B_virus__cyc1081" : [ - "KC774357" - ], - "Kenaf_leaf_curl_virus__Y341" : [ - "FN806778" - ], - "Hepatitis_B_virus__28" : [ - "AY233279" - ], - "Hepatitis_B_virus_HB129" : [ - "JQ027314" - ], - "Porcine_circovirus_2__PF1871" : [ - "JF317588" - ], - "Bluetongue_virus_13__RSArrrr_13" : [ - "AJ586713" - ], - "Hepatitis_B_virus__D_Tonga_BH0071_2002" : [ - "HQ700582" - ], - "Bunyamwera_virus_ArB28215_08_08_1992" : [ - "AM711130" - ], - "Avian_leukosis_virus_RSA" : [ - "NC_001408" - ], - "Hepatitis_B_virus_HB370" : [ - "HM011476" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Henan_A12" : [ - "KJ819934" - ], - "Abalone_shriveling_syndrome_associated_virus" : [ - "NC_011646" - ], - "Porcine_circovirus_2_09ZJ" : [ - "HQ395048" - ], - "Bluetongue_virus_1__IAH_IND2003_05" : [ - "AJ783903" - ], - "Hepatitis_B_virus__HBV3" : [ - "KC875252" - ], - "Nitrincola_phage_1M3_16" : [ - "NC_024217" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4329_1" : [ - "KR105235" - ], - "Synechococcus_phage_S_CBS2_S_CBS2" : [ - "NC_015463" - ], - "Tomato_leaf_curl_Karnataka_virus" : [ - "AY754812", - "HM851186", - "HM803118" - ], - "Clostridium_kluyveri_NBRC_12016" : [ - "NC_011836", - "NC_011837" - ], - "Chickpea_chlorosis_Australia_virus__CpCV_D_AU_2614a_2010" : [ - "JN989421" - ], - "Chlamydia_trachomatis_L2b_Ams5" : [ - "NC_020936", - "NC_020950" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7209_2009_A" : [ - "KJ627393" - ], - "Hepatitis_B_virus_544_11a" : [ - "KR013961" - ], - "Watermelon_chlorotic_stunt_virus__IR" : [ - "AJ245653", - "AJ245652" - ], - "Citrus_sudden_death_associated_virus" : [ - "NC_006950" - ], - "Southern_rice_black_streaked_dwarf_virus__Quang_Tri_1" : [ - "KM576891" - ], - "Human_rhinovirus_A38" : [ - "DQ473495" - ], - "European_mountain_ash_ringspot_associated_virus__E52990" : [ - "HG799738" - ], - "Watermelon_chlorotic_stunt_virus__PA1_J56" : [ - "KM820274" - ], - "Sida_micrantha_mosaic_virus____Brazil_okra___5157" : [ - "EU908734", - "EU908733" - ], - "Cauliflower_mosaic_virus__TUR220" : [ - "AB863181" - ], - "Enterovirus_A71_Shanghai_118_2009" : [ - "HQ891929" - ], - "Hepatitis_B_virus__C177" : [ - "EU939601" - ], - "African_swine_fever_virus__Warmbaths" : [ - "AY261365" - ], - "Porcine_circovirus_1__WB_H_8" : [ - "DQ648032" - ], - "Simian_virus_40_MC_028846B" : [ - "AF180737" - ], - "Human_immunodeficiency_virus_1__5096_83" : [ - "AY835748" - ], - "Canine_distemper_virus_011C_H" : [ - "AB490674" - ], - "Pseudomonas_phage_phi6__S2" : [ - "DQ785295", - "DQ785290", - "DQ785289" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_424N3__424N3" : [ - "JN819510" - ], - "Pasivirus_A1" : [ - "NC_018226" - ], - "Helminthosporium_victoriae_virus_190S" : [ - "NC_003607" - ], - "Human_immunodeficiency_virus_1__ML1956" : [ - "EU110089" - ], - "Candidatus_Portiera_aleyrodidarum_BT_QVLC" : [ - "NC_018676" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8384_2003" : [ - "KJ627668" - ], - "Norovirus_Hu_GII_4_Nagano1_2008_JP_Hu_GII_4_Nagano1_2008_JP" : [ - "AB541302" - ], - "Rhynchosia_golden_mosaic_virus_1045" : [ - "NC_010294" - ], - "Dengue_virus_2__DENV_2_NI_BID_V4637_2005" : [ - "JX079694" - ], - "Human_papillomavirus_type_68__Qv00677" : [ - "KC470275" - ], - "Hepatitis_E_virus__G3_HEV83_2_27" : [ - "AB740232" - ], - "Powassan_virus_Ternay" : [ - "HQ231415" - ], - "Staphylococcus_aureus_ST228_18583" : [ - "NC_020539", - "NC_020568" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0011" : [ - "KP759641" - ], - "Hepatitis_delta_virus_Miyako_JA_M2" : [ - "AB118818" - ], - "Rhodopseudomonas_palustris_CGA009" : [ - "NC_005297", - "NC_005296" - ], - "Maize_streak_virus__ULuw_107" : [ - "EF547085" - ], - "Tomato_leaf_curl_China_betasatellite__Y43" : [ - "AJ420314" - ], - "Turkey_astrovirus_2" : [ - "NC_005790" - ], - "Porcine_circovirus_2_Fh17" : [ - "AY322004" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_HB156_China_2011" : [ - "JQ733568", - "JQ733567", - "JQ733566" - ], - "Lettuce_mosaic_virus__9" : [ - "KJ161172" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2036_2003" : [ - "FJ639704" - ], - "Hepatitis_B_virus__A1_48074" : [ - "FJ692564" - ], - "Newcastle_disease_virus__duck_China_Guangxi22_2010" : [ - "JX193083" - ], - "Persephonella_marina_EX_H1" : [ - "NC_012440", - "NC_012439" - ], - "Banana_bunchy_top_virus" : [ - "AF416479", - "AF416476", - "AM418564", - "AY606085", - "AM418540", - "EU190971", - "AF416467", - "DQ826390", - "BYTV1", - "AF416468", - "AF416477", - "AM418537", - "EU140341", - "EU589459", - "AM418535", - "NC_003479", - "U02312", - "AF416470", - "DQ826396", - "AY450396", - "AF416469", - "DQ256267", - "AF416465", - "BYTV2", - "HQ259074", - "AM418568", - "AY606084", - "DQ826391", - "NC_003477", - "GQ249344", - "NC_003473", - "AF349568", - "AF416474", - "AM418565", - "AF416472", - "NC_003475", - "DQ826394", - "DQ826395", - "AY494786", - "AM418541", - "AF416466", - "EU140342", - "AF416473", - "AM418538", - "DQ826393", - "DQ826392", - "AF416478", - "AM418566", - "EU190970", - "AM418536", - "AM418567", - "AF416475", - "NC_003476", - "EU190969", - "AM418534", - "NC_003474", - "AY494788", - "AM418569", - "AY494787", - "AM418539", - "AY953429" - ], - "Tomato_leaf_curl_China_betasatellite__Y36" : [ - "NC_004544" - ], - "Kyasanur_forest_disease_virus_P9605" : [ - "JF416958" - ], - "Hepatitis_delta_virus_dFr2201_dFr2201" : [ - "AM902167" - ], - "Human_parechovirus_1" : [ - "S45208" - ], - "Semliki_Forest_virus_4" : [ - "KP699763" - ], - "Potato_virus_Y_N_605" : [ - "X97895" - ], - "Hepatitis_B_virus__F3_2" : [ - "GU815739" - ], - "Tomato_blistering_mosaic_virus__SC50" : [ - "NC_021851" - ], - "Infectious_bronchitis_virus_ck_CH_LJL_111054" : [ - "KC506155" - ], - "Dengue_virus_2_DENV_2_PR_30DN_1994" : [ - "GQ398289" - ], - "Papaya_leaf_curl_China_virus__ZM1" : [ - "EU874386" - ], - "Dengue_virus_2__DENV_2_US_BID_V689_1989" : [ - "EU482746" - ], - "Hepatitis_B_virus__192del" : [ - "JQ040134" - ], - "Dengue_virus_2_ThD2_0017_98" : [ - "DQ181799" - ], - "Hepatitis_B_virus__919084" : [ - "JN040773" - ], - "Zymomonas_mobilis_NCIMB_11163" : [ - "NC_013356", - "NC_013355", - "NC_013358", - "NC_013357" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_84E_004_01_1984" : [ - "KP258733" - ], - "Eel_River_basin_pequenovirus__c20568" : [ - "KP087954" - ], - "Southern_rice_black_streaked_dwarf_virus__Thai_Binh_1" : [ - "KM576882", - "KM576895" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_113_2012" : [ - "KJ686225" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1931_2007" : [ - "FJ461333" - ], - "Norovirus_Hu_GII_4_Akita5_2006_JP_Hu_GII_4_Akita5_2006_JP" : [ - "AB447439" - ], - "Zucchini_yellow_mosaic_virus__AG" : [ - "EF062583" - ], - "Hepatitis_B_virus__79" : [ - "AF297622" - ], - "Rubrobacter_xylanophilus_DSM_9941" : [ - "NC_008148" - ], - "Lactococcus_Phage_ASCC531" : [ - "JQ740812" - ], - "Hepatitis_B_virus_E0113" : [ - "DQ980547" - ], - "Human_papillomavirus_type_6__21" : [ - "HG793829" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA09" : [ - "KF670650" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Clone20" : [ - "FJ899592" - ], - "Bush_viper_reovirus_47_02" : [ - "NC_023817", - "NC_023819", - "NC_023821", - "NC_023822", - "NC_023816", - "NC_023813", - "NC_023815", - "NC_023820", - "NC_023814", - "NC_023818" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3457_2006" : [ - "GU131857" - ], - "Mannheimia_phage_phiMhaA1_BAA410" : [ - "DQ426905" - ], - "Human_immunodeficiency_virus_1__97VNAG202" : [ - "FJ185246" - ], - "JC_polyomavirus__JCV161FLC_24" : [ - "JF424932" - ], - "Porcine_circovirus_2_PCV2_P6_10708" : [ - "FJ667591" - ], - "Tomato_leaf_curl_Cameroon_alphasatellite__CM_OMHD3_Ok_09___OMHD3" : [ - "FN675296" - ], - "Duck_hepatitis_B_virus__DHBV22" : [ - "X58568" - ], - "Human_rhinovirus_C3_HRV_QPM" : [ - "EF186077" - ], - "Cucurbit_aphid_borne_yellows_virus_CABYV_CZ_Beijing" : [ - "HQ439023" - ], - "African_cassava_mosaic_virus__MG_MG379B1_11" : [ - "KJ887710" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V347_2003" : [ - "EU155304" - ], - "Hepatitis_B_virus__YY010C_e112" : [ - "KJ173335" - ], - "Dengue_virus_3_D3_SG_05K2918DK1_2005" : [ - "EU081197" - ], - "Wheat_dwarf_virus____Gansu_Gangu___GSGG05_1" : [ - "EF536859" - ], - "Tobacco_mosaic_virus__Shaoxing" : [ - "HE818440" - ], - "Saccharophagus_degradans_2_40" : [ - "NC_007912" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1584_2007" : [ - "FJ024443" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI28_12" : [ - "HE979764" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_G6_51" : [ - "LN846601" - ], - "Maize_streak_virus__MSV_B3_Re_BasF_R10_2006" : [ - "EU628620" - ], - "Hepatitis_B_virus__V51" : [ - "EU747320" - ], - "Bean_yellow_mosaic_virus__MD7" : [ - "HG970850" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2883_2006" : [ - "GQ199846" - ], - "Burkholderia_glumae_BGR1" : [ - "NC_012720", - "NC_012718", - "NC_012723", - "NC_012724", - "NC_012725", - "NC_012721" - ], - "Ralstonia_phage_RS611" : [ - "AB931172" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2294_2001" : [ - "FJ744710" - ], - "Chlamydia_trachomatis_RC_F_s_852" : [ - "NC_021888" - ], - "Pepper_golden_mosaic_virus__Turrialba_1" : [ - "JN688725" - ], - "Beak_and_feather_disease_virus__MU_JP5P" : [ - "AB277750" - ], - "Watermelon_mosaic_virus_WMV_ShanXi" : [ - "JX079685" - ], - "Haloarcula_phage_SH1" : [ - "NC_007217" - ], - "Human_poliovirus_1__HAI01008C2" : [ - "AF405662" - ], - "Taylorella_equigenitalis_14_56" : [ - "NC_021036" - ], - "Hepatitis_B_virus_1134_2" : [ - "KR014010" - ], - "Hepatitis_B_virus_1368_3" : [ - "KR014046" - ], - "Porcine_circovirus_2_Shenzhen02" : [ - "HQ113117" - ], - "Buchnera_aphidicola_Ak__Acyrthosiphon_kondoi" : [ - "NC_017258", - "NC_017256", - "NC_017257" - ], - "Hepatitis_B_virus__HK_1313" : [ - "KJ410492" - ], - "Human_respiratory_syncytial_virus_12_004620" : [ - "JX576733" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0166" : [ - "KP759704" - ], - "Hepatitis_B_virus__AIDS32" : [ - "JQ801485" - ], - "West_Nile_virus_ArD76104" : [ - "DQ318019" - ], - "Wheat_dwarf_virus__SXHC07_3" : [ - "KJ536114" - ], - "Malvastrum_yellow_mosaic_Cameroon_alphasatellite__UMU1D1" : [ - "NC_014907" - ], - "SARS_coronavirus_TW3__TW3" : [ - "AY502926" - ], - "Honeysuckle_yellow_vein_virus_UK1" : [ - "NC_005807" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_C3" : [ - "KC106650" - ], - "Swine_hepatitis_E_virus__swJB_E10" : [ - "AB481226" - ], - "Mycobacterium_phage_ET08" : [ - "NC_013650" - ], - "Hepatitis_delta_virus__D2_B" : [ - "KJ744216" - ], - "Duck_hepatitis_B_virus__DHBV_GD_056" : [ - "HQ132730" - ], - "Streptococcus_thermophilus_CNRZ1066" : [ - "NC_006449" - ], - "Toscana_virus_TOSV_Firenze_ITA_1984" : [ - "KM275766" - ], - "Microviridae_Fen2266_11__Fen2266_11" : [ - "NC_027639" - ], - "Human_poliovirus_1_NIE1118374" : [ - "KJ170511" - ], - "Hepatitis_B_virus__C26_2" : [ - "FJ899767" - ], - "Bat_coronavirus_HKU9_5_2" : [ - "HM211099" - ], - "Eel_River_basin_pequenovirus__c15446" : [ - "KP087948" - ], - "Porphyromonas_gingivalis_W83" : [ - "NC_002950" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4026_2008" : [ - "GU131786" - ], - "Visna_maedi_virus" : [ - "A15114", - "S55323", - "VLVCGA" - ], - "West_Nile_virus__WNV_1_US_BID_V6207_2009" : [ - "KJ501256" - ], - "Human_herpesvirus_2__HSV_2_JP_BID_G32588_JA3" : [ - "KR135324" - ], - "Tomato_leaf_curl_China_betasatellite__Y255" : [ - "AJ971333" - ], - "Hepatitis_B_virus_adr_Recipient_3_97_Feb" : [ - "AB026811" - ], - "Hepatitis_B_virus__ES69_3" : [ - "JF828907" - ], - "Canine_parvovirus_2c__UY152" : [ - "KM457113" - ], - "Pandoravirus_dulcis__Melbourne" : [ - "NC_021858" - ], - "Hepatitis_E_virus__GDC46" : [ - "FJ906896" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2255_2006" : [ - "FJ639815" - ], - "Hepatitis_delta_virus_Miyako_JA_M32" : [ - "AB118842" - ], - "Mycobacterium_phage_Butterscotch" : [ - "NC_011286" - ], - "WU_Polyomavirus_GD_WU709" : [ - "GQ926980" - ], - "Rubella_virus__Cordoba_Argentina_1988" : [ - "DQ085339" - ], - "Neisseria_meningitidis_WUE_2594" : [ - "NC_017512" - ], - "Hepatitis_B_virus__919065" : [ - "JN040772" - ], - "Human_poliovirus_1__CHN_Hainan_93_2__CHN_5732HA93" : [ - "AF111966" - ], - "Variola_virus_Niger_1969__001__importation_from_Nigeria" : [ - "DQ441434" - ], - "Human_immunodeficiency_virus_1__11246" : [ - "AF067159" - ], - "Hepatitis_B_virus__1745" : [ - "FJ386575" - ], - "Porcine_circovirus_2_Fd13" : [ - "AY321985" - ], - "Hepatitis_B_virus__CH4" : [ - "DQ823089" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Forecariah_1567" : [ - "KR534564" - ], - "Turneriella_parva_DSM_21527" : [ - "NC_018020", - "NC_018021" - ], - "Coxsackievirus_B3_Nancy" : [ - "CXA3G", - "JX312064" - ], - "WU_Polyomavirus__HB037C" : [ - "KC571694" - ], - "Dengue_virus_2__DENV_2_US_BID_V1392_1998" : [ - "EU569711" - ], - "Rabies_virus_CJS0621D" : [ - "JQ970481" - ], - "Hepatitis_B_virus__dww1006" : [ - "KC774435" - ], - "Shewanella_violacea_DSS12" : [ - "NC_014012" - ], - "Norovirus_Hu_GII_30045_2009_VNM_Hu_GII_30045_2009_VNM" : [ - "KC409307" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3804_2008" : [ - "GU131903" - ], - "Newcastle_disease_virus__ndv26_navli_03_2013" : [ - "KM056346" - ], - "Hepatitis_E_virus_TW6196E" : [ - "HQ634346" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V452_2006" : [ - "EU256006" - ], - "African_cassava_mosaic_virus__MG_MG4A18_05" : [ - "KJ887823" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_B2005_89_2005" : [ - "KJ469631" - ], - "Streptococcus_phage_CP_7" : [ - "LK392619" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1859_2007" : [ - "FJ461315" - ], - "Human_poliovirus_2_NIE1118429" : [ - "KJ170552" - ], - "Cactus_virus_X__NTU" : [ - "JF937699" - ], - "Human_parainfluenza_virus_3_HPIV3_ZAF_3372_2010" : [ - "KF687340" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4174_legs" : [ - "HQ671689" - ], - "Human_papillomavirus_type_58__Qv00961" : [ - "HQ537758" - ], - "Beak_and_feather_disease_virus__CPA10_ZA" : [ - "DQ397818" - ], - "Gairo_virus_TZ_27421_TZ_27421_S" : [ - "NC_026246" - ], - "Propionibacterium_phage_P100_A" : [ - "NC_018838" - ], - "Murine_leukemia_virus_N417__N417" : [ - "HQ246218" - ], - "Hepatitis_B_virus__HBV_10TB" : [ - "EU564823" - ], - "Bornean_orang_utan_polyomavirus__Bo" : [ - "NC_013439" - ], - "European_mountain_ash_ringspot_associated_virus__E52280" : [ - "HG799715" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_SriGanganagar_2009" : [ - "JF502380" - ], - "Mungbean_yellow_mosaic_virus_Vigna" : [ - "AJ132574", - "AJ132575" - ], - "Hepatitis_B_virus__S461_3" : [ - "FJ787448" - ], - "Cucumber_mosaic_virus__LK" : [ - "AJ495841" - ], - "Tomato_severe_rugose_virus__MG_BR_Pip1792_03" : [ - "JF803261" - ], - "Bluetongue_virus_15__23_8_65" : [ - "JX272478" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG51" : [ - "NC_016536" - ], - "Dragonfly_associated_mastrevirus__PR_NZ50_2009" : [ - "JX458740" - ], - "Coxsackievirus_B5_2009_148_4" : [ - "KP266578" - ], - "Dengue_virus_2__1392" : [ - "JX475906" - ], - "Mosquito_circovirus_B51" : [ - "KM972726" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_138_2012" : [ - "KJ686196" - ], - "Apple_chlorotic_leaf_spot_virus__SY01" : [ - "KM207212" - ], - "Tomato_yellow_leaf_curl_Vietnam_betasatellite" : [ - "NC_009560" - ], - "Cotton_leaf_curl_Multan_betasatellite__SS01" : [ - "JX286663" - ], - "Hepatitis_B_virus__HBV_Ry565" : [ - "AB073846" - ], - "Hepatitis_B_virus__HBV_11T" : [ - "EU564825" - ], - "Murine_coronavirus_MHV_BHKR_lab_USA_icA59_17Cl1_2012_17Cl1" : [ - "KF268337" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_10_2010" : [ - "KF686341" - ], - "Tomato_yellow_leaf_curl_virus__Masan" : [ - "HM130912" - ], - "Potato_virus_M__M57" : [ - "AY311395" - ], - "Hepatitis_B_virus__M85_81" : [ - "EU330996" - ], - "African_cassava_mosaic_virus__CF_CF160AB_08" : [ - "KJ887809" - ], - "Prosthecochloris_aestuarii_DSM_271" : [ - "NC_011059", - "NC_011061" - ], - "Beet_western_yellows_virus__LS" : [ - "KM076647" - ], - "candidate_division_SR1_bacterium_RAAC1_SR1_1" : [ - "NC_023002" - ], - "Hepatitis_B_virus__MOD_4585" : [ - "GQ183459" - ], - "Hepatitis_B_virus__cww1072" : [ - "KC774264" - ], - "Helicobasidium_mompa_totivirus_1_17" : [ - "NC_005074", - "NC_005075" - ], - "Hepatitis_B_virus__E3_5" : [ - "GU815706" - ], - "Bovine_rotavirus_B223" : [ - "X52650" - ], - "Chicken_anemia_virus__98D06073" : [ - "AF311900" - ], - "Hepatitis_B_virus__J169" : [ - "GQ377605" - ], - "Pseudomonas_phage_vB_PaeS_SCH_Ab26" : [ - "NC_024381" - ], - "Cowpea_aphid_borne_mosaic_virus__MG_Avr" : [ - "HQ880243" - ], - "Cotton_leaf_curl_Gezira_virus" : [ - "FR751142", - "FJ868828", - "FR751144", - "NC_002510", - "FR751145", - "FR751146", - "FR751143" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7079_2008" : [ - "KJ189291" - ], - "Hyphomicrobium_MC1" : [ - "NC_015717" - ], - "Tomato_leaf_curl_China_betasatellite__Y45" : [ - "AJ420313" - ], - "Mammalian_orthoreovirus__RpMRV_YN2012" : [ - "KM087110", - "KM087112", - "KM087109", - "KM087105", - "KM087114", - "KM087113", - "KM087107", - "KM087108", - "KM087106" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V276_2004" : [ - "EU155358" - ], - "Leuconostoc_phage_phiLN03" : [ - "NC_024390" - ], - "Human_poliovirus_1__RUS37255" : [ - "KC880378" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7625_2011" : [ - "KJ189349" - ], - "Sweet_potato_leaf_curl_virus_Sao_Paulo_SPLCV_SP_BR_AlvM_09" : [ - "HQ393473" - ], - "Burkholderia_pseudomallei_K96243" : [ - "NC_006350", - "NC_006351" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC07B31_2008" : [ - "JF909083" - ], - "African_cassava_mosaic_virus__CF_CF118AB_07" : [ - "KJ887798" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_3_9_1996" : [ - "KJ469563" - ], - "Avian_leukosis_virus__BR119" : [ - "KF562373" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10FUJ_4" : [ - "JQ663549" - ], - "Hepatitis_B_virus__bur1053" : [ - "KC774374" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B3C2" : [ - "JN053459" - ], - "Symbiobacterium_thermophilum_IAM_14863" : [ - "NC_006177" - ], - "Human_papillomavirus_type_6__LPX44" : [ - "HE962026" - ], - "Tomato_yellow_leaf_curl_virus__Taft_Iran___TYLCV_IL_IR_Ta30_06" : [ - "GU076440" - ], - "Porcine_circovirus_2__Imp_1147" : [ - "AJ293869" - ], - "Pseudomonas_monteilii_SB3101" : [ - "NC_023076" - ], - "Hepatitis_B_virus__A2_EUR" : [ - "KP234051" - ], - "BK_polyomavirus__FNL_12" : [ - "AB263918" - ], - "Canna_yellow_streak_virus__NC5" : [ - "KM882648" - ], - "Hepatitis_B_virus_536207" : [ - "AY220698" - ], - "Suid_herpesvirus_2_BJ09" : [ - "NC_022233" - ], - "Hepatitis_B_virus__101" : [ - "HQ603079" - ], - "Zucchini_yellow_mosaic_virus__NAT" : [ - "EF062582" - ], - "Okra_mosaic_virus__PV_0264__available_from_DSMZ__German_collection_of_microorg__and_cell_cultures___Braunschweig__Germany" : [ - "NC_009532" - ], - "Tylonycteris_bat_coronavirus_HKU4_HKU4_1_B04f" : [ - "NC_009019" - ], - "Newcastle_disease_virus_FMW" : [ - "GU564399" - ], - "Tomato_yellow_leaf_curl_Thailand_virus_Nong_Khai" : [ - "AY514631", - "AY514634" - ], - "Human_poliovirus_2__102050" : [ - "AJ544513" - ], - "Coxsackievirus_A16_2008_43_7" : [ - "KP266573" - ], - "Newcastle_disease_virus_APMV_1_chicken_ZA_AL495_04_AL495" : [ - "JN986838" - ], - "Porcine_circovirus_2__DE003_14" : [ - "KP698401" - ], - "HIV_1_M_02CD_LBTB032__02CD_LBTB032" : [ - "FM877779" - ], - "Hepatitis_B_virus__IND_2008_13" : [ - "KF214664" - ], - "Hepatitis_B_virus__KWgib1" : [ - "AB823656" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC47AX3_2009" : [ - "JF909120" - ], - "Pseudomonas_phage_PaMx73" : [ - "JQ067085" - ], - "Hepatitis_B_virus__919064" : [ - "JN040753" - ], - "Hepatitis_B_virus__No36" : [ - "AB697511" - ], - "Hepatitis_B_virus_Ehime13_BD_No2_20020820" : [ - "AB119251" - ], - "Hepatitis_B_virus__dxn1009" : [ - "KC774467" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC31BT1_2009" : [ - "JF909109" - ], - "Bluetongue_virus_serotype_17" : [ - "X15891", - "X17041" - ], - "Foot_and_mouth_disease_virus___type_O__TAW_2_99_BOV" : [ - "AJ539137" - ], - "Human_poliovirus_2__CHN18046_Shanxi_CHN_2014" : [ - "KP196613" - ], - "Enterobacteria_phage_phiX174__3E90" : [ - "EF380023" - ], - "Paralichthys_olivaceus_birnavirus" : [ - "NC_009924", - "NC_009923" - ], - "Leuconostoc_phage_phiLNTR2" : [ - "NC_024389" - ], - "Bidens_mottle_virus__HL" : [ - "EU250214" - ], - "Dengue_virus_2__DENV_2_US_BID_V1175_1988" : [ - "EU482578" - ], - "Laribacter_hongkongensis_HLHK9" : [ - "NC_012559" - ], - "Murid_herpesvirus_8__Berlin" : [ - "KP202868" - ], - "Hepatitis_B_virus_1240_6" : [ - "KR014024" - ], - "Tomato_leaf_curl_Taiwan_virus__T3_3" : [ - "GU723727" - ], - "Human_immunodeficiency_virus_1__05ZASK246B1" : [ - "DQ369983" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V89_2006" : [ - "EU256031" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3725_2007" : [ - "KF955443" - ], - "BK_polyomavirus__TW_5" : [ - "AB211383" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_07HEBTJ" : [ - "FJ393458" - ], - "Soybean_mosaic_virus__WS156" : [ - "FJ640971" - ], - "Morganella_morganii_KT" : [ - "NC_020418" - ], - "West_Nile_virus__WNV_1_US_BID_V6479_2001" : [ - "KJ501317" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_81E_119_01_1981" : [ - "KP258721" - ], - "BK_polyomavirus_SWE_4" : [ - "AB269866" - ], - "Hepatitis_B_virus__C38" : [ - "EU939543" - ], - "Human_poliovirus_3_SWI10947" : [ - "FJ914252" - ], - "Strawberry_necrotic_shock_virus__840" : [ - "JX463344", - "JX463343" - ], - "Indian_cassava_mosaic_virus__Ker6" : [ - "AJ512823" - ], - "Dengue_virus_4_ThD4_0485_01" : [ - "AY618992" - ], - "Bhendi_yellow_vein_Bhubhaneswar_virus__OYBHU" : [ - "NC_012041" - ], - "Human_papillomavirus_type_6__CAC26" : [ - "FR751322" - ], - "Retroperitoneal_fibromatosis_associated_herpesvirus__RFHVMnM78114" : [ - "KF703446" - ], - "Usutu_virus_2742" : [ - "KJ438706" - ], - "Norovirus_Hu_GII_4_Akita3_2008_JP_Hu_GII_4_Akita3_2008_JP" : [ - "AB541215" - ], - "Dobrava_Belgrade_virus_DOB_Saaremaa_160V" : [ - "AJ009773", - "AJ009774" - ], - "Dehalococcoides_VS" : [ - "NC_013552" - ], - "Beet_necrotic_yellow_vein_virus__Kas2" : [ - "AF197553", - "AF197554" - ], - "Potato_virus_Y_strain_NTN_NTN_Gr99" : [ - "AJ890343" - ], - "Pieris_rapae_granulovirus" : [ - "JX968491" - ], - "Salinivibrio_phage_CW02" : [ - "NC_019540" - ], - "Human_immunodeficiency_virus_1__X397" : [ - "AF423756" - ], - "Gokushovirinae_Bog5712_52__Bog5712_52" : [ - "NC_027636" - ], - "Dengue_virus_1__DENV_1_VN_BID_V785_2007" : [ - "EU482711" - ], - "Hepatitis_B_virus__M118_481" : [ - "EU305547" - ], - "Formica_exsecta_virus_2__Fex2" : [ - "NC_023022" - ], - "Variola_virus_Somalia_1977__V77_2479" : [ - "DQ437590" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP5A" : [ - "JN013985" - ], - "Human_immunodeficiency_virus_1__C_96BW15B03" : [ - "AF110973" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA03" : [ - "KF670648" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0062" : [ - "KP759727" - ], - "Maize_streak_virus__MSV_B1_Za_Ken_g136_2006" : [ - "EU628585" - ], - "Human_papillomavirus_type_58__JP1870" : [ - "AB819279" - ], - "African_cassava_mosaic_virus__MG_MG26A1_06" : [ - "KJ887846" - ], - "BK_polyomavirus__SHA_41" : [ - "AB365170" - ], - "West_Nile_virus__WNV_1_US_BID_V6545_2002" : [ - "KJ501503" - ], - "Equine_rhinitis_A_virus_Plowright" : [ - "DQ272127" - ], - "Usutu_virus_V9" : [ - "KJ438762" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3382_2006" : [ - "GQ868564" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NT" : [ - "KP998420" - ], - "Hepatitis_delta_virus_dTk38_dTk38" : [ - "AM779590" - ], - "Ageratum_yellow_leaf_curl_betasatellite" : [ - "AM698010", - "NC_005046", - "AJ316027" - ], - "Bdellovibrio_exovorus_JSS" : [ - "NC_020813" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00635_2011" : [ - "KJ672537" - ], - "Sida_yellow_mosaic_Yucatan_virus" : [ - "NC_008780", - "NC_008779" - ], - "Human_herpesvirus_3_VZVi_Jena_GER_47_03_V_3__2308_2003" : [ - "JN704699" - ], - "Merkel_cell_polyomavirus__R17b" : [ - "NC_010277" - ], - "Candidatus_Kinetoplastibacterium_blastocrithidii_TCC012E" : [ - "NC_020285" - ], - "Dengue_virus_3_BR_DEN3_RO1_02" : [ - "EF629370" - ], - "Tobacco_mosaic_virus_strain_Ohio_V__Ohio_V" : [ - "FR878069" - ], - "Hepatitis_A_virus__IND_HAV_99F" : [ - "FJ360734" - ], - "Human_immunodeficiency_virus_1__94BR_RJ_41" : [ - "AY455781" - ], - "Hepatitis_C_virus_subtype_1a__F742" : [ - "EU781758" - ], - "African_cassava_mosaic_virus__MG_MG408A1_11" : [ - "KJ888008" - ], - "Human_rhinovirus_A50_ATCC_VR_517" : [ - "FJ445135" - ], - "Pseudoxanthomonas_spadix_BD_a59" : [ - "NC_016147" - ], - "Hepatitis_B_virus__GM012" : [ - "FR714491" - ], - "Hepatitis_B_virus__Ag53" : [ - "KJ843213" - ], - "Human_papillomavirus_type_53__TJ43_53" : [ - "GQ472849" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Octa_alpha_28" : [ - "EU384644" - ], - "Chimpanzee_polyomavirus__Bob" : [ - "NC_014743" - ], - "Sida_yellow_vein_China_alphasatellite__K32" : [ - "KJ466050" - ], - "Human_rhinovirus_B42_ATCC_VR_338" : [ - "FJ445130" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1529_2007" : [ - "EU677157" - ], - "Hepatitis_B_virus__F2_5" : [ - "GU815730" - ], - "Hepatitis_B_virus__WHRKN2" : [ - "JN257194" - ], - "Vibrio_cholerae_O1_biovar_El_Tor_N16961" : [ - "NC_002505", - "NC_002506" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD267_2013" : [ - "KM229891" - ], - "Torque_teno_zalophus_virus_1" : [ - "NC_012126" - ], - "BK_polyomavirus_JPN_33" : [ - "AB269837" - ], - "Tembusu_virus__FJMH220" : [ - "JQ928189" - ], - "Porcine_circovirus_2_GX0848" : [ - "GQ359006" - ], - "Hepatitis_B_virus__274_SE_BRA" : [ - "KJ854710" - ], - "Sulfurimonas_autotrophica_DSM_16294" : [ - "NC_014506" - ], - "Lactococcus_phage_c2" : [ - "NC_001706" - ], - "Human_mastadenovirus_B_human_IND_MEEI_00062_2011_3_P7H3F3" : [ - "KF268212" - ], - "Drosophila_melanogaster_sigmavirus_HAP23__HAP23" : [ - "GQ375258" - ], - "Torque_teno_mini_virus_ALH8__TTMV_ALH8" : [ - "NC_025727" - ], - "French_bean_leaf_curl_virus_Kanpur__FbLCV_Kanpur" : [ - "NC_018090" - ], - "Wheat_dwarf_virus__SXHC07_10" : [ - "KJ536108" - ], - "Pepino_mosaic_virus__PepMV_PK" : [ - "EF408821" - ], - "Norovirus_Hu_GII_4_Saga3_2008_JP_Hu_GII_4_Saga3_2008_JP" : [ - "AB541334" - ], - "Cotton_leaf_curl_Rajasthan_virus____India_Hisa_2003___Hisar" : [ - "AY795607" - ], - "Bat_coronavirus_HKU4_4_LMH1f" : [ - "EF065508" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT33A26_2003" : [ - "JF909238" - ], - "Hepatitis_C_virus__QC178" : [ - "JF735111" - ], - "Human_papillomavirus_type_126_HPV126" : [ - "NC_016157" - ], - "Hepatitis_B_virus__HPA184_07" : [ - "AB562462" - ], - "Human_mastadenovirus_D_Hicks__NIAID_V_209_003_014" : [ - "NC_010956" - ], - "Sinorhizobium_meliloti_BL225C" : [ - "NC_017323", - "NC_017322", - "NC_017324" - ], - "Porcine_circovirus_2_10FJ_2" : [ - "HQ395053" - ], - "Rift_Valley_fever_virus_ANK_6087" : [ - "DQ375421", - "DQ380166", - "DQ380216" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2351_2008" : [ - "FJ744709" - ], - "Hepatitis_B_virus__SamsunD90" : [ - "AB674432" - ], - "Human_coronavirus_HKU1_N6" : [ - "DQ415904" - ], - "Faba_bean_necrotic_yellows_C7_alphasatellite__SV292_88" : [ - "AJ005964" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kampala_Okra5" : [ - "FN554525" - ], - "Hepatitis_B_virus_1906_99" : [ - "EU594384" - ], - "Rotavirus_A_pheasant_HUN_2008_Phea15871_Hun_08" : [ - "FN393055" - ], - "Pepper_yellow_vein_Mali_virus__LC1_3" : [ - "AM691547" - ], - "Hepatitis_E_virus__JHK_Toy04C" : [ - "AB291962" - ], - "Tomato_yellow_vein_streak_virus__CL_VS_B4_To_2012" : [ - "KC136337", - "KC136338" - ], - "Hepatitis_B_virus__LAMr_Pt__10_Adefovir_treated_Pt__9" : [ - "AB367401" - ], - "Mammalian_orthoreovirus_3_Dearing" : [ - "NC_004282", - "NC_004283", - "NC_004274" - ], - "Ingwavuma_virus_ArB2633d_17_02_72" : [ - "AM709782" - ], - "Tick_borne_encephalitis_virus_Dalnegorsk" : [ - "FJ402886" - ], - "BK_polyomavirus__LAB_18" : [ - "AB301090" - ], - "Duck_hepatitis_A_virus_1__ZZ" : [ - "EU395439" - ], - "Beet_curly_top_Iran_virus__IR_Hom_Tu69_Sea_beet_10" : [ - "JX987671" - ], - "Dengue_virus_1__75861_BR_PE_01" : [ - "JX669474" - ], - "Rabbit_hemorrhagic_disease_virus_Dachswald" : [ - "EF558582" - ], - "Lactococcus_phage_1358" : [ - "NC_027120" - ], - "Human_immunodeficiency_virus_1__09YNLC216002sg" : [ - "KC898985" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2201_2001" : [ - "FJ850096" - ], - "Acetobacter_pasteurianus_IFO_3283_22" : [ - "NC_017145", - "NC_017127", - "NC_017125", - "NC_017128", - "NC_017126", - "NC_017117", - "NC_017129" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3687_1" : [ - "KM034563" - ], - "Human_rotavirus_A_1084_stool" : [ - "AJ236755" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2229_2004" : [ - "FJ639796" - ], - "Dengue_virus_1__HNRG14194" : [ - "KC692508" - ], - "Oropouche_virus_Tr9760" : [ - "AF312381" - ], - "European_bat_lyssavirus_1__07240FRA" : [ - "EU626552" - ], - "Human_immunodeficiency_virus_1__ZM249M_flD12" : [ - "FJ496211" - ], - "Dengue_virus_2__DENV_2_US_BID_V1425_1999" : [ - "EU677142" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7655_2012" : [ - "KF973458" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG579B1_11" : [ - "KJ888049" - ], - "East_African_cassava_mosaic_virus_Congo" : [ - "JX910240" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_FR22_2008" : [ - "KM229797" - ], - "Hepatitis_B_virus_XZK_t_w128" : [ - "EF536066" - ], - "Hepatitis_B_virus__bxa2013" : [ - "KC774409" - ], - "Murine_norovirus_GV_WU21_2005_USA__Mu_NoV_GV_WU21_2005_USA" : [ - "EU004666" - ], - "Pseudoalteromonas_haloplanktis_TAC125" : [ - "NC_007481", - "NC_007482" - ], - "Potato_virus_A" : [ - "Z21670" - ], - "Maize_streak_virus__MSV_A_ZA_Emp2_T8_2007" : [ - "FJ882107" - ], - "Bifidobacterium_bifidum_S17" : [ - "NC_014616" - ], - "Tomato_yellow_leaf_curl_virus__Handanquzhou" : [ - "JF964959" - ], - "Hepatitis_B_virus__A5_50033" : [ - "FJ692599" - ], - "Measles_virus__9301B" : [ - "AB012948" - ], - "Temperate_fruit_decay_associated_virus__MFBpe16" : [ - "KR134336" - ], - "Middle_East_respiratory_syndrome_coronavirus__England_4_2013" : [ - "KM210277" - ], - "Porcine_circovirus_2_YJ" : [ - "HM038032" - ], - "Caprine_arthritis_encephalitis_virus_Seui" : [ - "GQ381130" - ], - "Hepatitis_delta_virus__JN" : [ - "HM046802" - ], - "Coxsackievirus_A24_China_GD46_2010" : [ - "JF742576" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_KNU_07" : [ - "FJ349261" - ], - "Torque_teno_sus_virus_1b__TTV2Bj2_3" : [ - "HM633215" - ], - "Hepatitis_B_virus__17707" : [ - "AJ627216" - ], - "Hepatitis_B_virus_020" : [ - "AB900103" - ], - "Small_begomovirus_associated_satellite__wf_S52" : [ - "KJ859207" - ], - "Hepatitis_B_virus_MEX8_H" : [ - "AB375159" - ], - "Rabies_virus__D01" : [ - "FJ712193" - ], - "Sida_golden_mosaic_virus___Florida__Phaseolus___Florida" : [ - "GQ357649" - ], - "JC_polyomavirus__LA_28" : [ - "AB081613" - ], - "Hepatitis_C_virus__6_TV443" : [ - "KJ567649" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3995_2008" : [ - "GU131766" - ], - "Tomato_yellow_leaf_curl_virus__Goseong_21" : [ - "HM856911" - ], - "Hepatitis_B_virus__01D06HCC" : [ - "AB014365" - ], - "Panicum_streak_virus__G_YT_Ben_g384" : [ - "GQ415396" - ], - "Infectious_bronchitis_virus_ck_CH_LDL_110931" : [ - "KJ425485" - ], - "Human_immunodeficiency_virus_1__5077_85" : [ - "AY835769" - ], - "Human_mastadenovirus_D_human_USA_Pitts_00132_1992_8_P8H8F8" : [ - "KF429751" - ], - "Seal_anellovirus_6__SeAv6_PV13_431" : [ - "KM262785" - ], - "Tomato_yellow_leaf_curl_virus__HN_ZZ" : [ - "KC312661" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo193_08" : [ - "KC706556" - ], - "Dengue_virus_1__DENV_1_NI_BID_V2645_2008" : [ - "GQ199857" - ], - "Dengue_virus_2__DC763Y12" : [ - "KM279562" - ], - "Hepatitis_B_virus__WHMRW" : [ - "JN257159" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_97I_009A_01_1997" : [ - "KP258703" - ], - "Sibine_fusca_densovirus__IAF" : [ - "NC_018399" - ], - "Porcine_circovirus_2_CZ1111" : [ - "JX948784" - ], - "West_Nile_virus__WNV_1_US_BID_V6532_2001" : [ - "KJ501497" - ], - "Enterovirus_A71_TW_2429_04" : [ - "GQ231927" - ], - "Chikungunya_virus__IMTSSA6424S" : [ - "FR717336" - ], - "Porcine_circovirus_2__2_05" : [ - "HM009336" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3850" : [ - "KM233111" - ], - "Bluetongue_virus_NET2008_04" : [ - "GQ506471", - "GQ506469", - "GQ506468", - "GQ506470" - ], - "Garlic_virus_C__SW3_3B" : [ - "JQ899448" - ], - "Yam_mild_mosaic_virus__GH5_NN_1" : [ - "KJ125472" - ], - "Hepatitis_B_virus__GU1489" : [ - "GQ161782" - ], - "Hepatitis_B_virus__SSC137" : [ - "KJ598703" - ], - "Wheat_dwarf_virus__NXYC07_3" : [ - "KJ536098" - ], - "Hepatitis_B_virus__HBV_Fu53" : [ - "AB073847" - ], - "Infectious_flacherie_virus" : [ - "NC_003781" - ], - "Norovirus_Hu_GII_4_Hokkaido1_2006_JP_Hu_GII_4_Hokkaido1_2006_JP" : [ - "AB447427" - ], - "Wheat_dwarf_virus__Winter_rye_102" : [ - "KJ473699" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V110_2003" : [ - "EU256086" - ], - "European_mountain_ash_ringspot_associated_virus__E53111" : [ - "HG799721" - ], - "Sclerotinia_sclerotiorum_partitivirus_S" : [ - "NC_013014", - "NC_013015" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1785_2007" : [ - "FJ432730" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143018" : [ - "KR653272" - ], - "Norovirus_Hu_GII_4_CGMH24_2010_TW" : [ - "JN400622" - ], - "Hepatitis_B_virus__Cuba2" : [ - "KM606742" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_Liberia_DQE1" : [ - "KR074996" - ], - "African_cassava_mosaic_virus__MG_MG104A1_07" : [ - "KJ887912" - ], - "STL_polyomavirus__HB201" : [ - "KM893862" - ], - "Dengue_virus_1_Nauru_Island__Western_Pacific" : [ - "DVU88537", - "DVU88535" - ], - "Potato_virus_Y__PVY_AGA" : [ - "JF928459" - ], - "Rabies_virus__SM5081" : [ - "JQ685904" - ], - "Dengue_virus_4__VIROAF8" : [ - "KM190936" - ], - "Cucumber_green_mottle_mosaic_virus__KOM" : [ - "AF417243" - ], - "Hepatitis_C_virus__HKP16" : [ - "KJ470621" - ], - "Grapevine_Rupestris_stem_pitting_virus__3138_07" : [ - "JX559646" - ], - "Cotton_leaf_curl_Multan_betasatellite__Raigunj_East_India" : [ - "FJ159274" - ], - "Cucumber_mosaic_virus__Amaranthus" : [ - "EF593023" - ], - "Coxsackievirus_A1__KS_ZPH01F_XJ_CHN_2011" : [ - "JX174177" - ], - "Chikungunya_virus_M125" : [ - "KM923917" - ], - "Hepatitis_B_virus__GU841" : [ - "GQ161787" - ], - "Porcine_circovirus_2__DK1987PMWSfree" : [ - "EU148504" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V184_1992" : [ - "EU255976" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4080_2008" : [ - "JF937617" - ], - "Vibrio_phage_VGJphi" : [ - "NC_004736" - ], - "Hepatitis_B_virus__C207" : [ - "EU939607" - ], - "Dengue_virus_3__DENV_3_US_BID_V2115_2001" : [ - "FJ547080" - ], - "Banana_bunchy_top_virus__IJs11" : [ - "AB186926", - "AB186929" - ], - "Human_coronavirus_OC43_OC43_human_USA_872_5_1987" : [ - "KF530086" - ], - "Moroccan_pepper_virus__MPV_PM75" : [ - "NC_020073" - ], - "Pseudoalteromonas_phage_H105_1" : [ - "NC_015293" - ], - "Listeria_phage_LMTA_94" : [ - "KJ586795" - ], - "FTLS_virus__YPQ5" : [ - "KF356544", - "KF356532", - "KF356520" - ], - "Bean_common_mosaic_virus__US1" : [ - "KT175569" - ], - "Middle_East_respiratory_syndrome_coronavirus_Abu_Dhabi_UAE_30_2014" : [ - "KP209309" - ], - "Sin_Nombre_virus_Sin_Nombre_virus_77734_Vero_cells" : [ - "KF537004", - "KF537005" - ], - "Cyrtanthus_elatus_virus_A__Marijiniup_7" : [ - "NC_017977" - ], - "Ngari_virus_9800535" : [ - "JX857328", - "JX857330" - ], - "SARS_coronavirus_LC4__LC4" : [ - "AY395001" - ], - "Coxsackievirus_A16_HN1662_HN_CHN_2010" : [ - "JN674176" - ], - "Human_adenovirus_4" : [ - "AY594254" - ], - "Infectious_bronchitis_virus__CK_CH_XDC__2_2013" : [ - "KM213963" - ], - "Bougainvillea_chlorotic_vein_banding_virus" : [ - "NC_011592" - ], - "Human_papillomavirus_type_6__CAC306" : [ - "FR751337" - ], - "Dengue_virus_3__13GDZSDV30A" : [ - "KF954945" - ], - "Bacillus_amyloliquefaciens_LFB112" : [ - "NC_023073" - ], - "Hepatitis_B_virus__CONTROL18" : [ - "JQ801510" - ], - "Aquifex_aeolicus_VF5" : [ - "NC_000918", - "NC_001880" - ], - "Hepatitis_C_virus__QC268" : [ - "JF735125" - ], - "Hepatitis_B_virus__SHB610" : [ - "KJ598726" - ], - "Human_papillomavirus_type_90_590" : [ - "AB542808" - ], - "Porcine_circovirus_2__SDBG1108" : [ - "KJ680348" - ], - "Human_immunodeficiency_virus_1__PS2016_Day380" : [ - "DQ676879" - ], - "Human_immunodeficiency_virus_1__CAP84_3w_F2" : [ - "GQ999978" - ], - "Human_immunodeficiency_virus_1__02_BR_HF31" : [ - "GQ365649" - ], - "Hepatitis_B_virus__IND_DIB30" : [ - "EU835242" - ], - "Dengue_virus_4__DENV_4_US_BID_V2441_1998" : [ - "FJ882595" - ], - "Chlamydia_trachomatis_C_TW_3" : [ - "NC_023060", - "NC_023057" - ], - "Middle_East_respiratory_syndrome_coronavirus_Hu_Riyadh_KSA_2959_2015" : [ - "KT026453" - ], - "Dengue_virus_2_DENV_2_PR_19DN_1994" : [ - "GQ398307" - ], - "Hepatitis_B_virus__c16" : [ - "AF461359" - ], - "Macroptilium_yellow_spot_virus__BR_Sti35_11" : [ - "KJ939892" - ], - "Cucumber_mosaic_virus_satellite_RNA_TO80" : [ - "X86421" - ], - "Tobacco_curly_shoot_alphasatellite__Y132" : [ - "AJ579349" - ], - "Human_immunodeficiency_virus_1__99UFRJ_16" : [ - "AY455782" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG52" : [ - "FJ914392" - ], - "Pseudomonas_phage_Pf_10" : [ - "NC_027292" - ], - "Torque_teno_sus_virus_1b__TTV2Gx2" : [ - "HM633230" - ], - "Myxoma_virus_England_Nottingham_4_55_1_Nottingham_attenuated" : [ - "JX565572" - ], - "Chikungunya_virus_CU_Chik661" : [ - "GQ905863" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0013" : [ - "KP759643" - ], - "Dengue_virus_2__DENV_2_US_BID_V1472_2001" : [ - "EU687232" - ], - "Hepatitis_B_virus__GU1035" : [ - "GQ161778" - ], - "South_African_cassava_mosaic_virus__MG_MG212A1_09" : [ - "KJ887680" - ], - "Maize_streak_virus__MSV_A_GH_gh55_Kuk_2010" : [ - "KJ699350" - ], - "Bean_golden_mosaic_virus__BR_Flt4_11" : [ - "KJ939769" - ], - "Cherry_leaf_roll_virus__E395" : [ - "NC_015415", - "NC_015414" - ], - "Enterovirus_A71_KED005_LPS2" : [ - "AB550341" - ], - "Hepatitis_B_virus__1908" : [ - "AY934772" - ], - "Propionibacterium_phage_PHL308M00__PHL308M00" : [ - "NC_027376" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Thadagan_OY156_2006___OY156" : [ - "GU111987" - ], - "Duck_hepatitis_A_virus_1_VXXT" : [ - "JF914945" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kampala_Okra1" : [ - "FN554521" - ], - "Alteromonas_macleodii__Deep_ecotype" : [ - "NC_011138" - ], - "Human_poliovirus_2__PV2_5021_1_ISR99" : [ - "AM040036" - ], - "Dengue_virus_1__DENV_1_VN_BID_V992_2006" : [ - "EU482536" - ], - "Canine_papillomavirus_10" : [ - "NC_016075" - ], - "Hepatitis_B_virus__Tibet_100" : [ - "HM750138" - ], - "Foot_and_mouth_disease_virus___type_C_C_Waldman_str_149_cwald_iso32" : [ - "AY593810" - ], - "cyanobacterium_UCYN_A" : [ - "NC_013771" - ], - "Bovine_polyomavirus_2a__2aS11" : [ - "KM496324" - ], - "Adult_diarrheal_rotavirus_strain_J19_J19" : [ - "NC_007549", - "NC_007556", - "NC_007558", - "NC_007553", - "NC_007548", - "NC_007557", - "NC_007550", - "NC_007554", - "NC_007555", - "NC_007551", - "NC_007552" - ], - "Powassan_virus__DTVWiC08" : [ - "HM440562" - ], - "Pseudomonas_phage_LKA1" : [ - "NC_009936" - ], - "Geobacillus_JF8" : [ - "NC_022080", - "NC_022092" - ], - "Clostridium_difficile_2007855" : [ - "NC_017178" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2863_2006" : [ - "FJ898400" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1007_2006" : [ - "EU482451" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Po_Okra7" : [ - "FN554537" - ], - "Hepatitis_C_virus__QC249" : [ - "FJ462433" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3550_2001" : [ - "GU131834" - ], - "Porcine_epidemic_diarrhea_virus__13_019349" : [ - "KF267450" - ], - "Human_rhinovirus_C11_CL_170085" : [ - "EU840952" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA4876_2008" : [ - "KJ672573" - ], - "Hepatitis_B_virus__D115" : [ - "EU939654" - ], - "Circoviridae_9_LDMD_2013" : [ - "NC_025714" - ], - "Human_adenovirus_66_87_922" : [ - "JN860676" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5684_2010" : [ - "JN000937" - ], - "Sendai_virus_Hamamatsu_E0" : [ - "AB039658" - ], - "Newcastle_disease_virus_Chichen_China_SDSG01_2011" : [ - "JN400896" - ], - "Hepatitis_B_virus__PNF4936" : [ - "KF779345" - ], - "Watermelon_mosaic_virus__C06_188" : [ - "EU660587" - ], - "Hepatitis_B_virus__43UC" : [ - "AB493844" - ], - "Powassan_virus_Spassk_9" : [ - "EU770575" - ], - "Turnip_mosaic_virus_BJ_C4" : [ - "HQ446217" - ], - "Hepatitis_B_virus__S4_1" : [ - "EU916215" - ], - "Potato_virus_Y__IUNG_13" : [ - "JF927761" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0024" : [ - "KP759663" - ], - "Hepatitis_B_virus__A5_48054" : [ - "FJ692593" - ], - "Porcine_circovirus_2_SH" : [ - "AY291318", - "HM038027", - "AY686763" - ], - "Yersinia_phage_phiR1_37" : [ - "NC_016163" - ], - "Mouse_parvovirus_5a__MPV_5a" : [ - "NC_011618" - ], - "Hepatitis_E_virus__JTK_Kag06C" : [ - "AB291960" - ], - "Duck_circovirus__PT07" : [ - "EU499310" - ], - "Gallid_herpesvirus_1__K317" : [ - "JX458824" - ], - "Mycobacterium_phage_Papyrus" : [ - "NC_022053" - ], - "Cotton_leaf_curl_Burewala_virus__Pakistan_Luffa_Burewala_2011" : [ - "HF567942" - ], - "Fowl_aviadenovirus_E__HG" : [ - "NC_014969" - ], - "Hepatitis_B_virus__J82" : [ - "GQ377551" - ], - "Porcine_torovirus_SH1" : [ - "NC_022787" - ], - "Avian_reovirus_strain_S1133_S1133" : [ - "AF330703" - ], - "Dengue_virus_4__DENV_4_US_BID_V2440_1996" : [ - "FJ850058" - ], - "Francisella_noatunensis_orientalis_Toba_04" : [ - "NC_017909" - ], - "Synechococcus_phage_ACG_2014b__Syn9311C4" : [ - "KJ019133" - ], - "Dengue_virus_3_D3_SG_05K852DK1_2005" : [ - "EU081189" - ], - "Dracaena_mottle_virus" : [ - "NC_008034" - ], - "Cyclovirus_ZM41_ZM41" : [ - "AB937984" - ], - "Hepatitis_B_virus__EICI_49" : [ - "KF679989" - ], - "Bovine_rotavirus_UKtc" : [ - "X55444" - ], - "Foot_and_mouth_disease_virus___type_O__PAK_44_2008" : [ - "GU384682" - ], - "Porcine_circovirus_2_PT_11001_08" : [ - "HQ831536" - ], - "Bacillus_amyloliquefaciens_DSM_7" : [ - "NC_014551" - ], - "Hepatitis_B_virus__PhHCC05" : [ - "AB241117" - ], - "Cotton_leaf_curl_Multan_virus__ZhH" : [ - "HQ455365" - ], - "JC_polyomavirus__LA_4" : [ - "AB081616" - ], - "DG_75_Murine_leukemia_virus" : [ - "AF221065" - ], - "Hepatitis_B_virus__WY_NJ_33" : [ - "JX026882" - ], - "Echovirus_E13_Del_Carmen" : [ - "AY302539" - ], - "Sindbis_virus__Ilomantsi_2002C" : [ - "JQ771796" - ], - "Enterobacteria_phage_ID22" : [ - "DQ079881" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_201704_2011" : [ - "KM452738" - ], - "Rabies_virus__Rus_Lipetsk_8057f_2011" : [ - "KC595283" - ], - "Mycobacterium_phage_U2" : [ - "NC_009877" - ], - "Mycoplasma_capricolum_ATCC_27343" : [ - "NC_007633" - ], - "Crassocephalum_yellow_vein_virus___Yuanjiang__YYJi3" : [ - "FN401520" - ], - "Astrovirus_MLB1__MLB1" : [ - "NC_011400" - ], - "Streptococcus_pneumoniae_SPN034183" : [ - "NC_021028" - ], - "Human_papillomavirus_type_16__16W12E" : [ - "AF125673" - ], - "Chicken_anemia_virus__6" : [ - "KJ728817" - ], - "Rose_yellow_vein_virus_RYVV_MN1" : [ - "NC_020999" - ], - "Watermelon_chlorotic_stunt_virus__I" : [ - "KJ854919" - ], - "West_Nile_virus_Cz_13_479" : [ - "KM203862" - ], - "Hepatitis_B_virus__JPN_CH5" : [ - "AB453983" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2968_2002" : [ - "FJ898471" - ], - "Hepatitis_B_virus__EHBV_I_112_HIV_HBV" : [ - "KM524361" - ], - "Western_equine_encephalitis_virus_93A79" : [ - "KJ554983" - ], - "Xanthium_symptomless_alphasatellite" : [ - "HF547408" - ], - "Cauliflower_mosaic_virus__TUR50" : [ - "AB863172" - ], - "Simian_adenovirus_36" : [ - "FJ025917" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3400_2004" : [ - "GQ868575" - ], - "Hepatitis_B_virus__A1_5" : [ - "GU815552" - ], - "Rhodopseudomonas_palustris_DX_1" : [ - "NC_014834" - ], - "Norovirus_Hu_GII_10101_2009_VNM_Hu_GII_10101_2009_VNM" : [ - "KC409238" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0040" : [ - "KP759629" - ], - "Classical_swine_fever_virus_Thiverval" : [ - "EU490425" - ], - "Human_mastadenovirus_D_human_USA_MEEI_00079_X_8_P8H8F8" : [ - "KF268205" - ], - "Hepatitis_B_virus__GZ_ZX" : [ - "DQ448628" - ], - "Hepatitis_B_virus__KOR28LC" : [ - "GQ475332" - ], - "Eastern_equine_encephalitis_virus_EEEV_Homo_sapiens_USA_4789_M22367_1983" : [ - "KJ469587" - ], - "African_cassava_mosaic_virus__K3J16" : [ - "JN053427" - ], - "Tomato_leaf_curl_Palampur_virus__Roodan_tomato___ToLCPMV__IR_Roo_T10X_Tom_06" : [ - "EU547682" - ], - "Hepatitis_B_virus__GZ_HQY" : [ - "DQ448621" - ], - "Porcine_circovirus_2_GSLN_PCV2" : [ - "FJ948168" - ], - "Porcine_circovirus_2_HBwh_24" : [ - "FJ870971" - ], - "SARS_coronavirus_GZ0402" : [ - "AY613947" - ], - "Dengue_virus_4_H779652_DENV_4_AM5079" : [ - "JQ513339" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2319_2001" : [ - "FJ810413" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL125A" : [ - "AB985557" - ], - "Hepatitis_B_virus_042" : [ - "AB900109" - ], - "Dengue_virus_1__DENV_1_VN_BID_V802_2006" : [ - "EU482796" - ], - "West_Nile_virus_Italy_2012_Livenza_37_1" : [ - "KC954092" - ], - "Hepatitis_E_virus__ch_bj_n1" : [ - "GU937805" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_79U13_1979_IE" : [ - "KC344455" - ], - "Duck_circovirus__DB46_12" : [ - "KP229369" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1956_2008" : [ - "FJ410274" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3656_2006" : [ - "GU131956" - ], - "Hepatitis_B_virus__919039" : [ - "JN040756" - ], - "Hepatitis_B_virus_HBV_P16" : [ - "KC510647" - ], - "Hepatitis_B_virus_HB470" : [ - "HM011480" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD237_2013" : [ - "KM229877" - ], - "Hepatitis_A_virus_HAS_15" : [ - "JQ425480" - ], - "West_Nile_virus__WNV_1_US_BID_V4579_2003" : [ - "JN183889" - ], - "Cotton_leaf_curl_Multan_virus__ZhSh" : [ - "HQ455367" - ], - "Hepatitis_B_virus__JeF339" : [ - "DQ536411", - "DQ536414", - "DQ536413", - "DQ536412", - "DQ536410" - ], - "Dengue_virus_1_D1_SG_05K3301DK1_2005" : [ - "EU081238" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_L1450_2012_G3P_8__L1450" : [ - "KF371949", - "KF371945", - "KF371950", - "KF371953", - "KF371946", - "KF371944", - "KF371947", - "KF371952", - "KF371948" - ], - "BK_polyomavirus_MON_3" : [ - "AB269848" - ], - "Bacillus_phage_Andromeda" : [ - "NC_020478" - ], - "Hepatitis_B_virus_HB785" : [ - "JQ027332" - ], - "Tortoise_rafivirus_A__UF4" : [ - "NC_023988" - ], - "Human_papillomavirus_type_2__CN_HB1" : [ - "EF117891" - ], - "Parrot_hepatitis_B_virus__P337" : [ - "JX274026" - ], - "Hepatitis_E_virus_genotype_3_JIO_swJ19_5" : [ - "AB443625" - ], - "Human_rhinovirus_A57__fs_ship_1_hrv_57" : [ - "FJ445141" - ], - "Lactobacillus_casei_W56" : [ - "NC_018641", - "NC_020057" - ], - "Norovirus_Hu_GII_4_Hiroshima1_2006_JP_Hu_GII_4_Hiroshima1_2006_JP" : [ - "AB447451" - ], - "Duck_Tembusu_virus_WFZ_2012" : [ - "KC990545" - ], - "Dengue_virus_3__D3_Pakistan_52440_2006" : [ - "KF041257" - ], - "Hepatitis_B_virus__LAMr_Pt__20" : [ - "AB367411" - ], - "Hepatitis_C_virus_subtype_1b__L825P" : [ - "EU781825" - ], - "Reticuloendotheliosis_virus_HLJR0901" : [ - "GQ415646" - ], - "Hepatitis_B_virus__CONTROL22" : [ - "JQ801514" - ], - "Porcine_circovirus_2__HZ0903" : [ - "GU325757" - ], - "Okra_yellow_vein_mosaic_virus_Pakistan_201" : [ - "NC_004673" - ], - "Porcine_circovirus_2__SPA3" : [ - "AF201310" - ], - "Hepatitis_B_virus__J250" : [ - "GQ377638" - ], - "Peanut_chlorotic_streak_virus__K1" : [ - "NC_001634" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G44422_333_R519" : [ - "KR135331" - ], - "Tomato_leaf_curl_Philippines_virus__P36" : [ - "EU487029" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1746_2008" : [ - "FJ410172" - ], - "Foot_and_mouth_disease_virus___type_O_O6_o6pirbright_iso58" : [ - "AY593829" - ], - "Tomato_yellow_leaf_curl_virus__NZ_74" : [ - "HE819242" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Coimbator_OYCO1_2005___OYCo1" : [ - "NC_014895" - ], - "Squash_leaf_curl_virus__IL1_27" : [ - "KM595102" - ], - "Black_sea_bass_polyomavirus_1__2835" : [ - "NC_025790" - ], - "Hepatitis_B_virus__P4" : [ - "GQ477462" - ], - "Newcastle_disease_virus__Sheldrake_duck_China_Guizhou_SS1_2014" : [ - "KP742770" - ], - "Mycobacterium_tuberculosis_CAS_NITR204" : [ - "NC_021193" - ], - "Human_poliovirus_3_NIE1118474" : [ - "KJ170644" - ], - "Human_immunodeficiency_virus_1__07BR_FPS742" : [ - "HM026457" - ], - "West_Nile_virus_Italy_2013_Rovigo_35_1" : [ - "KF647252" - ], - "African_cassava_mosaic_virus__CF_CF52BE_07" : [ - "KJ887599" - ], - "Tomato_yellow_leaf_curl_Al_Batinah_virus" : [ - "HG969260" - ], - "Kenaf_leaf_curl_virus__India_Kaisarganj_2007" : [ - "EU822321" - ], - "Nautilia_profundicola_AmH" : [ - "NC_012115" - ], - "Vaccinia_virus_AGR_MVA_572seq" : [ - "DQ983240" - ], - "Haemophilus_influenzae_PittEE" : [ - "NC_009566" - ], - "Human_immunodeficiency_virus_1__BZ126" : [ - "AY173957" - ], - "Dengue_virus_2__DENV_2_NI_BID_V3076_2001" : [ - "GQ199898" - ], - "African_cassava_mosaic_virus__CF_CF25BN_07" : [ - "KJ887589" - ], - "Hepatitis_B_virus__cww1117" : [ - "KC774273" - ], - "Human_bocavirus_JPOC06_077" : [ - "AB481073" - ], - "Porcine_enterovirus_3H_swine_K23_2008_HUN" : [ - "HQ702854" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4736_1" : [ - "KR105269" - ], - "Murine_leukemia_virus_Graffi" : [ - "AB187565", - "AB187566" - ], - "Wheat_dwarf_virus__HE" : [ - "FM999833" - ], - "Hepatitis_delta_virus_dFr2119_dFr2119" : [ - "AM779575" - ], - "East_African_cassava_mosaic_virus__Tanzania___Tanzania" : [ - "Z83256" - ], - "Pepper_vein_yellows_virus" : [ - "NC_015050" - ], - "Usutu_virus_V50" : [ - "KJ438724" - ], - "Hepatitis_B_virus__HBV77" : [ - "KC875273" - ], - "Cotton_leaf_curl_Burewala_virus__sri_ganganagar" : [ - "GQ247893" - ], - "Hepatitis_B_virus__S1336" : [ - "FJ386681" - ], - "Bean_golden_mosaic_virus__BR_Mav_05" : [ - "KJ939717" - ], - "Echovirus_E32_Pr_10" : [ - "AY302555" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5983_1" : [ - "KR105333" - ], - "Bacillus_phage_Wip1" : [ - "NC_022094" - ], - "Staphylococcus_phage_S13__S13" : [ - "AB626963" - ], - "BK_polyomavirus_MMR_1" : [ - "AB269841" - ], - "Newcastle_disease_virus__98_1154" : [ - "AY935491" - ], - "Caulobacter_phage_Cr30" : [ - "NC_025422" - ], - "Human_papillomavirus_type_16__Qv19110" : [ - "HQ644274" - ], - "Escherichia_coli_O104_H4_2009EL_2071" : [ - "NC_018661", - "NC_018663", - "NC_018662" - ], - "Enterovirus_B87__LY02_SD_CHN_2000" : [ - "KC292019" - ], - "JC_polyomavirus_728B" : [ - "AF300953" - ], - "Dengue_virus_2__DENV_2_VN_BID_V728_2006" : [ - "EU482665" - ], - "Hepatitis_B_virus__C127" : [ - "EU939590" - ], - "Legionella_pneumophila_Corby" : [ - "NC_009494" - ], - "Murine_norovirus_4_S18" : [ - "FJ446719" - ], - "Enterobacteria_phage_phiX174__CMMloC" : [ - "AF299314" - ], - "Metallosphaera_sedula_DSM_5348" : [ - "NC_009440" - ], - "Hepatitis_B_virus__AIDS7" : [ - "JQ801471" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2730_2007" : [ - "FJ898378" - ], - "BK_polyomavirus_VNM_7" : [ - "AB269869" - ], - "Hepatitis_B_virus__N16_C_FY137Cn__fas" : [ - "KJ173381" - ], - "Sri_Lankan_cassava_mosaic_virus__Kerala_15" : [ - "AJ890224" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G19070_8937_1_3336_2003" : [ - "KR135298" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2996_2007" : [ - "GQ199868" - ], - "Hepatitis_B_virus__919032" : [ - "JN040814" - ], - "Hepatitis_B_virus_subtype_adw_PAD744" : [ - "AB033555" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_YG1" : [ - "AB817979", - "AB817987", - "AB817995" - ], - "South_African_cassava_mosaic_virus__MG_MG616A1_11" : [ - "KJ888056" - ], - "West_Nile_virus__WNV_1_US_BID_V6434_2003" : [ - "KJ501297" - ], - "Human_bocavirus__2012GZ1169" : [ - "KJ684069" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0091" : [ - "KP759759" - ], - "Lactobacillus_delbrueckii_bulgaricus_ND02" : [ - "NC_014728", - "NC_014727" - ], - "Hepatitis_B_virus__HBV50" : [ - "KC875265" - ], - "Bradyrhizobium_BTAi1" : [ - "NC_009485", - "NC_009475" - ], - "Human_respiratory_syncytial_virus_06_039982" : [ - "JX576752" - ], - "Melon_chlorotic_mosaic_virus__2009_02_04_06" : [ - "NC_014381", - "NC_014380" - ], - "Small_begomovirus_associated_satellite__wf_S20" : [ - "KJ859182" - ], - "Rosellinia_necatrix_megabirnavirus_1_W779" : [ - "NC_013463", - "NC_013462" - ], - "JC_polyomavirus__MMW_4" : [ - "AB362363" - ], - "JC_polyomavirus__KB_24" : [ - "AB220943" - ], - "Salmonella_enterica_serovar_Typhimurium_T000240" : [ - "NC_016861", - "NC_016860", - "NC_016862" - ], - "Dengue_virus_4__DENV4_CN_GZ29_2010" : [ - "KP723482" - ], - "Norovirus_Hu_GII_4_Miyagi3_2007_JP_Hu_GII_4_Miyagi3_2007_JP" : [ - "AB541283" - ], - "Human_poliovirus_1_NIE1218349" : [ - "KJ170483" - ], - "Swine_hepatitis_E_virus__BB02" : [ - "FJ998008" - ], - "Porcine_circovirus_2__TT2" : [ - "HQ202963" - ], - "SARS_coronavirus_Sin2679__SIN2679" : [ - "AY283796" - ], - "Bluetongue_virus_1__GRE2001_01" : [ - "AJ586664" - ], - "Bacillus_phage_Bcp1" : [ - "NC_024137" - ], - "Grapevine_leafroll_associated_virus_3__GH11" : [ - "JQ655295" - ], - "Beak_and_feather_disease_virus__BFDV_B_D_PL_496_2007" : [ - "JX221028" - ], - "Tomato_severe_rugose_virus__ToSRV__BR_1646Nic1_08" : [ - "JX415197" - ], - "Tomato_yellow_leaf_curl_virus__Bos" : [ - "GU325634" - ], - "Porcine_circovirus_2__A4275" : [ - "JF317579" - ], - "Burkholderia_pseudomallei_NCTC_13179" : [ - "NC_022659", - "NC_022658" - ], - "Sweet_potato_leaf_curl_virus__Haenam_519_3" : [ - "HM754638" - ], - "Avian_leukosis_virus_JS09GY6" : [ - "GU982310" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3783_2006" : [ - "GU131892" - ], - "Hepatitis_B_virus__P1" : [ - "GQ477460" - ], - "Hepatitis_B_virus__EIHB134" : [ - "GQ358136" - ], - "Haemophilus_influenzae_F3047" : [ - "NC_014922" - ], - "Southern_rice_black_streaked_dwarf_virus__Ninh_Binh_1" : [ - "KM576889", - "KM576877" - ], - "South_African_cassava_mosaic_virus__MG_MG729A3_11" : [ - "KJ888095" - ], - "Hepatitis_B_virus__TK129" : [ - "JF754618" - ], - "Lactobacillus_phage_KC5a" : [ - "NC_007924" - ], - "Watermelon_chlorotic_stunt_virus__IL1_24" : [ - "KM820244" - ], - "Hibiscus_chlorotic_ringspot_virus" : [ - "NC_003608" - ], - "Flock_house_virus__IP_VIA_022011" : [ - "JF461541" - ], - "Middle_East_respiratory_syndrome_coronavirus__Jeddah_1_2013" : [ - "KJ556336" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00059_1999_G1P_8" : [ - "JN651789", - "JN651790", - "JN651784", - "JN651787", - "JN651788", - "JN651782", - "JN651786", - "JN651781", - "JN651783", - "JN651785", - "JN651791" - ], - "Hepatitis_B_virus__VH10" : [ - "AB231909" - ], - "Staphylococcus_haemolyticus_JCSC1435" : [ - "NC_007171", - "NC_007169", - "NC_007170", - "NC_007168" - ], - "Porcine_circovirus_2_Anhui01" : [ - "HQ113120" - ], - "Clostridium_phage_phiCD119" : [ - "NC_007917" - ], - "Hepatitis_B_virus__A1_6" : [ - "GU815553" - ], - "Muscovy_duck_parvovirus__SAAS_SHNH" : [ - "KC171936" - ], - "Chikungunya_virus_DRDE_06__DRDEHydISW06" : [ - "EF210157" - ], - "Clostridium_acetobutylicum_EA_2018" : [ - "NC_017295", - "NC_017296" - ], - "West_Nile_virus__WNV_1_US_BID_V7795_2012" : [ - "KJ501229" - ], - "Crimean_Congo_hemorrhagic_fever_virus_AP92" : [ - "DQ211625", - "DQ211638", - "DQ211612" - ], - "Bean_common_mosaic_virus_blackeye_cowpea_mosaic_Y" : [ - "AJ312438" - ], - "Muscovy_duck_circovirus__FJCL311" : [ - "GQ423743" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2782_2007" : [ - "GQ868609" - ], - "Eastern_equine_encephalitis_virus_EEEV_Homo_sapiens_USA_RICHE_1951" : [ - "KJ469603" - ], - "Human_papillomavirus_type_18__Qv04924" : [ - "EF202155" - ], - "African_swine_fever_virus_L60" : [ - "KM262844" - ], - "Arabis_mosaic_virus__ba" : [ - "GQ369526", - "GQ369530", - "GQ369527", - "GQ369528", - "GQ369529" - ], - "Paenibacillus_polymyxa_M1" : [ - "NC_017543", - "NC_017542" - ], - "Cleome_leaf_crumple_virus__BR_AL_Mac6_10" : [ - "JN103436" - ], - "Sida_yellow_vein_virus_yellow_vein" : [ - "NC_004661", - "NC_004662", - "Y11101" - ], - "Pseudaletia_unipuncta_granulovirus_Hawaiin" : [ - "NC_013772" - ], - "Porcine_circovirus_2__CQHC13" : [ - "KF742544" - ], - "Felis_catus_papillomavirus_3__MyDave" : [ - "NC_021472" - ], - "Burkholderia_phage_phiX216" : [ - "JX681814" - ], - "Enterovirus_A71_121_SHENZHEN_08_China_HFMD_Fatal_2008" : [ - "FJ607337" - ], - "Tobacco_leaf_curl_Yunnan_virus__Y283___Y283" : [ - "AJ971267" - ], - "Hepatitis_E_virus__JSO_Oki05L" : [ - "AB291953" - ], - "St__Louis_encephalitis_virus_79V_2533" : [ - "FJ753287" - ], - "Hepatitis_C_virus__QC108" : [ - "JF735127" - ], - "Plum_pox_virus_D" : [ - "X16415" - ], - "Hepatitis_B_virus_1303_14" : [ - "KR014027" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7612_2009" : [ - "KJ189343" - ], - "Hepatitis_B_virus__318_96_2" : [ - "EU871982" - ], - "Dengue_virus_2__DENV_2_US_BID_V1378_1996" : [ - "EU596485" - ], - "Dengue_virus_2__E1502Y12" : [ - "KM279579" - ], - "Porcine_circovirus_2_HUB_09" : [ - "GQ449670" - ], - "Hepatitis_B_virus__WHHLL1" : [ - "JN257165" - ], - "Parrot_hepatitis_B_virus__P1035" : [ - "JX274035" - ], - "Blueberry_necrotic_ring_blotch_virus_Georgia" : [ - "NC_016086", - "NC_016085", - "NC_016087", - "NC_016084" - ], - "Hepatitis_B_virus__CHN_L28" : [ - "AY817509" - ], - "Flexistipes_sinusarabici_DSM_4947" : [ - "NC_015672" - ], - "Maize_streak_virus__MSV_J_Zw_Mic24_1987" : [ - "EU628641" - ], - "Porcine_epidemic_diarrhea_virus__ISU13_19338E_IN_passage9" : [ - "KF650372" - ], - "Banna_virus_strain_JKT_6423_JKT_6423" : [ - "NC_004202", - "NC_004220", - "NC_004219", - "NC_004217", - "NC_004198", - "NC_004200", - "NC_004204", - "NC_004201", - "NC_004221", - "NC_004218", - "NC_004203" - ], - "Beak_and_feather_disease_virus__D134146" : [ - "JQ782199" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3553_2004" : [ - "GU131836" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1018_2007" : [ - "EU482462" - ], - "Hepatitis_B_virus__B25" : [ - "EU939582" - ], - "Wasabi_mottle_virus__Alishan" : [ - "KJ207375" - ], - "Human_immunodeficiency_virus_1__plwj11_6" : [ - "GU647196" - ], - "Bluetongue_virus_4__GRE2000_01" : [ - "AJ586681" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota72_2013" : [ - "KJ645667" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7722_2010" : [ - "KJ189360" - ], - "Enterovirus_C96_BAN00_10488" : [ - "EF015886" - ], - "Hepatitis_B_virus__CAR138" : [ - "AM494708" - ], - "Human_poliovirus_2_NIE1118439" : [ - "KJ170550" - ], - "Small_begomovirus_associated_satellite__Sa8_S115" : [ - "KJ859163" - ], - "Foot_and_mouth_disease_virus___type_O__O_UKG" : [ - "KR265075" - ], - "Hepatitis_B_virus__J92" : [ - "GQ377559" - ], - "Porcine_circovirus_2_Huanan_11" : [ - "EF493840" - ], - "Hepatitis_B_virus__C86" : [ - "EU939565" - ], - "Hepatitis_B_virus__J76" : [ - "GQ377545" - ], - "Human_immunodeficiency_virus_1__R1" : [ - "EF633445" - ], - "Bacillus_phage_GIL16c" : [ - "NC_006945" - ], - "Mouse_parvovirus_4b__MPV_4b" : [ - "FJ445512" - ], - "Eastern_equine_encephalitis_virus_EEEV_Aedes_USA_7973_2001" : [ - "KJ469628" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_269_2012" : [ - "KP308415" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d2ym2" : [ - "HQ890527" - ], - "Clostridium_phytofermentans_ISDg" : [ - "NC_010001" - ], - "Cowpea_severe_mosaic_virus" : [ - "NC_003544", - "NC_003545" - ], - "Porcine_circovirus_2__HN1" : [ - "JQ181602" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6757_2009" : [ - "KJ627324" - ], - "Human_immunodeficiency_virus_1__BCI_R07" : [ - "AB485659", - "AB485658" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__SG4_3" : [ - "GU208521", - "GU208517" - ], - "Hepatitis_B_virus__TK113" : [ - "JF754635" - ], - "West_Nile_virus__WNV_1_US_BID_V4206_2002" : [ - "HQ671699" - ], - "Sida_micrantha_mosaic_virus__B1" : [ - "AJ557452" - ], - "Goose_circovirus__TW8_2001" : [ - "AF536938" - ], - "Tomato_yellow_leaf_curl_Malaga_virus__Portugal_Algarve_2_2001" : [ - "JN859135" - ], - "Human_immunodeficiency_virus_1__WC10C_9" : [ - "AY314060" - ], - "Brucella_phage_Tb" : [ - "NC_019446" - ], - "Lactococcus_Phage_ASCC406" : [ - "JQ740801" - ], - "Newcastle_disease_virus_FJ_1_85_Ch" : [ - "FJ436304" - ], - "Bluetongue_virus_18__RSArrrr_18" : [ - "AJ586721" - ], - "Dengue_virus_2_DENV_2_PR_9DN_1994" : [ - "GQ398300" - ], - "Hepatitis_B_virus_GIII_16" : [ - "AY781181" - ], - "Pseudomonas_fluorescens_R124" : [ - "NC_022437" - ], - "Dolichos_yellow_mosaic_virus__DA" : [ - "NC_024779", - "NC_005338" - ], - "Tomato_leaf_deformation_virus__PA98_2_TM5" : [ - "JX501509" - ], - "JC_polyomavirus__KB_6" : [ - "AB362353" - ], - "Chilli_leaf_curl_virus__Multan" : [ - "NC_004628" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Anopheles_VEN_12_1_1995_IC" : [ - "KF985959" - ], - "Maize_streak_virus__MSV_A_ZA_Emp5_Ta24_2008" : [ - "HQ693411" - ], - "Hepatitis_B_virus__S1348_4" : [ - "FJ787460" - ], - "Hepatitis_B_virus_B0503213_MKS_F" : [ - "AP011088" - ], - "Citrus_tristeza_virus__NZRB_TH30" : [ - "FJ525434" - ], - "Chikungunya_virus_IND_73_MH5" : [ - "EF027141" - ], - "Porcine_epidemic_diarrhea_virus_USA_Kansas46_2013" : [ - "KJ645650" - ], - "Potato_virus_Y__PVY_AST" : [ - "JF928460" - ], - "Candidatus_Cloacamonas_acidaminovorans_Evry" : [ - "NS_000195", - "NC_020449" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD247_2013" : [ - "KM229884" - ], - "Sugarcane_mosaic_virus__Lingpin" : [ - "AJ310102" - ], - "Hepatitis_B_virus__C_NZL_TE55_1984" : [ - "HQ700485" - ], - "Dengue_virus_2__72144_BR_PE_00" : [ - "JX669487" - ], - "Hepatitis_B_virus__Vac02_M_m603" : [ - "KJ173385" - ], - "Tobacco_vein_mottling_virus" : [ - "NC_001768" - ], - "Mamestra_brassicae_multiple_nucleopolyhedrovirus__CTa" : [ - "KJ871680" - ], - "Porcine_circovirus_2_PCV2_P3" : [ - "FJ667584" - ], - "Hepatitis_B_virus__1878" : [ - "FJ386594" - ], - "Porcine_circovirus_2__Mal012_11_Johor" : [ - "JF690921" - ], - "Hepatitis_B_virus__LT13" : [ - "DQ486021" - ], - "Hepatitis_B_virus__919058" : [ - "JN040805" - ], - "Human_papillomavirus_type_65" : [ - "X70829" - ], - "Tomato_common_mosaic_virus__BR_Coi6_07" : [ - "KC706597" - ], - "Hepatitis_B_virus__BOL196" : [ - "AB365451" - ], - "Classical_swine_fever_virus" : [ - "A16790", - "EU857642", - "CQ867021", - "A47690", - "AY382481", - "EU915211", - "AY663656" - ], - "Porcine_circovirus_2_17639" : [ - "EU340257" - ], - "Porcine_circovirus_2__NT1" : [ - "HQ202951" - ], - "Yellow_fever_virus_17D_YF_VAX_Vero_adapted_Series_A_P11" : [ - "JN811141" - ], - "Porcine_circovirus_2_AS" : [ - "HM038016" - ], - "Newcastle_disease_virus__mallard_Jilin_2011" : [ - "KC894391" - ], - "Norovirus_Hu_GII_4_Hokkaido2_2006_JP_Hu_GII_4_Hokkaido2_2006_JP" : [ - "AB447428" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1842_2008" : [ - "FJ461308" - ], - "Hepatitis_B_virus__10B4" : [ - "JF899337" - ], - "Goose_adenovirus_4_P29" : [ - "NC_017979" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V344_2001" : [ - "EU155301" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_COL_97CO_42_1997_ID" : [ - "KC344523" - ], - "Porcine_circovirus_2__Bd2011" : [ - "KM624033" - ], - "Avian_leukosis_virus_SDAU09E1" : [ - "HM452341" - ], - "Human_immunodeficiency_virus_1__5073_93" : [ - "AY835767" - ], - "Human_poliovirus_1__DOR00041C3" : [ - "AF405679" - ], - "JC_polyomavirus_725B" : [ - "AF300950" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7048_2004" : [ - "KJ189266" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_4" : [ - "EU384608" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7084_2006" : [ - "KJ189295" - ], - "JC_polyomavirus__GU_15" : [ - "AB081011" - ], - "Yam_mosaic_virus_Ivory_Coast" : [ - "NC_004752" - ], - "Maize_streak_virus__UMbal_304" : [ - "EF547123" - ], - "Ludwigia_leaf_distortion_betasatellite__Vizianagaram_South_India" : [ - "FJ159272" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus_Morocco_22" : [ - "LN846595" - ], - "Dengue_virus_1_Fj231_04" : [ - "DQ193572" - ], - "Mammalian_orthoreovirus_3_T3D_Dearing" : [ - "EF494441", - "EF494439", - "EF494435", - "EF494437", - "EF494442", - "EF494438", - "EF494443", - "EF494444", - "EF494436", - "EF494440" - ], - "Human_immunodeficiency_virus_1__C_96BW01B21" : [ - "AF110960" - ], - "Beak_and_feather_disease_virus__BFDV15" : [ - "GU015022" - ], - "Hepatitis_B_virus__LT12" : [ - "DQ486025" - ], - "Hepatitis_B_virus__Louisa" : [ - "AY330911" - ], - "Pseudomonas_phage_vB_PaeM_PAO1_Ab17_Ab17" : [ - "LN610576" - ], - "Hepatitis_B_virus__LAMr_Pt__12_Adefovir_treated_Pt__17" : [ - "AB367403" - ], - "Dengue_virus_4_SW38i" : [ - "AY858050" - ], - "Human_enterovirus_79_NH95_0601" : [ - "AB426610" - ], - "Human_immunodeficiency_virus_1__C_ZA_1134MB" : [ - "AY463217" - ], - "French_bean_severe_leaf_curl_virus__FbLCV_Cas_Jal" : [ - "KC699544" - ], - "Tomato_leaf_curl_virus_MDU1" : [ - "KF612319" - ], - "Seal_anellovirus_2" : [ - "NC_024891" - ], - "Yersinia_pestis_Pestoides_F" : [ - "NC_009377", - "NC_009378", - "NC_009381" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL004A" : [ - "AB817997", - "AB817981", - "AB817989" - ], - "Eastern_equine_encephalitis_virus_EEEV_Zonotrichia_USA_I01_7412_2001" : [ - "KJ469597" - ], - "Hepatitis_B_virus__clz2194" : [ - "KC774226" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK1" : [ - "KF287132" - ], - "Foot_and_mouth_disease_virus___type_O__BUL_1_2010" : [ - "JX040485" - ], - "Dengue_virus_1__DENV_1_VN_BID_V801_2006" : [ - "EU482795" - ], - "Human_poliovirus_1_NIE1118372" : [ - "KJ170514" - ], - "TGEV_virulent_Purdue_virulent_Purdue" : [ - "DQ811789" - ], - "Small_begomovirus_associated_satellite__wf_S15" : [ - "KJ859176" - ], - "Foot_and_mouth_disease_virus___type_O__MAY_8_2005" : [ - "HQ632771" - ], - "Salmonella_phage_L13" : [ - "NC_021317" - ], - "Hepatitis_B_virus__A1_3" : [ - "GU815550" - ], - "Human_papillomavirus_type_35__IN272089" : [ - "HQ537724" - ], - "Hepatitis_E_virus__JYK_Tok03C" : [ - "AB291964" - ], - "West_Nile_virus__WNV_1_US_BID_V5207_2006" : [ - "JF920737" - ], - "Bluetongue_virus_2__FRA2001_03" : [ - "AJ586674" - ], - "Hepatitis_B_virus__bne442" : [ - "FN594771" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_111235" : [ - "KP118886" - ], - "Sugarcane_white_streak_virus__SD_A0037_2013" : [ - "KJ187749" - ], - "Cauliflower_mosaic_virus__IRNTuMA" : [ - "JX912271" - ], - "Avian_leukosis_virus_SDAU09C3" : [ - "HM452340" - ], - "Thermus_thermophilus_HB8" : [ - "NC_006461", - "NC_006462", - "NC_006463" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__BxJ15" : [ - "JN053451" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C91" : [ - "KJ019060" - ], - "Brachyspira_murdochii_DSM_12563" : [ - "NC_014150" - ], - "Hepatitis_B_virus__2372" : [ - "FJ386633" - ], - "Dengue_virus_2__MKS_3007" : [ - "KC762666" - ], - "Hepatitis_A_virus__HAJNS_BorSap10" : [ - "AB618531" - ], - "Porcine_circovirus_2_PT_39360_07" : [ - "HQ831533" - ], - "Candidatus_Arthromitus_SFB_mouse_Yit" : [ - "NC_017294" - ], - "Porcine_circovirus_2_ii11a" : [ - "EU909686" - ], - "Suid_herpesvirus_1_HeN1" : [ - "KP098534" - ], - "Lactococcus_lactis_phage_645" : [ - "KC182543" - ], - "Candidatus_Moranella_endobia_PCVAL" : [ - "NC_021057" - ], - "Squash_leaf_curl_virus__IL3_91" : [ - "KM595118" - ], - "Hepatitis_B_virus__J149" : [ - "GQ377592" - ], - "Rabies_virus__Rus_Lipetsk_8052f_2011" : [ - "KC595280" - ], - "Thermosipho_melanesiensis_BI429" : [ - "NC_009616" - ], - "Enterobacteria_phage_NC2" : [ - "DQ079900" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_CBB_1_F3" : [ - "FJ889129" - ], - "Maize_streak_virus__MSV_A_KE_Nak_K7_1998" : [ - "FJ882093" - ], - "Hepatitis_B_virus__N005v5" : [ - "KF922418" - ], - "Hepatitis_B_virus__SHB3B1" : [ - "KJ598674" - ], - "East_African_cassava_mosaic_virus__KE_mtw_CMD_MI93_12" : [ - "HG530115" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3664_2006" : [ - "GQ868499" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD163_2013" : [ - "KM229828" - ], - "Torque_teno_virus__TTV_HD15b__gbCsCt38_1" : [ - "FR751473" - ], - "Bovine_foamy_virus__100" : [ - "JX307861" - ], - "Culex_flavivirus__HLD102" : [ - "JQ308186" - ], - "Rice_yellow_mottle_virus__Nigeria" : [ - "RYU23142" - ], - "Human_poliovirus_1_NIE1118379" : [ - "KJ170526" - ], - "Human_papillomavirus_type_59__LZod68_59" : [ - "EU918767" - ], - "Norovirus_Hu_GII_4_Nagano2_2007_JP_Hu_GII_4_Nagano2_2007_JP" : [ - "AB541303" - ], - "Hepatitis_B_virus__PNF3863" : [ - "KF779311" - ], - "Human_adenovirus_60a__Aids59_Manchester_1992" : [ - "JN162672" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V187_1991" : [ - "EU255977" - ], - "Hepatitis_B_virus_593_10" : [ - "KR013817" - ], - "Tomato_spotted_wilt_virus__NC_8" : [ - "AY744491" - ], - "Dengue_virus_3_D3_SG_05K4182DK1_2005" : [ - "EU081220" - ], - "Tomato_yellow_leaf_curl_virus___Mild__Spain___CB1_99" : [ - "AJ519441" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Hanumangarh_2010" : [ - "JF502392" - ], - "Porcine_circovirus_2__QZ0906" : [ - "GU325758" - ], - "Papaya_leaf_curl_betasatellite__PaLCuB_Pumpkin_IARI" : [ - "JX040472" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_25__AHEaCV_25_NZ_2942CO_2012" : [ - "KM874355" - ], - "Equine_arteritis_virus_Hela_EAVP35" : [ - "EU252113" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX03_H2_2003_IE" : [ - "KC344464" - ], - "Arthrobacter_FB24" : [ - "NC_008541", - "NC_008539", - "NC_008537", - "NC_008538" - ], - "Duck_hepatitis_A_virus_R" : [ - "EF585200" - ], - "Salmonella_phage_SKML_39_SKML_39" : [ - "NC_019910" - ], - "Rhinovirus_B__BCH214" : [ - "GU568096" - ], - "Hepatitis_B_virus__C110" : [ - "EU859942" - ], - "Hepatitis_B_virus_327_11" : [ - "KR013907" - ], - "Cucumber_mosaic_virus__Gerbera" : [ - "JN692495" - ], - "Dengue_virus_2__DENV_2_CO_BID_V1601_2005" : [ - "EU854294" - ], - "Tobacco_leaf_curl_Yunnan_virus_satellite_DNA_beta__Y136_16" : [ - "NC_005030" - ], - "Wesselsbron_virus_SAH177" : [ - "NC_012735" - ], - "Hepatitis_B_virus__P008_M_B39" : [ - "KJ173370" - ], - "Hepatitis_B_virus__SHB5101" : [ - "KJ598716" - ], - "Malvastrum_yellow_vein_betasatellite__Y205" : [ - "AJ971698" - ], - "Cherry_green_ring_mottle_virus" : [ - "NC_001946" - ], - "Coxsackievirus_A18_CAM1972" : [ - "AB205396" - ], - "Norwalk_like_virus_YURI" : [ - "AB083780" - ], - "Ribgrass_mosaic_virus_Kons_1105_R14" : [ - "NC_002792" - ], - "Thermus_scotoductus_SA_01" : [ - "NC_014974", - "NC_014975" - ], - "Theiler_s_encephalomyelitis_virus__NIHE" : [ - "HQ652539" - ], - "Tomato_leaf_curl_Hainan_virus" : [ - "NC_013102" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1682_2007" : [ - "FJ205879" - ], - "Hepatitis_B_virus__A5_50156" : [ - "FJ692613" - ], - "Tobacco_rattle_virus__PPK20" : [ - "NC_003811" - ], - "Norovirus_Hu_GII_4_Osaka4_2008_JP_Hu_GII_4_Osaka4_2008_JP" : [ - "AB541326" - ], - "Hardenbergia_mosaic_virus__MD4_D" : [ - "KJ152157" - ], - "Torque_teno_virus__TTV_HD16a__gbCsCt43_2" : [ - "FR751476" - ], - "Chilli_veinal_mottle_virus__Wenchang" : [ - "GQ981316" - ], - "West_Nile_virus__WNV_1_US_BID_V6531_2001" : [ - "KJ501496" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2845_2005" : [ - "GQ199836" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_1_2011" : [ - "KJ686299" - ], - "Squash_leaf_curl_virus__EG1_7" : [ - "KM595146" - ], - "Human_papillomavirus_type_33__Qv34060" : [ - "HQ537698" - ], - "Pepino_mosaic_virus__VFTX12_16" : [ - "JX866668" - ], - "Hepatitis_B_virus__Cuba5" : [ - "KM606743" - ], - "Human_immunodeficiency_virus_1__SUMA_flD10" : [ - "FJ496147" - ], - "Porcine_circovirus_2__GZ1" : [ - "KC514966" - ], - "Enterovirus_D68__NY210" : [ - "KP745757" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0162" : [ - "KP759622" - ], - "Human_adenovirus_21_NHRC_10030" : [ - "KJ364586" - ], - "Echovirus_E9_DM14" : [ - "KC238669" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E1857_2009_G3P_8__E1857" : [ - "KF371801", - "KF371794", - "KF371798", - "KF371792", - "KF371793", - "KF371797", - "KF371796", - "KF371800", - "KF371795" - ], - "Dengue_virus_2__DENV_2_VN_BID_V926_2006" : [ - "EU482471" - ], - "Human_immunodeficiency_virus_1__97CM_MP818" : [ - "AJ291718" - ], - "Rice_yellow_stunt_virus" : [ - "AB516283", - "NC_003746" - ], - "Sandfly_fever_Sicilian_virus_RM_09" : [ - "EF201825" - ], - "Escherichia_phage_Rtp" : [ - "NC_007603" - ], - "Porcine_teschovirus_8_Jilin_2003_2" : [ - "JN710381" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0107" : [ - "KP759768" - ], - "Tula_virus_Tula_Koziky_5276Ma_94" : [ - "AJ223601" - ], - "Dengue_virus_1__DENV_1_VN_BID_V969_2007" : [ - "EU482514" - ], - "Human_papillomavirus_type_90" : [ - "NC_004104" - ], - "Hepatitis_E_virus_genotype_3_JIO_swJ19_8" : [ - "AB443627" - ], - "Banana_bunchy_top_virus__TO224" : [ - "JF957654", - "JF957666", - "JF957630", - "JF957642", - "JF957678", - "JF957690" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_A15072_2003" : [ - "KJ469613" - ], - "Trichomonas_vaginalis_virus_2_TVV2_UR1" : [ - "HQ607514" - ], - "Macroptilium_yellow_spot_virus__BR_Sti24_11" : [ - "KJ939881" - ], - "Alternanthera_yellow_vein_virus__Ecl" : [ - "DQ641704" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V1750_2008" : [ - "FJ390398" - ], - "Human_adenovirus_4_RI_67" : [ - "AY594253" - ], - "Monkeypox_virus__DRC_07_0338" : [ - "JX878424" - ], - "Hepatitis_B_virus__C146" : [ - "EU939594" - ], - "Dalechampia_chlorotic_mosaic_virus__Venezuela_Juana_de_Avila_1088_2008" : [ - "JN848777" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V454_2006" : [ - "EU482862" - ], - "Porcine_circovirus_2_LY_2" : [ - "JF928004" - ], - "Human_bocavirus__CU49" : [ - "EF203921" - ], - "Hepatitis_B_virus__GU1616" : [ - "GQ161767" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI32_12_DNA_B" : [ - "HE979792" - ], - "Bombyx_mori_nucleopolyhedrovirus__C6" : [ - "KF306217" - ], - "Hepatitis_B_virus__8122" : [ - "KJ470896" - ], - "Tomato_common_mosaic_virus__BR_Jai131_08" : [ - "KC706568" - ], - "Hepatitis_B_virus__HK947" : [ - "DQ089780" - ], - "Hepatitis_B_virus__cyc1105" : [ - "KC774360" - ], - "Hepatitis_B_virus__S1357_3" : [ - "FJ787462" - ], - "Tomato_leaf_curl_betasatellite__NBRI" : [ - "JX987089" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_404N1__404N1" : [ - "JN819495" - ], - "Lettuce_mosaic_virus__CL574_ev" : [ - "KJ161184" - ], - "Dengue_virus_2__DENV_2_PE_FPY00016_2010" : [ - "KC294215" - ], - "Sudan_ebolavirus_Boniface" : [ - "FJ968794" - ], - "Beet_curly_top_Iran_virus__IR_Tab_90_Cowpea_10" : [ - "JX131633" - ], - "Human_coronavirus_OC43_LY341" : [ - "KJ958218" - ], - "Foot_and_mouth_disease_virus___type_A__IND_161_2003" : [ - "HQ832578" - ], - "Oryza_sativa_endornavirus" : [ - "NC_007647" - ], - "Human_bocavirus_JPOC07_484" : [ - "AB481077" - ], - "South_African_cassava_mosaic_virus__MG_MG73A7_06" : [ - "KJ887654" - ], - "Duck_circovirus__DU093" : [ - "HM162347" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLA5055_2008_A" : [ - "KJ627434" - ], - "Muscovy_duck_reovirus_815_12" : [ - "KC508655", - "KC508652", - "KC508653", - "KC508648", - "KC508647", - "KC508654", - "KC508650", - "KC508649", - "KC508651" - ], - "Frangipani_mosaic_virus__FrMV_P" : [ - "NC_014546" - ], - "Hepatitis_delta_virus_dFr508_dFr508" : [ - "AM779574" - ], - "Mycoplasma_hyopneumoniae_7448" : [ - "NC_007332" - ], - "Enterovirus_A71_TW_70811_08" : [ - "GQ231934" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__NJ5B1" : [ - "FM164736" - ], - "Human_bocavirus_FZ1" : [ - "GQ455988" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V112_2003" : [ - "EU255933" - ], - "Maize_streak_virus__MSV_A_CM_Ema_Cam5_2008" : [ - "HQ693325" - ], - "European_bat_lyssavirus_1__RV2416" : [ - "KP241939" - ], - "JC_polyomavirus__TL_5" : [ - "AB077856" - ], - "Oyster_mushroom_spherical_virus" : [ - "NC_004560" - ], - "Hepatitis_B_virus__C219" : [ - "EU939673" - ], - "African_cassava_mosaic_virus__MG_MG112A2_09" : [ - "KJ887914" - ], - "Eupatorium_yellow_vein_betasatellite__Fukuoka_SOJ3" : [ - "AJ438939" - ], - "Hepatitis_A_virus__A3" : [ - "KC182589" - ], - "Pseudomonas_phage_DMS3" : [ - "NC_008717" - ], - "Dengue_virus_2__DENV_2_US_BID_V599_1999" : [ - "EU482730" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V198_1989" : [ - "EU862826" - ], - "Mumps_virus_MuVi_Novosibirsk_RUS_10_03_H" : [ - "AY681495" - ], - "Human_immunodeficiency_virus_1__07KYY4" : [ - "JQ341411" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1300_2007" : [ - "FJ390391" - ], - "Hepatitis_B_virus_genotype_F_VNZ8346" : [ - "AB036913" - ], - "Campylobacter_jejuni_doylei_269_97" : [ - "NC_009707" - ], - "Variola_virus_Bangladesh_1975_v75_550_Banu" : [ - "DQ437581" - ], - "Hepatitis_B_virus__J53" : [ - "GQ377539" - ], - "Wheat_dwarf_virus__HBSJZ10_22" : [ - "JQ647475" - ], - "Maize_streak_virus__MSV_A_NG_Ond_N27a_2007" : [ - "HQ693392" - ], - "Escherichia_phage_phiV10" : [ - "NC_007804" - ], - "Vibrio_phage_SHOU24" : [ - "NC_023569" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1990_19_1" : [ - "Z75881" - ], - "Human_immunodeficiency_virus_1_3306" : [ - "FR846409" - ], - "Hepatitis_B_virus__bne8" : [ - "FN594749" - ], - "Wheat_streak_mosaic_virus__ID96" : [ - "AF511618" - ], - "Vibrio_cholerae_IEC224" : [ - "NC_016945", - "NC_016944" - ], - "Hepatitis_B_virus__CHI4" : [ - "FJ709460" - ], - "Human_immunodeficiency_virus_1__0264RI" : [ - "JF804807" - ], - "Hepatitis_B_virus__J176" : [ - "GQ377609" - ], - "Madariaga_virus_MADV_X_BRA_SPAN111191_1988" : [ - "KJ469558" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_Zhao" : [ - "KF374682", - "KF374684", - "KF374683" - ], - "Infectious_bursal_disease_virus__SH99" : [ - "LM651366", - "LM651365" - ], - "Murine_coronavirus_AM2" : [ - "KP887098" - ], - "Hepatitis_B_virus__F3O_C2" : [ - "AB471857" - ], - "Thalassomonas_phage_BA3" : [ - "NC_009990" - ], - "Coxsackievirus_A16__BJ10_02" : [ - "KF193631" - ], - "Tomato_yellow_leaf_curl_virus__Jiroft_Iran___TYLCV_OM_IR_Ji31p_06" : [ - "GU076453" - ], - "Hepatitis_B_virus__SHB1C9" : [ - "KJ598639" - ], - "Hepatitis_B_virus__3115" : [ - "KM229703" - ], - "West_Nile_virus__WNV_1_US_BID_V4584_2003" : [ - "HM756651" - ], - "Honeysuckle_yellow_vein_mosaic_virus__Japan_Miyazaki_2001___Myz" : [ - "AB236323" - ], - "Swine_hepatitis_E_virus_swSTHY12_VAS19_2003_CA" : [ - "KJ507955" - ], - "Pseudomonas_putida_DOT_T1E" : [ - "NC_018220" - ], - "Hibiscus_bacilliform_virus_GD1__GD1" : [ - "NC_023485" - ], - "Narcissus_symptomless_virus__Hangzhou_2005" : [ - "NC_008552" - ], - "Mosquito_densovirus_BR_07_BR_07" : [ - "NC_015115" - ], - "Porcine_parvovirus_NADL_2_M3" : [ - "KF913347" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_Asia_1_Jiangsu_China_2005" : [ - "EF149009" - ], - "Magnaporthe_oryzae_virus_1" : [ - "NC_006367" - ], - "Newcastle_disease_virus_NDV_Chicken_Ranchi_01_2014" : [ - "KR072665" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7043_2004" : [ - "KJ189264" - ], - "Hepatitis_B_virus__J112" : [ - "GQ377571" - ], - "JC_polyomavirus__KB_1" : [ - "AB362351" - ], - "Cucumber_mosaic_virus_satellite_RNA_T22" : [ - "X86412" - ], - "Broad_bean_wilt_virus_2__Ca" : [ - "KF498697", - "KF498696" - ], - "Borrelia_afzelii_PKo" : [ - "NC_017229", - "NC_017230", - "NC_017235", - "NC_017231", - "NC_017232", - "NC_017239", - "NC_017241", - "NC_017225", - "NC_017238", - "NC_017226", - "NC_017240", - "NC_017224", - "NC_017227", - "NC_017237", - "NC_017233", - "NC_017228", - "NC_017234", - "NC_017236" - ], - "Human_immunodeficiency_virus_1__04ZASK052MB2" : [ - "DQ396366" - ], - "Marburg_marburgvirus_pp4_guinea_pig_nonlethal_variant_Musoke_Kenya__1980" : [ - "AY430366" - ], - "Parainfluenza_virus_5_KNU_11" : [ - "KC852177" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G19084_9335_2005_576_2009" : [ - "KR135312" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1899_2008" : [ - "FJ410236" - ], - "Shewanella_sp__phage_1_40" : [ - "NC_025470" - ], - "Canine_kobuvirus_CH_1_CH_1" : [ - "JQ911763" - ], - "SARS_coronavirus_MA15_MA15_P3pp4" : [ - "FJ882952" - ], - "JC_polyomavirus__ME_4" : [ - "AB081020" - ], - "JC_polyomavirus_719B" : [ - "AF363831" - ], - "Sudan_ebolavirus__EboSud_639" : [ - "KC589025" - ], - "Plum_pox_virus_PPV_D_Ou15" : [ - "AB576069" - ], - "Human_immunodeficiency_virus_1__CB134" : [ - "DQ020274" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3796" : [ - "KM233078" - ], - "Hepatitis_B_virus__PNF5121" : [ - "KF779355" - ], - "Beak_and_feather_disease_virus__NC107" : [ - "JX049196" - ], - "Hepatitis_B_virus__P98" : [ - "GQ477497" - ], - "West_Nile_virus__WNV_1_US_BID_V6478_2001" : [ - "KJ501480" - ], - "Human_papillomavirus_type_16__Qv24898" : [ - "HQ644281" - ], - "Human_immunodeficiency_virus_1__MERLBDTRC8" : [ - "JN860767" - ], - "Hepatitis_B_virus__FEN84" : [ - "JF440013" - ], - "Enterovirus_A71__3799_SIN_98" : [ - "DQ341354" - ], - "Wheat_dwarf_virus___barley_SxA43_16" : [ - "AM980883" - ], - "Tobacco_leaf_curl_PUSA_alphasatellite" : [ - "NC_014597" - ], - "Porcine_epidemic_diarrhea_virus__IA2" : [ - "KF468754" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09DB1" : [ - "JF268677" - ], - "Human_poliovirus_3_NIE1118479" : [ - "KJ170655" - ], - "Mouse_parvovirus_2" : [ - "NC_008186" - ], - "Hepatitis_B_virus__GU1089" : [ - "GQ161820" - ], - "Coxsackievirus_A16_GZ08" : [ - "FJ198212" - ], - "Foot_and_mouth_disease_virus_O_UKG_7039_2001_UKG_7039_2001" : [ - "EF552690" - ], - "Pedobacter_heparinus_DSM_2366" : [ - "NC_013061" - ], - "Maize_streak_virus__UKas_75" : [ - "EF547079" - ], - "Human_immunodeficiency_virus_1_98TZ017" : [ - "AF286235" - ], - "JC_polyomavirus__N25" : [ - "AB048565" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_Liberia_DQE14" : [ - "KR075003" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0172" : [ - "KP759626" - ], - "Human_rotavirus_A__Human_rotavirus_v183" : [ - "X76779" - ], - "Rift_Valley_fever_virus_Kenya_56__IB8" : [ - "DQ380176", - "DQ380190", - "DQ375427" - ], - "Chikungunya_virus_GD05_2010" : [ - "JX088705" - ], - "Dengue_virus_3__PF90_3050" : [ - "AY744679" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC40AF3_2009" : [ - "JF909218" - ], - "Shokwe_virus_SAAr_4042" : [ - "EU564831" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__PT4_1" : [ - "GU723745" - ], - "Hepatitis_B_virus__KOR5CHB" : [ - "GQ475309" - ], - "Tomato_chlorotic_mottle_virus__BR_Car234_3_08" : [ - "KC706541" - ], - "Hepatitis_B_virus__1_7" : [ - "AY217371" - ], - "Hepatitis_B_virus_FMU012" : [ - "AY206383" - ], - "Hepatitis_B_virus__HBVFLS36" : [ - "JX154579" - ], - "Echovirus_E5__Kor06_ECV5_253cn" : [ - "HM775882" - ], - "JC_polyomavirus__JCV144_08" : [ - "JF424878" - ], - "Rinderpest_virus_L72" : [ - "JN234008" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Octa_alpha_12" : [ - "NC_013013" - ], - "JC_polyomavirus__LA_31" : [ - "AB081615" - ], - "Dasheen_mosaic_virus__T10" : [ - "KJ786965" - ], - "Hepatitis_B_virus__D_NC_182089_2001" : [ - "HQ700512" - ], - "Squash_leaf_curl_virus__IL2_58" : [ - "KM595112" - ], - "Human_bocavirus__TUN8977" : [ - "HQ585888" - ], - "Enterovirus_A71_EV71_Fuyang_Anhui_P_R_C_17_08_3" : [ - "EU703814" - ], - "Mammalian_orthoreovirus_2__BYD1" : [ - "DQ664188", - "DQ664186", - "DQ664185", - "DQ664190", - "DQ664189", - "DQ312301", - "DQ664184", - "DQ664191", - "DQ664187" - ], - "Pseudomonas_phage_vB_PaeM_C1_14_Ab28_Ab28" : [ - "NC_026600" - ], - "Culex_tritaeniorhynchus_rhabdovirus_TY" : [ - "NC_025384" - ], - "Hepatitis_B_virus__cxa2029" : [ - "KC774312" - ], - "Bluetongue_virus_9_BTV_9IT_L" : [ - "JN255902", - "JN255907", - "JN255910", - "JN255908", - "JN255905", - "JN255906", - "JN255909", - "JN255911", - "JN255904", - "JN255903" - ], - "Hepatitis_B_virus__M74" : [ - "GQ924660" - ], - "Human_immunodeficiency_virus_1__WC3_0498_3" : [ - "EF175211" - ], - "Hepatitis_B_virus__NIR_8" : [ - "KM577670" - ], - "Human_immunodeficiency_virus_1__07BR_FPS810" : [ - "HM026459" - ], - "Carnation_yellow_fleck_virus" : [ - "NC_022978" - ], - "Tomato_leaf_curl_New_Delhi_virus____PkT1_8" : [ - "AY150304", - "AF448059" - ], - "Hepatitis_B_virus__499" : [ - "EU670261" - ], - "Aggregatibacter_actinomycetemcomitans_D7S_1" : [ - "NC_017846" - ], - "Zaire_ebolavirus__H_sapiens_wt_GIN_2014_Conacry_192" : [ - "KP342330" - ], - "Avian_metapneumovirus_aMPV_MN_turkey_2a_97" : [ - "FJ977568" - ], - "Crimean_Congo_hemorrhagic_fever_virus_SPU4_81" : [ - "DQ076416" - ], - "Foot_and_mouth_disease_virus___type_O__O_S05KOR_2002" : [ - "KF694735" - ], - "Human_papillomavirus_type_6__108" : [ - "HG793916" - ], - "Hepatitis_B_virus__QH_13" : [ - "JF491447" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V111_2005" : [ - "EU255932" - ], - "Lactobacillus_fermentum_CECT_5716" : [ - "NC_017465" - ], - "Hepatitis_B_virus__CHN_L80" : [ - "AY817515" - ], - "Human_papillomavirus_type_18__Qv21751" : [ - "EF202148" - ], - "Human_immunodeficiency_virus_1__PMVL_012" : [ - "EF514699" - ], - "Human_poliovirus_1_HAI01015" : [ - "AF458333" - ], - "Rotavirus_A__RVA_Human_wt_DEN_W16059_2010_G9P_4" : [ - "KP013454" - ], - "Porcine_circovirus_2__DZ305" : [ - "FJ644560" - ], - "West_Nile_virus__WNV_1_US_BID_V4562_2003" : [ - "HM488173" - ], - "Hepatitis_B_virus_adw_MX_HBV_0153" : [ - "HM117850" - ], - "Sapovirus_Hu_Dresden_pJG_Sap01_DE_Hu_Dresden_pJG_Sap01_DE" : [ - "NC_006269" - ], - "Euphorbia_yellow_mosaic_virus___Goias__Brazil_GO_Itaberai_5082B_2007" : [ - "JF756677" - ], - "Porcine_epidemic_diarrhea_virus_GD_A" : [ - "JX112709" - ], - "Hepatitis_B_virus__N201M_e401" : [ - "KJ173416" - ], - "Sewage_associated_circular_DNA_virus_23__SaCV_23_NZ_BS4025_2012" : [ - "NC_026266" - ], - "Sweet_potato_virus_C__HN52" : [ - "KP115621" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9419_2013" : [ - "KJ643498" - ], - "Streptococcus_thermophilus_MN_ZLW_002" : [ - "NC_017927" - ], - "Barley_yellow_dwarf_virus_GAV__05WN2" : [ - "EU402388" - ], - "Corynebacterium_pseudotuberculosis_C231" : [ - "NC_017301" - ], - "Dengue_virus_2__DENV_2_VE_BID_V3363_1991" : [ - "GQ868596" - ], - "Saffold_virus_Penang" : [ - "HQ162476" - ], - "Plum_pox_virus__DERIVED_FROM_SOUR_CHERRY_MAINTAINED_ON_NICOTIANA_CLEVELANDII" : [ - "X81083" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_92P_337_01_1992" : [ - "KP258745" - ], - "Monkeypox_virus__DRC_06_0999" : [ - "JX878409" - ], - "Dengue_virus_2_DENV_2_PR_45DN_1994" : [ - "GQ398294" - ], - "Potato_virus_A__U" : [ - "AJ131402", - "AF543212", - "AF543709" - ], - "Bacillus_phage_Evoli" : [ - "NC_024207" - ], - "Dengue_virus_3__DENV_3_US_BID_V1612_2004" : [ - "FJ024470" - ], - "Hepatitis_B_virus__41_CW_BRA" : [ - "KJ854702" - ], - "Streptococcus_pyogenes_Alab49" : [ - "NC_017596" - ], - "Squash_leaf_curl_virus__PA2_Q329" : [ - "KM595226" - ], - "Porcine_circovirus_2_PT_27168_08" : [ - "HQ831537" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3677_2007" : [ - "GU131965" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2902_2006" : [ - "GQ199855" - ], - "Hepatitis_C_virus_LTD6_2_XF224" : [ - "AF511950" - ], - "Human_immunodeficiency_virus_1__01BR323" : [ - "DQ358804" - ], - "Mink_circovirus_MiCV_DL13" : [ - "NC_023885" - ], - "Enterovirus_A71_TW_2728_04" : [ - "GQ231929" - ], - "Enterococcus_faecium_DO" : [ - "NC_017960", - "NC_017962", - "NC_017961", - "NC_017963" - ], - "Human_papillomavirus_type_11_CU17" : [ - "JQ773409" - ], - "Hepatitis_B_virus__B1_1" : [ - "GU815582" - ], - "Pseudomonas_phage_PAK_P1" : [ - "NC_015294" - ], - "Hepatitis_B_virus__HK_01" : [ - "KP017267" - ], - "Australian_bat_lyssavirus__insectivorous_isolate" : [ - "NC_003243" - ], - "Narcissus_mosaic_virus__SW13_Iris" : [ - "KF752593" - ], - "XMRV_like_mouse_endogenous_retrovirus_mERV_XL" : [ - "JF714652" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_25__AHEaCV_25_NZ_2250TU_2012" : [ - "KM874356" - ], - "Human_papillomavirus_type_1a_HPV_1A__3_3" : [ - "HPU06714" - ], - "Human_immunodeficiency_virus_1__02HNsq4" : [ - "DQ007902" - ], - "Thermoanaerobacterium_xylanolyticum_LX_11" : [ - "NC_015555" - ], - "Helicobacter_phage_KHP30" : [ - "NC_019928" - ], - "Infectious_pancreatic_necrosis_virus_19F3b" : [ - "AY780921", - "AY780928" - ], - "Maize_streak_virus___A_Nigeria1" : [ - "X01633" - ], - "Usutu_virus_Bologna_2009" : [ - "HM569263" - ], - "Hepatitis_C_virus_subtype_6a_6a63" : [ - "DQ480514" - ], - "Cauliflower_mosaic_virus__GRC91B" : [ - "AB863199" - ], - "Zucchini_yellow_mosaic_virus__6th" : [ - "JN192423" - ], - "Dengue_virus_2__MKS_0412" : [ - "KC762661" - ], - "Mycoplasma_phage_phiMFV1" : [ - "NC_005964" - ], - "Pseudomonas_phage_vB_PaeP_PAO1_Ab05_Ab05" : [ - "NC_026602" - ], - "Hepatitis_B_virus_1149_17" : [ - "KR013831" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1311_2007" : [ - "FJ547090" - ], - "Soybean_yellow_mosaic_virus" : [ - "AJ582267" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00794_2011" : [ - "KJ672533" - ], - "Human_adenovirus_38" : [ - "JN226759" - ], - "South_African_cassava_mosaic_virus__MG_MG173A1_09" : [ - "KJ887940" - ], - "Pepper_golden_mosaic_virus_pepper_mild_tigre" : [ - "EF210557", - "EF210556" - ], - "West_Nile_virus__WNV_1_US_BID_V7414_2004" : [ - "KJ501125" - ], - "Echovirus_E17_CHHE_29" : [ - "AY302543" - ], - "Duck_hepatitis_A_virus_1_HP_1" : [ - "EF151312" - ], - "Tomato_yellow_leaf_curl_Thailand_betasatellite__Y77" : [ - "AJ566747" - ], - "Infectious_bronchitis_virus_CK_CH_LHLJ_140756" : [ - "KP790144" - ], - "Tomato_yellow_leaf_curl_virus__Alb13" : [ - "FJ956702" - ], - "Sugarcane_streak_Egypt_virus____Naga__Naga_Hammady" : [ - "AF239159" - ], - "Macroptilium_yellow_spot_virus__BR_Oaf28_11" : [ - "KJ939857" - ], - "Porcine_circovirus_2__CC12" : [ - "KC859451" - ], - "BK_polyomavirus__FIN_23" : [ - "AB260030" - ], - "Hepatitis_B_virus__MGL50F" : [ - "AB270535" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_14__AHEaCV_14_NZ_3348C3_2012" : [ - "KM874332" - ], - "Autographa_californica_nucleopolyhedrovirus" : [ - "NC_001623" - ], - "West_Nile_virus_Italy_2014_Cremona4" : [ - "KP789957" - ], - "Human_poliovirus_1__TJK35453" : [ - "KC880379" - ], - "West_Nile_virus__WNV_1_US_BID_V6678_2005" : [ - "KJ501414" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2878_2006" : [ - "GQ199843" - ], - "Hepatitis_B_virus__PG_20" : [ - "KF471652" - ], - "Human_immunodeficiency_virus_1__03ZASK020B2" : [ - "AY878064" - ], - "Columbid_circovirus__SHWH_AB4" : [ - "KJ704806" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V215_1989" : [ - "EU569722" - ], - "Vaccinia_virus_WR__Western_Reserve" : [ - "NC_006998" - ], - "Lactococcus_phage_P162" : [ - "NC_024214" - ], - "Escherichia_coli__clone_D_i2" : [ - "NC_017651" - ], - "Vicia_cryptic_virus" : [ - "NC_007242", - "NC_007241" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_15__AHEaCV_15_NZ_2957SG_2012" : [ - "KM874339" - ], - "Salmonella_phage_FSL_SP_039" : [ - "KC139514" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V247_2005" : [ - "EU255952" - ], - "Staphylococcus_phage_2638A" : [ - "NC_007051" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V329_2002" : [ - "EU155294" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__Y307" : [ - "AM236777" - ], - "Soybean_mosaic_virus__CN18" : [ - "AJ619757" - ], - "Halorhodospira_halophila_SL1" : [ - "NC_008789" - ], - "Hepatitis_B_virus__CX_3" : [ - "FJ787476" - ], - "Human_herpesvirus_7_RK" : [ - "NC_001716" - ], - "Murine_norovirus_GV_NIH_4431_2005_USA_GV_NIH_4431_2005_USA" : [ - "JF320651" - ], - "Human_poliovirus_3_NIE1018503" : [ - "KJ170602" - ], - "Hepatitis_B_virus__490_1" : [ - "EU871986" - ], - "Hepatitis_B_virus__CHI7" : [ - "FJ709463" - ], - "Columbid_circovirus__PL188" : [ - "KF738851" - ], - "Drosophila_C_virus_EB" : [ - "NC_001834" - ], - "Pigeon_paramyxovirus_1_PPMV_1_Maryland_1984" : [ - "FJ410147" - ], - "Hepatitis_B_virus__179_96_1" : [ - "EU872005" - ], - "Potato_virus_Y__1128" : [ - "KJ603224" - ], - "Human_papillomavirus_type_58__Qv15563" : [ - "HQ537756" - ], - "Chikungunya_virus_05_209" : [ - "AM258991" - ], - "Elephantid_herpesvirus_1_Raman" : [ - "NC_020474" - ], - "East_African_cassava_mosaic_virus__CF_CF57BE_07" : [ - "KM885998" - ], - "Human_papillomavirus_type_31__IN231831" : [ - "HQ537679" - ], - "Bean_golden_mosaic_virus__BR_Sag1_12" : [ - "KJ939779" - ], - "Oran_virus_22996" : [ - "AF482715" - ], - "Human_immunodeficiency_virus_1__97CM_MP814" : [ - "FN392876" - ], - "East_African_cassava_mosaic_Zanzibar_virus__SB3" : [ - "HE806429" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG207A1_09" : [ - "KJ887950" - ], - "HBV_genotype_A2__Mart_B74" : [ - "HE974383" - ], - "Pelargonium_flower_break_virus__MZ10" : [ - "NC_005286" - ], - "Porcine_circovirus_2_Fd9" : [ - "AY321996" - ], - "Potato_virus_Y_1101" : [ - "KC296434" - ], - "Torque_teno_virus__TTV_HD20a__uro960" : [ - "FR751492" - ], - "Bovine_papillomavirus_type_2__Aks_01" : [ - "KM455051" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1NA7" : [ - "FJ744150" - ], - "Hepatitis_B_virus__HS005C_e22" : [ - "KJ173299" - ], - "Macroptilium_yellow_spot_virus__BR_Sti25_11" : [ - "KJ939882" - ], - "Lawsonia_intracellularis_PHE_MN1_00" : [ - "NC_008014", - "NC_008012", - "NC_008013", - "NC_008011" - ], - "Hepatitis_delta_virus__D52" : [ - "KJ744250" - ], - "Elephantid_herpesvirus_1_Emelia" : [ - "KC462164" - ], - "Rabies_virus__WQ14_RF" : [ - "KM016899" - ], - "Human_adenovirus_3_7_Takeuchi" : [ - "JN860679" - ], - "Hepatitis_B_virus__CHN_QH18" : [ - "DQ478890" - ], - "Bean_golden_mosaic_virus__BgV03A_1_C62" : [ - "JF694452" - ], - "Tobacco_mosaic_virus_pet" : [ - "AB369275" - ], - "Hepatitis_B_virus__dlz2093" : [ - "KC774427" - ], - "Human_immunodeficiency_virus_2_2UC1" : [ - "HIV2UC1GNM" - ], - "Hepatitis_C_virus__QC172" : [ - "KJ439769" - ], - "Zucchini_yellow_mosaic_virus__CU" : [ - "AJ307036" - ], - "Croton_yellow_vein_mosaic_virus" : [ - "FN645926", - "FN645898", - "EU727086", - "FN645901", - "NC_004300", - "FN678906", - "FN645915", - "FN645902" - ], - "Hepatitis_C_virus__NE145" : [ - "KJ470618" - ], - "Norovirus_Hu_GII_4_Turramurra_NSW892U_2009_AUS_Hu_GII_4_NSW892U_2009_AU" : [ - "HM748973" - ], - "Infectious_hematopoietic_necrosis_virus_220_90" : [ - "HM461966" - ], - "Hepatitis_C_virus__QC384" : [ - "FJ462439" - ], - "Torque_teno_virus__HD10c_sle2045" : [ - "FR848324" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_23_DRC" : [ - "JX458835" - ], - "Hepatitis_B_virus__YY014M_e116" : [ - "KJ173378" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9444_2013" : [ - "KJ643518" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1658_2007" : [ - "FJ182029" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG624B5_11" : [ - "KJ888065" - ], - "Human_immunodeficiency_virus_1__99USTWLA" : [ - "AY169814" - ], - "Parsnip_yellow_fleck_virus__P121" : [ - "NC_003628" - ], - "Goose_circovirus_xs4" : [ - "DQ192285" - ], - "Enterobacteria_phage_RB69" : [ - "NC_004928" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Bathinda2_2010" : [ - "JF502391" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPP00416_2011_A" : [ - "KJ627421" - ], - "Human_bocavirus_WLL_2" : [ - "EF441262" - ], - "BK_polyomavirus__WW" : [ - "AB211371" - ], - "Rift_Valley_fever_virus_KEN07_KUR340" : [ - "EF460404" - ], - "Enterobacteria_phage_WA2" : [ - "DQ079896" - ], - "Human_coronavirus_HKU1_N14" : [ - "DQ415910" - ], - "Simian_immunodeficiency_virus__smmPGm" : [ - "AF077017" - ], - "Wheat_dwarf_virus__SXDT10_3" : [ - "JQ647487" - ], - "Burkholderia_cenocepacia_MC0_3" : [ - "NC_010512", - "NC_010508", - "NC_010515" - ], - "Mycoplasma_bovis_Hubei_1" : [ - "NC_015725" - ], - "Pseudomonas_phage_LUZ24" : [ - "NC_010325" - ], - "SARS_coronavirus_GZ_A__GZ_A" : [ - "AY394977" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus_WK164" : [ - "JQ723730" - ], - "Maize_streak_virus__MSV_B3_Re_BasC_R4_2006" : [ - "EU628617" - ], - "Squash_leaf_curl_virus__LB3_7_44" : [ - "KM595138" - ], - "Grapevine_Bulgarian_latent_virus__Serb1" : [ - "NC_015492", - "NC_015493" - ], - "Dengue_virus_2_DENV_2_PR_6780DN_1994" : [ - "GQ398311" - ], - "Rhinovirus_B__R93" : [ - "KF958309" - ], - "Human_papillomavirus_type_159__SIBX8" : [ - "HE963025" - ], - "Human_immunodeficiency_virus_1__K2p21" : [ - "HM469983" - ], - "Hepatitis_B_virus_subtype_adw_SK494" : [ - "AB033552" - ], - "Watermelon_chlorotic_stunt_virus__PA2_Q27" : [ - "KM820288" - ], - "Ball_python_nidovirus_07_53" : [ - "NC_024709" - ], - "Encephalomyocarditis_virus__K11" : [ - "EU780149" - ], - "Infectious_bronchitis_virus_ITA_90254_2005__ITA_90254_2005" : [ - "FN430414" - ], - "Hepatitis_B_virus__ECO50065LIP3" : [ - "JQ664503" - ], - "Human_immunodeficiency_virus_1__VI1197" : [ - "AJ276596" - ], - "WU_Polyomavirus__MN2607" : [ - "GU296404" - ], - "Hepatitis_B_virus__GU489" : [ - "GQ161833" - ], - "Euphorbia_yellow_mosaic_virus__Brazil_Mato_grosso_do_sul_1_2007" : [ - "FN435996", - "FN435995", - "NC_014630" - ], - "Hepatitis_B_virus__524_3_2004" : [ - "DQ463800" - ], - "Staphylococcus_phage_SA11" : [ - "NC_019511" - ], - "JC_polyomavirus__Ceb_2" : [ - "AB113122" - ], - "Chikungunya_virus_HD_180760" : [ - "HM045817" - ], - "Human_herpesvirus_8_DG1" : [ - "JQ619843" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_D174812_2010" : [ - "KM452743" - ], - "Dengue_virus_3__DENV_3_US_BID_V1621_2005" : [ - "FJ182011" - ], - "Canna_yellow_streak_virus__NC4" : [ - "KM882647" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B78_2008" : [ - "GQ396655" - ], - "Rock_bream_iridovirus_RBIV_KOR_TY1" : [ - "AY532606" - ], - "Delphinus_delphis_papillomavirus" : [ - "GU117620" - ], - "Hepatitis_B_virus__CM1" : [ - "KM386676" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2391_2004" : [ - "FJ850083" - ], - "West_Nile_virus__WNV_1_US_BID_V7431_2011" : [ - "KJ501141" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V170_1997" : [ - "EU255966" - ], - "Squash_leaf_curl_virus__IL3_82" : [ - "KM595116" - ], - "Dengue_virus_3__DENV_3_US_BID_V2114_2001" : [ - "FJ547079" - ], - "Cyanophage_Syn30_Syn30" : [ - "NC_021072" - ], - "Desulfovibrio_vulgaris_RCH1" : [ - "NC_017311", - "NC_017310" - ], - "SFTS_virus_HNXY_174_HNXY_174" : [ - "KC292279", - "KC292306", - "KC292332" - ], - "Coxsackievirus_A2_2260165" : [ - "JX867331" - ], - "Porcine_circovirus_2_SY1105" : [ - "JX982221" - ], - "Salmonella_phage_HB_2014" : [ - "NC_027329" - ], - "Trichomonas_vaginalis_virus_3_TVV3_UR1_1" : [ - "KM268110" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1989_20_2" : [ - "Z75873" - ], - "Seoul_virus_5CSG_5CSG" : [ - "AB618130" - ], - "Porcine_epidemic_diarrhea_virus_TC_PC22A_P10" : [ - "KM392224" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_8__AHEaCV_8_NZ_2216TU_2012" : [ - "NC_026634" - ], - "Enterovirus_A71__02_1_043" : [ - "KP691648" - ], - "Pieris_rapae_granulovirus_E3_Guangxi" : [ - "GU111736" - ], - "Hepatitis_B_virus__B8" : [ - "FJ904429" - ], - "West_Nile_virus__WNV_1_US_BID_V7404_2008" : [ - "KJ501116" - ], - "Goose_parvovirus_E" : [ - "KC184133" - ], - "Yellow_fever_virus_Angola71" : [ - "AY968064" - ], - "Hepatitis_B_virus__N13_C_4198B" : [ - "KJ173408" - ], - "Human_immunodeficiency_virus_1__CH185_TF" : [ - "KC156129" - ], - "Hepatitis_B_virus_HB560" : [ - "JQ027327" - ], - "Frog_virus_3" : [ - "NC_005946" - ], - "Tomato_leaf_curl_Palampur_virus__Jiroft_melon___ToLCPMV__IR_Jir2_Mel_07" : [ - "EU547683", - "EU547681" - ], - "Maize_streak_virus__MSV_A_ZA_Koe2_O21_1989" : [ - "FJ882119" - ], - "Hepatitis_B_virus__30" : [ - "JX507211", - "AY236164" - ], - "Human_rhinovirus_A10" : [ - "DQ473498" - ], - "Dengue_virus_1__MKS_0397" : [ - "KC762621" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_107_2012" : [ - "KJ686241" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_105_2012" : [ - "KJ686162" - ], - "Dengue_virus_1__DENV_1_NI_BID_V641_2005" : [ - "EU596503" - ], - "Coxsackievirus_A24__HG" : [ - "JN228097" - ], - "Squash_leaf_curl_virus__LB2_4_32" : [ - "KM595132" - ], - "Tobacco_vein_banding_mosaic_virus__LW" : [ - "JN630473" - ], - "Hepatitis_B_virus__C232_2" : [ - "FJ899790" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI37_12_DNA_B" : [ - "HE979795" - ], - "Maize_streak_virus__MSV_A_CM_Baf4_Cam19_2008" : [ - "HQ693322" - ], - "Coxsackievirus_A16__GX10_01" : [ - "KF193625" - ], - "Alkhumra_hemorrhagic_fever_virus_Zaki__2" : [ - "JF416957" - ], - "BK_polyomavirus__SHA_47" : [ - "AB365172" - ], - "Human_papillomavirus_type_45__BF208" : [ - "KC470255" - ], - "Dengue_virus_3_D3_SG_05K3923DK1_2005" : [ - "EU081211" - ], - "Rabies_virus_Moscow_3253" : [ - "KM198893" - ], - "Budgerigar_fledgling_disease_polyomavirus_WF_GM01" : [ - "GU452537" - ], - "Alternanthera_yellow_vein_virus__Hn51" : [ - "AM050736" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9374_2013" : [ - "KJ643463" - ], - "Wheat_dwarf_virus__SxA57" : [ - "AM942044" - ], - "Human_mastadenovirus_C_human_USA_VT2672_2003_1_P1H1F1" : [ - "JX173083" - ], - "Tobacco_mosaic_virus__Tor2_L3" : [ - "KF972436" - ], - "Porcine_circovirus_1_sc_6" : [ - "DQ472015" - ], - "Rabies_virus_CTN_1" : [ - "FJ959397" - ], - "Shigella_phage_pSb_1" : [ - "NC_023589" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2966_2001" : [ - "FJ898469" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2318_2001" : [ - "FJ687448" - ], - "Human_immunodeficiency_virus_1__04ZAPS214B1" : [ - "DQ093588" - ], - "West_Nile_virus__WNV_1_BID_V5048" : [ - "JN819320" - ], - "Chikungunya_virus_Yap_13_2039" : [ - "KJ689452" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1680_2007" : [ - "FJ205878" - ], - "BK_polyomavirus_JPN_36" : [ - "AB269840" - ], - "Salmonella_phage_SPN1S" : [ - "NC_016761" - ], - "Homalodisca_vitripennis_reovirus__SC20" : [ - "GU390598", - "GU390590", - "GU390597", - "GU390600", - "GU390594", - "GU390595", - "GU390596", - "GU390589", - "GU390592", - "GU390593", - "GU390591", - "GU390599" - ], - "Hepatitis_B_virus__CONTROL21" : [ - "JQ801513" - ], - "South_African_cassava_mosaic_virus__MG_MG37A3_06" : [ - "KJ887853" - ], - "Neisseria_meningitidis_H44_76" : [ - "NC_017516" - ], - "Rubella_virus__C74_Russia_1997" : [ - "DQ085340" - ], - "Human_rotavirus_A_US1206" : [ - "AJ400638" - ], - "Lactococcus_phage_phiL47" : [ - "NC_023574" - ], - "Human_metapneumovirus_HMPV_USA_TN_91_238_1991_B" : [ - "KC403974" - ], - "Hepatitis_B_virus_MGI" : [ - "AY781186" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7668_2011" : [ - "KF973484" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_50_2012" : [ - "KJ686285" - ], - "Orf_virus_NZ2" : [ - "DQ184476" - ], - "Hepatitis_B_virus_GII_11" : [ - "AY781183" - ], - "Rotavirus_A__RVA_Human_wt_DEN_S14962_2012_G9P_8" : [ - "KP013462" - ], - "Geobacillus_thermoglucosidasius_C56_YS93" : [ - "NC_015660", - "NC_015661", - "NC_015665" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4786_2009" : [ - "HQ541785" - ], - "Sweet_potato_virus_2__GWB_2" : [ - "NC_017970" - ], - "Newcastle_disease_virus_ZJ_1_86_Ch" : [ - "FJ436303" - ], - "Hepatitis_B_virus__patient_342" : [ - "DQ993686" - ], - "West_Nile_virus__WNV_1_US_BID_V4798_2004" : [ - "HM756671" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2501_2008" : [ - "FJ882592" - ], - "Porcine_endogenous_retrovirus_E" : [ - "NC_003059" - ], - "Rhodopseudomonas_palustris_HaA2" : [ - "NC_007778" - ], - "Hepatitis_B_virus__MY814443" : [ - "KJ803779" - ], - "Reston_ebolavirus__Reston_virus_M_fascicularis_tc_USA_1989_Philippines89__Pennsylvania" : [ - "NC_004161" - ], - "Bean_golden_yellow_mosaic_virus__Puerto_Rico_Japan" : [ - "NC_001438", - "NC_001439" - ], - "Dobrava_Belgrade_virus_Dobrava" : [ - "HNVDOBMS" - ], - "African_cassava_mosaic_virus__CF_CF107BE_07" : [ - "KJ887615" - ], - "Vicia_faba_endornavirus" : [ - "NC_007648" - ], - "Dengue_virus_2__DC642Y12" : [ - "KM279540" - ], - "Hepatitis_B_virus__SHB1C6" : [ - "KJ598638" - ], - "Anoxybacillus_flavithermus_WK1" : [ - "NC_011567" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1297_2007" : [ - "EU482629" - ], - "Klebsiella_pneumoniae_KCTC_2242" : [ - "NC_017541", - "NC_017540" - ], - "Coronavirus_Neoromicia_PML_PHE1_RSA_2011_Neoromicia_PML_PHE1_RSA_2011" : [ - "KC869678" - ], - "Hepatitis_B_virus_C0503236_BJS_F" : [ - "AP011106" - ], - "Tomato_spotted_wilt_virus__NC_4" : [ - "AY744487" - ], - "Sewage_associated_circular_DNA_virus_34__SaCV_34_NZ_BS4221_2012" : [ - "NC_026279" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4057_2008" : [ - "GU131809" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3769_4" : [ - "KM233068" - ], - "JC_polyomavirus__SP_7" : [ - "AB074591" - ], - "Spodoptera_exigua_iflavirus_2" : [ - "KJ186788" - ], - "Hepatitis_B_virus__16338_NE_BRA" : [ - "KJ854690" - ], - "Cucumber_mosaic_virus_satellite_RNA__0100_satRNA_339" : [ - "JF918968" - ], - "Human_herpesvirus_3_VZVi_Erfurt_GER_11_07_V_5__446_2007" : [ - "JN704707" - ], - "Hepatitis_B_virus__WJT14" : [ - "DQ377161" - ], - "Newcastle_disease_virus__Chicken_China_Jilin_01_2008" : [ - "KC542899" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3459G_2002" : [ - "JN989425" - ], - "Enterobacteria_phage_DT57C" : [ - "NC_027356" - ], - "Enterovirus_A71__V07_2231013" : [ - "KC436268" - ], - "Newcastle_disease_virus__duck_China_Guangxi21_2010" : [ - "JX193082" - ], - "Tomato_yellow_leaf_curl_China_virus__SC226_8" : [ - "JX679252" - ], - "Watermelon_mosaic_virus__RKG2" : [ - "KM597071" - ], - "Thermoanaerobacter_tengcongensis_MB4" : [ - "NC_003869" - ], - "Ophiostoma_mitovirus_5" : [ - "NC_004053" - ], - "Duck_circovirus__D11_JW_022" : [ - "KC851810" - ], - "Enterobacteria_phage_f1__NBRC_20010" : [ - "AB334720" - ], - "Hepatitis_B_virus__Occult_HK313" : [ - "KJ410518" - ], - "Human_immunodeficiency_virus_1__00BW1859_5" : [ - "AF443099" - ], - "Junin_mammarenavirus_JNM_7354" : [ - "DQ531488" - ], - "Usutu_virus_V321" : [ - "KJ438766" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0010" : [ - "KP759639" - ], - "Sugarcane_streak_Reunion_virus_1" : [ - "NC_004755" - ], - "Vibrio_phage_ICP1_2006_B" : [ - "HQ641350" - ], - "Hepatitis_B_virus__Japreira76" : [ - "DQ899145" - ], - "Porcine_epidemic_diarrhea_virus_OH1414" : [ - "KJ408801" - ], - "Peste_des_petits_ruminants_virus__Ethiopia_2010" : [ - "KJ867541" - ], - "Hepatitis_B_virus_JH4_1896_A" : [ - "EF137803" - ], - "Tomato_golden_mottle_virus__SLP" : [ - "NC_008057" - ], - "Hepatitis_B_virus__C42" : [ - "EU859954" - ], - "Rotavirus_A_MRC_DPRU9317_RVA_Human_wt_ZAF_MRC_DPRU9317_1999_G9P_6" : [ - "JN605437", - "JN605446", - "JN605447", - "JN605445", - "JN605441", - "JN605439", - "JN605444", - "JN605438", - "JN605440", - "JN605442" - ], - "Lechiguanas_virus_22819" : [ - "AF482714" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5756_1" : [ - "KR105324" - ], - "Human_poliovirus_3_NIE1018458" : [ - "KJ170636" - ], - "JC_polyomavirus__338A" : [ - "AY386375" - ], - "Porcine_circovirus_2_BaPCV2b" : [ - "FJ233905" - ], - "Merkel_cell_polyomavirus__MCVw156" : [ - "HM355825" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SDA2" : [ - "JX878379" - ], - "Echovirus_E3_OC10_774" : [ - "AB647325" - ], - "JC_polyomavirus__MT_22" : [ - "AB077868" - ], - "Porcine_circovirus_1" : [ - "AY184287", - "Y09921", - "NC_001792", - "PCU49186", - "AF012107", - "AY699796", - "AY660574" - ], - "Euphorbia_leaf_curl_virus__PF1" : [ - "KC161185" - ], - "Dengue_virus_2__DENV_2_US_BID_V593_2005" : [ - "EU482724" - ], - "Pepper_yellow_dwarf_virus___New_Mexico" : [ - "EU921828" - ], - "Soybean_mosaic_virus__WS205" : [ - "FJ640975" - ], - "Hepatitis_B_virus_subtype_adr" : [ - "AB299858" - ], - "Japanese_encephalitis_virus__ZSZ" : [ - "JN381862" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2453_2001" : [ - "FJ810416" - ], - "Dengue_virus_2_I348600" : [ - "AY702040" - ], - "Human_immunodeficiency_virus_1_988" : [ - "FR846410" - ], - "Small_begomovirus_associated_satellite__wf_S3" : [ - "KJ859187" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3446_2006" : [ - "GU131854" - ], - "Faba_bean_necrotic_stunt_alphasatellite_1__Peshtatuek_12b" : [ - "NC_023881" - ], - "Rotavirus_A__RVA_Human_wt_DEN_L23035299_2012_G9P_8" : [ - "KP013465" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ04AS3_2004" : [ - "JF909201" - ], - "Infectious_salmon_anemia_virus__Eikelandsosen_89" : [ - "AF262386" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2800_2007" : [ - "FJ882550" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_89E_108_01_1989" : [ - "KP856961" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V341_2003" : [ - "EU155300" - ], - "Black_medic_leafroll_alphasatellite_1__Lerik_Xalifa_47" : [ - "NC_023875" - ], - "Human_papillomavirus_type_76" : [ - "Y15174" - ], - "Tomato_yellow_leaf_curl_virus___KISR_2" : [ - "KJ830841" - ], - "Changuinola_virus__CGLV_BE_AN_28873" : [ - "NC_022635", - "NC_022637", - "NC_022634", - "NC_022636", - "NC_022641", - "NC_022633", - "NC_022639", - "NC_022638", - "NC_022640", - "NC_022642" - ], - "Dengue_virus_2__DC652Y12" : [ - "KM279545" - ], - "Chilli_veinal_mottle_virus__Pp4" : [ - "KC711056" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO14AC3_2009" : [ - "JF909223" - ], - "Human_coronavirus_OC43_OC43_human_USA_8912_37_1989" : [ - "KF530073" - ], - "Dengue_virus_2__DGV37" : [ - "JX286520" - ], - "Sugarcane_streak_Egypt_virus__Giza" : [ - "NC_001868" - ], - "Human_metapneumovirus_HMPV_USA_TN_96_313_1996_B" : [ - "KC562238", - "KC562227" - ], - "Gordonia_phage_GTE7" : [ - "NC_016166" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_PD119" : [ - "KP998411" - ], - "Tomato_yellow_leaf_curl_virus" : [ - "EF110890", - "EF539831", - "JX131286", - "KF435137", - "AY530931", - "AM282874", - "AY594174", - "X15656", - "KC677732", - "EF054893", - "GU355941" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_VEN_23647_1974_ID" : [ - "KC344508" - ], - "Cellulophaga_phage_phi17_1_phi17_1" : [ - "NC_021795" - ], - "Potato_leafroll_virus__Warwick" : [ - "JX855134" - ], - "South_African_cassava_mosaic_virus__MG_MG47A3_06" : [ - "KJ887864" - ], - "JC_polyomavirus__321A" : [ - "AY376831" - ], - "Hepatitis_B_virus__KOR29LC" : [ - "GQ475333" - ], - "Maize_streak_virus__MSV_F_Ng_IntA_g86_2007" : [ - "EU628628" - ], - "West_Nile_virus__WNV_1_US_BID_V6551_2003" : [ - "KJ501351" - ], - "Urochloa_streak_virus__USV_NG_ng27_mil21_2011" : [ - "KJ437666" - ], - "Rabies_virus__MEXSK3644" : [ - "JQ685929" - ], - "Human_immunodeficiency_virus_1__04CM_173_9" : [ - "DQ845386" - ], - "JC_polyomavirus__SA_1" : [ - "AB127008" - ], - "Human_immunodeficiency_virus_1__SAMI_WGA1" : [ - "EU547186" - ], - "Cocksfoot_streak_virus__CSV630wytham" : [ - "EU119422" - ], - "Ageratum_yellow_vein_China_betasatellite__Y346" : [ - "HF569262" - ], - "Lactococcus_Phage_ASCC506" : [ - "JQ740810" - ], - "Vesicular_stomatitis_Indiana_virus_Mudd_Summers" : [ - "EU849003" - ], - "Convict_Creek_107_virus" : [ - "AF425256" - ], - "Human_papillomavirus_type_82__P5_860" : [ - "KF444055" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4028_2008" : [ - "GU131788" - ], - "Porcine_circovirus_2__DK459case" : [ - "EF565358" - ], - "Wheat_dwarf_virus__SABgl2_11" : [ - "AM921649" - ], - "Bacillus_phage_GA_1" : [ - "NC_002649" - ], - "Carnation_mottle_virus__Japan" : [ - "KR002041" - ], - "Simian_hemorrhagic_fever_virus__krtg10" : [ - "JX473847" - ], - "Rice_stripe_virus__CXi04" : [ - "AJ871749" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL120A" : [ - "AB985322", - "AB985554" - ], - "Beet_curly_top_virus__SLP2" : [ - "EU586261" - ], - "West_Nile_virus_Ita09" : [ - "GU011992" - ], - "Northway_virus" : [ - "X73470" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_30_2012" : [ - "KJ672436" - ], - "Hepatitis_B_virus__IBL1082" : [ - "HM363566" - ], - "Human_adenovirus_7_0901HZ_ShX_CHN_2009" : [ - "JF800905" - ], - "Porcine_coronavirus_HKU15_MI6148" : [ - "KJ620016" - ], - "SARS_coronavirus_Urbani_Urbani" : [ - "AY278741" - ], - "Porcine_circovirus_2_Huanan_9" : [ - "EF493838" - ], - "Thermodesulfovibrio_yellowstonii_DSM_11347" : [ - "NC_011296" - ], - "Tomato_leaf_curl_Java_virus" : [ - "NC_005031" - ], - "Porcine_circovirus_2_WZ04" : [ - "DQ201642" - ], - "Norovirus_Hu_GII_20365_2010_VNM_Hu_GII_20365_2010_VNM" : [ - "KC409293" - ], - "Cauliflower_mosaic_virus__TUR244" : [ - "AB863183" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9514_2013" : [ - "KJ643564" - ], - "Plum_bark_necrosis_stem_pitting_associated_virus__Pair_2" : [ - "KC590345" - ], - "Canine_parvovirus__CPV2a" : [ - "AJ564427" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V201_1991" : [ - "EU255985" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culicidae_USA_1804_2001" : [ - "KJ469644" - ], - "Plum_pox_virus_PPV_D_Od3" : [ - "AB576078" - ], - "Human_mastadenovirus_A_human_USA_UFL_Adv31_2005_31_P31H31F31" : [ - "KF268119" - ], - "Hepatitis_B_virus__dlz1044" : [ - "KC774422" - ], - "Wheat_dwarf_virus__Bavanat" : [ - "JN791096" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_1062" : [ - "JQ765573" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4017_2008" : [ - "GU131779" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Equus_caballus_PER_Hoja_Redonda_1971_IAB" : [ - "KC344430" - ], - "African_cassava_mosaic_virus__CF_CF17AN_07" : [ - "KJ887764" - ], - "Mycobacterium_phage_Dori_Dori" : [ - "NC_023703" - ], - "Maize_streak_virus__MSV_A_ZA_Blu1_Ta28_2008" : [ - "HQ693400" - ], - "Methylovorus_glucosetrophus_SIP3_4" : [ - "NC_012972", - "NC_012970", - "NC_012969" - ], - "Simian_virus_40__SV40_PV_274" : [ - "EF579667" - ], - "Burkholderia_phage_KS5" : [ - "NC_015265" - ], - "Enterovirus_A_GZ2010_156_EV71_Guangzhou_156_2010" : [ - "HQ456305" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1926_2008" : [ - "FJ461332" - ], - "Persicivirga_phage_P12024L" : [ - "NC_018272" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2741_2007" : [ - "FJ898383" - ], - "Measles_virus_attenuated_Edmonston_Enders__Morten" : [ - "FJ211583" - ], - "WU_Polyomavirus_BJF5276" : [ - "HQ218321" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1651_2007" : [ - "FJ182027" - ], - "Usutu_virus_V210" : [ - "KJ438763" - ], - "Monkeypox_virus_Sudan_2005_01" : [ - "KC257459" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3899_2008" : [ - "GU131722" - ], - "Acanthamoeba_polyphaga_mimivirus_Oyster" : [ - "KM982401" - ], - "Hepatitis_B_virus__S710_2" : [ - "EU589337" - ], - "Hepatitis_B_virus_1853Nic" : [ - "AY090454" - ], - "Burkholderia_phage_BcepNazgul" : [ - "NC_005091" - ], - "Chicken_anemia_virus_GD_K_12" : [ - "KF224935" - ], - "Circo_like_virus_Brazil_hs2_hs2" : [ - "JX559622" - ], - "Chilli_leaf_curl_virus__Sal1" : [ - "JN604489" - ], - "Staphylococcus_phage_Twort" : [ - "NC_007021" - ], - "Maize_streak_virus__MSV_A_ZA_Hec4_O13_1989" : [ - "FJ882112" - ], - "Duck_hepatitis_A_virus_1__CH2012" : [ - "KF953535" - ], - "Tobacco_bushy_top_virus__YLLi" : [ - "FM242699" - ], - "Human_coronavirus_OC43_OC43_human_USA_913_29_1991" : [ - "KF530079" - ], - "Chlamydia_psittaci_GR9" : [ - "NC_018620" - ], - "Hepatitis_B_virus__CX022C_e230" : [ - "KJ173283" - ], - "West_Nile_virus__WNV_1_US_BID_V4355_2006" : [ - "HM488160" - ], - "Propionibacterium_phage_Stormborn" : [ - "NC_027622" - ], - "BK_polyomavirus__VNM_9" : [ - "AB263937" - ], - "Cowpea_mild_mottle_virus__CPMMV_BR_BA_02" : [ - "KC884247" - ], - "Hepatitis_B_virus_C0503296_PTK_F" : [ - "AP011097" - ], - "Human_coronavirus_HKU1_N25" : [ - "DQ415902" - ], - "Avian_leukosis_virus_SDAU09E3" : [ - "JF826241" - ], - "West_Nile_virus__WNV_USA_BID_G15496" : [ - "JX503087" - ], - "Dengue_virus_1_30399_95" : [ - "JN638339" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NADC31" : [ - "JN660150" - ], - "Human_herpesvirus_5_BE_30_2011" : [ - "KP745670" - ], - "Beak_and_feather_disease_virus__BFDV_NC13_31" : [ - "KF768546" - ], - "Musca_domestica_salivary_gland_hypertrophy_virus" : [ - "NC_010671" - ], - "Human_immunodeficiency_virus_1__02CAMLT04" : [ - "EU743964" - ], - "JC_polyomavirus__UA" : [ - "AB081618" - ], - "Ravn_virus___Ravn__Kenya__1987__R1" : [ - "EU500827" - ], - "Tick_borne_encephalitis_virus_CGl223" : [ - "KC835597" - ], - "Norovirus_Hu_GII_20457_2010_VNM_Hu_GII_20457_2010_VNM" : [ - "KC409299" - ], - "Human_adenovirus_45" : [ - "JN226764" - ], - "Punta_Toro_virus" : [ - "EF201834" - ], - "Human_poliovirus_3_NIE1218552" : [ - "KJ170667" - ], - "Hepatitis_B_virus__I130" : [ - "FJ562276" - ], - "JC_polyomavirus_715A" : [ - "AF300965" - ], - "Human_rhinovirus_A67_ATCC_VR_1177" : [ - "FJ445149" - ], - "Hepatitis_B_virus__LAMr_Pt__44_Adefovir_treated_Pt__23" : [ - "AB367435" - ], - "Porcine_deltacoronavirus_KNU14_04__KNU14_04" : [ - "KM820765" - ], - "Human_astrovirus_1_Beijing_291_2007_CHN_Beijing_291_2007_CHN" : [ - "FJ755404" - ], - "Swine_deltacoronavirus_OhioCVM1_2014_SdCV_USA_OhioCVM1_2014" : [ - "KJ769231" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5737_1" : [ - "KR105321" - ], - "Porcine_circovirus_2__ST" : [ - "KC514976" - ], - "Dengue_virus_2__13858_BR_PE_10" : [ - "JX669476" - ], - "Porcine_circovirus_2__TY4" : [ - "HQ202967" - ], - "Beak_and_feather_disease_virus__BFDV_T_PL_1297_2011" : [ - "JX221012" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4284_2007" : [ - "GU131936" - ], - "Rabies_virus__TN186" : [ - "JQ685922" - ], - "Yersinia_phage_phi80_18" : [ - "NC_019911" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_Praslin_SC22B15_2009" : [ - "JF909162" - ], - "Dengue_virus_2_D2_AS_UH85_1972" : [ - "HM582106" - ], - "Newcastle_disease_virus__Pigeon_China_SD069_2012" : [ - "KP861633" - ], - "Microviridae_Bog5275_51__Bog5275_51" : [ - "NC_027635" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda41_05" : [ - "KC706646" - ], - "Lates_calcarifer_nervous_necrosis_virus_BVN2" : [ - "GU826692" - ], - "Barfin_flounder_nervous_necrosis_virus__JFIwa98" : [ - "NC_013459", - "NC_013458" - ], - "Cupriavidus_metallidurans_CH34" : [ - "NC_007973", - "NC_007971", - "NC_007972", - "NC_007974" - ], - "Hepatitis_B_virus__3270" : [ - "AF241410" - ], - "Sida_leaf_curl_virus_satellite_DNA_beta" : [ - "NC_009557" - ], - "Human_immunodeficiency_virus_1__04ZASK162B1" : [ - "DQ396400" - ], - "BK_polyomavirus__NAR_9" : [ - "AB365132" - ], - "West_Nile_virus__WNV_1_US_BID_V7817_2012" : [ - "KJ501533" - ], - "Dugbe_virus__IbH_11480" : [ - "AF434163" - ], - "Culex_flavivirus_NIID_21_2" : [ - "AB377213" - ], - "Human_immunodeficiency_virus_1__04ZASK159B1" : [ - "DQ011179" - ], - "Enterobacter_phage_PG7" : [ - "NC_023561" - ], - "Tomato_leaf_curl_China_virus____G18___G18" : [ - "AJ558119" - ], - "Tomato_yellow_leaf_curl_virus__AH_HF" : [ - "KC312656" - ], - "Hepatitis_B_virus__S1348_1" : [ - "FJ787459" - ], - "Human_immunodeficiency_virus_1__CTL_030" : [ - "EF514708" - ], - "Hepatitis_B_virus_279_01" : [ - "EU594410" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00057_1999_G1P_8" : [ - "JN651761", - "JN651766", - "JN651768", - "JN651762", - "JN651769", - "JN651760", - "JN651759", - "JN651764", - "JN651765", - "JN651767", - "JN651763" - ], - "Tomato_severe_rugose_virus__BR_Car223_08" : [ - "KC706622" - ], - "Vibrio_phage_VfO4K68" : [ - "NC_002363" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir_T13X_Me_06" : [ - "JF501719" - ], - "Human_papillomavirus_type_16__Z122" : [ - "HQ644299" - ], - "West_Nile_virus__WNV_1_US_BID_V4364_2008" : [ - "HM488168" - ], - "Human_immunodeficiency_virus_1__03ZAPS059MB2" : [ - "DQ445634" - ], - "Porcine_circovirus_2__PCV_Y3" : [ - "KC515003" - ], - "African_cassava_mosaic_virus__CF_CF60AB_07" : [ - "KJ887777" - ], - "Coxsackievirus_A16_Kor08_CVA16" : [ - "JX839965" - ], - "Human_respiratory_syncytial_virus__RSV_1" : [ - "GU591758" - ], - "Human_papillomavirus_type_18__Qv26861" : [ - "KC470212" - ], - "Tomato_yellow_dwarf_disease_associated_satellite_DNA_beta__Kochi" : [ - "NC_009893" - ], - "Aeropyrum_pernix_K1" : [ - "NC_000854" - ], - "Mulberry_mosaic_dwarf_associated_virus__AK2_18" : [ - "KP728254" - ], - "Tomato_rugose_yellow_leaf_curl_virus_A_U2" : [ - "NC_020257" - ], - "Tula_virus_Tula_Moravia_5286Ma_94" : [ - "Z66538", - "Z48573" - ], - "Porcine_circovirus_2__Mal011_11_Selangor" : [ - "JF690920" - ], - "Mycobacterium_bovis_AF2122_97" : [ - "NC_002945" - ], - "Seoul_virus_BjHD01_BjHD01" : [ - "AY627049", - "DQ133505" - ], - "Porcine_circovirus_2__2b_YJ__2a_CL1" : [ - "JF682794" - ], - "Rabies_virus__CO_Coyot_2010" : [ - "JQ685917" - ], - "Gorilla_smacovirus__SF4" : [ - "KP233192" - ], - "Human_mastadenovirus_D_human_ARG_arg_00101_2010_58_P58H58F58" : [ - "KF268319" - ], - "Feline_leukemia_virus" : [ - "AB060732" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4064_2008" : [ - "GU131813" - ], - "Hepatitis_B_virus__2019" : [ - "FJ386612" - ], - "Mycobacterium_phage_Sabertooth" : [ - "JX307703" - ], - "Possum_enterovirus_W1__W1" : [ - "NC_008714" - ], - "Klebsiella_pneumoniae_JM45" : [ - "NC_022083", - "NC_022078", - "NC_022082" - ], - "Human_herpesvirus_5_BE_8_2012" : [ - "KP745646" - ], - "Human_immunodeficiency_virus_1__04ZASK139B1" : [ - "AY878072" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2197_2001" : [ - "FJ639767" - ], - "Hepatitis_B_virus__SSC114" : [ - "KJ598693" - ], - "Hepatitis_B_virus_1134_20a" : [ - "KR014011" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V327_2001" : [ - "EU155292" - ], - "Squash_leaf_curl_virus__PA1_J244" : [ - "KM595217" - ], - "Pepino_mosaic_virus__VFBC12_04" : [ - "JX866665" - ], - "Hepatitis_B_virus__MY843805" : [ - "KJ803793" - ], - "Gokushovirinae_Fen672_31__Fen672_31" : [ - "NC_027642" - ], - "Rabies_virus__A02_2971" : [ - "JQ685952" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_PE_B51_2008" : [ - "GU936287" - ], - "Japanese_encephalitis_virus__BL06_50" : [ - "JF706270" - ], - "Hepatitis_B_virus__KOR47HCC" : [ - "GQ475351" - ], - "Rift_Valley_fever_virus_SA_75" : [ - "DQ380189", - "DQ380175", - "DQ375428" - ], - "Hepatitis_B_virus__919076" : [ - "JN040825" - ], - "Hepatitis_B_virus_HBV_P56" : [ - "KC510659" - ], - "Human_papillomavirus_type_6__43" : [ - "HG793851" - ], - "Newcastle_disease_virus_ZJ1" : [ - "AF431744" - ], - "West_Nile_virus__WNV_1_US_BID_V4369_2004" : [ - "HM488191" - ], - "Goatpox_virus_Pellor_Pellor" : [ - "NC_004003" - ], - "Pseudomonas_phage_PMG1" : [ - "NC_016765" - ], - "HBV_genotype_C__pBS_HBVC2_0500005_1_3G_wt_wt" : [ - "AB819618" - ], - "Foot_and_mouth_disease_virus___type_A_Malaysia_97" : [ - "KJ933864" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_201822_2013" : [ - "KM452735" - ], - "Pseudomonas_phage_vB_PaeM_C2_10_Ab02_Ab02" : [ - "LN610572" - ], - "Porcine_epidemic_diarrhea_virus_USA_Ohio126_2014" : [ - "KJ645702" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10BY_GD" : [ - "JX192636" - ], - "Enterobacteria_phage_WA4" : [ - "DQ079893" - ], - "Enterobacteria_phage_P22_MSU" : [ - "AB362338" - ], - "WU_Polyomavirus__O3" : [ - "GU296408" - ], - "Murray_Valley_encephalitis_virus__MVE_1_51_CD8" : [ - "KC852192" - ], - "West_Nile_virus__WNV_1_US_BID_V6648_2003" : [ - "KJ501392" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_H1__H1" : [ - "JN986808" - ], - "JC_polyomavirus__PH_7" : [ - "AB113140" - ], - "Actinobacillus_pleuropneumoniae_serovar_7_AP76" : [ - "NC_010940", - "NC_010939", - "NC_010942", - "NC_010941" - ], - "Hepatitis_B_virus__patient_234" : [ - "DQ993694" - ], - "Porcine_circovirus_type_2_B_SNUVR140004" : [ - "KJ437506" - ], - "Avian_orthoreovirus" : [ - "HM222971", - "HM222976", - "HM222974", - "HM222975", - "HM222972", - "HM222979", - "HM222973", - "HM222978", - "HM222977", - "HM222980" - ], - "Flavobacterium_phage_FCL_2" : [ - "NC_027125" - ], - "Miscanthus_streak_virus____Japan_98" : [ - "MSTGEN" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_111268" : [ - "KJ425491" - ], - "Coxsackievirus_A24_CA24v_Okinawa_5_2011" : [ - "AB769152" - ], - "Hepatitis_B_virus__D_KI012P_2004" : [ - "HQ700533" - ], - "Tomato_yellow_leaf_curl_virus__SDSG_XC" : [ - "KC999851" - ], - "Human_immunodeficiency_virus_1__pXJDC6291_3_7" : [ - "KC503855" - ], - "American_grass_carp_reovirus_AGCRV_PB01_155" : [ - "NC_010586", - "NC_010585", - "NC_010590", - "NC_010592", - "NC_010584", - "NC_010587", - "NC_010593", - "NC_010591", - "NC_010589", - "NC_010588", - "NC_010594" - ], - "Feline_immunodeficiency_virus__27B" : [ - "EU117991" - ], - "Reticuloendotheliosis_virus_chicken_3337_05" : [ - "FJ439120" - ], - "Dengue_virus_1__DENV_1_VN_BID_V993_2006" : [ - "EU482537" - ], - "Coxsackievirus_A16_SZ_HK08_3" : [ - "GQ279368" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXwn06_81c" : [ - "HQ233604" - ], - "SARS_coronavirus__CFB_SZ_94_03" : [ - "AY545919" - ], - "Human_immunodeficiency_virus_1__ES11_2004_culture" : [ - "KC935957" - ], - "Soybean_mosaic_virus_G2" : [ - "S42280" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_LIBR0073" : [ - "KR006944" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4742_2009" : [ - "HQ541796" - ], - "Human_parechovirus_6_NII561_2000" : [ - "AB252582" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_TD_TP" : [ - "KP998422" - ], - "Human_herpesvirus_5_BE_21_2011" : [ - "KP745702" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4316_1" : [ - "KR105231" - ], - "Newcastle_disease_virus__Chicken_China_Shandong_01_2012" : [ - "KC542912" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLI1323_2010" : [ - "KJ627245" - ], - "Human_papillomavirus_type_18__CU10" : [ - "GQ180786" - ], - "Zaire_ebolavirus__H_sapiens_tc_GIN_14_WPG_C07" : [ - "KP096421" - ], - "West_Nile_virus__BSL6_09" : [ - "JF957177" - ], - "East_African_cassava_mosaic_virus__KE_mtw_CMD_MI96_12" : [ - "HG530114" - ], - "Bean_yellow_mosaic_virus__LPexFB" : [ - "HG970868" - ], - "Mungbean_yellow_mosaic_India_virus_Indonesia__Brebes_4" : [ - "JN368439", - "JN368447" - ], - "Zymomonas_mobilis_pomaceae_ATCC_29192" : [ - "NC_015716", - "NC_015709", - "NC_015715" - ], - "Hepatitis_B_virus__GSD_56" : [ - "HM750140" - ], - "Barley_yellow_dwarf_virus_PAV__011" : [ - "EF521831" - ], - "Hepatitis_B_virus__HBV_9T" : [ - "EU564820" - ], - "Human_respiratory_syncytial_virus_A_Chongqing_13_73_11_or" : [ - "KC978856" - ], - "Trichomonas_vaginalis_virus_3_TVV3_OC5" : [ - "HQ607525" - ], - "Human_rhinovirus_A90_ATCC_VR_1291" : [ - "FJ445167" - ], - "Porcine_circovirus_2_Fd5" : [ - "AY321997" - ], - "Hepatitis_B_virus__260" : [ - "JQ040141" - ], - "Mannheimia_haemolytica_M42548" : [ - "NC_021082" - ], - "Euphorbia_yellow_mosaic_virus__EuYMV__BR_GO_Luz768a_03" : [ - "JX415184" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1990_15_1" : [ - "Z75878" - ], - "Human_immunodeficiency_virus_1__11MY1RJ704" : [ - "KC522033" - ], - "Human_immunodeficiency_virus_1__BREPM108" : [ - "AY771589" - ], - "Hepatitis_B_virus_34028" : [ - "FN545829" - ], - "Mycobacterium_phage_Trouble" : [ - "NC_022062" - ], - "Human_parvovirus_B19__KU5" : [ - "KM393166" - ], - "Hepatitis_B_virus__FMD74" : [ - "GU332695" - ], - "Mycobacterium_phage_DS6A_DS6A" : [ - "NC_023744" - ], - "Hepatitis_B_virus__PhCH09" : [ - "AB241115" - ], - "Bluetongue_virus" : [ - "NC_006024", - "BTVS2B", - "GQ506515", - "E00901", - "X53693", - "NC_006025", - "NC_006014", - "GQ506514", - "GQ506513", - "AY775160", - "GQ506508", - "NC_006010", - "AJ631216", - "GQ506511", - "AY775152", - "AJ631217", - "X06464", - "AY775164", - "BTVGP5PRO", - "AJ631215", - "BTVS2C", - "NC_006023", - "NC_006013", - "NC_006015", - "BTVS2D", - "BTVS2A", - "X62283", - "GQ506509", - "GQ506510", - "A22393", - "GQ506506", - "AJ631214", - "X54308", - "GQ506507", - "X13374", - "GQ506512" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4236_2006" : [ - "HM181938" - ], - "Hepatitis_B_virus_1149_5" : [ - "KR013832" - ], - "Pepino_mosaic_virus__Chi2_9" : [ - "HG313805" - ], - "Salmonella_enterica_serovar_Javiana_CFSAN001992" : [ - "NC_020308", - "NC_020306", - "NC_020307" - ], - "Streptococcus_salivarius_CCHSS3" : [ - "NC_015760" - ], - "Human_papillomavirus_type_6__117" : [ - "HG793925" - ], - "Youcai_mosaic_virus__W41" : [ - "KF137561" - ], - "Newcastle_disease_virus__LC12" : [ - "KF771883" - ], - "JC_polyomavirus__CW_11" : [ - "AB198943" - ], - "Petunia_vein_clearing_virus" : [ - "AY228106", - "NC_001839" - ], - "Dengue_virus_2__DENV_2_PE_IQA_1995_2010" : [ - "KC294219" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_66U91_1966_IE" : [ - "KC344447" - ], - "Enterococcus_phage_EFC_1" : [ - "NC_025453" - ], - "Infectious_bronchitis_virus_Mass41_1979" : [ - "FJ904722" - ], - "Human_papillomavirus_type_52__Qv23939" : [ - "HQ537733" - ], - "Human_parechovirus_1__K150_93" : [ - "GQ183023" - ], - "HBV_genotype_F2__Mart_B26" : [ - "HE974369" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1876_2007" : [ - "KF955458" - ], - "Hepatitis_B_virus__I162" : [ - "FJ562290" - ], - "Turnip_mosaic_virus__DNK4" : [ - "AB701704" - ], - "Helicobasidium_mompa_endornavirus_1" : [ - "NC_013447" - ], - "Barley_stripe_mosaic_virus_Type" : [ - "BSU13918" - ], - "Macroptilium_yellow_spot_virus__BR_Sti27_11" : [ - "KJ939884" - ], - "Norwalk_like_virus__Saitama_U201" : [ - "AB039782" - ], - "Human_parechovirus_1_BJ_37359" : [ - "KJ659491" - ], - "Calicivirus_pig_F15_10_CAN_15_10" : [ - "FJ355929" - ], - "Porcine_stool_associated_circular_virus_7__EP2_A" : [ - "NC_024773" - ], - "Wheat_dwarf_virus____Hebei_Shijiazhuang___HBSJZ06_5" : [ - "EF536865" - ], - "Hepatitis_B_virus__HBV_Chi35" : [ - "AB073823" - ], - "Human_rotavirus_A_BD524" : [ - "AJ400634" - ], - "Plum_pox_virus_PPV_D_Ha1" : [ - "AB576048" - ], - "Vesicular_stomatitis_Indiana_virus_98COE" : [ - "AF473864" - ], - "Venezuelan_equine_encephalitis_virus_Tonate_CaAn_410d" : [ - "AF075254" - ], - "Hepatitis_B_virus__WHABR2" : [ - "JN257197" - ], - "Newcastle_disease_virus_pigeon_Shanghai_215_2011" : [ - "KM374060" - ], - "Human_papillomavirus_type_35__BF314" : [ - "HQ537725" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5P20_2009_c5P20" : [ - "KF514414" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8314_2001" : [ - "KJ627648" - ], - "Equid_herpesvirus_1_89c25" : [ - "KF644579" - ], - "Hepatitis_B_virus_34015" : [ - "FN545828" - ], - "Bovine_viral_diarrhea_virus_2__SH2210_14" : [ - "HG426492" - ], - "Hepatitis_E_virus__JBOAR135_Shiz09" : [ - "AB573435" - ], - "Human_immunodeficiency_virus_1__5084_84" : [ - "AY835765" - ], - "Bovine_respiratory_coronavirus_AH187_AH187" : [ - "NC_012948" - ], - "Staphylococcus_phage_Ipla5" : [ - "NC_018281" - ], - "Simian_adenovirus_3_ATCC_VR_1449" : [ - "NC_006144" - ], - "Clostridium_phage_phi8074_B1" : [ - "NC_019924" - ], - "Human_rhinovirus_A47_ATCC_VR_1157" : [ - "FJ445133" - ], - "Vibrio_harveyi_ATCC_BAA_1116" : [ - "NC_009784", - "NC_009783", - "NC_009777" - ], - "Porcine_epidemic_diarrhea_virus_CH_S" : [ - "JN547228" - ], - "Hepatitis_B_virus__NB255M_m255" : [ - "KJ173308" - ], - "Cherry_mottle_leaf_virus_peach_wart_95CI215" : [ - "KC207480" - ], - "Corallococcus_coralloides_DSM_2259" : [ - "NC_017030" - ], - "Hepatitis_B_virus__FEN53" : [ - "JF440005" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1983_2001" : [ - "FJ639672" - ], - "Torque_teno_mini_virus_8__PB4TL" : [ - "NC_014068" - ], - "Mulberry_vein_banding_virus__YZ_4" : [ - "KM819707" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2257_2006" : [ - "FJ639817" - ], - "Dengue_virus_1__P72_1244" : [ - "EF457905" - ], - "Porcine_stool_associated_circular_virus_3__4L13" : [ - "KC545228" - ], - "Dengue_virus_4__DENV_4_CO_BID_V3407_2001" : [ - "GQ868580" - ], - "Hepatitis_C_virus__QC155" : [ - "FJ839869" - ], - "Hepatitis_delta_virus_dTk13_dTk13" : [ - "AM779593" - ], - "Sugarcane_bacilliform_virus__BataviaD" : [ - "NC_013455" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4045_2008" : [ - "JF937613" - ], - "Tomato_yellow_leaf_curl_virus__3181291" : [ - "FJ439569" - ], - "Human_respiratory_syncytial_virus__Kilifi_9465_4_RSVB_2012" : [ - "KP317923" - ], - "Porcine_enterovirus_9__Ch_ah_f1" : [ - "HM131607" - ], - "Hepatitis_B_virus__8003" : [ - "KJ470891" - ], - "Tobacco_vein_banding_mosaic_virus__TVBMV_SDZC1" : [ - "HQ396793" - ], - "Dengue_virus_3_GZ2D3" : [ - "JN662391" - ], - "Human_papillomavirus_type_120__CL3767" : [ - "JQ963484" - ], - "Hepatitis_B_virus__GU1013" : [ - "GQ161763" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXM100" : [ - "GQ475526" - ], - "Desmodus_rotundus_endogenous_retrovirus__216" : [ - "KP175581" - ], - "Spodoptera_exigua_multiple_nucleopolyhedrovirus__VT_SeOx4" : [ - "HG425345" - ], - "Cotton_leaf_curl_Gezira_alphasatellite_Cameroon_Njo5_OY11" : [ - "HE858192" - ], - "Norovirus_Hu_GII_4_Hokkaido1_2007_JP_Hu_GII_4_Hokkaido1_2007_JP" : [ - "AB541260" - ], - "SARS_coronavirus_PC4_227" : [ - "AY613950" - ], - "Hepatitis_B_virus__Leb11" : [ - "JN642128" - ], - "Erectites_yellow_mosaic_virus_satellite_DNA_beta" : [ - "NC_009559" - ], - "Watermelon_chlorotic_stunt_virus__PA1_J58" : [ - "KM820275" - ], - "Burkholderia_KJ006" : [ - "NC_017920", - "NC_017922", - "NC_017921", - "NC_017923" - ], - "West_Nile_virus__WNV_1_US_BID_V6436_2002" : [ - "KJ501298" - ], - "Porcine_circovirus_1_HRB_09" : [ - "GQ449671" - ], - "Apple_stem_pitting_virus__apple_YL" : [ - "KJ522472" - ], - "Porcine_parvovirus_NADL_2_M123" : [ - "KF913351" - ], - "SARS_coronavirus_HZS2_D__HZS2_D" : [ - "AY394989" - ], - "Human_immunodeficiency_virus_2__03CM_510_03" : [ - "EU028345" - ], - "Barley_yellow_dwarf_virus_GAV__30W" : [ - "AY610953" - ], - "Porcine_circovirus_2_Y_2" : [ - "KF027492" - ], - "Maize_streak_virus__MSV_A_GH_gh104_Jam_2010" : [ - "KJ699304" - ], - "Sweet_potato_leaf_curl_Uganda_virus__Uganda_Kampala_2008___Uganda_Kampala_2008" : [ - "NC_014968" - ], - "Human_papillomavirus_type_35__QV29782" : [ - "HQ537729" - ], - "Enterobacteria_phage_vB_EcoS_ACG_M12_vB_EcoS_MSHS1210" : [ - "NC_019404" - ], - "West_Nile_virus__WNV_1_US_BID_V7442_2011" : [ - "KJ501150" - ], - "Cucumber_mosaic_virus_satellite_RNA_PG" : [ - "X86426" - ], - "Hepatitis_B_virus__C_KI178P_2004" : [ - "HQ700505" - ], - "Torque_teno_virus__3h" : [ - "AY823989" - ], - "Idiomarina_loihiensis_L2TR" : [ - "NC_006512" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V367_2006" : [ - "EU155256" - ], - "Hepatitis_B_virus__cur1066" : [ - "KC774240" - ], - "Human_papillomavirus_type_68a__Plasmid_952" : [ - "DQ080079" - ], - "Banana_bunchy_top_virus__GH1" : [ - "FJ859748", - "FJ859722", - "FJ859735" - ], - "Staphylococcus_phage_YMC_09_04_R1988" : [ - "NC_022758" - ], - "Kokobera_virus_AusMRM_32" : [ - "NC_009029" - ], - "Human_metapneumovirus_HMPV_AUS_172837900_2004_A" : [ - "KC403983" - ], - "Porcine_circovirus_2_SD_RZ" : [ - "KJ511873" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__09HUB7" : [ - "GU168567" - ], - "Hepatitis_B_virus__30Y12HCC" : [ - "AB014389" - ], - "Maize_streak_virus__UMask_18" : [ - "EF547068" - ], - "West_Nile_virus__WNV_1_US_BID_V4233_2006" : [ - "HM488159" - ], - "Hepatitis_B_virus__Ag46" : [ - "KJ843206" - ], - "Norovirus_Hu_GII_4_Toyama1_2007_JP_Hu_GII_4_Toyama1_2007_JP" : [ - "AB541354" - ], - "Enterobacteria_phage_phiX174__250B55" : [ - "EF380029" - ], - "Feline_calicivirus__21749" : [ - "JX519213" - ], - "Coxsackievirus_B3_MKP" : [ - "KJ025083" - ], - "Avian_orthoreovirus_Pycno_1" : [ - "AB914764" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1990_16_1" : [ - "Z75877" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5731_1" : [ - "KR105320" - ], - "Dengue_virus_2__DENV_2_US_BID_V1085_1994" : [ - "EU529700" - ], - "Japanese_encephalitis_virus_JaOAr73050" : [ - "AB569987" - ], - "Porcine_epidemic_diarrhea_virus_LZW_CPGEN_20140427" : [ - "KJ777678" - ], - "Hepatitis_C_virus__isolate_VN004___VN004" : [ - "D84265" - ], - "Changuinola_virus__CGLV_BE_AR_54342" : [ - "KF690599", - "KF690595", - "KF690597", - "KF690594", - "KF690598", - "KF690596", - "KF690593", - "KF690591", - "KF690600" - ], - "Banana_bunchy_top_virus__HaiKou_1" : [ - "GU559704" - ], - "Maize_white_line_mosaic_virus" : [ - "NC_009533" - ], - "JC_polyomavirus__JCV135_13" : [ - "JF424844" - ], - "SFTS_virus_HNXY_130_HNXY_130" : [ - "KC292342", - "KC292289", - "KC292316" - ], - "BK_polyomavirus__MT_clone_54" : [ - "AB485705" - ], - "Hepatitis_B_virus__A5_50059" : [ - "FJ692605" - ], - "Hepatitis_B_virus__NH005M_e50" : [ - "KJ173312" - ], - "Human_papillomavirus_type_6__CAC231" : [ - "FR751336" - ], - "Duck_circovirus__D11_JW_001" : [ - "JQ740360" - ], - "Porcine_epidemic_diarrhea_virus_MEX_124_2014" : [ - "KJ645700" - ], - "Mumps_virus_JL1__Jeryl_Lynn_major_component" : [ - "FJ211586" - ], - "Tick_borne_encephalitis_virus_Primorye_94" : [ - "EU816454" - ], - "Dengue_virus_3__HN_2013_110" : [ - "KJ622199" - ], - "Bean_common_mosaic_virus__1755a" : [ - "KT175570" - ], - "Hepatitis_B_virus_G4_27241" : [ - "AF090841" - ], - "Ornithogalum_mosaic_virus__KP" : [ - "NC_019409" - ], - "Tomato_yellow_leaf_curl_virus_SDLW" : [ - "JN990928" - ], - "Maize_streak_virus__MSV_A_NG_ng4_Zar_2011" : [ - "KJ437661" - ], - "Sweet_potato_leaf_curl_Sao_Paulo_virus_Sao_Paulo_SPLCSPV__BR_AlvM_09" : [ - "NC_025681" - ], - "Rosellinia_necatrix_partitivirus_1_W8" : [ - "NC_007538", - "NC_007537" - ], - "Turnip_mosaic_virus_C1" : [ - "AF394601" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2233_2004" : [ - "FJ639800" - ], - "West_Nile_virus__WNV_1_US_BID_V4891_2006" : [ - "HQ671728" - ], - "Rotavirus_A__RVA_Human_wt_DEN_Hv2695987_2010_G9P_8" : [ - "KP013447" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1534_2007" : [ - "EU677161" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_126_2001" : [ - "DQ404179" - ], - "Dengue_virus_1_D1_SG_05K4609DK1_2005" : [ - "EU081274" - ], - "Dengue_virus_2__MKS_2024" : [ - "KC762663" - ], - "Dengue_virus_4__DENV_4_VE_BID_V1154_2007" : [ - "GQ868643" - ], - "Monkeypox_virus_DRC_Yandongi_1985" : [ - "KC257460" - ], - "Hepatitis_C_virus__QC331" : [ - "JF735119" - ], - "Tomato_mottle_Taino_virus" : [ - "NC_001917", - "NC_001828" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4422_1" : [ - "KR105250" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V138_1989" : [ - "EU482849" - ], - "Porcine_circovirus_2__TY1" : [ - "HQ202949" - ], - "Staphylococcus_phage_StB20" : [ - "NC_019915" - ], - "Porcine_epidemic_diarrhea_virus__KUIDL_PED_2014_007" : [ - "KJ588062" - ], - "Hepatitis_B_virus__3274v3" : [ - "KF922431" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_29__AHEaCV_29_NZ_1590TU_2012" : [ - "NC_026631" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_96E_128_01_1996" : [ - "KP258726" - ], - "Borrelia_hermsii_DAH" : [ - "NT_187138", - "NT_187141", - "NT_187143", - "NT_187139", - "NT_187137", - "NT_187136", - "NC_010673", - "NT_187145", - "NT_187142", - "NT_187144", - "NT_187140" - ], - "Human_papillomavirus_type_11" : [ - "PPH11", - "FR872717" - ], - "Tomato_spotted_wilt_virus__TSWV_4" : [ - "KC261947", - "KC261949", - "KC261948" - ], - "West_Nile_virus__WNV_1_US_BID_V6210_2008" : [ - "KJ501259" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2281_2001" : [ - "FJ687437" - ], - "Porcine_circovirus_2_BH5" : [ - "KM245558" - ], - "Human_rotavirus_A_RVA_Human_tc_CHN_L148_2004_G3P_8__L148" : [ - "KF371676", - "KF371681", - "KF371679", - "KF371682", - "KF371674", - "KF371673", - "KF371675", - "KF371677", - "KF371678" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_245_2011" : [ - "KJ686175" - ], - "Cotton_leaf_curl_Burewala_virus__GMT02" : [ - "HE985227" - ], - "Nodamura_virus" : [ - "NC_002691", - "X15961", - "NC_002690" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V4266_2008" : [ - "GU131928" - ], - "Porcine_circovirus_2__WB_H_7" : [ - "AY874169" - ], - "Human_papillomavirus_type_71__Qv21030" : [ - "AY330620" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2695_2006" : [ - "FJ882521" - ], - "Porcine_deltacoronavirus__CHN_HB_2014" : [ - "KP757891" - ], - "Human_immunodeficiency_virus_1__PS2008_Day182" : [ - "DQ676875" - ], - "Peanut_clump_virus__87_TGTA2" : [ - "NC_003668" - ], - "Dengue_virus_2__DENV_2_VN_BID_V764_2003" : [ - "EU482786" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_768" : [ - "KR534588" - ], - "Rabies_virus__JX09_18" : [ - "KF726852" - ], - "Saccharomyces_cerevisiae_killer_virus_M1_TF325" : [ - "NC_001782" - ], - "Porcine_circovirus_2_GXGG" : [ - "EF675236" - ], - "Duck_circovirus__D11_JW_002" : [ - "JQ740361" - ], - "Foot_and_mouth_disease_virus___type_A_A5_Westerwald_a5westerwald_iso73" : [ - "AY593781" - ], - "Tobacco_necrosis_virus_D__TNV_DP" : [ - "FJ666328" - ], - "Human_immunodeficiency_virus_1__HS123" : [ - "AY945709" - ], - "Hepatitis_C_virus_subtype_3a_HCV_TYMM" : [ - "AB792683" - ], - "Hepatitis_B_virus_574_13" : [ - "KR013981" - ], - "West_Nile_virus__WNV_1_US_BID_V4351_2003" : [ - "HM488187" - ], - "SARS_coronavirus_MA15_MA15_d2ym2" : [ - "JF292907" - ], - "Hepatitis_B_virus__A100" : [ - "HM363588" - ], - "Columbid_circovirus__Bel_20" : [ - "DQ915958" - ], - "Hepatitis_B_virus__D33K_1" : [ - "EU717213" - ], - "Wissadula_golden_mosaic_St_Thomas_Virus" : [ - "GQ355487", - "GQ355488" - ], - "Selenomonas_ruminantium_lactilytica_TAM6421" : [ - "NC_017070", - "NC_017071", - "NC_017076", - "NC_017072", - "NC_017068", - "NC_017069", - "NC_017073", - "NC_017077", - "NC_017078", - "NC_017074" - ], - "Beet_curly_top_Iran_virus__IR_Neg_B31K_Sug_08" : [ - "JQ707947" - ], - "Banana_bunchy_top_virus__IG64" : [ - "AB186928", - "AB186925" - ], - "Rotavirus_A__RVA_Human_wt_DEN_L23141619_2012_G9P_8" : [ - "KP013467" - ], - "Narcissus_common_latent_virus__Zhangzhou" : [ - "NC_008266" - ], - "Dengue_virus_1__MKS_0486" : [ - "KC762653" - ], - "Hepatitis_B_virus__S2b" : [ - "KF584164" - ], - "Tomato_leaf_curl_New_Delhi_virus__TLCNDV_UN" : [ - "HG932559" - ], - "Human_immunodeficiency_virus_1__D_ZA_84_R2" : [ - "AY773338" - ], - "Japanese_encephalitis_virus_Sw_Mie_51_2006" : [ - "AB698905" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4252_2007" : [ - "HM181951" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_Gangwon_Korea_2012" : [ - "KF358692", - "KF358693", - "KF358691" - ], - "Crimean_Congo_hemorrhagic_fever_virus__SPU_497_88" : [ - "KJ682808", - "KJ682820", - "KJ682804" - ], - "Ageratum_yellow_vein_betasatellite__F11" : [ - "FJ869909" - ], - "Zucchini_yellow_mosaic_virus__8th" : [ - "JN192421" - ], - "Hepatitis_E_virus__swJ12_4" : [ - "AB248522" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B2J2" : [ - "JN053447" - ], - "HBV_genotype_B__P2_121214" : [ - "AB981583" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Shaanxi_2" : [ - "HQ401282" - ], - "Human_pegivirus_genotype_2__H40048" : [ - "KP259281" - ], - "Duck_hepatitis_B_virus" : [ - "DQ276978", - "HPUCGE", - "AF505512", - "HPUS5CG", - "HPUS31CG", - "HPUGA", - "AF404406", - "AY294656", - "HPUCGD" - ], - "Felis_domesticus_papillomavirus_type_1" : [ - "NC_004765" - ], - "Chrysanthemum_virus_B__Punjab" : [ - "NC_009087" - ], - "Methanosaeta_concilii_GP6" : [ - "NC_015416", - "NC_015430" - ], - "Human_poliovirus_1__DOR00024" : [ - "AF405687" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ29AQ1_2009" : [ - "JF909211" - ], - "Duck_adenovirus_1__D11_JW_012" : [ - "KJ452170" - ], - "JC_polyomavirus__C2" : [ - "AB048549" - ], - "Rotavirus_A_pheasant_tc_GER_10V0112H5_2010_G23P_37" : [ - "JX204814", - "JX204815", - "JX204813", - "JX204811", - "JX204818", - "JX204812", - "JX204816" - ], - "Zucchini_yellow_mosaic_virus_KR_PA" : [ - "AY278998" - ], - "Klebsiella_phage_F19_Klebsiella_pneumoniae" : [ - "NC_023567" - ], - "South_African_cassava_mosaic_virus__MG_MG341A1_10" : [ - "KJ887992" - ], - "Dengue_virus_2__DENV_2_VN_BID_V707_2006" : [ - "EU482644" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus__P6" : [ - "KF446674", - "KF446673" - ], - "Anaconda_paramyxovirus__1201RN003" : [ - "KJ956405" - ], - "Escherichia_phage_ECBP1" : [ - "NC_018854" - ], - "Hepatitis_B_virus_C_1858_ea6" : [ - "AF223959" - ], - "Human_immunodeficiency_virus_1__01ZATM45" : [ - "AY228557" - ], - "Sweet_potato_leaf_curl_Korean_virus__J_508" : [ - "FJ560719" - ], - "Human_immunodeficiency_virus_1__CANC10FULL" : [ - "AY779557" - ], - "BK_polyomavirus__SJH_LG_152" : [ - "JN192431" - ], - "West_Nile_virus__WNV_USA_BID_G15497" : [ - "JX503088" - ], - "Bunyamwera_virus" : [ - "AF325122", - "NC_001926", - "NC_001925", - "NC_001927" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_MP5_09" : [ - "HQ393467" - ], - "Hepatitis_B_virus_574_14" : [ - "KR013804" - ], - "Dengue_virus_3__PAR_DENV3_5532_07" : [ - "HQ235027" - ], - "Dengue_virus_2__DENV_2_US_BID_V851_1990" : [ - "EU482590" - ], - "Dengue_virus_3_KJ30i" : [ - "AY858042" - ], - "Hepatitis_E_virus__wbJOY_06" : [ - "AB602441" - ], - "Rabies_virus_BR_BAT34" : [ - "AB608731" - ], - "Human_coronavirus_HKU1_N5P8" : [ - "DQ339101" - ], - "Mesta_yellow_vein_mosaic_virus__India_Barrackpore_Leaf_Curl_2007" : [ - "FJ345398" - ], - "Soybean_mosaic_virus_4547_CHN_2004" : [ - "HQ396725" - ], - "Tomato_yellow_leaf_curl_betasatellite__Al_Batinah_1" : [ - "NC_010126" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_367_2012" : [ - "KP308450" - ], - "Broad_bean_necrosis_virus" : [ - "NC_004424", - "NC_004425", - "NC_004423" - ], - "Ageratum_yellow_vein_China_virus__NN_1" : [ - "JQ804985" - ], - "Enterovirus_A71__A2011125" : [ - "KF134486" - ], - "Pseudomonas_phage_F8" : [ - "NC_007810" - ], - "Cotton_leaf_curl_virus_betasatellite__Kashmir_1" : [ - "LN610993" - ], - "Hepatitis_B_virus_ayw4_hb321" : [ - "Z35716" - ], - "Tomato_yellow_leaf_curl_China_virus__SC44" : [ - "KC189893" - ], - "Clostridium_phage_phiMMP04" : [ - "NC_019422" - ], - "Hepatitis_B_virus__WHFRJ1" : [ - "JN257176" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_MEX_63Z1_1963_IE" : [ - "KC344431" - ], - "Bluetongue_virus_4__IAH_SPA2003_01" : [ - "AJ783908", - "AJ783910" - ], - "Hantavirus_Z10_Z10" : [ - "NC_006435", - "NC_006433" - ], - "Hepatitis_B_virus__919042" : [ - "JN040801" - ], - "Grapevine_leafroll_associated_virus_3_NY1" : [ - "NC_004667" - ], - "Proteus_mirabilis_HI4320" : [ - "NC_010554", - "NC_010555" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4221_1" : [ - "KR105219" - ], - "Hepatitis_B_virus__5780" : [ - "DQ020003" - ], - "Mycobacterium_MCS" : [ - "NC_008147", - "NC_008146" - ], - "Human_respiratory_syncytial_virus_B1" : [ - "AF013255", - "NC_001781" - ], - "Sewage_associated_circular_DNA_molecule__SaCM_7_NZ_BS3510_2012" : [ - "KM877829" - ], - "Soybean_mosaic_virus__XFQ012" : [ - "KP710875" - ], - "Hepatitis_C_virus_subtype_4g__HCV_4g_GB_BID_G1252" : [ - "JX227963" - ], - "Enterovirus_A71_EV71_Fuyang_Anhui_P_R_C_17_08_2" : [ - "EU703813" - ], - "Human_rotavirus_A__A64" : [ - "X63156" - ], - "Human_parainfluenza_virus_3_HPIV3_MEX_1526_2005" : [ - "KF530234" - ], - "Hepatitis_B_virus__262" : [ - "JQ040142" - ], - "Hepatitis_B_virus__SLC113" : [ - "KJ598759" - ], - "Synechococcus_phage_ACG_2014e__Syn7803US33" : [ - "KJ019094" - ], - "Human_poliovirus_2__P2S_Mog66_4__21043" : [ - "AY278551" - ], - "Dengue_virus_2__DENV_2_NI_BID_V581_2006" : [ - "EU482693" - ], - "Desulfovibrio_vulgaris_DP4" : [ - "NC_008741", - "NC_008751" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HENAN_XINX" : [ - "KF611905" - ], - "Yersinia_pestis_KIM_10" : [ - "NC_004088", - "NC_004838" - ], - "Rickettsia_rickettsii_Iowa" : [ - "NC_010263" - ], - "Japanese_encephalitis_virus_T1P1" : [ - "AF254453" - ], - "Clostera_anastomosis_granulovirus__CaLGV_Henan" : [ - "NC_022646" - ], - "Rotavirus_A_RVA_Human_wt_USA_DC5387_1991_G1P_8" : [ - "KC580551", - "KC580554", - "KC580556" - ], - "Israeli_acute_paralysis_virus" : [ - "EU224279", - "EU224280", - "NC_009025", - "EU218534" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1831_2007" : [ - "FJ547061" - ], - "Helicoverpa_armigera_nucleopolyhedrovirus__C1" : [ - "NC_003094" - ], - "Newbury_agent_1" : [ - "NC_007916" - ], - "Mycobacterium_canettii_CIPT_140070010" : [ - "NC_019951" - ], - "SARS_coronavirus_PUMC02__PUMC02" : [ - "AY357075" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1974_2008" : [ - "FJ410286" - ], - "Streptococcus_pneumoniae_SPN994039" : [ - "NC_021005" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_R1604_2011_G3P_8__R1604" : [ - "KF371977", - "KF371986", - "KF371983", - "KF371980", - "KF371985", - "KF371979", - "KF371981", - "KF371982", - "KF371978" - ], - "Apple_stem_grooving_virus__ASGV_CHN" : [ - "JQ308181" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V322_2002" : [ - "EU155288" - ], - "Caulobacter_segnis_ATCC_21756" : [ - "NC_014100" - ], - "Human_rhinovirus_A15" : [ - "DQ473493" - ], - "Hepatitis_B_virus__UK3" : [ - "AB219531" - ], - "Clavibacter_michiganensis_NCPPB_382" : [ - "NC_009478", - "NC_009480", - "NC_009479" - ], - "Seoul_virus_CSG5_CSG5" : [ - "AB618112" - ], - "Simian_T_lymphotropic_virus_2_PP1664_STLV_2PP1664" : [ - "NC_001815" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1203_2007" : [ - "EU569695" - ], - "Hepatitis_B_virus__No28" : [ - "AB697506" - ], - "African_horse_sickness_virus__HS_02_75" : [ - "KP009747", - "KP009746", - "KP009741", - "KP009742", - "KP009744", - "KP009749", - "KP009743", - "KP009750", - "KP009748", - "KP009745" - ], - "Faba_bean_necrotic_yellows_virus__Lahic_12" : [ - "KC979007" - ], - "Dengue_virus_3__85469_BR_PE_02" : [ - "JX669490" - ], - "Yam_virus_X__T551" : [ - "NC_025252" - ], - "Norovirus_Hu_GII_4_CGMH02_2006_TW" : [ - "JN400600" - ], - "Hepatitis_B_virus__57_1" : [ - "AY518556" - ], - "Human_papillomavirus_type_6__73" : [ - "HG793881" - ], - "Human_herpesvirus_3_VZVi_Erfurt_GER_12_00_Z_1__243_2000" : [ - "JN704690" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__2009_02_04_06" : [ - "NC_014379" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00090_2009_G1P_8" : [ - "KC769473", - "KC769470", - "KC769466", - "KC769475", - "KC769472", - "KC769471", - "KC769467", - "KC769474" - ], - "Hepatitis_B_virus__P009_C_B135" : [ - "KJ173371" - ], - "Maize_streak_virus__MSV_A_ZA_Emp3_Ta22_2008" : [ - "HQ693409" - ], - "Hendra_virus_HeV_Australia_Bat_2009_TolgaScrub_30g" : [ - "JN255802" - ], - "Hepatitis_B_virus_HBsAg_subtype_ayw_Patient_MG__HBV_S" : [ - "X59795" - ], - "Rabies_virus__BV9901PJ" : [ - "KC171645" - ], - "Hepatitis_B_virus__PNF4661" : [ - "KF779333" - ], - "Human_immunodeficiency_virus_1_Ba_L" : [ - "AB221005" - ], - "Salmonella_phage_SE2" : [ - "NC_016763" - ], - "Bluetongue_virus_USA2010" : [ - "JQ822255", - "JQ822251", - "JQ822248", - "JQ822250", - "JQ822249", - "JQ822256", - "JQ822252", - "JQ822254", - "JQ822257", - "JQ822253" - ], - "Hepatitis_B_virus__C96" : [ - "EU859931" - ], - "Vibrio_parahaemolyticus_BB22OP" : [ - "NC_019971", - "NC_019955" - ], - "Bacillus_phage_Cherry" : [ - "NC_007457" - ], - "Hepatitis_B_virus__P28" : [ - "EU859908", - "JX898698", - "GQ477474" - ], - "Human_papillomavirus_type_37" : [ - "HPU31786" - ], - "Human_papillomavirus_type_199__KC82_SLO" : [ - "KJ913662" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V121_1992" : [ - "EU155324" - ], - "Crimean_Congo_hemorrhagic_fever_virus" : [ - "AJ538196", - "AJ538198", - "CCFSRNA", - "AJ538199", - "AJ538197" - ], - "Pseudomonas_phage_phiPsa374" : [ - "NC_023601" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7619_2009" : [ - "KJ189347" - ], - "Swan_circovirus__Sw4" : [ - "EU056310" - ], - "Cherry_virus_A" : [ - "NC_003689" - ], - "JC_polyomavirus__Ceb_16" : [ - "AB113121" - ], - "Spirochaeta_thermophila_DSM_6192" : [ - "NC_014484" - ], - "Lucerne_transient_streak_virus__LTSV_Can" : [ - "NC_001696" - ], - "Ostreid_herpesvirus_1" : [ - "NC_005881" - ], - "Human_herpesvirus_5_BE_7_2011" : [ - "KP745636" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V313_2006" : [ - "EU155377" - ], - "Mumps_virus_MuV_Mass_USA_4_10" : [ - "JX287388" - ], - "Human_immunodeficiency_virus_1__ES_X2231__B" : [ - "EU786680" - ], - "Hepatitis_B_virus__H144" : [ - "FJ349220" - ], - "Ageratum_yellow_vein_betasatellite" : [ - "NC_003403", - "AJ557441", - "AJ542497", - "KF364485", - "AJ542498" - ], - "Hepatitis_B_virus__D_NZL_TA120_1984" : [ - "HQ700483" - ], - "Epinephelus_tauvina_nervous_necrosis_virus" : [ - "AF326776" - ], - "Bovine_parainfluenza_virus_3" : [ - "NC_002161" - ], - "Human_immunodeficiency_virus_1__03ZASK061B1" : [ - "AY901968" - ], - "Plum_pox_virus_PPV_D_Ou8" : [ - "AB576064" - ], - "SARS_coronavirus_HKU_39849__HKU_39849" : [ - "AY278491" - ], - "Mycobacterium_phage_Velveteen" : [ - "NC_022060" - ], - "Japanese_encephalitis_virus__CH2195LA" : [ - "AF221499" - ], - "Norovirus_Hu_NLV_Oxford_B4S1_2002_UK__Hu_NLV_Oxford_B4S1_2002_UK" : [ - "AY587988" - ], - "Tobacco_curly_shoot_virus____SC118___SC118" : [ - "GU001879" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLU7450_2007" : [ - "KJ627327" - ], - "Homalodisca_vitripennis_reovirus__Fillmore" : [ - "NC_012539", - "NC_012541", - "NC_012538", - "NC_012540", - "NC_012537", - "NC_012543", - "NC_012546", - "NC_012542", - "NC_012544", - "NC_012545", - "NC_012536", - "NC_012535" - ], - "Middelburg_virus__ArB_8422" : [ - "NC_024887" - ], - "Cucumber_mosaic_virus_satellite_RNA__Tobtree_Tex_clon_1147" : [ - "KJ127542" - ], - "Giant_guitarfish_polyomavirus_1__UGA1" : [ - "NC_026244" - ], - "Human_immunodeficiency_virus_1__BREPM1081" : [ - "FJ195091" - ], - "Human_mastadenovirus_C_human_USA_Pitts_00109_1992_2_P2H2F2" : [ - "KF268310" - ], - "BK_polyomavirus__MT_clone_29" : [ - "AB485699" - ], - "Hepatitis_B_virus__MMA_14" : [ - "AM421542" - ], - "Tomato_yellow_leaf_curl_virus_Iran" : [ - "AJ132711" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V156_2004" : [ - "EU155226" - ], - "Tomato_spotted_wilt_virus__NC_5" : [ - "AY744488" - ], - "Measles_virus_strain_MVi_Texas_USA_4_07_MVi_Texas_USA_4_07" : [ - "JN635407" - ], - "Hepatitis_B_virus__1869" : [ - "FJ386591" - ], - "Dengue_virus_2__DENV_2_PE_FMD2303_2009" : [ - "KC294201" - ], - "Rice_tungro_spherical_virus__AP" : [ - "KC794785" - ], - "Venezuelan_equine_encephalitis_virus_71_180__600035_71_180_4_equine_Texas_1971" : [ - "AF069903" - ], - "Hepatitis_B_virus__NIR_2" : [ - "KM577664" - ], - "South_African_cassava_mosaic_virus__MG_MG19A3_06" : [ - "KJ887839" - ], - "Haemophilus_influenzae_R2866" : [ - "NC_017451" - ], - "Hepatitis_B_virus__PNF4730" : [ - "KF779336" - ], - "Vernonia_yellow_vein_Fujian_virus_betasatellite" : [ - "NC_015928" - ], - "Human_immunodeficiency_virus_1__14190_1" : [ - "DQ853448" - ], - "Phthorimaea_operculella_granulovirus" : [ - "NC_004062" - ], - "Middle_East_respiratory_syndrome_coronavirus_HCoV_EMC" : [ - "NC_019843" - ], - "Enterovirus_A71_SHZH98_pro" : [ - "KF312457" - ], - "Garlic_virus_X__SW3" : [ - "JQ807994" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX08_H53_2008_IE" : [ - "KC344451" - ], - "SFTS_virus_HNXY_170_HNXY_170" : [ - "KC292353", - "KC292304", - "KC292277" - ], - "Cellulophaga_phage_phi40_1_phi40_1" : [ - "KC821612" - ], - "Human_cyclovirus_VN_like_HC_CGS288" : [ - "KM392287" - ], - "Enterobacteria_phage_T7M" : [ - "JX421753" - ], - "Hepatitis_B_virus__HBV_VH69_1" : [ - "AB205122" - ], - "Human_coronavirus_NL63__HCoV_NL63_Haiti_1_2015" : [ - "KT266906" - ], - "Beak_and_feather_disease_virus__NCL1" : [ - "JX049200" - ], - "Coxsackievirus_A24_China_GD332_2007" : [ - "JF742579" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2498_2007" : [ - "FJ882589" - ], - "Silurus_glanis_circovirus__H5" : [ - "NC_025246" - ], - "Hepatitis_B_virus__S1632" : [ - "FJ386688" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT48B08_2008" : [ - "JF909187" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2459_2007" : [ - "FJ850099" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7083_2006" : [ - "KJ189294" - ], - "Human_herpesvirus_5_BE_34_2011" : [ - "KP745690" - ], - "Human_herpesvirus_5_CZ_1_2012" : [ - "KP745642" - ], - "Norovirus_Hu_GII_20156_2009_VNM_Hu_GII_20156_2009_VNM" : [ - "KC409256" - ], - "Duck_hepatitis_B_virus__CH5" : [ - "EU429325" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_Mahe_SC17B31_2005" : [ - "JF909160" - ], - "Duck_hepatitis_A_virus_3_C_YCZ" : [ - "GU066823" - ], - "Sunflower_chlorotic_mottle_virus_Common__C" : [ - "NC_014038" - ], - "Hepatitis_B_virus_1368_14" : [ - "KR014043" - ], - "Beak_and_feather_disease_virus__YCP20" : [ - "JQ782208" - ], - "Duvenhage_virus__94286SA" : [ - "EU293120" - ], - "BK_polyomavirus__FUJ_34" : [ - "AB369100" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4734_2009" : [ - "HQ166033" - ], - "Hepatitis_B_virus__CHH139" : [ - "JX560520" - ], - "Human_papillomavirus_type_16__Qv15351AA" : [ - "AY686582" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1996_2003" : [ - "FJ639681" - ], - "Hepatitis_B_virus__6" : [ - "EU833890", - "EU579442", - "EU595030" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9443_2013" : [ - "KJ643517" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2383_2002" : [ - "KF955473" - ], - "Hepatitis_B_virus__278" : [ - "JQ040146" - ], - "Porcine_epidemic_diarrhea_virus_PC21A" : [ - "KR078299" - ], - "Edwardsiella_tarda_EIB202" : [ - "NC_013509", - "NC_013508" - ], - "Human_immunodeficiency_virus_1__LW12_3" : [ - "HIV1U12055" - ], - "Mycoplasma_genitalium_M6282" : [ - "NC_018496" - ], - "Streptococcus_pneumoniae_A026" : [ - "NC_022655" - ], - "Newcastle_disease_virus_Du_CH_LGD_364_2011" : [ - "KM885157" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143964" : [ - "KR653242" - ], - "Wheat_dwarf_virus__GSTS07_8" : [ - "KJ536085" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V26_2003" : [ - "EU155378" - ], - "Newcastle_disease_virus__ND_03_018" : [ - "JF343538" - ], - "Hepatitis_B_virus__C63" : [ - "EU939555" - ], - "Possum_nidovirus__WPDV" : [ - "NC_026811" - ], - "Sugarcane_mosaic_virus__F2S1" : [ - "KP860935" - ], - "Porcine_circovirus_2_JT1001" : [ - "JX948781" - ], - "Bozo_virus_ArB13529_Feb_1980" : [ - "AM711132" - ], - "Pigeon_paramyxovirus_1_pi_CH_LHLJ_110822" : [ - "JX486554" - ], - "Miniopterus_polyomavirus__KY369" : [ - "NC_020069" - ], - "Potato_virus_X__GAF225_EuA" : [ - "KJ534604" - ], - "Hepatitis_B_virus__1949" : [ - "FJ386603" - ], - "Porcine_circovirus_2__255_08" : [ - "HQ591375" - ], - "Hepatitis_B_virus_HB548" : [ - "JQ027325" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_80E_030_01_1980" : [ - "KP856963" - ], - "Bdellovibrio_bacteriovorus_HD100" : [ - "NC_005363" - ], - "Enterobacteria_phage_HK629" : [ - "NC_019711" - ], - "Muscovy_duck_circovirus__TC3_2002" : [ - "DQ166837" - ], - "Dengue_virus_2__DENV_2_LK_BID_V2416_1996" : [ - "FJ882602" - ], - "Hepatitis_B_virus__SHB82" : [ - "KJ598767" - ], - "Simian_immunodeficiency_virus__r80025" : [ - "AY576480" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US7" : [ - "KJ019123" - ], - "Hepatitis_B_virus__C175" : [ - "EU939589" - ], - "Human_mastadenovirus_B_human_CHN_a238_2011_7_P7H7F7" : [ - "KF268316" - ], - "Mycobacterium_phage_Pinto" : [ - "NC_024368" - ], - "Rabies_virus_SAD1_3670_var_2" : [ - "EF206718" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK13" : [ - "KF287140" - ], - "Simian_hemorrhagic_fever_virus_LVR_42_0_M6941_A095_d5" : [ - "KM371105" - ], - "African_cassava_mosaic_virus__MG_MG86A1_06" : [ - "KJ887899" - ], - "Human_immunodeficiency_virus_1__C_96BW11_04" : [ - "AF110969" - ], - "Orf_virus_OV_IA82_ORFA" : [ - "AY386263" - ], - "Porcine_circovirus_2__NL_Control_4" : [ - "AY484410" - ], - "Salivirus_A__02394_01" : [ - "NC_012986" - ], - "Enterobacteria_phage_RB49" : [ - "NC_005066" - ], - "Enterovirus_sp___GR_2815_07" : [ - "KJ420747" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V221_2002" : [ - "EU155345" - ], - "Hepatitis_B_virus__FMD62" : [ - "GU168596" - ], - "Culex_flavivirus_Toyama75" : [ - "AB701771" - ], - "Porcine_circovirus_2_SXYNA_01" : [ - "KC800635" - ], - "Sapovirus_Mc114_Mc114" : [ - "AY237422" - ], - "Human_immunodeficiency_virus_1__04ZASK176B1" : [ - "DQ056416" - ], - "Porcine_circovirus_2__AH05" : [ - "FJ644556" - ], - "Sapovirus_Hu_Chiba_000671_1999_JP_Hu_SV_Chiba_000671_1999_JP" : [ - "AJ786349" - ], - "Squash_leaf_curl_virus__IL" : [ - "HQ184436", - "HQ184437" - ], - "French_bean_severe_leaf_curl_virus__FbSLSV_1" : [ - "NC_018453" - ], - "Banana_streak_MY_virus__BSMYV_TO213_2010" : [ - "KR014107" - ], - "Chikungunya_virus_Com125" : [ - "HQ456253" - ], - "Sewage_associated_circular_DNA_virus_30__SaCV_30_NZ_BS4120_2012" : [ - "NC_026275" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL114A" : [ - "AB985552", - "AB985320" - ], - "Human_parainfluenza_virus_3_HPIV3_MEX_2545_2006" : [ - "KF530250" - ], - "Human_immunodeficiency_virus_1__04013396_0_flF3" : [ - "FJ496082" - ], - "Strawberry_latent_ringspot_virus_satellite_RNA__NCGR_MEN_454_001" : [ - "AY860980" - ], - "Salmonella_phage_Maynard" : [ - "NC_022768" - ], - "Operophtera_brumata_reovirus" : [ - "NC_007567", - "NC_007564", - "NC_007561", - "NC_007559", - "NC_007560", - "NC_007562", - "NC_007565", - "NC_007563", - "NC_007566", - "NC_007568" - ], - "Chlorobium_limicola_DSM_245" : [ - "NC_010803" - ], - "Hepatitis_B_virus__N199v1" : [ - "KF922410" - ], - "Burkholderia_phage_phiE125" : [ - "NC_003309" - ], - "Human_immunodeficiency_virus_1__WITO_flC10" : [ - "FJ496171" - ], - "JC_polyomavirus__XA_9" : [ - "AB113145" - ], - "Tomato_yellow_leaf_curl_virus__Alb34" : [ - "FJ956705" - ], - "Hepatitis_B_virus_513_4a" : [ - "KR013959" - ], - "Hepatitis_B_virus__QHN_6" : [ - "HM750137" - ], - "Oropouche_virus__BeH759146" : [ - "KP691631", - "KP691630" - ], - "Norovirus_Hu_GII_4_Niigata4_2007_JP_Hu_GII_4_Niigata4_2007_JP" : [ - "AB541315" - ], - "Hepatitis_B_virus__NB041M_m41" : [ - "KJ173362" - ], - "Sugarcane_mosaic_virus__SCMV_M5" : [ - "KP772216" - ], - "Hepatitis_B_virus__SHB612" : [ - "KJ598727" - ], - "Human_immunodeficiency_virus_1__5160_88" : [ - "AY835763" - ], - "Pelagibacter_phage_HTVC008M" : [ - "NC_020484" - ], - "Hepatitis_B_virus__WY_SD_6" : [ - "JX429912" - ], - "Human_papillomavirus_type_18__Qv15586" : [ - "EF202147" - ], - "Hepatitis_B_virus__WHMYD2" : [ - "JN257173" - ], - "Streptococcus_dysgalactiae_equisimilis_ATCC_12394" : [ - "NC_017567" - ], - "Human_respiratory_syncytial_virus_A_WI_629_Q0284_10" : [ - "JF920053" - ], - "Chicken_astrovirus_G_4260" : [ - "NC_003790" - ], - "MW_polyomavirus__HB040C" : [ - "KC571702" - ], - "Hepatitis_C_virus__QC232" : [ - "JF735113" - ], - "Human_papillomavirus_type_33__BF266" : [ - "HQ537691" - ], - "Pseudomonas_phage_vB_PaeM_PAO1_Ab29_Ab29" : [ - "LN610588" - ], - "Human_poliovirus_3_FIN84_60212" : [ - "FJ842158" - ], - "Dengue_virus_2__DENV_2_US_BID_V1441_2005" : [ - "EU687217" - ], - "Dengue_virus_1__DENV_1_VN_BID_V936_2007" : [ - "EU482481" - ], - "Hepatitis_B_virus__928_9_2004" : [ - "DQ463795" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2397_2006" : [ - "FJ850089" - ], - "Human_respiratory_syncytial_virus__Kilifi_9465_8_RSVB_2011" : [ - "KP317945" - ], - "Hepatitis_B_virus__HBV_1758" : [ - "AF121241" - ], - "Maize_streak_virus__MSV_A_GH_gh129_Wor_2010" : [ - "KJ699318" - ], - "African_cassava_mosaic_virus__CF_CF21BN2_07" : [ - "KJ887587" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_1233_2011" : [ - "JX221008" - ], - "Hepatitis_B_virus__pt14T" : [ - "KM875427" - ], - "Hyphomicrobium_denitrificans_ATCC_51888" : [ - "NC_014313" - ], - "Papaya_leaf_curl_Guandong_virus__GD2" : [ - "NC_005844" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_449" : [ - "JQ900259" - ], - "Yellow_fever_virus_17D_Flavimun_TVX" : [ - "JN628281" - ], - "Cauliflower_mosaic_virus__TUR4" : [ - "AB863168" - ], - "Human_immunodeficiency_virus_1__BREPM13853" : [ - "DQ085875" - ], - "Human_papillomavirus_type_67__Qv30703" : [ - "HQ537784" - ], - "JC_polyomavirus__MO_1" : [ - "AB048561" - ], - "Hepatitis_C_virus_genotype_5_EUH1480" : [ - "NC_009826" - ], - "Sinorhizobium_phage_phiM19" : [ - "KR052481" - ], - "Southern_cowpea_mosaic_virus" : [ - "NC_001625" - ], - "Sewage_associated_gemycircularvirus_5__BS3963" : [ - "NC_026161" - ], - "Hepatitis_B_virus_4590_97" : [ - "EU594393" - ], - "Candidatus_Solibacter_usitatus_Ellin6076" : [ - "NC_008536" - ], - "Wheat_dwarf_virus__SXTY07_3" : [ - "KJ536119" - ], - "Dengue_virus_3__DENV_3_LK_BID_V2407_1983" : [ - "GQ199888" - ], - "Dengue_virus_2__DENV_2_US_BID_V595_2006" : [ - "EU482726" - ], - "SARS_coronavirus_BJ182a" : [ - "EU371560" - ], - "Hepatitis_E_virus__JMH_Osa04C" : [ - "AB291961" - ], - "JC_polyomavirus__GCN8" : [ - "KM225765" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD202_2013" : [ - "KM229854" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E2000_2010_G3P_8__E2000" : [ - "KF371819", - "KF371814", - "KF371817", - "KF371818", - "KF371823", - "KF371815", - "KF371816", - "KF371820", - "KF371822" - ], - "Hepatitis_C_virus_subtype_2b_MD2b_1" : [ - "AF238486" - ], - "Capreolus_capreolus_papillomavirus_1__CcPV_1" : [ - "NC_011051" - ], - "Foot_and_mouth_disease_virus_O_UKG_4998_2001_UKG_4998_2001" : [ - "EF552694" - ], - "Tomato_leaf_curl_Cebu_virus__P134" : [ - "NC_010439" - ], - "Aequorivita_sublithincola_DSM_14238" : [ - "NC_018013" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3380_2005" : [ - "GQ868562" - ], - "Euphorbia_yellow_mosaic_virus___Goias__Brazil_DF_Taquara_ABA3_2002" : [ - "JF756670" - ], - "Dengue_virus_1__13671_BR_PE_10" : [ - "JX669464" - ], - "Bovine_viral_diarrhea_virus_1__SuwaNcp" : [ - "KC853440" - ], - "Dengue_virus_2__DENV_2_US_BID_V1052_1998" : [ - "EU482560" - ], - "Simian_immunodeficiency_virus__AGM3" : [ - "SIVAGM3" - ], - "Papaya_leaf_distortion_mosaic_virus_P_HaiNan_DF" : [ - "JX974555" - ], - "Datura_leaf_distortion_virus__Venezuela_Rubio_933_2007" : [ - "NC_018715", - "NC_018717" - ], - "Duck_astrovirus_1_DA06" : [ - "FJ919225" - ], - "Coxsackievirus_A6__5056_SH_CHN_2013" : [ - "KJ541161" - ], - "Tahyna_virus_4057" : [ - "KF361884" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5512_2010" : [ - "JF937622" - ], - "Foot_and_mouth_disease_virus___type_A_A_Bage_abage_iso63" : [ - "AY593787" - ], - "Human_immunodeficiency_virus_1__97IC_PCI3" : [ - "AJ866555" - ], - "Echovirus_E7_2001_31" : [ - "KP266570" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__MN6" : [ - "KP283401" - ], - "Candidatus_Carsonella_ruddii_HC_isolate_Thao2000" : [ - "NC_018416" - ], - "Equine_rhinitis_A_virus_U188" : [ - "DQ272128" - ], - "Porcine_circovirus_2_GX0601" : [ - "EF524532" - ], - "West_Nile_virus_TM171_03_Mex03" : [ - "AY660002" - ], - "Human_immunodeficiency_virus_1__03ZAPS066MB2" : [ - "DQ396375" - ], - "Hepatitis_B_virus__WHWHD1" : [ - "JN257191" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP3A" : [ - "JN013979" - ], - "Tomato_yellow_leaf_curl_virus_TYLCV_CJ_Ljs" : [ - "AB636411" - ], - "Hepatitis_B_virus__JMY_0919_ETCvs3TC_Naive" : [ - "DQ993702" - ], - "Human_papillomavirus_type_16__Fr312312" : [ - "HQ644245" - ], - "Staphylococcus_aureus_ED133" : [ - "NC_017337" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2424_2004" : [ - "FJ850112" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_6" : [ - "EU384611" - ], - "Human_immunodeficiency_virus_1__02BR008" : [ - "DQ358808" - ], - "African_cassava_mosaic_virus__DRC_6" : [ - "FN668378", - "FN668379" - ], - "Rotavirus_A_Hu_BEL_F01498_2009_G3P_6__Hu_BEL_F01498_2009_G3P_6" : [ - "JF460836", - "JF460834", - "JF460838", - "JF460837", - "JF460844", - "JF460841", - "JF460842", - "JF460839", - "JF460840", - "JF460835", - "JF460843" - ], - "Tomato_yellow_leaf_curl_virus__Nonsan_1" : [ - "HM856918" - ], - "Rice_black_streaked_dwarf_virus__zhjw" : [ - "AY050488", - "AY050486" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V359_2006" : [ - "EU155251" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Jiangxi_3" : [ - "EU200961" - ], - "Coxsackievirus_A1_Tompkins" : [ - "AF499635" - ], - "Newcastle_disease_virus__ndv59_F" : [ - "KM056355" - ], - "Sweet_potato_chlorotic_stunt_virus_West_African_Can181_9" : [ - "FJ807784" - ], - "African_horse_sickness_virus_PAKrrah_09" : [ - "GQ506550", - "GQ506549", - "GQ506552" - ], - "Measles_virus_strain_MVi_California_USA_8_04_MVi_California_USA_8_04" : [ - "JN635409" - ], - "Hepatitis_B_virus_050" : [ - "AB900096" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5007_brain" : [ - "HQ671684" - ], - "Dengue_virus_2__DENV_2_CO_BID_V3371_2005" : [ - "GQ868555" - ], - "Dengue_virus_2_ThNH_p14_93" : [ - "AF022439" - ], - "Hepatitis_B_virus__HBV34" : [ - "KC875340" - ], - "Chicken_anemia_virus__CIAV89_69" : [ - "JF507715" - ], - "Erectites_yellow_mosaic_virus" : [ - "NC_009549" - ], - "Caldicellulosiruptor_kristjanssonii_177R1B" : [ - "NC_014719", - "NC_014721" - ], - "Staphylococcus_aureus_Mu3" : [ - "NC_009782" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_OR2_2012" : [ - "KF467251" - ], - "Rift_Valley_fever_virus_35_74" : [ - "JF784387", - "JF784388", - "JF784386" - ], - "Human_rotavirus_A_RVA_Human_tc_CHN_Y111_2004_G3P_8__Y111" : [ - "KF371696", - "KF371695", - "KF371698", - "KF371697", - "KF371694", - "KF371702", - "KF371699", - "KF371700", - "DQ873678" - ], - "Enterobacteria_phage_FL76_Tallahassee_FL_2012" : [ - "KF044310" - ], - "Porcine_circovirus_2_GD016" : [ - "KM880089" - ], - "Human_immunodeficiency_virus_1__DR6175" : [ - "AB480695", - "AB480694" - ], - "Hepatitis_B_virus__patient20" : [ - "EU882002", - "EU882001" - ], - "West_Nile_virus__CA_03_COAV997" : [ - "JF703162" - ], - "Human_papillomavirus_type_16__JPD169" : [ - "AB889494" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V447_2006" : [ - "EU155234" - ], - "Human_immunodeficiency_virus_1__06KECst_005" : [ - "FJ623481" - ], - "Torque_teno_virus__JA20" : [ - "AF122914" - ], - "Hepatitis_B_virus__05UC" : [ - "AB493847" - ], - "JC_polyomavirus__JCV161FLC_31" : [ - "JF424938" - ], - "West_Nile_virus__WNV_1_US_BID_V7386_2011" : [ - "KJ501098" - ], - "WU_Polyomavirus_GD_WU1218" : [ - "GQ926978" - ], - "Hepatitis_B_virus__clz2126" : [ - "KC774216" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3840" : [ - "KM233106" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2003_7_2" : [ - "KC862572" - ], - "Hepatitis_B_virus__C147" : [ - "EU939595" - ], - "Tomato_leaf_curl_Mayotte_virus__Kahani" : [ - "NC_006876" - ], - "Bear_Canyon_mammarenavirus_AV_98470029" : [ - "AY924392" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_K_SD_FR14_2008" : [ - "KM229903" - ], - "Hepatitis_B_virus__JFA4207" : [ - "KF779269" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00110_2002_G1P_8" : [ - "JN651895", - "JN651899", - "JN651890", - "JN651891", - "JN651898", - "JN651896", - "JN651900", - "JN651892", - "JN651893", - "JN651897", - "JN651894" - ], - "South_African_cassava_mosaic_virus__MG_MG446A1_11" : [ - "KJ887719" - ], - "Hepatitis_C_virus__QC139" : [ - "FJ462431" - ], - "Rice_yellow_mottle_virus_satellite__RYMV_I__RYMV_K" : [ - "NC_003380" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2751_2007" : [ - "GQ199776" - ], - "BK_polyomavirus__MT_clone_32" : [ - "AB485700" - ], - "Hepatitis_B_virus__17" : [ - "EU787437" - ], - "Torque_teno_sus_virus_1a__TTV1Bj5" : [ - "HM633248" - ], - "Hepatitis_C_virus_subtype_1b__No__8" : [ - "AB154183" - ], - "Mungbean_yellow_mosaic_India_virus__130_7" : [ - "AJ512496" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota79_2013" : [ - "KJ645674" - ], - "Hepatitis_B_virus__SHB517" : [ - "KJ598712" - ], - "JC_polyomavirus__TU_5" : [ - "AB262405" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1642_2007" : [ - "FJ182023" - ], - "Tomato_yellow_leaf_curl_virus__TYLCV_Nob" : [ - "EF107520" - ], - "Hepatitis_C_virus_SA3" : [ - "KJ925148" - ], - "Deltacoronavirus_PDCoV_USA_Illinois134_2014_PDCoV_USA_Illinois134_2014" : [ - "KJ601778" - ], - "Hepatitis_C_virus__QC152" : [ - "KJ439776" - ], - "Serra_Norte_virus" : [ - "HM119430", - "HM119428", - "HM119429" - ], - "African_cassava_mosaic_virus__CF_CF101AN_07" : [ - "KJ887790" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3645_2008" : [ - "GU131882" - ], - "Human_poliovirus_2__CHN16017_Sichuan_CHN_2012" : [ - "KJ419276" - ], - "Borna_disease_virus_H1766" : [ - "AJ311523" - ], - "Human_T_lymphotropic_virus_2_SP_WV" : [ - "AF139382" - ], - "Newcastle_disease_virus_M4" : [ - "JN653339" - ], - "West_Nile_virus__WNV_1_US_BID_V4590_2003" : [ - "HQ671701" - ], - "Abutilon_mosaic_Brazil_virus__BgV01A_1_C21" : [ - "NC_016574" - ], - "Hepatitis_B_virus__HBV15" : [ - "KC875283" - ], - "Chicken_megrivirus_chicken_B21_CHV_2012_HUN" : [ - "KF961186" - ], - "Sudan_ebolavirus__EboSud_603_2012" : [ - "KC545390" - ], - "Dengue_virus_1__MKS_0077" : [ - "KC762654" - ], - "Leuconostoc_phage_phiLN34" : [ - "NC_024388" - ], - "Human_herpesvirus_4_HN9" : [ - "AB850659" - ], - "Rubella_virus_RVi_HoChiMinh_VNM_20_12_RVV129_2B__RVV129_vero_22w" : [ - "AB928204" - ], - "Pea_seed_borne_mosaic_virus_Pathotype_P_2_L1" : [ - "AJ252242" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9410_2013" : [ - "KJ643491" - ], - "Pothos_latent_virus_pigeonpea" : [ - "AJ243370" - ], - "Temperate_fruit_decay_associated_virus__MFB21" : [ - "KR134319" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT64B02_2008" : [ - "JF909197" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1873_2007" : [ - "FJ461321" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_SCC_12_3044_001" : [ - "KF385415" - ], - "Usutu_virus_V58" : [ - "KJ438714" - ], - "West_Nile_virus__WNV_1_US_BID_V6424_2002" : [ - "KJ501291" - ], - "Human_parainfluenza_virus_1_HPIV1_USA_629_2_2009" : [ - "KF530202" - ], - "Venezuelan_equine_encephalitis_virus_243937" : [ - "AF004459" - ], - "Columbid_circovirus__PL62" : [ - "KF738864" - ], - "Infectious_bronchitis_virus__YN" : [ - "JF893452" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_8__AHEaCV_8_NZ_3159C3_2012" : [ - "KM874311" - ], - "Apple_chlorotic_leaf_spot_virus_AC_ind" : [ - "HE980332" - ], - "Vibrio_phage_VpKK5" : [ - "NC_026610" - ], - "Human_rhinovirus_A31_ATCC_VR_506" : [ - "FJ445126" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V419_2002" : [ - "EU155316" - ], - "Hepatitis_C_virus_subtype_1a__02_64" : [ - "EU781789" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c8P10_2009_c8P10" : [ - "KF514389" - ], - "Horsegram_yellow_mosaic_virus__Coimbatore" : [ - "NC_005635", - "NC_005636" - ], - "Enterovirus_A71_2010FJLY008" : [ - "HQ426649" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__J2_6" : [ - "GU723739" - ], - "Lettuce_necrotic_stunt_virus__L2" : [ - "JN700748" - ], - "Hepatitis_delta_virus_dTk35_dTk35" : [ - "AM779582" - ], - "Hepatitis_B_virus__PNF4308" : [ - "KF779317" - ], - "Human_adenovirus_1" : [ - "AF534906" - ], - "Rubella_virus__Anima_Mexico_1997" : [ - "DQ085341" - ], - "Paspalum_striate_mosaic_virus__AU_QG17_2011" : [ - "JQ948074" - ], - "Tobacco_curly_shoot_alphasatellite__Y278" : [ - "FN678900" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT50B12_2008" : [ - "JF909191" - ], - "West_Nile_virus_Greece_2013_Xanthi_3" : [ - "KJ883345" - ], - "Methanopyrus_kandleri_AV19" : [ - "NC_003551" - ], - "Squash_leaf_curl_virus__JO3_120" : [ - "KM595201" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__LY2" : [ - "GU723753", - "GU723741" - ], - "Wenzhou_virus__Rn_242" : [ - "NC_026018", - "NC_026019" - ], - "Enterovirus_A71_EV71_Ningbo_CHN_061_2011" : [ - "JQ086366" - ], - "His_1_virus" : [ - "NC_007914" - ], - "Porcine_circovirus_2__P477LG" : [ - "JX099781" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_31_2013" : [ - "KJ672463" - ], - "Porcine_circovirus_2__A4058" : [ - "JF317565" - ], - "Sida_yellow_vein_Vietnam_virus" : [ - "NC_009547" - ], - "Duck_hepatitis_A_virus_3_SD1201" : [ - "KC993890" - ], - "Mannheimia_phage_phiMHaA1_Bacteriophage_phi_MhaA1_PHL101" : [ - "NC_008201" - ], - "Squash_leaf_curl_virus__JO3_22" : [ - "KM595195" - ], - "Thermococcus_CL1" : [ - "NC_018015" - ], - "Hepatitis_B_virus__SSC139" : [ - "KJ598704" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1321" : [ - "KR534547" - ], - "Hepatitis_B_virus__B142" : [ - "EU939586" - ], - "Tobacco_mosaic_virus__Tor1_L3" : [ - "KF972433" - ], - "Hepatitis_B_virus__BFJT2000_1" : [ - "AB642095" - ], - "Hepatitis_B_virus__PNF5374" : [ - "KF779364" - ], - "Hepatitis_B_virus__HBV_IM806_2" : [ - "AB205010" - ], - "Hepatitis_B_virus__I_T80" : [ - "GU456645" - ], - "Dengue_virus_2__DENV_2_NI_BID_V579_2006" : [ - "EU482691" - ], - "Dengue_virus_1__DENV_1_VE_BID_V1136_2007" : [ - "EU482611" - ], - "Hepatitis_B_virus_1456_11a" : [ - "KR013863" - ], - "Hepatitis_C_virus_subtype_1b__TN28" : [ - "EU781828" - ], - "Foot_and_mouth_disease_virus___type_SAT_1__KEN_004_2002" : [ - "JF749860" - ], - "Chlamydia_trachomatis_B_TZ1A828_OT" : [ - "NC_012687" - ], - "Human_bocavirus__2011GZ9697" : [ - "KJ684065" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_O6B_2005" : [ - "JQ319164" - ], - "West_Nile_virus__BSL22_09" : [ - "JF957181" - ], - "Hop_latent_virus__Zatec_2008" : [ - "HG793797" - ], - "Hepatitis_B_virus__1764" : [ - "FJ386581" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2693_2006" : [ - "FJ882519" - ], - "Variola_virus_Afghanistan_1970_Variolator_4" : [ - "DQ437580" - ], - "Human_immunodeficiency_virus_1_subtype_A_UG029" : [ - "AB098332", - "AB098333" - ], - "Macroptilium_yellow_spot_virus__BR_Ced4_11" : [ - "KJ939897" - ], - "Hepatitis_B_virus__A2_10" : [ - "GU815569" - ], - "Pseudomonas_phage_JBD24" : [ - "NC_020203" - ], - "Mungbean_yellow_mosaic_virus___Soybean__Pakistan" : [ - "AY269991" - ], - "Cymbidium_mosaic_virus__HNXL" : [ - "HQ681906" - ], - "Ageratum_leaf_curl_Cameroon_virus__CM_AGFG23_2009___AGFG23" : [ - "FR873230" - ], - "Maize_streak_virus__MSV_A_ZA_Por1_D14_2008" : [ - "FJ882127" - ], - "Butyrivibrio_proteoclasticus_B316" : [ - "NC_014390", - "NC_014388", - "NC_014389", - "NC_014387" - ], - "Macacine_herpesvirus_5_17577" : [ - "NC_003401" - ], - "Human_poliovirus_1_CHAT_10A_11" : [ - "AJ416942" - ], - "West_Nile_virus__WNV_1_US_BID_V4228_2005" : [ - "HM488154" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2698_2006" : [ - "FJ882524" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_DE_BID_V502_2004" : [ - "EU155381" - ], - "West_Nile_virus__WNV_1_US_BID_V4197_2001" : [ - "HQ671697" - ], - "Bean_yellow_mosaic_virus__LP" : [ - "HG970866" - ], - "Cucumber_mosaic_virus__209" : [ - "KJ400002", - "KJ400003", - "KJ400004" - ], - "Grapevine_virus_A__BMo32_1" : [ - "DQ855087" - ], - "Hepatitis_B_virus__GSD_8" : [ - "HM750151" - ], - "SFTS_virus_HNXY_327_HNXY_327" : [ - "KC292294", - "KC292321", - "KC292347" - ], - "Synechococcus_phage_S_IOM18_S_IOM18" : [ - "NC_021536" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V326_2002" : [ - "EU155291" - ], - "West_Nile_virus__WNV_1_US_BID_V4565_2003" : [ - "HM488210" - ], - "Hepatitis_B_virus__TK148" : [ - "JF754612" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V57_2004" : [ - "EU256015" - ], - "Beet_mild_curly_top_virus____Worland4__Worland" : [ - "AY134867" - ], - "Avian_leukosis_virus_JL09L01" : [ - "HQ148555" - ], - "Human_rhinovirus_A49__F04" : [ - "FJ445134" - ], - "Hepatitis_B_virus_B0503138_KPG_F" : [ - "AP011095" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_10_2011" : [ - "KJ686164" - ], - "Hepatitis_B_virus__UK2" : [ - "AB219530" - ], - "Ipomoea_yellow_vein_virus__ES_Mal_IG1_06" : [ - "NC_013022" - ], - "Sweet_potato_leaf_curl_virus__US_SC_377_23" : [ - "HQ333135" - ], - "Human_papillomavirus_type_11__GUMC_AJ" : [ - "JN644141" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_C05" : [ - "KT013254", - "KT013255" - ], - "Human_immunodeficiency_virus_1__CH162_TF" : [ - "KC156126" - ], - "Norwalk_like_virus__SzUG1" : [ - "AB039774" - ], - "Porcine_epidemic_diarrhea_virus_USA_Ohio60_2013" : [ - "KJ645657" - ], - "Human_papillomavirus_type_58__BF134" : [ - "HQ537762" - ], - "Shigella_phage_Ag3" : [ - "NC_013693" - ], - "West_Nile_virus__WNV_1_US_BID_V6675_2004" : [ - "KJ501413" - ], - "Wasabi_mottle_virus_wasabi_Shizuoka" : [ - "NC_003355" - ], - "Human_immunodeficiency_virus_1__04013226_2_flA9" : [ - "FJ496073" - ], - "Macroptilium_yellow_net_virus__BR_Mur1_09" : [ - "NC_017002", - "NC_017001" - ], - "Porcine_circovirus_2__70_08_2" : [ - "HQ591365" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2310_2001" : [ - "FJ744724" - ], - "Maize_streak_virus__MSV_A_GH_gh118_Seky_2010" : [ - "KJ699312" - ], - "Sweet_potato_leaf_curl_Henan_virus__China_Henan10_2__2012" : [ - "NC_024117" - ], - "Enterobacteria_phage_BP_4795" : [ - "NC_004813" - ], - "Carnation_mottle_virus_shanghai" : [ - "AF192772" - ], - "Simian_immunodeficiency_virus_SIVmm239_r91003_SIVmm239" : [ - "EU280803" - ], - "Cronobacter_phage_CR8" : [ - "NC_024354" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT51A01_2008" : [ - "JF909250" - ], - "H_1_parvovirus" : [ - "NC_001358" - ], - "Hepatitis_B_virus__103" : [ - "HQ603080" - ], - "Rabies_virus__RV61" : [ - "KF154996" - ], - "Hepatitis_B_virus__LAMr_Pt__15_Adefovir_treated_Pt__7" : [ - "AB367406" - ], - "Sendai_virus_Tianjin" : [ - "EF679198" - ], - "Canarypox_virus_ATCC_VR_111_Wheatley_C93" : [ - "NC_005309" - ], - "Plum_pox_virus_Rec_J4c" : [ - "EU117116" - ], - "Human_adenovirus_14_HAdV14_BJ430_CHN2010" : [ - "JN032132" - ], - "Hepatitis_B_virus__FEN43" : [ - "JF440002" - ], - "Potato_virus_Y_strain_N_N_N_Jg" : [ - "AY166867" - ], - "Dengue_virus_2__MKS_WS73" : [ - "KC762678" - ], - "Impatiens_necrotic_spot_virus__HDL" : [ - "GU112504", - "GU112503" - ], - "Faba_bean_necrotic_yellows_C7_alphasatellite__Egyptian_EV1_93" : [ - "NC_003565" - ], - "Tomato_leaf_curl_Barka_virus__Tom_75" : [ - "KF260969" - ], - "Dengue_virus_2__DENV_2_NI_BID_V565_2006" : [ - "EU482772" - ], - "Fer_de_Lance_paramyxovirus_ATCC_VR_895" : [ - "NC_005084" - ], - "Hepatitis_B_virus__UK6" : [ - "AB219534" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V330_2002" : [ - "EU482876" - ], - "Okra_yellow_crinkle_virus__Cameroon___NJ52" : [ - "FM164724" - ], - "Hepatitis_B_virus__C60" : [ - "EU859934", - "EU939553" - ], - "Hepatitis_B_virus__cyc1048" : [ - "KC774354" - ], - "Bluetongue_virus__BT_57_08" : [ - "KP196605", - "KP196607", - "KP196612", - "KP196606", - "KP196609", - "KP196603", - "KP196611", - "KP196610" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US61" : [ - "KJ019115" - ], - "Hepatitis_B_virus__GU1241" : [ - "GQ161815" - ], - "Hepatitis_B_virus__MGL295F" : [ - "AB270547" - ], - "Melaka_orthoreovirus" : [ - "NC_020448", - "NC_020442", - "NC_020444", - "NC_020439", - "NC_020443", - "NC_020441", - "NC_020445", - "NC_020440", - "NC_020446", - "NC_020447" - ], - "Hepatitis_B_virus__S8_3" : [ - "EU916232" - ], - "Porcine_rotavirus_Cowden" : [ - "X60546" - ], - "Hepatitis_B_virus__N14_C_4171B" : [ - "KJ173410" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_201403007" : [ - "KP178538" - ], - "Human_poliovirus_3_NIE1118476" : [ - "KJ170654" - ], - "Human_cyclovirus_5841A" : [ - "KF726986" - ], - "Hepatitis_B_virus__Pok" : [ - "HQ603073" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX10_H91_2010_IE" : [ - "KC344489", - "KC344468" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT36B49_2004" : [ - "JF909182" - ], - "Foot_and_mouth_disease_virus___type_O__O_S08KOR_2002" : [ - "KF694738" - ], - "Pepino_mosaic_virus_DB1" : [ - "FJ940224" - ], - "Human_papillomavirus_type_52__Z096" : [ - "HQ537736" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3756_2008" : [ - "GQ868536" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20144521" : [ - "KR653271" - ], - "Maize_streak_virus__UMpi_8" : [ - "EF547065" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8521_2004" : [ - "KJ627720" - ], - "Tobacco_rattle_virus__Cot2" : [ - "AY166662" - ], - "Hepatitis_B_virus__6144_0327_ETCvs3TC_Naive" : [ - "DQ993698" - ], - "Hepatitis_B_virus__A67" : [ - "HM363611" - ], - "Grapevine_leafroll_associated_virus_7__AA42" : [ - "NC_016436" - ], - "Pepino_mosaic_virus_CH2" : [ - "KJ018165", - "JN835466" - ], - "Human_immunodeficiency_virus_1__03ZAPS074MB2" : [ - "DQ351228" - ], - "Torque_teno_virus__TTV_HD24c__rheu234" : [ - "FR751508" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Moheli_MO30BY1_2009" : [ - "JF909150" - ], - "Salmonella_phage_Chi" : [ - "NC_025442" - ], - "Plantago_asiatica_mosaic_virus__Concador" : [ - "LN794199" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2910_2006" : [ - "FJ898424" - ], - "Dengue_virus_1__DENV_1_VN_BID_V780_2006" : [ - "EU482706" - ], - "Stx2_converting_phage_I_Stx2_phage_I" : [ - "NC_003525" - ], - "Hepatitis_B_virus__WY_HZ_16" : [ - "JX504533" - ], - "Pan_troglodytes_verus_polyomavirus_5__5743" : [ - "NC_019857" - ], - "Dengue_virus_2_VE_61154_2007" : [ - "HQ332189" - ], - "Human_rhinovirus_A94" : [ - "EF173419" - ], - "Chikungunya_virus__MY_08_065" : [ - "FN295485" - ], - "South_African_cassava_mosaic_virus__MG_MG561A2_11" : [ - "KJ888040" - ], - "Narcissus_mosaic_virus_strain_New_Zealand_New_Zealand" : [ - "AY225449" - ], - "Human_rhinovirus_A22_ATCC_VR_1132" : [ - "FJ445122" - ], - "Rabbit_hemorrhagic_disease_virus_Erfurt" : [ - "EF558581" - ], - "Human_immunodeficiency_virus_1__97CNGX_9F" : [ - "AY008717" - ], - "Sweet_potato_leaf_curl_virus___Greece_Crete_638_2013" : [ - "KF697069" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3381_2006" : [ - "GQ868563" - ], - "Dengue_virus_3__VIROAF7" : [ - "KM190937" - ], - "Hepatitis_B_virus__11B35" : [ - "AB675683" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9517_2013" : [ - "KJ643565" - ], - "Hepatitis_B_virus_362_2" : [ - "KR013916" - ], - "Human_mastadenovirus_B_human_ARG_ak38_AdV7h_2003_7_P7H7F7" : [ - "JX423386" - ], - "Tomato_leaf_curl_betasatellite____India_Halwadni_2007___TomLCD_Hal" : [ - "EU847239" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2613_2007" : [ - "JN819407" - ], - "Malva_mosaic_virus" : [ - "NC_008251" - ], - "Hepatitis_B_virus__Occult_HK319" : [ - "KJ410515" - ], - "Porcine_circovirus_2__DK433case" : [ - "EF565351" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_130927" : [ - "KP118880" - ], - "Hepatitis_B_virus__GS12lz2088" : [ - "KC774178" - ], - "Psychrobacter_phage_pOW20_A_pOW20_A" : [ - "NC_020841" - ], - "Human_herpesvirus_3_VZVs_Pasadena_USA_48_12_Z_2" : [ - "KF811485" - ], - "Mycobacterium_phage_Adzzy" : [ - "NC_022058" - ], - "South_African_cassava_mosaic_virus__MG_MG124A3_09" : [ - "KJ887918" - ], - "Human_immunodeficiency_virus_1__C_96BW15C05" : [ - "AF110975" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4069_2008" : [ - "GU131818" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2022_2002" : [ - "FJ639699" - ], - "Hepatitis_B_virus__2399" : [ - "FJ386635" - ], - "West_Nile_virus__WNV_1_US_BID_V6407_2001" : [ - "KJ501453" - ], - "Human_immunodeficiency_virus_1__E1_5p21" : [ - "HM469975" - ], - "Tomato_leaf_curl_New_Delhi_virus____Potato___Happur" : [ - "EF043230", - "EF043233" - ], - "Rabies_virus_CTN_1_31" : [ - "HQ317918" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1824_2007" : [ - "FJ562100" - ], - "SARS_coronavirus_Sin847" : [ - "AY559095" - ], - "European_mountain_ash_ringspot_associated_virus__E53114" : [ - "HG799724" - ], - "Human_respiratory_syncytial_virus__Kilifi_9465_6_RSVB_2010" : [ - "KP317952" - ], - "Rhodococcus_phage_RGL3" : [ - "NC_016650" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2753_2007" : [ - "JQ287663" - ], - "Tick_borne_encephalitis_virus_Nikolaevsk_855" : [ - "KP869172" - ], - "Hepatitis_C_virus_subtype_6e__GX004" : [ - "DQ314805" - ], - "Porcine_circovirus_2__PCV_Y6" : [ - "KC515005" - ], - "Hepatitis_B_virus__052_K_Vic" : [ - "KF873527" - ], - "Hepatitis_B_virus__WHATR1" : [ - "JN257160" - ], - "Cereal_yellow_dwarf_virus_RPV__046" : [ - "EF521839" - ], - "Turnip_rosette_virus__TRoV_1" : [ - "NC_004553" - ], - "Tomato_yellow_leaf_curl_Malaga_virus__Portugal_Algarve_6_2001" : [ - "JN859137" - ], - "Meiothermus_ruber_DSM_1279" : [ - "NC_021081" - ], - "Banana_bunchy_top_virus__Bangalore_GKVK" : [ - "JN243753", - "JN243752", - "JN243754", - "JN243751" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3834" : [ - "KM233104" - ], - "JC_polyomavirus__JCV161FLC_09" : [ - "JF424917" - ], - "Shigella_sonnei_53G" : [ - "NC_016834", - "NC_016833", - "NC_016822", - "NC_016824", - "NC_016823" - ], - "Toscana_virus__SI_21137" : [ - "EU003173" - ], - "Candidatus_Pelagibacter_ubique_HTCC1062" : [ - "NC_007205" - ], - "Salmonella_enterica_arizonae_serovar_62_z4_z23" : [ - "NC_010067" - ], - "Dengue_virus_2__DENV_2_NI_BID_V634_2005" : [ - "FJ850115" - ], - "JC_polyomavirus__AT_4" : [ - "AB048570" - ], - "WU_Polyomavirus_Rochester_7029" : [ - "FJ794068" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1298" : [ - "KR534545" - ], - "West_Nile_virus__AVA1202624" : [ - "KC736491" - ], - "Hepatitis_B_virus__11141" : [ - "AF241407" - ], - "Bean_golden_mosaic_virus__BR_Una8_12" : [ - "KJ939828" - ], - "Dengue_virus_4_H778494_DENV_4_BEL83791" : [ - "JQ513335" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Jalgov_OY121_2006___OY121" : [ - "GU111984" - ], - "Hepatitis_B_virus_Ehime7__Iyo_0218004" : [ - "AB109475" - ], - "Norovirus_Hu_GII_4_Akita3_2007_JP_Hu_GII_4_Akita3_2007_JP" : [ - "AB541214" - ], - "Lactococcus_Phage_ASCC454" : [ - "JQ740802" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_8__AHEaCV_8_NZ_3072SG_2012" : [ - "KM874314" - ], - "Maize_streak_virus__UHoi_170" : [ - "EF547105" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA106" : [ - "KF670673" - ], - "Mycobacterium_phage_TiroTheta9_TiroTheta9" : [ - "JN561150" - ], - "Cauliflower_mosaic_virus__IRNWKB17" : [ - "KF357590" - ], - "Human_papillomavirus_type_53__Qv24231" : [ - "EF546478" - ], - "Hepatitis_B_virus__HBV87" : [ - "KC875330" - ], - "Maize_streak_virus__MSV_A_NG_Iba4_N37_2007" : [ - "HQ693378" - ], - "Hepatitis_B_virus__P71" : [ - "GQ477489" - ], - "Human_immunodeficiency_virus_1__04ZASK136B1" : [ - "DQ011177" - ], - "Coxsackievirus_A16_BJCA08" : [ - "JX481738" - ], - "Human_papillomavirus_type_18__BF309" : [ - "KC470223" - ], - "Hepatitis_B_virus_1346_15" : [ - "KR014035" - ], - "Human_papillomavirus_type_80" : [ - "Y15176" - ], - "Amycolatopsis_mediterranei_U32" : [ - "NC_014318" - ], - "Squash_leaf_curl_virus__PA1_J2422" : [ - "KM595215" - ], - "Acidobacterium_capsulatum_ATCC_51196" : [ - "NC_012483" - ], - "Rabies_virus_Flury_LEP_C" : [ - "FJ577895" - ], - "Guar_leaf_curl_alphasatellite__Mohali" : [ - "NC_020502" - ], - "Hepatitis_B_virus__HBV192" : [ - "JN688715" - ], - "Hepatitis_B_virus__TZ306" : [ - "FR714503" - ], - "Tomato_yellow_leaf_curl_virus__LNJZ" : [ - "KJ754191" - ], - "Hepatitis_B_virus__HCUCH17" : [ - "HM585195" - ], - "Hepatitis_B_virus_Ehime15_BD_No27_H12_01_06" : [ - "AB119253" - ], - "Tomato_yellow_leaf_curl_virus_SDSG" : [ - "HM043732" - ], - "Mesorhizobium_phagevB_MloP_Lo5R7ANS" : [ - "NC_025431" - ], - "Human_immunodeficiency_virus_1__03ZASK039B2" : [ - "AY878068" - ], - "Dengue_virus_1_D1_SG_05K4140DK1_2005" : [ - "EU081256" - ], - "Hepatitis_B_virus__HBV12" : [ - "KC875254" - ], - "Cotton_leaf_curl_Multan_betasatellite__FC1" : [ - "HQ455350" - ], - "East_African_cassava_mosaic_virus" : [ - "AM502334", - "AM502343", - "AM502336", - "AM502341", - "AJ618957", - "AM502337", - "AJ618956", - "AM502326", - "AM502331", - "AM502335", - "AM502333", - "AM502342", - "AJ618959", - "AM502332", - "AM502344", - "AM502327", - "AM502328", - "AJ618958", - "AM502330", - "AM502329" - ], - "Crimean_Congo_hemorrhagic_fever_virus__Bul_HU517" : [ - "AY277676" - ], - "Hepatitis_B_virus__MOD_4594" : [ - "GQ183474" - ], - "Squash_yellow_mild_mottle_virus__2A" : [ - "KC153490" - ], - "Columbid_circovirus__Bel_936" : [ - "DQ915956" - ], - "Human_immunodeficiency_virus_1__ES_X2510_2__B" : [ - "FJ853622" - ], - "Apple_mosaic_virus__KMi2" : [ - "AM490197" - ], - "Dengue_virus_2_DENV_2_PR_43DN_1994" : [ - "GQ398293" - ], - "Porcine_circovirus_2__YDTP11" : [ - "KJ680344" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_07NM" : [ - "FJ393456" - ], - "Infectious_bronchitis_virus_ck_CH_LHLJ_07VII" : [ - "JF274479" - ], - "Small_begomovirus_associated_satellite__wf_S6" : [ - "KJ859214" - ], - "Human_immunodeficiency_virus_2_D194" : [ - "X52223" - ], - "Enterovirus_A_GZ08_831_EV71_Guangzhou_831_2008" : [ - "HQ456309" - ], - "Newcastle_disease_virus_JL_1" : [ - "EU546165" - ], - "South_African_cassava_mosaic_virus__MG_MG473A2_11" : [ - "KJ888019" - ], - "Mycobacterium_phage_Jasper_Jasper" : [ - "NC_011020" - ], - "Maize_streak_virus__MSV_A_MZ_Map10_Moz5_2007" : [ - "HQ693351" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V95_2006" : [ - "EU256034" - ], - "Human_immunodeficiency_virus_1__WITO_flE11" : [ - "FJ496178" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_412N3__412N3" : [ - "JN819499" - ], - "Human_immunodeficiency_virus_1__61842" : [ - "GU595154" - ], - "Foot_and_mouth_disease_virus___type_O_O_SKR_14_02" : [ - "EF614457" - ], - "Human_immunodeficiency_virus_1__BZ167" : [ - "AB485642", - "AB485641", - "AY173956" - ], - "Dengue_virus_1_Den1BR_90" : [ - "AF226685" - ], - "Squash_leaf_curl_virus__JO2_121" : [ - "KM595183" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Equus_ferus_caballus_MEX_MX09_Eq05_2009_IE" : [ - "KC344463" - ], - "Hepatitis_B_virus__Leb40" : [ - "JN642148" - ], - "Watermelon_chlorotic_stunt_virus__JO3_64" : [ - "KM820220" - ], - "Porcine_parainfluenza_virus_1_S119N" : [ - "JX857411" - ], - "HIV_1_CRF04_cpx" : [ - "AF049337" - ], - "Anaplasma_marginale_Maries" : [ - "NC_004842" - ], - "JC_polyomavirus_JCVCPN1" : [ - "JQ823124" - ], - "West_Nile_virus_Italy_2013_Livenza_35_1" : [ - "KF647253" - ], - "Hepatitis_B_virus__G238" : [ - "JQ040170" - ], - "Puumala_virus_Puu_Huggberget_Cg36_94" : [ - "AJ223371" - ], - "Porcine_circovirus_2__BJ0901b" : [ - "GU001710" - ], - "Bromus_catharticus_striate_mosaic_virus__AU_QL_99" : [ - "NC_014822" - ], - "Agrobacterium_H13_3" : [ - "NC_015184", - "NC_015183", - "NC_015508" - ], - "Hepatitis_B_virus__B3_12" : [ - "GU815605" - ], - "Klebsiella_phage_K64_1" : [ - "NC_027399" - ], - "Hepatitis_B_virus__ph76" : [ - "EU410080" - ], - "Human_parainfluenza_virus_1_HPIV1_USA_35745H_2011" : [ - "KF687316" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__Asia1_HN_2006" : [ - "KC412634" - ], - "Eupatorium_yellow_vein_virus" : [ - "NC_003556" - ], - "Hepatitis_delta_virus__D7_D" : [ - "KJ744223" - ], - "Blackberry_virus_E__BB_Ellis_1" : [ - "NC_015706" - ], - "Bean_golden_mosaic_virus__BR_Par27_12" : [ - "KJ939814" - ], - "Chicken_anemia_virus__CAV_10" : [ - "KJ872513" - ], - "Chlamydia_trachomatis_A_7249" : [ - "NC_020979", - "NC_020944" - ], - "Simian_adenovirus_C__BaAdV_2" : [ - "NC_021168" - ], - "Hepatitis_B_virus__SHB65" : [ - "KJ598722" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPP00098_2010_B" : [ - "KJ627397" - ], - "Yellow_fever_virus_17DD_Brazil" : [ - "DQ100292" - ], - "Hepatitis_B_virus__S1554" : [ - "FJ386684" - ], - "Hepatitis_B_virus__PG_18" : [ - "KF471653" - ], - "Hepatitis_C_virus_subtype_1a__00G" : [ - "EU781802" - ], - "Rickettsia_prowazekii_Madrid_E" : [ - "NC_000963" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V51_2004" : [ - "EU256011" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1653_2007" : [ - "FJ182028" - ], - "Watermelon_mosaic_virus__C05_464" : [ - "JF273459" - ], - "Hepatitis_B_virus__I2_M04_4997" : [ - "FJ023673" - ], - "Plum_pox_virus_PPV_D_Ou12" : [ - "AB576066" - ], - "Lactococcus_lactis_cremoris_UC509_9" : [ - "NC_019438", - "NC_019435", - "NC_019431", - "NC_019436", - "NC_019433", - "NC_019437", - "NC_019430", - "NC_019434", - "NC_019432" - ], - "Potato_virus_Y_strain_NTN_NTN_ALF_VI" : [ - "JQ924287" - ], - "Human_poliovirus_1_NIE1118384" : [ - "KJ170512" - ], - "JC_polyomavirus_726B" : [ - "AF300951" - ], - "Burkholderia_rhizoxinica_HKI_454" : [ - "NC_014723", - "NC_014718", - "NC_014722" - ], - "BK_polyomavirus__FUJ_36" : [ - "AB369101" - ], - "Hepatitis_B_virus__FMD73" : [ - "GU332694" - ], - "Hepatitis_delta_virus__TW1435_47" : [ - "AY648956" - ], - "Pseudomonas_aeruginosa_RP73" : [ - "NC_021577" - ], - "Torque_teno_sus_virus_1a__TTV1Hn54" : [ - "JQ933527" - ], - "Human_immunodeficiency_virus_1__00BW3871_3" : [ - "AF443110" - ], - "Hepatitis_B_virus__Cuba32a" : [ - "KM606739" - ], - "Human_parainfluenza_virus_1_HPIV1_MEX_1842_2005" : [ - "KF530220" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_153_2012" : [ - "KJ686151" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143317" : [ - "KR653282" - ], - "Escherichia_coli_ABU_83972" : [ - "NC_017631", - "NC_017629" - ], - "Sugarcane_white_streak_virus__SD_E0144_2013" : [ - "KJ187748" - ], - "Murine_norovirus_1_SC_2014_USA" : [ - "KM102450" - ], - "Human_herpesvirus_4_HN8" : [ - "AB850657" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1840_2008" : [ - "FJ461307" - ], - "Newcastle_disease_virus_AF2240_I" : [ - "JX012096" - ], - "Hepatitis_B_virus_HB294" : [ - "HM011492" - ], - "African_horse_sickness_virus__RSArrah_08" : [ - "KF446272" - ], - "Listeria_phage_P70" : [ - "NC_018831" - ], - "Beak_and_feather_disease_virus__2NC931B" : [ - "JX049221" - ], - "Pelargonium_chlorotic_ring_pattern_virus__GR57" : [ - "NC_005985" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_206_2011" : [ - "KJ686233" - ], - "WU_Polyomavirus_B0" : [ - "NC_009539" - ], - "Hepatitis_B_virus__ES70_10" : [ - "JF828916" - ], - "Human_metapneumovirus_HMPV_AUS_189876302_2004_B" : [ - "KF530181" - ], - "Hepatitis_B_virus__BV_124" : [ - "GU563551" - ], - "Chuzan_virus__31" : [ - "AB177637" - ], - "Human_papillomavirus_type_31__IN453545" : [ - "HQ537668" - ], - "Prunus_virus_T__C21" : [ - "KF700262" - ], - "Hepatitis_B_virus__HBV_Ry24" : [ - "AB073853" - ], - "Tahyna_virus_94" : [ - "KF361877" - ], - "West_Nile_virus_New_York_99_4132" : [ - "HQ596519" - ], - "Wheat_dwarf_virus____Sanxi_Taiyuan___SXTY05_3" : [ - "EF536874" - ], - "Atlantic_salmon_swim_bladder_sarcoma_virus" : [ - "NC_007654" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2817_2007" : [ - "GQ199825" - ], - "Hepatitis_B_virus__A62" : [ - "FJ904414" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V364_2006" : [ - "EU256061" - ], - "Hepatitis_B_virus_4565_97" : [ - "EU594430" - ], - "Human_respiratory_syncytial_virus_HRSV_A_GZ08_10" : [ - "KP119745" - ], - "Human_papillomavirus_type_179__SIBX16" : [ - "NC_022095" - ], - "South_African_cassava_mosaic_virus__MG_MG133A8_09" : [ - "KJ887925" - ], - "African_swine_fever_virus__Malawi_Lil_20_1__1983" : [ - "AY261361" - ], - "Turnip_mosaic_virus__ITA9A" : [ - "AB701726" - ], - "Rotavirus_D_chicken_05V0049_DEU_2005_05V0049" : [ - "NC_014520", - "NC_014515", - "NC_014511", - "NC_014514", - "NC_014516", - "NC_014518", - "NC_014517", - "NC_014513", - "NC_014512", - "NC_014519", - "NC_014521" - ], - "Hepatitis_B_virus__WY_NJ_17" : [ - "JX026879" - ], - "Squash_leaf_curl_virus__PA1_J248" : [ - "KM595220" - ], - "South_African_cassava_mosaic_virus__MG_MG32B1_06" : [ - "KJ887851" - ], - "Human_immunodeficiency_virus_1__01UYTRA1092" : [ - "AY781126" - ], - "Human_immunodeficiency_virus_1__HIV_1NC" : [ - "AF049495" - ], - "Coxsackievirus_A16__HQ09011181" : [ - "JQ316639" - ], - "Japanese_yam_mosaic_virus__FX1" : [ - "KJ789141" - ], - "Murine_leukemia_virus_BM5eco" : [ - "AY252102" - ], - "South_African_cassava_mosaic_virus__MG_MG483A1_11" : [ - "KJ888022" - ], - "Coxsackievirus_A24_CA24v_Okinawa_9_2011" : [ - "AB769156" - ], - "Pseudoxanthomonas_suwonensis_11_1" : [ - "NC_014924" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__LG6_2" : [ - "GU208515", - "GU208519" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K282" : [ - "AJ717535", - "AJ704961" - ], - "Porcine_circovirus_2_PCV2_pig_179" : [ - "EU136715" - ], - "Macroptilium_yellow_spot_virus__BR_Sti1_11" : [ - "KJ939859" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT12A56_2005" : [ - "JF909235" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2806_2007" : [ - "GQ868610" - ], - "Tomato_chlorosis_virus__JJ5" : [ - "KP114534", - "KP114527" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V461_2006" : [ - "EU482867" - ], - "Maize_streak_virus___A_Kenya__Kenyan" : [ - "X01089" - ], - "Soybean_mosaic_virus_G4" : [ - "FJ640979" - ], - "Hepatitis_B_virus__PG_31" : [ - "KF471649" - ], - "Human_immunodeficiency_virus_1__CH164_TF" : [ - "KC156127" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3683_2007" : [ - "HQ166035" - ], - "Propionibacterium_phage_Wizzo" : [ - "NC_027621" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7061_2007" : [ - "KJ189277" - ], - "Hepatitis_B_virus_593_2" : [ - "KR013818" - ], - "Foot_and_mouth_disease_virus___type_O__SKR_2000" : [ - "AJ539139" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3694_2007" : [ - "GQ868506" - ], - "Eel_River_basin_pequenovirus__c17592" : [ - "KP087950" - ], - "Jatropha_curcas_mosaic_virus__ICMV_IN_SG_12" : [ - "JX518289" - ], - "Suid_herpesvirus_1_Kaplan" : [ - "KJ717942", - "JF797218" - ], - "Foot_and_mouth_disease_virus___type_A_A1_Bayern_a1bayern_iso41" : [ - "AY593759" - ], - "South_African_cassava_mosaic_virus__MG_MG210A1_09" : [ - "KJ887679" - ], - "Dengue_virus_1__DENV_1_US_BID_V1744_1995" : [ - "FJ205875" - ], - "Dengue_virus_2__DENV_2_US_BID_V1169_1987" : [ - "EU482573" - ], - "Hepatitis_B_virus__HK1386" : [ - "DQ089785" - ], - "Hepatitis_B_virus__AIDS35" : [ - "JQ801488" - ], - "Maize_chlorotic_mottle_virus__ANETF3S2" : [ - "KP798454" - ], - "Human_poliovirus_1_Mahoney_strain" : [ - "V01148" - ], - "Columbid_circovirus__PL7" : [ - "KF738869" - ], - "Listeria_monocytogenes_serotype_4b_LL195" : [ - "NC_019556" - ], - "Grapevine_fanleaf_virus_F13" : [ - "NC_003623", - "NC_003615" - ], - "Hepatitis_B_virus__GaziantepLCC24" : [ - "AB674415" - ], - "Temperate_fruit_decay_associated_virus__MFB17" : [ - "KR134315" - ], - "Strawberry_latent_ringspot_virus__NCGR_MEN_454_001" : [ - "NC_006965", - "NC_006964" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD234_2013" : [ - "KM229874" - ], - "Jatropha_leaf_curl_virus__AS_NBRI_Jg3" : [ - "KM023145" - ], - "Garlic_virus_E__YH" : [ - "NC_004012" - ], - "JC_polyomavirus__TL_2" : [ - "AB077855" - ], - "Citrobacter_phage_Moogle" : [ - "NC_027293" - ], - "Hepatitis_B_virus__bxa2011" : [ - "KC774407" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD175_2013" : [ - "KM229837" - ], - "Poinsettia_mosaic_virus__JN" : [ - "AB550788" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3589_2007" : [ - "GU131868" - ], - "Faecal_associated_gemycircularvirus_7__as24" : [ - "NC_025733" - ], - "JC_polyomavirus__LZ_11" : [ - "AB113216" - ], - "Rice_grassy_stunt_virus__Shaxian" : [ - "AF511072" - ], - "Jatropha_mosaic_Nigerian_virus__2" : [ - "NC_019034" - ], - "Hepatitis_B_virus_4398_97" : [ - "EU594397" - ], - "Bell_pepper_endornavirus" : [ - "KT149366", - "AB597230" - ], - "Sulfolobus_virus_STSV1" : [ - "NC_006268" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V135_1992" : [ - "EU234062" - ], - "Stx2_converting_phage_1717" : [ - "NC_011357" - ], - "Barley_yellow_mosaic_virus_1__common__ROT" : [ - "AJ515485" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culicidae_USA_425_2004" : [ - "KJ469646" - ], - "West_Nile_virus__WNV_1_US_BID_V4376_2005" : [ - "HM488196" - ], - "Tupaia_paramyxovirus" : [ - "NC_002199" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00070_2001_G1P_8" : [ - "JN651816", - "JN651821", - "JN651814", - "JN651818", - "JN651819", - "JN651815", - "JN651820", - "JN651822", - "JN651813", - "JN651823", - "JN651817" - ], - "Cryphonectria_hypovirus_2_2_NB58" : [ - "NC_003534" - ], - "Alternanthera_yellow_vein_virus__F31" : [ - "EU286798" - ], - "Human_immunodeficiency_virus_1__04ZAPS189B1" : [ - "DQ164117" - ], - "Squash_leaf_curl_virus__WAZ" : [ - "DQ285018" - ], - "Salmonella_phage_SETP7" : [ - "NC_022754" - ], - "Tadarida_brasiliensis_polyomavirus_2" : [ - "NC_026015" - ], - "Hepatitis_B_virus__IBL1577" : [ - "HM363593" - ], - "Hepatitis_B_virus__D20" : [ - "EU939642" - ], - "Wheat_dwarf_virus____Hebei_Shijiazhuang___HBSJZ06_10" : [ - "EF536869" - ], - "multiisoloate" : [ - "NC_022120", - "NC_022108", - "NC_022107", - "NC_022110", - "NC_022106", - "NC_022118", - "NC_022109", - "NC_022119", - "NC_022121", - "NC_022117" - ], - "Citrus_tristeza_virus_VT_FS2_2" : [ - "EU937519" - ], - "Vesivirus_ferret_badger_JX12_China_2012_FBCV_JX12" : [ - "NC_027122" - ], - "Human_herpesvirus_4_HN6" : [ - "AB850653" - ], - "Hepatitis_B_virus__A1_50152" : [ - "FJ692590" - ], - "Equid_herpesvirus_2_86_67" : [ - "NC_001650" - ], - "Classical_swine_fever_virus_Glentorf" : [ - "HCU45478" - ], - "Mycobacterium_phage_MeeZee_MeeZee" : [ - "JN243856" - ], - "West_Nile_virus__TX7827" : [ - "JF415924" - ], - "Hepatitis_B_virus__KD048East" : [ - "EF473977" - ], - "Bean_golden_mosaic_virus__BR_Pai15_11" : [ - "KJ939751" - ], - "East_African_cassava_mosaic_virus_Uganda_2_TZ10" : [ - "AY795988" - ], - "Malvastrum_yellow_vein_Baoshan_virus__Y278" : [ - "NC_012665" - ], - "Propionibacterium_phage_Attacne" : [ - "NC_027629" - ], - "Hepatitis_B_virus__I_T120" : [ - "GU456667" - ], - "Maize_streak_virus__MSV_A_ZA_Mal4_T9_2007" : [ - "FJ882124" - ], - "Hepatitis_E_virus__CU001" : [ - "FJ653660" - ], - "Human_immunodeficiency_virus_1__07BR_FPS812" : [ - "HM026460" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1882_2007" : [ - "FJ410229" - ], - "Hepatitis_B_virus__Leb17" : [ - "JN642165" - ], - "Rabbit_hemorrhagic_disease_virus_NZ54" : [ - "EF558579" - ], - "Cotton_leaf_curl_Burewala_betasatellite__RarbB" : [ - "HF912231" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_91E_597_01_1991" : [ - "KP258732" - ], - "Barley_dwarf_virus__AU196BDV" : [ - "HF968646", - "HF968648", - "HF968649", - "HF968647" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__PY2_7" : [ - "GU723746" - ], - "Rice_black_streaked_dwarf_virus__SDZZ10" : [ - "HM209077" - ], - "Hepatitis_C_virus__isolate_VN405___VN405" : [ - "D84264" - ], - "Shigella_phage_POCJ13" : [ - "NC_025434" - ], - "Tobacco_vein_banding_mosaic_virus__JX" : [ - "JN630471" - ], - "Hepatitis_B_virus__SHB2S1" : [ - "KJ598646" - ], - "Cypovirus_5__China" : [ - "NC_010670", - "NC_010668", - "NC_010669", - "NC_010667", - "NC_010666", - "NC_010665" - ], - "Human_poliovirus_2_Sabine_2_CHN3024_HN_CHN_1999" : [ - "FJ898290" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_pool_MEX_MX10_91M11_2010_IE" : [ - "KC344495" - ], - "Squash_leaf_curl_virus__EG2_1" : [ - "KM595140" - ], - "OkLCV_satDNA_3" : [ - "AF397217" - ], - "Chloris_striate_mosaic_virus__AU_1658_2004" : [ - "JQ948057" - ], - "Turnip_mosaic_virus__AUST27" : [ - "AB989641" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4765_2009" : [ - "HM631860" - ], - "Ageratum_leaf_curl_Cameroon_alphasatellite__CM_AGLD3_Ag_09___AGLD3" : [ - "FN675293" - ], - "Human_papillomavirus_type_16__Qv17286" : [ - "HQ644272" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG624B2_11" : [ - "KJ888064" - ], - "JC_polyomavirus__KH_5" : [ - "AB262404" - ], - "Thermanaerovibrio_acidaminovorans_DSM_6589" : [ - "NC_013522" - ], - "Dengue_virus_4__DENV_4_VE_BID_V1159_2007" : [ - "EU854300" - ], - "Cyanophage_PP" : [ - "NC_022751" - ], - "Squash_leaf_curl_China_virus____Thailand" : [ - "AB330078" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1838_2007" : [ - "FJ461306" - ], - "Hepatitis_B_virus__serum_H2" : [ - "AY862862" - ], - "Beet_curly_top_virus__LRME27607" : [ - "FJ545686" - ], - "Rabbit_hemorrhagic_disease_virus_Hartmannsdorf" : [ - "EF558586" - ], - "Maize_streak_virus__MSV_A_GH_gh136_Asi_2010" : [ - "KJ699323" - ], - "Porcine_circovirus_2_SoPCV2R1" : [ - "FJ233909" - ], - "Hepatitis_B_virus__Leb44" : [ - "JN642151" - ], - "Plum_pox_virus_Winona_W3174" : [ - "AY912055" - ], - "Enterovirus_A71__02_0_068" : [ - "KP691656" - ], - "Simian_immunodeficiency_virus__r90131" : [ - "AY576481" - ], - "Cucumber_mosaic_virus_satellite_RNA_Y" : [ - "MCVSRNAY" - ], - "Olive_latent_virus_1__GM6" : [ - "DQ083996" - ], - "Tomato_leaf_curl_Vietnam_virus__Haiduong_122" : [ - "GQ338768" - ], - "SARS_coronavirus_MA15_MA15_d2om5" : [ - "HQ890546" - ], - "Hepatitis_B_virus__02D02HCC" : [ - "AB014361" - ], - "European_mountain_ash_ringspot_associated_virus__E52992" : [ - "HG799740" - ], - "Dobrava_Belgrade_virus_Esl_81Aa_01" : [ - "AY533120" - ], - "Lactococcus_phage_phiLC3_IMN_C3" : [ - "NC_005822" - ], - "Norovirus_Hu_GII_20107_2009_VNM_Hu_GII_20107_2009_VNM" : [ - "KC409248" - ], - "Hepatitis_B_virus__DEN6077" : [ - "KF779229" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_I_SD_SD183_2013" : [ - "KM229900" - ], - "Sida_micrantha_mosaic_virus__BR_Pda37_05" : [ - "KC706535" - ], - "Hepatitis_B_virus__LWM_1" : [ - "FJ787477" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Henan_A13" : [ - "KJ819935" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_121010" : [ - "KP036503" - ], - "Simian_immunodeficiency_virus__239" : [ - "SIVMM239" - ], - "Toscana_virus_TOSV_Macerata_ITA_1990_2" : [ - "KM275769" - ], - "Hepatitis_B_virus__RST_PAK_7a" : [ - "KF061169" - ], - "Sable_antelope_coronavirus_US_OH1_2003_US_OH1_2003_WD1418" : [ - "EF424621" - ], - "Macroptilium_golden_mosaic_virus__Jamaica1_SpanishTown___SpanishTown" : [ - "EF645647" - ], - "Hepatitis_B_virus__ADVT_Pt__30" : [ - "AB367801" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG640A1_11" : [ - "KJ888073" - ], - "Rice_stripe_virus__YR" : [ - "AY185500" - ], - "Tomato_severe_rugose_virus__BR_Vic18_10" : [ - "JX865631" - ], - "Hepatitis_B_virus__SSC132" : [ - "KJ598701" - ], - "JC_polyomavirus__PML013URNFLC_07" : [ - "JF425555" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_MP6_09" : [ - "HQ393468" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_22_DRC" : [ - "JX458848" - ], - "Foot_and_mouth_disease_virus___type_SAT_1_SAT1bot1_68_sat1bot_iso47" : [ - "AY593845" - ], - "Okra_leaf_curl_Mali_virus" : [ - "EU024120" - ], - "Human_immunodeficiency_virus_1__ML672_3_1997" : [ - "AY322191" - ], - "Rabies_virus_Ni_CE" : [ - "AB128149" - ], - "Hepatitis_B_virus_468_3" : [ - "KR013934" - ], - "Hepatitis_B_virus__N201C_e402" : [ - "KJ173417" - ], - "Human_immunodeficiency_virus_1_97ZA012" : [ - "AF286227" - ], - "Dengue_virus_3__263_BR_PE_05" : [ - "JX669501" - ], - "Lactobacillus_amylovorus_GRL_1112" : [ - "NC_014724", - "NC_015319", - "NC_015322" - ], - "Hepatitis_B_virus__D_PNG_P043PF_2004" : [ - "HQ700524" - ], - "Mycobacterium_phage_Hope" : [ - "GQ303261" - ], - "Human_immunodeficiency_virus_1_HIV_1_recombinants_between_subtypes_B__and_C_HH086" : [ - "AP005207" - ], - "Cotton_leaf_curl_betasatellite" : [ - "AJ297908", - "FN554721", - "GQ249185", - "AY744380", - "FN554722", - "AM774307", - "AM774313", - "AM774306", - "AM774308", - "FN554724", - "AJ299443", - "AM774310", - "AY765255", - "AJ316037", - "AY795608", - "AM774312", - "FN554725", - "FN554720", - "DQ364230", - "AM774311", - "AM774309", - "AM084380", - "NC_003200", - "FN554723", - "FN554719", - "AJ316038", - "AJ291601", - "AJ298903", - "AY795604", - "AM084379", - "GQ259599", - "AJ315700", - "FN432359" - ], - "Hepatitis_B_virus__S121" : [ - "FJ386655" - ], - "Tomato_mosaic_virus__Queensland" : [ - "NC_002692" - ], - "West_Nile_virus__WNV_1_US_BID_V6379_2001" : [ - "KJ501268" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_215_2011" : [ - "KJ686307" - ], - "Human_mastadenovirus_C_human_USA_VT13862_2004_1_P1H1F1" : [ - "JX173086" - ], - "Tomato_mild_mosaic_virus__BR_Vic19_10" : [ - "KC706608" - ], - "Porcine_circovirus_2_SD_ZB1" : [ - "KJ511875" - ], - "Hepatitis_B_virus__G2_4" : [ - "GU815766" - ], - "Lake_Victoria_marburgvirus___Angola2005_Ang0215" : [ - "DQ447658" - ], - "Hepatitis_B_virus__DEN5978" : [ - "KF779222" - ], - "Konjac_mosaic_virus__KoMV_F" : [ - "NC_007913" - ], - "Dengue_virus_3_D3_SG_05K4176DK1_2005" : [ - "EU081219" - ], - "JC_polyomavirus__JCV161FLC_04" : [ - "JF424913" - ], - "Bovine_papillomavirus_type_2" : [ - "PPB2CG" - ], - "Human_herpesvirus_4_Akata" : [ - "KC207813" - ], - "Tomato_leaf_curl_Taiwan_virus__YL7_1" : [ - "GU723714" - ], - "Hepatitis_B_virus__C3" : [ - "HM363612", - "EU939536" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK12" : [ - "KF287139" - ], - "Hepatitis_B_virus__patient_E__HBV_subtype_ayw" : [ - "X65259" - ], - "Hepatitis_B_virus__D2_9" : [ - "GU815666" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1327_2006" : [ - "EU660408" - ], - "Salmonella_enterica_serovar_4_5_12_i__08_1736" : [ - "NC_021820" - ], - "Clostridium_phage_phiCP26F_CP26F" : [ - "NC_019496" - ], - "Hepatitis_B_virus_2_18" : [ - "AF100308" - ], - "Beet_black_scorch_virus__Ir_AzGh1" : [ - "FN543469" - ], - "Hepatitis_B_virus__N35" : [ - "AM184126" - ], - "Wheat_streak_mosaic_virus__Turkey_1" : [ - "AF454455" - ], - "Eilat_virus__EO329" : [ - "NC_018615" - ], - "Simian_immunodeficiency_virus_SIVmac239_92077" : [ - "AY599201" - ], - "Foot_and_mouth_disease_virus___type_O__IND298_634__2013" : [ - "KJ825804" - ], - "Porcine_circovirus_2__QZ05" : [ - "FJ644562" - ], - "BK_polyomavirus__FUJ_6" : [ - "AB369096" - ], - "Dengue_virus_4__DENV_4_CO_BID_V3412_2005" : [ - "GQ868585" - ], - "Astrovirus_MLB3__MLB3_human_Vellore_26564_2004" : [ - "NC_019028" - ], - "Hepatitis_B_virus__E3_2" : [ - "GU815703" - ], - "African_cassava_mosaic_virus__MG_MG15A22_06" : [ - "KJ887835" - ], - "Human_coronavirus_HKU1_N19" : [ - "DQ415896" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_8098_2001" : [ - "EU214601" - ], - "Hepatitis_C_virus__QC383" : [ - "FJ462438" - ], - "West_Nile_virus__WNV_1_US_BID_V7463_2007" : [ - "KJ501168" - ], - "Human_immunodeficiency_virus_1__99TH_R2399" : [ - "AF530576" - ], - "Hepatitis_B_virus__P79" : [ - "GQ477493" - ], - "Actinidia_virus_B__TP7_93B" : [ - "NC_016404" - ], - "JC_polyomavirus__FC_2" : [ - "AB103408" - ], - "SARS_coronavirus_BJ182_4" : [ - "EU371562" - ], - "Human_papillomavirus_type_55" : [ - "HPU31791" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2079_2002" : [ - "FJ639722" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2082_2003" : [ - "FJ639725" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda33_05" : [ - "KC706643" - ], - "Porcine_circovirus_2_XJ_SW2" : [ - "JN639857" - ], - "Enterovirus_D68__BCH895A" : [ - "KF726085" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_B2_32D_P" : [ - "JX570652" - ], - "Human_papillomavirus_type_6__79" : [ - "HG793887" - ], - "Rift_Valley_fever_virus_Sudan_7_2010" : [ - "JQ820487", - "JQ820480" - ], - "Human_papillomavirus_type_33__Qv06895" : [ - "HQ537696" - ], - "Usutu_virus_V51" : [ - "KJ438778" - ], - "Wheat_dwarf_virus__HBSJZ10_23" : [ - "JQ647476" - ], - "Cucumber_mosaic_virus__Datura" : [ - "EF593024" - ], - "JC_polyomavirus__JCV144_29" : [ - "JF424885" - ], - "Human_immunodeficiency_virus_1__0736SV" : [ - "JF804813" - ], - "Thermosphaera_aggregans_DSM_11486" : [ - "NC_014160" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_7b" : [ - "EU384612" - ], - "Tomato_yellow_leaf_curl_virus__LNLY" : [ - "KJ754192" - ], - "Pseudomonas_putida_KT2440" : [ - "NC_002947" - ], - "Human_rotavirus_A_BD431" : [ - "AJ400635" - ], - "Hepatitis_B_virus__N02_C_085B" : [ - "KJ173430" - ], - "Pyrococcus_abyssi_virus_1" : [ - "NC_009597" - ], - "Deep_sea_thermophilic_phage_D6E__D6E" : [ - "NC_019544" - ], - "Hepatitis_B_virus__serum_05_96" : [ - "DQ788728" - ], - "JC_polyomavirus__IT_3" : [ - "AB074583" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G19081_44_419851_2007" : [ - "KR135309" - ], - "Porcine_epidemic_diarrhea_virus_USA_Illinois81_2013" : [ - "KJ645675" - ], - "Rhinovirus_C_025" : [ - "EF582386" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7600_2008" : [ - "KJ189333" - ], - "Human_immunodeficiency_virus_1__A32878" : [ - "AF408632" - ], - "Hepatitis_B_virus__3791v3" : [ - "KF922408" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_105_2012" : [ - "KJ672461" - ], - "Hepatitis_B_virus_1149_8" : [ - "KR013833" - ], - "Hepatitis_B_virus_sub_type_ayw_patient_C1005" : [ - "X72702" - ], - "Ageratum_enation_virus__BG199" : [ - "JX436473" - ], - "Mycobacterium_phage_JAMaL" : [ - "NC_023554" - ], - "Human_metapneumovirus_HMPV_AUS_183349656_2004_B" : [ - "KF530173" - ], - "Hepatitis_B_virus__I_T44" : [ - "GU456652" - ], - "Tick_borne_encephalitis_virus_Primorye_332" : [ - "AY169390" - ], - "Hepatitis_B_virus__dxn1025" : [ - "KC774474" - ], - "Atlantic_salmon_reovirus_TS" : [ - "EF434978", - "EF434979" - ], - "Enterobacteria_phage_T7__K115" : [ - "AY264776" - ], - "Sugarcane_white_streak_virus__SD_VARX_2013" : [ - "KJ187746" - ], - "Hepatitis_delta_virus__D10_B" : [ - "KJ744228" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HC120821_LL" : [ - "KP998408" - ], - "Cucumber_mosaic_virus_satellite_RNA_T27" : [ - "X86419" - ], - "JC_polyomavirus__GH_4" : [ - "AB048546" - ], - "Sclerotinia_sclerotiorum_hypovirulence_associated_DNA_virus_1__SsHADV_1_US_549SR_12" : [ - "KM598384" - ], - "Hepatitis_B_virus__dww1038" : [ - "KC774444" - ], - "Cucumber_mosaic_virus_satellite_RNA_T1" : [ - "DQ785472", - "X86409" - ], - "Human_papillomavirus_type_140__NJ2801C1" : [ - "NC_017996" - ], - "Cotton_leaf_curl_virus_betasatellite__Kashmir_2" : [ - "LN610994" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2180_2001" : [ - "FJ639751" - ], - "Enterobacteria_phage_IME10" : [ - "NC_019501", - "JN600960" - ], - "Tobacco_leaf_curl_Japan_virus__JP2__Nara_TLCV_Jp2" : [ - "AB055008" - ], - "Borna_disease_virus_huP2br" : [ - "AB258389" - ], - "Hepatitis_B_virus__S221" : [ - "FJ386660" - ], - "Pseudomonas_fluorescens_SBW25" : [ - "NC_012660" - ], - "Porcine_circovirus_2__DBN_08" : [ - "FJ660969" - ], - "Variola_virus_Korea_1947__Lee__Masterseed" : [ - "DQ441432" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V88_2003" : [ - "EU255938" - ], - "Norovirus_Hu_GII_10406_2010_VNM_Hu_GII_10406_2010_VNM" : [ - "KC409242" - ], - "Simian_immunodeficiency_virus_SIVmm239_r00032_SIVmm239" : [ - "EU280804" - ], - "Human_herpesvirus_5_BE_2_2012" : [ - "KP745710" - ], - "Duck_hepatitis_A_virus_1__FJ1220" : [ - "KC904272" - ], - "Avian_metapneumovirus___8544" : [ - "DQ666911" - ], - "Hepatitis_B_virus__II_1" : [ - "AY596109" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2858_2006" : [ - "FJ898396" - ], - "Human_immunodeficiency_virus_1__CB347" : [ - "AY900572" - ], - "Hepatitis_B_virus__CAR204" : [ - "AM494718" - ], - "Luffa_puckering_and_leaf_distortion_associated_betasatellite__India_Gurdaspur_Okra_2013___India_Gurdaspur_Okra_2013" : [ - "NC_024373" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda3_05" : [ - "KC706641", - "KC706662" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__JS2011_027" : [ - "KC505130", - "KC505131", - "KC505129" - ], - "Streptococcus_phage_SpSL1" : [ - "NC_027396" - ], - "Cucumber_green_mottle_mosaic_virus__JD8" : [ - "KM873784" - ], - "Tomato_leaf_curl_New_Delhi_virus__New_Delhi" : [ - "JN663867" - ], - "Human_coronavirus_HKU1_N3" : [ - "DQ415903" - ], - "JC_polyomavirus__MC_18" : [ - "AB127000" - ], - "Murine_norovirus_MT30_2" : [ - "AB601769" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2007_2007" : [ - "FJ639690" - ], - "West_Nile_virus__WNV_1_US_BID_V4603_2003" : [ - "HM488223" - ], - "Dengue_virus_2__DENV_2_VN_BID_V752_2004" : [ - "EU482774" - ], - "Human_immunodeficiency_virus_2__7312a" : [ - "HIV7312A" - ], - "Human_immunodeficiency_virus_1__ML1979PCR" : [ - "EU110096" - ], - "African_cassava_mosaic_virus__CF_CF145BE_07" : [ - "KJ887623" - ], - "Human_herpesvirus_4_HN7" : [ - "AB850655" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_65U206_1965_IE" : [ - "KC344446" - ], - "Hepatitis_B_virus__PNF4687" : [ - "KF779335" - ], - "Hepatitis_B_virus__cxa2060" : [ - "KC774324" - ], - "Dengue_virus_2__MD903" : [ - "FM210204" - ], - "Mycobacterium_phage_Catdawg" : [ - "NC_022057" - ], - "Variola_virus_Somalia_1977__V77_1605" : [ - "DQ441439" - ], - "Dobrava_Belgrade_virus_Kurkino_44Aa_98" : [ - "AJ131672" - ], - "Hepatitis_B_virus__BA9" : [ - "AY179734" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3688_2007" : [ - "GU131967" - ], - "Goose_circovirus__TW9_2001" : [ - "AF536939" - ], - "Chicken_anemia_virus__01_4201" : [ - "DQ991394" - ], - "Cucumber_mosaic_virus_237" : [ - "AJ585518" - ], - "Equine_arteritis_virus__S3817" : [ - "GQ903810" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL132A" : [ - "AB985561" - ], - "JC_polyomavirus_243A" : [ - "AY121907" - ], - "Coxsackievirus_A16__PM_12284_99" : [ - "JQ746661" - ], - "Potato_virus_M__Gansu" : [ - "JN835299" - ], - "Hepatitis_B_virus__PNF5680" : [ - "KF779373" - ], - "JC_polyomavirus__KB_29" : [ - "AB362359" - ], - "Streptococcus_suis_05ZYH33" : [ - "NC_009442" - ], - "Hepatitis_B_virus__S624_2" : [ - "EU589345" - ], - "Porcine_circovirus_2__Vos_41178_06" : [ - "EU545547" - ], - "Bluetongue_virus_2_IND1982_01" : [ - "AM900382" - ], - "Human_papillomavirus_type_11__LZod45_11" : [ - "EU918768" - ], - "Hepatitis_B_virus_C0955" : [ - "DQ922650" - ], - "Chloris_striate_mosaic_virus__AU_1649_2004" : [ - "JQ948059" - ], - "Human_immunodeficiency_virus_1__G1p21" : [ - "HM469976" - ], - "Enterobacteria_phage_phiX174__CMMhi" : [ - "AF299306" - ], - "Rice_stripe_virus__YAn04" : [ - "AJ875060", - "AJ871755" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0003" : [ - "KP759651" - ], - "Banana_bunchy_top_virus__TO306" : [ - "JF957656", - "JF957632", - "JF957668", - "JF957644", - "JF957692", - "JF957680" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2304_2001" : [ - "FJ744718" - ], - "Bacillus_phage_Grass" : [ - "NC_022771" - ], - "Tomato_yellow_leaf_curl_virus_Israel_IL_CR_5240_16_2012" : [ - "KF533855" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4729_spleen" : [ - "JF730041" - ], - "Cucurbit_aphid_borne_yellows_virus__CABYV_R_TW82" : [ - "JQ700306" - ], - "Hepatitis_B_virus__1893" : [ - "FJ386600" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG53" : [ - "FJ914393" - ], - "Macroptilium_yellow_spot_virus__BR_Inp1_10" : [ - "JN419018" - ], - "Dengue_virus_3__MKS_0079" : [ - "KC762683" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Moheli_MO09AR2_2009" : [ - "JF909131" - ], - "Tick_borne_encephalitis_virus_IrkutskBR_1434_09" : [ - "KP331442" - ], - "Coxsackievirus_A10_FY04_AH_CHN_2013" : [ - "KP009577" - ], - "Lactobacillus_delbrueckii_bulgaricus_ATCC_11842" : [ - "NC_008054" - ], - "Chickpea_chlorotic_dwarf_virus__I_ErC180_05" : [ - "KC172677" - ], - "Sulfolobus_islandicus_rod_shaped_virus_1" : [ - "NC_004087" - ], - "Bacillus_subtilis_168" : [ - "NC_000964" - ], - "Newcastle_disease_virus__APMV1_Pigeon_NY_USA_0717_2007" : [ - "KC013035" - ], - "Beauveria_bassiana_victorivirus_NZL_1980__6887" : [ - "NC_024151" - ], - "Rubella_virus_TO_336_GMK5" : [ - "AB588192" - ], - "Bacillus_subtilis_spizizenii_TU_B_10" : [ - "NC_016047" - ], - "Xenorhabdus_bovienii_SS_2004" : [ - "NC_013892" - ], - "Hepatitis_B_virus__530_97_3" : [ - "EU872004" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5686_2010" : [ - "JF937628" - ], - "Rabies_virus__JX10_37" : [ - "KF726853" - ], - "Human_papillomavirus_type_6__PV2345" : [ - "JN252314" - ], - "BK_polyomavirus__OKN_48" : [ - "AB365154" - ], - "Salmonella_phage_9NA" : [ - "NC_025443" - ], - "Microcoleus_PCC_7113" : [ - "NC_019760", - "NC_019741", - "NC_019739", - "NC_019743", - "NC_019738", - "NC_019742", - "NC_019740", - "NC_019761", - "NC_019762" - ], - "African_cassava_mosaic_virus__CF_CF9BE_07" : [ - "KJ887584" - ], - "Xylella_fastidiosa_9a5c" : [ - "NC_002488", - "NC_002489", - "NC_002490" - ], - "Dengue_virus_1__DENV_1_VN_BID_V799_2006" : [ - "EU482793" - ], - "Bean_golden_mosaic_virus__BR_Cri12_12" : [ - "KJ939843" - ], - "Crimean_Congo_hemorrhagic_fever_virus_ArD39554" : [ - "DQ211641", - "DQ211628", - "DQ211615" - ], - "Dengue_virus_1__DENV_1_VN_BID_V954_2007" : [ - "EU482499" - ], - "Pseudomonas_phage_vB_PaeS_PAO1_Ab18_Ab18" : [ - "NC_026594" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Oman" : [ - "DQ211619", - "DQ211632", - "DQ211645" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V107_2003" : [ - "EU255996" - ], - "Maize_streak_virus__UMask_26" : [ - "EF547072" - ], - "Acidithiobacillus_caldus_SM_1" : [ - "NC_015853", - "NC_015854", - "NC_015851", - "NC_015852", - "NC_015850" - ], - "Human_respiratory_syncytial_virus_RSV_A_NIV1114046_11" : [ - "KC731482" - ], - "Puumala_virus_Puu_Puu_1324Cg_79" : [ - "Z46942" - ], - "Enterovirus_A71__V04_2218217" : [ - "KC436265" - ], - "Hepatitis_B_virus__11_10165" : [ - "JX096952" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_691" : [ - "KR534518" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_133_2012" : [ - "KJ686137" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_438_01" : [ - "DQ989321" - ], - "Citrus_leaf_blotch_virus__SRA_153" : [ - "NC_003877" - ], - "Dengue_virus_2__DC677Y12" : [ - "KM279553" - ], - "Ageratum_enation_virus__Palampur" : [ - "FN794198", - "HE861940", - "FN794201" - ], - "Wheat_dwarf_virus__FR68WDV" : [ - "HF968637", - "HF968638" - ], - "Porcine_circovirus_2_PCV2_herd_B" : [ - "EU136718" - ], - "BK_polyomavirus_Fin_4" : [ - "AB269823" - ], - "Streptococcus_agalactiae_2_22" : [ - "NC_021195" - ], - "East_African_cassava_mosaic_virus_Uganda_Uganda_Chad_Ndokono_TD1_2008" : [ - "HE814064" - ], - "Chikungunya_virus_JKT23574" : [ - "HM045791" - ], - "Hepatitis_B_virus__MOD_4567" : [ - "GQ183462" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7576_2007" : [ - "KJ189318" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2705_2006" : [ - "FJ882531" - ], - "Duck_circovirus__CD13056" : [ - "KP229375" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3470_2007" : [ - "GU131862" - ], - "Yersinia_pestis_biovar_Medievalis_Harbin_35" : [ - "NC_017264", - "NC_017263", - "NC_017266", - "NC_017265" - ], - "Tomato_severe_rugose_virus__BR_Vic19_10" : [ - "JX865632" - ], - "Squash_leaf_curl_virus__PA1_J249" : [ - "KM595221" - ], - "Human_rotavirus_A_Wa_variant_Wag5re" : [ - "FJ423147", - "FJ423156", - "FJ423154", - "FJ423149", - "FJ423150", - "FJ423153", - "FJ423151", - "FJ423152", - "FJ423146", - "FJ423148", - "FJ423155" - ], - "Brucella_canis_ATCC_23365" : [ - "NC_010104", - "NC_010103" - ], - "Hepatitis_B_virus__8120" : [ - "KJ470895" - ], - "Hepatitis_B_virus__patient_452b1" : [ - "DQ993696" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_FF1_Before" : [ - "EF532806" - ], - "Tomato_yellow_leaf_curl_virus___Il__CN_SH_Sweetpepper_08" : [ - "GU434144" - ], - "Hepatitis_B_virus__HBV_VT140" : [ - "AB112065" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2004_2_1" : [ - "KC862585" - ], - "Human_rhinovirus_B72_ATCC_VR_1182" : [ - "FJ445153" - ], - "Mumps_virus" : [ - "AX081123", - "AF314559", - "AX081134", - "AX081133" - ], - "Methanotorris_igneus_Kol_5" : [ - "NC_015562" - ], - "Tobacco_mosaic_virus__Xunyang_2" : [ - "HE818453" - ], - "Enterococcus_phage_IME_EFm1" : [ - "NC_024356" - ], - "Porcine_circovirus_2__DZ205" : [ - "FJ644559" - ], - "JC_polyomavirus__GR_8" : [ - "AB372036" - ], - "Turnip_mosaic_virus__TUR1" : [ - "AB362512" - ], - "Hepatitis_C_virus_subtype_1b_HC_J4_pCV_J4L4S" : [ - "AF054249" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1696_2007" : [ - "FJ390387" - ], - "Seoul_virus_Humber" : [ - "JX879769", - "JX879770", - "KM948596", - "KM948597", - "KM948598", - "JX879768" - ], - "Maize_streak_virus__MSV_A_KE_Kan_K4_1998" : [ - "FJ882091" - ], - "Streptococcus_pyogenes_SSI_1" : [ - "NC_004606" - ], - "Ophiostoma_mitovirus_4" : [ - "NC_004052" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1887_2007" : [ - "FJ461323" - ], - "Hepatitis_B_virus__V87" : [ - "HM363596" - ], - "Porcine_circovirus_2__HNXTPC192" : [ - "KM235960" - ], - "Human_immunodeficiency_virus_1__04ZASK171B1" : [ - "DQ351217" - ], - "Canine_parvovirus_2c__UY370c" : [ - "KM457142" - ], - "Human_papillomavirus_type_8" : [ - "PPH8CG" - ], - "Hepatitis_B_virus__GU438" : [ - "GQ161801" - ], - "Porcine_circovirus_2_JZ" : [ - "DQ206444" - ], - "Tuber_aestivum_mitovirus__Jaszag_2" : [ - "NC_015629" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_98_2013" : [ - "KM042388" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7570_2009_A" : [ - "KJ627403" - ], - "Toscana_virus_TOSV_Firenze_ITA_1995_3" : [ - "KM275779" - ], - "Norovirus_Hu_GII_4_Iwate3_2008_JP_Hu_GII_4_Iwate3_2008_JP" : [ - "AB541272" - ], - "Burkholderia_mallei_ATCC_23344" : [ - "NC_006348", - "NC_006349" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PAN_212857_2003_ID" : [ - "KC344475" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__Himachal" : [ - "FR823510" - ], - "Hepatitis_B_virus__G244" : [ - "JQ040173" - ], - "Hepatitis_B_virus__2493" : [ - "FJ386643" - ], - "Human_papillomavirus_type_16__Qv00512" : [ - "HQ644257" - ], - "Chlamydia_trachomatis_L2b_UCH_1_proctitis" : [ - "NC_010280" - ], - "Potato_virus_Y__GBVC__PVY_9_NTN" : [ - "JQ969037" - ], - "Hepatitis_B_virus_1456_24a" : [ - "KR014063" - ], - "Porcine_epidemic_diarrhea_virus__BJ_2011_1" : [ - "JN825712" - ], - "Sweet_potato_leaf_curl_virus_Puerto_Rico_SPLCV_PR_BR_Uru_08" : [ - "HQ393442" - ], - "Human_immunodeficiency_virus_1__05MYKL043_1" : [ - "DQ366666" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3952_2008" : [ - "JF937604" - ], - "Porcine_circovirus_2_PT_41060_06" : [ - "HQ831528" - ], - "Dengue_virus_1_D1_SG_05K814DK1_2005" : [ - "EU081226" - ], - "Sclerotinia_sclerotiorum_dsRNA_mycovirus_L__Sunf_M" : [ - "NC_017915" - ], - "Hepatitis_B_virus__E1_10" : [ - "GU815679" - ], - "Rabies_virus_Flury_LEP" : [ - "GU565703" - ], - "Infectious_salmon_anemia_virus__390_98_NEVIS" : [ - "AJ514403" - ], - "Sida_micrantha_mosaic_virus__A2B2" : [ - "NC_005331", - "NC_005330" - ], - "Chlamydia_psittaci_CP3" : [ - "NC_018634", - "NC_018625" - ], - "Enterobacteria_phage_WA11" : [ - "DQ079895" - ], - "Vibrio_phage_QH" : [ - "NC_027397" - ], - "Hepatitis_B_virus__G186" : [ - "JQ040156" - ], - "Duck_hepatitis_A_virus_1_C_QYD" : [ - "GU066825" - ], - "Hepatitis_B_virus__S3_2" : [ - "EU916212" - ], - "Hepatitis_B_virus__I51" : [ - "FJ562236" - ], - "Staphylococcus_phage_PSa3" : [ - "HF937074" - ], - "Hepatitis_B_virus__QHN_52" : [ - "HM750142" - ], - "SARS_coronavirus__HC_SZ_79_03" : [ - "AY545914" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_229_2011" : [ - "KJ686223" - ], - "Tomato_yellow_leaf_curl_virus__LNFS" : [ - "KJ754188" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP01318_2012" : [ - "KJ627340" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_D_SD_FR36_2008" : [ - "KM229787" - ], - "Hepatitis_B_virus__GaziantepHCCC6" : [ - "AB674412" - ], - "Duck_circovirus__DB10_9" : [ - "KP229365" - ], - "Hepatitis_delta_virus_Miyako_JA_M15" : [ - "AB118830" - ], - "Hepatitis_E_virus__KNIH_hHEV4" : [ - "FJ763142" - ], - "Squash_leaf_curl_virus__LB3_7_43" : [ - "KM595137" - ], - "Hepatitis_B_virus__QQB36" : [ - "FR714498" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V403_2006" : [ - "EU256052" - ], - "Cotton_leaf_curl_Kokhran_virus__Faisalabad1___Faisalabad_x2f" : [ - "AJ496286" - ], - "Dengue_virus_2__FGU_Jan1_06" : [ - "EU920844" - ], - "West_Nile_virus__WNV_1_US_BID_V4615_2003" : [ - "HM756656" - ], - "HBV_genotype_C_C0901192_NT18" : [ - "AB540585" - ], - "Tomato_common_mosaic_virus__BR_Pda19_05" : [ - "KC706603" - ], - "Soybean_dwarf_virus_YP_M94_1" : [ - "AB038148" - ], - "Human_T_lymphotropic_virus_1_Melanesia_mel5" : [ - "HTVMEL5" - ], - "Enterobacteria_phage_phiX174__SCS2" : [ - "AF176031" - ], - "Papaya_leaf_curl_China_virus_HeNZM1__HeNZM1" : [ - "FN256260" - ], - "Eggplant_mottled_dwarf_virus__Iran_SH_eg" : [ - "KC905081" - ], - "Coxsackievirus_A8__CVA8_SZ141_CHN_2012" : [ - "KM609478" - ], - "Oropouche_virus" : [ - "NC_005777", - "NC_005776" - ], - "Bluetongue_virus_23_IND1997_01" : [ - "AM900381" - ], - "West_Nile_virus__WNV_1_BID_V5052" : [ - "JN819324" - ], - "Bacillus_phage_TP21_L" : [ - "NC_011645" - ], - "Hepatitis_B_virus__MLT0574" : [ - "KF779284" - ], - "Hepatitis_B_virus__C8" : [ - "EU939537", - "HM363600", - "AF461363" - ], - "Lactococcus_Phage_ASCC395" : [ - "JQ740799" - ], - "Cycloclasticus_P1" : [ - "NC_018697" - ], - "Cotton_leaf_crumple_virus____California" : [ - "AY742221", - "AY742220" - ], - "Hepatitis_B_virus__cur1041" : [ - "KC774235" - ], - "Dugbe_virus__ArD_16095" : [ - "AF434162" - ], - "Pokeweed_mosaic_virus__PkMV_MD" : [ - "JQ609096" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT36A77_2004" : [ - "JF909239" - ], - "BK_polyomavirus__ESP_2" : [ - "AB263915" - ], - "Human_rotavirus_A_A28" : [ - "ROHSG10" - ], - "Hepatitis_C_virus__isolate_VN235___VN235" : [ - "D84263" - ], - "Macrococcus_caseolyticus_JCSC5402" : [ - "NC_012003", - "NC_011997", - "NC_011996", - "NC_012001", - "NC_011995", - "NC_012002", - "NC_012000", - "NC_011998", - "NC_011999" - ], - "Dobrava_Belgrade_virus__Ap_1_Goryachiy_Klyuch_2000" : [ - "AF442622" - ], - "Sida_golden_yellow_vein_virus_Malvastrum_CU_Camaguey_177_1_09_177_1" : [ - "JN411689", - "JN411690" - ], - "Porcine_circovirus_2_FMV05_7537" : [ - "DQ220736" - ], - "Hepatitis_B_virus__AIDS17" : [ - "JQ801475" - ], - "Hepatitis_B_virus_OS9" : [ - "EU155822" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1_4P20_2010_c1_4P20" : [ - "KF514392" - ], - "Classical_swine_fever_virus_HNSD_2012" : [ - "JX218094" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_14603_2001" : [ - "DQ404159" - ], - "Melon_necrotic_spot_virus_Chiba" : [ - "AB250684" - ], - "Southern_rice_black_streaked_dwarf_virus__JH1" : [ - "KJ493786", - "KJ513447" - ], - "Dromedary_camel_coronavirus_HKU23_HKU23_265F" : [ - "KF906249" - ], - "Bluetongue_virus_19__RSArrrr_19" : [ - "AJ586722" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD274_2013" : [ - "KM229895" - ], - "Tahyna_virus_4020" : [ - "KF361882" - ], - "Newcastle_disease_virus__Chicken_China_Tianjin_02_2007" : [ - "KC542898" - ], - "Bean_golden_mosaic_virus__BgV03B_1_C43" : [ - "JF694455" - ], - "Japanese_encephalitis_virus_SC04_17" : [ - "GU187972" - ], - "Human_papillomavirus_type_16__Qv24723" : [ - "HQ644280" - ], - "Maize_streak_virus__MSV_A_KE_Nye2_Ken12_2008" : [ - "HQ693333" - ], - "Chicory_yellow_mottle_virus_satellite_RNA" : [ - "NC_003971" - ], - "Chloroherpeton_thalassium_ATCC_35110" : [ - "NC_011026" - ], - "Hepatitis_B_virus__WY_NJ_64" : [ - "JX026885" - ], - "Venezuelan_equine_encephalitis_virus_ZPC738" : [ - "AF100566" - ], - "West_Nile_virus_EthAn4766" : [ - "AY603654" - ], - "Tomato_spotted_wilt_virus__T" : [ - "AY870392", - "AY870389" - ], - "Beak_and_feather_disease_virus_BFDV_ID_RL_05_1174" : [ - "KF673337" - ], - "Rabbit_coronavirus_HKU14_HKU14_1" : [ - "NC_017083" - ], - "KI_polyomavirus__Brisbane_002" : [ - "EF520288" - ], - "JC_polyomavirus__ET_5" : [ - "AB126985" - ], - "JC_polyomavirus__JCV135_37" : [ - "JF424862" - ], - "JC_polyomavirus__JCV144_13" : [ - "JF424879" - ], - "BK_polyomavirus_Gardner" : [ - "LC029411", - "LC029412" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0156" : [ - "KP759698" - ], - "Salmonid_alphavirus_subtype_3__SAV3_4_SF_10" : [ - "KC122923" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA4224_2008" : [ - "KJ672556" - ], - "Hepatitis_B_virus__SHB25" : [ - "KJ598652" - ], - "Hepatitis_B_virus__PG_52" : [ - "KF471644" - ], - "Enterococcus_phage_VD13_VD13" : [ - "NC_024212" - ], - "Papaya_leaf_curl_China_virus__F25" : [ - "AM691552" - ], - "Foot_and_mouth_disease_virus___type_C_C_S8" : [ - "AF274010" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX01_32_2001_IE" : [ - "KC344515" - ], - "Porcine_circovirus_2_BP_PCV2d" : [ - "KM924369" - ], - "Bovine_parainfluenza_virus_3__TVMDL15" : [ - "KJ647284" - ], - "Beet_curly_top_Iran_virus__IR_Nesh_115_Bean_10" : [ - "JX458087" - ], - "Rotavirus_G4__Rota_106" : [ - "AB012075" - ], - "Temperate_fruit_decay_associated_virus__MFBpe35g" : [ - "KR134348" - ], - "Hepatitis_B_virus__H2814" : [ - "KP322602" - ], - "Hepatitis_B_virus_HB547" : [ - "HM011483" - ], - "Enterovirus_B83_USA_CA76_10392" : [ - "AY843301" - ], - "Squash_leaf_curl_virus__IL3_100" : [ - "KM595123" - ], - "Dengue_virus_1_D1_SG_05K4443DK1_2005" : [ - "EU081267" - ], - "Alfalfa_mosaic_virus__Chinese" : [ - "DQ139866" - ], - "Dengue_virus_2__DENV_2_US_BID_V1463_2000" : [ - "EU687224" - ], - "Human_poliovirus_1__HAI00003" : [ - "AF405669" - ], - "Maize_streak_virus__MSV_B2_Ug_BusC_2005" : [ - "EU628612" - ], - "Norovirus_GII_Hu_JP_2012_GII_Pe_GII_4_Sydney2012_Fukuyama_5__Fukuyama_5" : [ - "KJ196281" - ], - "Bat_picornavirus_2_MH9F" : [ - "NC_015941" - ], - "Foot_and_mouth_disease_virus___type_O_O_YM_YN_2000" : [ - "HQ412603" - ], - "Porcine_circovirus_2__181_07_22" : [ - "HQ591373" - ], - "Toscana_virus_TOSV_Siena_ITA_1992" : [ - "KM275771" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C36" : [ - "KJ019161" - ], - "Torque_teno_virus__TTV_HD16l__gbDhDi43_22" : [ - "FR751487" - ], - "European_bat_lyssavirus_1__08120FRA" : [ - "EU626551" - ], - "Human_papillomavirus_type_18__Rw750" : [ - "KC470217" - ], - "Hepatitis_B_virus__SHB83" : [ - "KJ598770" - ], - "Hepatitis_B_virus__FMU023" : [ - "AY238972" - ], - "Penicillium_stoloniferum_virus_S_ATCC_14586" : [ - "AM040149", - "AM040148" - ], - "Viral_hemorrhagic_septicemia_virus_Fil3_Fil3" : [ - "NC_000855" - ], - "Southern_rice_black_streaked_dwarf_virus__Thai_Binh_2" : [ - "KM576883", - "KM576896" - ], - "Banana_streak_MY_virus" : [ - "NC_006955" - ], - "Hepatitis_B_virus__M118_153" : [ - "EU305546" - ], - "Porcine_parvovirus__PPV2010" : [ - "JN872448" - ], - "Canine_distemper_virus_007Lm_VDS" : [ - "AB823706" - ], - "Blueberry_latent_virus__AR" : [ - "HM029248" - ], - "Human_bocavirus_JPOC08_012" : [ - "AB481082" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1551" : [ - "KR534562" - ], - "Enterovirus_A71__S40221_SAR_00" : [ - "DQ341358" - ], - "Human_papillomavirus_type_11__LP229" : [ - "HE611274" - ], - "Snow_goose_hepatitis_B_virus__SGHBV1_7" : [ - "AF110999" - ], - "Hepatitis_B_virus__patient_4727" : [ - "AF418682", - "AF418683" - ], - "Wheat_dwarf_virus__HBSJZ07_1" : [ - "KJ536089" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_78_2013" : [ - "KM042384" - ], - "Tomato_severe_rugose_virus__BR_Vic04_09" : [ - "JX865618" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_121041" : [ - "KP118883" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_3_2013" : [ - "KF186565" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3987_2008" : [ - "GU131760" - ], - "Arracacha_virus_B_oca" : [ - "NC_020897" - ], - "Beak_and_feather_disease_virus__QD_CN01" : [ - "GQ386944" - ], - "Bean_golden_mosaic_virus__BR_Par25_12" : [ - "KJ939812" - ], - "Porcine_circovirus_2__PCV2MV" : [ - "HF542107" - ], - "Tula_virus_Tula_Moravia_5294Ma_94" : [ - "Z48741" - ], - "Enterovirus_C99__YT23_SD_CHN_11" : [ - "KJ857507" - ], - "Hepatitis_B_virus_544_7a" : [ - "KR013966" - ], - "Hepatitis_B_virus_258_9a" : [ - "KR013897" - ], - "Zucchini_yellow_mosaic_virus__G73" : [ - "JN192418" - ], - "Mycobacterium_tuberculosis_H37Ra" : [ - "NC_009525" - ], - "Hepatitis_B_virus_1130_17a" : [ - "KR013999" - ], - "Japanese_encephalitis_virus_YUNNAN0902" : [ - "JQ086763" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Abohar2_2010" : [ - "JF502382" - ], - "Norovirus_Hu_GII_4_Aichi2_2008_JP_Hu_GII_4_Aichi2_2008_JP" : [ - "AB541204" - ], - "Feline_calicivirus_F65" : [ - "AF109465" - ], - "JC_polyomavirus__FC_4a" : [ - "AB103411" - ], - "Lassa_mammarenavirus_Macenta" : [ - "AY628201", - "AY628200" - ], - "Hepatitis_B_virus_1385_7" : [ - "KR014060" - ], - "Norovirus_Hu_GII_20108_2009_VNM_Hu_GII_20108_2009_VNM" : [ - "KC409249" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1961_2008" : [ - "FJ410277" - ], - "Human_papillomavirus_type_144__CL3740" : [ - "NC_017997" - ], - "Streptococcus_suis_GZ1" : [ - "NC_017617" - ], - "Citrus_vein_enation_virus__VE_1" : [ - "NC_021564" - ], - "Abutilon_mosaic_Brazil_virus__BgV06B_1_C77" : [ - "NC_016577" - ], - "African_horse_sickness_virus__HS_128_06" : [ - "KP009657", - "KP009659", - "KP009655", - "KP009651", - "KP009656", - "KP009658", - "KP009654", - "KP009653", - "KP009660" - ], - "Hepatitis_B_virus__S633" : [ - "FJ386673" - ], - "Human_respiratory_syncytial_virus_02_000467" : [ - "JX576762" - ], - "Tomato_common_mosaic_virus__BR_Pda53_05" : [ - "KC706591" - ], - "Caulobacter_K31" : [ - "NC_010338", - "NC_010333", - "NC_010335" - ], - "Human_immunodeficiency_virus_1_04FR_AUK" : [ - "EU448295" - ], - "Macroptilium_yellow_mosaic_virus__Mona" : [ - "EF582840", - "EF582841" - ], - "Squash_leaf_curl_China_virus____India_Varanasi_Pumpkin___Varanasi" : [ - "FJ859881" - ], - "Porcine_circovirus_2_XJ0904" : [ - "GU370064" - ], - "Hepatitis_B_virus__PNF5296" : [ - "KF779362" - ], - "Rubella_virus_Matsuura_vaccine" : [ - "AB588191" - ], - "Wood_mouse_herpesvirus_WM8" : [ - "GQ169129" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_82G_013_01_1982" : [ - "KP258731" - ], - "Hepatitis_B_virus__J258" : [ - "GQ377643" - ], - "Human_papillomavirus_type_45__RW894" : [ - "KC470257" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7624_2011" : [ - "KJ189348" - ], - "Hepatitis_B_virus__A1_50088" : [ - "FJ692582" - ], - "Porcine_epidemic_diarrhea_virus_USA_Iowa103_2013" : [ - "KJ645694" - ], - "Methanococcus_maripaludis_C5" : [ - "NC_009135", - "NC_009136" - ], - "Torque_teno_virus__JA4" : [ - "AF122917" - ], - "Corynebacterium_efficiens_YS_314" : [ - "NC_004369", - "NC_004320", - "NC_004319" - ], - "Buchnera_aphidicola_Bp__Baizongia_pistaciae" : [ - "NC_004545", - "NC_004555" - ], - "Maize_streak_virus__MSV_A_MZ_Pem1_Moz36_2007" : [ - "HQ693362" - ], - "Human_papillomavirus_KC5__KC5" : [ - "NC_026946" - ], - "Toscana_virus_TOSV_Siena_ITA_1984" : [ - "KM275237" - ], - "South_African_cassava_mosaic_virus__MG_MG6A1_05" : [ - "KJ887826" - ], - "Dengue_virus_2__DENV_2_NI_BID_V5072_2009" : [ - "JF730051" - ], - "Human_papillomavirus_type_6__LP211" : [ - "HE962029" - ], - "SARS_coronavirus_MA15_MA15" : [ - "FJ882957" - ], - "Tomato_leaf_curl_Palampur_virus__Lahore" : [ - "KC904968" - ], - "Hepatitis_B_virus__LT1" : [ - "DQ329356", - "DQ329357" - ], - "Ageratum_leaf_curl_Cameroon_alphasatellite__CM_ODL1D2_Ok_09___ODL1D2" : [ - "FN675294" - ], - "Escherichia_coli_SE11" : [ - "NC_011411", - "NC_011415", - "NC_011408", - "NC_011407", - "NC_011413", - "NC_011419", - "NC_011416" - ], - "Spinach_severe_curly_top_virus_Arizona_09_10_8_2009_09_10_8" : [ - "NC_014631" - ], - "Human_poliovirus_2_NIE1118448" : [ - "KJ170545" - ], - "Vibrio_phage_kappa" : [ - "NC_010275" - ], - "Ntaya_virus__IPDIA" : [ - "NC_018705" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA41" : [ - "KF670660" - ], - "Hepatitis_B_virus__QH_35" : [ - "JF491451" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9507_2013" : [ - "KJ643560" - ], - "Maize_streak_virus__MSV_A_NG_ng5_Zar_2011" : [ - "KJ437662" - ], - "Barley_yellow_mosaic_virus__Yancheng" : [ - "NC_002990", - "NC_002991" - ], - "Nam_Dinh_virus__02VN178" : [ - "NC_015874" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Siguiri_517" : [ - "KR534509" - ], - "Mossman_virus" : [ - "NC_005339" - ], - "Enterobacteria_phage_WA13_sensu_lato" : [ - "NC_007821" - ], - "Streptococcus_pyogenes_phage_315_1" : [ - "NC_004584" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD150_2013" : [ - "KM229819" - ], - "Hepatitis_B_virus__C155" : [ - "EU859946" - ], - "Human_immunodeficiency_virus_1__C_96BW05_04" : [ - "AF110968" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC43AO3_2009" : [ - "JF909118" - ], - "Zucchini_yellow_mosaic_virus__F73" : [ - "JN192411" - ], - "Porcine_circovirus_2__GY06" : [ - "FJ644921" - ], - "Porcine_circovirus_2__DE263_13" : [ - "KP698399" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3851" : [ - "KM233112" - ], - "Human_immunodeficiency_virus_1__C_IN_04_NIRT379_1" : [ - "KF766537" - ], - "Rickettsia_bellii_RML369_C" : [ - "NC_007940" - ], - "Human_immunodeficiency_virus_1__WC10P_1" : [ - "AY314044" - ], - "Bacillus_phage_phi29" : [ - "NC_011048" - ], - "Grapevine_Pinot_gris_virus__Mer" : [ - "KM491305" - ], - "West_Nile_virus__WNV_1_US_BID_V4623_2008" : [ - "HM488238" - ], - "Dengue_virus_2_ThNH76_93" : [ - "AF169687" - ], - "Minute_virus_of_mice_m" : [ - "DQ196317" - ], - "Hepatitis_B_virus__LAMr_Pt__21" : [ - "AB367412" - ], - "Hepatitis_E_virus__IND_HEV_FHF3_2005" : [ - "JF443724" - ], - "Norovirus_Hu_GI_1_8UIIIf_1973_USA_Hu_GI_1_8UIIIf_1973_USA" : [ - "KF429774" - ], - "Porcine_circovirus_2__ZQ3" : [ - "KC514981" - ], - "Porcine_circovirus_2_PM172" : [ - "KJ094604" - ], - "Human_immunodeficiency_virus_1__03ZAPS024MB1" : [ - "DQ396367" - ], - "Duck_astrovirus_1_DA08" : [ - "FJ919227" - ], - "European_mountain_ash_ringspot_associated_virus__E53116" : [ - "HG799725" - ], - "Southern_rice_black_streaked_dwarf_virus__Son_La_1" : [ - "KM576893" - ], - "Salmonella_phage_Fels_2" : [ - "NC_010463" - ], - "Norovirus_Hu_GII_4_Kenepuru_NZ327_2006_NZL_Hu_NZ327_2006_NZL" : [ - "EF187497" - ], - "Chicken_picornavirus_1__100C" : [ - "KF979332" - ], - "Tomato_spotted_wilt_virus__YNrp" : [ - "KM657117", - "KM657120", - "KM657114" - ], - "Ferret_hepatitis_E_virus_FRHEV20" : [ - "JN998607" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1991_8_1" : [ - "Z75886" - ], - "West_African_Asystasia_virus_1" : [ - "NC_016575" - ], - "Macroptilium_yellow_spot_virus__BR_Sti2_11" : [ - "KJ939860" - ], - "Sida_leaf_curl_virus__61" : [ - "DQ641706" - ], - "Dengue_virus_3__DENV_3_KH_BID_V4315_2008" : [ - "HM631854" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4796_2009" : [ - "HM631856" - ], - "Human_papillomavirus_type_20" : [ - "HPU31778" - ], - "Newcastle_disease_virus_mottled_duck_US_TX__01_130_2001" : [ - "GQ288391" - ], - "Infectious_flacherie_virus_IFV_India" : [ - "HM569717" - ], - "Duck_circovirus__QZ37_2012" : [ - "KC460535" - ], - "Human_papillomavirus_type_35" : [ - "PPH35CG" - ], - "Hepatitis_B_virus__patient5" : [ - "AB300363" - ], - "Cauliflower_mosaic_virus__TUR263" : [ - "AB863185" - ], - "Tomato_yellow_leaf_curl_China_virus__Y295" : [ - "AM260703" - ], - "Tobacco_mosaic_virus__Tianzhu_1" : [ - "HE818444" - ], - "Hepatitis_B_virus__SHB37" : [ - "KJ598669" - ], - "Human_respiratory_syncytial_virus_A_WI_629_3734_98" : [ - "JF920059" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3705_2007" : [ - "KF955427" - ], - "Hepatitis_B_virus_B0949" : [ - "DQ980549" - ], - "Soybean_mosaic_virus__WS32" : [ - "FJ640954" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_KWT04_2011" : [ - "KM188461" - ], - "Citrus_tatter_leaf_virus_CTLV_XHC" : [ - "KC588947" - ], - "Canine_parvovirus_2c__UY95" : [ - "KM457109" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2870_2006" : [ - "GQ199840" - ], - "Respiratory_syncytial_virus_B_WI_629_Q0190_10" : [ - "JN032120" - ], - "Chickpea_chlorotic_dwarf_virus__PK37" : [ - "KM377670" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__SD_WM_tom2_11" : [ - "KC763632" - ], - "Turnip_crinkle_virus_virulent_satellite_RNA_C" : [ - "NC_006451" - ], - "Porcine_circovirus_2_GX0841b" : [ - "GQ359004" - ], - "Hepatitis_B_virus_551_1" : [ - "KR013968", - "KR013969" - ], - "Hepatitis_B_virus_1368_27" : [ - "KR014045" - ], - "Norovirus_Hu_GII_4_Hokkaido4_2008_JP_Hu_GII_4_Hokkaido4_2008_JP" : [ - "AB541266" - ], - "Malvastrum_leaf_curl_Guangdong_virus__GD6" : [ - "NC_008316" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC12B61_2008" : [ - "JF909090" - ], - "Cotton_leaf_curl_Multan_virus__Sa_3" : [ - "KM096471" - ], - "Enterovirus_C__V2_SAK" : [ - "HQ738287" - ], - "Norovirus_Hu_GII_4_Miyazaki12_2008_JP_Hu_GII_4_Miyazaki12_2008_JP" : [ - "AB541286" - ], - "Hepatitis_B_virus__EN76_LC" : [ - "JN664943" - ], - "Hepatitis_B_virus__M40" : [ - "GQ924622" - ], - "Hepatitis_B_virus__ZADGM501" : [ - "GQ184326" - ], - "Hepatitis_B_virus__Bc" : [ - "GQ205440" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Forecariah_1571" : [ - "KR534566" - ], - "Porcine_circovirus_2_BL" : [ - "AY682990" - ], - "Maize_streak_virus__MSV_A_TD_Dja_Mic26_1987" : [ - "FJ882106" - ], - "Dicliptera_yellow_mottle_virus" : [ - "NC_003856", - "NC_003857" - ], - "Tomato_yellow_leaf_curl_China_virus__SC176" : [ - "JX679251" - ], - "Streptococcus_lutetiensis_033" : [ - "NC_021900" - ], - "Rabies_virus_SAD1_3670_var_1" : [ - "EF206717" - ], - "Helicobacter_pylori_Gambia94_24" : [ - "NC_017364", - "NC_017371" - ], - "Hepatitis_B_virus__JFA3820" : [ - "KF779254" - ], - "Leek_yellow_stripe_virus__LYSV_MG" : [ - "KP258216" - ], - "Swine_vesicular_disease_virus_HK_70" : [ - "AY429470" - ], - "Human_immunodeficiency_virus_1__85037" : [ - "GU595155" - ], - "Japanese_encephalitis_virus_XZ0934" : [ - "JF915894" - ], - "Pebjah_virus__I621" : [ - "NC_027124" - ], - "Hepatitis_B_virus__ZY041025" : [ - "AY800390" - ], - "Dengue_virus_2__DENV_2_NI_BID_V517_2005" : [ - "EU482751" - ], - "JC_polyomavirus__SK_3" : [ - "AB118652" - ], - "Tomato_leaf_curl_Philippines_virus__P96" : [ - "EU487035" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2493_2007" : [ - "FJ882584" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2942_2000" : [ - "FJ898466" - ], - "Paenibacillus_JDR_2" : [ - "NC_012914" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_1___strain_IbAr22619__IbAr22619_NIG1967_01" : [ - "AM745012", - "AM745016", - "AM745014", - "AM745009", - "AM745008", - "AM745013", - "AM745010", - "AM745007", - "AM745011", - "AM745015" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9506_2013" : [ - "KJ643559" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_1___strain_New_Jersey__New_Jersey_USA1955_01" : [ - "NC_013396", - "NC_013400", - "NC_013399", - "NC_013397", - "NC_013401", - "NC_013398", - "NC_013402", - "NC_013405", - "NC_013403", - "NC_013404" - ], - "Human_immunodeficiency_virus_1__GHNJ188" : [ - "AB231896" - ], - "Duck_circovirus__D11_JW_013" : [ - "KC851808" - ], - "Human_papillomavirus_type_6__77" : [ - "HG793885" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2075_2001" : [ - "GQ868626" - ], - "Black_medic_leafroll_virus__Stadl_Paura_3" : [ - "KC978946", - "KC978945", - "KC978944", - "KC978947" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_EuroPRRSV" : [ - "AY366525" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8507_2003" : [ - "KJ627715" - ], - "Mycobacterium_phage_Zaka" : [ - "NC_022985" - ], - "Enterobacteria_phage_ID32" : [ - "DQ079871" - ], - "Pelargonium_vein_banding_virus" : [ - "NC_013262" - ], - "Human_adenovirus_7_vaccine_strain" : [ - "AY495969" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143415" : [ - "KR653248" - ], - "Croceibacter_phage_P2559S" : [ - "NC_018276" - ], - "Dengue_virus_1__DENV_1_NI_BID_V519_2005" : [ - "FJ850114" - ], - "Enterobacteria_phage_BZ13_Enterobacteria_phage_GA" : [ - "NC_001426" - ], - "Rotavirus_A_pheasant_HUN_2008_Phea14246_Hun_08" : [ - "FN393054" - ], - "Porcine_circovirus_2_140_03_IB_140_03_Br" : [ - "KC835190" - ], - "Sin_Nombre_virus_SN_77734" : [ - "AF281851" - ], - "Human_papillomavirus_type_18__Qv17199" : [ - "EF202152" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Kindia_1648" : [ - "KR534569" - ], - "Foot_and_mouth_disease_virus___type_O__O_S10KOR_2002" : [ - "KF694740" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP00604_2011" : [ - "KJ627285" - ], - "Tobacco_mosaic_virus__Tor2_L1" : [ - "KF972434" - ], - "Feline_panleukopenia_virus__HRB_CS1" : [ - "KP280068" - ], - "Porcine_circovirus_2__FMV_07_0039" : [ - "JQ994269" - ], - "Chikungunya_virus_RGCB730_09" : [ - "KJ796844" - ], - "Candidatus_Kinetoplastibacterium_blastocrithidii__ex_Strigomonas_culicis" : [ - "NC_019814" - ], - "Coxsackievirus_A7__Parker" : [ - "GU942823" - ], - "Western_equine_encephalitis_virus_BFS09997" : [ - "KJ554974" - ], - "Grapevine_rupestris_stem_pitting_associated_virus__PG" : [ - "HE591388" - ], - "Hepatitis_B_virus__CHN_QH8" : [ - "DQ478887" - ], - "Hepatitis_B_virus__22_252_07" : [ - "EU921419" - ], - "Human_immunodeficiency_virus_1__07YNLC22sg" : [ - "KC899007" - ], - "Chicken_anemia_virus__GXC060821" : [ - "JX964755" - ], - "African_cassava_mosaic_virus__CF_CF352AB1_08" : [ - "KJ887814" - ], - "Human_parechovirus_3_BJ_C3174" : [ - "KJ659490" - ], - "Sapovirus_Mc10_Mc10" : [ - "NC_010624" - ], - "Hepatitis_B_virus__1_B24" : [ - "EU570069" - ], - "Temperate_fruit_decay_associated_virus__MFB18" : [ - "KR134316" - ], - "Human_poliovirus_3_NIE1018521" : [ - "KJ170597" - ], - "Hepatitis_B_virus__D_NC_1664337_2001" : [ - "HQ700514" - ], - "Turnip_mosaic_virus__NZ403" : [ - "AB989657" - ], - "Hepatitis_B_virus__C2_2" : [ - "GU815628" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0151" : [ - "KP759613" - ], - "Human_papillomavirus_type_6__128" : [ - "HG793936" - ], - "Pasteurella_multocida_3480" : [ - "NC_017764" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_5__AHEaCV_5_NZ_3091C3_2012" : [ - "KM874302" - ], - "Jatropha_yellow_mosaic_India_virus" : [ - "NC_011309" - ], - "Black_medic_leafroll_alphasatellite_1__Stadl_Paura_3" : [ - "KC978948" - ], - "Cyclovirus_ZM38_ZM38" : [ - "AB937983" - ], - "Hepatitis_B_virus__KOR10CHB" : [ - "GQ475314" - ], - "Tomato_leaf_curl_Joydebpur_virus__Kalyani" : [ - "EF194765" - ], - "Cherry_twisted_leaf_associated_virus__CTLV_8431" : [ - "NC_024449" - ], - "Thermoplasma_acidophilum_DSM_1728" : [ - "NC_002578" - ], - "Hepatitis_B_virus__MY501336" : [ - "KJ803812" - ], - "Hepatitis_B_virus__HBV216" : [ - "JN688717" - ], - "Maize_streak_virus__MSV_A_BJ_Ben_Mic20_1999" : [ - "FJ882089" - ], - "Hepatitis_B_virus__80" : [ - "AF297624" - ], - "Hepatitis_C_virus__DH10_JFH1" : [ - "KC967478" - ], - "Bovine_ephemeral_fever_virus__Bovine_China_Henan1_2012" : [ - "KM276084" - ], - "Hepatitis_B_virus__bur1056" : [ - "KC774376" - ], - "Turnip_mosaic_virus__GBR31" : [ - "AB701713" - ], - "MW_polyomavirus_QLDMW10" : [ - "KC549591" - ], - "Tomato_spotted_wilt_virus__NC_3" : [ - "AY744478", - "AY744486" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3648_2008" : [ - "GU131883" - ], - "Enterobacteria_phage_phiX174__10E90" : [ - "EF380026" - ], - "Hepatitis_B_virus__M52" : [ - "GQ924630" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir_T56X_Cuc_08" : [ - "JF501721" - ], - "GB_virus_C" : [ - "HGU36380", - "NC_001710" - ], - "Papaya_leaf_curl_China_virus_GX4__GX4" : [ - "FN297834" - ], - "Hepatitis_B_virus__cww1065" : [ - "KC774260" - ], - "Garlic_virus_X__YH" : [ - "AJ292229" - ], - "Erwinia_amylovora_ATCC_49946" : [ - "NC_013972", - "NC_013971", - "NC_013973" - ], - "Turnip_mosaic_virus__CAR51" : [ - "HQ637383" - ], - "Thermus_phage_phiYS40_YS40" : [ - "AP011616" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P3pp8" : [ - "FJ882941" - ], - "Hepatitis_B_virus__LDA277" : [ - "KF849713" - ], - "Hepatitis_B_virus__FH001M_e45" : [ - "KJ173296" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2903_2006" : [ - "FJ898418" - ], - "Hepatitis_B_virus__P08" : [ - "EU859921" - ], - "Swine_cyclovirus_SC_CGS88" : [ - "KM392285" - ], - "Hepatitis_B_virus__IND_1963_5" : [ - "KF214650" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8375_2003" : [ - "KJ627663" - ], - "Mycoplasma_genitalium_M6320" : [ - "NC_018497" - ], - "Hepatitis_B_virus__WY_HZ_2" : [ - "JX429896" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2266_2006" : [ - "FJ639825" - ], - "Reptile_bornavirus_1_251327" : [ - "NC_024778" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus_Morocco_S_15" : [ - "LN846597" - ], - "Hepatitis_B_virus__Cr03" : [ - "KJ843220" - ], - "Hepatitis_B_virus__C_NZL_HU27_1984" : [ - "HQ700461" - ], - "Human_immunodeficiency_virus_1__C_ZA_1214MB" : [ - "AY463236" - ], - "Cauliflower_mosaic_virus__JPNS2" : [ - "AB863162" - ], - "Tomato_leaf_curl_New_Delhi_virus__X2A" : [ - "KJ778693" - ], - "Hepatitis_B_virus__11D11HCC" : [ - "AB014370" - ], - "JC_polyomavirus__JCV161FLC_12" : [ - "JF424920" - ], - "Apricot_vein_clearing_associated_virus__Pair" : [ - "KM507062" - ], - "Bat_coronavirus_Rp_Shaanxi2011__Rp_Shaanxi2011" : [ - "JX993987" - ], - "Hepatitis_C_virus_subtype_1a__02_30" : [ - "EU781794" - ], - "Human_poliovirus_1__DOR00023C" : [ - "AF405685" - ], - "Japanese_encephalitis_virus__YN" : [ - "JN381871" - ], - "Canine_distemper_virus__Onderstepoort" : [ - "AF305419" - ], - "Celeribacter_phage_P12053L" : [ - "NC_018280" - ], - "West_Nile_virus__WNV_1_US_BID_V4208_2003" : [ - "HM488139" - ], - "Enterovirus_A71_SH_6_SH_CHN_2002" : [ - "JX678886" - ], - "Tomato_leaf_curl_China_betasatellite__Y268" : [ - "AM260724" - ], - "Hepatitis_delta_virus__D51" : [ - "KJ744249" - ], - "Porcine_circovirus_2_SD2" : [ - "DQ201639" - ], - "Swine_hepatitis_E_virus__SW626" : [ - "EU723512" - ], - "Porcine_stool_associated_circular_virus_9__FP1" : [ - "NC_024774" - ], - "Porcine_circovirus_2__QDC" : [ - "DQ104420" - ], - "Camelus_dromedarius_papillomavirus_type_2" : [ - "NC_015268" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3874_2008" : [ - "GU131709" - ], - "Dengue_virus_1_D1_SG_06K2290DK1_2006" : [ - "EU081281" - ], - "BK_polyomavirus__J2B_2" : [ - "AB301099" - ], - "Streptococcus_pneumoniae_AP200" : [ - "NC_014494" - ], - "Dasheen_mosaic_virus__M13" : [ - "NC_003537" - ], - "Spilanthes_yellow_vein_virus" : [ - "NC_009545" - ], - "Human_parvovirus_B19__F27" : [ - "AB550331" - ], - "Hepatitis_B_virus_HB304" : [ - "HM011493" - ], - "Avian_paramyxovirus_3_APMV3_PKT_Netherland_449_75" : [ - "EU403085" - ], - "Chikungunya_virus__LK_EH_CH17708" : [ - "FJ513673" - ], - "Euphorbia_yellow_mosaic_virus__BR_Car2_09" : [ - "JN419000", - "JN419001" - ], - "Cowpox_virus_HumLan08_1" : [ - "KC813492" - ], - "Hepatitis_B_virus__Piaroa3019" : [ - "DQ899149" - ], - "Bean_golden_mosaic_virus__BR_Eta1_05" : [ - "KJ939708" - ], - "Acheta_domesticus_volvovirus__AdVVV_Japan" : [ - "NC_021074" - ], - "Soybean_dwarf_virus__ClIL2" : [ - "KJ786321" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2247_2005" : [ - "FJ639810" - ], - "JC_polyomavirus__MT_10" : [ - "AB077874" - ], - "Hepatitis_delta_virus_dFr2284_dFr2284" : [ - "AM779577" - ], - "Human_poliovirus_1_NIE1018355" : [ - "KJ170530" - ], - "Dengue_virus_2__MD902" : [ - "FM210212" - ], - "Cauliflower_mosaic_virus__IRN7" : [ - "AB863142" - ], - "Hibiscus_chlorotic_ringspot_virus__TW" : [ - "DQ392986" - ], - "Hepatitis_B_virus__SamsunD35" : [ - "AB674407" - ], - "Hepatitis_C_virus_subtype_1a__03_32_P4_11_5_05" : [ - "EF032885" - ], - "Human_immunodeficiency_virus_1_05GX128" : [ - "GQ845126" - ], - "Hepatitis_C_virus_subtype_1a__BR554_P1_5_23_03" : [ - "EF032887" - ], - "Human_herpesvirus_5_BE_3_2011" : [ - "KP745659" - ], - "Porcine_circovirus_2__JZS2" : [ - "KC821782" - ], - "Japanese_encephalitis_virus__HB49" : [ - "JF706284" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7447_2009" : [ - "KJ627300" - ], - "Staphylococcus_phage_EW" : [ - "NC_007056" - ], - "Human_papillomavirus_type_39__Qv27715" : [ - "KC470237" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1686" : [ - "KR534572" - ], - "Klebsiella_pneumoniae_NTUH_K2044" : [ - "NC_006625", - "NC_012731" - ], - "Tick_borne_encephalitis_virus_Primorye_92" : [ - "HQ201303" - ], - "HBV_genotype_H__B_MHJ9014" : [ - "AB846650" - ], - "Petrotoga_mobilis_SJ95" : [ - "NC_010003" - ], - "Cucumber_green_mottle_mosaic_virus__SD_Luffa" : [ - "KJ754196" - ], - "Feline_coronavirus__26M" : [ - "KP143512" - ], - "Beak_and_feather_disease_virus__WBC1_ZA" : [ - "AY450434" - ], - "Watermelon_chlorotic_stunt_virus__LB1" : [ - "HM368371", - "HM368372" - ], - "Tomato_yellow_leaf_curl_virus__Genaveh_Iran___TYLCV_Bou_IR_Ge29_06" : [ - "GU076454" - ], - "West_Nile_virus_Austria_2008_gh" : [ - "KF179640" - ], - "Spodoptera_exigua_iflavirus_2__Korean" : [ - "NC_023676" - ], - "Tomato_chlorosis_virus__Gr_535" : [ - "EU284744", - "EU284745" - ], - "Human_immunodeficiency_virus_1__15388_1" : [ - "DQ853456" - ], - "Hepatitis_B_virus__CHN_QH30" : [ - "DQ478894" - ], - "Sida_mosaic_Bolivia_virus_1_SiMBoV1" : [ - "NC_015046", - "NC_015044" - ], - "Tomato_spotted_wilt_virus__GRAU" : [ - "FM163370" - ], - "Zaire_ebolavirus_Mayinga" : [ - "AF272001", - "AY142960", - "AF499101", - "EU224440" - ], - "Hepatitis_C_virus_subtype_1b_HC_J4_pCV_J4L2S" : [ - "AF054248" - ], - "Human_papillomavirus_type_11__LP19" : [ - "HE611259" - ], - "Hepatitis_B_virus__Nin_2001" : [ - "HQ603077" - ], - "Porcine_circovirus_2__Bd1_2007" : [ - "KM624034" - ], - "Human_adenovirus_21_VRDL_T98_1269" : [ - "KJ364592" - ], - "Rotavirus_F_chicken_03V0568_DEU_2003_chicken_03V0568_DEU_2003" : [ - "NC_021628", - "NC_021630", - "NC_021629", - "NC_021633", - "NC_021626", - "NC_021631", - "NC_021632", - "NC_021627", - "NC_021634", - "NC_021625" - ], - "Nitrobacter_winogradskyi_Nb_255" : [ - "NC_007406" - ], - "Bacillus_anthracis_H9401" : [ - "NC_017727", - "NC_017726", - "NC_017729" - ], - "Klebsiella_pneumoniae_1084" : [ - "NC_018522" - ], - "West_Nile_virus__WNV_1_US_BID_V6561_2003" : [ - "KJ501357" - ], - "Eel_River_basin_pequenovirus__c15773" : [ - "KP087949" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3729_2007" : [ - "GU131977" - ], - "Human_coronavirus_OC43_OC43_human_USA_9612_48_1996" : [ - "KF530063" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG537A7_11" : [ - "KJ888035" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2797_2007" : [ - "GQ199816" - ], - "Sida_golden_mosaic_virus__Florida" : [ - "NC_002046" - ], - "Onion_yellow_dwarf_virus__G79" : [ - "AB219833" - ], - "Maize_streak_virus__UHoi_167" : [ - "EF547104" - ], - "Hepatitis_B_virus__M67" : [ - "GQ924635" - ], - "Hepatitis_B_virus__BA2" : [ - "AF043560" - ], - "Turnip_mosaic_virus__NZ403B" : [ - "AB989658" - ], - "Human_papillomavirus_type_6__7" : [ - "HG793815" - ], - "Encephalomyocarditis_virus" : [ - "EMCBCG", - "EMCDCG" - ], - "Hepatitis_B_virus__HCUCH7" : [ - "HM585188" - ], - "Grapevine_virus_A__I327_5" : [ - "KC962564" - ], - "Enterobacteria_phage_CC31" : [ - "NC_014662" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9375_2013" : [ - "KJ643464" - ], - "Colorado_tick_fever_virus_Florio__N_7180" : [ - "NC_004181" - ], - "Japanese_encephalitis_virus_JEV_CNS769_Laos_2009" : [ - "KC196115" - ], - "Maize_streak_virus__UMask_21" : [ - "EF547069" - ], - "Rice_stripe_virus__BS" : [ - "AF221830" - ], - "Foot_and_mouth_disease_virus__C3Arg85" : [ - "AJ007347" - ], - "Torque_teno_virus__US32" : [ - "AF122921" - ], - "Yellow_fever_virus_Gambia_2001" : [ - "AY572535" - ], - "Listeria_phage_P35" : [ - "NC_009814" - ], - "Sandfly_fever_Naples_virus_YU_8_76" : [ - "EF201831" - ], - "Hepatitis_B_virus__SSC128" : [ - "KJ598698" - ], - "Murine_hepatitis_virus_ML_10" : [ - "AF208067" - ], - "Desulfovibrio_aespoeensis_Aspo_2" : [ - "NC_014844" - ], - "Hepatitis_B_virus__SHB2SA15" : [ - "KJ598650" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4062_2008" : [ - "JF937615" - ], - "Comamonadaceae_bacterium_CR" : [ - "NC_022576" - ], - "Human_papillomavirus_type_45__Qv30712" : [ - "KC470259" - ], - "Clostridium_botulinum_B1_Okra" : [ - "NC_010516", - "NC_010379" - ], - "West_Nile_virus__WNV_1_US_BID_V6420_2001" : [ - "KJ501288" - ], - "Sendai_virus_Ohita_M1" : [ - "NC_001552" - ], - "Reticuloendotheliosis_virus_HA1101" : [ - "KF305089" - ], - "Duck_hepatitis_A_virus_1_ZJ" : [ - "EF382778" - ], - "SARS_coronavirus_SinP4" : [ - "AY559091" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_02_2012" : [ - "KJ672439" - ], - "Onion_yellow_dwarf_virus__G5h" : [ - "AB219834" - ], - "Turnip_mosaic_virus__DNK3" : [ - "AB701703" - ], - "South_African_cassava_mosaic_virus__MG_MG516A1_11" : [ - "KJ888028" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1P20_2009_c1P20" : [ - "KF514394" - ], - "Grapevine_leafroll_associated_virus_3__621" : [ - "GQ352631" - ], - "Rabies_virus__TN209" : [ - "JQ685902" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1322_2006" : [ - "EU660392" - ], - "Hepatitis_B_virus__patient9" : [ - "AB300367" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2715_2006" : [ - "FJ882539" - ], - "Dengue_virus_2__DENV_2_PE_NFI1159_2010" : [ - "KC294223" - ], - "Grapevine_virus_E__SA94" : [ - "GU903012" - ], - "Helleborus_net_necrosis_virus_J" : [ - "AB623047" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culex_USA_M2005_3542_2005" : [ - "KJ469556" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V511_2006" : [ - "EU256012" - ], - "Rickettsia_peacockii_Rustic" : [ - "NC_012730", - "NC_012732" - ], - "Tomato_yellow_leaf_curl_virus__Roodan_Iran___TYLCV_OM_IR_Ro25_06" : [ - "GU076451" - ], - "BK_polyomavirus__SHA_78" : [ - "AB365178" - ], - "Hepatitis_B_virus__A5_24074" : [ - "FJ692555" - ], - "Tobacco_etch_virus__N" : [ - "KM282189" - ], - "Taylorella_equigenitalis_MCE9" : [ - "NC_014914" - ], - "Encephalomyocarditis_virus_GS01" : [ - "KJ524643" - ], - "Hepatitis_B_virus_GD21" : [ - "EU155829" - ], - "Hepatitis_B_virus__KWgib6" : [ - "AB823658" - ], - "Marinithermus_hydrothermalis_DSM_14884" : [ - "NC_015387" - ], - "Hepatitis_B_virus__DEN6109" : [ - "KF779237" - ], - "Yellow_fever_virus_17D_YF_VAX_Vero_adapted_Series_B_P11" : [ - "JN811142" - ], - "Hepatitis_B_virus_FMC_20" : [ - "AF411410" - ], - "Squash_leaf_curl_virus__JO2_129" : [ - "KM595186" - ], - "Bottlenose_dolphin_coronavirus_HKU22__CF090331" : [ - "KF793826" - ], - "Dengue_virus_2__DC639Y12" : [ - "KM279538" - ], - "Human_respiratory_syncytial_virus_08_045420" : [ - "JX576747" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2658_2000" : [ - "FJ850118" - ], - "Tomato_common_mosaic_virus__BR_Pda20_05" : [ - "KC706593" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA7452_2009" : [ - "KJ672538" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K272" : [ - "AJ717565", - "AJ704945" - ], - "Grapevine_virus_A__GTG11_1" : [ - "DQ855084" - ], - "Bluetongue_virus_20__BT71_77" : [ - "JX272428" - ], - "Hepatitis_B_virus__919003" : [ - "JN040795" - ], - "Tamiami_mammarenavirus_W_10777" : [ - "EU627614", - "NC_010702" - ], - "Cereal_yellow_dwarf_virus_RPV_satellite_RNA" : [ - "NC_003533" - ], - "Human_immunodeficiency_virus_1__C_IN_04_NIRT379_3" : [ - "KF766539" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2454_2001" : [ - "GQ252678" - ], - "Echovirus_E31_Caldwell" : [ - "AY302554" - ], - "Human_immunodeficiency_virus_1__ZM247F_flB8" : [ - "FJ496198" - ], - "Enterobacteria_phage_phiX174__S1" : [ - "AF176027" - ], - "Raspberry_latent_virus__RpLV9A" : [ - "NC_014606", - "NC_014604", - "NC_014607", - "NC_014599", - "NC_014603", - "NC_014600", - "NC_014602", - "NC_014601", - "NC_014605", - "NC_014598" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V361_2006" : [ - "EU482838" - ], - "Faecal_associated_gemycircularvirus_11__as35" : [ - "NC_025729" - ], - "Eastern_equine_encephalitis_virus_NJ_60" : [ - "EF568607" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V280_2004" : [ - "EU256076" - ], - "Dengue_virus_1__DENV_1_VN_BID_V793_2006" : [ - "EU249490" - ], - "Hepatitis_B_virus__MLT1043" : [ - "KF779305" - ], - "Human_papillomavirus_type_45__Qv25000" : [ - "EF202164" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4022_2008" : [ - "GU131784" - ], - "Hepatitis_B_virus__HK1169" : [ - "DQ089797" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1544_2007" : [ - "EU677169" - ], - "Citrus_tristeza_virus__FS703_T36" : [ - "KC517487" - ], - "Watermelon_chlorotic_stunt_virus__IL3_72" : [ - "KM820262" - ], - "Maize_streak_virus__MSV_A_KE_Oyu_K8_1998" : [ - "FJ882094" - ], - "African_cassava_mosaic_virus__MG_MG13A14_06" : [ - "KJ887833" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3950_1" : [ - "KR105210" - ], - "Pepper_yellow_vein_Mali_virus_Mali_BF_Ban_Hpe2_09" : [ - "FN555173" - ], - "Wheat_streak_mosaic_virus_El_Batan_3" : [ - "AF285170" - ], - "Barley_yellow_dwarf_virus_PAV__ASL_1" : [ - "AJ810418" - ], - "Brome_streak_mosaic_virus" : [ - "NC_003501" - ], - "Sandfly_fever_Sicilian_virus_91025B" : [ - "EF201823" - ], - "Foot_and_mouth_disease_virus___type_SAT_2_KEN_3_57" : [ - "AJ251473" - ], - "Oliveros_mammarenavirus_3229" : [ - "NC_010250" - ], - "Infectious_bursal_disease_virus__QL" : [ - "JX682709", - "JX682710" - ], - "Hepatitis_B_virus__bne9447" : [ - "FN594765" - ], - "Melon_necrotic_spot_virus__Malfa5" : [ - "AY122286" - ], - "Meleagrid_herpesvirus_1_FC126__Burmester" : [ - "NC_002641" - ], - "Maize_streak_virus__MSV_A_CF_Bang10_Car49_2008" : [ - "HQ693296" - ], - "Staphylococcus_phage_phi2958PVL_JCSC2958" : [ - "NC_011344" - ], - "Human_immunodeficiency_virus_1__04ZASK146B1" : [ - "AY772699" - ], - "Hepatitis_delta_virus__D28" : [ - "KJ744238" - ], - "Human_respiratory_syncytial_virus__BE08_5146" : [ - "JX015499" - ], - "Tomato_leaf_curl_Vietnam_virus__HA" : [ - "EU368372" - ], - "West_Nile_virus__Italy_2009_G_223184" : [ - "JF719067" - ], - "Porcine_epidemic_diarrhea_virus_CH_ZMDZY_11" : [ - "KC196276" - ], - "Tomato_severe_rugose_virus__BR_Vic28_09" : [ - "JX865641" - ], - "Squash_leaf_curl_virus__JO2_29" : [ - "KM595180" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX08_H51_2008_IE" : [ - "KC344450" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C45" : [ - "KJ019028" - ], - "Large_yellow_croaker_iridovirus" : [ - "AY779031" - ], - "South_African_cassava_mosaic_virus__MG_MG25A2_06" : [ - "KJ887845" - ], - "Hepatitis_B_virus__WY_NJ_23" : [ - "JX026880" - ], - "Norovirus_Hu_GII_20202_2009_VNM_Hu_GII_20202_2009_VNM" : [ - "KC409275" - ], - "Human_immunodeficiency_virus_1__03ZASK034B1" : [ - "AY878065" - ], - "Human_papillomavirus_type_6__CAC56" : [ - "FR751326" - ], - "Hepatitis_E_virus_FR_HuHEVF3f" : [ - "JN906974" - ], - "Bluetongue_virus_14__CAR1982_04" : [ - "AJ586715" - ], - "HIV_1_M_02CD_LBTB084__02CD_LBTB084" : [ - "FM877781" - ], - "Equid_herpesvirus_1_NY05" : [ - "KF644570" - ], - "Hepatitis_B_virus__CAR131" : [ - "AM494706" - ], - "Acinetobacter_baumannii_TYTH_1" : [ - "NC_018706" - ], - "Apricot_pseudo_chlorotic_leaf_spot_virus__Sus2" : [ - "NC_006946" - ], - "Human_papillomavirus_type_6__57" : [ - "HG793865" - ], - "South_African_cassava_mosaic_virus__MG_MG137A3_09" : [ - "KJ887929" - ], - "Hepatitis_B_virus__ES71_5" : [ - "JF828925" - ], - "Tomato_yellow_leaf_curl_Axarquia_virus__Homra" : [ - "NC_025680" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2015_Makona_Liberia_DQE3" : [ - "KR074997" - ], - "Rift_Valley_fever_virus_2007000245" : [ - "JF326199" - ], - "Porcine_bocavirus__GD10" : [ - "KM402138" - ], - "Human_astrovirus_BF34_BF34" : [ - "NC_024472" - ], - "Staphylococcus_phage_ROSA" : [ - "NC_007058" - ], - "Sclerotinia_sclerotiorum_hypovirulence_associated_DNA_virus_1__SsHADV_1_NZ_SR1_2012" : [ - "KF268026" - ], - "Simian_adenovirus_47" : [ - "FJ025929" - ], - "Hepatitis_B_virus__ES70_13" : [ - "JF828919" - ], - "Porcine_circovirus_2__TZ60607" : [ - "FJ158607" - ], - "Tomato_yellow_leaf_curl_virus__Busan_8" : [ - "HM856909" - ], - "Porcine_circovirus_2__V0130" : [ - "KJ128272" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2864_2006" : [ - "FJ898401" - ], - "Human_immunodeficiency_virus_1_98TZ013" : [ - "AF286234" - ], - "Human_immunodeficiency_virus_1__04BRRJ179" : [ - "EU735535" - ], - "Dengue_virus_1__DV1_SL_2009c" : [ - "HQ891315" - ], - "Coxsackievirus_A10_FY07_AH_CHN_2013" : [ - "KP009580" - ], - "Turnip_mosaic_virus__DEU4" : [ - "AB701701" - ], - "African_green_monkey_polyomavirus" : [ - "NC_004763" - ], - "WU_Polyomavirus__B5290" : [ - "GU296377" - ], - "Human_papillomavirus_type_31__QV02689" : [ - "HQ537672" - ], - "Human_immunodeficiency_virus_1__C_ZA_1210MB" : [ - "AY463221" - ], - "Turnip_mosaic_virus_BJ_B01" : [ - "KC119185" - ], - "Sweet_potato_leaf_curl_Henan4_virus__China_Sichuan14_2012" : [ - "NC_022586" - ], - "Hepatitis_B_virus__17822_NE_BRA" : [ - "KJ854694" - ], - "Porcine_circovirus_2__GZ_RH1" : [ - "JQ809464" - ], - "Human_astrovirus_1_Beijing_293_2007_CHN_Beijing_293_2007_CHN" : [ - "FJ755405" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1327" : [ - "KR534591" - ], - "Equine_arteritis_virus__S4421" : [ - "GQ903806" - ], - "Salmonella_enterica_serovar_Bovismorbificans_3114" : [ - "NC_022241", - "NC_022248" - ], - "Hepatitis_B_virus__318_01_5" : [ - "EU871980" - ], - "Synechococcus_phage_S_RIM2_R1_1999_RIM2_R1_999" : [ - "NC_020859" - ], - "Mungbean_yellow_mosaic_India_virus__Palampur" : [ - "FR714861", - "FN794200" - ], - "Hepatitis_B_virus_023" : [ - "AB900108" - ], - "Rice_black_streaked_dwarf_virus__Shandong" : [ - "AY039705" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1501_2006" : [ - "EU660402" - ], - "HBV_genotype_C__MRK89073" : [ - "AB554025" - ], - "Exiguobacterium_sibiricum_255_15" : [ - "NC_010550", - "NC_010556", - "NC_010549" - ], - "Foot_and_mouth_disease_virus__H51" : [ - "AM409190" - ], - "Human_adenovirus_23" : [ - "JN226750" - ], - "Radish_leaf_curl_betasatellite__Vellanad" : [ - "JN663877" - ], - "SARS_coronavirus_MA15_MA15_d4ym5" : [ - "JF292915" - ], - "Beet_curly_top_Iran_virus__IR_Dar_128_Cowpea_10" : [ - "JX131634" - ], - "Hepatitis_B_virus__HBV_Ho7" : [ - "AB073838" - ], - "Canna_yellow_streak_virus" : [ - "NC_013261" - ], - "Hantaan_virus__Nc167" : [ - "DQ989237" - ], - "African_cassava_mosaic_virus__MG_MG77A2_06" : [ - "KJ887896" - ], - "Hepatitis_B_virus__G182" : [ - "JQ040155" - ], - "African_cassava_mosaic_virus__MG_MG249A1_10" : [ - "KJ887966" - ], - "BK_polyomavirus__ITA_5" : [ - "AB263925" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PGM_68A_2008" : [ - "HM748923" - ], - "Dengue_virus_2__DENV_2_KH_BID_V4274_2008" : [ - "JF730048" - ], - "Human_immunodeficiency_virus_1__WITO_flC3" : [ - "FJ496172" - ], - "Sambar_deer_coronavirus_US_OH_WD388_TC_1994" : [ - "FJ425188", - "FJ425190" - ], - "Macroptilium_yellow_vein_virus__BR_Pai31_11" : [ - "KJ939911" - ], - "Radish_leaf_curl_virus_betasatellite_India_Pratapgarh3_2008" : [ - "EU431117" - ], - "Cucumber_green_mottle_mosaic_virus__DY5" : [ - "KM873787" - ], - "Tomato_spotted_wilt_virus__LE98_527" : [ - "AJ418781" - ], - "Maize_streak_virus__MSV_A_CF_Bak_Car5_2008" : [ - "HQ693290" - ], - "Tomato_leaf_curl_Togo_virus__Togo_2006" : [ - "NC_012205" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA62s1" : [ - "KF670663" - ], - "Hepatitis_B_virus_1368_45" : [ - "KR014051" - ], - "Enterovirus_B75__102_SD_CHN_97" : [ - "KF874627" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3991_2008" : [ - "GU131763" - ], - "Dengue_virus_1_D1_SG_05K3894DK1_2005" : [ - "EU081241" - ], - "Porcine_circovirus_2_GYBQ1110" : [ - "JX948768" - ], - "Tomato_yellow_leaf_curl_virus__Jangheung_44" : [ - "HM856917" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9981_2010" : [ - "KJ627283" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_I03_607_2003" : [ - "KJ469571" - ], - "Human_adenovirus_7" : [ - "AY594256" - ], - "STL_polyomavirus__HB124" : [ - "KF530304" - ], - "Beak_and_feather_disease_virus__CS08_448_OBP_TAS_19124" : [ - "KF188686" - ], - "Human_immunodeficiency_virus_1__03ZASK041B1" : [ - "AY772693" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_10" : [ - "JQ647462" - ], - "Tomato_leaf_curl_Palampur_virus__Palampur" : [ - "NC_010839" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P3pp19" : [ - "FJ882955" - ], - "Maize_fine_streak_virus" : [ - "NC_005974" - ], - "Plum_pox_virus_PPV_D_Ou6" : [ - "AB576062" - ], - "Chikungunya_virus__InDRE_51CHIK" : [ - "KP851709" - ], - "Human_respiratory_syncytial_virus__RSV597" : [ - "JX015490" - ], - "Dengue_virus_2__DENV_2_VE_BID_V1144_2007" : [ - "GQ868641" - ], - "Shigella_phage_EP23" : [ - "NC_016566" - ], - "Hepatitis_B_virus__cww1086" : [ - "KC774269" - ], - "Porcine_circovirus_2_strain_SD3_SD3" : [ - "DQ218419" - ], - "Maize_streak_virus__MSV_A_CF_Bai4_Car15_2008" : [ - "HQ693289" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V385_2006" : [ - "EU155264" - ], - "Hepatitis_B_virus__dww1078" : [ - "KC774451" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2965_2000" : [ - "FJ898468" - ], - "Avian_orthoreovirus__C_98" : [ - "EU616741", - "EU616744", - "EF057397", - "EU616740", - "EU616735", - "EU616737" - ], - "Chilli_leaf_curl_India_alphasatellite" : [ - "NC_027431", - "KF471038", - "KF471039", - "KF471040" - ], - "Human_parvovirus_B19__KU11" : [ - "KM393168" - ], - "Duck_circovirus__NN12_2012" : [ - "KC460531" - ], - "Human_herpesvirus_4_HN5" : [ - "AB850652" - ], - "Hepatitis_B_virus__I186" : [ - "FJ562302" - ], - "Simian_immunodeficiency_virus__92050" : [ - "AY603959" - ], - "Feline_calicivirus__UTCVM_NH3" : [ - "AY560115" - ], - "Hepatitis_B_virus__JFA3966" : [ - "KF779268" - ], - "Neisseria_meningitidis_FAM18" : [ - "NC_008767" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US83" : [ - "KJ019126" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8356_2003" : [ - "KJ627659" - ], - "Hepatitis_B_virus_497_13" : [ - "KR013947" - ], - "Enterobacteria_phage_phiX174__CMMhiMhi" : [ - "AF299308" - ], - "Sauropus_leaf_curl_disease_associated_DNA_beta" : [ - "JX393888", - "JX393887", - "NC_018671", - "JX393886" - ], - "Norwalk_like_virus__Saitama_U16" : [ - "AB039778" - ], - "Lactobacillus_salivarius_UCC118" : [ - "NC_007929", - "NC_007930", - "NC_006529", - "NC_006530" - ], - "Plum_pox_virus__Penn3" : [ - "DQ465242" - ], - "Porcine_circovirus_2__WX06" : [ - "FJ644926" - ], - "Norovirus_Hu_GII_4_Hokkaido3_2008_JP_Hu_GII_4_Hokkaido3_2008_JP" : [ - "AB541264" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1580_2007" : [ - "FJ024439" - ], - "Hepatitis_B_virus_HB448" : [ - "HM011500" - ], - "Goose_circovirus__GB25_8" : [ - "KP203870" - ], - "Human_immunodeficiency_virus_1__5082_83" : [ - "AY835770" - ], - "Tick_borne_encephalitis_virus_Salem" : [ - "FJ572210" - ], - "Dengue_virus_4_H772854_DENV_4_ROR7365" : [ - "JN559741" - ], - "Human_immunodeficiency_virus_1__C_96BW04_07" : [ - "AF110963" - ], - "Hepatitis_B_virus__SamsunD40" : [ - "AB674409" - ], - "Beak_and_feather_disease_virus__BFDV6" : [ - "FJ685978" - ], - "Human_immunodeficiency_virus_1__04ZASK170B1" : [ - "DQ093595" - ], - "Hepatitis_B_virus__D23K_6" : [ - "EU717211" - ], - "South_African_cassava_mosaic_virus__MG_MG45A10_06" : [ - "KJ887862" - ], - "Enterobacteria_phage_phiX174__phiX_1_FR" : [ - "JF719726" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_CG" : [ - "EU864231" - ], - "Tomato_mild_yellow_leaf_curl_Aragua_virus__V10" : [ - "NC_009490", - "NC_009491" - ], - "Hepatitis_B_virus__M1" : [ - "KF584158", - "GQ924603" - ], - "Hepatitis_B_virus__HBV_Shin" : [ - "AB073858" - ], - "Human_immunodeficiency_virus_1__MERLBDTRC2" : [ - "JN860761" - ], - "Cauliflower_mosaic_virus__S" : [ - "KJ418152" - ], - "Human_coronavirus_NL63_NL63_human_USA_903_28_1990" : [ - "KF530109" - ], - "JC_polyomavirus__335C" : [ - "AY386378" - ], - "Beak_and_feather_disease_virus__UC1_ZA" : [ - "AY450436" - ], - "Foot_and_mouth_disease_virus___type_O__O_S14KOR_2002" : [ - "KF694744" - ], - "Echovirus_E6_D_Amori" : [ - "AY302558" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V460_2006" : [ - "EU482866" - ], - "Sida_micrantha_mosaic_virus___Rhombifolia__Bolivia_Boyuibe_Villamontes_2007__SimMV_rho_BoVi07" : [ - "HM585431", - "HM585432" - ], - "African_cassava_mosaic_virus__KE_mtw_CMD_MI64_12" : [ - "HG530110" - ], - "Human_immunodeficiency_virus_1_93IN101" : [ - "AB023804" - ], - "Human_papillomavirus_type_16__Fr240211" : [ - "HQ644244" - ], - "Cherry_rusty_mottle_associated_virus__B48_C" : [ - "KC218927" - ], - "European_mountain_ash_ringspot_associated_virus__E52996" : [ - "HG799744" - ], - "Hepatitis_B_virus__pt3N" : [ - "KM875408" - ], - "Alternanthera_yellow_vein_virus__G38" : [ - "NC_007211" - ], - "Hepatitis_B_virus__KOR37HCC" : [ - "GQ475341" - ], - "Variola_virus_Sudan_1947__Juba" : [ - "DQ441440" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2738_2007" : [ - "FJ898380" - ], - "Dengue_virus_2__DS04_221205" : [ - "EU179858" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLI4745_2010_A" : [ - "KJ627399" - ], - "Human_poliovirus_1__CHN_Fujian_93_8__CHN_6343FJ93" : [ - "AF111981" - ], - "Foot_and_mouth_disease_virus___type_O_O_PanAsia_uk2001_ouk2001x_iso84" : [ - "AY593836" - ], - "Dengue_virus_4__DENV_4_US_BID_V2433_1995" : [ - "FJ810417" - ], - "Dengue_virus_1__DENV_1_VN_BID_V981_2006" : [ - "EU482525" - ], - "Enterovirus_A71_EV71_Ningbo_CHN_065_2010" : [ - "JF830007" - ], - "Hepatitis_B_virus__dxn1097" : [ - "KC774497" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V391_2006" : [ - "EU155267" - ], - "Mycobacterium_phage_Heathcliff" : [ - "KJ194584" - ], - "Mycobacterium_phage_Courthouse_Courthouse" : [ - "NC_023690" - ], - "Rinderpest_virus_RBOK" : [ - "Z30697" - ], - "West_Nile_virus__WNV_1_US_BID_V4904_2000" : [ - "HQ671712" - ], - "Dengue_virus_2_FJ11_99" : [ - "AF359579" - ], - "Turnip_mosaic_virus__PV134" : [ - "AB701737" - ], - "Squash_leaf_curl_virus__JO3_132" : [ - "KM595204" - ], - "Turnip_mosaic_virus__TIGA" : [ - "AB701734" - ], - "Human_herpesvirus_3_03_500" : [ - "DQ479957" - ], - "GB_virus_C__833_62" : [ - "KP710604" - ], - "Maize_streak_virus__MSV_A_GH_gh139_Fum_2010" : [ - "KJ699325" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3781_2006" : [ - "GQ868630" - ], - "Melbournevirus__1" : [ - "NC_025412" - ], - "Hepatitis_B_virus__LDA173" : [ - "KF849723" - ], - "Bovine_papillomavirus_type_1" : [ - "AB626705" - ], - "Marburg_marburgvirus__Marburg_virus_H_sapiens_tc_AGO_2005_Angola_200501379" : [ - "KR867677" - ], - "Bluegill_picornavirus__04_032" : [ - "NC_018506" - ], - "Beutenbergia_cavernae_DSM_12333" : [ - "NC_012669" - ], - "Watermelon_mosaic_virus__C07_284" : [ - "JF273468" - ], - "African_cassava_mosaic_virus__CF_CF354AB1_08" : [ - "KJ887816" - ], - "Tomato_yellow_leaf_curl_virus__SDSGDT" : [ - "KC999844" - ], - "Cucumber_mosaic_virus__PE" : [ - "AF268597" - ], - "Porcine_circovirus_2_Pingtung_2" : [ - "AY146992" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1966_2008" : [ - "FJ410280" - ], - "West_Nile_virus__AVA1204753" : [ - "KC736500" - ], - "Merkel_cell_polyomavirus__FraMerk22" : [ - "JN383840" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ03AN3_2004" : [ - "JF909200" - ], - "Panicum_streak_virus__A_ZA_Ill_g263" : [ - "GQ415386" - ], - "Dengue_virus_2__DENV_2_VN_BID_V773_2007" : [ - "EU482699" - ], - "Chickpea_chlorotic_stunt_virus__Et_fb_am1" : [ - "NC_008249" - ], - "Hepatitis_E_virus_genotype_3_JIO_swJ19_7" : [ - "AB443626" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLU8361_2007" : [ - "KJ672576" - ], - "Torque_teno_virus__CT39F" : [ - "AB064604" - ], - "Chikungunya_virus_3807" : [ - "KJ451622" - ], - "Simian_immunodeficiency_virus___agm_tan_1_tantalus_1" : [ - "SIU58991" - ], - "Hepatitis_B_virus__Tibet_26" : [ - "HM750146" - ], - "Hepatitis_B_virus__1950" : [ - "FJ386604" - ], - "Enterobacteria_phage_MS2__J20" : [ - "EF204939" - ], - "West_Nile_virus__WNV_1_US_BID_V6208_2002" : [ - "KJ501257" - ], - "Sclerotinia_sclerotiorum_endornavirus_1__Lactuca" : [ - "KM923990" - ], - "Cowpox_virus_RatKre08_2" : [ - "KC813505" - ], - "Tomato_leaf_curl_China_betasatellite__G102" : [ - "AM050556" - ], - "Rabies_virus__Rus_Lipetsk_8053c_2011" : [ - "KC595281" - ], - "Plum_pox_virus_Rec_Kisl_1pl" : [ - "KM273015" - ], - "Bat_circovirus_POA_2012_VI__cluster_VI" : [ - "NC_025792" - ], - "Chilli_leaf_curl_virus_India__India_Papaya_2005___AD" : [ - "DQ989326" - ], - "Porcine_epidemic_diarrhea_virus_USA_Tennesse56_2013" : [ - "KJ645654" - ], - "West_Nile_virus__WNV_1_US_BID_V6536_2009" : [ - "KJ501500" - ], - "Mycobacterium_phage_Kostya" : [ - "NC_011056" - ], - "Dengue_virus_3__DENV_3_US_BID_V1078_2003" : [ - "EU482564" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V277_2002" : [ - "EU155359" - ], - "Klebsiella_pneumoniae_CG43" : [ - "NC_022566" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2860_2006" : [ - "FJ898397" - ], - "Hepatitis_B_virus__MY491357" : [ - "KJ803826" - ], - "Dengue_virus_3__98TW388" : [ - "DQ675526" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2364_2000" : [ - "FJ744744" - ], - "Tomato_leaf_curl_betasatellite__India_Surat_2012___Surat" : [ - "KF515614" - ], - "Norovirus_Hu_GI_1_CHA7A011_2010_USA_Hu_GI_1_CHA7A011_2010_USA" : [ - "KF039736" - ], - "Rotavirus_A_RVA_Human_wt_IND_N232_2004_G10P_11" : [ - "KC175225", - "KC175222", - "KC175227", - "KC175221", - "KC175229" - ], - "Enterovirus_A76_04360_SD_CHN_2004_EV76" : [ - "JF905564" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_17_2013" : [ - "KJ672475" - ], - "Venezuelan_equine_encephalitis_virus_AG80_663" : [ - "AF075258" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V464_2006" : [ - "EU256007" - ], - "Simian_virus_40_CAL" : [ - "AY538779" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_ATCC_VR_2332" : [ - "PRU87392" - ], - "Hepatitis_B_virus__T2198_IC" : [ - "JN664918" - ], - "Human_herpesvirus_5_BE_19_2010" : [ - "KP745712" - ], - "Hepatitis_B_virus__cww2151" : [ - "KC774277" - ], - "Dengue_virus_3_ThD3_0007_87" : [ - "AY676353" - ], - "Hepatitis_B_virus_683_95" : [ - "EU594434" - ], - "Macacine_herpesvirus_4_LCL8664" : [ - "NC_006146" - ], - "Maize_streak_virus__MSV_A_ZA_Pie2_Ben3b_2008" : [ - "HQ693431" - ], - "Oropouche_virus_BeAn19991" : [ - "KP052850", - "KP052851", - "NC_005775" - ], - "Hepatitis_B_virus__I86" : [ - "FJ562253" - ], - "Avian_orthoreovirus_AVS_B" : [ - "NC_015132", - "NC_015126", - "NC_015129", - "NC_015127", - "NC_015130", - "NC_015135", - "NC_015134", - "NC_015131", - "NC_015133", - "NC_015128" - ], - "Tomato_mottle_wrinkle_virus__AR_Oran_611_13" : [ - "KM243020" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP4A" : [ - "JN013994" - ], - "Halogeometricum_pleomorphic_virus_1" : [ - "NC_017090" - ], - "Rice_black_streaked_dwarf_virus_2__V" : [ - "HQ731493", - "HQ731497", - "HQ731501", - "HQ731500", - "HQ731498", - "HQ731494", - "HQ731495", - "HQ731499", - "HQ731496", - "HQ731492" - ], - "Hepatitis_B_virus__HBV_I_092_HIV_HBV" : [ - "KM524355" - ], - "Plum_bark_necrosis_stem_pitting_associated_virus__Nanjing" : [ - "KC590347" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3883_2008" : [ - "GU131714" - ], - "Salmonella_enterica_serovar_Schwarzengrund_CVM19633" : [ - "NC_011094", - "NC_011092", - "NC_011093" - ], - "Agrotis_ipsilon_multiple_nucleopolyhedrovirus_Illinois" : [ - "NC_011345" - ], - "Hepatitis_B_virus_B0641" : [ - "DQ975271" - ], - "Hepatitis_C_virus__isolate_JK049___JK049" : [ - "HPCJK049E1" - ], - "Middle_East_respiratory_syndrome_coronavirus__Camel_UAE_D1164_14_2014" : [ - "KP719930" - ], - "Dengue_virus_3__PF89_320219" : [ - "AY744678" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite__TC_Vns" : [ - "KP868763" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0030" : [ - "KP759606" - ], - "West_Nile_virus__WNV_1_US_BID_V4609_2003" : [ - "HM488228" - ], - "Sand_fever_Naples_like_virus_Poona" : [ - "HM566177", - "HM566176", - "HM566178" - ], - "Parrot_hepatitis_B_virus__P1248" : [ - "JX274028" - ], - "Norovirus_Hu_GII_4_Aomori1_2006_JP_Hu_GII_4_Aomori1_2006_JP" : [ - "AB447432" - ], - "Potato_virus_Y__LYE84_2" : [ - "AJ439545" - ], - "Goose_circovirus__CF13001" : [ - "KP229363" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_LBC_LBC51" : [ - "KF385427" - ], - "Tomato_leaf_curl_Taiwan_virus__NT1_1" : [ - "GU723708" - ], - "Hepatitis_B_virus__W41" : [ - "EU787444" - ], - "Human_rotavirus_A_R479" : [ - "GU189558", - "GU189552", - "GU189551", - "GU189555", - "GU189556", - "GU189554", - "GU189557", - "GU189553", - "GU189559" - ], - "Human_immunodeficiency_virus_1__04ZAPS177MB1" : [ - "DQ396394" - ], - "Hepatitis_B_virus__LDA439" : [ - "KF849714" - ], - "Newcastle_disease_virus__98_1252" : [ - "AY935493" - ], - "Enterobacteria_phage_phiX174_bta3_1" : [ - "CP004084" - ], - "Bluetongue_virus_10__South_Africa_ref" : [ - "AJ585131" - ], - "Merkel_cell_polyomavirus__15b" : [ - "HM011547" - ], - "Porcine_circovirus_2__NAVET_vietnam3" : [ - "JX506730" - ], - "Ravn_virus___Ravn__Kenya__1987__R2" : [ - "EU500828" - ], - "Avian_leukosis_virus_Shiz_001" : [ - "AB669568" - ], - "Bluetongue_virus_2_TUN2000_01__Tunisia_2000" : [ - "AM773689" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5_8P20_2010_c5_8P20" : [ - "KF514416" - ], - "Human_immunodeficiency_virus_1__plwj5_6" : [ - "GU647197" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_83V_2264_3_1982" : [ - "KJ469573" - ], - "Norovirus_Hu_GII_20161_2009_VNM_Hu_GII_20161_2009_VNM" : [ - "KC409258" - ], - "Hepatitis_B_virus__LAMr_Pt__18" : [ - "AB367409" - ], - "Hepatitis_B_virus__A1_48040" : [ - "FJ692561" - ], - "Chickpea_chlorotic_dwarf_virus__A_IC_143_99" : [ - "KC172657" - ], - "Carrot_yellow_leaf_virus" : [ - "NC_013007" - ], - "Human_poliovirus_1__HAI01007" : [ - "AF405666" - ], - "Shallot_latent_virus__MS_SW_Aus2" : [ - "HQ258896" - ], - "Mumps_virus_Enders" : [ - "GU980052" - ], - "Squash_leaf_curl_virus__IL2_52" : [ - "KM595109" - ], - "Human_coronavirus_HKU1_N9" : [ - "DQ415906" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_14__AHEaCV_14_NZ_4781GA_2012" : [ - "KM874333" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dav_alpha_12" : [ - "EU384625" - ], - "Infectious_bronchitis_virus__VicS_del" : [ - "KF931628" - ], - "West_Nile_virus__WNV_1_US_BID_V6182_2008" : [ - "KJ501239" - ], - "Tomato_severe_rugose_virus__BR_Car228_08" : [ - "KC004082" - ], - "Japanese_encephalitis_virus__CZX" : [ - "JN381865" - ], - "Starling_circovirus" : [ - "NC_008033" - ], - "Canine_circovirus__UCD1_1698" : [ - "NC_020904" - ], - "Turnip_mosaic_virus__PV0054" : [ - "AB701730" - ], - "Hepatitis_B_virus_99_4" : [ - "KR013889" - ], - "Human_immunodeficiency_virus_1__04ZAPS217B1" : [ - "DQ164119" - ], - "Tomato_yellow_leaf_curl_virus___KISR_3" : [ - "KJ830842" - ], - "Hepatitis_C_virus_subtype_1b_HCV_L2" : [ - "HCU01214" - ], - "Soybean_yellow_common_mosaic_virus" : [ - "NC_016033" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1586_37622_5" : [ - "KF955451" - ], - "Turnip_mosaic_virus__USA4" : [ - "AB701739" - ], - "Tomato_leaf_curl_China_virus__JX_2" : [ - "JF681158" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_87_2013" : [ - "KJ672441" - ], - "West_Nile_virus__WNV_1_US_BID_V6547_2003" : [ - "KJ501350" - ], - "Hepatitis_C_virus_HCV_1b" : [ - "HPCK1S2", - "HPCK1R1", - "HPCK1S3", - "HPCK1R2", - "HPCK1R3", - "HPCK1S1" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0038" : [ - "KP759618" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1837_2007" : [ - "FJ461305" - ], - "Tomato_severe_rugose_virus__BR_Vic33_10" : [ - "JX865646" - ], - "Rotavirus_G9_MW69" : [ - "AJ250545" - ], - "Bluetongue_virus_2_FRA2001_03__Corsica_2001" : [ - "AM773686" - ], - "Escherichia_phage_ECBP2" : [ - "NC_018859" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2050_2007" : [ - "FJ639712" - ], - "SARS_coronavirus_GZ0401__GZ0401" : [ - "AY568539" - ], - "Small_begomovirus_associated_satellite__wf_S4" : [ - "KJ859196" - ], - "Human_papillomavirus_type_16__Qv13956" : [ - "HQ644271" - ], - "Hepatitis_B_virus__Id" : [ - "AY167092" - ], - "HBV_genotype_A2__Mart_B45" : [ - "HE974376" - ], - "Groundnut_rosette_virus_Malawi_chlorotic_satellite_RNA" : [ - "Z29703" - ], - "Porcine_epidemic_diarrhea_virus__NPL_PEDv_2013" : [ - "KJ778615" - ], - "Synechococcus_phage_S_SSM7_8109_3" : [ - "NC_015287" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1976_2008" : [ - "FJ461340" - ], - "Human_mastadenovirus_E__NHRC90339" : [ - "EF371058" - ], - "Duck_hepatitis_A_virus_3_C_YDF" : [ - "GU066821" - ], - "Human_papillomavirus_type_6__102" : [ - "HG793910" - ], - "Rabies_virus__AZ4490" : [ - "JQ685955" - ], - "Pseudomonas_putida_UW4" : [ - "NC_019670" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_CFI0295_2010" : [ - "KJ627343" - ], - "Citrobacter_rodentium_ICC168" : [ - "NC_013718", - "NC_013716", - "NC_013719", - "NC_013717" - ], - "Streptococcus_equi_zooepidemicus" : [ - "NC_012470" - ], - "Enterococcus_mundtii_QU_25" : [ - "NC_022883", - "NC_022879", - "NC_022880", - "NC_022881", - "NC_022884", - "NC_022878" - ], - "Sweet_potato_leaf_curl_virus__RL31" : [ - "EU253456" - ], - "Hepatitis_delta_virus__ZA" : [ - "EF514907" - ], - "West_Nile_virus__WNV_1_US_BID_V7816_2012" : [ - "KJ501532" - ], - "Cauliflower_mosaic_virus__TUR249" : [ - "AB863184" - ], - "South_African_cassava_mosaic_virus__MG_MG521A1_11" : [ - "KJ888029" - ], - "Chickpea_chlorosis_virus_A__3494K" : [ - "KC172684" - ], - "Koyama_Hill_virus_S7_11RS20" : [ - "AB894488", - "AB894485", - "AB894489", - "AB894491", - "AB894484", - "AB894490", - "AB894492" - ], - "Escherichia_phage_e4_1c" : [ - "NC_024210" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_230_2011" : [ - "KJ686284" - ], - "Japanese_encephalitis_virus__LYZ" : [ - "JN381869" - ], - "Hepatitis_B_virus__CMR711" : [ - "AB194952" - ], - "Porcine_circovirus_2__CQCS07" : [ - "KF742542" - ], - "Duck_circovirus__D12_KD_028" : [ - "KC851821" - ], - "West_Nile_virus_3356_2_1_1" : [ - "EF530047" - ], - "Sweet_potato_leaf_curl_virus__Yeojoo_388" : [ - "HM754635" - ], - "West_Nile_virus__WNV_1_US_BID_V4212_2003" : [ - "HM488141" - ], - "Hepatitis_B_virus__S1026_7" : [ - "FJ032354" - ], - "JC_polyomavirus_727B" : [ - "AF300952" - ], - "Chicken_anemia_virus__12" : [ - "KJ728822" - ], - "Sweet_potato_leaf_curl_virus" : [ - "AB433786", - "AB433787", - "EU309693", - "AB433788", - "DQ512731", - "NC_004650", - "AJ132548", - "AJ586885" - ], - "Pseudomonas_phage_vB_PaeP_C2_10_Ab22_Ab22" : [ - "NC_026599" - ], - "Tick_borne_encephalitis_virus_Birobidzhan_1357" : [ - "KP844727" - ], - "Lettuce_mosaic_virus__CL281" : [ - "KJ161178" - ], - "Hepatitis_B_virus__A114" : [ - "HM363591" - ], - "Lilac_leaf_chlorosis_virus" : [ - "NC_025481", - "NC_025477", - "NC_025478" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_150_2001" : [ - "DQ404176" - ], - "Rabies_virus__RV2324" : [ - "KF154998" - ], - "BK_polyomavirus__KEN_1" : [ - "AB263926" - ], - "Human_papillomavirus_type_121__NJ3301" : [ - "NC_014185" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c2P10_2009_c2P10" : [ - "KF514397" - ], - "Tomato_yellow_leaf_curl_virus__KSCTo16" : [ - "JX456638" - ], - "Canine_parvovirus_2c__UY190" : [ - "KM457118" - ], - "Human_rotavirus_A_292_stool" : [ - "AJ236777" - ], - "European_mountain_ash_ringspot_associated_virus__E53011" : [ - "HG799710" - ], - "Hepatitis_C_virus_subtype_1b__No__3" : [ - "AB154178" - ], - "Human_herpesvirus_5_BE_13_2011" : [ - "KP745657" - ], - "Porcine_circovirus_2_HEN0710" : [ - "GQ358993" - ], - "Alternanthera_yellow_vein_virus__YN598" : [ - "FJ015062" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD20_2013" : [ - "KM229852" - ], - "Tomato_yellow_leaf_curl_virus__Okcheon_1" : [ - "JN183878" - ], - "Lactobacillus_phage_phijl1" : [ - "NC_006936" - ], - "Vibrio_phage_H3" : [ - "KM612263" - ], - "Hepatitis_B_virus_Ehi_TH_lam_8_3" : [ - "AB195951" - ], - "Hepatitis_B_virus__08_10_002" : [ - "JQ429079" - ], - "Hepatitis_B_virus__MOD_4586" : [ - "GQ183461" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3700_2007" : [ - "GQ868511" - ], - "Mycoplasma_bovis_HB0801" : [ - "NC_018077" - ], - "Dengue_virus_3__DENV_3_US_BID_V2112_2000" : [ - "FJ547077" - ], - "Porcine_circovirus_2_NY0912" : [ - "GU938302" - ], - "Hepatitis_B_virus__CAR171" : [ - "AM494715" - ], - "Porcine_circovirus_2_HNLYYAL4201405" : [ - "KJ867556" - ], - "Porcine_circovirus_2_HB0401" : [ - "EF524518" - ], - "Dengue_virus_1__DENV_1_VN_BID_V783_2007" : [ - "EU482709" - ], - "West_Nile_virus__WNV_1_US_BID_V4715_2003" : [ - "HQ671723" - ], - "Lactococcus_phage_P008" : [ - "NC_008363" - ], - "Bacillus_subtilis_6051_HGW" : [ - "NC_020507" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2793_2007" : [ - "GQ199813" - ], - "Pseudomonas_phage_PPpW_4" : [ - "NC_023005" - ], - "Hepatitis_B_virus__Chmi" : [ - "HQ603070" - ], - "Avian_paramyxovirus_8_pintail_Wakuya_20_78" : [ - "FJ215864" - ], - "Human_metapneumovirus_HMPV_AUS_183399477_2004_B" : [ - "KF530163" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8526_2004" : [ - "KJ627725" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B3J1" : [ - "JN053433" - ], - "Cosavirus_JMY_2014__Cosa_CHN" : [ - "NC_025961" - ], - "Variola_virus_United_Kingdom_1946_Hinden__Middlesex" : [ - "DQ441445" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2084_2005" : [ - "KF955333" - ], - "Pichinde_mammarenavirus" : [ - "NC_006447" - ], - "Japanese_encephalitis_virus_JaGAr_01" : [ - "AF069076" - ], - "African_cassava_mosaic_virus__CF_CF127BE_07" : [ - "KJ887619" - ], - "Hepatitis_B_virus__TK165" : [ - "JF754594" - ], - "JC_polyomavirus_UNN2_cns4" : [ - "KJ659289" - ], - "Human_immunodeficiency_virus_1_IIIb_TH4_7_5" : [ - "HIVTH475A" - ], - "Papaya_leaf_curl_China_virus__LC1_2" : [ - "AM691553" - ], - "Beet_curly_top_virus_BMCTV_Mexico" : [ - "EU193175" - ], - "Lactobacillus_gasseri_ATCC_33323" : [ - "NC_008530" - ], - "South_African_cassava_mosaic_virus__MG_MG492A4_11" : [ - "KJ888025" - ], - "Pseudomonas_fluorescens_A506" : [ - "NC_021361", - "NC_017911" - ], - "Enterovirus_A71__HNCZ_201203" : [ - "KF142411" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6623_2009" : [ - "KJ627282" - ], - "Dengue_virus_2_VE_61069_2006" : [ - "HQ332184" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2834_2003" : [ - "GQ199832" - ], - "Cotton_leaf_curl_Multan_betasatellite__FC2" : [ - "HQ455351" - ], - "Human_immunodeficiency_virus_1__BFP90" : [ - "AF064699" - ], - "Chilli_leaf_curl_betasatellite__ToLCBDB__IN_Nar_Chil_04" : [ - "JF706231" - ], - "Dengue_virus_2_D2_TO_UH16_1974" : [ - "HM582111" - ], - "Torque_teno_sus_virus_1b__TTV2_SC2" : [ - "JF694118" - ], - "Hepatitis_B_virus__65_SE_BRA" : [ - "KJ854703" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_M94A_2005" : [ - "JQ319163" - ], - "Junin_mammarenavirus_XJ48" : [ - "JF799980", - "JF799984" - ], - "Tomato_leaf_curl_China_betasatellite__Y318" : [ - "AM260725" - ], - "Tobacco_rattle_virus__Umt1" : [ - "AY166660" - ], - "Betacoronavirus_HKU24_HKU24_R05005I" : [ - "NC_026011" - ], - "Dengue_virus_3__DENV_3_US_BID_V1729_2003" : [ - "FJ390371" - ], - "Potato_virus_Y__SON41" : [ - "AJ439544" - ], - "Hepatitis_B_virus__I75" : [ - "FJ562247" - ], - "Hepatitis_B_virus__SHB51" : [ - "KJ598705" - ], - "Rotavirus_A_RVA_Human_wt_COD_KisB521_2008_G12P_6" : [ - "KJ870913", - "KJ870915", - "KJ870914", - "KJ870918", - "KJ870919", - "KJ870916", - "KJ870920", - "KJ870912", - "KJ870921", - "KJ870911" - ], - "West_Nile_virus__NY_2003_Rockland" : [ - "DQ164192" - ], - "Hepatitis_B_virus__KOR20LC" : [ - "GQ475324" - ], - "Aravan_virus" : [ - "NC_020808" - ], - "Barley_yellow_dwarf_virus_PAV__068" : [ - "EF521846" - ], - "Porcine_circovirus_2__TN4_M1" : [ - "JQ181605" - ], - "Hepatitis_B_virus__WHMHD" : [ - "JN257189" - ], - "Hepatitis_C_virus__6018" : [ - "EF407448" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10QN" : [ - "JQ663556" - ], - "Swine_hepatitis_E_virus__KM01" : [ - "KJ155502" - ], - "Dengue_virus_1__DENV_1_NI_BID_V746_2006" : [ - "JN819403" - ], - "Tulare_apple_mosaic_virus" : [ - "NC_003834", - "NC_003835", - "NC_003833" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V320_2001" : [ - "EU155287" - ], - "Mumps_virus_strain_L_Zagreb_L_Zagreb" : [ - "AY685921", - "AY685920" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_201706_2011" : [ - "KM452737" - ], - "Hepatitis_B_virus__GH2537" : [ - "GQ161753" - ], - "Hepatitis_B_virus__17545_NE_BRA" : [ - "KJ854693" - ], - "Hepatitis_B_virus_MEXICO35_G" : [ - "AB375170" - ], - "Soybean_yellow_mottle_mosaic_virus_MS1" : [ - "FJ707484" - ], - "Sri_Lankan_cassava_mosaic_virus__Kerala_17" : [ - "AJ890225" - ], - "Torque_teno_virus__TTV_HD20b__uro742" : [ - "FR751493" - ], - "Rift_Valley_fever_virus_Kenya_83__21445" : [ - "DQ375402", - "DQ380171", - "DQ380198" - ], - "Barley_yellow_dwarf_virus_PAS" : [ - "NC_002160" - ], - "Cyanophage_KBS_P_1A_KBS_P_1A" : [ - "NC_020865" - ], - "Human_papillomavirus_type_52__Qv03594" : [ - "HQ537740" - ], - "Human_coronavirus_NL63__NL63_RPTEC_2004" : [ - "JX504050" - ], - "Tomato_severe_rugose_virus__ToSRV__BR_3539Tom8b_09" : [ - "JX415202" - ], - "Raspberry_ringspot_virus_cherry" : [ - "NC_005267", - "NC_005266" - ], - "Dengue_virus_1__DENV_1_US_BID_V2136_1992" : [ - "FJ410186" - ], - "Sweet_potato_leaf_curl_virus__RS2__BR_Est1" : [ - "FJ969834" - ], - "West_Nile_virus__WNV_1_US_BID_V7789_2012" : [ - "KJ501225" - ], - "Tomato_leaf_curl_China_betasatellite__Y231" : [ - "AM260714" - ], - "Tomato_leaf_curl_New_Delhi_virus__Himachal" : [ - "AM850115", - "FN356024" - ], - "Tomato_leaf_curl_New_Delhi_virus__potato___JAL_10" : [ - "KC874501", - "KC874509" - ], - "Hepatitis_B_virus__PG_7" : [ - "KF471657" - ], - "Simian_retrovirus_4_SR416" : [ - "AB920340" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2176_2000" : [ - "FJ850095" - ], - "Enterovirus_A71_EV71_JN200803" : [ - "JF913464" - ], - "Cotton_leaf_curl_Multan_virus__Okra___olc311" : [ - "AJ002459" - ], - "West_Nile_virus__WNV_1_US_BID_V4898_1999" : [ - "HQ671706" - ], - "Gallid_herpesvirus_1_vaccine_Laryngo_Vac" : [ - "JQ083494" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7302_2011" : [ - "KJ189307" - ], - "Xanthomonas_citri_phage_CP2" : [ - "NC_020205" - ], - "Parrot_hepatitis_B_virus__P1195" : [ - "JX274031" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7065_2007" : [ - "KJ189281" - ], - "Ageratum_yellow_vein_virus__AFSP1" : [ - "JN809811" - ], - "Barley_stripe_mosaic_virus_Norwich" : [ - "JF803283", - "JF803285", - "JF803284" - ], - "Human_papillomavirus_type_36" : [ - "HPU31785" - ], - "Hepatitis_B_virus_e1013" : [ - "DQ975273" - ], - "Hop_latent_virus__Taurus" : [ - "KP861891" - ], - "Sugarcane_yellow_leaf_virus__REU_YL2" : [ - "AM072756" - ], - "West_Nile_virus__WNV_1_US_BID_V7383_2011" : [ - "KJ501096" - ], - "Panthera_leo_persica_papillomavirus_type_1" : [ - "AY904724" - ], - "Tomato_leaf_curl_China_betasatellite__G30" : [ - "AJ704606" - ], - "Newcastle_disease_virus_NDV4_C" : [ - "JX443519" - ], - "Banana_bunchy_top_virus__TO310" : [ - "JF957633", - "JF957681", - "JF957657", - "JF957669", - "JF957645", - "JF957693" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3909_2008" : [ - "KF955446" - ], - "Streptococcus_agalactiae_SA20_06" : [ - "NC_019048" - ], - "Dengue_virus_3__DENV_3_US_BID_V1730_2003" : [ - "FJ390372" - ], - "Chlamydia_trachomatis_A2497" : [ - "NC_017437", - "NC_017438" - ], - "Feline_foamy_virus_F17" : [ - "FSU85043" - ], - "Porcine_circovirus_2_BH" : [ - "GQ915289" - ], - "Zygocactus_virus_X__P39" : [ - "JF930326" - ], - "Small_begomovirus_associated_satellite__wf_S25" : [ - "KJ859186" - ], - "Thermomonospora_curvata_DSM_43183" : [ - "NC_013510" - ], - "Tobacco_mosaic_virus__Longlin_1" : [ - "HE818433" - ], - "Hepatitis_B_virus__Ag07" : [ - "KJ843169" - ], - "West_Nile_virus__WNV_1_US_BID_V6467_2003" : [ - "KJ501314" - ], - "Human_immunodeficiency_virus_1__03ZAPS032MB1" : [ - "DQ445633" - ], - "Duck_circovirus__D11_JW_010" : [ - "KC851807" - ], - "Wheat_streak_mosaic_virus__Saadat_Shahr" : [ - "EU914918" - ], - "Bovine_leukemia_virus__LS2" : [ - "HE967302" - ], - "Tobacco_mosaic_virus__Mangshi_1" : [ - "HE818436" - ], - "Caldicellulosiruptor_hydrothermalis_108" : [ - "NC_014652" - ], - "Human_respiratory_syncytial_virus__RSV_2" : [ - "GU591759" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota3" : [ - "KP283412" - ], - "Human_immunodeficiency_virus_1__pBRGX" : [ - "JF719818" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3576_2007" : [ - "GU131841" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V4265_2007" : [ - "GU131927" - ], - "West_Nile_virus__WNV_1_US_BID_V5213_2007" : [ - "JF920742" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7458_2009" : [ - "KJ627335" - ], - "Bean_golden_mosaic_virus__BR_Cri1_12" : [ - "KJ939837" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda18_05" : [ - "KC706659" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_260_2012" : [ - "KP308401" - ], - "Zucchini_yellow_mosaic_virus_KR_PE" : [ - "AY278999" - ], - "Porcine_circovirus_2__Aust_7" : [ - "AY754018" - ], - "Bacillus_phage_Slash" : [ - "NC_022774" - ], - "Tomato_yellow_leaf_curl_virus__Baja_California" : [ - "HM459851" - ], - "Temperate_fruit_decay_associated_virus__MFB15S1" : [ - "KJ955449" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_USA_89_45989_1989" : [ - "KJ469634" - ], - "Hardenbergia_mosaic_virus__MD3" : [ - "KJ152153" - ], - "Mycobacterium_phage_Adler" : [ - "NC_023591" - ], - "Hepatitis_B_virus__TK161" : [ - "JF754621" - ], - "Chicken_anemia_virus__HN9" : [ - "DQ141672" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2794_2007" : [ - "FJ882549" - ], - "Cucumber_mosaic_virus__Cb7_CMV" : [ - "DQ785470" - ], - "Cauliflower_mosaic_virus__IRN5" : [ - "AB863140" - ], - "Human_immunodeficiency_virus_1__03ZAPS125MB1" : [ - "DQ396390" - ], - "Enterovirus_A71_SH_17_SH_CHN_2002" : [ - "JX678885" - ], - "Maize_streak_virus__MSV_F_NG_ng2_Zar_2011" : [ - "KJ437654" - ], - "Serratia_proteamaculans_568" : [ - "NC_009829", - "NC_009832" - ], - "Staphylococcus_aureus_T0131" : [ - "NC_017347" - ], - "Cleome_leaf_crumple_virus__BR_AL_Ril1_07" : [ - "JN103434" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V173_1989" : [ - "EU255968" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V63_2005" : [ - "EU529678" - ], - "Human_coronavirus_OC43_OC43_human_USA_901_41_1990" : [ - "KF530065" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7696_2012" : [ - "KF973475" - ], - "Porcine_circovirus_2_QD" : [ - "AY291316" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_D618" : [ - "JX503076" - ], - "Rabies_virus__A10_0512" : [ - "JQ685968" - ], - "Honeysuckle_yellow_vein_mosaic_virus__HY12" : [ - "AB178946" - ], - "GB_virus_C_variant_troglodytes" : [ - "AF070476" - ], - "Ageratum_yellow_vein_virus__Fujian" : [ - "EF554784" - ], - "Hepatitis_B_virus_544_4a" : [ - "KR013964" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_92E_024_01_1992" : [ - "KP258728" - ], - "Rice_yellow_mottle_virus__Ug1" : [ - "KM487710" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_K_SD_SD273_2013" : [ - "KM229906" - ], - "Human_immunodeficiency_virus_1__ES_P1751" : [ - "GQ372986" - ], - "Temperate_fruit_decay_associated_virus__MFBpe4" : [ - "KR134328" - ], - "Tomato_curly_stunt_virus" : [ - "NC_004675" - ], - "JC_polyomavirus__JCV144_41" : [ - "JF424890" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4023_2008" : [ - "GU131785" - ], - "Hepatitis_B_virus_513_7" : [ - "KR013795" - ], - "Chilli_leaf_curl_virus__Taq4" : [ - "JN604495" - ], - "Foot_and_mouth_disease_virus___type_O_O10_Philippines_o10phil54_iso54" : [ - "AY593811" - ], - "Sugarcane_striate_mosaic_associated_virus" : [ - "NC_003870" - ], - "Simian_immunodeficiency_virus__BF1167" : [ - "JQ866001" - ], - "Porcine_circovirus_2_Fd12" : [ - "AY321989" - ], - "West_Nile_virus__WNV_1_US_BID_V6399_2002" : [ - "KJ501450" - ], - "Murine_leukemia_virus__NeRV" : [ - "DQ366149" - ], - "Hepatitis_B_virus__213" : [ - "JQ040135" - ], - "Lactococcus_phage_P087" : [ - "NC_012663" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_c5P1" : [ - "JF292922" - ], - "Foot_and_mouth_disease_virus___type_A_A21_Kenya_a21kenya_iso77" : [ - "AY593761" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK6" : [ - "KF287135" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA143" : [ - "KF670682" - ], - "Hepatitis_delta_virus_Miyako_JA_M18" : [ - "AB118833" - ], - "West_Nile_virus__WNV_1_US_BID_V6527_2001" : [ - "KJ501343" - ], - "Hepatitis_B_virus__S1556_2" : [ - "EU589338" - ], - "African_cassava_mosaic_virus__MG_MG2A9_05" : [ - "KJ887821" - ], - "Orf_virus_OV_SA00_ORFD" : [ - "NC_005336" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V271_2006" : [ - "EU482858" - ], - "Cotton_leaf_curl_Multan_virus__Multan" : [ - "FJ218487" - ], - "Rift_Valley_fever_virus_2007000323" : [ - "JF326189", - "JF326194", - "JF326203" - ], - "Human_immunodeficiency_virus_1__98VNBG7" : [ - "FJ185231" - ], - "Hepatitis_B_virus__FLT020" : [ - "GQ358140" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_NM042_3" : [ - "KM233118" - ], - "Melon_chlorotic_mosaic_virus__VE10_93" : [ - "KF670625", - "KF670624" - ], - "Human_papillomavirus_type_33__Qv34189" : [ - "HQ537707" - ], - "Dengue_virus_2_ThNH29_93" : [ - "AF169678" - ], - "Mycobacterium_phage_Gaia" : [ - "NC_026590" - ], - "Salmonella_enterica_serovar_Typhimurium_14028S" : [ - "NC_016856", - "NC_016855" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo182_08" : [ - "KC706549" - ], - "Human_immunodeficiency_virus_1__1299_d22" : [ - "AY308761" - ], - "Porcine_circovirus_2__RU" : [ - "KC924956" - ], - "Hepatitis_B_virus_SG_III" : [ - "AY781187" - ], - "Porcine_circovirus_2__JY_1" : [ - "KC753771" - ], - "Hepatitis_B_virus__SamsunD37" : [ - "AB674433" - ], - "Hepatitis_B_virus__HBV122" : [ - "JN688691" - ], - "Hepatitis_B_virus__DEN5876" : [ - "KF779218" - ], - "Hepatitis_B_virus_047" : [ - "AB900097" - ], - "Plum_pox_virus__RU_17sc" : [ - "KC020124" - ], - "Alteromonas_macleodii__Ionian_Sea_UM4b" : [ - "NC_021714" - ], - "Hepatitis_B_virus__A2_11" : [ - "GU815570" - ], - "Burkholderia_phage_KS9_KS9" : [ - "NC_013055" - ], - "Rattus_norvegicus_polyomavirus_1__5700" : [ - "KR075944" - ], - "Roseobacter_phage_SIO1_sbrsio67" : [ - "FJ867912" - ], - "Ageratum_yellow_vein_China_betasatellite__Hn9" : [ - "AM048835" - ], - "Human_T_lymphotropic_virus_2_k96" : [ - "AF326584" - ], - "Hepatitis_B_virus__B3_7" : [ - "GU815612", - "HQ231882" - ], - "Sclerotinia_sclerotiorum_botybirnavirus_1" : [ - "NC_027138", - "NC_027139" - ], - "Crimean_Congo_hemorrhagic_fever_virus_IbAr10200" : [ - "NC_005301", - "AY947891", - "AY389508", - "NC_005300" - ], - "Human_immunodeficiency_virus_1__TV749" : [ - "HM215251" - ], - "Hepatitis_B_virus__patient_CI__HBV_subtype_ayw" : [ - "X65258" - ], - "Porcine_circovirus_2__BX" : [ - "HM142896" - ], - "Vibrio_phage_ICP1_2006_A" : [ - "HQ641351" - ], - "Lactobacillus_reuteri_JCM_1112" : [ - "NC_010609" - ], - "Human_immunodeficiency_virus_1__X623" : [ - "AF450097" - ], - "African_cassava_mosaic_virus__CF_CF41BE_07" : [ - "KJ887597" - ], - "Clostridium_phage_phiCD38_2" : [ - "NC_015568" - ], - "Measles_virus_Ichinose_Vero" : [ - "AB032167" - ], - "Synechococcus_CC9311" : [ - "NC_008319" - ], - "BK_polyomavirus__NEB_10" : [ - "AB365141" - ], - "Torque_teno_sus_virus_1b__TTV2Ln23_2" : [ - "HM633239" - ], - "Hepatitis_B_virus_G2_27246" : [ - "AF090839" - ], - "Natronococcus_occultus_SP4" : [ - "NC_019975", - "NC_019974", - "NC_019976" - ], - "Banana_bunchy_top_virus__Egyptian" : [ - "AF102783" - ], - "Parrot_hepatitis_B_virus__P410" : [ - "JX274024" - ], - "GB_virus_C__GSI85" : [ - "D87262" - ], - "Norovirus_Hu_GI_1_CHA9A004_20110426_2011_USA_Hu_GI_1_CHA9A004_20110426_2011_USA" : [ - "KF039733" - ], - "Dengue_virus_1__DENV_1_VN_BID_V970_2007" : [ - "EU482515" - ], - "Squash_leaf_curl_virus__IL1_19" : [ - "KM595099" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3481_2008" : [ - "GQ868549" - ], - "Tomato_severe_rugose_virus__ToSRV__BR_1646Tom4a_08" : [ - "JX415198" - ], - "Human_papillomavirus_type_6__75" : [ - "HG793883" - ], - "Hepatitis_B_virus__A58" : [ - "HM363609" - ], - "Tomato_yellow_leaf_curl_virus__HZ65" : [ - "JX070045" - ], - "Hepatitis_B_virus__Cuba47a" : [ - "KM606740" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_304_2012" : [ - "KP308408" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Trichy_OY118_2006___OY118" : [ - "GU111970" - ], - "Dengue_virus_2__19190_BR_PE_10" : [ - "JX669478" - ], - "Maize_yellow_dwarf_virus_RMV_RMV_MTFE87" : [ - "NC_021484" - ], - "Shewanella_baltica_OS195" : [ - "NC_009999", - "NC_010000", - "NC_009998", - "NC_009997" - ], - "Newcastle_disease_virus__JS_07_16_Pi" : [ - "FJ766527" - ], - "West_Nile_virus__WNV_1_US_BID_V6447_2002" : [ - "KJ501304" - ], - "Decapod_penstyldensovirus_1__Ganyu" : [ - "JX258653" - ], - "Newcastle_disease_virus_SpottedDove_China_08" : [ - "KC934170" - ], - "Hepatitis_delta_virus__D10_A" : [ - "KJ744227" - ], - "Hepatitis_B_virus_1240_1a" : [ - "KR014022" - ], - "Maize_streak_virus__MSV_A_MZ_Map4_Moz25_2007" : [ - "HQ693354" - ], - "Maize_streak_virus__MSV_A_KE_Nan3_Ke8_2008" : [ - "HQ693331" - ], - "Hepatitis_B_virus__D107" : [ - "EU939652" - ], - "Canine_distemper_virus_50Con" : [ - "AB476402" - ], - "Sin_Nombre_virus__NM_H10" : [ - "NC_005215", - "NC_005217" - ], - "Dengue_virus_3_FW06" : [ - "AY858041" - ], - "Watermelon_chlorotic_stunt_virus__IL3_77" : [ - "KM820266" - ], - "West_Nile_virus__WNV_1_US_BID_V4100_2008" : [ - "HM488206" - ], - "West_Nile_virus__WNV_1_US_BID_V4903_2000" : [ - "HQ671711" - ], - "Rice_stripe_virus__IS_JB" : [ - "FJ602691", - "FJ602678" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda45_05" : [ - "KC706647" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3584_2006" : [ - "GU131865" - ], - "Marine_gokushovirus__GOM" : [ - "NC_022790" - ], - "Tomato_yellow_leaf_curl_virus_Israel_IL_CR_5240_17_2012" : [ - "KF533856" - ], - "Hepatitis_B_virus__Greenland_2" : [ - "AB287321" - ], - "SFTS_virus_HNXY_224_HNXY_224" : [ - "KC292290", - "KC292343", - "KC292317" - ], - "West_Nile_virus_3356K_VP2" : [ - "EF657887" - ], - "West_Nile_virus__WNV_1_US_BID_V6627_2002" : [ - "KJ501376" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL168A" : [ - "AB985574" - ], - "Tomato_yellow_leaf_curl_virus__Cuba___Cuban" : [ - "AJ223505" - ], - "Coxsackievirus_A16_CC090" : [ - "KF055243" - ], - "Dengue_virus_2__DENV_2_US_BID_V676_1998" : [ - "EU482733" - ], - "Hepatitis_C_virus_subtype_2a_MD2a_1" : [ - "AF238481" - ], - "Dengue_virus_1__88463_BR_PE_02" : [ - "JX669475" - ], - "Tomato_yellow_leaf_curl_virus__Gyeongju_52" : [ - "HM856915" - ], - "Hepatitis_B_virus__D_NC_128225_2003" : [ - "HQ700510" - ], - "Tomato_mosaic_virus_ToMV1_2" : [ - "DQ873692" - ], - "Okra_yellow_mosaic_Mexico_virus____Sida__Sida" : [ - "JX219472" - ], - "Peste_des_petits_ruminants_virus_Tibet_Bharal_2008" : [ - "JX217850" - ], - "Human_immunodeficiency_virus_1__95SN1795" : [ - "AY093603" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_121_2012" : [ - "KJ686277" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4767_2009" : [ - "HM631862" - ], - "Sida_leaf_curl_virus__Hn57" : [ - "NC_007638" - ], - "Tomato_severe_rugose_virus__BR_Vic23_10" : [ - "JX865636" - ], - "Maize_streak_virus__MSV_A_ZA_War10_Ta10_2008" : [ - "HQ693440" - ], - "Hepatitis_B_virus__FMD59" : [ - "GU168594" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__JS2011_109" : [ - "KC505139", - "KC505140", - "KC505138" - ], - "Human_immunodeficiency_virus_1__98BWMC13_4" : [ - "AF443077" - ], - "Turkey_coronavirus_TCoV_TX_GL_01" : [ - "GQ427174" - ], - "Bacillus_cytotoxicus_NVH_391_98" : [ - "NC_009673", - "NC_009674" - ], - "Muscovy_duck_reovirus_D1546" : [ - "KJ871018", - "KJ871020", - "KJ871025", - "KJ871019", - "KJ871024", - "KJ871022", - "KJ871023", - "KJ871021", - "KJ871017" - ], - "Enterobacter_phage_IME11" : [ - "NC_019423" - ], - "Junin_mammarenavirus_Candid1_wt" : [ - "HQ126699", - "HQ126698" - ], - "Candidatus_Uzinura_diaspidicola_ASNER" : [ - "NC_020135" - ], - "Porcine_circovirus_2__S6096" : [ - "JF317589" - ], - "Hepatitis_C_virus__QC114" : [ - "JF735110" - ], - "Human_immunodeficiency_virus_1__ZM246F_flC12" : [ - "FJ496190" - ], - "Leishmania_RNA_virus_1___4" : [ - "NC_003601" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PK_75A_2008" : [ - "HM748928" - ], - "Hepatitis_B_virus_G5_27295" : [ - "AF090842" - ], - "Dengue_virus_2__DENV_2_US_BID_V677_1998" : [ - "EU482734" - ], - "Barley_yellow_dwarf_virus_GAV__05WN5" : [ - "EU402390" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_11SH_GD" : [ - "JX235365" - ], - "Human_poliovirus_3_NIE1218544" : [ - "KJ170612" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1865_2007" : [ - "JF937649" - ], - "Enterovirus_A71_LN009" : [ - "HQ407557" - ], - "Human_immunodeficiency_virus_1__97VNAG223" : [ - "FJ185258" - ], - "Maize_streak_virus__UHoi_154" : [ - "EF547099" - ], - "Human_immunodeficiency_virus_1__04ZASK193B1" : [ - "DQ396396" - ], - "HCBI9_212_virus__HCBI9_212__S_8B_1" : [ - "NC_024690" - ], - "Canine_parvovirus_2c__UY169" : [ - "KM457114" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI0350_2010_A" : [ - "KJ627408" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1579_2007" : [ - "FJ024438" - ], - "Hepatitis_E_virus_E087_SAP04C" : [ - "AB369688" - ], - "Bacillus_phage_Pookie" : [ - "NC_027394" - ], - "Buggy_Creek_virus" : [ - "HM147986" - ], - "Buchnera_aphidicola_LL01__Acyrthosiphon_pisum" : [ - "NC_017255" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Drosdov" : [ - "DQ211643", - "DQ211630", - "DQ211617" - ], - "Simian_immunodeficiency_virus__SIVgsn_99CM166" : [ - "AF468659" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V324_2001" : [ - "EU256097" - ], - "Bovine_enterovirus_type_2_PS87" : [ - "AY508696" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA134" : [ - "KF670679" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_3__AHEaCV_3_NZ_3887G_2012" : [ - "KM874297" - ], - "Porcine_circovirus_2__YD02" : [ - "KM360052" - ], - "Cowpox_virus_JagKre08_2" : [ - "KC813498" - ], - "Hepatitis_B_virus__Occult_HK315" : [ - "KJ410504" - ], - "Tobacco_mosaic_virus__Hongta" : [ - "HE818428" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2716_2006" : [ - "FJ882540" - ], - "Foot_and_mouth_disease_virus___type_A__IND_110_1999" : [ - "HQ832577" - ], - "Corchorus_yellow_vein_mosaic_virus__CEA8" : [ - "NC_020473" - ], - "Salmonella_typhimurium_DT104" : [ - "NC_022569", - "NC_022570" - ], - "Mesocricetus_auratus_papillomavirus_1__APV10" : [ - "NC_022647" - ], - "Measles_virus_SI" : [ - "JF791787" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2012_01_05_2" : [ - "KC862574" - ], - "Porcine_circovirus_2_ZhouKou" : [ - "EU656143" - ], - "Porcine_bocavirus_3C__pig_ZJD_China_2006" : [ - "JN681175" - ], - "Sugarcane_streak_Egypt_virus____Aswan__Aswan" : [ - "AF039528" - ], - "Papaya_leaf_curl_China_betasatellite" : [ - "NC_009555" - ], - "Hepatitis_B_virus__A1_48008" : [ - "FJ692558" - ], - "Human_immunodeficiency_virus_1__WC10P_3" : [ - "AY314046" - ], - "Hepatitis_B_virus__SamsunD74" : [ - "AB674437" - ], - "McMurdo_Ice_Shelf_pond_associated_circular_DNA_virus_6__alg49_69" : [ - "NC_024482" - ], - "Usutu_virus_V260" : [ - "KJ438735" - ], - "Hepatitis_B_virus__J133" : [ - "GQ377584" - ], - "Hepatitis_B_virus__GSF_1" : [ - "HM750155" - ], - "Human_respiratory_syncytial_virus_BE_5150_08" : [ - "JX576730" - ], - "Soybean_mosaic_virus__Ar13" : [ - "KF135488" - ], - "Hepatitis_B_virus__2_1" : [ - "AY217372" - ], - "Human_immunodeficiency_virus_1__DR1873" : [ - "AB253653", - "AB253647", - "AB253655", - "AB253656", - "AB253657", - "AB253654", - "AB253658", - "AB253652", - "AB253649", - "AB253648", - "AB253651", - "AB253650" - ], - "Bluetongue_virus_3_DPP973" : [ - "JQ086284", - "JQ086289", - "JQ086282", - "JQ086287", - "JQ086281", - "JQ086290", - "JQ086286", - "JQ086283", - "JQ086285", - "JQ086288" - ], - "Porcine_epidemic_diarrhea_virus__KUIDL_PED_2014_001" : [ - "KJ588064" - ], - "Turnip_mosaic_virus__CRO184A" : [ - "KF595121" - ], - "Macroptilium_yellow_vein_virus__BR_Pai27_11" : [ - "KJ939907" - ], - "Hepatitis_C_virus_subtype_6o__QC227" : [ - "EF424627" - ], - "Classical_swine_fever_virus__CSFV_IVRI_VB_131" : [ - "KM262189" - ], - "Porcine_circovirus_2__TZ06" : [ - "FJ644920" - ], - "South_African_cassava_mosaic_virus__MG_MG694A7_11" : [ - "KJ888090" - ], - "West_Nile_virus__WNV_1_US_BID_V6645_2003" : [ - "KJ501389" - ], - "Hepatitis_B_virus__PAN001" : [ - "GQ358149" - ], - "Enterovirus_A71_MRS_09_3663" : [ - "JN835312" - ], - "Tomato_yellow_leaf_curl_virus__SDLY" : [ - "HM627884" - ], - "Cotton_leaf_curl_virus_betasatellite__Ganganagar_Rajasthan" : [ - "HQ158008" - ], - "Streptococcus_pneumoniae_SPN032672" : [ - "NC_021003" - ], - "Porcine_circovirus_2_GXHZ_1" : [ - "EF675230" - ], - "Cotton_leaf_curl_Burewala_alphasatellite" : [ - "HE965671", - "HE965687", - "HE965677", - "GU992936", - "HE972279", - "HE972280", - "HE972284", - "HE972277", - "HE972283", - "HE972281", - "HE965689", - "HE965672", - "GU992937", - "HE965673", - "HE965670", - "HE965682", - "HE972278", - "HE965688", - "HQ316180", - "JX262389", - "NC_013803", - "FN658730", - "HE965683", - "HE966425", - "FN658729", - "HE972282", - "HE965675", - "HQ728354", - "HE965686", - "HE965674", - "FN658728", - "HE965685", - "HE979545", - "HE965676", - "HE965681" - ], - "Dengue_virus_1_D1_SG_05K3915DK1_2005" : [ - "EU081248" - ], - "Hepatitis_B_virus__E2_5" : [ - "GU815695" - ], - "Small_begomovirus_associated_satellite__wf_S11" : [ - "KJ859172" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3677_2" : [ - "KM034557" - ], - "Alteromonas_phage_vB_AmaP_AD45_P1" : [ - "NC_021532" - ], - "Foot_and_mouth_disease_virus___type_O__12LPN3" : [ - "JX066665" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_438_2001" : [ - "DQ404174" - ], - "Pseudomonas_phage_vB_PaeP_p2_10_Or1" : [ - "NC_019813" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3890_2008" : [ - "GU131720" - ], - "Turnip_rosette_virus" : [ - "AY177608" - ], - "Infectious_bursal_disease_virus" : [ - "AF508176" - ], - "Hepatitis_delta_virus__OA" : [ - "EF514905" - ], - "Circoviridae_21_LDMD_2013" : [ - "NC_025724" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3845_2008" : [ - "GU131683" - ], - "Hepatitis_B_virus__A178" : [ - "HM363589" - ], - "Tomato_leaf_curl_New_Delhi_virus_Severe__New_Delhi" : [ - "HM159454", - "HM159455" - ], - "Paenibacillus_Y412MC10" : [ - "NC_013406" - ], - "Euphorbia_yellow_mosaic_virus__BR_Vic9_10" : [ - "JX871379" - ], - "Collimonas_fungivorans_Ter331" : [ - "NC_015856" - ], - "Newcastle_disease_virus__chicken_China_Guangxi15_2010" : [ - "JX193076" - ], - "JC_polyomavirus__FD_3" : [ - "AB103416" - ], - "Human_herpesvirus_5_6397" : [ - "JX512197" - ], - "West_Nile_virus__WNV_1_US_BID_V5235_2009" : [ - "JF920760" - ], - "West_Nile_virus_Italy_2014_Pavia4" : [ - "KP789959" - ], - "Grapevine_rupestris_stem_pitting_associated_virus_Syrah_Grapevine_Rupestris_stem_pitting_associated_Syrah_California_isolate" : [ - "AY368590" - ], - "Porcine_circovirus_1__PCV1_XFD_Beijing" : [ - "KC447455" - ], - "Dengue_virus_2__FGU_Dec_01" : [ - "EU920834" - ], - "Hepatitis_delta_virus_dFr2045_dFr2045" : [ - "AM902168" - ], - "Mycobacterium_phage_OkiRoe" : [ - "NC_024366" - ], - "Infectious_bursal_disease_virus_Cu_1_M" : [ - "AF362771" - ], - "Dengue_virus_2__DENV_2_US_BID_V1182_1989" : [ - "EU482585" - ], - "Mumps_virus_Biken" : [ - "AF314561" - ], - "Rhizoctonia_solani_virus_717_Rhizoctonia_solani_717_partitivirus" : [ - "NC_003801", - "NC_003802" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_24__AHEaCV_24_NZ_2183TU_2913" : [ - "NC_026652" - ], - "Porcine_circovirus_2__YC" : [ - "HM142894" - ], - "Farmington_virus_CT_114" : [ - "NC_025253" - ], - "Human_immunodeficiency_virus_1__02BR034" : [ - "DQ358812" - ], - "West_Nile_virus__WNV_1_US_BID_V7390_2009" : [ - "KJ501102" - ], - "Hepatitis_B_virus__cxa2022" : [ - "KC774310" - ], - "Pseudomonas_phage_D3112" : [ - "NC_005178" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1981_2001" : [ - "FJ639671" - ], - "Bhendi_yellow_vein_India_virus__India_Thadagan_OY156_2006___OY156" : [ - "GU112032" - ], - "Chikungunya_virus__SGEHICHS425208" : [ - "FJ445445" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5_10P20_2010_c5_10P20" : [ - "KF514393" - ], - "Cucumber_green_mottle_mosaic_virus__KW" : [ - "AF417242" - ], - "Hepatitis_B_virus_C0309374_DPS_F" : [ - "AP011104" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0134" : [ - "KP759682" - ], - "Bean_yellow_mosaic_virus__PN80A" : [ - "HG970861" - ], - "Hepatitis_B_virus__I201" : [ - "FJ562310" - ], - "Potato_Virus_P__Bra" : [ - "EU338239" - ], - "Tomato_yellow_leaf_curl_virus__Bus" : [ - "GQ141873" - ], - "Beet_curly_top_Iran_virus__IR_Tabr_8RB_Red_beet_10" : [ - "JX945572" - ], - "Cassava_mosaic_Madagascar_virus__MG_Tol_06" : [ - "NC_017005", - "NC_017004" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Ira_M4P_Mel_09" : [ - "JF501725" - ], - "Tomato_zonate_spot_virus__Tomato_YN" : [ - "NC_010491", - "NC_010489", - "NC_010490" - ], - "Porcine_circovirus_2_Fd4" : [ - "AY321986" - ], - "Hepatitis_B_virus__ECO51109CWP4" : [ - "JQ664506" - ], - "Turnip_ringspot_virus__Toledo" : [ - "NC_013219", - "NC_013218" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V264_2005" : [ - "EU256074" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3615_2007" : [ - "GU131878" - ], - "Hepatitis_C_virus_subtype_1b_MD28" : [ - "AF207769" - ], - "Infectious_bronchitis_virus_Arkansas_Vaccine" : [ - "GQ504721" - ], - "Burkholderia_phenoliruptrix_BR3459a" : [ - "NC_018696", - "NC_018695", - "NC_018672" - ], - "Hepatitis_B_virus__G50" : [ - "FM209514" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4866_2009" : [ - "HQ705613" - ], - "Human_adenovirus_21_NHRC_5" : [ - "KJ364578" - ], - "Hepatitis_B_virus__V103" : [ - "HM363613" - ], - "Tomato_leaf_curl_New_Delhi_virus___Bitter_Gourd__Mn_05" : [ - "AM747291" - ], - "Newcastle_disease_virus_chicken_China_JSX1_2010" : [ - "JX519467" - ], - "Tomato_yellow_leaf_curl_virus__cucumber" : [ - "EF433426" - ], - "Squash_leaf_curl_virus__JO1_117" : [ - "KM595163" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140254" : [ - "KR653296" - ], - "Hepatitis_B_virus__cxa1210" : [ - "KC774296" - ], - "Watermelon_mosaic_virus__SangJu6_1" : [ - "KP100058" - ], - "Hepatitis_B_virus__C120" : [ - "EU939579" - ], - "South_African_cassava_mosaic_virus__MG_MG729A2_11" : [ - "KJ887748" - ], - "JC_polyomavirus__MMW_2" : [ - "AB362362" - ], - "Rickettsia_prowazekii_RpGvF24" : [ - "NC_017057" - ], - "Human_adenovirus_35_35p" : [ - "AY271307" - ], - "Malvastrum_leaf_curl_virus_associated_defective_DNA_beta__G87" : [ - "NC_007725" - ], - "Synechococcus_phage_ACG_2014i__Syn7803US120" : [ - "NC_027132" - ], - "Human_immunodeficiency_virus_1__CH77E_flC9" : [ - "FJ496006" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_Asia1Leb83_asia1leb4_iso4" : [ - "AY593799" - ], - "Human_papillomavirus_type_115__GC02" : [ - "FJ947080" - ], - "Tobacco_bushy_top_virus_satellite_like_RNA__SalR_YN2" : [ - "AJ315136" - ], - "Dengue_virus_2__E1429Y12" : [ - "KM279599" - ], - "Tomato_yellow_leaf_curl_virus_HNMC" : [ - "JQ038233" - ], - "Hepatitis_B_virus_adr_subtype_NSS_3" : [ - "AB042284" - ], - "Muromegalovirus_G4_G4" : [ - "EU579859" - ], - "Tomato_leaf_deformation_virus__PA98_2_TM13" : [ - "JX501508" - ], - "Kobuvirus_sewage_Kathmandu__KoV_SewKTM" : [ - "JQ898342" - ], - "Infectious_bronchitis_virus_ck_CH_LLN_130101" : [ - "KP118892" - ], - "Tomato_yellow_leaf_curl_virus_HNSJ" : [ - "JQ004051" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5477_2010" : [ - "JF937620" - ], - "WU_Polyomavirus__HB140" : [ - "KC571697" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2199_2001" : [ - "FJ639769" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_86E_007_01_1986" : [ - "KP258723" - ], - "African_cassava_mosaic_virus__MG_MG101A1_07" : [ - "KJ887909" - ], - "Grapevine_virus_A__3138_03" : [ - "JX559641" - ], - "Hepatitis_C_virus_subtype_4n__HCV_4n_GB_BID_G1655" : [ - "JX227970" - ], - "Porcine_circovirus_2_HN0907" : [ - "GU938303" - ], - "Peanut_bud_necrosis_virus__PbNAV" : [ - "JX843805" - ], - "Human_papillomavirus_type_16__Rw851" : [ - "HQ644291" - ], - "Soybean_mosaic_virus__India" : [ - "KM979229" - ], - "Cucumber_mosaic_virus_satellite_RNA__Ky" : [ - "DQ975201" - ], - "Hepatitis_B_virus__HCUCH19" : [ - "HM590472" - ], - "Bifidobacterium_animalis_lactis_V9" : [ - "NC_017217" - ], - "Squash_leaf_curl_virus__PA1_J250" : [ - "KM595222" - ], - "Hepatitis_B_virus__N204C_e408" : [ - "KJ173423" - ], - "Potato_virus_S__WaDef_US" : [ - "FJ813512" - ], - "Croton_yellow_vein_mosaic_betasatellite__India__Bhubaneswar_OYBHU_2006___OYBHU" : [ - "GU111995" - ], - "Uukuniemi_virus" : [ - "NC_005214" - ], - "Bluetongue_virus_9__BBF" : [ - "JF443165", - "JF443166", - "JF443163", - "JF443158", - "JF443164", - "JF443161", - "JF443159", - "JF443167", - "JF443162", - "JF443160" - ], - "Hepatitis_C_virus_subtype_1b_MD3_1" : [ - "AF165049" - ], - "Candidatus_Blochmannia_floridanus" : [ - "NC_005061" - ], - "Dengue_virus_2__D2_Pakistan_2011_23_2011" : [ - "KF041232" - ], - "Feline_morbillivirus_ChJP073" : [ - "AB924122" - ], - "Hepatitis_B_virus_FMU017" : [ - "AY206388" - ], - "Human_immunodeficiency_virus_1__MERLBDTRC3" : [ - "JN860762" - ], - "Botrytis_virus_F" : [ - "NC_002604" - ], - "Beak_and_feather_disease_virus__BFDV_S_PL_169_2006" : [ - "JX221016" - ], - "Hepatitis_B_virus__PNF4532" : [ - "KF779328" - ], - "Hepatitis_B_virus_HB242" : [ - "JQ027310" - ], - "Porcine_circovirus_2__PCV_Y4" : [ - "JX294717" - ], - "Chlamydia_trachomatis_L1_224" : [ - "NC_020973", - "NC_020952" - ], - "Hepatitis_B_virus__chimp82" : [ - "AJ131575" - ], - "Porcine_circovirus_2__Imp_1103" : [ - "AJ293867" - ], - "Potato_leafroll_virus__the_polish_isolate" : [ - "X74789" - ], - "Human_parainfluenza_virus_3_HPIV3_AUS_9_2007" : [ - "KF530225" - ], - "Hepatitis_B_virus__ES71_4" : [ - "JF828924" - ], - "West_Nile_virus__Spain_2010_H_1b" : [ - "JF719069" - ], - "Porcine_circovirus_1_PCV1_G" : [ - "JN398656" - ], - "Pigeon_paramyxovirus_1_PPMV_1_Belgium_98_238_1998" : [ - "JX901109" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4971_1" : [ - "KR105284" - ], - "Enterovirus_D68__NY120" : [ - "KP745751" - ], - "Leek_yellow_stripe_virus__3mEl7" : [ - "AB194621" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2260_2006" : [ - "FJ639820" - ], - "West_Nile_virus__WNV_1_US_BID_V6656_2004" : [ - "KJ501398" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V463_2006" : [ - "EU256092" - ], - "Dengue_virus_1__HNRG27213" : [ - "KC692513" - ], - "Wheat_dwarf_virus__NXYC07_16" : [ - "KJ536097" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_EDRD_1" : [ - "AB811785", - "AB288356" - ], - "Human_smacovirus_1__Orgeon_8_2011_Portland_D53" : [ - "KP233193" - ], - "Hepatitis_E_virus__JSN_Sap_FH02C" : [ - "AB200239" - ], - "Bacillus_phage_phIS3501" : [ - "NC_019502" - ], - "Hepatitis_B_virus__919060" : [ - "JN040810" - ], - "Echovirus_E7_DH22G_JS_2012" : [ - "KJ765699" - ], - "Human_papillomavirus_type_27b" : [ - "AB211993" - ], - "Hepatitis_B_virus__pt5T" : [ - "KM875411" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL169A" : [ - "AB985575" - ], - "Hepatitis_B_virus__FMD136" : [ - "GU332704" - ], - "Hepatitis_B_virus__017_EA_Gun" : [ - "KF873519" - ], - "Hepatitis_E_virus__TLS25" : [ - "EU495148" - ], - "Coxsackievirus_A14_G_14_CA14" : [ - "AY421769" - ], - "Enterovirus_B80__HZ01_SD_CHN_2004" : [ - "JX644073" - ], - "Maize_streak_virus___A_MatA__MSV_A_MSV_MatA" : [ - "AF329881" - ], - "Rotavirus_G9_US1071" : [ - "AJ250268" - ], - "FTLS_virus__YPQX03" : [ - "KF356527", - "KF356539", - "KF356550" - ], - "Hepatitis_B_virus__patient_5T" : [ - "EU522069" - ], - "Tobacco_etch_virus_N_SD1" : [ - "EF470242" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_701" : [ - "KR534519" - ], - "Dengue_virus_2__DENV_2_US_BID_V1165_1987" : [ - "EU482569" - ], - "Dengue_virus_3__mutant_BDH02_07" : [ - "DQ401693" - ], - "Bluetongue_virus_9__8368" : [ - "DQ191285" - ], - "Tomato_severe_rugose_virus__BR_Jai125_08" : [ - "KC004068" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_ISU_P" : [ - "EF532816" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1503_2006" : [ - "EU660397" - ], - "Hepatitis_B_virus__A1_50099" : [ - "FJ692586" - ], - "Human_adenovirus_7_Gomen" : [ - "AY594255" - ], - "Hepatitis_B_virus__I19" : [ - "FJ562225" - ], - "Akabane_virus_Iriki" : [ - "AB289324", - "AB289321" - ], - "Tomato_chlorotic_mottle_virus__BR_Car236_2_08" : [ - "KC706566" - ], - "Hepatitis_B_virus__GU1769" : [ - "GQ161825" - ], - "Faecal_associated_gemycircularvirus_1a__as41" : [ - "NC_025741" - ], - "Streptocarpus_flower_break_virus" : [ - "NC_008365" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Illinois8" : [ - "KP283416" - ], - "Bean_common_mosaic_virus__NKY021" : [ - "KJ807819" - ], - "Tomato_leaf_curl_Palampur_virus__India" : [ - "NC_010840" - ], - "Newcastle_disease_virus__Adygea_duck_12_2008" : [ - "KP189357" - ], - "West_Nile_virus__BSL20_09" : [ - "JF957180" - ], - "Murine_hepatitis_virus_strain_A59_A59" : [ - "FJ884687", - "FJ884686" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_184_2012" : [ - "KJ686193" - ], - "Desulfurivibrio_alkaliphilus_AHT2" : [ - "NC_014216" - ], - "Porcine_circovirus_2_GD010" : [ - "KM880084" - ], - "Potato_yellow_mosaic_Trinidad_virus__Trinidad_and_Tobago" : [ - "NC_004644", - "NC_004638" - ], - "BK_polyomavirus__FUK_22" : [ - "AB365130" - ], - "Dengue_virus_1__DENV_1_VN_BID_V967_2007" : [ - "EU482512" - ], - "Porcine_circovirus_2_SD_4" : [ - "EU366324" - ], - "Rice_yellow_mottle_virus__CI4" : [ - "NC_001575" - ], - "Hepatitis_B_virus__I207" : [ - "FJ562315" - ], - "Human_immunodeficiency_virus_1__A32989" : [ - "AF408630" - ], - "Wiseana_iridescent_virus" : [ - "NC_015780" - ], - "Porcine_circovirus_2_BP_PCV2b" : [ - "KM924367" - ], - "Porcine_circovirus_2_NN2" : [ - "KJ956692" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2729_2007" : [ - "FJ898377" - ], - "delta_proteobacterium_BABL1" : [ - "NC_023003" - ], - "West_Nile_virus__WNV_1_US_BID_V4582_2003" : [ - "HM756650" - ], - "Lactobacillus_reuteri_TD1" : [ - "NC_021872" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1_8P20_2010_c1_8P20" : [ - "KF514400" - ], - "Apple_chlorotic_leaf_spot_virus_Balaton1" : [ - "X99752" - ], - "Measles_virus_strain_AIK_C_Measles_virus_strain_Edmonston__AIK_C_vaccine" : [ - "AF266286" - ], - "Hepatitis_B_virus__MY002856" : [ - "KJ803807" - ], - "Maize_streak_virus__MSV_A_ZA_Pot7_O31_1979" : [ - "FJ882135" - ], - "Bhendi_yellow_vein_India_virus__India_Pandarahalli_OY157_2006___OY157" : [ - "GU112044" - ], - "Helicoverpa_armigera_NPV_NNg1_NNg1" : [ - "NC_011354" - ], - "Simian_adenovirus_25_Pan_9__CV68" : [ - "AF394196" - ], - "Macroptilium_yellow_vein_virus__BR_Pai34_11" : [ - "KJ939914" - ], - "Human_papillomavirus_type_58__Qv03666" : [ - "HQ537773" - ], - "Dengue_virus_1__DENV_1_US_BID_V1738_1998" : [ - "FJ390378" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4076_2008" : [ - "GU131824" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG578A2_11" : [ - "KJ888047" - ], - "West_Nile_virus__WNV_1_US_BID_V7387_2009" : [ - "KJ501099" - ], - "Acanthamoeba_polyphaga_moumouvirus_M10A" : [ - "NC_020104" - ], - "Radish_mosaic_virus__DH_1" : [ - "HM032712" - ], - "Tomato_leaf_curl_Yemen_betasatellite__Tih_tom137_05" : [ - "JF919721" - ], - "Goose_circovirus__CD13088" : [ - "KP229370" - ], - "Porcine_circovirus_2_HUN_09" : [ - "GQ449672" - ], - "Hepatitis_B_virus__SHB114" : [ - "KJ598644" - ], - "Powassan_virus_Ulysses" : [ - "HQ231414" - ], - "Enterobacteria_phage_I2_2" : [ - "NC_001332" - ], - "Enterobacteria_phage_vB_EcoM_ACG_C40" : [ - "NC_019399" - ], - "Hepatitis_B_virus__HBV_USA712" : [ - "AB116078" - ], - "Human_immunodeficiency_virus_1__04ZAPS169MB1" : [ - "DQ396393" - ], - "Maize_streak_virus__MSV_A_ZA_Mal1_T3_2007" : [ - "HQ693422" - ], - "Human_papillomavirus_type_34" : [ - "NC_001587" - ], - "Bat_SARS_like_coronavirus_RsSHC014__RsSHC014" : [ - "KC881005" - ], - "Human_immunodeficiency_virus_1__03ZASK212B1" : [ - "DQ093596" - ], - "Heron_hepatitis_B_virus" : [ - "NC_001486" - ], - "Squash_leaf_curl_virus__JO1_164" : [ - "KM595161" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3726_2007" : [ - "GQ868520" - ], - "Duck_hepatitis_A_virus_1_5886" : [ - "DQ249301" - ], - "Watermelon_chlorotic_stunt_virus__IL2_107" : [ - "KM820248" - ], - "Human_metapneumovirus__00_1" : [ - "AF371337" - ], - "Enterovirus_A71_EV71_Jinan1005" : [ - "JQ074189" - ], - "Sweet_potato_leaf_curl_Bengal_virus__SPLCV_BCKV_India" : [ - "NC_013640" - ], - "Kemerovo_virus" : [ - "HQ266594", - "HQ266593", - "HQ266597", - "HQ266592", - "HQ266596", - "HQ266591", - "HQ266595", - "HQ266599", - "HQ266600", - "HQ266598" - ], - "Reticuloendotheliosis_virus_MD_2" : [ - "JX912710" - ], - "Alkhumra_hemorrhagic_fever_virus_200905921" : [ - "JF416966" - ], - "Hepatitis_B_virus__MY62981" : [ - "KJ803771" - ], - "Kosmotoga_olearia_TBF_19_5_1" : [ - "NC_012785" - ], - "Hepatitis_B_virus__GU1577" : [ - "GQ161812" - ], - "Porcine_circovirus_2__DK429case" : [ - "EF565350" - ], - "Hepatitis_B_virus__MGL207F" : [ - "AB270548" - ], - "Mycobacterium_phage_Flux" : [ - "JQ809701" - ], - "West_Nile_virus__NY99P2" : [ - "KM083619" - ], - "West_Nile_virus__WNV_1_US_BID_V6507_2002" : [ - "KJ501490" - ], - "Grapevine_rupestris_stem_pitting_associated_virus__RSPaV_PN" : [ - "AY368172" - ], - "Human_bocavirus__HBov_sh7" : [ - "JN632517" - ], - "Hepatitis_E_virus_JMNG26_Oki08" : [ - "AB591733" - ], - "Hepatitis_B_virus__Colombia8" : [ - "DQ899150" - ], - "Hepatitis_B_virus__I_T63" : [ - "GU456679" - ], - "Tomato_bushy_stunt_virus__statice" : [ - "AJ249740" - ], - "Foot_and_mouth_disease_virus_O_UKG_5470_2001_UKG_5470_2001" : [ - "EF552696" - ], - "Streptococcus_equi_zooepidemicus_ATCC_35246" : [ - "NC_017582" - ], - "Rabies_virus__JZ13_Lv" : [ - "KJ004416" - ], - "Hepatitis_E_virus__JSF_Tot03C" : [ - "AB193176" - ], - "Hepatitis_B_virus__cww1094" : [ - "KC774271" - ], - "Hepatitis_B_virus__A18" : [ - "FJ904399" - ], - "Canine_distemper_virus_55L" : [ - "AB475099" - ], - "Coxsackievirus_A7_Parker_CA7" : [ - "AY421765" - ], - "Hepatitis_C_virus__QC34" : [ - "KJ470616" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1912_2008" : [ - "FJ410246" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10FUJ_2" : [ - "JQ663547" - ], - "Porcine_circovirus_2__PCV2A15" : [ - "GU083582" - ], - "Hepatitis_B_virus_1346_21" : [ - "KR013855" - ], - "Bluetongue_virus__IND1992_01" : [ - "JQ282774", - "JQ282770", - "JQ282777", - "JQ282772", - "JQ282776", - "JQ282771", - "JQ282773", - "JQ282775" - ], - "Human_papillomavirus_type_51" : [ - "PPHDNA" - ], - "Hepatitis_B_virus__FK1_6" : [ - "AY721610" - ], - "Macroptilium_yellow_spot_virus__BR_Sti18_11" : [ - "KJ939875" - ], - "Hepatitis_B_virus__SHB2SB4" : [ - "KJ598651" - ], - "Monkeypox_virus_USA_2003_044" : [ - "DQ011153" - ], - "Chili_leaf_curl_Bhatinda_betasatellite__AnAv" : [ - "NC_021345" - ], - "Lactobacillus_buchneri_NRRL_B_30929" : [ - "NC_015428", - "NC_015429", - "NC_015421", - "NC_015420" - ], - "Norovirus_Hu_GII_4_Saga5_2007_JP_Hu_GII_4_Saga5_2007_JP" : [ - "AB541337" - ], - "Avian_leukosis_virus_SD07LK1" : [ - "FJ216405" - ], - "Rabies_virus__Pk_24" : [ - "HE802676" - ], - "Nanovirus_like_particle__Himachal" : [ - "LK054802" - ], - "Parainfluenza_virus_5_MIL" : [ - "JQ743326" - ], - "Hepatitis_B_virus__DEN5754" : [ - "KF779214" - ], - "West_Nile_virus__ARC10_06" : [ - "JF957161" - ], - "Spirochaeta_coccoides_DSM_17374" : [ - "NC_015436" - ], - "Hepatitis_B_virus__05D05HCC" : [ - "AB014364" - ], - "Lone_Star_virus__TMA_1381" : [ - "NC_021243", - "NC_021242", - "NC_021244" - ], - "Human_mastadenovirus_D_human_USA_MEEI_0077_X_8_P8H8F8" : [ - "KF268321" - ], - "Bean_golden_mosaic_virus__BR_Flt13_11" : [ - "KJ939778" - ], - "Dengue_virus_2__DENV_2_NI_BID_V544_2005" : [ - "EU482759" - ], - "Hepatitis_B_virus__A2_WT_BEL" : [ - "KM519454" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5464_2009" : [ - "JF937642" - ], - "Chloris_striate_mosaic_virus__AU_3009_2011" : [ - "JQ948060" - ], - "Human_immunodeficiency_virus_1__H1_5p21" : [ - "HM469979" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_G3" : [ - "LN846600" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2346_2000" : [ - "FJ850061" - ], - "Dengue_virus_2__DENV_2_PE_FPI01915_2011" : [ - "KC294214" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_D174814_2010" : [ - "KM452742" - ], - "Hepatitis_B_virus__Ia_1" : [ - "AY596102" - ], - "Human_adenovirus_21_NHRC_64589" : [ - "KJ364582" - ], - "Foot_and_mouth_disease_virus___type_O_OMIII" : [ - "AY359854" - ], - "Squash_leaf_curl_virus__LB2" : [ - "HM368374", - "HM368373" - ], - "Lactobacillus_buchneri" : [ - "NC_016035", - "NC_016034", - "NC_018611", - "NC_018610" - ], - "Hepatitis_B_virus__F_3" : [ - "KF373035" - ], - "Tomato_yellow_leaf_curl_China_virus_Tb_Y10___Y10" : [ - "AJ319675" - ], - "Enterovirus_A71__HNCZ_201208" : [ - "KF142412" - ], - "Macroptilium_yellow_vein_virus__BR_Mac4_10" : [ - "NC_017000" - ], - "Hepatitis_delta_virus__D21" : [ - "KJ744233" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3914_2008" : [ - "GU131921" - ], - "Hepatitis_B_virus__AIDS21" : [ - "JQ801478" - ], - "Dengue_virus_2__MD594" : [ - "FM210225" - ], - "Human_poliovirus_2_NIE1116178_NIS11_01" : [ - "JX275380" - ], - "Enterobacteria_phage_BZ13_DL20" : [ - "FJ483839" - ], - "Bifidobacterium_longum_JDM301" : [ - "NC_014169" - ], - "Chicken_anemia_virus__AH6" : [ - "DQ124935" - ], - "Canine_parvovirus_2c__UY120" : [ - "KM457111" - ], - "Bacteroides_fragilis_YCH46" : [ - "NC_006297", - "NC_006347" - ], - "Turkey_astrovirus_TAstV_CA_00" : [ - "EU143844" - ], - "Pokeweed_mosaic_virus__PkMV_PA" : [ - "NC_018872" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_723_2003_G3P_8__723" : [ - "KF371724", - "KF371720", - "KF371716", - "KF371715", - "KF371718", - "KF371723", - "KF371717", - "KF371721", - "KF371719" - ], - "West_Nile_virus__WNV_1_US_BID_V6443_2002" : [ - "KJ501300" - ], - "Duck_hepatitis_A_virus_1_161_79_V" : [ - "EU753359" - ], - "Saccharomyces_23S_RNA_narnavirus_37_4C" : [ - "NC_004050" - ], - "Infectious_bronchitis_virus__GX_YL5" : [ - "HQ848267" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d3om2" : [ - "HQ890540" - ], - "Porcine_circovirus_2__SFBeef15" : [ - "HQ738641" - ], - "Mycobacterium_phage_39HC" : [ - "NC_023603" - ], - "Human_polyomavirus_7__707b" : [ - "HM011565" - ], - "Acinetobacter_baumannii_BJAB0715" : [ - "NC_021733", - "NC_021734" - ], - "Tomato_leaf_curl_Sudan_virus___Wad_Madani" : [ - "GU180085" - ], - "Methanocaldococcus_FS406_22" : [ - "NC_013887", - "NC_013888" - ], - "Hepatitis_C_virus_subtype_1b__No__10" : [ - "AB154185" - ], - "Cucurbit_leaf_crumple_virus____Arizona" : [ - "AF327559", - "AF256200" - ], - "African_cassava_mosaic_virus__MG_MG309A1_10" : [ - "KJ887977" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Abohar5_2010" : [ - "JF502385" - ], - "Hepatitis_B_virus__FEN35" : [ - "JF439998" - ], - "Dengue_virus_2__MKS_WS79a" : [ - "KC762679" - ], - "Soybean_mosaic_virus__Sc6" : [ - "HM590054" - ], - "Murrumbidgee_virus__934" : [ - "NC_022595", - "NC_022596", - "NC_022597" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8509_2003" : [ - "KJ627717" - ], - "Hyperthermophilic_Archaeal_Virus_1" : [ - "NC_014322" - ], - "Hepatitis_B_virus_327_14" : [ - "KR013772" - ], - "Hepatitis_B_virus__PG_35" : [ - "KF471647" - ], - "Equine_infectious_anemia_virus_DLV_DLV9_7" : [ - "HM141922" - ], - "Hepatitis_C_virus__963" : [ - "FN666428" - ], - "Sweet_potato_chlorotic_fleck_virus" : [ - "NC_006550" - ], - "Dengue_virus_2__DC430Y11" : [ - "KM279526" - ], - "Avian_hepatitis_E_virus_JY_F2" : [ - "KC454286" - ], - "Equid_herpesvirus_1_HH1" : [ - "AB992258" - ], - "Hepatitis_B_virus__HBV249" : [ - "KJ647356" - ], - "Hepatitis_B_virus__D_KI346C_2004" : [ - "HQ700540" - ], - "JC_polyomavirus_317A" : [ - "AY356539" - ], - "Newcastle_disease_virus_HBNU_LSRC_F3" : [ - "KC246549" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH01_2010" : [ - "KM188440" - ], - "Pepper_huasteco_yellow_vein_virus__Rioverde" : [ - "GU564596" - ], - "Torque_teno_virus__TTV_HD16f__gbCuCv43_2" : [ - "FR751481" - ], - "Hepatitis_B_virus__Ag02" : [ - "KJ843164" - ], - "Rabies_virus_RB_E3_15" : [ - "EU182346" - ], - "Bean_golden_mosaic_virus__BR_Cri7_12" : [ - "KJ939847" - ], - "Hepatitis_B_virus__599" : [ - "AY217375" - ], - "Human_herpesvirus_5__Towne_BAC" : [ - "AC146851" - ], - "Norovirus_Hu_GII_20192_2009_VNM_Hu_GII_20192_2009_VNM" : [ - "KC409272" - ], - "Serratia_phage_PS2" : [ - "NC_024121" - ], - "JC_polyomavirus__JCV135_19" : [ - "JF424850" - ], - "Hepatitis_B_virus__N16_M_FY137An__fas" : [ - "KJ173382" - ], - "Beet_curly_top_Iran_virus__IR_Shi_B18K_Sug_06" : [ - "JQ707939" - ], - "Ateline_herpesvirus_3_73" : [ - "NC_001987" - ], - "Hepatitis_B_virus__WJT15" : [ - "DQ377159" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI1303_2011_A" : [ - "KJ627425" - ], - "Maize_streak_virus__MSV_A_ZA_Not_D5_2006" : [ - "HQ693427" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V71_2002" : [ - "EU155241" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_7" : [ - "EU384613" - ], - "Human_bocavirus_3_W855" : [ - "FJ948861" - ], - "JC_polyomavirus_709C" : [ - "AF300959" - ], - "Hepatitis_B_virus__HBV208" : [ - "JN688716" - ], - "Hepatitis_B_virus__8145" : [ - "KJ470884" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0026" : [ - "KP759670" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_1112150" : [ - "KJ435286" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GDBY1" : [ - "GQ374442" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V171_1997" : [ - "EU255967" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3354_1983" : [ - "GQ868588" - ], - "Dengue_virus_4_H779228_DENV_4_AM4963" : [ - "JQ513338" - ], - "HBV_genotype_C_C0901177_NT3" : [ - "AB540583" - ], - "MW_polyomavirus_QLDMW04" : [ - "KC549588" - ], - "Hepatitis_B_virus__IT2004" : [ - "JN792898" - ], - "Potato_leafroll_virus_14_2" : [ - "AF453394" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_173_2012" : [ - "KJ686250" - ], - "Hepatitis_B_virus__EHBV064_EP_CHB" : [ - "KM524339" - ], - "Hepatitis_B_virus__B2_2" : [ - "GU815595" - ], - "Klebsiella_oxytoca_KCTC_1686" : [ - "NC_016612" - ], - "Torque_teno_sus_virus_1b__TTV2_GE1" : [ - "GU570209" - ], - "Escherichia_coli_W" : [ - "NC_017665", - "NC_017664", - "NC_017662" - ], - "Hepatitis_B_virus__I16" : [ - "FJ562224" - ], - "Rhizobium_phage_vB_RleS_L338C" : [ - "NC_023502" - ], - "Groundnut_rosette_virus_Nigerian_mild_satellite_RNA" : [ - "Z29707", - "Z29708", - "Z29709" - ], - "Human_immunodeficiency_virus_1__04ZASK175B1" : [ - "DQ164129" - ], - "Goose_parvovirus_SHFX1201" : [ - "KC478066" - ], - "Adoxophyes_orana_granulovirus_Miyazaki" : [ - "KM226332" - ], - "Middle_East_respiratory_syndrome_coronavirus__Taif_1_2013" : [ - "KJ156949" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus__P5" : [ - "KF446676", - "KF446675" - ], - "Soil_borne_wheat_mosaic_virus_US_Nebraska__1988_wild_type" : [ - "NC_002042" - ], - "Coxsackievirus_A10_FY08_AH_CHN_2013" : [ - "KP009581" - ], - "West_Nile_virus__WNV_1_US_BID_V4571_2003" : [ - "HM488213" - ], - "Temperate_fruit_decay_associated_virus__MFBpe19" : [ - "KR134339" - ], - "Brucella_phage_R_C" : [ - "KC556895" - ], - "Tomato_mottle_mosaic_virus__MX5" : [ - "NC_022230" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HZ_31" : [ - "KC445138" - ], - "Porcine_circovirus_2__V1113" : [ - "KJ128274" - ], - "Vibrio_cholerae_O395" : [ - "NC_012583", - "NC_012582" - ], - "Enterovirus_A71_FY23" : [ - "EU812515" - ], - "Hepatitis_B_virus__HBV65" : [ - "KC875271" - ], - "Tembusu_virus_Du_CH_LSD_110128_P70" : [ - "KJ782379" - ], - "Rhinovirus_A__hrv_A101" : [ - "GQ415051" - ], - "Zaire_ebolavirus__H_sapiens_wt_GIN_2014_Makona_Gueckedou_C07" : [ - "KJ660347" - ], - "Human_poliovirus_1_NIE1218343" : [ - "KJ170469" - ], - "Hepatitis_B_virus__G2_9" : [ - "GU815771" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9532_2013" : [ - "KJ643575" - ], - "Bluetongue_virus__serotype_1" : [ - "X55800" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140395" : [ - "KR653279" - ], - "Dengue_virus_1" : [ - "NC_001477", - "AB178040", - "AF309641" - ], - "Porcine_circovirus_2__Pinar_del_Rio_05" : [ - "FN687848" - ], - "Hepatitis_B_virus__bba6" : [ - "KP341007" - ], - "Human_papillomavirus_type_54" : [ - "AF436129", - "NC_001676" - ], - "Pseudomonas_aeruginosa_DK2" : [ - "NC_018080" - ], - "Israel_turkey_meningoencephalomyelitis_virus__Israel_105520_2010" : [ - "KC734553" - ], - "Hepatitis_B_virus__Greenland_3" : [ - "AB287322" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Nagasaki11_14" : [ - "AB811786" - ], - "Rice_stripe_virus__T" : [ - "NC_003753", - "NC_003755" - ], - "Hepatitis_B_virus_HB528" : [ - "HM011481" - ], - "Puerto_Almendras_virus__LO_39" : [ - "NC_025395" - ], - "Hepatitis_B_virus__YY028M2_e134_B" : [ - "KJ173338" - ], - "Equine_rhinitis_A_virus_T10" : [ - "DQ272577" - ], - "Bacillus_anthracis_A2012" : [ - "NC_003980", - "NC_003981" - ], - "Hepatitis_B_virus__bne362" : [ - "FN594760" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_pool_MEX_MX10_94M5_2010_IE" : [ - "KC344497" - ], - "Wheat_dwarf_virus__SXHC07_2" : [ - "KJ536111" - ], - "Candidatus_Saccharibacteria_bacterium_RAAC3_TM7_1" : [ - "NC_023004" - ], - "JC_polyomavirus__RH_2" : [ - "AB198947" - ], - "Hepatitis_B_virus__M47" : [ - "GQ924626" - ], - "Hepatitis_B_virus__ABI_129" : [ - "AB091255" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4027_2008" : [ - "GU131787" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2904_2006" : [ - "FJ898419" - ], - "African_cassava_mosaic_virus__CF_CF108BE_07" : [ - "KJ887616" - ], - "SARS_coronavirus_HGZ8L1_A__HGZ8L1_A" : [ - "AY394981" - ], - "Tomato_yellow_leaf_curl_virus___Wailuku__Wailuku" : [ - "GU322424" - ], - "West_Nile_virus__WNV_1_US_BID_V6518_2002" : [ - "KJ501337" - ], - "Hepatitis_B_virus__G2451" : [ - "EU239217" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2080_2003" : [ - "FJ639723" - ], - "Tick_borne_encephalitis_virus_114" : [ - "KC835595" - ], - "Otomops_polyomavirus_1__KY157" : [ - "NC_020071" - ], - "Tortoise_picornavirus_5_03" : [ - "KM873617" - ], - "Murine_polyomavirus_LID" : [ - "PSU27813" - ], - "Enterobacteria_phage_RB14" : [ - "NC_012638" - ], - "Human_immunodeficiency_virus_1__BREPM1093" : [ - "FJ195089" - ], - "Human_papillomavirus_type_6__114" : [ - "HG793922" - ], - "Tomato_leaf_curl_Gujarat_virus__TC49" : [ - "KP178726" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Equus_ferus_caballus_VEN_Beck_Wycoff_1938_IAB" : [ - "KC344516" - ], - "Francisella_tularensis_TI0902" : [ - "NC_016937" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2298_2001" : [ - "FJ744713" - ], - "Human_papillomavirus_type_68__Qv17231" : [ - "KC470280" - ], - "Ageratum_yellow_vein_China_virus__G13" : [ - "AJ558120" - ], - "West_Nile_virus__WNV_1_US_BID_V6179_2008" : [ - "KJ501238" - ], - "Tamiami_mammarenavirus_AV_97140103" : [ - "EU486821" - ], - "Hepatitis_B_virus__GU1428" : [ - "GQ161804" - ], - "Human_immunodeficiency_virus_1__WC10C_10" : [ - "AY314061" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0130" : [ - "KP759679" - ], - "Tomato_yellow_leaf_curl_virus__SDSGGC_1" : [ - "KC999846" - ], - "Hepatitis_B_virus__C13" : [ - "EU939637" - ], - "Dengue_virus_2__DENV_2_NI_BID_V3223_2008" : [ - "HQ541792" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7672_2011" : [ - "KF973460" - ], - "Rhopalosiphum_padi_virus" : [ - "NC_001874", - "EU282007" - ], - "Dengue_virus_4__Haiti73" : [ - "JF262782" - ], - "Arthrobacter_chlorophenolicus_A6" : [ - "NC_011879", - "NC_011881", - "NC_011886" - ], - "Staphylococcus_phage_Ipla88" : [ - "NC_011614" - ], - "South_African_cassava_mosaic_virus__MG_MG71A1_06" : [ - "KJ887890" - ], - "Small_begomovirus_associated_satellite__Sa8_S3" : [ - "KJ859169" - ], - "Maize_streak_virus__UKap_292" : [ - "EF547122" - ], - "Human_poliovirus_1__HAI01008C1" : [ - "AF405663" - ], - "African_cassava_mosaic_virus__K1J1" : [ - "JN053421" - ], - "Hepatitis_B_virus__C40" : [ - "EU859937", - "EU939661" - ], - "Human_papillomavirus_type_18__Qv02876" : [ - "EF202151" - ], - "Tobacco_mosaic_virus__Ludian" : [ - "HE818435" - ], - "Peridroma_alphabaculovirus__GR_167" : [ - "NC_024625" - ], - "Red_clover_mottle_virus" : [ - "NC_003738" - ], - "Rhinovirus_C__JAL_1" : [ - "JX291115" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_G15480" : [ - "JX503081" - ], - "Lates_calcarifer_nervous_necrosis_virus_LCNNV_In01" : [ - "JQ073720" - ], - "BK_polyomavirus__OKN_42" : [ - "AB365153" - ], - "Nariva_virus" : [ - "NC_017937" - ], - "Okra_leaf_curl_virus__Mali" : [ - "EU024119" - ], - "Chicken_picornavirus_4__5C" : [ - "NC_024768" - ], - "Erwinia_phage_vB_EamM_M7" : [ - "HQ728263" - ], - "Bean_golden_mosaic_virus__BR_Una12_12" : [ - "KJ939832" - ], - "Bat_SARS_coronavirus_HKU3_8_HKU3_8" : [ - "GQ153543" - ], - "Banana_streak_virus" : [ - "AX018796" - ], - "Oliveros_mammarenavirus_3229_1" : [ - "NC_010248" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0173" : [ - "KP759627" - ], - "Japanese_encephalitis_virus__FJ0339" : [ - "JN381859" - ], - "Malvastrum_yellow_mosaic_alphasatellite__Hn45" : [ - "AM236767" - ], - "Gordonia_phage_GTE2" : [ - "NC_015720" - ], - "Rose_leaf_curl_virus__AS24" : [ - "NC_024687" - ], - "Gryllus_bimaculatus_nudivirus" : [ - "NC_009240" - ], - "Coxsackievirus_A11__CV_A11_66990" : [ - "JF260918" - ], - "Simian_immunodeficiency_virus_SIVmnd14cg" : [ - "AF328295" - ], - "Ugandan_cassava_brown_streak_virus__Ke_54" : [ - "FN433931" - ], - "Junin_mammarenavirus_XJ_44" : [ - "GQ121040", - "DQ489718" - ], - "Gastropod_associated_circular_ssDNA_virus_chc" : [ - "NC_020472" - ], - "Mulberry_vein_banding_virus__HX_2" : [ - "KM819702" - ], - "Bluetongue_virus__BTV_2_RSArrrr_02__S_5" : [ - "AM773705" - ], - "Grapevine_redleaf_associated_virus__GiGV_WA_RS" : [ - "KC427993" - ], - "Hepatitis_C_virus_subtype_1a__00R" : [ - "EU781748" - ], - "Maize_streak_virus__MSV_B1_Za_Bar_M3" : [ - "EU628580" - ], - "Rice_yellow_mottle_virus__Ng18" : [ - "FN432841" - ], - "Foot_and_mouth_disease_virus___type_A__IND_88_2006" : [ - "HQ832588" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2238_2004" : [ - "KF955472" - ], - "Chlamydia_trachomatis_L2b_Ams1" : [ - "NC_020980", - "NC_020933" - ], - "Cassia_yellow_blotch_virus_KU1" : [ - "NC_006999", - "NC_007000", - "NC_007001" - ], - "Tomato_spotted_wilt_virus__LS3" : [ - "KM076653", - "KM076652", - "KM076651" - ], - "BK_polyomavirus__TW_1a" : [ - "AB217917" - ], - "Coxsackievirus_A24_Joseph" : [ - "EF026081" - ], - "Reston_ebolavirus_Reston09_A_RESTV_Sus_wt_PHL_2009_09A_Farm_A" : [ - "JX477165" - ], - "Streptomyces_phage_SV1" : [ - "NC_018848" - ], - "Grapevine_red_blotch_associated_virus__Z1A_1" : [ - "KC896625" - ], - "Hepatitis_B_virus__dlz2018" : [ - "KC774423" - ], - "Bovine_respiratory_coronavirus_bovine_US_OH_440_TC_1996_bovine_US_OH_440_TC_1996" : [ - "NC_012949" - ], - "Turkey_astrovirus_TAstV_CO_01" : [ - "EU143845" - ], - "Hepatitis_B_virus__HBV_Chi20" : [ - "AB073821" - ], - "Enterovirus_A71__EV71_SAR_SHA66" : [ - "AM396586" - ], - "Phage_vB_EcoP_SU10" : [ - "NC_027395" - ], - "Equine_arteritis_virus__S4007" : [ - "GQ903800" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3843_2008" : [ - "GU131681" - ], - "Tomato_yellow_leaf_curl_virus__Minab_Iran___TYLCV_Ker_IR_Ho32_06" : [ - "GU076442" - ], - "Corynebacterium_ulcerans_BR_AD22" : [ - "NC_015683" - ], - "Human_polyomavirus_6__614a" : [ - "HM011562" - ], - "Dengue_virus_3__D3_Pakistan_55505_2007" : [ - "KF041255" - ], - "Bacillus_selenitireducens_MLS10" : [ - "NC_014219" - ], - "Enterovirus_C__V3_TUL" : [ - "HQ738291" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_247_92" : [ - "DQ989307" - ], - "Human_polyomavirus_7__PITT2" : [ - "KJ733013" - ], - "Porcine_circovirus_2_ThPCV2b" : [ - "FJ233906" - ], - "East_African_cassava_mosaic_virus__CF_CF553B_07" : [ - "KM885992" - ], - "Human_rhinovirus_B48" : [ - "DQ473488" - ], - "Barley_stripe_mosaic_virus_CV17" : [ - "BSU13916" - ], - "Ageratum_yellow_vein_virus__AFSP2b" : [ - "JN809813" - ], - "Israeli_acute_paralysis_virus_IS1_ISRAEL_2007" : [ - "EU436455" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1948_2008" : [ - "FJ410267" - ], - "Tomato_yellow_leaf_curl_virus__Kailua_Kona" : [ - "HM988987" - ], - "Fulmarus_glacialis_papillomavirus_1_1" : [ - "NC_024300" - ], - "Pepper_golden_mosaic_virus__PepGMV_Mo" : [ - "AY928512", - "AY928513" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1817_2007" : [ - "FJ432743" - ], - "Goose_circovirus__CJ14010" : [ - "KP229372" - ], - "Human_papillomavirus_type_16__Qv21730" : [ - "HQ644276" - ], - "Pennisetum_mosaic_virus__AZ3" : [ - "JX070146" - ], - "Tomato_yellow_leaf_curl_virus____Puerto_Rico___Puerto_Rico" : [ - "AY134494" - ], - "Primate_erythroparvovirus_1__B19V_RJ2929" : [ - "KT268312" - ], - "Enterobacteria_phage_WA14" : [ - "DQ079909" - ], - "Hepatitis_B_virus__Srb_176" : [ - "JQ687529" - ], - "Bean_golden_mosaic_virus__BR_Flt7_11" : [ - "KJ939772" - ], - "Hepatitis_B_virus__SHB84" : [ - "KJ598768" - ], - "Human_immunodeficiency_virus_1__WITO_flB3" : [ - "FJ496169" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4256_2007" : [ - "KF921933" - ], - "Methanosphaera_stadtmanae_DSM_3091" : [ - "NC_007681" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4766_2009" : [ - "HM181976" - ], - "Desulfitobacterium_dehalogenans_ATCC_51507" : [ - "NC_018017" - ], - "Cauliflower_mosaic_virus__TUR216" : [ - "AB863180" - ], - "Acinetobacter_phage_vB_AbaM_Acibel004" : [ - "NC_025462" - ], - "Lettuce_virus_X" : [ - "NC_010832" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_90E_112_01_1990" : [ - "KP258741" - ], - "Hepatitis_B_virus__B2_12" : [ - "GU815593" - ], - "Human_adenovirus_21_VRDL_T87_0342" : [ - "KJ364591" - ], - "JC_polyomavirus__JCV135_16" : [ - "JF424847" - ], - "Hepatitis_B_virus__F_8" : [ - "KF373040" - ], - "Torque_teno_sus_virus_1a__swSTHY_TT27" : [ - "GQ120664" - ], - "Hepatitis_B_virus__Ag09" : [ - "KJ843171" - ], - "Hepatitis_B_virus__D26K_7" : [ - "EU717212" - ], - "Torque_teno_virus__TTV_HD14e__gbDhDi33_35" : [ - "FR751467" - ], - "Porcine_circovirus_2__Sp_10_7_54_13" : [ - "GU049341", - "GU049342" - ], - "Hepatitis_B_virus__NS052" : [ - "FR714494" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00543_2011" : [ - "KJ672581" - ], - "Hydrangea_ringspot_virus__Hyd_CZ" : [ - "GQ265901" - ], - "Human_immunodeficiency_virus_1__pXJDC6291_13" : [ - "KC492737" - ], - "Hepatitis_C_virus_0" : [ - "AB191333" - ], - "Nipah_virus__Ind_Nipah_07_FG" : [ - "FJ513078" - ], - "Papaya_leaf_curl_China_virus____G30___G30" : [ - "AJ558117" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1193_2007" : [ - "EU569693" - ], - "Porcine_circovirus_2_GXWM" : [ - "EF675241" - ], - "Columbid_circovirus__9030" : [ - "AJ298229" - ], - "Porcine_circovirus_2__DK423case" : [ - "EF565348" - ], - "Simian_enterovirus_19_M19s__P2" : [ - "AF326754" - ], - "Hepatitis_B_virus__Ic" : [ - "AY167091" - ], - "Porcine_circovirus_2__n32na" : [ - "DQ629113" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Culex_vomerifer_COL_00SMM495_12_2000_ID" : [ - "KC344462" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V441_2001" : [ - "EU155279" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2352_2007" : [ - "FJ744708" - ], - "Hepatitis_B_virus__SHB2SA8" : [ - "KJ598649" - ], - "Dengue_virus_3__D3BR_CU6_02" : [ - "JF808127" - ], - "Adeno_associated_virus_Go_1" : [ - "DQ335246" - ], - "Eel_River_basin_pequenovirus__c15437" : [ - "KP087946" - ], - "Human_bocavirus__WH" : [ - "FJ496754" - ], - "West_Nile_virus__WNV_1_US_BID_V6390_2001" : [ - "KJ501274" - ], - "Civet_SARS_CoV_SZ16_2003__SZ16" : [ - "AY304488" - ], - "Hepatitis_B_virus_1303_6" : [ - "KR014033" - ], - "Enterovirus_A_GZ08_530_EV71_Guangzhou_530_2008" : [ - "HQ456310" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_271_2012" : [ - "KP308433" - ], - "Cauliflower_mosaic_virus" : [ - "MCACOMGEN", - "V00140", - "NC_001497" - ], - "Feline_infectious_peritonitis_virus__FCoVWSU791146_P1" : [ - "KC461235" - ], - "Hepatitis_B_virus__Ia" : [ - "AY167089" - ], - "West_Nile_virus__WNV_1_US_BID_V6460_2002" : [ - "KJ501310" - ], - "West_Nile_virus_strain_PTRoxo_PTRoxo" : [ - "AM404308" - ], - "SARS_coronavirus_MA15_MA15_P3pp6" : [ - "FJ882945" - ], - "Hepatitis_B_virus__A1_SA" : [ - "KP234050" - ], - "Hepatitis_B_virus__WY_HZ_31" : [ - "JX504535" - ], - "Clostridium_botulinum_F_230613" : [ - "NC_017298", - "NC_017297" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C107" : [ - "KJ019138" - ], - "Human_parainfluenza_virus_3_HPIV3_USA_629_D01363_2008" : [ - "KF530252" - ], - "Bean_common_mosaic_virus__CD031" : [ - "KM051430" - ], - "Tick_borne_encephalitis_virus_Primorye_270" : [ - "EU816452" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2906_2006" : [ - "FJ898421" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_28_3" : [ - "KC106642" - ], - "Tomato_leaf_curl_Liwa_virus__Tom_43" : [ - "KF111685" - ], - "Human_parechovirus_3__K11_94" : [ - "GQ183030" - ], - "Human_herpesvirus_3__1003_2008" : [ - "JN704698" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C11" : [ - "KJ019142" - ], - "Equid_herpesvirus_3_AR_2007_C3A" : [ - "NC_024771" - ], - "Human_immunodeficiency_virus_1__ZAM18" : [ - "AB485646", - "AB485645", - "AB485647" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2219_2003" : [ - "FJ639786" - ], - "Cherry_leaf_roll_virus__54" : [ - "KC937027", - "KC937021" - ], - "Hepatitis_B_virus__CAR144" : [ - "AM494710" - ], - "Wheat_streak_mosaic_virus__H98" : [ - "AF511615" - ], - "Erwinia_pyrifoliae_DSM_12163" : [ - "NC_017390", - "NC_017388", - "NC_017391", - "NC_017392", - "NC_017389" - ], - "Odoribacter_splanchnicus_DSM_20712" : [ - "NC_015160" - ], - "Pig_stool_associated_circular_ssDNA_virus_GER2011__GER2011" : [ - "NC_017916" - ], - "Dengue_virus_4__DENV_4_IND_0952326_2009" : [ - "JQ922560" - ], - "Gallid_herpesvirus_1__LJS09" : [ - "JX458822" - ], - "Hepatitis_B_virus__C41" : [ - "EU939545" - ], - "Lawsonia_intracellularis_N343" : [ - "NC_020130", - "NC_020128", - "NC_020129", - "NC_020127" - ], - "Human_immunodeficiency_virus_1_98IS002" : [ - "AF286233" - ], - "Sweet_potato_leaf_curl_Spain_virus__ES_Mal_IG2_06" : [ - "FJ151200" - ], - "Tobacco_streak_virus__Henry" : [ - "JX073658", - "JX073657", - "JX073656" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_CHZ" : [ - "KM609209" - ], - "Junin_mammarenavirus_P2290" : [ - "DQ854736" - ], - "West_Nile_virus__WNV_1_US_BID_V6490_2003" : [ - "KJ501327" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Tangail_2013___Bangladesh_Tangail_2013" : [ - "AB971858", - "AB971859" - ], - "West_Nile_virus__WNV_1_US_BID_V4634_2008" : [ - "HM488244" - ], - "Muscovy_duck_reovirus_MW9710" : [ - "KC756359" - ], - "Dengue_virus_2__MKS_0502" : [ - "KC762656" - ], - "Human_immunodeficiency_virus_1__DR2510" : [ - "AB287372", - "AB287371" - ], - "African_cassava_mosaic_virus_Pakistan_Multan_Tomentosum_08" : [ - "HM468428" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3483_2008" : [ - "GQ868550" - ], - "Tomato_severe_rugose_virus__BR_Vic30_10" : [ - "JX865643" - ], - "TTV_like_mini_virus__TTMV_LY3" : [ - "JX134046" - ], - "Rabies_virus__OR8767" : [ - "JQ685957" - ], - "Norovirus_Hu_GII_4_CGMH19_2009_TW" : [ - "JN400617" - ], - "Enterobacteria_phage_HK630" : [ - "NC_019723" - ], - "Streptomyces_davawensis_JCM_4913" : [ - "NC_020545", - "NC_020504" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2239_2005" : [ - "FJ639803" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3896_2008" : [ - "HM181965" - ], - "Porcine_parvovirus_Nanjing200801" : [ - "FJ822038" - ], - "Middle_East_respiratory_syndrome_coronavirus__ChinaGD01_variant_1" : [ - "KT036373" - ], - "Human_immunodeficiency_virus_1__03ZAPS023MB1" : [ - "DQ351225" - ], - "Hepatitis_B_virus__I115" : [ - "FJ562336" - ], - "Human_parainfluenza_virus_3_HPIV3_AUS_6_2007" : [ - "KF530249" - ], - "Borrelia_garinii_PBi" : [ - "NC_006128", - "NC_006129", - "NC_006156" - ], - "Human_herpesvirus_3_VZVi_Jena_GER_28_04_Z_1__1256_2004" : [ - "JN704691" - ], - "Porcine_circovirus_2_HBxz_PCV2a" : [ - "FJ870968" - ], - "Watermelon_chlorotic_stunt_virus__JO1_120" : [ - "KM820186" - ], - "Porcine_circovirus_2_GXWZ" : [ - "EF675242" - ], - "Nectarine_stem_pitting_associated_virus__nectarine" : [ - "NC_027211" - ], - "Human_coronavirus_NL63_NL63_human_USA_904_20_1990" : [ - "KF530104" - ], - "Thermosediminibacter_oceani_DSM_16646" : [ - "NC_014377" - ], - "Hepatitis_B_virus__BA44" : [ - "DQ823094" - ], - "Xylella_fastidiosa_Temecula1" : [ - "NC_004556", - "NC_004554" - ], - "Human_papillomavirus_type_35__BF266" : [ - "HQ537718" - ], - "Small_begomovirus_associated_satellite__Sa46_S112" : [ - "KJ859159" - ], - "Human_poliovirus_3_IRA10852" : [ - "EU684057" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00073_2007_G1P_8" : [ - "KC769437", - "KC769438" - ], - "West_Nile_virus__WNV_1_US_BID_V7286_2012" : [ - "KJ501437" - ], - "Enterovirus_A71_Hubei_HG_CHN_2012" : [ - "KJ508182" - ], - "BK_polyomavirus_SEC_3" : [ - "AB269860" - ], - "Hepatitis_B_virus__PhHCC01" : [ - "AB241114" - ], - "Pectobacterium_atrosepticum_SCRI1043" : [ - "NC_004547" - ], - "South_African_cassava_mosaic_virus__MG_MG51A1_06" : [ - "KJ887869" - ], - "West_Nile_virus__WNV_1_US_BID_V7418_2004" : [ - "KJ501129" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2867_2006" : [ - "FJ898403" - ], - "Japanese_encephalitis_virus_HN2" : [ - "JN711459" - ], - "JC_polyomavirus__JCV161FLC_17" : [ - "JF424925" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_08_2012" : [ - "KJ672466" - ], - "Stx2_converting_phage_86" : [ - "NC_008464" - ], - "Human_rhinovirus_C35" : [ - "JF436925" - ], - "Bagaza_virus__Spain_H_2010" : [ - "HQ644143" - ], - "Hepatitis_B_virus__G2_7" : [ - "GU815769" - ], - "Marburg_marburgvirus__MARV_R_aegyptiacus_tc_UGA_2009_1175_Qbat" : [ - "JX458854" - ], - "Dengue_virus_2__RR44" : [ - "JQ955623" - ], - "Staphylococcus_aureus_JH9" : [ - "NC_009487", - "NC_009477" - ], - "Hepatitis_delta_virus_Miyako_JA_M34" : [ - "AB118844" - ], - "Shallot_virus_X" : [ - "NC_003795" - ], - "Human_immunodeficiency_virus_1__CAP228_8w_F2" : [ - "GQ999984" - ], - "Bacillus_phage_PZA" : [ - "PZACG" - ], - "Hepatitis_B_virus__FG" : [ - "AF498266" - ], - "Dengue_virus_3__DENV_3_US_BID_V1626_2005" : [ - "FJ182041" - ], - "Torque_teno_virus__tth7" : [ - "AJ620230" - ], - "Macaca_fascicularis_papillomavirus_type_8__Mac70" : [ - "EF558842" - ], - "Hepatitis_delta_virus_woodchuck5_W5" : [ - "AJ307077" - ], - "West_Nile_virus__WNV_1_BID_V5038" : [ - "JN819311" - ], - "Infectious_bronchitis_virus_Conn46_1972" : [ - "FJ904717" - ], - "Maize_streak_virus__MSV_A_ZA_War4_Ta3_2008" : [ - "HQ693444" - ], - "Hepatitis_B_virus__cxn1078" : [ - "KC774346" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__HSG5_3" : [ - "GU723732" - ], - "Hepatitis_B_virus__Cuba51" : [ - "KM606748" - ], - "Human_papillomavirus_type_39__Rw72" : [ - "KC470247" - ], - "Hepatitis_B_virus__M84_74" : [ - "EU330989" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Octa_alpha_3" : [ - "EU384636" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8469_2001" : [ - "KJ627695" - ], - "Acidianus_two_tailed_virus" : [ - "NC_007409" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_tc_COD_1976_Yambuku_Mayinga" : [ - "NC_002549" - ], - "Dengue_virus_3__DENV_3_US_BID_V1473_2002" : [ - "EU687233" - ], - "Maize_streak_virus__MSV_A_CF_Bai1_Car8_2008" : [ - "HQ693286" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1877_2007" : [ - "FJ562102" - ], - "Lactococcus_phage_r1t" : [ - "NC_004302" - ], - "Pseudomonas_phage_JG004_JG004" : [ - "NC_019450" - ], - "BK_polyomavirus_NEC_24" : [ - "AB269853" - ], - "Human_rhinovirus_B17" : [ - "EF173420" - ], - "JC_polyomavirus__ST" : [ - "AB103423" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7671_2010_A" : [ - "KJ627387" - ], - "Alternaria_alternata_virus_1" : [ - "NC_010991", - "NC_010984", - "NC_010990", - "NC_010989" - ], - "Hepatitis_B_virus__PG_4" : [ - "KF471658" - ], - "Puumala_virus_Samara_49_CG_2005" : [ - "AB433850", - "AB433843", - "AB574183" - ], - "Mycobacterium_phage_BuzzLyseyear" : [ - "NC_026593" - ], - "Hepatitis_B_virus__clz2152" : [ - "KC774220" - ], - "Rhodococcus_phage_ReqiDocB7" : [ - "NC_023706" - ], - "Infectious_bronchitis_virus_ck_CH_LDL_101212" : [ - "JF828981" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2819_2007" : [ - "FJ882560" - ], - "Avian_leukosis_virus_MQNCSU" : [ - "DQ365814" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_LA2_50_2013" : [ - "KJ672438" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_98I_003A_01_1998" : [ - "KP856968" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Kosovo_Hoti" : [ - "DQ133507" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V700_2006" : [ - "EU255937" - ], - "Hepatitis_B_virus__WHRYD" : [ - "JN257205" - ], - "Potato_virus_Y_Wilga_MV99__MV99" : [ - "HE608963" - ], - "Propionibacterium_phage_ATCC29399B_T" : [ - "NC_018847" - ], - "Porcine_deltacoronavirus_8734_USA_IA_2014_USA_IA_2014_8734" : [ - "KJ567050" - ], - "Columbid_circovirus__PL89X" : [ - "KF738871" - ], - "Citrus_tristeza_virus_T318A" : [ - "DQ151548" - ], - "Chlamydia_trachomatis_L2b_Canada1" : [ - "NC_020953", - "NC_020935" - ], - "West_Nile_virus__TX6747" : [ - "JF415918" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda2_05" : [ - "KC706633" - ], - "Cotton_leaf_curl_Multan_virus__26__Pakistan_clc26" : [ - "AJ002458" - ], - "Bluetongue_virus_16_GRE1999_13__Greece_1999" : [ - "AM773694" - ], - "Bluetongue_virus_11_BTV_11_VAC" : [ - "JQ972847", - "JQ972848", - "JQ972842", - "JQ972846", - "JQ972841", - "JQ972849", - "JQ972845", - "JQ972843", - "JQ972844", - "JQ972850" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_77_2013" : [ - "KJ672458" - ], - "Human_herpesvirus_5_BE_22_2010" : [ - "KP745640" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo192_08" : [ - "KC706555" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP01265_2012" : [ - "KJ672585" - ], - "Hepatitis_B_virus_544_16" : [ - "KR013797" - ], - "Hepatitis_B_virus__0443_03" : [ - "DQ060828" - ], - "Human_poliovirus_3_NIE0918514" : [ - "KJ170664" - ], - "Caprine_arthritis_encephalitis_virus_Roccaverano_Roccaverano" : [ - "EU293537" - ], - "Tobacco_rattle_virus_PpO85" : [ - "AJ586803" - ], - "Hepatitis_B_virus__CHN_L66" : [ - "AY817513" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo180_08" : [ - "KC706547" - ], - "Sudan_ebolavirus__EboSud_682_2012" : [ - "KC545392" - ], - "Agrotis_segetum_granulovirus_L1" : [ - "KC994902" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1649_2007" : [ - "FJ182026" - ], - "JC_polyomavirus__GR_17" : [ - "AB126987" - ], - "Newcastle_disease_virus__APMV1_Pigeon_USA_0106_2001" : [ - "KC013032" - ], - "Hepatitis_B_virus__CHN_QH4" : [ - "DQ478884" - ], - "Variola_virus_Sierra_Leone_1969__V68_258" : [ - "DQ441437" - ], - "Hepatitis_B_virus__HB_JFH7_99" : [ - "AB205152" - ], - "Hepatitis_B_virus__HBV_I_146_HIV_HBV" : [ - "KM524357" - ], - "African_cassava_mosaic_virus__MG_MG3C2_05" : [ - "KJ887634" - ], - "Human_enteric_coronavirus_4408__4408" : [ - "FJ415324" - ], - "Hepatitis_E_virus__W3" : [ - "JQ655735" - ], - "Hepatitis_B_virus__KOR6CHB" : [ - "GQ475310" - ], - "Gossypium_darwinii_symptomless_alphasatellite___Pakistan_20_4_06__Faisalabad2" : [ - "FR772084" - ], - "Chikungunya_virus_RGCB03_KL06" : [ - "GQ428210" - ], - "Human_papillomavirus_type_170__KC8" : [ - "JX413110" - ], - "Cellulophaga_phage_phi19_2_phi19_2" : [ - "KC821621" - ], - "Canine_distemper_virus__CDV_SY" : [ - "KJ466106" - ], - "Chickpea_chlorotic_dwarf_virus__A_IC_147_99" : [ - "KC172658" - ], - "Hepatitis_B_virus__P003_M_011" : [ - "KJ173366" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V365_2006" : [ - "EU155254" - ], - "Candidatus_Koribacter_versatilis_Ellin345" : [ - "NC_008009" - ], - "West_Nile_virus__WNV_1_US_BID_V6471_2002" : [ - "KJ501475" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V372_2006" : [ - "EU482879" - ], - "Mumps_virus__87_1004" : [ - "AF314560" - ], - "Wheat_dwarf_virus__XJWLMQ08_3" : [ - "KJ536133" - ], - "Hepatitis_B_virus_G12" : [ - "AY781178" - ], - "Hepatitis_B_virus__cxa1204" : [ - "KC774293" - ], - "JC_polyomavirus_244A" : [ - "AY121908" - ], - "Stenotrophomonas_maltophilia_R551_3" : [ - "NC_011071" - ], - "Porcine_circovirus_2_09HuB" : [ - "HQ395035" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__BB0907_F44" : [ - "KM453699" - ], - "Chelonia_mydas_papillomavirus_1" : [ - "EU493091" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_1999_03_DRC" : [ - "JX458826" - ], - "Human_mastadenovirus_D_human_USA_Pitts_00115_1992_NEW_P9H22F44" : [ - "KF429745" - ], - "Infectious_bronchitis_virus_Beaudette" : [ - "NC_001451" - ], - "Melon_chlorotic_mosaic_virus__VE04_14" : [ - "KF670613", - "KF670612" - ], - "Hepatitis_B_virus__0015" : [ - "JN827414" - ], - "Hepatitis_B_virus__I_T58" : [ - "GU456644" - ], - "Porcine_epidemic_diarrhea_virus__IA1" : [ - "KF468753" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2210_2002" : [ - "FJ639777" - ], - "Porcine_circovirus_2__SH1106" : [ - "KF850468" - ], - "Human_papillomavirus_type_11__LP170" : [ - "HE611273" - ], - "Beet_curly_top_virus__spinach_3" : [ - "AY548948" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__CH2004" : [ - "EU880439" - ], - "Yersinia_phage_Yepe2" : [ - "NC_011038" - ], - "West_Nile_virus__WNV_1_US_BID_V4803_2004" : [ - "JN367277" - ], - "Bacillus_phage_Pascal" : [ - "NC_027372" - ], - "Maize_streak_virus__UNak_119" : [ - "EF547089" - ], - "Human_mastadenovirus_C_human_USA_Pitts_00149_1990_5_P5H5F5_F268310" : [ - "KF429754" - ], - "Porcine_circovirus_2__HN1205" : [ - "KJ680363" - ], - "Hepatitis_B_virus__D_NZL_GE06_1984" : [ - "HQ700449" - ], - "Xanthomonas_oryzae_KACC_10331" : [ - "NC_006834" - ], - "African_cassava_mosaic_virus__K4J20" : [ - "JN053428" - ], - "Streptococcus_infantarius_CJ18" : [ - "NC_016837", - "NC_016826" - ], - "Hepatitis_B_virus_Ehime12_IM_011025" : [ - "AB110075" - ], - "Hepatitis_B_virus__HBNAT047" : [ - "KJ638663" - ], - "Porcine_circovirus_2_09HLJ" : [ - "HQ395034" - ], - "Chilli_leaf_curl_virus__Sal2" : [ - "JN604490" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_10_2012" : [ - "KM042389" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V1562_2005" : [ - "EU687193" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota14" : [ - "KP283406" - ], - "Mobuck_virus_12_2" : [ - "NC_022621", - "NC_022622", - "NC_022620", - "NC_022627", - "NC_022624", - "NC_022625", - "NC_022628", - "NC_022623", - "NC_022626", - "NC_022629" - ], - "Watermelon_chlorotic_stunt_virus__JO3_624" : [ - "KM820237" - ], - "Hepatitis_B_virus__FMD83" : [ - "GU332696" - ], - "Potato_virus_M__Hangzhou" : [ - "AJ437481" - ], - "Yersinia_phage_L_413C" : [ - "NC_004745" - ], - "Enterovirus_A71__EV71_Zhejiang08" : [ - "EU864507" - ], - "Xylella_phage_Paz" : [ - "NC_022982" - ], - "Thermobacillus_composti_KWC4" : [ - "NC_019897", - "NC_019898" - ], - "Human_immunodeficiency_virus_1__1001_09" : [ - "AY331283" - ], - "Canine_distemper_virus_011C" : [ - "AB476401" - ], - "Lactococcus_phage_P680" : [ - "NC_021852" - ], - "Propionibacterium_phage_P14_4" : [ - "NC_018839" - ], - "West_Nile_virus__WNV_1_US_BID_V6674_2008" : [ - "KJ501412" - ], - "Pseudomonas_phage_LPB1" : [ - "NC_027298" - ], - "Blueberry_red_ringspot_virus__BRRSV24" : [ - "JN205460" - ], - "Bifidobacterium_longum_infantis_ATCC_15697" : [ - "NC_011593" - ], - "Bean_dwarf_mosaic_virus" : [ - "NC_001930", - "NC_001931" - ], - "Wheat_streak_mosaic_virus__Austria" : [ - "LN624217" - ], - "Hepatitis_B_virus__ba7" : [ - "KP341008" - ], - "Hepatitis_C_virus__QC82" : [ - "KJ439774" - ], - "African_horse_sickness_virus__HS_83_04" : [ - "KP009724", - "KP009730", - "KP009729", - "KP009721", - "KP009728", - "KP009723", - "KP009726", - "KP009727", - "KP009725" - ], - "Clostridium_difficile_M120" : [ - "NC_017174" - ], - "JC_polyomavirus__PML013URNFLC_01" : [ - "JF425551" - ], - "Tomato_leaf_curl_Taiwan_virus__NH10_6_6" : [ - "GU723719" - ], - "Dengue_virus_1__DENV_1_THAI_606147_1960" : [ - "JQ922547" - ], - "Rhinovirus_A__2916" : [ - "KF958307" - ], - "Human_papillomavirus_type_6__LPX34" : [ - "HE962027" - ], - "Sida_micrantha_mosaic_virus__SimMV__SP77" : [ - "FN557523", - "FN557522" - ], - "Hepatitis_B_virus__HBV142" : [ - "JN688708" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT43E01_2008" : [ - "JF909184" - ], - "Natrinema_pellirubrum_DSM_15624" : [ - "NC_019962", - "NC_019963", - "NC_019967" - ], - "Phlox_Virus_B__WP" : [ - "NC_009991" - ], - "Foot_and_mouth_disease_virus_C3Arg85_clone_15" : [ - "AJ007572" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V46_2003" : [ - "EU482865" - ], - "Hepatitis_B_virus__GaziantepLCC27" : [ - "AB674431" - ], - "Hepatitis_B_virus__ES70_11" : [ - "JF828917" - ], - "Tomato_leaf_curl_Palampur_virus" : [ - "FR856888", - "FR851930" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1953_2008" : [ - "FJ461338" - ], - "Hepatitis_B_virus__G239" : [ - "JQ040171" - ], - "Maize_streak_virus__MSV_A_GH_gh148_Sur_2010" : [ - "KJ699333" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HP_Thailand_19500LL_2010" : [ - "KF735060" - ], - "Human_metapneumovirus_HMPV_USA_TN_96_213_1996_B" : [ - "KC562229" - ], - "Chlamydia_trachomatis_L2c" : [ - "NC_015744" - ], - "Porcine_circovirus_2_WF" : [ - "HM038029" - ], - "Bluetongue_virus_1__SIC2013" : [ - "KJ661731", - "KJ661734", - "KJ661737", - "KJ661732", - "KJ661735", - "KJ661738", - "KJ661729", - "KJ661733", - "KJ661736" - ], - "Etapapillomavirus_1" : [ - "NC_004068" - ], - "Simian_torque_teno_virus_31__VGA00123_3" : [ - "NC_026662" - ], - "Hepatitis_B_virus__Yamagata_4" : [ - "AB010292" - ], - "Sweet_potato_leaf_curl_Henan_virus__China_Henan10_2012" : [ - "NC_021719" - ], - "Porcine_circovirus_2_JT1110" : [ - "JX948782" - ], - "Hepatitis_B_virus__57" : [ - "AF297620" - ], - "Clostridium_phage_CDMH1" : [ - "NC_024144" - ], - "Soil_borne_cereal_mosaic_virus" : [ - "NC_002330", - "NC_002351", - "AJ252152", - "AJ252151" - ], - "Venezuelan_equine_encephalitis_virus_71D_1252" : [ - "AF075255" - ], - "Koala_retrovirus__Pci_MCZ12454" : [ - "KF786283" - ], - "Porcine_parvovirus_N" : [ - "HM989009" - ], - "Hepatitis_B_virus_1485_11" : [ - "KR013869" - ], - "Human_papillomavirus_type_18__Qv28775" : [ - "KC470221" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_6__AHEaCV_6_NZ_2974SG_2012" : [ - "KM874306" - ], - "Turnip_curly_top_virus__IR_Hom2_8k_09" : [ - "GU456687" - ], - "Enterovirus_5865_sin_000009" : [ - "AF316321" - ], - "Bovine_viral_diarrhea_virus_3_Italy_1_10_1" : [ - "HQ231763" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1NA10" : [ - "GU292314" - ], - "Flavobacterium_psychrophilum_JIP02_86" : [ - "NC_009613" - ], - "Hepatitis_B_virus__M_5" : [ - "KF425557" - ], - "West_Nile_virus__IN_2002" : [ - "DQ164200" - ], - "Hepatitis_B_virus__G116" : [ - "EU158262" - ], - "Bean_golden_mosaic_virus__BR_Pai1_11" : [ - "KJ939737" - ], - "Human_papillomavirus_type_67__Qv24827" : [ - "HQ537782" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7350_2002" : [ - "KF973333" - ], - "Coxsackievirus_A6__3913_SH_CHN_2011" : [ - "KJ541168" - ], - "Dengue_virus_2__DENV_2_CO_BID_V3358_1986" : [ - "GQ868592" - ], - "Porcine_kobuvirus__CH_HNXX_4_2012" : [ - "JX401523" - ], - "Hepatitis_B_virus__Jock" : [ - "HQ603064" - ], - "Hepatitis_B_virus__650_15_1979" : [ - "DQ463789" - ], - "Hepatitis_A_virus_F_G" : [ - "X83302" - ], - "Blueberry_red_ringspot_virus" : [ - "NC_003138" - ], - "Porcine_circovirus_2__FMV_06_0732" : [ - "JQ994270" - ], - "West_Nile_virus__AVA1202600" : [ - "KC736487" - ], - "Dengue_virus_3_BA51" : [ - "AY858037" - ], - "Solenopsis_invicta_virus_1" : [ - "NC_006559" - ], - "Human_papillomavirus_type_68__Qv01017" : [ - "KC470269" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V436_2006" : [ - "EU482844" - ], - "Black_medic_leafroll_virus__Bjuv_153" : [ - "NC_023307", - "NC_023306", - "NC_023301", - "NC_023300", - "NC_023299", - "NC_023304", - "NC_023302", - "NC_023305" - ], - "Enterobacteria_phage_HK225" : [ - "NC_019717" - ], - "Hepatitis_B_virus__N06_M_166A" : [ - "KJ173435" - ], - "West_Nile_virus__WNV_1_US_BID_V4357_2007" : [ - "HM488162" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_955" : [ - "KR534524" - ], - "Salmonid_alphavirus_subtype_3__SAV3_7_R_09" : [ - "KC122918" - ], - "Staphylococcus_aureus_NCTC_8325" : [ - "NC_007795" - ], - "Citrus_tristeza_virus__Kpg_3" : [ - "HM573451" - ], - "Banana_bunchy_top_virus__JM6" : [ - "AB108455" - ], - "Streptomyces_coelicolor_A3_2" : [ - "NC_003888", - "NC_003903", - "NC_003904" - ], - "Canine_parvovirus_2a__UY344" : [ - "KM457137" - ], - "Lettuce_mosaic_virus__FR25" : [ - "KJ161186" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA65_25" : [ - "KF670667" - ], - "Norovirus_Hu_GII_20190_2009_VNM_Hu_GII_20190_2009_VNM" : [ - "KC409271" - ], - "Foot_and_mouth_disease_virus___type_O__O_NY00" : [ - "AY333431" - ], - "Hepatitis_B_virus__S1450" : [ - "FJ386683" - ], - "Enterobacteria_phage_ID52" : [ - "DQ079877" - ], - "Human_papillomavirus_type_33__Z066" : [ - "HQ537704" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4255_1" : [ - "KR105226" - ], - "Pepper_golden_mosaic_virus__PepGMV_Ser" : [ - "AY928517", - "AY928516" - ], - "Tomato_severe_rugose_virus__DF_BR_PADFM_04" : [ - "JF803263" - ], - "Hepatitis_B_virus__JFA4236" : [ - "KF779272" - ], - "Cauliflower_mosaic_virus__IRN17" : [ - "AB863152" - ], - "Human_poliovirus_2_NIE0611195_JIS06_01" : [ - "JX274985" - ], - "Chickpea_chlorosis_virus_B__30" : [ - "KC172690" - ], - "Blainvillea_yellow_spot_virus__BR_Coi25_07" : [ - "NC_010838", - "NC_010837" - ], - "Methanocaldococcus_vulcanius_M7" : [ - "NC_013408", - "NC_013407", - "NC_013409" - ], - "Monkeypox_virus__DRC_07_0480" : [ - "JX878427" - ], - "Human_immunodeficiency_virus_1__04ZASK144B1" : [ - "AY703911" - ], - "Staphylococcus_phage_phiNM3" : [ - "NC_008617" - ], - "Hepatitis_B_virus__HBV_Ry11" : [ - "AB073852" - ], - "Hepatitis_B_virus__9210699" : [ - "AY934764" - ], - "Human_immunodeficiency_virus_1__CANB5FULL" : [ - "AY779555" - ], - "West_Nile_virus__WNV_1_US_BID_V4902_2000" : [ - "HQ671710" - ], - "Bombyx_mori_cypovirus_1_Suzhou" : [ - "GQ924587", - "GU323606", - "GQ294468", - "GU323605", - "GQ294469" - ], - "African_cassava_mosaic_virus__CF_CF6AB_07" : [ - "KJ887758" - ], - "Chikungunya_virus_BNI_CHIKV_899" : [ - "FJ959103" - ], - "Human_adenovirus_7_L34_XY_CHN_2012" : [ - "KJ019881" - ], - "Human_papillomavirus_type_33__RW926" : [ - "HQ537694" - ], - "Desulfurobacterium_thermolithotrophum_DSM_11699" : [ - "NC_015185" - ], - "Foot_and_mouth_disease_virus___type_A_A27_Colombia_a27columbia_iso78" : [ - "AY593771" - ], - "Sida_yellow_vein_Vietnam_alphasatellite" : [ - "NC_009563" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota82_2013" : [ - "KJ645676" - ], - "Classical_swine_fever_virus_C_ZJ_2008" : [ - "HM175885" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US71" : [ - "KJ019120" - ], - "Human_respiratory_syncytial_virus_HRSV_A_IC688_12" : [ - "KP663728" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_1944_VA2007_2007" : [ - "KJ469619" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US109" : [ - "KJ019073" - ], - "Dengue_virus_2_ThD2_0078_01" : [ - "DQ181797" - ], - "Hepatitis_B_virus__CB0376" : [ - "AF305327" - ], - "Porcine_circovirus_2_GXZJ" : [ - "EF675243" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1701_2007" : [ - "FJ024463" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3807" : [ - "KM233084" - ], - "Rice_yellow_mottle_virus__Tz21" : [ - "JX966247" - ], - "Listeria_phage_LP_101" : [ - "NC_024387" - ], - "Citrus_psorosis_virus_P_121" : [ - "NC_006316", - "NC_006315", - "NC_006314" - ], - "Grapevine_rupestris_stem_pitting_associated_virus_SG1__St__George_1" : [ - "AY881626" - ], - "Hepatitis_B_virus__39Y21HCC" : [ - "AB014398" - ], - "Foot_and_mouth_disease_virus___type_A_A23_Kenya_a23kenya_iso8" : [ - "AY593766" - ], - "Lactobacillus_casei_Zhang" : [ - "NC_014334", - "NC_011352" - ], - "Human_herpesvirus_5_PAV18" : [ - "KJ872540" - ], - "Tomato_spotted_wilt_virus__p202_3RB" : [ - "HQ830185", - "HQ830186" - ], - "Porcine_parainfluenza_virus_1_S033N" : [ - "JX857410" - ], - "Hepatitis_B_virus__WHABR1" : [ - "JN257196" - ], - "Middle_East_respiratory_syndrome_coronavirus__Camel_UAE_D1339_2_2014" : [ - "KP719931" - ], - "Hepatitis_E_virus__swX07_E1" : [ - "EU360977" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__KSA27_DNA1_4" : [ - "HG530547" - ], - "Dengue_virus_2_D2_AS_UH79_1972" : [ - "HM582105" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__S3C1" : [ - "JN053456" - ], - "Porcine_circovirus_2__YZ60721" : [ - "FJ158603" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI30_12_DNA_B" : [ - "HE979791" - ], - "Euphorbia_yellow_mosaic_virus__Brazil_Mato_grosso_do_sul_2_2007" : [ - "FN435997", - "FN435998" - ], - "Dengue_virus_2__MAR_Aug_05" : [ - "EU920837" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_B2_6D_V" : [ - "JX570650" - ], - "Hepatitis_B_virus__GU625" : [ - "GQ161814" - ], - "Hepatitis_B_virus__05hgg" : [ - "EF464099" - ], - "Geobacter_sulfurreducens_PCA" : [ - "NC_002939" - ], - "Hepatitis_B_virus_3784_91" : [ - "EU594387" - ], - "Bacillus_phage_Fah" : [ - "NC_007814" - ], - "Hepatitis_C_virus_subtype_3a__ILBSRAS7" : [ - "JQ717258" - ], - "Infectious_bronchitis_virus_ArkDPI11" : [ - "EU418976" - ], - "Marine_gokushovirus__SI1" : [ - "KC131022" - ], - "Human_rhinovirus_A12" : [ - "EF173415" - ], - "Okra_leaf_curl_betasatellite" : [ - "NC_004093" - ], - "Enterobacteria_phage_MS2__ST4" : [ - "EF204940" - ], - "Koala_retrovirus__Pci_um3435" : [ - "KF786286" - ], - "Human_herpesvirus_3_VZVi_Jena_GER_14_05_V_1__551_2005" : [ - "JN704692" - ], - "Human_respiratory_syncytial_virus__Kilifi_9697_7_RSVB_2004" : [ - "KP317925" - ], - "Hepatitis_E_virus__JST_KitAsa04C" : [ - "AB291966" - ], - "Enterovirus_A71__HN318_HN_CHN_2011" : [ - "JQ639384" - ], - "Hepatitis_B_virus__SHB310" : [ - "KJ598672" - ], - "Soybean_mosaic_virus__WS128" : [ - "FJ640963" - ], - "Hepatitis_B_virus__RST_PAK_13a" : [ - "KF061170" - ], - "Bovine_leukemia_virus__LS3" : [ - "HE967303" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG234A1_10" : [ - "KJ887959" - ], - "Rice_black_streaked_dwarf_virus__gochang_37" : [ - "JX994210", - "JX994208" - ], - "Corynebacterium_pseudotuberculosis_FRC41" : [ - "NC_014329" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1942_2008" : [ - "FJ410265" - ], - "Porcine_circovirus_2_P11" : [ - "AY288134" - ], - "Human_herpesvirus_3_36" : [ - "DQ479958" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1928_2008" : [ - "FJ410259" - ], - "Sclerotinia_sclerotiorum_megabirnavirus_1__SX466" : [ - "NC_027222", - "NC_027221" - ], - "Tomato_leaf_curl_Liwa_virus__Tom_42" : [ - "KF111684" - ], - "Melioribacter_roseus_P3M" : [ - "NC_018178" - ], - "Tomato_yellow_leaf_curl_virus__Bidiya" : [ - "HE819241" - ], - "Xenotropic_MuLV_related_virus_VP35__VP35" : [ - "DQ241301" - ], - "Hepatitis_B_virus__Ran11" : [ - "EF103275" - ], - "Amasya_cherry_disease_associated_mycovirus" : [ - "NC_006441", - "NC_006440" - ], - "Infectious_hematopoietic_necrosis_virus" : [ - "X89213" - ], - "Chicken_anemia_virus_GD_N_12" : [ - "KF224938" - ], - "Porcine_circovirus_1__CT_PCV_P7" : [ - "AY099501" - ], - "Human_immunodeficiency_virus_1__96CM_4496" : [ - "AF492623" - ], - "Tomato_severe_rugose_virus__BR_Vic31_10" : [ - "JX865644" - ], - "Chlamydia_trachomatis_L1_115" : [ - "NC_020951", - "NC_020929" - ], - "Myxococcus_phage_Mx8" : [ - "NC_003085" - ], - "Hepatitis_C_virus_subtype_1a__01_37" : [ - "EU781793" - ], - "Hepatitis_B_virus_580_5a" : [ - "KR013815" - ], - "Foot_and_mouth_disease_virus___type_A_A_Venceslau_avenceslau_iso70" : [ - "AY593803" - ], - "Maize_mosaic_virus" : [ - "NC_005975" - ], - "Brugmansia_mosaic_virus_SK" : [ - "NC_020105" - ], - "West_Nile_virus__WNV_1_US_BID_V5222_2008" : [ - "JF920750" - ], - "Tomato_chlorosis_virus__JJ3" : [ - "KP114532", - "KP114533" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00058_2007_G1P_8" : [ - "KC769328" - ], - "Cyclovirus_VN__hcf5" : [ - "KF031469" - ], - "Norovirus_Hu_GII_30211_2009_VNM_Hu_GII_30211_2009_VNM" : [ - "KC409315" - ], - "Hepatitis_B_virus__HBV_9N" : [ - "EU564821" - ], - "Bifidobacterium_longum_F8" : [ - "NC_021008" - ], - "Enterobacteria_phage_T4_wild" : [ - "KJ477684" - ], - "Porcine_circovirus_2__CQKX13_Z2" : [ - "KF742553" - ], - "Nitrosomonas_eutropha_C91" : [ - "NC_008341", - "NC_008344", - "NC_008342" - ], - "African_cassava_mosaic_virus__MG_MG66A1_06" : [ - "KJ887885" - ], - "Small_begomovirus_associated_satellite__wf_S14" : [ - "KJ859175" - ], - "Torque_teno_virus_19__TTV_SANBAN" : [ - "NC_014078" - ], - "Citrus_leprosis_virus_C__Cordeiropolis" : [ - "NC_008170", - "NC_008169" - ], - "Dengue_virus_4__DENV_4_PH_BID_V3361_1956" : [ - "GQ868594" - ], - "BK_polyomavirus_PHL_8" : [ - "AB269859" - ], - "Human_mastadenovirus_D_human_USA_Pitts_00134_1991_8_P8H8F8" : [ - "KF429743" - ], - "Human_poliovirus_3_NIE1118532" : [ - "KJ170641" - ], - "Hepatitis_B_virus__C9_12" : [ - "FJ899764" - ], - "Human_metapneumovirus_HMPV_AUS_165332695_2004_B" : [ - "KF530177" - ], - "Mycobacterium_phage_bron_LeBron" : [ - "NC_014461" - ], - "Lactobacillus_plantarum_ZJ316" : [ - "NC_021904", - "NC_021903", - "NC_021912", - "NC_020229" - ], - "Porcine_circovirus_2_JX0801" : [ - "GQ359009" - ], - "African_cassava_mosaic_virus__Chad_Ndokono_TD2_2008" : [ - "HE814065" - ], - "Hepatitis_B_virus__A5_50068" : [ - "FJ692607" - ], - "Hepatitis_B_virus__2059Java" : [ - "EF473971" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ31AW1_2009" : [ - "JF909212" - ], - "Cronobacter_phage_vB_CsaP_GAP52_vB_CsaP_GAP_52" : [ - "NC_019402" - ], - "Hepatitis_B_virus__WHJWB" : [ - "JN257170" - ], - "Enterovirus_A71__NUH0083_SIN_08" : [ - "FJ461781" - ], - "Blueberry_latent_virus" : [ - "AB608991" - ], - "Hepatitis_B_virus__GU1168" : [ - "GQ161807" - ], - "Human_papillomavirus_type_96" : [ - "NC_005134" - ], - "Coxsackievirus_A6__1232_SH_CHN_2010" : [ - "KJ541167" - ], - "West_Nile_virus__WNV_1_US_BID_V4711_2003" : [ - "HM756666" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2003_6_5" : [ - "KC862571" - ], - "Semliki_Forest_virus_L10" : [ - "AY112987" - ], - "Human_papillomavirus_type_58__HPV58sc101" : [ - "FJ385262" - ], - "West_Nile_virus_TX_2002_HC" : [ - "DQ176637" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4759_2009" : [ - "HM756282" - ], - "Tobacco_leaf_curl_Yunnan_virus____Y143___Y143" : [ - "AJ512762" - ], - "Maize_streak_virus__MSV_A_NG_Eji4_N31a_2007" : [ - "HQ693372" - ], - "Hepatitis_B_virus__A1_9" : [ - "GU815556" - ], - "Hepatitis_B_virus__8064" : [ - "KJ470887" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD179_2013" : [ - "KM229840" - ], - "Bean_golden_mosaic_virus__BR_Mur9_11" : [ - "KJ939762" - ], - "Foot_and_mouth_disease_virus___type_O_O11_Indonesia_o11indonesia_iso52" : [ - "AY593813" - ], - "West_Nile_virus__WNV_1_US_BID_V7426_2010" : [ - "KJ501136" - ], - "Simian_adenovirus_31_2" : [ - "FJ025904" - ], - "Hepatitis_B_virus_HB510" : [ - "HM011501" - ], - "Canine_parvovirus_2c__UY72" : [ - "KM457107" - ], - "South_African_cassava_mosaic_virus__MG_MG223A3_10" : [ - "KJ887682" - ], - "Dengue_virus_1__DENV_1_PR_BID_V2141_1996" : [ - "KF921911" - ], - "Vesicular_stomatitis_Indiana_virus_85CLB" : [ - "AF473865" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Macenta_645" : [ - "KR534513" - ], - "Sweet_potato_leaf_curl_virus_Spain__ES_CI_BG12_02" : [ - "EU856364" - ], - "Human_immunodeficiency_virus_1__97CD_MBFE185" : [ - "FN392874" - ], - "Rabies_virus__A093504" : [ - "JQ685950" - ], - "Rickettsia_parkeri_Portsmouth" : [ - "NC_017044" - ], - "Hepatitis_B_virus__I220" : [ - "FJ562340" - ], - "Halovirus_HF1" : [ - "NC_004927" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3888_2008" : [ - "GU131718" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1355" : [ - "KR534553" - ], - "Dengue_virus_2_DENV_2_ID_1023DN_1975" : [ - "GQ398263" - ], - "Hepatitis_E_virus__JKN_Sap" : [ - "AB074918" - ], - "Dengue_virus_1__DV1_SL_2009a" : [ - "HQ891313" - ], - "Tomato_aspermy_virus_BJ" : [ - "HQ424163", - "HQ424164", - "HQ424165" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo153_08" : [ - "KC706542" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_O22B_2005" : [ - "JQ319168" - ], - "Human_immunodeficiency_virus_1__99SE_MP1300" : [ - "AJ302647" - ], - "Hepatitis_C_virus__PK_1" : [ - "GU294484" - ], - "JC_polyomavirus__J3_8" : [ - "AB081606" - ], - "Woolly_monkey_sarcoma_virus" : [ - "NC_009424" - ], - "Enterobacteria_phage_NJ01" : [ - "NC_018835" - ], - "Simian_immunodeficiency_virus__SIVcpzEK505" : [ - "DQ373065" - ], - "Propionibacterium_phage_PHL067M10" : [ - "NC_022335" - ], - "Mamastrovirus_10__SMS_AstV" : [ - "GU985458" - ], - "Feline_bocavirus__FBD1" : [ - "KM017744" - ], - "Chicken_anemia_virus__9" : [ - "KJ728820" - ], - "Cucumber_mosaic_virus_Li" : [ - "AB506796", - "AB506795", - "AB506797" - ], - "Sweet_potato_leaf_curl_virus__China_Shandong3_2014" : [ - "KP069467" - ], - "Variola_virus_Sudan_1947__Rumbec" : [ - "DQ441441" - ], - "African_cassava_mosaic_virus__MG_MG100A1_07" : [ - "KJ887908" - ], - "Glaciecola_psychrophila_170" : [ - "NC_020514" - ], - "Blackcurrant_reversion_virus" : [ - "NC_003509", - "NC_003502" - ], - "SARS_coronavirus_Sin2500__SIN2500" : [ - "AY283794" - ], - "Bat_SARS_coronavirus_HKU3_12_HKU3_12" : [ - "GQ153547" - ], - "Human_herpesvirus_5_BE_30_2010" : [ - "KP745726" - ], - "Coxsackievirus_A16_BJ11_12" : [ - "JX068828" - ], - "Dengue_virus_2__DENV_2_MX_BID_V2964_2008" : [ - "FJ898439" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_91I_144A_01_1991" : [ - "KJ723460" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7681_2012" : [ - "KF973467" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K230" : [ - "AJ717579", - "AJ704967" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4248_2007" : [ - "JQ287665" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL142A" : [ - "AB985566" - ], - "Coxsackievirus_B5_2001_01_11" : [ - "KP266575" - ], - "SARS_coronavirus_CUHK_W1__CUHK_W1" : [ - "AY278554" - ], - "Hepatitis_B_virus__BV_55" : [ - "GU563556" - ], - "Squash_leaf_curl_virus__10" : [ - "DQ285017", - "DQ285016" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V508_2001" : [ - "EU250017" - ], - "Hepatitis_B_virus__H1099_02" : [ - "FJ882614" - ], - "Cotton_leaf_crumple_virus" : [ - "NC_004581", - "NC_004580" - ], - "McMurdo_Ice_Shelf_pond_associated_circular_DNA_virus_7__alg49_129" : [ - "NC_024483" - ], - "Foot_and_mouth_disease_virus___type_O__TUR_8_2011" : [ - "JX040499" - ], - "Porcine_circovirus_2__A4242" : [ - "JF317578" - ], - "Dengue_virus_1__DENV_1_US_BID_V1742_1998" : [ - "FJ390380" - ], - "Caretta_caretta_papillomavirus_1" : [ - "NC_011530" - ], - "Maize_streak_virus__UKas_70" : [ - "EF547077" - ], - "Bluetongue_virus_4__Mandiko_1999" : [ - "DQ191277" - ], - "Human_papillomavirus_type_6__38" : [ - "HG793846" - ], - "Hepatitis_delta_virus_Miyako_JA_M20" : [ - "AB118835" - ], - "Lactococcus_lactis_phage_P113G" : [ - "KC182548" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_TP_P90" : [ - "GU232737" - ], - "Toscana_virus__SI_1812" : [ - "EU327772" - ], - "Dengue_virus_2__DC391Y11" : [ - "KM279521" - ], - "Human_adenovirus_53__960528C_Hiroshima_1996" : [ - "AB605243" - ], - "Porcine_circovirus_2__Mal003_11_Selangor" : [ - "JF690912" - ], - "Tembusu_virus_TMUV_WZDu" : [ - "AB917089" - ], - "Dengue_virus_1_D1_Hu_Saitama_NIID100_2014" : [ - "LC011945" - ], - "Tobacco_curly_shoot_virus____Y282___Y282" : [ - "AJ971266" - ], - "Rio_Bravo_virus_M64" : [ - "JQ582840" - ], - "West_Nile_virus__WNV_1_US_BID_V4363_2008" : [ - "HM488167" - ], - "Tobacco_yellow_crinkle_virus__Capsicum_Cuba_2007" : [ - "FJ222587" - ], - "Coxsackievirus_A16__THA_CA16_069" : [ - "JF738004" - ], - "Human_papillomavirus_type_6__87" : [ - "HG793895" - ], - "Hepatitis_B_virus__IBL911" : [ - "HM363601" - ], - "Usutu_virus_V39" : [ - "KJ438765" - ], - "JC_polyomavirus_Tokyo_1_Japanese_PML_patient" : [ - "AF030085" - ], - "JC_polyomavirus__MA_8" : [ - "AB126999" - ], - "Sugarcane_mosaic_virus__BD8" : [ - "JN021933" - ], - "Beet_mosaic_virus__Xinjiang" : [ - "DQ674264" - ], - "Hepatitis_B_virus_004" : [ - "AB900116" - ], - "Bombyx_mori_densovirus_3__VD2" : [ - "NC_020927" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA0535_2008" : [ - "KJ627336" - ], - "Torque_teno_virus__TTV_HD18b__uro705" : [ - "FR751490" - ], - "Duck_circovirus__D11_JW_007" : [ - "KC851805" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19071_M22987_2007" : [ - "KR135299" - ], - "Macroptilium_yellow_vein_virus__BR_Pai21_11" : [ - "KJ939901" - ], - "Human_papillomavirus_type_18__CU9" : [ - "GQ180785" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V53_2004" : [ - "EU256013" - ], - "Echovirus_E12__wildtype" : [ - "X79047" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_92_2013" : [ - "KM042381" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1274" : [ - "KR534542" - ], - "Hepatitis_B_virus__Occult_HK6840" : [ - "KJ410507" - ], - "Dengue_virus_2__DF755" : [ - "FM210222" - ], - "Hepatitis_B_virus__I36" : [ - "FJ562229" - ], - "Porcine_circovirus_2_HB_SJZ" : [ - "KP179231" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7218_2009_A" : [ - "KJ627432" - ], - "Murine_norovirus_GV_WU25_2005_USA__Mu_NoV_GV_WU25_2005_USA" : [ - "EU004670" - ], - "JC_polyomavirus__JCV144_01" : [ - "JF424874" - ], - "Enterobacteria_phage_phiX174__10A90" : [ - "EF380013" - ], - "Hepatitis_B_virus__IIb" : [ - "AY167094" - ], - "Dengue_virus_2_BR64022" : [ - "AF489932" - ], - "Hepatitis_B_virus__92" : [ - "EU787434" - ], - "Human_immunodeficiency_virus_1_ES_X1118_4" : [ - "FJ670517" - ], - "Hepatitis_B_virus__35" : [ - "JX507212" - ], - "Hepatitis_B_virus__5b" : [ - "EU155895" - ], - "Cucumber_mosaic_virus_satellite_RNA_T8" : [ - "X86420" - ], - "Rice_yellow_mottle_virus__Mg20" : [ - "JX966246" - ], - "Porcine_circovirus_2_HB_MC1" : [ - "KM460824" - ], - "Coxsackievirus_A16_changchun028" : [ - "KF055239" - ], - "Merkel_cell_polyomavirus_7673_2011_HUN" : [ - "KC202810" - ], - "Streptococcus_pneumoniae_SPNA45" : [ - "NC_018594" - ], - "Synechococcus_phage_S_SSM5_8102_12" : [ - "NC_015289" - ], - "Human_adenovirus_53__FS161_Fukui_2004" : [ - "AB605245" - ], - "Sugarcane_mosaic_virus__F3S2" : [ - "KP860936" - ], - "Mycobacterium_phage_Sparky" : [ - "NC_026597" - ], - "Rice_dwarf_virus__Chinese_Yunnan" : [ - "AY589576", - "AY589577" - ], - "Hepatitis_B_virus_1485_2a" : [ - "KR014081" - ], - "Human_immunodeficiency_virus_1__24" : [ - "EF363124" - ], - "Pelagibacter_phage_HTVC010P" : [ - "NC_020481" - ], - "Hepatitis_B_virus__bxa2005" : [ - "KC774405" - ], - "Hepatitis_delta_virus__TWD2577_66" : [ - "AF425644" - ], - "Lactobacillus_casei_LC2W" : [ - "NC_017475", - "NC_017473" - ], - "Tomato_yellow_leaf_curl_virus__Homra" : [ - "JX444575" - ], - "Canine_distemper_virus_CYN07_dV" : [ - "AB687720" - ], - "Mycoplasma_hyopneumoniae_7422" : [ - "NC_021831" - ], - "JC_polyomavirus__FC_1a" : [ - "AB103407" - ], - "Mumps_virus__88_1961" : [ - "AF467767" - ], - "Turnip_vein_clearing_virus_NZ_438_TP9_186_L22" : [ - "JN205073" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HLM_09" : [ - "HQ843179" - ], - "Tomato_chlorosis_virus__Nanjing" : [ - "KJ815045" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLI1313_2010" : [ - "KJ627268" - ], - "Hepatitis_B_virus__C61" : [ - "EU939554" - ], - "Dengue_virus_2__DENV_2_US_BID_V1045_2005" : [ - "EU482556" - ], - "Human_papillomavirus_type_6__48" : [ - "HG793856" - ], - "Bhendi_yellow_vein_mosaic_virus_associated_alphasatellite__BYVMVA_Okra_Ropar_2010" : [ - "NC_018574" - ], - "Streptomyces_phage_mu1_6" : [ - "NC_007967" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_131_2012" : [ - "KJ686263" - ], - "Parainfluenza_virus_5_RQ" : [ - "JQ743327" - ], - "Hepatitis_B_virus__919086" : [ - "JN040755" - ], - "Euphorbia_mosaic_virus___A__Puerto_Rico_Jurabo_1991" : [ - "AF068642" - ], - "BK_polyomavirus__MT_clone_59" : [ - "AB485706" - ], - "Chikungunya_virus_PO731460" : [ - "HM045788" - ], - "Hepatitis_E_virus_HEV_ZJ1" : [ - "JQ993308" - ], - "Japanese_encephalitis_virus__DL04_29" : [ - "JF706272" - ], - "Chlamydia_trachomatis_IU824" : [ - "NC_020511", - "NC_020551" - ], - "Simian_torque_teno_virus_34__VGA00120_1" : [ - "NC_026765" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_1120" : [ - "JQ900260" - ], - "Hepatitis_B_virus_1456_5" : [ - "KR014065" - ], - "Maize_streak_virus____Reunion2" : [ - "X94330" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_97E_017_01_1997" : [ - "KP258724" - ], - "Bidens_mosaic_virus__SP01" : [ - "NC_023014" - ], - "Salmonella_phage_FSLSP030" : [ - "NC_021779" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1693_2007" : [ - "FJ205882" - ], - "Dengue_virus_1__SG_EHI_D1209Y03" : [ - "FJ469907" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_151_94" : [ - "DQ989303" - ], - "Erwinia_phage_phiEa104" : [ - "NC_015292" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1517_2007" : [ - "EU677137" - ], - "Clostridium_phage_phi3626" : [ - "NC_003524" - ], - "Hepatitis_B_virus__GaziantepHCCC3" : [ - "AB674421" - ], - "Infectious_bursal_disease_virus_CU_1_CU_1" : [ - "X16107" - ], - "Xenopus_laevis_endogenous_retrovirus_Xen1__Xen1" : [ - "NC_010955" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_USA_664_53_1953" : [ - "KJ469609" - ], - "Tomato_leaf_curl_Taiwan_virus__GT6_4" : [ - "DQ866123" - ], - "Bean_common_mosaic_virus__CD021" : [ - "KM051426" - ], - "Hepatitis_B_virus__S219" : [ - "FJ386659" - ], - "Pirital_mammarenavirus_1645" : [ - "AY573921" - ], - "Hepatitis_delta_virus__9" : [ - "HQ005368" - ], - "Chaetoceros_tenuissimus_DNA_virus_type_II__SS10_8V" : [ - "NC_025893" - ], - "Maize_streak_virus__MSV_A_MZ_Map5_Moz26_2007" : [ - "HQ693355" - ], - "Coxsackievirus_A17_BAN01_10577" : [ - "DQ995645" - ], - "Shewanella_phage_Spp001" : [ - "NC_023594" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4047_2008" : [ - "JF937614" - ], - "Human_immunodeficiency_virus_1__96CM_4164" : [ - "AF460974" - ], - "Alfalfa_mosaic_virus_AZ" : [ - "AB126031" - ], - "Porcine_circovirus_2_NY_2" : [ - "JF928006" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1874_2008" : [ - "FJ461322" - ], - "Lamb_rotavirus_Lamb_NT" : [ - "FJ031019", - "FJ031021", - "FJ031029", - "FJ031024", - "FJ031027", - "FJ031028", - "FJ031022", - "FJ031025", - "FJ031026", - "FJ031023", - "FJ031020" - ], - "Hepatitis_B_virus__SHB715" : [ - "KJ598749" - ], - "Hepatitis_B_virus__EICI_56" : [ - "KF679997" - ], - "Avian_gyrovirus_2" : [ - "NC_015396" - ], - "Dengue_virus_2_Tonga_74" : [ - "AY744147" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K304" : [ - "AJ717571" - ], - "Human_metapneumovirus_TN982_42" : [ - "JN184401" - ], - "West_Nile_virus__WNV_1_US_BID_V4712_2003" : [ - "HM756667" - ], - "Dengue_virus_1__DENV_1_VG_BID_V2937_1985" : [ - "GQ868601" - ], - "Clostridium_cellulovorans_743B" : [ - "NC_014393" - ], - "Human_immunodeficiency_virus_1__ZM246F_flC3" : [ - "FJ496191" - ], - "Duck_hepatitis_virus_DHV_HSS" : [ - "DQ812092" - ], - "Simian_virus_40_777" : [ - "AF332699", - "AF332562" - ], - "Torque_teno_sus_virus_1b__TTV2_GE9" : [ - "GU570197" - ], - "Citrus_tristeza_virus__B301" : [ - "JF957196" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1549_2007" : [ - "EU677173" - ], - "Staphylococcus_phage_StB12" : [ - "NC_020490" - ], - "Mammalian_orthoreovirus_4_Ndelle" : [ - "AF368037", - "AF368035", - "AF368036", - "AF368034", - "AF368033" - ], - "Cydia_pomonella_granulovirus_Mexican_1" : [ - "NC_002816" - ], - "Potato_virus_Y__PVYOUK" : [ - "JX424837" - ], - "Thermococcus_kodakarensis_KOD1" : [ - "NC_006624" - ], - "Hepatitis_B_virus__XJU" : [ - "EU919197" - ], - "Beak_and_feather_disease_virus__2NC90B" : [ - "JX049218" - ], - "Enterovirus_A71__FY08_C30_P2" : [ - "GU198367" - ], - "Hepatitis_B_virus__AT1_2" : [ - "AY721606" - ], - "Human_immunodeficiency_virus_1__MBC925" : [ - "AF042101" - ], - "Ostreococcus_lucimarinus_virus_OlV5_OlV5" : [ - "NC_020852" - ], - "JC_polyomavirus__JCV161FLC_42" : [ - "JF424949" - ], - "Hepatitis_B_virus__C2_7" : [ - "GU815633" - ], - "Cotton_leaf_curl_Kokhran_virus__IN_SriBt12_10" : [ - "HQ257374" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_2_2011" : [ - "KJ686177" - ], - "Enterobacteria_phage_Phieco32" : [ - "NC_010324" - ], - "Bacillus_subtilis_XF_1" : [ - "NC_020244" - ], - "Pseudomonas_phage_phiPSA2" : [ - "NC_024362" - ], - "Human_immunodeficiency_virus_1__97VNAG214" : [ - "FJ185253" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1920_2007" : [ - "FJ410253" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K79" : [ - "AJ717529", - "AJ704958" - ], - "Maize_streak_virus__MSV_A_ZA_Por4_Ta16_2008" : [ - "HQ693434" - ], - "Avian_orthoreovirus_C_98" : [ - "EF030496" - ], - "Streptococcus_intermedius_JTH08" : [ - "NC_018073" - ], - "Hepatitis_C_virus_subtype_1b__L801" : [ - "EU781827" - ], - "Beak_and_feather_disease_virus__5IT09" : [ - "KF723393" - ], - "Dengue_virus_3__DENV_3_US_BID_V1618_2005" : [ - "FJ182008" - ], - "Eubacterium_rectale_ATCC_33656" : [ - "NC_012781" - ], - "Erinaceus_europaeus_papillomavirus_1" : [ - "NC_011765" - ], - "Dengue_virus_3__DENV_3_US_BID_V1614_2004" : [ - "FJ182005" - ], - "Human_betacoronavirus_2c_England_Qatar_2012__England_Qatar_2012" : [ - "KC667074" - ], - "Mycobacterium_JDM601" : [ - "NC_015576" - ], - "Hepatitis_B_virus_34011" : [ - "FN545827" - ], - "Middle_East_respiratory_syndrome_coronavirus__Riyadh_5_2013" : [ - "KJ156944" - ], - "Lactococcus_phage_Tuc2009" : [ - "NC_002703" - ], - "Watermelon_mosaic_virus" : [ - "KF274031" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PER_02_2720_98_1998_ID" : [ - "KC344504" - ], - "Human_immunodeficiency_virus_1__04MYKL019_1" : [ - "DQ366665" - ], - "BK_polyomavirus__BKV_CAP_h5" : [ - "AY628228" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0138" : [ - "KP759686" - ], - "Pseudomonas_phage_vB_PaeM_PAO1_Ab06_Ab06" : [ - "LN610582" - ], - "Echovirus_E20_KM_EV20_2010" : [ - "KF812551" - ], - "Hepatitis_E_virus__JYM_Tot04L" : [ - "AB291956" - ], - "Enterovirus_A71__C1_FY08_C30_P11" : [ - "GU198369" - ], - "Ruminococcus_bromii" : [ - "NC_021013" - ], - "Canine_distemper_virus__171391_513" : [ - "KJ123771" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4217_1" : [ - "KR105218" - ], - "Methanocaldococcus_infernus_ME" : [ - "NC_014122" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V1563_2004" : [ - "EU687194" - ], - "Human_immunodeficiency_virus_1__04MHI10" : [ - "JQ316137" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V297_2002" : [ - "EU155369" - ], - "Little_cherry_virus_1" : [ - "NC_001836" - ], - "Avian_leukosis_virus_99348" : [ - "KJ625628", - "KJ908215" - ], - "African_cassava_mosaic_virus__MG_MG343B6_11" : [ - "KJ887706" - ], - "Hepatitis_B_virus__WHSDQ" : [ - "JN257162" - ], - "Anatid_herpesvirus_1_K" : [ - "KF487736" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1852_2007" : [ - "FJ906728" - ], - "Human_poliovirus_1__TJK36567" : [ - "KC880377" - ], - "Human_immunodeficiency_virus_1__03ZAPS152MB1" : [ - "DQ396399" - ], - "Newcastle_disease_virus_HX01" : [ - "JF795531" - ], - "Streptococcus_pyogenes_HSC5" : [ - "NC_021807" - ], - "Thermovirga_lienii_DSM_17291" : [ - "NC_016149", - "NC_016148" - ], - "Hepatitis_B_virus__Cuba139" : [ - "KM606755" - ], - "Dengue_virus_2__DENV_2_BR_BID_V3637_2008" : [ - "HM181971" - ], - "Plum_pox_virus_D_PENN1" : [ - "AF401295" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1906_2008" : [ - "FJ410242" - ], - "WU_Polyomavirus__W33" : [ - "GU296367" - ], - "J_virus" : [ - "NC_007454" - ], - "Dengue_virus_2__FGU_Jun_97" : [ - "EU920829" - ], - "Sida_golden_yellow_vein_virus__177" : [ - "JF907582" - ], - "Tomato_spotted_wilt_virus__WA7" : [ - "KM365065", - "KM365064", - "KM365066" - ], - "Thermus_thermophilus_JL_18" : [ - "NC_017588", - "NC_017587", - "NC_017590" - ], - "Tick_borne_encephalitis_virus_Skrivanek" : [ - "KJ922514" - ], - "Enterovirus_A71_TW_96002_08" : [ - "GQ231941" - ], - "Hepatitis_B_virus__PhHCC15" : [ - "AB241112" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4241_2007" : [ - "HM181943" - ], - "Mesoplasma_florum_L1" : [ - "NC_006055" - ], - "Porcine_circovirus_2__HN2_11" : [ - "KC473166" - ], - "Human_papillomavirus_type_33__Qv35834" : [ - "HQ537690" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_27_2012" : [ - "KJ672446" - ], - "Human_coronavirus_NL63_NL63_DEN_2009_15" : [ - "JQ765565" - ], - "SARS_coronavirus_HSZ_Bc__HSZ_Bc" : [ - "AY394994" - ], - "Polymorphum_gilvum_SL003B_26A1" : [ - "NC_015259", - "NC_015258" - ], - "Batai_virus_NM_12" : [ - "KJ187040", - "KJ187038" - ], - "Cotton_leaf_curl_Multan_betasatellite__CLCuV_G" : [ - "AY083590" - ], - "JC_polyomavirus__JCV161FLC_48" : [ - "JF424955" - ], - "Gallid_herpesvirus_2__Md11" : [ - "AY510475" - ], - "Norovirus_Hu_GII_4_Akita4_2006_JP_Hu_GII_4_Akita4_2006_JP" : [ - "AB447438" - ], - "Human_papillomavirus_type_6__PV1731" : [ - "JN252317" - ], - "GB_virus_C__DH028" : [ - "HQ331235" - ], - "Torque_teno_sus_virus_1a__TTV1_19N" : [ - "GU570198" - ], - "Human_papillomavirus_type_58__JP0221" : [ - "AB819275" - ], - "Human_poliovirus_2__MAD029" : [ - "AM084225" - ], - "Duck_megrivirus_LY" : [ - "NC_024120" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7057_2007" : [ - "KJ189273" - ], - "Bean_golden_mosaic_virus__BR_Mur7_11" : [ - "KJ939760" - ], - "West_Nile_virus__WNV_1_US_BID_V6530_2002" : [ - "KJ501495" - ], - "Pepper_yellow_leaf_curl_Indonesia_virus__Bogor" : [ - "DQ083764" - ], - "Gallid_herpesvirus_1_81658" : [ - "JN542535" - ], - "Hepatitis_B_virus__005_EA_Gal" : [ - "KF873517" - ], - "Hepatitis_B_virus__MMA_16" : [ - "AM421544" - ], - "Spider_monkey_foamy_virus_ATCC_VR_940" : [ - "EU010385" - ], - "Mesta_yellow_vein_mosaic_virus__Islamabad61" : [ - "KR013745" - ], - "Snow_goose_hepatitis_B_virus__SGHBV1_9" : [ - "AF111000" - ], - "Beak_and_feather_disease_virus__BFDV_Q_PL_902_2009" : [ - "JX221043" - ], - "Yersinia_phage_PST" : [ - "NC_027404" - ], - "Enterobacteria_phage_HK544" : [ - "NC_019767" - ], - "Avian_leukosis_virus_Km_6349" : [ - "AB764106" - ], - "Tomato_leaf_curl_Taiwan_virus__HKT1" : [ - "EU624503" - ], - "Enterovirus_D68_US_KY_14_18951" : [ - "KM851229" - ], - "Japanese_encephalitis_virus_GZ" : [ - "KC915016" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD236_2013" : [ - "KM229876" - ], - "South_African_cassava_mosaic_virus__MG_MG398A1_11" : [ - "KJ888002" - ], - "Duck_coronavirus__DK_CH_HN_ZZ2004" : [ - "JF705860" - ], - "Plutella_xylostella_granulovirus_K1" : [ - "NC_002593" - ], - "Beet_curly_top_Iran_virus__IR_Neg_B34P_Sug_08" : [ - "JQ707950" - ], - "Bat_SARS_coronavirus_HKU3_7_HKU3_7" : [ - "GQ153542" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V3798_2008" : [ - "GU131901" - ], - "Human_papillomavirus_type_53__Qv20899" : [ - "EF546473" - ], - "Dengue_virus_3__DENV_3_PE_BID_V6168_2002" : [ - "KJ189259" - ], - "Cucumber_mosaic_virus_satellite_RNA_E" : [ - "MCVSRNAE" - ], - "Chickpea_chlorosis_Australia_virus__3773G" : [ - "KC172688" - ], - "Leek_yellow_stripe_virus__MS_SW_Aus1" : [ - "HQ258895" - ], - "Human_respiratory_syncytial_virus__Kilifi_9465_7_RSVB_2011" : [ - "KP317927" - ], - "Human_immunodeficiency_virus_1__04013226_2_flA8" : [ - "FJ496072" - ], - "Lactococcus_phage_WRP3__WRP3" : [ - "NC_027341" - ], - "Tomato_yellow_leaf_curl_virus__TYLCV_SXYL4" : [ - "KC138543" - ], - "JC_polyomavirus__MR_9" : [ - "AB127002" - ], - "Hepatitis_B_virus__Ia_2" : [ - "AY596103" - ], - "Porcine_circovirus_2__YZ60615" : [ - "FJ158604" - ], - "African_cassava_mosaic_virus__CF_CF79BE_07" : [ - "KJ887608" - ], - "Enterovirus_A71_SDLY48_C" : [ - "JX244184" - ], - "Hepatitis_B_virus__EN31_CHB" : [ - "JN664923" - ], - "Dengue_virus_1__DENV_1_VN_BID_V934_2007" : [ - "EU482479" - ], - "Trichechus_manatus_latirostris_papillomavirus_2_M09_20" : [ - "NC_016898" - ], - "Tomato_severe_rugose_virus__BR_Car218_1_08" : [ - "KC004076" - ], - "Human_papillomavirus_type_16__Z109" : [ - "HQ644298" - ], - "Escherichia_phage_bV_EcoS_AHP42" : [ - "NC_024793" - ], - "Hepatitis_B_virus__2B3225" : [ - "GQ922003" - ], - "Hepatitis_B_virus__C_NZL_PA81" : [ - "HQ700554" - ], - "Hepatitis_B_virus__cww1068" : [ - "KC774262" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_19_2011" : [ - "KJ686173" - ], - "Human_adenovirus_3_NHRC_1276" : [ - "AY599836" - ], - "Human_papillomavirus_type_89" : [ - "AF436128" - ], - "Marburg_marburgvirus__Marburg_virus_H_sapiens_tc_AGO_2005_Angola_810820" : [ - "KR063674" - ], - "Dengue_virus_2__DENV_2_NI_BID_V557_2005" : [ - "EU482771" - ], - "Anaconda_paramyxovirus__RF111111" : [ - "KJ956407" - ], - "Tomato_torrado_virus__Kra" : [ - "KJ940975", - "KJ940974" - ], - "Human_poliovirus_1__ISR1318572" : [ - "KJ019831" - ], - "Hepatitis_B_virus__pt16N" : [ - "KM875430" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K298" : [ - "NC_011584", - "NC_011583" - ], - "Turnip_mosaic_virus__AUST1" : [ - "AB989629" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_SCC_05_746" : [ - "KF385413" - ], - "Maize_streak_virus__MSV_A_ZA_Koe3_M42K_1989" : [ - "HQ693417" - ], - "Sweet_potato_golden_vein_associated_virus__PB1__BR_Sou1" : [ - "FJ969830" - ], - "Dengue_virus_2_ThD2_0055_99" : [ - "DQ181798" - ], - "Human_mastadenovirus_B__DRC_Kahuzi_6759" : [ - "KT069550" - ], - "Hepatitis_B_virus__C78" : [ - "HM363607" - ], - "Pepper_mottle_virus__134" : [ - "EU586123" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GBC_11_383" : [ - "KF385409" - ], - "Bovine_viral_diarrhea_virus_1__Carlito" : [ - "KP313732" - ], - "Enterobacteria_phage_lambda" : [ - "NC_001416" - ], - "Enterovirus_A71_AH08_06" : [ - "HQ611148" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1117_2001" : [ - "EU529686" - ], - "Treponema_pallidum_Mexico_A" : [ - "NC_018722" - ], - "Tomato_yellow_leaf_curl_virus__Gwangyang_6" : [ - "HM856914" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_08HuN" : [ - "GU169411" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7042_2004" : [ - "KJ189263" - ], - "Hepatitis_B_virus_HB057" : [ - "HM011485" - ], - "Enterovirus_A71_MP10" : [ - "HQ712020" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V109_2003" : [ - "EU255997" - ], - "Hepatitis_B_virus__HBV74" : [ - "KC875307" - ], - "Cotton_leaf_curl_Burewala_virus" : [ - "HG422573", - "EU365620", - "FR750318", - "HG422567", - "HE995546", - "HG003876", - "HE995543", - "HG422570", - "HG422568", - "FR837934", - "HE995544", - "HG422574", - "FR750321", - "FR750322", - "HF569046", - "HF952155", - "FN645932", - "HE861731", - "HE995547", - "HE995548", - "FR837933", - "FR750323", - "EU365619", - "HF952157", - "HE995545", - "HG422572", - "HG422575", - "HF952154", - "FR750319", - "HG428709", - "FN645929", - "FR750320", - "HF569171", - "HG422569", - "FR750324", - "HG422571", - "FR837932" - ], - "KI_polyomavirus__CU_255" : [ - "EU358766" - ], - "West_Nile_virus_385_99" : [ - "EF571854" - ], - "Dengue_virus_2__DENV_2_US_BID_V680_1994" : [ - "EU482737" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_SriGanganagar_2005___In_SriGanganagar_2005" : [ - "JF509751" - ], - "Vaccinia_virus_GLV_1h68_GLV_1h68" : [ - "EU410304" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_11_2011" : [ - "KJ686242" - ], - "Hepatitis_B_virus_1346_22" : [ - "KR014036" - ], - "Torque_teno_virus__2h" : [ - "AY823988" - ], - "Human_immunodeficiency_virus_1__CH40E_flG6" : [ - "FJ495826" - ], - "Hepatitis_B_virus__LDA265" : [ - "KF849720" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_04_2012" : [ - "KJ672464" - ], - "Hepatitis_B_virus__I141" : [ - "FJ562280" - ], - "Human_immunodeficiency_virus_1__DR0769" : [ - "AB253431", - "AB253430" - ], - "JC_polyomavirus__Luz_11" : [ - "AB113127" - ], - "Hepatitis_B_virus__TK138" : [ - "JF754616" - ], - "Chikungunya_virus_ALSA_1" : [ - "HM045806" - ], - "Tomato_leaf_curl_New_Delhi_virus__X3A" : [ - "KJ778694" - ], - "Dengue_virus_3__DENV_3_US_BID_V1416_2007" : [ - "EU596493" - ], - "Human_immunodeficiency_virus_1__97CNGX_7F" : [ - "AY008716" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD32_2013" : [ - "KM229898" - ], - "Turnip_yellow_mosaic_virus" : [ - "X16378", - "NC_004063", - "MTYCLCGA" - ], - "Thermus_oshimai_JL_2" : [ - "NC_019386", - "NC_019387", - "NC_019388" - ], - "Coxsackievirus_A16_BJ09_06" : [ - "JX068832" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5453_2009" : [ - "KF971709" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo170a_08" : [ - "KC706544" - ], - "Human_immunodeficiency_virus_1__mSTD101" : [ - "AB097870" - ], - "Hepatitis_delta_virus_Miyako_JA_M3" : [ - "AB118819" - ], - "Bhendi_yellow_vein_India_virus__India_Aurangabad_OY164B_2006___OY164B" : [ - "GU112030" - ], - "Hepatitis_B_virus__I2_M04_3724" : [ - "FJ023670" - ], - "Blackberry_vein_banding_associated_virus__Mississippi1" : [ - "NC_022072" - ], - "Chikungunya_virus_Ross" : [ - "AF490259" - ], - "Cotton_leaf_curl_Gezira_betasatellite__BF_Kap_Okra1_1" : [ - "FN554574" - ], - "Dengue_virus_2__DENV_2_US_BID_V588_2006" : [ - "EU482720" - ], - "Human_poliovirus_3_NIE1018462" : [ - "KJ170668" - ], - "Macroptilium_yellow_spot_virus__BR_Oaf26_11" : [ - "KJ939855" - ], - "Porcine_circovirus_2__TDBS12" : [ - "KJ680354" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4049_2008" : [ - "GU131803" - ], - "Porcine_circovirus_2__TN2" : [ - "HQ202971" - ], - "Chlamydophila_pecorum_E58" : [ - "NC_015408" - ], - "Coxsackievirus_A16__XM_CA16_3560" : [ - "HQ269389" - ], - "Pelargonium_necrotic_spot_virus" : [ - "NC_005285" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_55_2012" : [ - "KJ686283" - ], - "Hepatitis_B_virus__MC05" : [ - "EU547562" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_3_2011" : [ - "KJ686212" - ], - "Temperate_fruit_decay_associated_virus__MFBpe20" : [ - "KR134340" - ], - "Serratia_AS12" : [ - "NC_015566" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V74_2004" : [ - "EU256094" - ], - "Hepatitis_B_virus__818" : [ - "AY233286" - ], - "Rotavirus_G9_N23" : [ - "AJ491177" - ], - "Phlebovirus_JS26_JS26" : [ - "HQ830166", - "HQ830168", - "HQ830167" - ], - "Yam_latent_virus__SG1" : [ - "NC_026248" - ], - "Mal_de_Rio_Cuarto_virus" : [ - "NC_008728", - "NC_008731", - "NC_008734", - "NC_008732", - "NC_008735", - "NC_008733", - "NC_008729", - "NC_008730" - ], - "Salmonella_phage_SSE_121_SSE_121" : [ - "NC_027351" - ], - "Enterobacteria_phage_MS2__R17" : [ - "EF108465" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3757_2008" : [ - "HQ166037" - ], - "Torres_virus_TS5273" : [ - "KM225265" - ], - "Rice_yellow_mottle_virus__Mg16" : [ - "AM883056" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4337_1" : [ - "KR105238" - ], - "Hepatitis_B_virus_P2729" : [ - "KJ586806" - ], - "Dengue_virus_2__DENV_2_US_BID_V1404_1997" : [ - "EU569719" - ], - "Sandfly_fever_Sicilian_virus_R_18" : [ - "EF201826" - ], - "Norovirus_Hu_GII_4_CHDC2094_1974_US_Hu_GII_4_CHDC2094_1974_US" : [ - "FJ537135" - ], - "Hepatitis_B_virus__M82" : [ - "GQ924645" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1201_2007" : [ - "EU660405" - ], - "Cherry_rasp_leaf_virus__potato_isolate" : [ - "NC_006272" - ], - "Maize_streak_virus__MSV_A_ZA_War3_Ta2_2008" : [ - "HQ693443" - ], - "Vaccinia_virus_DUKE" : [ - "DQ439815" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3975_2008" : [ - "GQ868615" - ], - "African_cassava_mosaic_virus__MG_MG343A10_11" : [ - "KJ887995" - ], - "Spissistilus_festinus_virus_1" : [ - "NC_014359" - ], - "Sweet_potato_feathery_mottle_virus_EA_Piu3" : [ - "FJ155666" - ], - "West_Nile_virus__WNV_1_US_BID_V5177_2004" : [ - "JF488087" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_48_2013" : [ - "KJ672453" - ], - "Human_papillomavirus_type_18__Qv12247" : [ - "KC470209" - ], - "Human_immunodeficiency_virus_1__5113_87" : [ - "AY835758" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2211_2002" : [ - "FJ639778" - ], - "Groundnut_rosette_virus_Yellow_blotch_satellite_RNA" : [ - "Z29710" - ], - "Barley_mild_mosaic_virus" : [ - "AF536943", - "X84802", - "AF536942" - ], - "Watermelon_chlorotic_stunt_virus__JO3_69" : [ - "KM820223" - ], - "Hepatitis_B_virus__CX038C_e252" : [ - "KJ173289" - ], - "Blattabacterium__Mastotermes_darwiniensis__MADAR" : [ - "NC_016150", - "NC_016146" - ], - "Foot_and_mouth_disease_virus___type_A_IND258_99" : [ - "HM854023" - ], - "Human_immunodeficiency_virus_1__03ZAPS034MB1" : [ - "DQ369979" - ], - "Cryptobacterium_curtum_DSM_15641" : [ - "NC_013170" - ], - "Porcine_circovirus_2__HB1_6" : [ - "JQ181588" - ], - "Measles_virus_strain_MVi_Virginia_USA_15_09_MVi_Virginia_USA_15_09" : [ - "JN635404" - ], - "Mammalian_orthoreovirus_C_bovine_Indiana_MRV00304_2014" : [ - "KJ676381", - "KJ676384", - "KJ676387", - "KJ676380", - "KJ676386", - "KJ676379", - "KJ676388", - "KJ676383", - "KJ676382" - ], - "Monkeypox_virus_Liberia_1970_184" : [ - "DQ011156" - ], - "Hepatitis_B_virus__P60" : [ - "GQ477487" - ], - "Hepatitis_B_virus__HBV_RU316_1" : [ - "AB205128" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US82" : [ - "KJ019125" - ], - "Human_immunodeficiency_virus_1__93TH065" : [ - "AB220948", - "AF197339" - ], - "West_Nile_virus__WNV_1_US_BID_V6212_2008" : [ - "KJ501440" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Olot_91" : [ - "KF203132" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Shanxi_6" : [ - "KJ855518" - ], - "Enterovirus_D68__2013_0720_6" : [ - "KT280504" - ], - "Human_rhinovirus_A2" : [ - "X02316" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI19_12" : [ - "HE979759" - ], - "Barley_mild_mosaic_virus__ASL" : [ - "X75933" - ], - "Hepatitis_E_virus__E11_Ban10" : [ - "AB720034" - ], - "Ludwigia_leaf_distortion_betasatellite__India_Ludhiana_Okra_2014___India_Ludhiana_Okra_2014" : [ - "KJ614227" - ], - "Hepatitis_B_virus__clz1002" : [ - "KC774180" - ], - "Sapelovirus_A__KS055217" : [ - "KJ821021" - ], - "Salmonella_enterica_serovar_Typhi_CT18" : [ - "NC_003385", - "NC_003384", - "NC_003198" - ], - "Human_enterovirus_C104_Pavia264_16291" : [ - "JX982256" - ], - "Porcine_epidemic_diarrhea_virus_OH15962" : [ - "KJ584361" - ], - "Hepatitis_B_virus__22Y04HCC" : [ - "AB014381" - ], - "Human_papillomavirus_type_17__S410" : [ - "JN211195" - ], - "Pseudomonas_phage_F116" : [ - "NC_006552" - ], - "Hepatitis_B_virus__011_1" : [ - "GU434372" - ], - "Coxsackievirus_A8__CVA8_SZ40_CHN_2013" : [ - "KM609481" - ], - "Human_immunodeficiency_virus_1__CAP174_4w" : [ - "GQ999981" - ], - "Hepatitis_C_virus__HK43" : [ - "KJ470625" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_9_2011" : [ - "KJ686182" - ], - "Porcine_epidemic_diarrhea_virus_USA_Iowa70_2013" : [ - "KJ645666" - ], - "Sputnik_virophage_3" : [ - "NC_023847" - ], - "Human_immunodeficiency_virus_1__01BR125" : [ - "DQ358802" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Hawkeye4_Before" : [ - "EF532813" - ], - "Sinorhizobium_meliloti_SM11" : [ - "NC_017327", - "NC_017326", - "NC_017325" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2068_2008" : [ - "FJ639718" - ], - "Faba_bean_necrotic_stunt_virus__Peshtatuek_12b" : [ - "KC978989", - "KC978987", - "KC978988" - ], - "Dengue_virus_3__98TW414" : [ - "DQ675529" - ], - "Nocardia_brasiliensis_ATCC_700358" : [ - "NC_018681" - ], - "Dengue_virus_2__DENV_2_VN_BID_V731_2006" : [ - "EU482668" - ], - "Hepatitis_C_virus__VT21" : [ - "EF632071" - ], - "Mesta_yellow_vein_mosaic_virus__Barrackpore2_eastern_India__Barrackpore2_eastern_India" : [ - "EF432372" - ], - "Human_parechovirus_type_1_PicoBank_HPeV1_a_PicoBank_HPeV1_a" : [ - "FM242866" - ], - "Human_poliovirus_1_NIE1118332" : [ - "KJ170472" - ], - "Norovirus_Hu_GII_4_Rathmines_NSW287R_2007_AUS_Hu_GII_4_NSW287R_2007_AUS" : [ - "GQ845024" - ], - "Bean_pod_mottle_virus_IL_Carbondale_1__IL_Cb1" : [ - "AY744933", - "AY744931", - "AY744932" - ], - "Human_immunodeficiency_virus_1__BREPM1029" : [ - "EF637052" - ], - "West_Nile_virus_Italy_2013_Rovigo_32_1" : [ - "KF588365" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2262_2006" : [ - "FJ639822" - ], - "Monkeypox_virus_Zaire_96_I_16_Zaire_96_I_16" : [ - "NC_003310" - ], - "Watermelon_chlorotic_stunt_virus__JO1_117" : [ - "KM820188" - ], - "Silicibacter_phage_DSS3phi2_DSS3P2" : [ - "NC_012697" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_7_2010" : [ - "KF430202" - ], - "Hippea_maritima_DSM_10411" : [ - "NC_015318" - ], - "Pepper_leaf_curl_Lahore_Virus__Pakistan_Lahore1_2004___Pakistan_Lahore1_2004" : [ - "NC_016984" - ], - "Anaeromyxobacter_Fw109_5" : [ - "NC_009675" - ], - "Hardenbergia_mosaic_virus__MD4_C" : [ - "KJ152156" - ], - "Cauliflower_mosaic_virus__W260" : [ - "JF809616" - ], - "Measles_virus_strain_Moraten_Measles_virus_strain_Edmonston__Moraten_vaccine" : [ - "AF266287" - ], - "Hepatitis_B_virus__B34" : [ - "FJ904439" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Gaibangha_2013___Bangladesh_Gaibangha_2013" : [ - "AB971852", - "AB971853" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_BJPG" : [ - "FJ950746" - ], - "Rice_gall_dwarf_virus__Guangxi" : [ - "DQ333946" - ], - "Hepatitis_delta_virus_dTk8_dTk8" : [ - "AM779592" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_Asia1_3_asia1_3kimron_iso61" : [ - "AY593797" - ], - "Hepatitis_B_virus__HBV_11N" : [ - "EU564826" - ], - "Equine_arteritis_virus__S3583" : [ - "GQ903809" - ], - "Bovine_papular_stomatitis_virus_BV_TX09c15" : [ - "KM875470" - ], - "Thermocrinis_albus_DSM_14484" : [ - "NC_013894" - ], - "Feline_coronavirus_DF_2_R3i" : [ - "JQ408980" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG58" : [ - "FJ914398" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2189_2001" : [ - "FJ639759" - ], - "Hepatitis_B_virus__Leb37" : [ - "JN642167" - ], - "Lily_symptomless_virus__Sb" : [ - "AJ564638" - ], - "Eragrostis_curvula_streak_virus__ECSV_ZA_Gre1_g261_2007" : [ - "FJ665633" - ], - "Merkel_cell_polyomavirus__14a" : [ - "HM011544" - ], - "Rice_stripe_virus__SuZ10" : [ - "JQ927425", - "JQ927437", - "JQ927419", - "JQ927431" - ], - "Tobacco_curly_shoot_alphasatellite__Y283" : [ - "FN678903" - ], - "Papaya_lethal_yellowing_virus__26" : [ - "NC_018449" - ], - "Dickeya_dadantii_Ech586" : [ - "NC_013592" - ], - "South_African_cassava_mosaic_virus__MG_MG328A4_10" : [ - "KJ887694" - ], - "Norwalk_like_virus_WUG1" : [ - "AB081723" - ], - "Human_herpesvirus_5_BE_18_2010" : [ - "KP745647" - ], - "Watermelon_chlorotic_stunt_virus__Leith" : [ - "KM066100", - "KJ939447", - "KJ939448" - ], - "Horsepox_virus__MNR_76" : [ - "DQ792504" - ], - "Peste_des_petits_ruminants_virus__CH_HNZK_2014" : [ - "KM089831" - ], - "Hepatitis_B_virus__919035" : [ - "JN040786" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2359_2007" : [ - "FJ744706" - ], - "Mycobacterium_phage_Che12" : [ - "NC_008203" - ], - "African_cassava_mosaic_virus__CF_CF4BN_07" : [ - "KJ887582" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_P3pp5" : [ - "FJ882942" - ], - "Theiler_s_encephalomyelitis_virus__Yale" : [ - "EU723238" - ], - "Bluetongue_virus_10__2627" : [ - "JX272528" - ], - "Hepatitis_C_virus_isolate_M2123__HCV_M2123" : [ - "AB558135" - ], - "Lactobacillus_phage_Ld17" : [ - "NC_025420" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140517" : [ - "KR653263" - ], - "Maize_streak_virus__MSV_A_CM_Baf2_Cam17_2008" : [ - "HQ693320" - ], - "Porcine_circovirus_2__126_07_5" : [ - "HQ591368" - ], - "Porcine_circovirus_2_ZC" : [ - "AY682997" - ], - "Hepatitis_B_virus__WJT5" : [ - "DQ377164" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V333_2002" : [ - "EU155297" - ], - "Goose_circovirus__TW2_2001" : [ - "AF536932" - ], - "Human_adenovirus_8__Trim" : [ - "AB448767" - ], - "Human_poliovirus_2_Lansing" : [ - "POL2LAN" - ], - "Human_immunodeficiency_virus_1__00BW2276_7" : [ - "AF443107" - ], - "Blueberry_latent_virus__Bluecrop_1" : [ - "EF442779" - ], - "Hepatitis_B_virus__10B3" : [ - "JF899336" - ], - "Simian_immunodeficiency_virus_SIVmac239_81035" : [ - "AY599200" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2232_2004" : [ - "FJ639799" - ], - "Cucumber_mosaic_virus_satellite_RNA_Ix" : [ - "SCBSATRNA" - ], - "Bluetongue_virus_24__BT24_84" : [ - "JX272378" - ], - "Dugbe_virus__ArD_44313" : [ - "NC_004157" - ], - "Common_marmoset_foamy_virus__SFVmar" : [ - "GU356395" - ], - "Hepatitis_B_virus__H0688_99" : [ - "FJ882616" - ], - "Porcine_circovirus_2_TJ1412" : [ - "KP670418" - ], - "Human_papillomavirus_type_6__64" : [ - "HG793872" - ], - "Hepatitis_B_virus__KOR16CHB" : [ - "GQ475320" - ], - "Enterovirus_G__PEV_B_KOR" : [ - "JQ818253" - ], - "Helicobacter_pylori_Aklavik117" : [ - "NC_019561", - "NC_019560", - "NC_019562" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3710_2007" : [ - "GQ868514" - ], - "Narcissus_degeneration_virus__Marijiniup_2" : [ - "JQ395041" - ], - "Human_immunodeficiency_virus_1__hypermutated_VAU_group_O" : [ - "AF407419" - ], - "Avian_leukosis_virus__CAUGX01" : [ - "JF931999" - ], - "West_Nile_virus__WNV_1_US_BID_V6423_2002" : [ - "KJ501290" - ], - "Ralstonia_solanacearum_FQY_4_f" : [ - "NC_021745", - "NC_020799" - ], - "Sulfolobus_monocaudavirus_SMV1" : [ - "NC_023585" - ], - "Pitaya_virus_X__P37" : [ - "NC_024458" - ], - "Enterobacteria_phage_RB43_RB43_GVA_RB43_GVA_orf057__gfp" : [ - "HE981739" - ], - "Porcine_circovirus_2__Aust504" : [ - "EU684164" - ], - "Cucumber_mosaic_virus_CTL" : [ - "EF213025", - "EF213023", - "EF213024" - ], - "Kappapapillomavirus_2_Hershey" : [ - "JF303889" - ], - "Rotavirus_A_turkey_tc_GER_03V0002E10_2003_G22P_35" : [ - "JX204825", - "JX204827", - "JX204822", - "JX204829", - "JX204823", - "JX204826", - "JX204824" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_89_2012" : [ - "KJ686280" - ], - "Porcine_circovirus_2__Han6_13" : [ - "JQ181599" - ], - "Pseudomonas_putida_H8234" : [ - "NC_021491" - ], - "West_Nile_virus__WNV_1_US_BID_V4908_2001" : [ - "HQ671715" - ], - "Human_immunodeficiency_virus_1__VI354" : [ - "AF076474" - ], - "Hepatitis_B_virus__FF2" : [ - "JX079936" - ], - "Pseudomonas_aeruginosa_PA1" : [ - "NC_022808" - ], - "Human_adenovirus_21_NHRC_71139" : [ - "KJ364583" - ], - "Lettuce_big_vein_associated_virus" : [ - "NC_011558", - "NC_011568" - ], - "Hepatitis_delta_virus__VnzD8375" : [ - "AB037947" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1902_2008" : [ - "FJ410239" - ], - "Grapevine_chrome_mosaic_virus" : [ - "NC_003621", - "NC_003622" - ], - "Human_papillomavirus_type_31__RW687" : [ - "HQ537678" - ], - "Squash_leaf_curl_virus__JO1_124" : [ - "KM595164" - ], - "Tomato_severe_rugose_virus__BR_Vic03_09" : [ - "JX865617" - ], - "Hepatitis_B_virus__HB11_1026" : [ - "AB971714" - ], - "Norovirus_Hu_GII_4_Toyama3_2007_JP_Hu_GII_4_Toyama3_2007_JP" : [ - "AB541357" - ], - "Human_coronavirus_HKU1_N24" : [ - "DQ415901" - ], - "Tomato_leaf_curl_New_Delhi_virus__India_Junagadh_2012___Junagadh" : [ - "KF515617", - "KF515623" - ], - "Leptospira_interrogans_serovar_Lai_56601" : [ - "NC_004342", - "NC_004343" - ], - "Human_papillomavirus_type_68__Qv24962" : [ - "KC470272" - ], - "Synechococcus_phage_ACG_2014a__Syn7803US60" : [ - "KJ019114" - ], - "Desulfovibrio_vulgaris_Hildenborough" : [ - "NC_002937", - "NC_005863" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2877_2006" : [ - "FJ898408" - ], - "Hepatitis_B_virus__A5_24165" : [ - "FJ692556" - ], - "Porcine_epidemic_diarrhea_virus_PC177" : [ - "KR078300" - ], - "Halyomorpha_halys_symbiont" : [ - "NC_022547" - ], - "Bluetongue_virus_1__IND1992_02" : [ - "AJ586660" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_17943_B_78078_1989" : [ - "KJ469638" - ], - "West_Nile_virus__WNV_1_US_BID_V6190_2001" : [ - "KJ501246" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2155_2001" : [ - "FJ639830" - ], - "Maize_streak_virus__MSV_B1_Za_Smi_g137_2006" : [ - "EU628603" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_1999_02_DRC" : [ - "JX458851" - ], - "JC_polyomavirus__SO_6" : [ - "AB127017" - ], - "Cherry_necrotic_rusty_mottle_virus" : [ - "NC_002468" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH37_2011" : [ - "KM188451" - ], - "BK_polyomavirus__A_62H" : [ - "AB369092" - ], - "Enterovirus_A71_HeN09_17_HeN_CHN_2009" : [ - "JX678881" - ], - "Dengue_virus_3__HN_2013_20" : [ - "KJ622192" - ], - "Human_respiratory_syncytial_virus_09_053165" : [ - "JX576739" - ], - "Porcine_circovirus_2_BJ0504" : [ - "EF524530" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1_2005" : [ - "EU155247" - ], - "Staphylococcus_aureus_TCH60" : [ - "NC_017342", - "NC_017345" - ], - "Bhendi_yellow_vein_India_virus__India_Srinivaspur_OYSK2_2006___OYSOK2" : [ - "GU112013" - ], - "Watermelon_chlorotic_stunt_virus__D" : [ - "KJ854914" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7568_2008" : [ - "KJ189315" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_196_2011" : [ - "KJ686154" - ], - "Bluetongue_virus_243277" : [ - "AY775163" - ], - "Mumps_virus_SP_A" : [ - "FJ556896" - ], - "Human_rotavirus_A_285_stool" : [ - "AJ236776" - ], - "Murine_norovirus_KHU_1" : [ - "JX048594" - ], - "Hepatitis_B_virus__DL706" : [ - "FR714490" - ], - "Avian_leukosis_virus__HAY013" : [ - "HM235665" - ], - "Porcine_circovirus_2__GL08" : [ - "FJ644929" - ], - "JC_polyomavirus__JCV135_11" : [ - "JF424843" - ], - "Human_papillomavirus_type_6__88" : [ - "HG793896" - ], - "African_cassava_mosaic_virus__MG_MG688B1_11" : [ - "KJ887744" - ], - "Myxoma_virus_Aust_Dubbo_2_51_1_Glenfield" : [ - "JX565567" - ], - "Alfalfa_mosaic_virus_S" : [ - "X00819" - ], - "Sweet_potato_leaf_curl_virus__F_p1" : [ - "FJ515896" - ], - "Tomato_yellow_leaf_curl_virus_Mild__Japan_Atumi__Atu" : [ - "AB116633" - ], - "Hepatitis_B_virus__10B19" : [ - "AB675681" - ], - "Human_immunodeficiency_virus_1__07MYKLD49" : [ - "EU031915" - ], - "Human_immunodeficiency_virus_1__93TH057" : [ - "AF197338", - "AB253425", - "AB253424" - ], - "Acidianus_filamentous_virus_2" : [ - "NC_009884" - ], - "Human_immunodeficiency_virus_1__07BR_FPS625" : [ - "HM026456" - ], - "Hepatitis_B_virus__3274v1" : [ - "KF922429" - ], - "West_Nile_virus__WNV_1_US_BID_V6398_2002" : [ - "KJ501449" - ], - "Hepatitis_B_virus__GZ28_1" : [ - "EF688062" - ], - "Dengue_virus_1__MKS_0206" : [ - "KC762623" - ], - "Azospirillum_phage_Cd" : [ - "NC_010355" - ], - "Carnation_Italian_ringspot_virus" : [ - "NC_003500" - ], - "Alternanthera_mosaic_virus__SP_4_7" : [ - "GQ179647" - ], - "Massilia_virus_W" : [ - "EU725771", - "EU725772", - "EU725773" - ], - "Canine_distemper_virus_007Lm_H" : [ - "AB490679" - ], - "Human_immunodeficiency_virus_1__X421" : [ - "AF423757" - ], - "_Nostoc_azollae__0708" : [ - "NC_014250", - "NC_014248", - "NC_014249" - ], - "Dweet_mottle_virus__DMV_932" : [ - "FJ009367" - ], - "Penaeus_vannamei_nodavirus" : [ - "NC_014977" - ], - "SARS_coronavirus_HZS2_C__HZS2_C" : [ - "AY394992" - ], - "Staphylococcus_phage_JD007" : [ - "NC_019726" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC34AA1_2009" : [ - "JF909217" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_21_89" : [ - "DQ989316" - ], - "Listeria_seeligeri_serovar_1_2b_SLCC3954" : [ - "NC_013891" - ], - "Torque_teno_sus_virus_1a__PTTV1a_VA" : [ - "GU456383" - ], - "Hepatitis_B_virus__DEN5744" : [ - "KF779213" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3699_2007" : [ - "GQ868510" - ], - "Dengue_virus_2__DENV_2_MX_BID_V7537_2010" : [ - "KJ189309" - ], - "Avian_leukosis_virus_TW_3577" : [ - "HM582657" - ], - "Dengue_virus_2__DC663Y12" : [ - "KM279550" - ], - "Viral_hemorrhagic_septicemia_virus__JF_09" : [ - "KM926343" - ], - "Thermus_phage_TMA_TMA" : [ - "NC_015937" - ], - "Peace_lily_mosaic_virus__Haiphong" : [ - "DQ851494" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3742_2007" : [ - "GU131981" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_213_2011" : [ - "KJ686141" - ], - "Hepatitis_B_virus__clz2124" : [ - "KC774214" - ], - "Norovirus_Hu_GII_10411_2010_VNM_Hu_GII_10411_2010_VNM" : [ - "KC409243" - ], - "Salmonella_phage_SETP3" : [ - "NC_009232" - ], - "Dengue_virus_1__DENV_1_US_BID_V2143_1987" : [ - "FJ410190" - ], - "Staphylococcus_phage_Pvl108_MR108" : [ - "NC_008689" - ], - "Western_equine_encephalitis_virus_BFS932" : [ - "KJ554966" - ], - "Hepatitis_B_virus_468_9" : [ - "KR013787" - ], - "Seal_anellovirus_7__SeAv7_PV13431" : [ - "KM262781" - ], - "Hepatitis_B_virus__G216" : [ - "JQ040162" - ], - "Hepatitis_B_virus__WHBRH3" : [ - "JN257213" - ], - "Dengue_virus_2__DENV_2_NI_BID_V608_2006" : [ - "EU596483" - ], - "Mulberry_vein_banding_virus__NN_16" : [ - "KM819708" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPP00505_2011_A" : [ - "KJ627398" - ], - "Salivirus_FHB__SaliV_FHB" : [ - "NC_025114" - ], - "Hepatitis_B_virus__17127" : [ - "AY217366" - ], - "Gemmatimonas_aurantiaca_T_27" : [ - "NC_012489" - ], - "Cryphonectria_hypovirus_3__CHV3_GH2__WY" : [ - "NC_000960" - ], - "Canis_familiaris_papillomavirus_13__Zurich_2011" : [ - "NC_023852" - ], - "SARS_coronavirus_Taiwan_TC1__TC1" : [ - "AY338174" - ], - "Ageratum_yellow_vein_China_betasatellite__JX_Gz01" : [ - "KP685600" - ], - "Hepatitis_B_virus__J131" : [ - "GQ377582" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_31_2002_G3P_8__31" : [ - "KF371713", - "KF371706", - "KF371708", - "KF371704", - "KF371707", - "KF371712", - "KF371705", - "KF371710", - "KF371709" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_25_2011" : [ - "KJ686185" - ], - "Cowpea_mild_mottle_virus__CPMMV_BR_GO_01_1" : [ - "KC884248" - ], - "Beak_and_feather_disease_virus__NCL3" : [ - "JX049201" - ], - "Hepatitis_C_virus_subtype_1b_MD19" : [ - "AF207760" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pakistan_Multan_D150_840_08" : [ - "FJ861369" - ], - "Lactobacillus_brevis_KB290" : [ - "NC_020822", - "NC_020825", - "NC_020820", - "NC_020824", - "NC_020828", - "NC_020827", - "NC_020826", - "NC_020819", - "NC_020821", - "NC_020823" - ], - "Hepatitis_B_virus__8510_91" : [ - "DQ060822" - ], - "Hepatitis_B_virus_China_Xinjiang_HB79_2009_Xinjiang_HB79" : [ - "HQ833469" - ], - "Human_poliovirus_2__CHN15261_Sichuan_CHN_2011" : [ - "KJ419273" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4040_2008" : [ - "GU131797" - ], - "Candidatus_Tremblaya_phenacola_PAVE" : [ - "NC_021555", - "NC_021553" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V50_2002" : [ - "EU256010" - ], - "Bluetongue_virus_9__RSAvvv2_09" : [ - "AJ586683" - ], - "Homalodisca_vitripennis_reovirus__Riverside8" : [ - "GU437847" - ], - "Rice_black_streaked_dwarf_virus__gochang_38" : [ - "JX994209", - "JX994207" - ], - "Norovirus_Hu_NLV_Dresden174_pUS_NorII_1997_GE__Hu_NLV_Dresden174_pUS_NorII_1997_GE" : [ - "AY741811" - ], - "Hepatitis_B_virus__W51" : [ - "EU787445" - ], - "Hepatitis_E_virus__E13_Ban10" : [ - "AB720035" - ], - "Hepatitis_B_virus__SHB2S7" : [ - "KJ598648" - ], - "Watermelon_chlorotic_stunt_virus__JO3_611" : [ - "KM820224" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V357_2004" : [ - "EU155310" - ], - "Hepatitis_B_virus__dxn1014" : [ - "KC774469" - ], - "Porcine_circovirus_2__22664_35" : [ - "JX535297" - ], - "Hepatitis_B_virus_29_OYE_10" : [ - "FJ349296" - ], - "Garlic_latent_virus_Wonju" : [ - "Z68502" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1194_2007" : [ - "FJ373300" - ], - "East_African_cassava_mosaic_Kenya_virus__Madagascar_Diana_635A6_2011" : [ - "HE984147" - ], - "Dengue_virus_2__DENV_2_US_BID_V1038_1998" : [ - "EU482550" - ], - "Hepatitis_B_virus__MK070_EP_CHB" : [ - "KM524344" - ], - "Hepatitis_B_virus__BV_66" : [ - "GU563546" - ], - "Bean_golden_mosaic_virus__BR_Pai12_11" : [ - "KJ939748" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_11FS12_GD" : [ - "JX215554" - ], - "Candidatus_Nasuia_deltocephalinicola_NAS_ALF" : [ - "NC_021919" - ], - "Hepatitis_B_virus__A1_50089" : [ - "FJ692583" - ], - "Hepatitis_C_virus_subtype_1b__No__6" : [ - "AB154181" - ], - "Tomato_yellow_leaf_curl_virus__T_38" : [ - "HE819245" - ], - "Changuinola_virus__CGLV_BE_AR_41067" : [ - "KF680184", - "KF680187", - "KF680178", - "KF680181", - "KF680185", - "KF680183", - "KF680180", - "KF680186" - ], - "Hepatitis_B_virus__No2" : [ - "AB697488" - ], - "Hepatitis_B_virus__JPN_CH6" : [ - "AB453984" - ], - "Barley_yellow_dwarf_virus_MAV" : [ - "NC_003680" - ], - "Tobacco_mosaic_virus__Zigui" : [ - "HE818425" - ], - "Human_papillomavirus_type_33__Qv23819" : [ - "HQ537705" - ], - "Human_astrovirus_5__DL030" : [ - "JQ403108" - ], - "Merkel_cell_polyomavirus__FraMerk2" : [ - "JN383838" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_9964_2001" : [ - "DQ404165" - ], - "Human_poliovirus_2_NIE0611447_JIS06_04" : [ - "JX274993" - ], - "Tomato_yellow_spot_virus_TO2" : [ - "KJ742420" - ], - "Hepatitis_B_virus__A66a" : [ - "FJ904416" - ], - "SARS_coronavirus_GZ_B__GZ_B" : [ - "AY394978" - ], - "Cotton_leaf_curl_Kokhran_virus__72b__Pakistan_clc72b" : [ - "AJ002448" - ], - "West_Nile_virus__WNV_1_US_BID_V4610_2003" : [ - "HM488229" - ], - "Cotton_leaf_curl_Multan_virus__FC1" : [ - "HQ455347" - ], - "Hepatitis_B_virus__MOD_4610" : [ - "GQ183471" - ], - "Tomato_common_mosaic_virus__BR_Coi12_07" : [ - "KC706571" - ], - "African_horse_sickness_virus_1" : [ - "AM883165", - "AM883170", - "AM883169", - "AM883172", - "AM883168", - "AM883164", - "AM883171", - "AM883173", - "AM883167", - "AM883166" - ], - "Maize_streak_virus__MSV_A_GH_gh135_Aba_2010" : [ - "KJ699322" - ], - "JC_polyomavirus__325A" : [ - "AY378084" - ], - "Norovirus_Hu_GII_4_CGMH01_2006_TW" : [ - "JN400599" - ], - "Hepatitis_B_virus_1303_7" : [ - "KR014034" - ], - "Squash_leaf_curl_virus__JO1_161" : [ - "KM595158" - ], - "Hepatitis_B_virus__cxa2016" : [ - "KC774307" - ], - "Enterovirus_D68__2014_R970" : [ - "KT280499" - ], - "Infectious_bursal_disease_virus_OKYM" : [ - "D49706" - ], - "Euphorbia_mosaic_virus_Peru" : [ - "AM886131" - ], - "Peaton_virus__CSIRO_110" : [ - "HE795095", - "HE795094", - "HE795093" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1556_2007" : [ - "EU726780" - ], - "Zaire_ebolavirus__034_KS" : [ - "HQ613402" - ], - "Maize_streak_virus__MSV_A_NG_Eji1_N35b_2007" : [ - "HQ693369" - ], - "Hepatitis_B_virus__LAMr_Pt__30" : [ - "AB367421" - ], - "Human_immunodeficiency_virus_1__CH432_w4" : [ - "KC156218" - ], - "Yam_mild_mosaic_virus__YB3_NC_1" : [ - "KJ125476" - ], - "Bean_yellow_mosaic_virus__ES55C" : [ - "HG970858" - ], - "Classical_swine_fever_virus_Alfort_A19" : [ - "PTU90951" - ], - "Tomato_leaf_curl_Joydebpur_virus__Mohali" : [ - "KJ028211" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3356_1992" : [ - "GQ868590" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2423_2004" : [ - "JN819425" - ], - "Middle_East_respiratory_syndrome_coronavirus__Riyadh_3_2013" : [ - "KF600613" - ], - "Tembusu_virus__SDMS" : [ - "KC333867" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLU5848_2007" : [ - "KJ627305" - ], - "Newcastle_disease_virus__duck_China_Guangxi17_2009" : [ - "JX193078" - ], - "Bovine_viral_diarrhea_virus_1" : [ - "AF268278" - ], - "Cotton_leaf_curl_Multan_betasatellite__Bihar" : [ - "HM461865", - "HM461864" - ], - "Norovirus_Hu_GII_4_Aomori1_2007_JP_Hu_GII_4_Aomori1_2007_JP" : [ - "AB541218" - ], - "West_Nile_virus__WNV_1_US_BID_V6425_2001" : [ - "KJ501292" - ], - "Rickettsia_rickettsii_Arizona" : [ - "NC_016909" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1543_2007" : [ - "EU677168" - ], - "Hepatitis_B_virus__V119" : [ - "HM363590" - ], - "Porcine_circovirus_2__PCV_Y13" : [ - "KC515008" - ], - "West_Nile_virus__WNV_1_US_BID_V4689_2001" : [ - "HM488246" - ], - "Human_immunodeficiency_virus_1__04ZAPS195B1" : [ - "DQ164118" - ], - "Salmonella_phage_FelixO1__Felix_O1_VT1" : [ - "NC_005282" - ], - "Human_immunodeficiency_virus_1__14295_1" : [ - "DQ853454" - ], - "Human_poliovirus_3_NIE1018464" : [ - "KJ170608" - ], - "Hepatitis_B_virus_BG21" : [ - "AY781177" - ], - "Hepatitis_B_virus__PNF4416" : [ - "KF779324" - ], - "Deltacoronavirus_PDCoV_USA_Illinois133_2014_PDCoV_USA_Illinois133_2014" : [ - "KJ601777" - ], - "Japanese_encephalitis_virus__SH03105" : [ - "JN381846" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1671_2007" : [ - "FJ410289" - ], - "African_cassava_mosaic_Burkina_Faso_virus__BF_Oua_BF128C_08" : [ - "HE616781" - ], - "Foot_and_mouth_disease_virus___type_O__RUS_Aug_2010" : [ - "KF112884" - ], - "Hepatitis_B_virus__H149" : [ - "FJ349221" - ], - "Apple_chlorotic_leaf_spot_virus__Ta_Tao_5" : [ - "EU223295" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0079" : [ - "KP759748" - ], - "Hepatitis_B_virus__WY_HZ_13" : [ - "JX429898" - ], - "Western_equine_encephalitis_virus__BFS_2005" : [ - "GQ287644" - ], - "Porcine_circovirus_2_10BJ_2" : [ - "HQ395060" - ], - "Rabies_virus_B2c" : [ - "HQ891318" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3465_2006" : [ - "GU131860" - ], - "Borrelia_afzelii_HLJ01" : [ - "NC_018887" - ], - "Human_immunodeficiency_virus_1__02BR005" : [ - "DQ358806" - ], - "Pseudomonas_phage_phi15" : [ - "NC_015208" - ], - "Broad_bean_wilt_virus_2__RP1" : [ - "JX183221", - "JX183222" - ], - "Beak_and_feather_disease_virus__YCP19" : [ - "JQ782206" - ], - "Human_papillomavirus_type_67__Qv25560" : [ - "HQ537778" - ], - "Enterobacteria_phage_RB43" : [ - "NC_007023" - ], - "Middle_East_respiratory_syndrome_coronavirus__England_2_2013" : [ - "KM015348" - ], - "Broad_bean_wilt_virus_2__GP4" : [ - "KC625496", - "KC625510" - ], - "Deltacoronavirus_PDCoV_USA_Ohio137_2014_PDCoV_USA_Ohio137_2014" : [ - "KJ601780" - ], - "Infectious_bronchitis_virus__DY07" : [ - "HM245923" - ], - "Arcanobacterium_haemolyticum_DSM_20595" : [ - "NC_014218" - ], - "Human_mastadenovirus_D_human_DEU_IAI_1_2005_53_P37H22F8" : [ - "FJ169625" - ], - "Echovirus_E11_D207" : [ - "EF634316" - ], - "Human_metapneumovirus_HMPV_AUS_136342137_2003_A" : [ - "KC562224" - ], - "Macroptilium_yellow_spot_virus__BR_Sti28_11" : [ - "KJ939885" - ], - "Hepatitis_B_virus__BA54" : [ - "DQ776247" - ], - "Dragonfly_larvae_associated_circular_virus_2__DflaCV_2_NZ_PG8_LS" : [ - "NC_023428" - ], - "Hepatitis_B_virus__23719" : [ - "AY934769" - ], - "Newcastle_disease_virus_ND_03_018" : [ - "GQ338309" - ], - "Blainvillea_yellow_spot_virus__BR_Vic20_10" : [ - "KC706522" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_19_2013" : [ - "KF600632" - ], - "Hepatitis_B_virus__I_T70" : [ - "GU456642" - ], - "JC_polyomavirus__ET_2" : [ - "AB126984" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5455_2009" : [ - "JF937641" - ], - "Foot_and_mouth_disease_virus___type_A__BAN_GA_Sa_197_2013" : [ - "KJ754939" - ], - "Treponema_brennaborense_DSM_12168" : [ - "NC_015500" - ], - "Dengue_virus_1__GZ10" : [ - "KJ438293" - ], - "Hepatitis_B_virus__H8" : [ - "AY862869" - ], - "Venezuelan_equine_encephalitis_virus_66637" : [ - "AF004458" - ], - "Human_immunodeficiency_virus_1__95SN7808" : [ - "AY093604" - ], - "Dengue_virus_2__DC357Y11" : [ - "KM279518" - ], - "Swine_hepatitis_E_virus__swJR_P5" : [ - "AB481229" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3857" : [ - "KM233115" - ], - "East_African_cassava_mosaic_Zanzibar_virus__SB1" : [ - "HE806427" - ], - "Porcine_circovirus_2__SH1103" : [ - "KF850465" - ], - "Nanoarchaeum_equitans_Kin4_M" : [ - "NC_005213" - ], - "Hepatitis_B_virus__14" : [ - "JX869999" - ], - "Tomato_leaf_curl_Madagascar_virus_Androy__Madagascar_Toliary_2001___Toliary" : [ - "AJ865339" - ], - "Hepatitis_delta_virus_dFr2236_dFr2236" : [ - "AM902169" - ], - "Dengue_virus_2_Cuba205_97" : [ - "AY702039" - ], - "Dengue_virus_1__DENV_1_VN_BID_V768_2003" : [ - "EU482790" - ], - "Cowpox_virus_Austria_1999" : [ - "HQ407377" - ], - "Hepatitis_B_virus_1149_11" : [ - "KR013828" - ], - "West_Nile_virus__WNV_1_US_BID_V6703_2006" : [ - "KJ501430" - ], - "Pseudomonas_phage_OBP" : [ - "NC_016571" - ], - "Hepatitis_B_virus__SHB813" : [ - "KJ598773" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_193_2011" : [ - "KJ686153" - ], - "Cotton_leaf_curl_Multan_virus__GX8" : [ - "HQ455355" - ], - "Human_mastadenovirus_B_Guangzhou02" : [ - "DQ105654" - ], - "Beak_and_feather_disease_virus__2IT09" : [ - "KF723386" - ], - "Madariaga_virus_MADV_Equus_ferus_caballus_VEN_EL_DELERIO_1976" : [ - "KJ469596" - ], - "Bacillus_amyloliquefaciens_plantarum_UCMB5113" : [ - "NC_022081" - ], - "JC_polyomavirus__JCV183FLC_11" : [ - "JF425498" - ], - "Mayaro_virus_BNI_1" : [ - "KJ013266" - ], - "Porcine_circovirus_2__IAF2897" : [ - "AF408635" - ], - "Merkel_cell_polyomavirus__26b" : [ - "HM011553" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1934_2008" : [ - "JF937650" - ], - "Watermelon_chlorotic_stunt_virus__JO3_615" : [ - "KM820226" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_Cp_Ako" : [ - "JF831147" - ], - "Hepatitis_B_virus__ES72_17" : [ - "JF828938" - ], - "Pepper_huasteco_yellow_vein_virus__Sinaloa" : [ - "AY044162", - "AY044163" - ], - "Canine_parvovirus_2c__UY326" : [ - "KM457127" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V435_2005" : [ - "EU482843" - ], - "African_cassava_mosaic_virus__MG_MG62A1_06" : [ - "KJ887881" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1834_2007" : [ - "FJ432748" - ], - "Gremmeniella_abietina_RNA_virus_L1" : [ - "NC_003876" - ], - "West_Nile_virus__WNV_1_US_BID_V4574_2003" : [ - "HM488216" - ], - "Streptococcus_pyogenes_Manfredo" : [ - "NC_009332" - ], - "West_Nile_virus__WNV_1_US_BID_V4337_2002" : [ - "HM488178" - ], - "Porcine_circovirus_2_FX1102" : [ - "JX406426" - ], - "Enterobacteria_phage_N15" : [ - "NC_001901" - ], - "Maize_streak_virus__MSV_F_Bi_Rob3_1990" : [ - "EU628627" - ], - "Canine_coronavirus_1_71" : [ - "JQ404409" - ], - "Human_papillomavirus_type_53__Qv22707" : [ - "EF546479" - ], - "Avian_leukosis_virus__JL093_1" : [ - "JN624878" - ], - "Avian_leukosis_virus__SD110503" : [ - "KF562374" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V371_2006" : [ - "EU155258" - ], - "Rift_Valley_fever_virus_200803165" : [ - "JF311380", - "JF311371", - "JF311389" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD166_2013" : [ - "KM229829" - ], - "Hepatitis_B_virus__D3_1" : [ - "GU815670" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD271_2013" : [ - "KM229894" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2802_2007" : [ - "GQ199819" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V11_2004" : [ - "EU260396" - ], - "Bean_golden_mosaic_virus__BR_Flt2_11" : [ - "KJ939767" - ], - "Human_herpesvirus_5_HAN28" : [ - "JX512207" - ], - "Hepatitis_B_virus__D90" : [ - "EU939647" - ], - "Hepatitis_B_virus__FMU001" : [ - "AY163870" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3765_2" : [ - "KM233064" - ], - "Sapovirus_Ehime1107_2002_JP__Ehime1107" : [ - "DQ058829" - ], - "Stenotrophomonas_phage_IME15__IME15" : [ - "NC_019416" - ], - "Helicobacter_pylori_2018" : [ - "NC_017381" - ], - "Feline_coronavirus_RM_RM" : [ - "FJ938051" - ], - "Ustilago_maydis_virus_H1_P1H1" : [ - "NC_003823" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US89" : [ - "KJ019129" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_129_2012" : [ - "KJ686296" - ], - "Bean_common_mosaic_virus__CD009" : [ - "KJ807799" - ], - "Western_equine_encephalitis_virus_IMPR441" : [ - "KJ554978" - ], - "Tomato_yellow_leaf_curl_China_virus__Y43" : [ - "AJ781302" - ], - "Enterobacteria_phage_phiX174__DEL1" : [ - "EF380031" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG179A1_09" : [ - "KJ887945" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Punc_alpha_3" : [ - "EU384646" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2772_2007" : [ - "FJ882547" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_LW2_6" : [ - "JQ663563" - ], - "South_African_cassava_mosaic_virus__MG_MG32A1_06" : [ - "KJ887641" - ], - "Porcine_deltacoronavirus_USA_IL_2014_026PDV_P11" : [ - "KP981395" - ], - "Human_papillomavirus_type_53__Qv32293" : [ - "EF546469" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo211_08" : [ - "KC706561" - ], - "Hepatitis_B_virus__cxa2020" : [ - "KC774309" - ], - "Norovirus_Hu_GII_4_Chiba4_2008_JP_Hu_GII_4_Chiba4_2008_JP" : [ - "AB541233" - ], - "Human_immunodeficiency_virus_1__04ZAPS204B1" : [ - "DQ093606" - ], - "Porcine_circovirus_2_PM163" : [ - "KJ094599" - ], - "Macroptilium_yellow_spot_virus__BR_Sti34_11" : [ - "KJ939891" - ], - "Lettuce_mosaic_virus__CL394" : [ - "KJ161179" - ], - "Rabies_virus_SAD_B19__Fuchsoral" : [ - "EF206709" - ], - "Dengue_virus_3__DENV_3_IND_59826_2005" : [ - "JQ922557" - ], - "Duck_hepatitis_B_virus__102" : [ - "AY250902" - ], - "Bovine_parainfluenza_virus_3__3_Egypt_2014" : [ - "KP757872" - ], - "Bluetongue_virus_9__Afandou_1998" : [ - "DQ191283" - ], - "Desulfohalobium_retbaense_DSM_5692" : [ - "NC_013224", - "NC_013223" - ], - "Cyanophage_S_TIM5" : [ - "NC_019516" - ], - "Foot_and_mouth_disease_virus___type_O__BUL_20_2011" : [ - "JX040487" - ], - "Porcine_circovirus_2__10489" : [ - "AF264040" - ], - "WU_Polyomavirus_FZTF" : [ - "FJ890982" - ], - "Thetapapillomavirus_1" : [ - "NC_003973", - "AF420235" - ], - "Cotton_leaf_curl_Gezira_virus__Okra_Egypt___OkLCV_EG_okra" : [ - "AY036010" - ], - "Infectious_bursal_disease_virus_strain_CT" : [ - "AJ310186", - "AJ310185" - ], - "Ustilaginoidea_virens_RNA_virus_3" : [ - "NC_023547" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4282_2007" : [ - "GU131934" - ], - "JC_polyomavirus__JCV135_25" : [ - "JF424855" - ], - "Tomato_yellow_leaf_curl_China_betasatellite__JS1_2" : [ - "KF906543" - ], - "Cowpox_virus_HumKre08_1" : [ - "KC813512" - ], - "Dengue_virus_3__Cairns_98" : [ - "JN406514" - ], - "Cauliflower_mosaic_virus__IRNWKBi7" : [ - "KF357588" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_3474_2008" : [ - "KJ469618" - ], - "Hepatitis_B_virus__DEN6067" : [ - "KF779228" - ], - "Hepatitis_C_virus_subtype_1b_MD4_2" : [ - "AF165052" - ], - "Rabies_virus_SAD_Bern__Sanafox" : [ - "EF206720" - ], - "Usutu_virus_V245" : [ - "KJ438747" - ], - "Porcine_circovirus_2__SZ1" : [ - "KC514977" - ], - "Chikungunya_virus_NC_2011_568" : [ - "HE806461" - ], - "Porcine_epidemic_diarrhea_virus_USA_Texas128_2013" : [ - "KJ645697" - ], - "Human_poliovirus_3_NIE1118475" : [ - "KJ170587" - ], - "Rabies_virus__RV2985" : [ - "KP723638" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_95P_073_01_1995" : [ - "KP258744" - ], - "Hepatitis_B_virus__clz2188" : [ - "KC774225" - ], - "Hepatitis_B_virus_ayw4_Kou" : [ - "X75664" - ], - "Chloris_striate_mosaic_virus__AU_QG29_2011" : [ - "JQ948083" - ], - "Mycoplasma_suis_Illinois" : [ - "NC_015155" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V268_2003" : [ - "EU255959" - ], - "Human_poliovirus_2_NIE1018422" : [ - "KJ170540" - ], - "Aconitum_latent_virus__D" : [ - "NC_002795" - ], - "West_Nile_virus__WNV_1_US_BID_V4626_2008" : [ - "JN183885" - ], - "Maize_streak_virus__MSV_A4_Za_Cpt_M50_1986" : [ - "EU628571" - ], - "Western_equine_encephalitis_virus_EP_6" : [ - "KJ554967" - ], - "Potato_virus_X__PVX2_7b" : [ - "HQ450388" - ], - "Human_adenovirus_44" : [ - "JN226763" - ], - "Hepatitis_B_virus__TP71" : [ - "KF192830" - ], - "Human_parechovirus_1__452568" : [ - "GQ183035" - ], - "Porcine_circovirus_2__HB1_4" : [ - "JQ181587" - ], - "Dengue_virus_2__DC786Y12" : [ - "KM279564" - ], - "Hepatitis_B_virus_adw_MX_HBV_0201" : [ - "HM117851" - ], - "Hepatitis_B_virus__B2_10" : [ - "GU815591" - ], - "Norovirus_Hu_GII_4_Hiroshima4_2007_JP_Hu_GII_4_Hiroshima4_2007_JP" : [ - "AB541257" - ], - "Cucumber_mosaic_virus_satellite_RNA__IR_NY" : [ - "JN029953" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8523_2004" : [ - "KJ627722" - ], - "Tomato_yellow_leaf_curl_virus__Damyang_1" : [ - "JN183873" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2015_Makona_Goderich1" : [ - "KT345616" - ], - "Enterobacter_phage_Enc34" : [ - "NC_019524" - ], - "Dengue_virus_1__DENV_1_NI_BID_V656_2004" : [ - "FJ898437" - ], - "Horsegram_yellow_mosaic_virus__lima_bean" : [ - "AM932430", - "AM932429" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1745_2008" : [ - "FJ390394" - ], - "Vibrio_phage_VP93" : [ - "NC_012662" - ], - "West_Nile_virus_Connecticut_1999_2741" : [ - "AF206518" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_221_2011" : [ - "KJ686215" - ], - "Dengue_virus_1__HNRG12447" : [ - "KC692496" - ], - "Hepatitis_B_virus__C17" : [ - "EU939638" - ], - "Human_poliovirus_1__TJK35325" : [ - "KC880372" - ], - "Hepatitis_C_virus_subtype_2a_J6CF_JFH2_1" : [ - "AB690461" - ], - "Bhendi_yellow_vein_India_virus__India_Thadagan_OY155A_2006___OY155A" : [ - "GU112047" - ], - "Coxiella_burnetii_RSA_331" : [ - "NC_010115", - "NC_010117" - ], - "Hepatitis_B_virus__2187" : [ - "FJ386624" - ], - "Hepatitis_B_virus_1134_7" : [ - "KR014017" - ], - "Human_immunodeficiency_virus_1__03ZASK026B2" : [ - "DQ011165" - ], - "West_Nile_virus__CA_05_COAV2900" : [ - "JF703163" - ], - "Hepatitis_C_virus_subtype_1b_Taiwan" : [ - "HPCGENANTI" - ], - "Bat_polyomavirus_6c__6c" : [ - "NC_026769" - ], - "Squash_leaf_curl_virus__JO2_23" : [ - "KM595177" - ], - "Beak_and_feather_disease_virus__CPA7" : [ - "AY450438" - ], - "Bifidobacterium_longum_NCC2705" : [ - "NC_004307", - "NC_004943" - ], - "Murine_mastadenovirus_A" : [ - "NC_000942" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC11AA6_2008" : [ - "JF909087" - ], - "Dengue_virus_2_Cuba89_97" : [ - "AY702037" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1949_2008" : [ - "FJ410268" - ], - "Dengue_virus_3__HN_2013_11" : [ - "KJ622191" - ], - "West_Nile_virus__WNV_1_US_BID_V6505_2001" : [ - "KJ501332" - ], - "Porphyromonas_gingivalis_TDC60" : [ - "NC_015571" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG183A1_09" : [ - "KJ887947" - ], - "Hepatitis_B_virus__N11_C_3965B" : [ - "KJ173406" - ], - "Hepatitis_B_virus__cww1061" : [ - "KC774259" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ07B00_2004" : [ - "JF909070" - ], - "Newcastle_disease_virus_Duck_China_SD03_2009" : [ - "JN400895" - ], - "Liberibacter_phage_FP2" : [ - "JF773396" - ], - "Coxsackievirus_A16_BJ11_03" : [ - "JX068830" - ], - "West_Nile_virus__WNV_1_BID_V5042" : [ - "JN819315" - ], - "Sinorhizobium_medicae_WSM419" : [ - "NC_009622", - "NC_009621", - "NC_009620", - "NC_009636" - ], - "Coxsackievirus_A10_FY05_AH_CHN_2013" : [ - "KP009578" - ], - "Candidatus_Protochlamydia_amoebophila_UWE25" : [ - "NC_005861" - ], - "Cucumber_mosaic_virus_Z" : [ - "AB369269" - ], - "Human_coronavirus_OC43_OC43_human_USA_911_66_1991" : [ - "KF530089" - ], - "Enterovirus_C__V2_Tsi_1" : [ - "HQ738292" - ], - "Torque_teno_sus_virus_1b__TTV2Ln21" : [ - "HM633237" - ], - "Bhendi_yellow_vein_India_virus__India_Trichy_OY116_2005___OY116" : [ - "GU112045" - ], - "SARS_coronavirus_SinP3" : [ - "AY559090" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3927_2006" : [ - "GU131926" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD18_2013" : [ - "KM229841" - ], - "Propionibacterium_acnes_6609" : [ - "NC_017535" - ], - "Human_papillomavirus_type_2__C1" : [ - "EF362755" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4971_serum" : [ - "HQ705676" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1780_2007" : [ - "FJ432726" - ], - "Coxsackievirus_A16__PM_00033_07" : [ - "JQ746660" - ], - "Hepatitis_B_virus__SHB28" : [ - "KJ598653" - ], - "Human_immunodeficiency_virus_1__03ZASK120B1" : [ - "DQ011176" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG192A1_09" : [ - "KJ887949" - ], - "Maize_streak_virus__MSV_A_ZA_Pie1_Ben3a_2008" : [ - "HQ693430" - ], - "Discula_destructiva_virus_1__247" : [ - "NC_002801", - "NC_002800", - "NC_002797", - "NC_002802" - ], - "Canine_distemper_virus__01_2689" : [ - "AY649446" - ], - "Plum_pox_virus_strain_Marcus_Marcus_VAR_2_531" : [ - "HF585100" - ], - "Porcine_parvovirus_NADL_2" : [ - "NC_001718" - ], - "SARS_coronavirus_HGZ8L1_B__HGZ8L1_B" : [ - "AY394982" - ], - "Staphylococcus_phage_JS01" : [ - "NC_021773" - ], - "BK_polyomavirus_NWC_14" : [ - "AB269855" - ], - "Dragonfly_cyclicusvirus__FL1_NZ37_2010" : [ - "NC_023855" - ], - "Pediococcus_pentosaceus_ATCC_25745" : [ - "NC_008525" - ], - "Human_herpesvirus_5_BE_45_2011" : [ - "KP745633" - ], - "Yellow_fever_virus__ArD181439" : [ - "JX898881" - ], - "Japanese_encephalitis_virus_JEV_Bo_Miyazaki_1_2009" : [ - "AB830335" - ], - "Tomato_leaf_curl_China_betasatellite__G36T_1" : [ - "AJ704578" - ], - "Maize_streak_virus__MSV_B1_Za_LouB_g216_2007" : [ - "EU628588" - ], - "Sapovirus_Mc2_Mc2" : [ - "AY237419" - ], - "HBV_genotype_D4__Mart_B37" : [ - "HE974373" - ], - "SARS_coronavirus_HKU_39849_HKU_39849_TCVSP_HARROD_00001" : [ - "GU553363" - ], - "Hepatitis_B_virus__D2_2" : [ - "GU815659" - ], - "Campylobacter_jejuni_NCTC_11168___ATCC_700819" : [ - "NC_002163" - ], - "Cyanothece_PCC_7425" : [ - "NC_011882", - "NC_011885", - "NC_011884", - "NC_011880" - ], - "Temperate_fruit_decay_associated_virus__MFBpe17" : [ - "KR134337" - ], - "Tobacco_mosaic_virus__Xingren_1" : [ - "HE818449" - ], - "Porcine_circovirus_2_XC1101" : [ - "JX406419" - ], - "Porcine_circovirus_2_QY" : [ - "AY682995" - ], - "Small_begomovirus_associated_satellite__wf_S2" : [ - "KJ859181" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2008_10_1_3" : [ - "KC862582" - ], - "Dengue_virus_1__DENV_1_VN_BID_V810_2006" : [ - "EU482804" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC45AF1_2009" : [ - "JF909220" - ], - "Dengue_virus_2_D2_TO_UH39_1974" : [ - "HM582114" - ], - "Hepatitis_B_virus__C_Tonga_BQ3589_2001" : [ - "HQ700564" - ], - "Cucumber_mosaic_virus_satellite_RNA_1" : [ - "MCVSATRN5" - ], - "JC_polyomavirus__Luz_19" : [ - "AB113131" - ], - "Porcine_stool_associated_circular_virus_8__GP2" : [ - "NC_024775" - ], - "Hepatitis_B_virus__I212" : [ - "FJ562319" - ], - "Hepatitis_B_virus__J148" : [ - "GQ377591" - ], - "Dengue_virus_2__FGU_Apr1_06" : [ - "EU920847" - ], - "Chikungunya_virus__SGEHICHS277108" : [ - "FJ445510" - ], - "Porcine_circovirus_2_MC" : [ - "KM460823" - ], - "Alternanthera_yellow_vein_virus__Fujian" : [ - "FJ712190" - ], - "Human_coronavirus_OC43_2058A_10" : [ - "KP198610" - ], - "Porcine_circovirus_2_PM177" : [ - "KJ094606" - ], - "Enterovirus_A71__C1_FY08_C30_P9" : [ - "GU198368" - ], - "Enterovirus_A71_NBChina01" : [ - "HQ828086" - ], - "Dengue_virus_1__DENV_1_NI_BID_V646_2005" : [ - "FJ182002" - ], - "Maize_streak_virus__MSV_B1_Za_Sta_g220_2007" : [ - "EU628605" - ], - "Human_mastadenovirus_C_human_ARG_A15932_2002_2_P2H2F2" : [ - "JX173079" - ], - "Synechococcus_PCC_7502" : [ - "NC_019692", - "NC_019702", - "NC_019691" - ], - "Hepatitis_B_virus__D_Samoa_En_1993" : [ - "HQ700500" - ], - "Maize_streak_virus__MSV_B1_Za_Ced_g55_2006" : [ - "EU628581" - ], - "Tahyna_virus_1014" : [ - "KF361881" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_162_2012" : [ - "KJ686201" - ], - "Hepatitis_B_virus__bxa1185" : [ - "KC774397" - ], - "Turnip_mosaic_virus__TIGD" : [ - "AB701735" - ], - "Hantaanvirus_CGHu3614_CGHu3614" : [ - "EF990922", - "EF990908" - ], - "Hepatitis_B_virus__I106" : [ - "FJ562259" - ], - "Sugarcane_white_streak_virus__SSNV_B__SD_B0069_2013" : [ - "NC_023989" - ], - "Wheat_dwarf_virus____Hebei_Shijiazhuang___HBSJZ06_7" : [ - "EF536867" - ], - "Chicken_orivirus_1_chicken_Pf_CHK1_2013_HUN" : [ - "NC_025432" - ], - "Cauliflower_mosaic_virus__IRNCaQA" : [ - "JX912257" - ], - "Hepatitis_B_virus__BFJT2005_1" : [ - "AB642099" - ], - "Bovine_herpesvirus_5_SV507_99" : [ - "NC_005261" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2851_2005" : [ - "FJ898390" - ], - "Human_immunodeficiency_virus_1__SUMA_flD3" : [ - "FJ496148" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7358_2002" : [ - "KF973339" - ], - "Porcine_circovirus_1_sc_5" : [ - "DQ472016" - ], - "Porcine_epidemic_diarrhea_virus_USA_Ohio123_2014" : [ - "KJ645699" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD25_2013" : [ - "KM229886" - ], - "Phlebovirus_JS2010_019_JS2010_019" : [ - "JQ317179", - "JQ317178", - "JQ317180" - ], - "Watermelon_chlorotic_stunt_virus__JO2_515" : [ - "KM820215" - ], - "Natrialba_magadii_ATCC_43099" : [ - "NC_013922", - "NC_013923", - "NC_013925", - "NC_013924" - ], - "Duvenhage_virus__NL07" : [ - "JN986749" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1697_2007" : [ - "FJ024461" - ], - "Gordonia_bronchialis_DSM_43247" : [ - "NC_013442", - "NC_013441" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2468_2008" : [ - "FJ850103" - ], - "Tomato_yellow_leaf_curl_virus__AH_HB2" : [ - "FN650808" - ], - "Torque_teno_sus_virus_1b__TTV2Bj6_3" : [ - "HM633218" - ], - "Geobacillus_phage_GBK2__GBK2" : [ - "NC_023612" - ], - "Hepatitis_B_virus__I2_M04_3665" : [ - "FJ023669" - ], - "Hepatitis_B_virus__J81" : [ - "GQ377550" - ], - "Rice_yellow_mottle_virus__Ug230" : [ - "KM487713" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC55" : [ - "KP178728" - ], - "Cotton_leaf_curl_Multan_DNA_betasatellite____India_Bahraich_03_Kenaf_2006" : [ - "EF620566" - ], - "Hepatitis_B_virus__M56" : [ - "GQ924633" - ], - "Bordetella_bronchiseptica_RB50" : [ - "NC_002927" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140910" : [ - "KR653269" - ], - "Hepatitis_delta_virus__D1" : [ - "KJ744214" - ], - "Tomato_leaf_curl_Madagascar_virus_Menabe__Madagascar_Morondova_2001___Morondova" : [ - "NC_006874" - ], - "Gallus_gallus_enteric_parvovirus__ChPV_841" : [ - "KM598417" - ], - "Grapevine_virus_A__GTR1SD_1" : [ - "DQ855081" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT24B16_2004" : [ - "JF909174" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09HEN1" : [ - "JF268684" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3444_2006" : [ - "GQ868547" - ], - "Hepatitis_B_virus_1385_10" : [ - "KR014055" - ], - "Infectious_bronchitis_virus_ArkDPI101" : [ - "EU418975" - ], - "BK_polyomavirus_JPN_35" : [ - "AB269839" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota54_2013" : [ - "KJ645652" - ], - "Maize_chlorotic_dwarf_virus__M1" : [ - "AY829112" - ], - "Dengue_virus_3__DENV_3_US_BID_V1415_2007" : [ - "EU596492" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US34" : [ - "KJ019095" - ], - "Sunn_hemp_leaf_distortion_virus__India_Barrackpore3_2008___Barrackpore3" : [ - "GQ183868" - ], - "Pepino_mosaic_virus__PepMV_P5" : [ - "JX417070" - ], - "Leptospira_interrogans_serovar_Lai_IPAV" : [ - "NC_017551", - "NC_017552" - ], - "JC_polyomavirus__JCV135_28" : [ - "JF424857" - ], - "Human_immunodeficiency_virus_1__C_ZA_1195MB" : [ - "AY463220" - ], - "Maize_streak_virus__MSV_A_MZ_Bil1_Moz20_2007" : [ - "HQ693335" - ], - "Lactococcus_phage_jj50" : [ - "NC_008371" - ], - "Gossypium_darwinii_symptomless_alphasatellite" : [ - "FR877536", - "HE965678", - "HE972276", - "FR877533", - "HE965679", - "FR877535" - ], - "African_cassava_mosaic_virus__MG_MG47A6_06" : [ - "KJ887865" - ], - "Hepatitis_B_virus_B0714189_WBK_F" : [ - "AP011090" - ], - "Japanese_yam_mosaic_virus__SG1" : [ - "KJ789140" - ], - "Wheat_dwarf_virus__D01" : [ - "FM999832" - ], - "Enterobacteria_phage_WA5" : [ - "DQ079899" - ], - "Hepatitis_B_virus_HB178" : [ - "HM011487" - ], - "Simian_sapelovirus_1_2383" : [ - "NC_004451" - ], - "Human_parainfluenza_virus_3_HPIV3_ARG_15318_2007" : [ - "KF530257" - ], - "Bhendi_yellow_vein_India_virus__India_Srinivaspur_OYSK1_2006___OYSOK1" : [ - "GU112012" - ], - "Banana_streak_virus__TRY" : [ - "DQ859899" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2887_2006" : [ - "GQ199850" - ], - "Bacillus_subtilis_PY79" : [ - "NC_022898" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2044_2005" : [ - "FJ639710" - ], - "Hepatitis_B_virus__M15" : [ - "GQ924608" - ], - "Bacillus_phage_phBC6A51" : [ - "NC_004820" - ], - "Human_coronavirus_NL63_NL63_DEN_2009_6" : [ - "JQ900255" - ], - "Cotton_leaf_curl_Burewala_virus__c_28" : [ - "HF549180" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00095_1988_NEW_P67H37F45" : [ - "KF268324" - ], - "Amphotropic_murine_leukemia_virus_1313" : [ - "AF411814" - ], - "Halothermothrix_orenii_H_168" : [ - "NC_011899" - ], - "Dengue_virus_3__DENV_3_VE_BID_V908_2001" : [ - "EU529690" - ], - "Foot_and_mouth_disease_virus___type_A_A30_Uruguay_A30_Uruguay_68_iso90" : [ - "AY593801" - ], - "Newcastle_disease_virus__chicken_China_Guangxi11_2003" : [ - "DQ485231" - ], - "Human_immunodeficiency_virus_1__D1p21" : [ - "HM469972" - ], - "Hippeastrum_mosaic_virus__Marijiniup_6" : [ - "JQ723474" - ], - "Chlorobium_tepidum_TLS" : [ - "NC_002932" - ], - "Human_papillomavirus_type_16__Qv20322" : [ - "HQ644275" - ], - "Hepatitis_B_virus__WY_HZ_46" : [ - "JX429904" - ], - "Dengue_virus_1__DENV_1_US_BID_V1162_1998" : [ - "EU482567" - ], - "SARS_coronavirus_HSZ_Cb__HSZ_Cb" : [ - "AY394986" - ], - "Rice_grassy_stunt_virus__Longan" : [ - "FR696599", - "FR696598", - "FR696597", - "FR696600", - "FR696601" - ], - "Dengue_virus_1__DENV_1_NI_BID_V5504_2009" : [ - "JF937635" - ], - "Columbid_circovirus__PL177" : [ - "KF738850" - ], - "Hepatitis_B_virus__AA1_5" : [ - "AY721609" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1652" : [ - "KR534571" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0096" : [ - "KP759654" - ], - "Eastern_equine_encephalitis_virus_EEEV_Aedes_USA_M03_1486_2003" : [ - "KJ469594" - ], - "Tomato_yellow_leaf_curl_virus___Il_Ng" : [ - "AB110217" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4856_2009" : [ - "HQ671176" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V157_2003" : [ - "EU155227" - ], - "Coxsackievirus_A24_CA24v_Ishigaki_28_2011" : [ - "AB769163" - ], - "Squash_leaf_curl_China_virus__HA1" : [ - "KF184992" - ], - "Chlamydia_trachomatis_K_SotonK1" : [ - "NC_020965", - "NC_020963" - ], - "Yellow_fever_virus_17D_YF_VAX_Vero_adapted_Series_C_P11" : [ - "JN811143" - ], - "Usutu_virus_6950" : [ - "KJ438768" - ], - "Phaeocystis_globosa_virus_16T" : [ - "NC_021312" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V81_2002" : [ - "EU256095" - ], - "Human_rotavirus_A_BD426" : [ - "AJ400636" - ], - "Newcastle_disease_virus__NDV05_029" : [ - "FJ766528" - ], - "Simian_adenovirus_26" : [ - "FJ025923" - ], - "Brucella_phage_Pr" : [ - "NC_019447" - ], - "Rotavirus_A_RVA_Human_wt_USA_DC2920_1975_G1P_8" : [ - "KC580030", - "KC580028", - "KC580027", - "KC580031" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7557_2009_A" : [ - "KJ627430" - ], - "HBV_genotype_B__pBS_HBVB1_1005425_1_3G_mu_mu" : [ - "AB819611" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3072_2008" : [ - "GQ199870" - ], - "Beak_and_feather_disease_virus_CO_JP" : [ - "AB514568" - ], - "Dengue_virus_2__DENV_2_NI_BID_V532_2005" : [ - "FJ478455" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Biss_After" : [ - "EF532802" - ], - "Hepatitis_B_virus__D3_2" : [ - "GU815671" - ], - "Chikungunya_virus__PR_S4" : [ - "KR264949" - ], - "Hepatitis_A_virus__MataramA07_RS03" : [ - "AB839695" - ], - "Porcine_circovirus_2_09HaiN2" : [ - "HQ395031" - ], - "Rhinovirus_C__LZY79" : [ - "JF317014" - ], - "Dengue_virus_2__DENV_2_VE_BID_V3496_1990" : [ - "GQ868540" - ], - "Mulberry_mosaic_dwarf_associated_virus__AK3_54" : [ - "KP699132" - ], - "Duck_picornavirus_GL_12_GL_12" : [ - "NC_023985" - ], - "Goose_circovirus__yk1" : [ - "AY633653" - ], - "Pseudomonas_phage_PAJU2_PAJU2" : [ - "NC_011373" - ], - "Invertebrate_iridovirus_22" : [ - "NC_021901" - ], - "Human_immunodeficiency_virus_1__46_10" : [ - "KP718918" - ], - "Hepatitis_B_virus__dxn1066" : [ - "KC774487" - ], - "Human_immunodeficiency_virus_1__CH085_w4a" : [ - "KC156211" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT07A31_2005" : [ - "JF909231" - ], - "Hepatitis_B_virus__A2_4" : [ - "GU815563" - ], - "Wheat_dwarf_virus__SCCD10_2" : [ - "JQ647483" - ], - "Monkeypox_virus__DRC_07_0093" : [ - "JX878416" - ], - "Hepatitis_B_virus__C207_1" : [ - "FJ899783" - ], - "HBV_genotype_C__60PU" : [ - "AB560662" - ], - "Human_adenovirus_19__19a" : [ - "AB448772" - ], - "Bean_common_mosaic_virus_blackeye_cowpea_mosaic_R" : [ - "NC_003397" - ], - "Maize_streak_virus__MSV_B1_Za_RawK_g30_2006" : [ - "EU628600" - ], - "Pseudomonas_phage_PPpW_3" : [ - "NC_023006" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH24_2011" : [ - "KM188449" - ], - "Watermelon_chlorotic_stunt_virus__B" : [ - "KJ854912" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3905_2008" : [ - "GU131727" - ], - "Bovine_coronavirus_isolate_Alpaca" : [ - "DQ915164" - ], - "Measles_virus__Davis87" : [ - "EU293550" - ], - "Aeromonas_phage_25" : [ - "NC_008208" - ], - "Cucumber_mosaic_virus_satellite_RNA_T7" : [ - "X86411" - ], - "Dengue_virus_2__DC735Y12" : [ - "KM279559" - ], - "Tomato_spotted_wilt_virus__M" : [ - "AY870390", - "AY870391" - ], - "Hepatitis_B_virus__SSC140" : [ - "KJ598689" - ], - "Hepatitis_B_virus__5283" : [ - "AY233284" - ], - "Bluetongue_virus_11" : [ - "BTVSEQUB" - ], - "Okra_yellow_crinkle_Cameroon_alphasatellite__CM_Lys1sp2_09___Lys1sp2" : [ - "NC_014906" - ], - "Hepatitis_B_virus__C_PNG_W035A_2004" : [ - "HQ700527" - ], - "Porcine_epidemic_diarrhea_virus_USA_Kansas125_2014" : [ - "KJ645701" - ], - "Hepatitis_B_virus__JPN_CH4" : [ - "AB453982" - ], - "Cowpox_virus_CatPot07_1" : [ - "KC813506" - ], - "JC_polyomavirus__FD_2" : [ - "AB103415" - ], - "Dengue_virus_4_H775222_DENV_4_STN31" : [ - "JQ513334" - ], - "Human_respiratory_syncytial_virus_05_001965" : [ - "JX576758" - ], - "Mason_Pfizer_monkey_virus" : [ - "SIVMPCG", - "NC_001550" - ], - "Carnobacterium_maltaromaticum_LMA28" : [ - "NC_019425" - ], - "Equid_herpesvirus_1_T_529_10_84" : [ - "KF644580" - ], - "Hepatitis_B_virus__650_15_2004" : [ - "DQ463797" - ], - "Yoka_poxvirus_DakArB_4268" : [ - "NC_015960" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M28" : [ - "KM110936" - ], - "Corchorus_yellow_vein_virus____Hoa_Binh___Hoa_Binh" : [ - "NC_006359", - "NC_006358" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_95I_100A_01_1995" : [ - "KP258705" - ], - "Hepatitis_B_virus__M69" : [ - "GQ924637" - ], - "Hepatitis_B_virus__MY34920" : [ - "KJ803785" - ], - "Microviridae_Fen685_11__Fen685_11" : [ - "NC_027643" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2500_2007" : [ - "FJ882591" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V317_2001" : [ - "EU155284" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus_Israel__Sardinia" : [ - "DQ845787" - ], - "Human_papillomavirus_type_31__QV12357" : [ - "HQ537687" - ], - "Malvastrum_yellow_mosaic_virus__Hn37" : [ - "AM236756" - ], - "Human_immunodeficiency_virus_1__02CD_KTB035" : [ - "AM000055" - ], - "Paspalum_striate_mosaic_virus__AU_QG14_2011" : [ - "JQ948071" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140433" : [ - "KR653246" - ], - "Methylomicrobium_alcaliphilum" : [ - "NC_016112" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_15" : [ - "EU384619" - ], - "Human_immunodeficiency_virus_1_98ZA528" : [ - "AY158535" - ], - "Hepatitis_B_virus__cww1026" : [ - "KC774248" - ], - "Porcine_parvovirus_NADL_2_M23" : [ - "KF913350" - ], - "Porcine_epidemic_diarrhea_virus_USA_Illinois87_2013" : [ - "KJ645680" - ], - "Pan_troglodytes_verus_polyomavirus_3__3161" : [ - "NC_019855" - ], - "Porcine_circovirus_2__DK406case" : [ - "EF565343" - ], - "Cotton_leaf_curl_Multan_virus__clc62" : [ - "NC_004607" - ], - "Tick_borne_encephalitis_virus_WH2012" : [ - "KJ755186" - ], - "Porcine_circovirus_type_2_D" : [ - "AF117753" - ], - "Dengue_virus_2__MD1272" : [ - "FM210233" - ], - "Budgerigar_fledgling_disease_virus___1" : [ - "NC_004764" - ], - "Hepatitis_B_virus__C183" : [ - "EU939603" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3846_2008" : [ - "GU131684" - ], - "Reston_ebolavirus_Pennsylvania" : [ - "AY769362" - ], - "Avian_leukosis_virus_sdau1002" : [ - "JN389518" - ], - "BK_polyomavirus__BKV_CAP_m13" : [ - "AY628230" - ], - "Hepatitis_B_virus__LT11" : [ - "DQ486022" - ], - "Hepatitis_B_virus__bxn1055" : [ - "KC774418" - ], - "Coxsackievirus_B2__KOR_04_279" : [ - "EF174469" - ], - "Usutu_virus_V192" : [ - "KJ438733" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_657" : [ - "KR534515" - ], - "Plum_pox_virus__Penn10" : [ - "EF640938" - ], - "Dengue_virus_1__DENV_1_KH_BID_V3773_2006" : [ - "HM631852" - ], - "Papaya_leaf_curl_associated_betasatellite__beta_P6" : [ - "KJ397536" - ], - "Coxsackievirus_A6__TW_20_09" : [ - "JQ946050" - ], - "Sphingomonas_wittichii_RW1" : [ - "NC_009511", - "NC_009508", - "NC_009507" - ], - "Coxsackievirus_A10_CVA10_JB141310010" : [ - "KJ641623" - ], - "Dengue_virus_3_GWL_25" : [ - "AY770511" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4008_2008" : [ - "GU131772" - ], - "Rickettsia_slovaca_13_B" : [ - "NC_016639" - ], - "Usutu_virus_V70" : [ - "KJ438759" - ], - "Human_immunodeficiency_virus_1__04ZASK082B1" : [ - "AY901972" - ], - "Vibrio_phage_vB_VpaM_MAR" : [ - "NC_019722" - ], - "Synechococcus_phage_S_RIM2_R9_2006_RIM2_R9_906" : [ - "HQ317291" - ], - "Ugandan_cassava_brown_streak_virus__MLB3" : [ - "FJ039520" - ], - "Pseudomonas_VLB120" : [ - "NC_022738", - "NC_022739" - ], - "Ostreococcus_tauri_virus_1_1" : [ - "NC_013288" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5457_2009" : [ - "JF920395" - ], - "Campylobacter_phage_CP81" : [ - "FR823450" - ], - "Frangipani_mosaic_virus_Fr_Ind_1" : [ - "JN555602" - ], - "Foot_and_mouth_disease_virus___type_A__Egypt_2006" : [ - "JF749843" - ], - "Epiphyas_postvittana_nucleopolyhedrovirus" : [ - "NC_003083" - ], - "Enterovirus_B100__BAN2000_10500" : [ - "DQ902713" - ], - "Human_papillomavirus_type_58__JP0302" : [ - "AB819276" - ], - "Cucumber_mosaic_virus_satellite_RNA_T16" : [ - "X86413" - ], - "Porcine_adenovirus_3_6618" : [ - "AF083132" - ], - "Newcastle_disease_virus__NDV02" : [ - "FJ386393" - ], - "Sapovirus_Hu_GI_1_Seoul_ROK62_2013_KOR_Hu_GI_1_Seoul_ROK62_2013_KOR" : [ - "KP298674" - ], - "Human_immunodeficiency_virus_1__09YNLX219037sg" : [ - "KC899009" - ], - "Cauliflower_mosaic_virus__JPNKWB778" : [ - "AB863158" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLI1325_2010" : [ - "KJ627261" - ], - "Deformed_wing_virus__PA" : [ - "AY292384" - ], - "Hepatitis_B_virus_544_9a" : [ - "KR013967" - ], - "Banana_bunchy_top_virus__Kerala_2" : [ - "FJ009240" - ], - "Dengue_virus_2__DENV_2_TH_BID_V3498_1994" : [ - "GQ868542" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3937_2008" : [ - "GU131732" - ], - "Human_papillomavirus_type_6__PV1667" : [ - "JN252320" - ], - "West_Nile_virus__WNV_1_US_BID_V4192_2000" : [ - "HM488130" - ], - "Synechococcus_phage_ACG_2014a__Syn7803US112" : [ - "KJ019076" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2718_2006" : [ - "GQ199772" - ], - "Watermelon_chlorotic_stunt_virus__IL3_70" : [ - "KM820261" - ], - "Hepatitis_delta_virus__TW3038_25" : [ - "AY648955" - ], - "Human_parechovirus_1__SH401" : [ - "JX441355" - ], - "Tomato_mosaic_leaf_curl_virus" : [ - "NC_005851", - "NC_005850" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4780_2009" : [ - "HM181978" - ], - "Sacbrood_virus__AmSBV_Viet6" : [ - "KM884995" - ], - "Plum_pox_virus__Penn4" : [ - "DQ465243" - ], - "Hepatitis_B_virus__I124" : [ - "FJ562271" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9494_2013" : [ - "KJ643551" - ], - "Gallionella_capsiferriformans_ES_2" : [ - "NC_014394" - ], - "Hepatitis_B_virus__FMD125" : [ - "GU332702" - ], - "HBV_genotype_A1__Mart_B27" : [ - "HE974370" - ], - "Human_poliovirus_1_NIE1018321" : [ - "KJ170451" - ], - "Pediococcus_claussenii_ATCC_BAA_344" : [ - "NC_016607", - "NC_017019", - "NC_016605", - "NC_017018", - "NC_017017", - "NC_016635", - "NC_016606", - "NC_016636", - "NC_016608" - ], - "Hepatitis_B_virus__C_NZL_TE55_1999" : [ - "HQ700486" - ], - "African_horse_sickness_virus__Karen" : [ - "KP009759", - "KP009758", - "KP009755", - "KP009760", - "KP009756", - "KP009751", - "KP009754", - "KP009753", - "KP009757" - ], - "Bebaru_virus" : [ - "NC_016962" - ], - "Staphylococcus_phage_11" : [ - "NC_004615" - ], - "Enterobacteria_phage_T4T" : [ - "HM137666" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2724_2007" : [ - "FJ898372" - ], - "Hepatitis_B_virus__C91" : [ - "EU939567" - ], - "Norovirus_Hu_GII_20151_2009_VNM_Hu_GII_20151_2009_VNM" : [ - "KC409253" - ], - "Mycobacterium_phage_PG1" : [ - "NC_005259" - ], - "Wheat_dwarf_virus__SXHC10_6" : [ - "JQ647489" - ], - "Human_T_lymphotropic_virus_2__Pygmy_550602" : [ - "GU212854" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2663_2000" : [ - "FJ850064" - ], - "Bean_pod_mottle_virus_KY_G_7" : [ - "NC_003495", - "NC_003496" - ], - "Lactococcus_phage_bIL312" : [ - "NC_002671" - ], - "Porcine_circovirus_2__PCV_1_3" : [ - "KC515029" - ], - "Foot_and_mouth_disease_virus___type_O_O1SKR_o1skr_iso85" : [ - "AY593824" - ], - "Border_disease_virus_Aveyron" : [ - "KF918753" - ], - "Enterovirus_A71__EV71_SAR_SHA63" : [ - "AM396588" - ], - "Hepatitis_C_virus__DH027" : [ - "JX183557" - ], - "Anticarsia_gemmatalis_nucleopolyhedrovirus__AgMNPV_2D" : [ - "NC_008520" - ], - "Human_immunodeficiency_virus_1__WEAU_flF9" : [ - "FJ496166" - ], - "Hepatitis_C_virus_subtype_1b" : [ - "AB442220", - "AB442219", - "HCU89019", - "AB426117", - "AB249644", - "HPCHUMR", - "AB442222", - "AB442221", - "HCU16362", - "EF638081" - ], - "Human_immunodeficiency_virus_1__09YNLC496sg" : [ - "KC898991" - ], - "Newcastle_disease_virus_QG_Hebei_07" : [ - "GQ994434" - ], - "Middle_East_respiratory_syndrome_coronavirus__Hu_France___FRA2_130569_2013_InSpu_Sanger" : [ - "KJ361502" - ], - "North_American_arenavirus_AV_96010151" : [ - "EU123330" - ], - "Human_immunodeficiency_virus_1__03ZASK037B2" : [ - "AY878066" - ], - "Hepatitis_B_virus__T1562" : [ - "GQ205388" - ], - "West_Nile_virus__WNV_1_US_BID_V6185_2010" : [ - "KJ501242" - ], - "Ageratum_leaf_curl_Cameroon_betasatellite__AGLI4B1" : [ - "NC_012557" - ], - "Porcine_epidemic_diarrhea_virus__MN" : [ - "KF468752" - ], - "Hepatitis_C_virus_subtype_1a__99I" : [ - "EU781753" - ], - "South_African_cassava_mosaic_virus__MG_MG529B2_11" : [ - "KJ888031" - ], - "Hepatitis_B_virus__CAR008" : [ - "AM494690" - ], - "Eupatorium_yellow_vein_virus__MNS2___Fukuoka_MNS2" : [ - "AJ438936" - ], - "Human_parainfluenza_virus_3_HPIV3_ARG_10068_2004" : [ - "KF530245" - ], - "Mycobacterium_phage_Trixie_Trixie" : [ - "NC_023731" - ], - "Human_poliovirus_1__HAI01001" : [ - "AF405668" - ], - "JC_polyomavirus__FL_8" : [ - "AB127350" - ], - "Hepatitis_B_virus__H2815" : [ - "KP322603" - ], - "Hepatitis_B_virus__J117" : [ - "GQ377576" - ], - "Sacbrood_virus_AmSBV_Kor1" : [ - "KP296800" - ], - "Enterobacteria_phage_P2" : [ - "NC_001895" - ], - "Hepatitis_B_virus_593_9" : [ - "KR013993" - ], - "Hepatitis_B_virus__cxa1672" : [ - "KC774305" - ], - "Hepatitis_B_virus__bxa1182" : [ - "KC774396" - ], - "Enterobacteria_phage_RB27" : [ - "NC_025448" - ], - "Dengue_virus_3__DENV_3_US_BID_V2118_2001" : [ - "FJ547082" - ], - "Torque_teno_virus_TTVCHN2" : [ - "AF129887" - ], - "Mycobacterium_phage_Fredward" : [ - "NC_022753" - ], - "Rubella_virus_JC2_NZL91" : [ - "DQ388281" - ], - "Hepatitis_B_virus__GaziantepLCC2" : [ - "AB674430" - ], - "Rhodopseudomonas_palustris_BisA53" : [ - "NC_008435" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V33_2004" : [ - "EU482832" - ], - "Bovine_viral_diarrhea_virus_1__12F004" : [ - "KC963967" - ], - "Bacillus_weihenstephanensis_KBAB4" : [ - "NC_010184", - "NC_010183", - "NC_010182", - "NC_010181", - "NC_010180" - ], - "Human_immunodeficiency_virus_1__MS2004_37_107" : [ - "EF178405" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4937_1" : [ - "KR105278" - ], - "Paspalum_striate_mosaic_virus__AU_QG28_2011" : [ - "JQ948078" - ], - "Tomato_yellow_leaf_curl_virus___Il__CN_AH_HF_Tomato1_08" : [ - "GU434142" - ], - "African_cassava_mosaic_virus__KE_mtw_CMD_MI92_12" : [ - "HG530122" - ], - "Porcine_epidemic_diarrhea_virus__KNU_141112_feces" : [ - "KR873431" - ], - "Porcine_circovirus_2_ZJU0701" : [ - "EU257514" - ], - "Banana_bunchy_top_virus__Delhi" : [ - "HM120718" - ], - "Rhodococcus_phage_E3" : [ - "NC_021347" - ], - "Human_rotavirus_A_WA" : [ - "X81434" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1302_2007" : [ - "FJ882593" - ], - "Newcastle_disease_virus_Nagpur" : [ - "KP089979" - ], - "Dengue_virus_1_VR_1254_US_Hawaii_1944" : [ - "EU848545" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9475_2013" : [ - "KJ643535" - ], - "Chlamydia_trachomatis_D_SotonD5" : [ - "NC_020958", - "NC_020943" - ], - "Hepatitis_B_virus__919059" : [ - "JN040760" - ], - "African_oil_palm_ringspot_virus" : [ - "NC_012519" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8626_2010" : [ - "KJ627325" - ], - "Porcine_circovirus_2__M787_2" : [ - "FJ905460" - ], - "Burkholderia_phage_Bcep43" : [ - "NC_005342" - ], - "Escherichia_coli_O55_H7_RM12579" : [ - "NC_017653", - "NC_017656", - "NC_017654", - "NC_017655", - "NC_017657", - "NC_017658" - ], - "Tent_making_bat_hepatitis_B_virus__TBHBV_Pan957_Uro_bil_PAN_2011" : [ - "KC790381" - ], - "Salmonella_enterica_Serovar_Cubana_CFSAN002050" : [ - "NC_021845", - "NC_021818", - "NC_021819" - ], - "Youcai_mosaic_virus__Shanghai" : [ - "AF254924" - ], - "Human_herpesvirus_5_BE_16_2012" : [ - "KP745665" - ], - "Lassa_mammarenavirus_Z148" : [ - "AY628204", - "AY628205" - ], - "Human_herpesvirus_5_BE_18_2011" : [ - "KP745668" - ], - "Dengue_virus_1__MKS_0395" : [ - "KC762631" - ], - "Porcine_circovirus_2__HBZF2013_1" : [ - "KC527542" - ], - "Simian_immunodeficiency_virus__SIVgorCP2139_1con" : [ - "FJ424864" - ], - "Paenibacillus_phage_PG1_PG1" : [ - "NC_021558" - ], - "Rift_Valley_fever_virus_Clone_13" : [ - "DQ375417" - ], - "Mungbean_yellow_mosaic_virus___Vigna__KA27" : [ - "AF262064" - ], - "Human_papillomavirus_type_16__16_Anhui12" : [ - "KC935953" - ], - "Human_immunodeficiency_virus_1__ARE195FL" : [ - "AY968312" - ], - "Cucumber_mosaic_virus_Ly2_CMV_Lilium_longiflorum" : [ - "AJ296154" - ], - "Ralstonia_phage_1_NP_2014_RIP1" : [ - "NC_023586" - ], - "Hepatitis_B_virus__J129" : [ - "GQ377581" - ], - "BK_polyomavirus__FIN_10" : [ - "AB260032" - ], - "Macroptilium_yellow_vein_virus__BR_Pai22_11" : [ - "KJ939902" - ], - "Trichomonas_vaginalis_virus_3" : [ - "NC_004034" - ], - "Lactococcus_Phage_ASCC489" : [ - "JQ740807" - ], - "Porcine_circovirus_2_YZ0901" : [ - "GU252370" - ], - "Foot_and_mouth_disease_virus___type_O__ISR_2_2011" : [ - "JX040501" - ], - "Hepatitis_B_virus__pHB4_4" : [ - "AB106895" - ], - "Dengue_virus_1_VE_61081_2007" : [ - "HQ332183" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00068_2007_G1P_8" : [ - "KC769394", - "KC769395", - "KC769397" - ], - "Mimosa_yellow_leaf_curl_virus" : [ - "NC_009546" - ], - "Hepatitis_B_virus_B0607154_KDR_F" : [ - "AP011089" - ], - "Hepatitis_B_virus__CHI41" : [ - "FJ709494" - ], - "Hepatitis_B_virus_1134_24a" : [ - "KR014013" - ], - "Propionibacterium_phage_PHL082M03__PHL082M03" : [ - "KJ578770" - ], - "Vibrio_phage_henriette_12B8_henriette_12B8" : [ - "NC_021073" - ], - "Hepatitis_C_virus__1030_FU24" : [ - "EU362878" - ], - "Ageratum_yellow_vein_Hualian_virus__Taiwan_Hualian4_2000___A4_4" : [ - "DQ866132" - ], - "Human_poliovirus_1_NIE1118368" : [ - "KJ170449" - ], - "Pediococcus_phage_clP1" : [ - "NC_016161" - ], - "Mungbean_yellow_mosaic_India_virus_bg3" : [ - "NC_004609", - "NC_004608" - ], - "Human_immunodeficiency_virus_1__C_96BW16D14" : [ - "AF110977" - ], - "WU_Polyomavirus_GD_WU816" : [ - "GQ926979" - ], - "Broad_bean_wilt_virus_2__GP2" : [ - "KC625509", - "KC625495" - ], - "Melon_chlorotic_mosaic_virus__VE10_160" : [ - "KF670637", - "KF670636" - ], - "Human_papillomavirus_type_57c_HPV57C" : [ - "AB361563" - ], - "Hepatitis_E_virus__W2_1" : [ - "JQ655734" - ], - "Human_immunodeficiency_virus_1__14186_1" : [ - "DQ853439" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3707" : [ - "KM233049" - ], - "Enterovirus_A71_EV71_Fuyang_Anhui_P_R_C_17_08_1" : [ - "EU703812" - ], - "Goose_hemorrhagic_polyomavirus__Toulouse_Goose_2008" : [ - "HQ681902" - ], - "Mirabilis_leaf_curl_India_virus_associated_betasatellite__Pragpur" : [ - "NC_024490" - ], - "Mammalian_orthoreovirus_3__MPC_04" : [ - "NC_013229", - "NC_013226", - "NC_013228", - "NC_013234", - "NC_013233", - "NC_013231", - "NC_013225", - "NC_013232", - "NC_013227", - "NC_013230" - ], - "Lucerne_transient_streak_virus_satellite_RNA" : [ - "NC_003798", - "MTSCA" - ], - "Enterovirus_A71_75_Yamagata_org" : [ - "AB550338" - ], - "Thermococcus_AM4" : [ - "NC_016051" - ], - "Tomato_yellow_margin_leaf_curl_virus__virus_57" : [ - "NC_005853", - "NC_005852" - ], - "Hepatitis_C_virus_subtype_6m__B4_92" : [ - "DQ835767" - ], - "Yellow_head_virus_YHV1995" : [ - "FJ848674" - ], - "Newcastle_disease_virus__ZG1999HDS" : [ - "KJ670427" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2168_1998" : [ - "FJ639740" - ], - "Hepatitis_B_virus__WY_HZ_65" : [ - "JX504538" - ], - "Hepatitis_B_virus__919070" : [ - "JN040779" - ], - "Squash_leaf_curl_virus__JO2_128" : [ - "KM595185" - ], - "Plum_pox_virus__Valjevka" : [ - "JX013532" - ], - "Hepatitis_B_virus__cyc1080" : [ - "KC774356" - ], - "Chicken_anemia_virus__SDLY08" : [ - "FJ172347" - ], - "Human_papillomavirus_type_59__Qv33361" : [ - "KC470266" - ], - "Melon_chlorotic_mosaic_virus__VE01_03" : [ - "KF670608", - "KF670609" - ], - "JC_polyomavirus__CH_5" : [ - "AB262412" - ], - "Columbid_circovirus__PL66B" : [ - "KF738867" - ], - "Turnip_mosaic_virus__FRA2" : [ - "AB701708" - ], - "Apple_stem_pitting_virus__PB66" : [ - "KF321966" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1861_2007" : [ - "FJ461317" - ], - "Measles_virus_strain_MVi_Washington_USA_18_08_1_MVi_Washington_USA_18_08_1" : [ - "JN635405" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HB_1_3_9" : [ - "EU360130" - ], - "Yaba_like_disease_virus" : [ - "NC_002642" - ], - "Usutu_virus_V28" : [ - "KJ438777" - ], - "Hepatitis_E_virus__swJ8_5" : [ - "AB248521" - ], - "Salmonella_phage_vB_SenS_Ent3" : [ - "NC_024204" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__SH1211" : [ - "KF678434" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4762_2009" : [ - "HQ541797" - ], - "Hepatitis_B_virus__D_F006PF_2004" : [ - "HQ700492" - ], - "Chickpea_chlorosis_virus_E__3498A" : [ - "KC172699" - ], - "Hepatitis_B_virus__0317_04" : [ - "DQ060827" - ], - "Human_betacoronavirus_2c_Jordan_N3_2012_Jordan_N3_2012_MG167" : [ - "KJ614529" - ], - "Hepatitis_B_virus__HBV_BAN83" : [ - "AB116085" - ], - "SARS_coronavirus_WH20__WH20" : [ - "AY772062" - ], - "Bacillus_megaterium_WSH_002" : [ - "NC_017141", - "NC_017139", - "NC_017140", - "NC_017138" - ], - "Pepper_mottle_virus__205165" : [ - "EU586132" - ], - "SARS_coronavirus_LC3__LC3" : [ - "AY395000" - ], - "Peste_des_petits_ruminants_virus_Ng76_1" : [ - "EU267274" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3676_1" : [ - "KM034554" - ], - "Serratia_marcescens_FGI94" : [ - "NC_020064" - ], - "Dengue_virus_3__mutant_BDH02_01" : [ - "DQ401689" - ], - "West_Nile_virus__WNV_1_US_BID_V4720_2003" : [ - "HM756670" - ], - "Duck_astrovirus_1_WF1201" : [ - "JX439643" - ], - "Measles_virus__MVs_Zagreb_CRO_08_03__SSPE" : [ - "DQ227320" - ], - "Tomato_yellow_leaf_curl_virus__Orzuiyeh_Iran___TYLCV_IL_IR_Or28_07" : [ - "GU076445" - ], - "Hepatitis_C_virus_subtype_1a__F718P" : [ - "EU781765" - ], - "Dengue_virus_2__E1432Y12" : [ - "KM279600" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT11B71_2005" : [ - "JF909170" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3810_2" : [ - "KM233088" - ], - "Staphylococcus_phage_phiMR25" : [ - "NC_010808" - ], - "Sheep_polyomavirus_1__VH4_S14" : [ - "NC_026942" - ], - "Rose_rosette_virus" : [ - "NC_015299", - "NC_015301", - "NC_015300", - "NC_015298" - ], - "Puumala_virus_Pallasjarvi_63Cg_98" : [ - "AJ314597" - ], - "Cowpox_virus_HumBer07_1" : [ - "KC813509" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8540_2003" : [ - "KJ627731" - ], - "Prochlorococcus_marinus_MIT_9211" : [ - "NC_009976" - ], - "Tomato_yellow_leaf_curl_virus__JS_NT" : [ - "KC312663" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c3P1_2009_c3P1" : [ - "KF514418" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1491" : [ - "KR534576" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_110857" : [ - "KP118885" - ], - "Jannaschia_CCS1" : [ - "NC_007801", - "NC_007802" - ], - "Pelargonium_line_pattern_virus__SPA4" : [ - "EU849616" - ], - "Murine_norovirus_Berlin_05_06_DE_S36" : [ - "EF531290" - ], - "Avian_leukosis_virus_Km_5943" : [ - "AB669897" - ], - "Maize_streak_virus__MSV_A_GH_gh5_Abu_2010" : [ - "KJ699353" - ], - "Maize_streak_virus__MSV_B1_Za_MarK_g193_2006" : [ - "EU628589" - ], - "Cowpea_chlorotic_mottle_virus" : [ - "NC_003542", - "NC_003541", - "NC_003543" - ], - "Human_poliovirus_1__DOR00041C2" : [ - "AF405680" - ], - "Yokose_virus_Oita_36" : [ - "NC_005039" - ], - "Porcine_epidemic_diarrhea_virus_CHGD_01" : [ - "JX261936" - ], - "Tomato_leaf_curl_Liwa_virus__LW1" : [ - "NC_023312" - ], - "Coxsackievirus_A4__701_SH_CHN_2010" : [ - "KJ541163" - ], - "Avian_leukosis_virus__CAUTS01" : [ - "JF932002" - ], - "Norovirus_Hu_GII_4_Akita2_2006_JP_Hu_GII_4_Akita2_2006_JP" : [ - "AB447437" - ], - "Torque_teno_sus_virus_1a__TTV1Bj4_2" : [ - "HM633247" - ], - "Bluetongue_virus_9_BTV_9RSA_WT" : [ - "JN255958", - "JN255959", - "JN255955", - "JN255953", - "JN255961", - "JN255960", - "JN255957", - "JN255954", - "JN255952", - "JN255956" - ], - "Infectious_bursal_disease_virus_OKYMT" : [ - "D83985" - ], - "Maize_streak_virus__MSV_A_ZA_Pot9_O34_1979" : [ - "FJ882137" - ], - "Human_papillomavirus_type_16__Qv02376" : [ - "HQ644260" - ], - "Squash_leaf_curl_virus__IL3_105" : [ - "KM595127" - ], - "Hepatitis_B_virus__Vac02_C_m604" : [ - "KJ173386" - ], - "Hepatitis_B_virus__B3_10" : [ - "HQ231885", - "GU815603" - ], - "Hepatitis_B_virus__HBV_Chi4" : [ - "AB073824" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP3A_subpopulation_2" : [ - "JN013992" - ], - "Enterobacteria_phage_T7__P" : [ - "AY264777" - ], - "West_Nile_virus__WNV_1_US_BID_V4897_2007" : [ - "HQ671730" - ], - "Hardenbergia_virus_A__HarVA_57" : [ - "NC_015395" - ], - "Torque_teno_virus_15__TJN01" : [ - "NC_014096" - ], - "Bluetongue_virus_2__RSAvvvv_02" : [ - "AJ586665" - ], - "Hepatitis_B_virus__C1_3" : [ - "GU815620" - ], - "Bacillus_anthracis_A0248" : [ - "NC_012656", - "NC_012659", - "NC_012655" - ], - "Norovirus_Hu_GII_4_Kumamoto2_2007_JP_Hu_GII_4_Kumamoto2_2007_JP" : [ - "AB541278" - ], - "Human_immunodeficiency_virus_1__04ZASK165B1" : [ - "DQ396387" - ], - "Hepatitis_B_virus__CX026C_e241" : [ - "KJ173285" - ], - "Variovorax_paradoxus_S110" : [ - "NC_012792", - "NC_012791" - ], - "Sandfly_fever_Naples_virus_Toscana_ISS_Phl_3" : [ - "NC_006319" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1945_2008" : [ - "FJ461336" - ], - "Apple_mosaic_virus__26XII7" : [ - "HG328281" - ], - "Hepatitis_B_virus__cww1093" : [ - "KC774270" - ], - "Hepatitis_delta_virus_Miyako_JA_M7" : [ - "AB118823" - ], - "Human_coronavirus_HKU1__HKU1" : [ - "NC_006577" - ], - "Human_poliovirus_1__DOR01012" : [ - "AF405670" - ], - "Deinococcus_maricopensis_DSM_21211" : [ - "NC_014958" - ], - "Potato_virus_Y_strain_NTN_NTN_N4" : [ - "FJ204164" - ], - "Bean_golden_mosaic_virus__BR_Pai13_11" : [ - "KJ939749" - ], - "Potato_virus_Y__E30" : [ - "HM991453" - ], - "West_Nile_virus__AVA1202615" : [ - "KC736489" - ], - "Bacillus_subtilis_BAB_1" : [ - "NC_020832" - ], - "Variola_virus_Brazil_1966__v66_39_Sao_Paulo" : [ - "DQ441419" - ], - "Rift_Valley_fever_virus_ZH_501" : [ - "DQ380149", - "DQ375406", - "DQ380200" - ], - "Human_herpesvirus_5__Toledo_BAC" : [ - "AC146905" - ], - "Feline_coronavirus_Felis_catus_NLD_UU82_2010" : [ - "KF530117" - ], - "Hepatitis_B_virus__CHN_QH29" : [ - "DQ478893" - ], - "Tobacco_streak_virus__2334" : [ - "JX463337", - "JX463339", - "JX463338" - ], - "Hepatitis_C_virus_subtype_6p__QC216" : [ - "EF424626" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4755_2009" : [ - "JF937643" - ], - "Human_immunodeficiency_virus_1__98VNHD11" : [ - "FJ185234" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V459_2006" : [ - "EU482864" - ], - "Hepatitis_B_virus__bww1099" : [ - "KC774385" - ], - "Porcine_bocavirus_2_pig_ZJD_China_2006__PBoV2" : [ - "HM053694" - ], - "West_Nile_virus__WNV_1_US_BID_V5179_2004" : [ - "JF488089" - ], - "Porcine_circovirus_2__QZ0925" : [ - "GU325767" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1003_2006" : [ - "EU482448" - ], - "Prevotella_melaninogenica_ATCC_25845" : [ - "NC_014370", - "NC_014371" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_16_2013" : [ - "KF600644" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B3J3" : [ - "JN053448" - ], - "Dengue_virus_2__DENV_2_VN_BID_V997_2006" : [ - "EU482541" - ], - "Porcine_circovirus_2__2_PPL" : [ - "HM009338" - ], - "Porcine_epidemic_diarrhea_virus_JS2008" : [ - "KC210146" - ], - "Ethanoligenens_harbinense_YUAN_3" : [ - "NC_014828" - ], - "Human_immunodeficiency_virus_1__mCSW105" : [ - "AB097872" - ], - "Human_metapneumovirus_HMPV_ARG_97_2002" : [ - "KF530183" - ], - "Human_immunodeficiency_virus_1__CU29" : [ - "AY588971" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__PRRSV_2_Hungary_102_2012" : [ - "KM514315" - ], - "Hepatitis_B_virus_Ehi_OM_lam_6_1" : [ - "AB195945" - ], - "Plautia_stali_intestine_virus" : [ - "NC_003779" - ], - "Norovirus_Hu_GII_4_Shimane5_2007_JP_Hu_GII_4_Shimane5_2007_JP" : [ - "AB541352" - ], - "Sugarcane_streak_mosaic_virus__HN_YZ49" : [ - "KJ187048" - ], - "Tobacco_rattle_virus__TpO1" : [ - "AJ009833" - ], - "Bluetongue_virus_9_IND2005_01" : [ - "AM900388" - ], - "Human_papillomavirus_type_16_CU12" : [ - "JQ004096" - ], - "Hepatitis_B_virus__739_11_1979" : [ - "DQ463788" - ], - "Rangifer_tarandus_papillomavirus_2__RtPV2" : [ - "NC_021930" - ], - "Maize_streak_virus__UMask_23" : [ - "EF547070" - ], - "Tomato_severe_rugose_virus_PJU_Sao_Paulo" : [ - "FJ824808" - ], - "Human_herpesvirus_5_BE_5_2012" : [ - "KP745635" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda28_05" : [ - "KC706639" - ], - "Shewanella_putrefaciens_CN_32" : [ - "NC_009438" - ], - "Bluetongue_virus_2__81641" : [ - "DQ191271" - ], - "West_Nile_virus__WNV_1_US_BID_V4616_2003" : [ - "HM488233" - ], - "Hepatitis_B_virus__B1" : [ - "FJ904425", - "EU939580" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_193" : [ - "JQ765568" - ], - "Hepatitis_B_virus__524_3_1979" : [ - "DQ463792" - ], - "Potato_virus_Y_strain_NTN_NTN_HR1" : [ - "FJ204166" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_Asia_1_HNK_CHA_05" : [ - "EF149010" - ], - "Maize_streak_virus__MSV_A_RE_Pie6_Mic30_1991" : [ - "HQ693398" - ], - "Dengue_virus_2__DENV_2_NI_BID_V672_2005" : [ - "EU482602" - ], - "Human_respiratory_syncytial_virus_RSVA_GN435_11" : [ - "JX627336" - ], - "Porcine_circovirus_2_BP_PCV2a_1" : [ - "KM924364" - ], - "Bat_hepatitis_virus__PEPR7" : [ - "KF939649" - ], - "Foot_and_mouth_disease_virus___type_O_Chu_Pei" : [ - "AF026168" - ], - "WU_Polyomavirus__M241" : [ - "GU296393" - ], - "Tacaribe_mammarenavirus" : [ - "NC_004293", - "NC_004292" - ], - "Hepatitis_B_virus__M85_1043" : [ - "EU330998" - ], - "Enterobacteria_phage_ID8" : [ - "DQ079898" - ], - "Human_immunodeficiency_virus_1__04ZASK178B1" : [ - "DQ093587" - ], - "Yellow_fever_virus__ArD181676" : [ - "JX898879" - ], - "Arabis_mosaic_virus" : [ - "AB279741", - "AB279739", - "AB279740" - ], - "Mycobacterium_phage_vB_MapS_FF47" : [ - "NC_021063" - ], - "Cyanophage_P_RSM3_P_RSM3" : [ - "HQ634176" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1508_2007" : [ - "EU660414" - ], - "Ovine_enterovirus_ovine_TB4_OEV_2009_HUN" : [ - "JQ277724" - ], - "Hepatitis_B_virus_551_26" : [ - "KR013799" - ], - "Hepatitis_B_virus__THB41_LC" : [ - "JN664947" - ], - "Helicoverpa_armigera_stunt_virus" : [ - "NC_001981" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_22_2011" : [ - "KJ686276" - ], - "Enterovirus_A71_Shanghai_117_2009" : [ - "HQ891928" - ], - "Human_bocavirus__HBov_sh1" : [ - "JN632511" - ], - "Human_papillomavirus_type_52__JP0342" : [ - "AB819272" - ], - "Glossina_pallidipes_salivary_gland_hypertrophy_virus" : [ - "NC_010356" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V146_2002" : [ - "EU155219" - ], - "Hepatitis_B_virus__SHB3A3" : [ - "KJ598673" - ], - "Methanococcus_maripaludis_C6" : [ - "NC_009975" - ], - "Human_papillomavirus_type_18__Qv03132" : [ - "EF202143" - ], - "Hepatitis_B_virus__E1_4" : [ - "GU815685" - ], - "JC_polyomavirus__JCV176FLC_07" : [ - "JF424905" - ], - "Merremia_mosaic_virus" : [ - "NC_007966", - "NC_007965" - ], - "BK_polyomavirus__THK_6" : [ - "AB211378" - ], - "Turkey_adenovirus_1_D90_2" : [ - "NC_014564" - ], - "Feline_coronavirus_Felis_catus_NLD_UU62_2010" : [ - "KF530136" - ], - "Dengue_virus_2__DENV_2_TH_BID_V3501_1995" : [ - "GQ868543" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO16AI2_2009" : [ - "JF909140" - ], - "Plumeria_mosaic_virus__Plu_Ind_1" : [ - "NC_026816" - ], - "Hepatitis_B_virus__KUHB95" : [ - "AY247032" - ], - "Tembusu_virus_TMUV_SH001" : [ - "KP742476" - ], - "Cowpox_virus_HumLue09_1" : [ - "KC813494" - ], - "Hepatitis_B_virus__ayw" : [ - "AY661792" - ], - "Bovine_nidovirus_TCH5__TCH5" : [ - "NC_027199" - ], - "Beak_and_feather_disease_virus__ARB4_ZA" : [ - "AY450440" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1860_2007" : [ - "FJ461316" - ], - "Usutu_virus_5684" : [ - "KJ438716" - ], - "Agrobacterium_phage_7_7_1" : [ - "NC_019519" - ], - "Human_polyomavirus_10__10ww" : [ - "JX262162" - ], - "Tobacco_mosaic_virus__Zhenfeng" : [ - "HE818459" - ], - "Bean_yellow_mosaic_virus_M11" : [ - "AB079886" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1506_2007" : [ - "EU660412" - ], - "Tembusu_virus__SDSG" : [ - "KJ740746" - ], - "West_Nile_virus__WNV_1_US_BID_V4186_1999" : [ - "HM488125" - ], - "Bacillus_thuringiensis_HD_789" : [ - "NC_018517", - "NC_018510", - "NC_018512", - "NC_018511", - "NC_018509", - "NC_018516", - "NC_018508" - ], - "SARS_coronavirus_Sin846" : [ - "AY559094" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8397_2003" : [ - "KJ627670" - ], - "Hepatitis_B_virus__patient_27" : [ - "KF767451" - ], - "Rotavirus_A_RVA_Human_wt_FRA_E8997_2013_G1P_8__RVA_Human_wt_FRA_E8997_2013_G1P_8" : [ - "HG917358", - "HG917361" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_MN184" : [ - "EF484031" - ], - "Dengue_virus_3__DENV_3_US_BID_V1491_2003" : [ - "EU687239" - ], - "IDIR_agent" : [ - "X16949" - ], - "Hepatitis_B_virus__LAMr_Pt__31_Adefovir_treated_Pt__12" : [ - "AB367422" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5982_1" : [ - "KR105332" - ], - "Hepatitis_B_virus_497_15" : [ - "KR013948" - ], - "Hepatitis_B_virus__I73" : [ - "FJ562245" - ], - "Dengue_virus_1__ARG0028" : [ - "AY277665" - ], - "Bluetongue_virus_2_SPA2005_01__Spain_2005" : [ - "AM773685" - ], - "Dengue_virus_1__DENV_1_BR_BID_V2398_2007" : [ - "FJ850090" - ], - "Cauliflower_mosaic_virus__IRN18" : [ - "AB863153" - ], - "Ignicoccus_hospitalis_KIN4_I" : [ - "NC_009776" - ], - "Tomato_chocolate_spot_virus" : [ - "NC_013076", - "NC_013075" - ], - "West_Nile_virus__WNV_1_Gallus_BID_V5112_skin" : [ - "HQ671695" - ], - "Hepatitis_B_virus__N09_M_6720A" : [ - "KJ173401" - ], - "BK_polyomavirus_GRC_5" : [ - "AB269831" - ], - "Campylobacter_jejuni_00_2425" : [ - "NC_022362" - ], - "Grapevine_red_blotch_associated_virus__1" : [ - "KP221559" - ], - "Dengue_virus_1__DV1_SL_2009b" : [ - "HQ891314" - ], - "Enterovirus_A71__02_1_067" : [ - "KP691660" - ], - "West_Nile_virus_Rabensburg_97_103" : [ - "AY765264" - ], - "Watermelon_chlorotic_stunt_virus__IL1_27" : [ - "KM820247" - ], - "Hepatitis_B_virus__6_024_5" : [ - "EU871971" - ], - "Tomato_leaf_curl_Arusha_virus__AFTT23" : [ - "NC_009030" - ], - "West_Nile_virus_68856" : [ - "EU249803" - ], - "Hepatitis_B_virus__Db" : [ - "KF584166" - ], - "Citrus_tristeza_virus__Bau282" : [ - "KC748391" - ], - "Xanthomonas_campestris_vesicatoria_85_10" : [ - "NC_007505", - "NC_007506", - "NC_007504", - "NC_007508", - "NC_007507" - ], - "Corynebacterium_glutamicum_SCgG1" : [ - "NC_021351" - ], - "Bovine_astrovirus_BAstV_GX27_CHN_2014" : [ - "KJ620980" - ], - "Rabies_virus__RV2627" : [ - "KF155001" - ], - "Hepatitis_B_virus__PNF4422" : [ - "KF779325" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5095_2009" : [ - "JF920398" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3793_2008" : [ - "GQ868633" - ], - "Tomato_mosaic_virus__99_1" : [ - "KR537870" - ], - "Hepatitis_C_virus__QC74" : [ - "KJ439781" - ], - "Pseudomonas_aeruginosa_M18" : [ - "NC_017548" - ], - "Clostridium_perfringens_SM101" : [ - "NC_008262", - "NC_008263", - "NC_008265", - "NC_008264" - ], - "Sewage_associated_circular_DNA_virus_31__SaCV_31_NZ_BS4358_2012" : [ - "NC_026276" - ], - "Houston_virus_V3982" : [ - "KC807176" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2241_2005" : [ - "JN819410" - ], - "Human_immunodeficiency_virus_1__43" : [ - "EF363126" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Hissar2_2010" : [ - "JF502397" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__TM32" : [ - "GU723755", - "GU723743" - ], - "Dobrava_Belgrade_virus_Dobrava_3970_87" : [ - "HNVNPSS" - ], - "Aggregatibacter_phage_S1249" : [ - "NC_013597" - ], - "Porcine_circovirus_2_PCV2_P8_7" : [ - "FJ716703" - ], - "Porcine_circovirus_2__Ciego_de_Avila_23" : [ - "FN687853" - ], - "Hepatitis_E_virus__HEVN2" : [ - "AB253420" - ], - "East_African_cassava_mosaic_virus__CF_CF102BE_07" : [ - "KM886001" - ], - "Hepatitis_E_virus_E116_YKH98C" : [ - "AB369687" - ], - "Human_coronavirus_HKU1_N11" : [ - "DQ415908" - ], - "Glaciecola_4H_3_7_YE_5" : [ - "NC_015498", - "NC_015497" - ], - "Mycobacterium_phage_PhrostyMug" : [ - "NC_022329" - ], - "Grapevine_leafroll_associated_virus_2__3138_07" : [ - "JX559644" - ], - "Human_immunodeficiency_virus_1_ES_P2008" : [ - "FJ670531" - ], - "Dengue_virus_1_D1_SG_05K4468DK1_2005" : [ - "EU081268" - ], - "Hepatitis_B_virus__I209" : [ - "FJ562317" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3912_2008" : [ - "GU131919" - ], - "Listeria_monocytogenes_SLCC5850" : [ - "NC_018592" - ], - "Torque_teno_sus_virus_1b__SC" : [ - "HQ204188" - ], - "Acidothermus_cellulolyticus_11B" : [ - "NC_008578" - ], - "West_Nile_virus__WNV_1_US_BID_V6418_2001" : [ - "KJ501455" - ], - "Soybean_mosaic_virus__NE_N1" : [ - "KP710869" - ], - "Human_poliovirus_1_NIE1118404" : [ - "KJ170476" - ], - "Hepatitis_B_virus__G3_8" : [ - "GU815782" - ], - "Macroptilium_yellow_spot_virus__BR_Deg1_10" : [ - "JN419016" - ], - "Hepatitis_B_virus__HBV_Ry30" : [ - "AB073854" - ], - "Photorhabdus_luminescens_laumondii_TTO1" : [ - "NC_005126" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3891_2008" : [ - "HM181960" - ], - "Dengue_virus_1__DENV_1_TH_BID_V2270_2001" : [ - "FJ687427" - ], - "Hepatitis_B_virus_Ehime_full_20_IM_820821" : [ - "AB120308" - ], - "Maize_streak_virus__MSV_KNak" : [ - "EU152256" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG638A8_11" : [ - "KJ888072" - ], - "Canine_parvovirus_2a__UY363" : [ - "KM457138" - ], - "Oceanithermus_profundus_DSM_14977" : [ - "NC_014753", - "NC_014761" - ], - "Circovirus_like_genome_RW_E_RW_E" : [ - "NC_013027" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7594_2007" : [ - "KJ189328" - ], - "Cucumber_mosaic_virus_satellite_RNA__XJs2" : [ - "DQ070747" - ], - "Enterovirus_A71_SH12_276" : [ - "KC570453" - ], - "Hepatitis_B_virus__X15_k1" : [ - "KM213037" - ], - "Tomato_bushy_stunt_virus_cherry" : [ - "NC_001554" - ], - "Porcine_circovirus_2_PuYang_PCV2" : [ - "FJ440338" - ], - "Human_parechovirus_3__152037" : [ - "GQ183026" - ], - "Homalodisca_vitripennis_reovirus__Mentone" : [ - "GU369693", - "GU369692", - "GU369687", - "GU369686", - "GU369682", - "GU369685", - "GU369688", - "GU369684", - "GU369691", - "GU369689", - "GU369683", - "GU369690" - ], - "Maize_streak_virus__MSV_A_ZA_Blu3_Ta30_2008" : [ - "HQ693402" - ], - "Simian_T_lymphotropic_virus_3__CTO_604" : [ - "NC_003323" - ], - "Human_immunodeficiency_virus_2__04JP_NMC307" : [ - "AB499693" - ], - "Sida_golden_yellow_vein_virus__Jamaica_Liguanea2_2008___Jamaica_Liguanea2_2008" : [ - "JX162593" - ], - "Human_adenovirus_34_Compton__ATCC_VR_716" : [ - "AY737797" - ], - "Sugarcane_streak_mosaic_virus__JP2" : [ - "JF488065" - ], - "Newcastle_disease_virus_Md_CH_LGD_1_2005" : [ - "KM885167" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V192_1992" : [ - "EU155341" - ], - "Human_herpesvirus_5_BE_17_2010" : [ - "KP745727" - ], - "JC_polyomavirus__JCV161FLC_46" : [ - "JF424953" - ], - "Rotavirus_A_RVA_Cow_wt_ZAF_1604_2007_G8P_1" : [ - "JN831224", - "JN831219", - "JN831218", - "JN831223", - "JN831220", - "JN831222", - "JN831225", - "JN831221", - "JN831216", - "JN831217" - ], - "Porcine_enterovirus_9" : [ - "Y14459" - ], - "Cucumber_green_mottle_mosaic_virus__SD_Melon" : [ - "KJ754197" - ], - "Tomato_leaf_deformation_virus__PA10_S9" : [ - "JX501506" - ], - "Mumps_virus_RS_12" : [ - "JQ388690" - ], - "Eubacterium_rectale" : [ - "NC_021044" - ], - "Hepatitis_B_virus__GRE3837NN" : [ - "AB302942" - ], - "Hepatitis_B_virus__HE20_CHB" : [ - "JN664927" - ], - "Chino_del_tomate_virus__Sinaloa" : [ - "DQ347945" - ], - "Hepatitis_B_virus__S411" : [ - "FJ386669" - ], - "Hepatitis_B_virus__clz2079" : [ - "KC774206" - ], - "Macroptilium_yellow_spot_virus__BR_Sti7_11" : [ - "KJ939865" - ], - "Hepatitis_B_virus__ES72_11" : [ - "JF828936" - ], - "Lagenaria_siceraria_endornavirus_California__FB" : [ - "NC_023641" - ], - "Hepatitis_B_virus__SHB814" : [ - "KJ598774" - ], - "Hepatitis_B_virus__QHN_99" : [ - "HM750152" - ], - "Japanese_encephalitis_virus__JH0418" : [ - "JN381855" - ], - "Shewanella_halifaxensis_HAW_EB4" : [ - "NC_010334" - ], - "West_Nile_virus__WNV_1_US_BID_V6665_2006" : [ - "KJ501405" - ], - "Corynebacterium_glutamicum_SCgG2" : [ - "NC_021352" - ], - "Listeria_monocytogenes_Clip80459" : [ - "NC_012488" - ], - "Solenopsis_invicta_virus_3__SF" : [ - "GU017972" - ], - "Tomato_spotted_wilt_virus__CA_3" : [ - "AY744470", - "AY744481" - ], - "Enterobacteria_phage_phiX174_alpha" : [ - "HM775307" - ], - "Hepatitis_B_virus__PNF5608" : [ - "KF779371" - ], - "Papaya_leaf_curl_virus__Pt9" : [ - "JN703795" - ], - "Hepatitis_C_virus_subtype_6a_6a65" : [ - "DQ480518" - ], - "Duck_adenovirus_1__C10_GY_001" : [ - "KJ452173" - ], - "Hepatitis_B_virus__MOD_4691" : [ - "GQ183472" - ], - "Dengue_virus_1_KD86_035" : [ - "JN638336" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1215_2007" : [ - "EU596499" - ], - "Beak_and_feather_disease_virus__D134142" : [ - "JQ782197" - ], - "Bacillus_thuringiensis_serovar_finitimus_YBT_020" : [ - "NC_017200", - "NC_017199", - "NC_017201" - ], - "Human_bocavirus__HK15" : [ - "EF450731" - ], - "Escherichia_phage_Tls" : [ - "NC_009540" - ], - "Dengue_virus_1_ThD1_0442_80" : [ - "AY732476" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1632_2006" : [ - "FJ182018" - ], - "Squash_leaf_curl_China_virus__MC1" : [ - "EF197940" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7355_2002" : [ - "KF973336" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2315_2001" : [ - "FJ744729" - ], - "Leptospira_biflexa_serovar_Patoc__Patoc_1__Paris" : [ - "NC_010844", - "NC_010843", - "NC_010602" - ], - "Human_poliovirus_3_NIE1118524" : [ - "KJ170609" - ], - "West_Nile_virus__Sad_12" : [ - "KC407673" - ], - "Hepatitis_B_virus_P17" : [ - "KJ586805" - ], - "Newcastle_disease_virus__R8" : [ - "HM063424" - ], - "Desulfomicrobium_baculatum_DSM_4028" : [ - "NC_013173" - ], - "Streptococcus_phage_MM1_1998__Portugal_1998" : [ - "DQ113772" - ], - "Hepatitis_B_virus__CAR006" : [ - "AM494689" - ], - "Ageratum_latent_virus__1998" : [ - "NC_022128", - "NC_022129", - "NC_022127" - ], - "Caviid_herpesvirus_2_21222" : [ - "NC_020231" - ], - "Clostridium_botulinum_B_Eklund_17B" : [ - "NC_010674", - "NC_010680" - ], - "African_cassava_mosaic_virus__CF_CF116BE_07" : [ - "KJ887617" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V236_2005" : [ - "EU155346" - ], - "Human_immunodeficiency_virus_1__WEAU_flF6" : [ - "FJ496164" - ], - "BK_polyomavirus__MT_clone_50" : [ - "AB485703" - ], - "Tomato_chlorosis_virus__IS29" : [ - "KP114538", - "KP114529" - ], - "JC_polyomavirus__HR_7" : [ - "AB048578" - ], - "Tomato_yellow_leaf_curl_virus_HBBD" : [ - "JN990922" - ], - "Hepatitis_B_virus__SLC14" : [ - "KJ598756" - ], - "Hepatitis_C_virus_subtype_6a_6a62" : [ - "DQ480523" - ], - "Dengue_virus_1__HNRG24827" : [ - "KC692511" - ], - "West_Nile_virus__WNV_1_US_BID_V6484_2002" : [ - "KJ501321" - ], - "Dengue_virus_1__ZH398" : [ - "KC131140" - ], - "Ageratum_enation_alphasatellite__Poppy__1" : [ - "NC_019547" - ], - "Australian_bat_lyssavirus" : [ - "AF418014" - ], - "Human_poliovirus_1_NIE1018365" : [ - "KJ170445" - ], - "Hepatitis_C_virus_genotype_6__Th580" : [ - "NC_009827" - ], - "Bacillus_phage_SP10" : [ - "NC_019487" - ], - "Norovirus_Hu_GII_20477_2010_VNM_Hu_GII_20477_2010_VNM" : [ - "KC409302" - ], - "Dengue_virus_1__DENV_1_VN_BID_V962_2007" : [ - "EU482507" - ], - "Torque_teno_virus__TTV_HD23e__rheu213" : [ - "FR751504" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7615_2009" : [ - "KJ189346" - ], - "Cercopithecine_herpesvirus_2_B264" : [ - "NC_006560" - ], - "Measles_virus_strain_MVi_Florida_USA_19_09_MVi_Florida_USA_19_09" : [ - "JN635403" - ], - "Dengue_virus_3_D3_SG_05K3324DK1_2005" : [ - "EU081203" - ], - "Human_papillomavirus_type_6__109" : [ - "HG793917" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2838_2005" : [ - "FJ882570" - ], - "Mycobacterium_phage_Redi_Redi" : [ - "NC_023730" - ], - "Hepatitis_B_virus__I_T97" : [ - "GU456678" - ], - "BK_polyomavirus__SHA_55" : [ - "AB365173" - ], - "Chlamydophila_pneumoniae_LPCoLN" : [ - "NC_017285", - "NC_017286" - ], - "Human_poliovirus_3_NIE1018492" : [ - "KJ170594" - ], - "Malvastrum_yellow_mosaic_Cameroon_alphasatellite__UMU1D3" : [ - "FN675303" - ], - "Canine_circovirus__UCD3_478" : [ - "KC241983" - ], - "Dengue_virus_Hb33_CHN_2014" : [ - "KR052012" - ], - "Halastavi_arva_RNA_virus" : [ - "NC_016418" - ], - "Staphylococcus_saprophyticus_ATCC_15305" : [ - "NC_007352", - "NC_007350", - "NC_007351" - ], - "Abutilon_mosaic_Brazil_virus__BgV01A_1_C22" : [ - "JF694482" - ], - "Dengue_virus_2_D2_FJ_UH40_1971" : [ - "HM582100" - ], - "Streptococcus_mutans_NN2025" : [ - "NC_013928" - ], - "Pea_stem_necrosis_virus" : [ - "NC_004995" - ], - "Rhynchosia_golden_mosaic_Yucatan_virus__239" : [ - "NC_012482" - ], - "Porcine_circovirus_2_TS" : [ - "DQ355153" - ], - "Potato_virus_V__DV_42" : [ - "NC_004010" - ], - "Tobacco_curly_shoot_alphasatellite__Y277" : [ - "FN678899" - ], - "Bluetongue_virus_9__K8" : [ - "JF443155" - ], - "Halorubrum_pleomorphic_virus_6" : [ - "NC_017089" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLI4230_2010" : [ - "KJ672579" - ], - "Squash_leaf_curl_virus__JO2_116" : [ - "KM595181" - ], - "Human_immunodeficiency_virus_1__CH534_w12" : [ - "KC156221" - ], - "Hepatitis_B_virus__C46" : [ - "EU939548" - ], - "Porcine_astrovirus_4__AstV4_US_IL135" : [ - "JX556692" - ], - "Hepatitis_B_virus__P8" : [ - "GQ477464" - ], - "Rice_stripe_virus__JY" : [ - "EF141327", - "EF141328", - "EF141329", - "EF141330" - ], - "Newcastle_disease_virus_go_CH_LHLJ_2_06" : [ - "KJ607167" - ], - "Infectious_bronchitis_virus__SDIB821_2012" : [ - "KF574761" - ], - "Dengue_virus_3_95016_BR_PE_02" : [ - "KC425219" - ], - "Hepatitis_B_virus__7_D1_5_7" : [ - "GU815652" - ], - "SARS_coronavirus_LC5__LC5" : [ - "AY395002" - ], - "Watermelon_mosaic_virus_Dendrobium" : [ - "HQ384216" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__KSA27_DNA1_3" : [ - "HG530546" - ], - "Hepatitis_B_virus__SEA_06" : [ - "KM999993" - ], - "Cotton_leaf_curl_Multan_DNA_betasatellite__India_Bhangha06_Kenaf_2006" : [ - "EU825206" - ], - "Hepatitis_B_virus__PNF4756" : [ - "KF779338" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SI3D_11" : [ - "FJ914401" - ], - "Hepatitis_B_virus__Yanomami114" : [ - "DQ899148" - ], - "Dengue_virus_1__DENV_1_VN_BID_V829_2006" : [ - "EU482823" - ], - "Human_parainfluenza_virus_1_HPIV1_FRA_31225147_2011" : [ - "KF530209" - ], - "BK_polyomavirus__KT_815_4_USA" : [ - "KF055893" - ], - "Phodopus_sungorus_papillomavirus_type_1" : [ - "HG939559" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2023_2002" : [ - "FJ639700" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_13_2012" : [ - "KJ672465" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V698_2006" : [ - "EU155283" - ], - "Tobacco_bushy_top_virus__YWSh" : [ - "FN256356" - ], - "Hepatitis_B_virus__G76" : [ - "JQ040149" - ], - "Human_respiratory_syncytial_virus_A_WI_629_Q0282_10" : [ - "JF920054" - ], - "West_Nile_virus__WNV_1_US_BID_V6691_2004" : [ - "KJ501423" - ], - "Dengue_virus_2__MD1618" : [ - "FM210246" - ], - "Streptococcus_agalactiae_ILRI005" : [ - "NC_021486" - ], - "Soybean_mosaic_virus__WS110" : [ - "FJ640960" - ], - "Kribbella_flavida_DSM_17836" : [ - "NC_013729" - ], - "Japanese_encephalitis_virus_JE_vaccine_China_Chengdu_Institute_of_Biological__Products_SA14_14_2" : [ - "KC517497" - ], - "Porcine_circovirus_2__Sch201402" : [ - "KM272212" - ], - "Penaeid_shrimp_infectious_myonecrosis_virus_Brazil" : [ - "KJ556923" - ], - "Cyanothece_ATCC_51142" : [ - "NC_010541", - "NC_010547", - "NC_010543", - "NC_010546", - "NC_010539", - "NC_010542" - ], - "Rice_stripe_virus__BSh04" : [ - "AJ875061", - "AJ871748" - ], - "Tursiops_truncatus_papillomavirus_7_Tt09_43" : [ - "JN709472" - ], - "Rice_stripe_virus__Isolate_T" : [ - "NC_003754" - ], - "Enterovirus_A71_26M_AUS_4_99_GuaR1" : [ - "JQ950555" - ], - "Porcine_circovirus_2_FMV05_6505" : [ - "DQ220729" - ], - "Dengue_virus_2__DENV_2_NI_BID_V747_2006" : [ - "EU482696" - ], - "Human_poliovirus_2_NIE1118440" : [ - "KJ170560" - ], - "Hepatitis_B_virus_42339" : [ - "FN545840" - ], - "Hepatitis_B_virus__2B3284" : [ - "GQ922004" - ], - "Bean_golden_mosaic_virus__BR_Car4_10" : [ - "JN419004" - ], - "Porcine_circovirus_2__DE125_13" : [ - "KP698394" - ], - "Wheat_dwarf_virus__Triticale_117" : [ - "KJ473702" - ], - "Hepatitis_B_virus__1763" : [ - "FJ386580" - ], - "Human_papillomavirus_type_169__KC6" : [ - "JX413105" - ], - "Goose_circovirus__1020111GB" : [ - "KP203866" - ], - "Torque_teno_midi_virus_1__MD1_073" : [ - "AB290918" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Bathinda1_2010" : [ - "JF502390" - ], - "Hepatitis_B_virus__MY193082" : [ - "KJ803810" - ], - "Hepatitis_B_virus_009" : [ - "AB900098" - ], - "Human_immunodeficiency_virus_1__C_96BW11_06" : [ - "AF110970" - ], - "Kineococcus_radiotolerans_SRS30216" : [ - "NC_009806", - "NC_009660", - "NC_009664" - ], - "Middelburg_virus__ArTB_5290" : [ - "KM115531" - ], - "Gallid_herpesvirus_1__WG" : [ - "JX458823" - ], - "Bluetongue_virus_4__92069" : [ - "DQ191281" - ], - "Hepatitis_B_virus__HBV_Ya16" : [ - "AB073845" - ], - "Salmonid_alphavirus_subtype_3__SAV3_6_H_10" : [ - "KC122922" - ], - "Mythimna_separata_entomopoxvirus__L" : [ - "NC_021246" - ], - "African_cassava_mosaic_virus__MG_MG310A1_10" : [ - "KJ887978" - ], - "Viral_hemorrhagic_septicemia_virus_Cod_Ulcus" : [ - "Z93414" - ], - "Human_immunodeficiency_virus_1__04ZASK140B1" : [ - "AY901973" - ], - "Hepatitis_B_virus__SHB54" : [ - "KJ598706" - ], - "Human_herpesvirus_2__HSV_2_JP_BID_G32590_JA6" : [ - "KR135326" - ], - "Staphylococcus_phage_GH15" : [ - "NC_019448" - ], - "Bluetongue_virus_6409_02" : [ - "AY775154" - ], - "Human_papillomavirus_type_49" : [ - "NC_001591" - ], - "JC_polyomavirus__MC_8" : [ - "AB372038" - ], - "Mungbean_yellow_mosaic_virus__VN5" : [ - "JX244173", - "JX244178" - ], - "Human_rhinovirus_B14" : [ - "NC_001490" - ], - "Hepatitis_B_virus__MY824318" : [ - "KJ803791" - ], - "Small_begomovirus_associated_satellite__wf_S22" : [ - "KJ859183" - ], - "Tomato_chlorosis_virus__YG" : [ - "KP114528", - "KP114526" - ], - "Hepatitis_B_virus__2B3654" : [ - "GQ922001" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2740_2007" : [ - "FJ898382" - ], - "Cotton_leaf_curl_Multan_alphasatellite" : [ - "FR873571", - "HE978345", - "HF564601", - "HE965680", - "HE966424", - "HF564600", - "FR873573", - "HF564602", - "FR873572", - "HE978346", - "HE965684", - "HE978347", - "HE978348", - "NC_018082", - "HE979546", - "HE979548", - "HF564605" - ], - "Sweet_potato_feathery_mottle_virus__CW137" : [ - "KP115608" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V80_2002" : [ - "EU529680" - ], - "Citrus_tristeza_virus__FS703_T30" : [ - "KC517491" - ], - "Cronobacter_phage_ESP2949_1" : [ - "NC_019509" - ], - "Hepatitis_B_virus_551_5" : [ - "KR013978" - ], - "Bat_CoV_273_2005_BtCoV_273_2005" : [ - "DQ648856" - ], - "Hepatitis_B_virus__T1903_IC" : [ - "JN664920" - ], - "Coxsackievirus_B3_SSM_CVB3" : [ - "GU109481" - ], - "JC_polyomavirus__JCV144_40" : [ - "JF424889" - ], - "Kappapapillomavirus_1" : [ - "NC_002232" - ], - "Bhendi_yellow_vein_India_virus__India_Hyderabad_OY65_2005___OY65" : [ - "GU112035" - ], - "Porcine_circovirus_2__3014_4_Treviso_4_28_12_2010" : [ - "KP231159" - ], - "Hepatitis_delta_virus_dFr2395_dFr2395" : [ - "AM779579" - ], - "Swine_hepatitis_E_virus__CHN_SD_sHEV" : [ - "KF176351" - ], - "Hepatitis_B_virus__H29" : [ - "FJ349209" - ], - "Porcine_circovirus_2__JZS1" : [ - "KC821781" - ], - "Porcine_circovirus_1__Tian_Jin" : [ - "GU371908" - ], - "Porcine_circovirus_2__AUT2" : [ - "AY424402" - ], - "Norovirus_Hu_GII_30257_2009_VNM_Hu_GI_30257_2009_VNM" : [ - "KC409317" - ], - "Equine_rotavirus_A_FI23" : [ - "KM454506", - "KM454503", - "KM454512", - "KM454513", - "KM454508", - "KM454510", - "KM454507", - "KM454504", - "KM454505", - "KM454511" - ], - "Tobacco_mosaic_virus" : [ - "V01409", - "NC_001367", - "AF165190", - "HE818410", - "AX194392" - ], - "Pseudomonas_phage_JD024" : [ - "NC_024330" - ], - "Calf_giraffe_coronavirus_US_OH3_2006_US_OH3_2006_BO_13151" : [ - "EF424624" - ], - "Hepatitis_delta_virus_Miyako_JA_M33" : [ - "AB118843" - ], - "Dengue_virus_2_DENV_2_PR_5DN_1994" : [ - "GQ398305" - ], - "Human_papillomavirus_type_11_CU20" : [ - "JQ773412" - ], - "Rabies_virus_GXHXN" : [ - "KC169986" - ], - "Hepatitis_B_virus__N205C_e410" : [ - "KJ173425" - ], - "Torque_teno_sus_virus_1b__PTTV2b_VA" : [ - "GU456385" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_Mahe_SC01B01_2006" : [ - "JF909151" - ], - "Human_immunodeficiency_virus_1__16" : [ - "EF363122" - ], - "Human_polyomavirus_6__607b" : [ - "HM011561" - ], - "Small_begomovirus_associated_satellite__wf_S12" : [ - "KJ859173" - ], - "Xanthomonas_axonopodis_Xac29_1" : [ - "NC_020801", - "NC_020797", - "NC_020800", - "NC_020798" - ], - "Hepatitis_B_virus__CHN_D20" : [ - "DQ478899" - ], - "Enterobacteria_phage_NC56" : [ - "DQ079892" - ], - "Grapevine_virus_E__GFMG_1" : [ - "KF588015" - ], - "Hepatitis_B_virus__Ia_4" : [ - "AY596104" - ], - "Maize_streak_virus___E_Pat__MSV_E_MSV_Pat" : [ - "AF329888" - ], - "Apple_geminivirus_PL_2015__China" : [ - "NC_026760" - ], - "Hepatitis_B_virus__HBV35" : [ - "KC875339" - ], - "Human_immunodeficiency_virus_1__CANA3FULL" : [ - "AY779550" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1511_2007" : [ - "EU660415" - ], - "West_Nile_virus__WNV_1_US_BID_V6431_2002" : [ - "KJ501295" - ], - "Rahnella_Y9602" : [ - "NC_015062", - "NC_015063", - "NC_015061" - ], - "JC_polyomavirus__ES_1" : [ - "AB074578" - ], - "Human_adenovirus_54_Kobe_H" : [ - "NC_012959" - ], - "Porcine_stool_associated_circular_virus_7__EP3_C" : [ - "KJ577814" - ], - "Leptospira_borgpetersenii_serovar_Hardjo_bovis_L550" : [ - "NC_008508", - "NC_008509" - ], - "Norovirus_Hu_GII_4_Iwate4_2007_JP_Hu_GII_4_Iwate4_2007_JP" : [ - "AB541273" - ], - "Okra_yellow_vein_disease_associated_sequence" : [ - "NC_005051", - "AJ316043" - ], - "Hepatitis_B_virus__V15" : [ - "HM363598", - "KM359477" - ], - "Barley_yellow_dwarf_virus_GAV__YL4" : [ - "KF523380" - ], - "Norovirus_Hu_GII_4_Toyama4_2007_JP_Hu_GII_4_Toyama4_2007_JP" : [ - "AB541359" - ], - "Simian_virus_40__SV40_PV_232" : [ - "EF579662" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y241" : [ - "AJ888452" - ], - "Hepatitis_B_virus__HBV_Ku1" : [ - "AB073837" - ], - "Hepatitis_B_virus" : [ - "AB056516", - "EU306706", - "AB111123", - "AY161141", - "EU306698", - "AY373432", - "AY161154", - "DQ788835", - "EU439010", - "AB048703", - "AY161151", - "EU306722", - "HQ622095", - "JN182331", - "AM295799", - "AB048705", - "GQ872211", - "AB246338", - "EU439015", - "EU439018", - "HE981181", - "AY903452", - "AB048704", - "AY161161", - "EU306674", - "EU439006", - "EU306694", - "EU306695", - "AB116654", - "EU306683", - "EU306672", - "EU306699", - "EU306723", - "EU306675", - "JN182334", - "AY373428", - "EU306729", - "X85254", - "EU306671", - "AB111121", - "EU306719", - "EU306704", - "EU439012", - "EU306710", - "AB198078", - "AB368295", - "EU306680", - "AB198084", - "AM295795", - "AY161142", - "HE981174", - "HE981185", - "JN182325", - "EU306701", - "AB111124", - "EU306703", - "AM295797", - "AB048701", - "EU306725", - "AB368297", - "AY033072", - "JN182326", - "HQ646556", - "EF634481", - "AF143304", - "AF286594", - "HE981182", - "EU439009", - "AF143305", - "AB111119", - "AY945307", - "AY161149", - "EU306717", - "HE981173", - "AY161146", - "AB246344", - "AY161157", - "EU306684", - "HPBCG", - "AB059661", - "AX155589", - "AB198079", - "AY161143", - "AB247916", - "AB246342", - "JN182332", - "HPBADRC", - "AY373430", - "HE981184", - "HQ646555", - "AB246337", - "AF537371", - "AY148342", - "AB302095", - "AB246335", - "JN182327", - "JN182324", - "AB111116", - "HE981179", - "HQ646554", - "EU439005", - "AB048702", - "EU439025", - "JN182328", - "EU306678", - "EU306692", - "AF536524", - "AB368296", - "GQ872210", - "AB246348", - "AJ344117", - "EU306712", - "AY161144", - "HPBADR1CG", - "HPBADWZ", - "AF533983", - "EU439020", - "X02496", - "HE981177", - "AY161148", - "AF143301", - "AF143306", - "JN182321", - "JN182322", - "AB064310", - "AB056515", - "AY123041", - "EU306716", - "AF462041", - "DQ683578", - "AF537372", - "AB288026", - "AB111113", - "AB111117", - "AB549213", - "AY373429", - "HE981171", - "EU306728", - "AB246339", - "EU306690", - "EF634480", - "JN182323", - "AF461043", - "AY161162", - "EU306673", - "AY341335", - "AY161150", - "EU306688", - "EU306711", - "V01460", - "AB111122", - "EU306724", - "AY161153", - "D50517", - "AB064313", - "EU306677", - "KC012652", - "AY161155", - "HPBMUT", - "EU306670", - "S75184", - "AB426467", - "AY123424", - "JN182333", - "U95551", - "EU439024", - "EU306713", - "AF143308", - "AF143302", - "EU439007", - "AF143299", - "EU306714", - "AB246345", - "AY161158", - "EU439016", - "AY161159", - "EU306689", - "EU439022", - "AB198080", - "AB246343", - "EU306700", - "AB246346", - "AF143303", - "AY161145", - "EU306727", - "AY161160", - "EU306691", - "D50522", - "HPBADWZCG", - "EU306696", - "EU306693", - "EU306705", - "KC012653", - "EU306726", - "D50519", - "AB246336", - "EU439008", - "JN182329", - "EU306686", - "EU306709", - "EU306697", - "AB246340", - "AB059659", - "JN182318", - "AB246341", - "AB275308", - "HE981180", - "JN182320", - "AY161140", - "AB111125", - "EU306708", - "HE981178", - "EU439019", - "EU306707", - "AB198077", - "AB198076", - "AJ012207", - "AB111120", - "AB059660", - "HE981183", - "EU306720", - "AM295800", - "AY161163", - "AY161147", - "JN182330", - "EU306702", - "AF143307", - "EU306681", - "AB056513", - "AB050018", - "EU306687", - "EU306715", - "EU439011", - "D50520", - "AB111114", - "AY033073", - "EU306718", - "EU306682", - "AB064316", - "AY161139", - "HE981175", - "AY161138", - "AY161152", - "S50225", - "AB198081", - "AB064311", - "AB111112", - "AB111118", - "HE981172", - "AB064315", - "AM410963", - "AF143300", - "AB056514", - "AB064314", - "D50521", - "AB198083", - "D50518", - "EU439021", - "EU439023", - "JN182319", - "AY161156", - "EU306685", - "AY040627", - "AB246347", - "EU306721", - "EU306679", - "AB111115", - "HPBCGADR", - "AM295796", - "AY373431", - "AB198082", - "AB486012", - "AM295798", - "AB064312", - "AF143298", - "HQ646553", - "HQ646552", - "HE981176", - "AY128092" - ], - "Human_papillomavirus_type_58__TJ18_58" : [ - "GQ472850" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM124_1" : [ - "KM233045" - ], - "Simian_adenovirus_48__AJ75" : [ - "HQ241818" - ], - "BK_polyomavirus__J3B_3" : [ - "AB301103" - ], - "Tomato_aspermy_virus__Lucknow_UP" : [ - "EU163411" - ], - "Chicken_anemia_virus__SMSC_1P60" : [ - "AF390102" - ], - "Wheat_yellow_mosaic_virus" : [ - "NC_002350", - "NC_002349" - ], - "West_Nile_virus__WNV_1_US_BID_V6584_2012" : [ - "KJ501211" - ], - "JC_polyomavirus__GR_10" : [ - "AB372037" - ], - "Hepatitis_B_virus__HBV_13T" : [ - "EU660225" - ], - "Human_mastadenovirus_B_human_USA_UFL_Adv3a2_2007_3_P3H3F3" : [ - "KF268120" - ], - "MW_polyomavirus_MA095" : [ - "NC_018102" - ], - "Human_immunodeficiency_virus_1__00BW1686_8" : [ - "AF443093" - ], - "Simian_immunodeficiency_virus__GB1" : [ - "SIVMNDGB1" - ], - "Foot_and_mouth_disease_virus___type_A_A16_Belem_a16belem_iso80" : [ - "AY593756" - ], - "Porcine_circovirus_2_GD_TS" : [ - "AY181945" - ], - "Duck_circovirus__D11_JW_004" : [ - "KC851804" - ], - "WU_Polyomavirus_WU_Wuerzburg_01_03" : [ - "EU711054" - ], - "Hepatitis_B_virus__MY464961" : [ - "KJ803798" - ], - "Rice_ragged_stunt_virus__Longan" : [ - "FR696616" - ], - "Rhinolophus_bat_coronavirus_HKU2_HKU2_GD_430_2006" : [ - "NC_009988" - ], - "Hepatitis_B_virus__J78" : [ - "GQ377547" - ], - "Hepatitis_B_virus__HBV_TH61" : [ - "AB073831" - ], - "Dengue_virus_3_VE_61051_2006" : [ - "HQ332170" - ], - "Porcine_circovirus_2_Fh19" : [ - "AY322003" - ], - "Shewanella_MR_4" : [ - "NC_008321" - ], - "Human_immunodeficiency_virus_1__03ZASK043B1" : [ - "AY772700" - ], - "Dengue_virus_1_D1_SG_05K4147DK1_2005" : [ - "EU081258" - ], - "Human_adenovirus_17__D17" : [ - "HQ910407" - ], - "Hepatitis_B_virus__ES70_14" : [ - "JF828920" - ], - "Gossypium_punctatum_mild_leaf_curl_virus__Gossypium_gossypioides___Gossyp_1" : [ - "FJ218485" - ], - "Human_poliovirus_1__ISR1318574" : [ - "KJ019833" - ], - "Porcine_circovirus_2__INDON07_P09_07_07Lg2" : [ - "EU302141" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__YN65_18" : [ - "KC149947" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P3pp2" : [ - "FJ882936" - ], - "Guinea_fowl_coronavirus_GfCoV_FR_2011_gammaCoV_guinea_fowl_France_S_2011" : [ - "LN610099" - ], - "Hepatitis_B_virus__N005v1" : [ - "KF922414" - ], - "Enterococcus_phage_phiFL1A_phiFL1A" : [ - "NC_013646" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI1212_2011_A" : [ - "KJ627382" - ], - "Human_coronavirus_HKU1_N21" : [ - "DQ415898" - ], - "Porcine_circovirus_2_SD_ZB3" : [ - "KJ511877" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_4_2013" : [ - "KF186564" - ], - "Lactococcus_garvieae_Lg2" : [ - "NC_017490" - ], - "Hepatitis_B_virus__TW936" : [ - "EF494381" - ], - "West_Nile_virus_NY99_eqhs" : [ - "AF260967" - ], - "Human_immunodeficiency_virus_1__mIDU107" : [ - "AB097868" - ], - "Infectious_bronchitis_virus_ck_CH_LLN_130102" : [ - "KP118888" - ], - "Foot_and_mouth_disease_virus___type_A__EGY_1_2012" : [ - "KC440882" - ], - "Foot_and_mouth_disease_virus___type_A_IND17_82" : [ - "HM854024" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141282" : [ - "KR653229" - ], - "Hepatitis_B_virus__patient_373" : [ - "DQ993695" - ], - "Human_herpesvirus_5_HAN31" : [ - "JX512208" - ], - "Hepatitis_B_virus_2164" : [ - "EU796067" - ], - "Bluetongue_virus_4_RSAvvvv_04_South_Africa_Vaccine" : [ - "AM778439" - ], - "Dengue_virus_3_ThD3_0104_93" : [ - "AY676350" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9463_2013" : [ - "KJ643529" - ], - "Porcine_circovirus_2_GD_jm" : [ - "JX912914" - ], - "Hepatitis_B_virus__FMD64" : [ - "GU332690" - ], - "Papaya_ringspot_virus_Hainan" : [ - "KF734962" - ], - "Tick_borne_encephalitis_virus_Primorye_633" : [ - "HM859894" - ], - "Kalanchoe_top_spotting_virus" : [ - "NC_004540" - ], - "Bluetongue_virus_16__IND2010_cattle_16" : [ - "JX007930", - "JX007926", - "JX007928", - "JX007929", - "JX007923", - "JX007925", - "JX007931", - "JX007927" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1207_2007" : [ - "EU660406" - ], - "Porcine_circovirus_2_Fh22" : [ - "AY322002" - ], - "Foot_and_mouth_disease_virus___type_A_A20_USSR_a20ussr_iso10" : [ - "AY593760" - ], - "Sweet_potato_leaf_curl_virus_USA_SPLCV_US_BR_AM3_09" : [ - "HQ393474" - ], - "Hepatitis_B_virus__312000479" : [ - "JN792909" - ], - "Sulfolobus_spindle_shaped_virus_5" : [ - "NC_011217" - ], - "Hepatitis_B_virus__33852" : [ - "AJ627224" - ], - "Ageratum_leaf_curl_Cameroon_betasatellite__AL2B1" : [ - "FN298807" - ], - "Tomato_chlorotic_mottle_virus__Brazil" : [ - "NC_003665", - "NC_003664" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GM2" : [ - "JN662424" - ], - "Human_immunodeficiency_virus_1_subtype_E_95TNIH022" : [ - "AB032740" - ], - "Semliki_Forest_virus_SFV6" : [ - "KT009012" - ], - "Ryegrass_mosaic_virus" : [ - "NC_001814" - ], - "Human_papillomavirus_type_52__IN181391" : [ - "HQ537742" - ], - "Puumala_virus_Udmurtia_338Cg_92" : [ - "Z30708" - ], - "Hepatitis_B_virus__NH25C_e38" : [ - "KJ173317" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT33B59_2003" : [ - "JF909179" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7422_2009" : [ - "KJ627291" - ], - "Dengue_virus_2__DENV_2_NI_BID_V662_2007" : [ - "EU482638" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_144_2012" : [ - "KJ686293" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT39A37_2004" : [ - "JF909240" - ], - "Porcine_circovirus_2_fuqing0401" : [ - "DQ180392" - ], - "Clerodendron_yellow_mosaic_virus__iari" : [ - "NC_009451" - ], - "Hepatitis_B_virus__HBV68" : [ - "KC875268" - ], - "Hepatitis_B_virus__C_Tonga_BA4986_2002" : [ - "HQ700556" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1890_2007" : [ - "FJ410232" - ], - "Hepatitis_B_virus_4385_97" : [ - "EU594428" - ], - "Gill_associated_virus" : [ - "NC_010306" - ], - "Porcine_teschovirus" : [ - "GQ914053" - ], - "Hepatitis_B_virus__Va" : [ - "AY167100" - ], - "Hepatitis_B_virus__GSD_17" : [ - "HM750139" - ], - "Porcine_circovirus_2_PCV2_P8" : [ - "FJ667596" - ], - "Hepatitis_B_virus__HBV133" : [ - "JN688699" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1533_2007" : [ - "EU677160" - ], - "Enterovirus_A71_BJ393" : [ - "HM053670" - ], - "Beet_curly_top_virus__California__Logan" : [ - "NC_001412" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_LIBR0090" : [ - "KR006945" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V8_2005" : [ - "EU256058" - ], - "Potato_virus_Y_strain__N_W__N_W_Wilga" : [ - "EF558545" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1997_2004" : [ - "FJ639682" - ], - "Porcine_circovirus_2__JX0928" : [ - "GU325768" - ], - "Dengue_virus_2__DENV_2_NI_BID_V3136_2007" : [ - "HQ541787" - ], - "Human_immunodeficiency_virus_1__5082_97" : [ - "AY835772" - ], - "Human_papillomavirus_type_35__UA3189" : [ - "JX129485" - ], - "Hepatitis_C_virus_subtype_1b_MD34" : [ - "AF208024" - ], - "Hepatitis_delta_virus__HDV_DN79" : [ - "GU177114" - ], - "Beet_soil_borne_virus__IM" : [ - "EF545142", - "EF545140", - "EF545138" - ], - "JC_polyomavirus__JCV161FLC_36" : [ - "JF424943" - ], - "Lactococcus_phage_ul36_t1k1" : [ - "DQ394809" - ], - "West_Nile_virus__CO5_07" : [ - "JF957170" - ], - "JC_polyomavirus__JCV176FLC_15" : [ - "JF424903" - ], - "Hepatitis_B_virus__HCUCH11" : [ - "HM585192" - ], - "Hepatitis_B_virus__Leb32" : [ - "JN642142" - ], - "Duck_hepatitis_A_virus_1__YN" : [ - "EU395437" - ], - "Dengue_virus_1_Hawaii" : [ - "KM204119" - ], - "Temperate_fruit_decay_associated_virus__MFB25" : [ - "KR134323" - ], - "Eubacterium_siraeum_V10Sc8a" : [ - "NC_021043" - ], - "Dengue_virus_3_D3_SG_05K3325DK1_2005" : [ - "EU081204" - ], - "Human_papillomavirus_type_6__127" : [ - "HG793935" - ], - "Human_immunodeficiency_virus_1__WC10P_10" : [ - "AY314052" - ], - "Hepatitis_B_virus__D_NZL_AN12_1999" : [ - "HQ700443" - ], - "Chlamydia_trachomatis_L2_434_Bu_i" : [ - "NC_021050", - "NC_021051" - ], - "Bhendi_yellow_vein_betasatellite__Au" : [ - "KJ462079" - ], - "Sulfolobus_tokodaii_7" : [ - "NC_003106" - ], - "Squash_leaf_curl_virus__LB3_5_36" : [ - "KM595134" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JN_HS" : [ - "HM016158" - ], - "Corchorus_golden_mosaic_virus__India_Barrackpore2_2009___Barrackpore_2" : [ - "FJ790326", - "FJ790327" - ], - "JC_polyomavirus__JCV161FLC_18" : [ - "JF424926" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_68U217_1968_IE" : [ - "KC344442" - ], - "Simian_adenovirus_ch1__SAdV_ch1" : [ - "KF360047" - ], - "Macroptilium_yellow_vein_virus__BR_Pai25_11" : [ - "KJ939905" - ], - "Stackebrandtia_nassauensis_DSM_44728" : [ - "NC_013947" - ], - "Hepatitis_B_virus__A1_10" : [ - "GU815557" - ], - "Hepatitis_C_virus__isolate_JK046___JK046" : [ - "HPCJK046E2" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__GS2004" : [ - "EU880443" - ], - "Modestobacter_marinus" : [ - "NC_017955" - ], - "Hepatitis_B_virus__GSD_54" : [ - "HM750133" - ], - "Vibrio_phage_PWH3a_P1_PWH3a_P1" : [ - "NC_020863" - ], - "Porcine_epidemic_diarrhea_virus_TC_PC168_P2" : [ - "KM392226" - ], - "Hepatitis_B_virus__P010_C1_147a" : [ - "KJ173373" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4997_brain" : [ - "JF357958" - ], - "Foot_and_mouth_disease_virus___type_O__O_S07KOR_2002" : [ - "KF694737" - ], - "Hepatitis_B_virus__patient_479" : [ - "DQ993682" - ], - "Dragonfly_larvae_associated_circular_virus_7__DflaCV_7_NZ_PG5_LH" : [ - "NC_023433" - ], - "Hepatitis_B_virus__B3_9" : [ - "HQ231884", - "GU815614" - ], - "Streptococcus_pyogenes_MGAS10750" : [ - "NC_008024" - ], - "Hepatitis_B_virus__TWD347" : [ - "EF494382" - ], - "Toscana_virus_TOSV_Portugal_1983" : [ - "KM275763" - ], - "Hepatitis_C_virus__5069" : [ - "EF407424" - ], - "Hepatitis_B_virus__SWT3_1" : [ - "EU916239" - ], - "Rabies_virus__TX5960" : [ - "JQ685910" - ], - "Hepatitis_B_virus__SKR_IC" : [ - "JN664917" - ], - "Hepatitis_B_virus__GU1365" : [ - "GQ161830" - ], - "Human_papillomavirus_type_6__101" : [ - "HG793909" - ], - "Cowpea_chlorotic_mottle_virus_R" : [ - "AF325738", - "AF325737", - "AF325736" - ], - "Maize_streak_virus__MSV_A_NG_Ogb1_N36a_2007" : [ - "HQ693388" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G19080_44_419851_2007" : [ - "KR135308" - ], - "Hepatitis_C_virus__QC126" : [ - "JF735128" - ], - "Streptococcus_pyogenes_MGAS8232" : [ - "NC_003485" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culicidae_USA_5550_2009" : [ - "KJ469650" - ], - "Potato_virus_M__Uran" : [ - "AY311394" - ], - "Cotton_leaf_curl_Gezira_betasatellite__CLC43_O" : [ - "AY077799" - ], - "Squash_leaf_curl_virus" : [ - "NC_001937", - "JX131281", - "EF532620", - "NC_001936", - "EF532621", - "JX131282" - ], - "Maize_streak_virus__MSV_A4_Za_Omr_g223_2007" : [ - "EU628573" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_228H6B__228H6B" : [ - "JN819494" - ], - "Hepatitis_delta_virus_Miyako_JA_M27" : [ - "AB118839" - ], - "Hepatitis_B_virus__Alaska419" : [ - "AB287315" - ], - "Western_equine_encephalitis_virus__McMillan" : [ - "GQ287640" - ], - "Maize_streak_virus__MSV_A_ZA_Har_Riz35_2007" : [ - "HQ693414" - ], - "Horseradish_latent_virus__ID1" : [ - "NC_018858" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NMG2014" : [ - "KM000066" - ], - "Rotavirus_A_RVA_Simian_tc_ZAF_SA11_N5_1958_G3P_2" : [ - "JQ688680", - "JQ688677", - "JQ688682", - "JQ688676", - "JQ688681", - "JQ688683", - "JQ688675", - "JQ688674", - "JQ688673", - "JQ688678", - "JQ688679" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_13__AHEaCV_13_NZ_3331CO_2012" : [ - "KM874329" - ], - "Hepatitis_B_virus__2015" : [ - "FJ386638" - ], - "Usutu_virus_2985" : [ - "KJ438707" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD04_2013" : [ - "KM229805" - ], - "Chikungunya_virus__LK_EH_CH6708" : [ - "FJ513654" - ], - "Hepatitis_B_virus__BR4_NORTHEAST" : [ - "KC494402" - ], - "Bovine_coronavirus__BCoV_LUN" : [ - "AF391542" - ], - "Acidianus_filamentous_virus_7" : [ - "NC_010153" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4940_spleen" : [ - "HQ671678" - ], - "Hepatitis_B_virus__J135" : [ - "GQ377586" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2204_2001" : [ - "FJ639771" - ], - "Foot_and_mouth_disease_virus___type_O" : [ - "NC_004004" - ], - "Hepatitis_B_virus__M30a" : [ - "GQ924612" - ], - "Hepatitis_A_virus__IND_HAV_08F" : [ - "FJ360732" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9476_2013" : [ - "KJ643536" - ], - "Human_papillomavirus_type_81" : [ - "AJ620209" - ], - "Dengue_virus_1__DENV_1_NI_BID_V2330_2008" : [ - "FJ547088" - ], - "Bacillus_subtilis_natto_BEST195" : [ - "NC_017194", - "NC_017196" - ], - "Enterovirus_A71_N3340_TW_02" : [ - "EU131776" - ], - "Enterovirus_D68_US_MO_14_18950" : [ - "KM851228" - ], - "Torque_teno_mini_virus_6__TLMV_CBD203" : [ - "NC_014095" - ], - "Tomato_yellow_leaf_curl_China_virus__Y322___Y322" : [ - "AM181683" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V381_2001" : [ - "EU155262" - ], - "Monkeypox_virus__DRC_07_0045" : [ - "JX878413" - ], - "Human_rhinovirus_A59" : [ - "DQ473500" - ], - "Pseudovibrio_FO_BEG1" : [ - "NC_016646", - "NC_016642" - ], - "Malvastrum_yellow_vein_betasatellite__Y194" : [ - "AJ971462" - ], - "Turnip_mosaic_virus__GBR38" : [ - "AB701715" - ], - "Leifsonia_xyli_CTCB07" : [ - "NC_006087" - ], - "Maize_streak_virus__MSV_G_Ng_EleB_g237_2007" : [ - "EU628636" - ], - "JC_polyomavirus__GL_2" : [ - "AB195639" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Kaivara_OYKaivara_2006___OY_Kaivara" : [ - "GU111976" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD161_2013" : [ - "KM229826" - ], - "Hepatitis_B_virus__CAR026" : [ - "AM494692" - ], - "Methylotenera_301" : [ - "NC_014207" - ], - "Feline_infectious_peritonitis_virus_DF_2" : [ - "JQ408981" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5_5P20_2010_c5_5P20" : [ - "KF514401" - ], - "Hepatitis_B_virus__J69" : [ - "GQ377544" - ], - "Porcine_circovirus_2__Bd2009" : [ - "KM624035" - ], - "Hepatitis_B_virus__I_T99" : [ - "GU456661" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3760_2008" : [ - "GQ868539" - ], - "Duck_circovirus__QZ36_2012" : [ - "KC460534" - ], - "West_Nile_virus__WNV_1_US_BID_V6563_2003" : [ - "KJ501359" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__BF_Po_Okra1" : [ - "FN554581" - ], - "Human_mastadenovirus_D_human_USA_Pitts_00110_1992_NEW_P26H56F56" : [ - "KF429750" - ], - "Usutu_virus_V102" : [ - "KJ438728" - ], - "Circoviridae_6_LDMD_2013" : [ - "NC_025711" - ], - "Coxsackievirus_A6__PF3_SH_CHN_2013" : [ - "KJ541162" - ], - "Blainvillea_yellow_spot_virus__BR_Vic18_10" : [ - "KC706526" - ], - "Human_poliovirus_1__RUS_1161_96_001" : [ - "AF462419" - ], - "Dengue_virus_2__DENV_2_VE_BID_V1142_39083_5" : [ - "KF955365" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19078_A76191_2008" : [ - "KR135306" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL071A" : [ - "AB985533", - "AB985302" - ], - "Escherichia_coli_HS" : [ - "NC_009800" - ], - "Coxsackievirus_B5__3936_09" : [ - "KP233830" - ], - "Tomato_yellow_leaf_curl_virus__SJZ1" : [ - "JF727878" - ], - "Human_Respiratory_syncytial_virus_9320" : [ - "AY353550" - ], - "Parrot_hepatitis_B_virus__P1288" : [ - "JX274027" - ], - "South_African_cassava_mosaic_virus__MG_MG21B3_07" : [ - "KJ887841" - ], - "Enterovirus_B84__CIV2003_10603" : [ - "DQ902712" - ], - "Norovirus_Hu_GII_4_Sakai4_2006_JP_Hu_GII_4_Sakai4_2006_JP" : [ - "AB447450" - ], - "Paspalum_striate_mosaic_virus__AU_846_1998" : [ - "JQ948070" - ], - "Sugarcane_yellow_leaf_virus__CHN_HN1" : [ - "HQ342888" - ], - "Hepatitis_B_virus__621_14_1979" : [ - "DQ463790" - ], - "Hepatitis_B_virus__Ehime_EPCH_HBV_C1_HN" : [ - "AB640730" - ], - "Bluetongue_virus_2__80199" : [ - "DQ191266" - ], - "Usutu_virus_V18" : [ - "KJ438730" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1583_2007" : [ - "FJ024442" - ], - "Human_bocavirus__Salvador1" : [ - "JQ923422" - ], - "Euphorbia_mosaic_virus____Jamaica_Wissadula" : [ - "DQ395342" - ], - "Avian_leukosis_virus_GDFX0603" : [ - "KP686144" - ], - "Hepatitis_B_virus__S1_1" : [ - "EU916204" - ], - "Dengue_virus_2__DENV_2_US_BID_V1367_1995" : [ - "EU569706" - ], - "Banana_bunchy_top_virus__Haikou_2" : [ - "HQ616074", - "HQ616079", - "HQ616077", - "HQ616076", - "HQ616078", - "HQ616075" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7572_2007" : [ - "KJ189317" - ], - "Maize_streak_virus__MSV_H_Ng_Lag_g74_2007" : [ - "EU628638" - ], - "Hepatitis_C_virus_subtype_1a__99H" : [ - "EU781770" - ], - "Rabies_virus__WAEF03" : [ - "JQ685925" - ], - "Bean_leafroll_virus" : [ - "NC_003369" - ], - "Porcine_circovirus_2__CQWZ10" : [ - "KF742550" - ], - "Fragaria_chiloensis_latent_virus__CFRA_9087" : [ - "NC_006567", - "NC_006568" - ], - "Mycobacterium_phage_Medusa" : [ - "KF024733" - ], - "Gentian_Kobu_sho_associated_virus__Ohasama" : [ - "NC_020252" - ], - "Dengue_virus_2__DENV_2_PK_2013" : [ - "KJ010186" - ], - "Hepatitis_B_virus_1368_1" : [ - "KR013858" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_MEX_23_2004" : [ - "KF826826" - ], - "Turnip_mosaic_virus__PV389" : [ - "AB701738" - ], - "Alternanthera_yellow_vein_betasatellite" : [ - "NC_009562" - ], - "Torque_teno_virus__TTV_HD16g__gbCuCv43_4" : [ - "FR751482" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V296_2001" : [ - "EU155368" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3965_2008" : [ - "GU131745" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V350_2002" : [ - "EU155305" - ], - "Sindbis_virus__Berlin_2010A" : [ - "JX570540" - ], - "Variovorax_paradoxus_B4" : [ - "NC_022234", - "NC_022247" - ], - "Rhinovirus_C__LZ651" : [ - "JF317016" - ], - "West_Nile_virus__TX8779" : [ - "KJ786935" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V455_2006" : [ - "EU256091" - ], - "SARS_coronavirus__HC_SZ_DM1_03" : [ - "AY545915" - ], - "Hepatitis_E_virus__JE03_1760F_p5" : [ - "AB362842" - ], - "Human_immunodeficiency_virus_1__1184MB" : [ - "AY838566" - ], - "Chikungunya_virus_OPY6" : [ - "KP003807" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2997_2007" : [ - "JN819421" - ], - "Sugarcane_mosaic_virus_strain_A_Brisbane" : [ - "AJ278405" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3825_2006" : [ - "GU131911" - ], - "Enterovirus_A71__EV71_GD10_45_2010" : [ - "KJ004560" - ], - "Infectious_bronchitis_virus_CK_CH_LDL_140520" : [ - "KP790143" - ], - "Dengue_virus_1__DENV_1_BR_BID_V2381_2002" : [ - "FJ850075" - ], - "Human_rhinovirus_A61_ATCC_VR_1171" : [ - "FJ445144" - ], - "Duck_circovirus_ZC03" : [ - "EU344807" - ], - "Salmonella_phage_vB_SenS_Ent2" : [ - "NC_023608" - ], - "Escherichia_coli_APEC_O78" : [ - "NC_020163" - ], - "Bacteroides_helcogenes_P_36_108" : [ - "NC_014933" - ], - "Tomato_leaf_curl_Kumasi_virus" : [ - "NC_011096" - ], - "Tomato_yellow_leaf_curl_China_virus__SC230" : [ - "KF640689" - ], - "Sweet_potato_leaf_curl_virus__Yeojoo_507" : [ - "HM754637" - ], - "Hepatitis_B_virus__cxa1580" : [ - "KC774297" - ], - "Tomato_yellow_vein_streak_virus__G_22" : [ - "EF459696" - ], - "Reticuloendotheliosis_virus_goose_3410_06" : [ - "FJ439119" - ], - "Wolbachia_endosymbiont_of_Culex_quinquefasciatus_Pel" : [ - "NC_010981" - ], - "Hepatitis_B_virus_genotype_F_VNZ8375_2" : [ - "AB036918" - ], - "Dulcamara_mottle_virus" : [ - "NC_007609" - ], - "Hepatitis_B_virus__8070_03547" : [ - "JN792918" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3840_2008" : [ - "GU131679" - ], - "Leek_yellow_stripe_virus__Yuhang_GYH" : [ - "NC_004011" - ], - "Tomato_yellow_leaf_curl_China_virus__SC65" : [ - "GU199588" - ], - "Candidatus_Tremblaya_princeps_PCVAL" : [ - "NC_017293" - ], - "Duck_circovirus__D12_KD_001" : [ - "KC851817" - ], - "Human_parainfluenza_virus_2__VIROAF10" : [ - "KM190939" - ], - "Japanese_encephalitis_virus__IND_WB_JE2" : [ - "JX072965" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA107" : [ - "KF670674" - ], - "Hepatitis_C_virus_subtype_6a_6a77" : [ - "DQ480512" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4264_2008" : [ - "JF937651" - ], - "Dengue_virus_3_D3_SG_05K4648DK1_2005" : [ - "EU081225" - ], - "Hepatitis_B_virus__P34" : [ - "GQ477478" - ], - "Ageratum_enation_virus___Lucknow" : [ - "FJ177031" - ], - "Tomato_yellow_leaf_curl_Mali_virus_associated_DNA_beta" : [ - "NC_007485" - ], - "Human_bocavirus__HZ1002" : [ - "KP710201" - ], - "Ageratum_yellow_leaf_curl_betasatellite__WSFB1" : [ - "HQ407397" - ], - "Chikungunya_virus_LSFS" : [ - "HM045809" - ], - "Rickettsia_typhi_B9991CWPP" : [ - "NC_017062" - ], - "Human_papillomavirus_type_58__patient_specimen_GN479" : [ - "PPH58" - ], - "Croton_yellow_vein_mosaic_virus__CYVMV_Bang_Cr2" : [ - "JN831446" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_09_2012" : [ - "KJ672427" - ], - "Pepper_mottle_virus_Florida" : [ - "AF501591" - ], - "Maize_streak_virus__MSV_A_ZA_Mal6_T12_2007" : [ - "HQ693426" - ], - "Human_papillomavirus_type_5b" : [ - "PPH5BCG" - ], - "Human_immunodeficiency_virus_1__5096_89" : [ - "AY835750" - ], - "Variola_virus_Congo_1970_v70_46_Kinshasa" : [ - "DQ437583" - ], - "Prochlorococcus_phage_P_HM2_M4_259" : [ - "NC_015284" - ], - "Dengue_virus_1__DENV_1_VN_BID_V994_2006" : [ - "EU482538" - ], - "Red_clover_cryptic_virus_2__IPP_Nemaro" : [ - "NC_021097", - "NC_021096" - ], - "Dengue_virus_2__DENV_2_US_BID_V1398_1997" : [ - "EU569716" - ], - "Human_immunodeficiency_virus_1__03ZAPS067MB2" : [ - "DQ396389" - ], - "Streptococcus_pneumoniae_CGSP14" : [ - "NC_010582" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1692_2007" : [ - "FJ024460" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1226_2007" : [ - "KF955369" - ], - "Hepatitis_B_virus__P15" : [ - "EU859923" - ], - "Japanese_encephalitis_virus_JEV_sw_Mie_40_2004" : [ - "AB241118" - ], - "Lumpy_skin_disease_virus_NI_2490__Neethling_2490" : [ - "NC_003027" - ], - "Sweet_potato_leaf_curl_virus__China_Shandong11_2012" : [ - "NC_022231" - ], - "Hepatitis_B_virus_P5" : [ - "KJ586808" - ], - "Wheat_dwarf_virus__SXHC10_12" : [ - "JQ647495" - ], - "Sida_yellow_mosaic_China_virus____Hainan_8___Hn8" : [ - "AJ810096" - ], - "Hepatitis_B_virus__KOR50HCC" : [ - "GQ475354" - ], - "Helicobacter_pylori_v225d" : [ - "NC_017355", - "NC_017383" - ], - "Corynebacterium_urealyticum_DSM_7109" : [ - "NC_010545" - ], - "Dengue_virus_2__DENV_2_MX_BID_V2954_2002" : [ - "GQ199893" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V300_2005" : [ - "EU155370" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG148A2_09" : [ - "KJ887938" - ], - "Human_papillomavirus_type_68__Qv17725" : [ - "KC470277" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2779_2007" : [ - "GQ199801" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3769_2" : [ - "KM233066" - ], - "Human_immunodeficiency_virus_1__07MYKT014" : [ - "GQ175881" - ], - "Hepatitis_B_virus_4620_97" : [ - "EU594391" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US44" : [ - "KJ019103" - ], - "HBV_genotype_D__TRF08226" : [ - "AB554016" - ], - "Bean_common_mosaic_virus_strain_peanut_stripe_peanut_stripe_Laixi" : [ - "KF439722" - ], - "Faecalibacterium_prausnitzii" : [ - "NC_021020" - ], - "Bovine_papillomavirus_type_10" : [ - "AB331651" - ], - "Dengue_virus_1__DENV_1_NI_BID_V5071_2009" : [ - "JF937645" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_90I_226A_01_1990" : [ - "KJ723492" - ], - "Infectious_bronchitis_virus__SDZB0808" : [ - "KF853202" - ], - "Hepatitis_B_virus__HK554" : [ - "DQ089779" - ], - "Nocardia_cyriacigeorgica_GUH_2" : [ - "NC_016887" - ], - "Human_mastadenovirus_B_human_USA_UFL_Adv7d2_2_unknown_7_P7H7F7" : [ - "KF268117" - ], - "Coxsackievirus_B5_2009_154_2" : [ - "KP266577" - ], - "West_Nile_virus__BSL27_09" : [ - "JF957183" - ], - "Dengue_virus_2__DENV_2_NI_BID_V548_2005" : [ - "EU482760" - ], - "Tobacco_mosaic_virus__Hongta_2" : [ - "HE818429" - ], - "Squash_leaf_curl_virus__PA1_J243" : [ - "KM595216" - ], - "Hepatitis_B_virus__Ag39" : [ - "KJ843200" - ], - "Porcine_stool_associated_circular_virus_5__CP3" : [ - "NC_023878" - ], - "Human_immunodeficiency_virus_1__98CMU5337" : [ - "AY169808" - ], - "Hepatitis_B_virus__SHB2S3" : [ - "KJ598647" - ], - "Maize_streak_virus___B_Jam__MSV_B_MSV_Jam" : [ - "AF329887" - ], - "Hepatitis_B_virus__HBV64" : [ - "KC875272" - ], - "Feline_calicivirus__TFHLJ_8" : [ - "KJ944377" - ], - "West_Nile_virus__WNV_1_US_BID_V4595_2003" : [ - "HQ671702" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG208A1_09" : [ - "KJ887951" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_B2_2D_P" : [ - "JX570648" - ], - "Endogenous_mouse_mammary_tumor_virus_Mtv1" : [ - "AF228550" - ], - "Cassava_associated_cicular_DNA_virus__G14" : [ - "NC_023844" - ], - "Hepatitis_B_virus__CHN_QH28" : [ - "DQ478892" - ], - "Hepatitis_B_virus__HBV33" : [ - "KC875267" - ], - "Potato_virus_Y__FL" : [ - "HM367075" - ], - "Hepatitis_E_virus__HE_JA41" : [ - "AB220979" - ], - "Seal_picornavirus_type_1__HO_02_21" : [ - "NC_009891" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3601_2007" : [ - "GU131874" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC31AB2_2009" : [ - "JF909107" - ], - "Dengue_virus_2__DENV_2_NI_BID_V5073_2009" : [ - "JF730052" - ], - "Streptococcus_pyogenes_MGAS15252" : [ - "NC_017040" - ], - "Plum_pox_virus_PPV_D_Hi2" : [ - "AB576053" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0132" : [ - "KP759601" - ], - "Porcine_circovirus_2__CT_PCV_P5" : [ - "AY099499" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD30_2013" : [ - "KM229782" - ], - "Dengue_virus_3__DENV_3_PE_BID_V2981_2002" : [ - "FJ898458" - ], - "Hepatitis_B_virus_951_4a" : [ - "KR013997" - ], - "Rubella_virus_RVi_Eagan_MN_USA_13_09_2B" : [ - "JN635295" - ], - "Dengue_virus_2__DENV_2_US_BID_V587_2006" : [ - "EU482719" - ], - "Enterovirus_A71_TW_70886_08" : [ - "GQ231935" - ], - "Cauliflower_mosaic_virus__NY8153" : [ - "MCAMATCAP" - ], - "Cauliflower_mosaic_virus__IRNWKBi32" : [ - "KF357587" - ], - "Human_respiratory_syncytial_virus_07_038176" : [ - "JX576749" - ], - "Potato_virus_Y_strain_O_O_LW" : [ - "AJ890349" - ], - "WU_Polyomavirus_CLFF" : [ - "EU296475" - ], - "Tomato_yellow_leaf_curl_virus__Kahnooj_Iran___TYLCV_Ker_IR_Ka23_06" : [ - "GU076448" - ], - "Hepatitis_E_virus__Uigh179" : [ - "HPEUIGH" - ], - "Human_bocavirus__2012GZ1789" : [ - "KJ684078" - ], - "Escherichia_coli_S88" : [ - "NC_011742", - "NC_011747" - ], - "Hepatitis_B_virus__C122_9" : [ - "FJ899795" - ], - "Hepatitis_B_virus__HBV_VietF_2" : [ - "AB031265" - ], - "Cucumber_green_mottle_mosaic_virus__Liaoning" : [ - "EF611826" - ], - "Human_bocavirus__HK22" : [ - "EF450738" - ], - "Lactobacillus_helveticus_R0052" : [ - "NC_018528" - ], - "Hepatitis_B_virus_FMU016" : [ - "AY206387" - ], - "Chicken_gallivirus_1__518C" : [ - "NC_024770" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1500_2006" : [ - "FJ373305" - ], - "Norovirus_Hu_GII_12_HS210_2010_USA_Hu_GII_12_HS210_2010_USA" : [ - "HQ449728" - ], - "Escherichia_coli_Xuzhou21" : [ - "NC_017907", - "NC_017906", - "NC_017903" - ], - "Tomato_leaf_curl_Sudan_virus__KSA46" : [ - "HG530539" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3390_2007" : [ - "GQ868569" - ], - "Treponema_pallidum_Chicago" : [ - "NC_017268" - ], - "Rice_yellow_mottle_virus__CI63" : [ - "AJ608207" - ], - "Hepatitis_B_virus__HB10_0707" : [ - "AB775198" - ], - "Mycobacterium_phage_Blue7_Blue7" : [ - "NC_023713" - ], - "Human_immunodeficiency_virus_1__99UFRJ_2" : [ - "AY455780" - ], - "Megavirus_chiliensis" : [ - "NC_016072" - ], - "Planctomyces_brasiliensis_DSM_5305" : [ - "NC_015174" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_PL97_1" : [ - "AY585241" - ], - "Hepatitis_B_virus_HBV_P37" : [ - "KC510653" - ], - "Porcine_kobuvirus__OH_RV50_2011" : [ - "KM977675" - ], - "Feline_bocavirus_2__POR1" : [ - "NC_022800" - ], - "Hepatitis_B_virus__D_NZL_PE09_1984" : [ - "HQ700477" - ], - "Papaya_leaf_curl_Guandong_virus__W4" : [ - "KF446660" - ], - "Chicken_parvovirus__ADL120686" : [ - "KJ486491" - ], - "Turnip_mosaic_virus__NSW3" : [ - "KJ936089" - ], - "Human_immunodeficiency_virus_1__Fj065" : [ - "EF036534" - ], - "Porcine_circovirus_2_GD007" : [ - "KM880082" - ], - "Human_immunodeficiency_virus_1_CRF07_BC" : [ - "KF234628" - ], - "Human_immunodeficiency_virus_1__WITO_flC9" : [ - "FJ496174" - ], - "Squash_leaf_curl_China_virus__G25" : [ - "AM260206", - "AM260208" - ], - "Dengue_virus_1__MKS_2004" : [ - "KC762638" - ], - "Tomato_leaf_curl_Vietnam_virus__Trang_Mong" : [ - "GQ338765" - ], - "Dengue_virus_2__DENV_2_NI_BID_V615_2007" : [ - "EU482603" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD41_2013" : [ - "KM229784" - ], - "Treponema_pallidum_pertenue_Gauthier" : [ - "NC_016843" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLU8594_2007" : [ - "KJ672610" - ], - "Cucumber_mosaic_virus_satellite_RNA_PoSA4" : [ - "AB448702" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V174_1992" : [ - "EU255969" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V10_2005" : [ - "EU260395" - ], - "Tick_borne_encephalitis_virus_Svetlogorie" : [ - "GU121642" - ], - "Sapovirus_pig_Gansu_CH430_2012_CHN_pig_Gansu_CH430_2012_CHN_CH430" : [ - "KF204570" - ], - "Foot_and_mouth_disease_virus___type_C__C_S8p360p5d" : [ - "DQ409188" - ], - "Human_immunodeficiency_virus_1__CH141_w12" : [ - "KC156212" - ], - "Duck_egg_drop_syndrome_virus_JX2" : [ - "JQ920426" - ], - "Encephalomyocarditis_virus_pEC9" : [ - "DQ288856" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B77_2008" : [ - "GQ396653" - ], - "Potato_mop_top_virus_PMTV_Sw" : [ - "NC_003724" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V291_2002" : [ - "EU529682" - ], - "Madariaga_virus_MADV_Cebus_apella_BRA_BEAN178_1955" : [ - "KJ469598" - ], - "Tuhoko_virus_1" : [ - "NC_025410" - ], - "Duck_circovirus__D11_JW_037" : [ - "KC851813" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pun_beta_4" : [ - "EU384588" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__MN184B" : [ - "DQ176020" - ], - "South_African_cassava_mosaic_virus__MG_MG120A2_09" : [ - "KJ887656" - ], - "Murine_polyomavirus_strain_A2_A2" : [ - "PLY2CG" - ], - "Human_respiratory_syncytial_virus__08_047045" : [ - "JX015483" - ], - "Rickettsia_rhipicephali_3_7_female6_CWPP" : [ - "NC_017055", - "NC_017042" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V241_2005" : [ - "EU255950" - ], - "Porcine_circovirus_2__CQJJ12" : [ - "KF742545" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9395_2013" : [ - "KJ643483" - ], - "Cactus_mild_mottle_virus__CMMoV_Kr" : [ - "NC_011803" - ], - "Pepper_mottle_virus__731" : [ - "EU586126" - ], - "Methanolobus_psychrophilus_R15" : [ - "NC_018876" - ], - "Sida_golden_mosaic_virus" : [ - "EF537046" - ], - "Hepatitis_B_virus__HBV_77_Baby" : [ - "JN400088" - ], - "Hepatitis_E_virus__IND_HEV_AVH1_1991" : [ - "JF443717" - ], - "BK_polyomavirus_JPN_32" : [ - "AB269836" - ], - "Dengue_virus_2__DENV_2_VN_BID_V771_2007" : [ - "EU482697" - ], - "Arthrospira_platensis_NIES_39" : [ - "NC_016640" - ], - "Salmonella_enterica_serovar_Pullorum_S06004" : [ - "NC_021984" - ], - "Bluetongue_virus_1__RSAvvvv_01" : [ - "AJ586656" - ], - "African_cassava_mosaic_virus__MG_MG102A1_07" : [ - "KJ887910" - ], - "Thysanoplusia_orichalcea_nucleopolyhedrovirus__p2" : [ - "NC_019945" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9438_2013" : [ - "KJ643514" - ], - "Nepavirus__NepaV" : [ - "NC_023843" - ], - "JC_polyomavirus__AM_7" : [ - "AB074577" - ], - "Hepatitis_B_virus__C_NC_3001_2003" : [ - "HQ700509" - ], - "Human_immunodeficiency_virus_1__C_96BW17B03" : [ - "AF110980" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PE_55A_2008" : [ - "HM748931" - ], - "Tobacco_mosaic_virus__Yihan_2" : [ - "HE818456" - ], - "Human_respiratory_syncytial_virus_NH1125" : [ - "JQ582843" - ], - "Human_bocavirus_LWK" : [ - "GU338055" - ], - "Zucchini_yellow_mosaic_virus__TW_TN3" : [ - "NC_003224" - ], - "JC_polyomavirus_245A" : [ - "AY121909" - ], - "Hordeum_mosaic_virus_ATCC_PV81" : [ - "NC_005904" - ], - "Bluetongue_virus_6__RSArrrr_06" : [ - "AJ586703" - ], - "Barley_yellow_dwarf_virus_PAV__048" : [ - "EF521840" - ], - "Porcine_circovirus_2_QDH1104" : [ - "JX948785" - ], - "Chickpea_chlorotic_dwarf_virus__G_ErC505_05" : [ - "KC172675" - ], - "Plum_pox_virus__Penn9" : [ - "EF640937" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0164" : [ - "KP759623" - ], - "Middle_East_respiratory_syndrome_coronavirus_Hu_Riyadh_KSA_2345_2015" : [ - "KR011263" - ], - "South_African_cassava_mosaic_virus__MG_MG251A1_10" : [ - "KJ887968" - ], - "West_Nile_virus__WNV_1_US_BID_V5204_2006" : [ - "JF920734" - ], - "West_Nile_virus__Bird_1461" : [ - "AY712947" - ], - "Gossypium_mustilinum_symptomless_alphasatellite__Mus_alphaB_4" : [ - "EU384659" - ], - "JC_polyomavirus_248D" : [ - "AF363834" - ], - "Human_papillomavirus_type_154__PV77" : [ - "NC_021483" - ], - "African_cassava_mosaic_virus__MG_MG22A3_06" : [ - "KJ887842" - ], - "Punta_Toro_virus_Adames" : [ - "DQ363406", - "DQ363407", - "EF201835" - ], - "Murine_norovirus_GV_WU20_2005_USA_GV_WU20_2005_USA" : [ - "KM102449" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c8P20_2009_c8P20" : [ - "KF514410" - ], - "Hepatitis_delta_virus__TW1573_4" : [ - "AY648958" - ], - "Watermelon_chlorotic_stunt_virus__IL2_114" : [ - "KM820254" - ], - "Mycobacterium_phage_PBI1" : [ - "NC_008198" - ], - "Hepatitis_B_virus__HBV_RU204" : [ - "AB126580" - ], - "Stenotrophomonas_phage_phiSMA9" : [ - "NC_007189" - ], - "Hepatitis_B_virus__CONTROL6" : [ - "JQ801499" - ], - "Enterovirus_D68__EV_D68_Haiti_1_2014" : [ - "KT266905" - ], - "Torque_teno_sus_virus_1b__lung3" : [ - "HM633241" - ], - "Hepatitis_B_virus__JFA3787" : [ - "KF779251" - ], - "Newcastle_disease_virus_Layer_China_Yulin_10" : [ - "KP027403" - ], - "Papaya_ringspot_virus__Mex_VrPO" : [ - "AY231130" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2402_2008" : [ - "GQ199890" - ], - "Norovirus_Hu_GII_4_Niigata3_2008_JP_Hu_GII_4_Niigata3_2008_JP" : [ - "AB541314" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__MAY_9_99" : [ - "HQ632774" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V49_2004" : [ - "EU256009" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__PRRSV02" : [ - "FJ175688" - ], - "Human_papillomavirus_type_16__JP2060" : [ - "AB818688" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6646_2009" : [ - "KJ627286" - ], - "Hepatitis_B_virus__I145" : [ - "FJ562283" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_X_PAN_242959_1966_ID" : [ - "KC344488" - ], - "Squash_leaf_curl_virus__IL2_41" : [ - "KM595104" - ], - "African_cassava_mosaic_virus__CF_CF121AB_07" : [ - "KJ887799" - ], - "Sclerophthora_macrospora_virus_B" : [ - "NC_004714" - ], - "Hepatitis_B_virus__N04_M_158A" : [ - "KJ173431" - ], - "Zucchini_yellow_mosaic_virus__E72" : [ - "JN192420" - ], - "Dengue_virus_2__DENV_2_US_BID_V1033_1998" : [ - "EU482546" - ], - "Hepatitis_B_virus__TP63" : [ - "KF192834" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6536_2009" : [ - "KJ627322" - ], - "Vibrio_phage_ICP3_2007_A" : [ - "HQ641344" - ], - "Human_immunodeficiency_virus_1__PS1038_Day0" : [ - "DQ676870" - ], - "Hepatitis_B_virus__ADVT_Pt__6" : [ - "AB367804" - ], - "Lactobacillus_phage_Ld25A" : [ - "NC_025415" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_98I_010A_01_1998" : [ - "KP856966" - ], - "Maize_streak_virus__MSV_A_ZM_Lus1_Z3_2008" : [ - "HQ693465" - ], - "Bovine_parainfluenza_virus_3__12Q061" : [ - "JX969001" - ], - "Tomato_leaf_curl_Barka_virus__Tom_56" : [ - "KF260966" - ], - "Circovirus_like_genome_RW_D_RW_D" : [ - "NC_013026" - ], - "Human_rotavirus_A_GX78" : [ - "KF447858", - "KF447859", - "KF447854", - "KF447860", - "KF447857", - "KF447850", - "KF447851", - "KF447852", - "KF447855" - ], - "Sulfolobus_acidocaldarius_DSM_639" : [ - "NC_007181" - ], - "Anaplasma_marginale_Gypsy_Plains" : [ - "NC_022784" - ], - "Hepatitis_B_virus__M38" : [ - "GQ924620" - ], - "Bat_coronavirus_CDPHE15_USA_2006_bat_USA_CDPHE15_2006" : [ - "NC_022103" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0112" : [ - "KP759661" - ], - "Dengue_virus_3__DENV_3_US_BID_V1465_2000" : [ - "EU726768" - ], - "Hepatitis_B_virus__D3_8" : [ - "GU815677" - ], - "Leopards_Hill_virus_11SB17" : [ - "NC_025831", - "NC_025832", - "NC_025833" - ], - "Human_mastadenovirus_C_human_ARG_A15812_2000_1_P1H1F1" : [ - "JX173078" - ], - "Hepatitis_B_virus__J208" : [ - "GQ377623" - ], - "Rabies_virus_CSX0904D" : [ - "JQ970487" - ], - "Hepatitis_B_virus__J125" : [ - "GQ377578" - ], - "Hepatitis_B_virus__G67_1251" : [ - "EU305542" - ], - "Avian_leukosis_virus_SCAU_HN06" : [ - "HQ900844" - ], - "Rotavirus_A_Hu_BEL_F01322_2009_G3P_6__Hu_BEL_F01322_2009_G3P_6" : [ - "JF460826", - "JF460832", - "JF460830", - "JF460824", - "JF460825", - "JF460829", - "JF460831", - "JF460827", - "JF460828", - "JF460823", - "JF460833" - ], - "HBV_genotype_C__NAB52" : [ - "AB644287" - ], - "Human_immunodeficiency_virus_1__05YNRL17sg" : [ - "KC899006" - ], - "JC_polyomavirus__MU_3" : [ - "AB048558" - ], - "Maize_streak_virus__MSV_B3_Re_BasG_R12_2006" : [ - "EU628621" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT43B01_2008" : [ - "JF909183" - ], - "Megavirus_terra1__Terra1" : [ - "NC_023640" - ], - "Yersinia_enterocolitica_palearctica_105_5R_r" : [ - "NC_015224", - "NC_015475" - ], - "Cotton_leaf_curl_virus_betasatellite" : [ - "HF952153", - "HF952152" - ], - "Mycobacterium_phage_Wanda" : [ - "NC_022067" - ], - "Human_papillomavirus_type_16_CU7" : [ - "FJ610152" - ], - "Infectious_bronchitis_virus_H120" : [ - "FJ888351", - "FJ807652" - ], - "Turnip_mosaic_virus__UT" : [ - "AB701736" - ], - "Foot_and_mouth_disease_virus___type_O_O_PanAsia_openghu_iso108" : [ - "AY593833" - ], - "Ureaplasma_urealyticum_serovar_10_ATCC_33699" : [ - "NC_011374" - ], - "Gallid_herpesvirus_2_648a_p61" : [ - "JQ809692" - ], - "Chikungunya_virus__SGEHICHD122508" : [ - "FJ445502" - ], - "Cucumber_mosaic_virus__YN" : [ - "EF216865" - ], - "West_Nile_virus__WNV_1_US_BID_V6449_2003" : [ - "KJ501305" - ], - "Hepatitis_C_virus__QC60" : [ - "KJ439780" - ], - "Aeromonas_phage_phiAS5" : [ - "NC_014636" - ], - "Human_immunodeficiency_virus_1_TH_2_83" : [ - "AF468970" - ], - "Feline_coronavirus_UU30_UU30" : [ - "HQ392472" - ], - "Sin_Nombre_virus_Sin_Nombre_virus_77734_deer_mouse" : [ - "KF537002", - "KF537001" - ], - "Grapevine_fanleaf_virus__GHu" : [ - "JN391442" - ], - "Human_coronavirus_229E_229E_human_USA_933_40_1993" : [ - "KF514433" - ], - "Listeria_monocytogenes_La111" : [ - "NC_020557" - ], - "Southern_rice_black_streaked_dwarf_virus__Hubei" : [ - "HM585274", - "HM585270", - "HM585276", - "HM585277", - "HM585271", - "HM585279", - "HM585278", - "HM585273", - "HM585272", - "HM585275" - ], - "Equine_arteritis_virus__S4333" : [ - "GQ903804" - ], - "Hepatitis_B_virus__HCUCH9" : [ - "HM585190" - ], - "Tomato_leaf_curl_China_betasatellite__Y281" : [ - "AM980512" - ], - "Porcine_astrovirus_5__AstV5_US_IA122" : [ - "NC_023636" - ], - "Cotton_leaf_curl_Multan_virus__HP" : [ - "HQ455361" - ], - "Maize_streak_virus__MSV_B1_Za_RosD_g135_2006" : [ - "EU628602" - ], - "BK_polyomavirus__SJH_LG_253" : [ - "JN192434" - ], - "Tobacco_mosaic_virus__Tor1_L1" : [ - "KF972431" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09HUB1" : [ - "JF268682" - ], - "Cucumber_mosaic_virus__Tsh" : [ - "EF202595", - "EF202596", - "EF202597" - ], - "Propionibacterium_phage_PA6__PA6" : [ - "NC_009541" - ], - "Phormidium_phage_Pf_WMP4" : [ - "NC_008367" - ], - "Dengue_virus_3__BDH02_1" : [ - "AY496871" - ], - "Sulfolobus_virus_STSV2_STSV2" : [ - "NC_020077" - ], - "Human_herpesvirus_5_TR" : [ - "KF021605" - ], - "Tomato_leaf_curl_China_betasatellite__G55" : [ - "AJ704614" - ], - "Common_midwife_toad_ranavirus__Mesotriton_alpestris_2008_E" : [ - "JQ231222" - ], - "Maize_streak_virus__MSV_A_GH_gh106_Bob_2010" : [ - "KJ699306" - ], - "Staphylococcus_phage_85" : [ - "NC_007050" - ], - "Hepatitis_B_virus__CX028C_e244" : [ - "KJ173287" - ], - "BK_polyomavirus__MT_clone_111" : [ - "AB485712" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5640_1" : [ - "KR105313" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4038_2008" : [ - "GU131795" - ], - "Lactococcus_phage_bIL170" : [ - "NC_001909" - ], - "Geobacillus_C56_T3" : [ - "NC_014206" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V3797_2008" : [ - "GU131900" - ], - "Tomato_yellow_leaf_curl_virus__KSCEg1" : [ - "JX456643" - ], - "Norovirus_Hu_GII_4_Miyagi1_2007_JP_Hu_GII_4_Miyagi1_2007_JP" : [ - "AB541281" - ], - "Wheat_streak_mosaic_virus__Czech" : [ - "AF454454" - ], - "West_Nile_virus__WNV_1_US_BID_V6598_2012" : [ - "KJ501218" - ], - "Human_papillomavirus_type_6__37" : [ - "HG793845" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_K_SD_SD272_2013" : [ - "KM229905" - ], - "Simian_rotavirus_A_SA11_SA11" : [ - "RO1G10", - "X16831", - "RO1G8", - "X16387", - "X14914", - "X16830", - "AY187029" - ], - "Lake_Victoria_marburgvirus___Angola2005_Ang0998" : [ - "DQ447660" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_140532" : [ - "KP118887" - ], - "Treponema_pallidum_DAL_1" : [ - "NC_016844" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7684_2012" : [ - "KF973469" - ], - "Human_immunodeficiency_virus_1__06KECst_015" : [ - "FJ623490" - ], - "Rift_Valley_fever_virus_Sudan_28_2010" : [ - "JQ820491", - "JQ820474", - "JQ820486" - ], - "Enterobacteria_phage_mEp237" : [ - "NC_019704" - ], - "Hepatitis_B_virus__HBV42" : [ - "KC875332" - ], - "Human_adenovirus_4_NHRC_3" : [ - "AY599837" - ], - "Human_papillomavirus_type_103__Qv33725" : [ - "NC_008188" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LSD_101003" : [ - "JF828990" - ], - "Simian_immunodeficiency_virus_SIVsmE660" : [ - "JQ864084", - "JQ864086", - "JQ864085", - "JQ864087" - ], - "Streptococcus_phage_TP_778L__TP_778L" : [ - "NC_022776" - ], - "Torque_teno_virus__tth10" : [ - "AJ620213" - ], - "Porcine_circovirus_2_GD014" : [ - "KM880087" - ], - "Hepatitis_B_virus__919080" : [ - "JN040799" - ], - "Tomato_leaf_curl_Yemen_betasatellite__Had_tob56_89" : [ - "NC_018864" - ], - "Echovirus_E11__wv207" : [ - "AJ276224" - ], - "Mesta_yellow_vein_mosaic_Bahraich_virus__India_Kaisargunj_2008___Kaisargunj_North_India" : [ - "FJ159267" - ], - "Hepatitis_B_virus__J35" : [ - "GQ377530" - ], - "Hepatitis_B_virus__P19" : [ - "GQ477469", - "EU859919", - "AB493832", - "JX898692" - ], - "Hepatitis_B_virus_258_4b" : [ - "KR013766" - ], - "Mycobacterium_phage_Adjutor" : [ - "NC_010763" - ], - "Dengue_virus_2__DENV_2_VN_BID_V929_2007" : [ - "EU482474" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_KWT06_2011" : [ - "KM188462" - ], - "Treponema_azotonutricium_ZAS_9" : [ - "NC_015577" - ], - "East_African_cassava_mosaic_virus__EACMV__K29" : [ - "AJ704939", - "AJ717551" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO17BI1_2009" : [ - "JF909143" - ], - "Dengue_virus_2__DF593" : [ - "FM210218" - ], - "Hepatitis_B_virus__H2816" : [ - "KP322604" - ], - "Anabaena_90" : [ - "NC_019439", - "NC_019440", - "NC_019428", - "NC_019427", - "NC_019429" - ], - "Hepatitis_B_virus_adw4" : [ - "X69798" - ], - "West_Nile_virus__WNV_1_US_BID_V6451_2002" : [ - "KJ501466" - ], - "Mumps_virus_genotype_G_MuV_Gabon_9_13_2_G" : [ - "KJ810514" - ], - "Hepatitis_B_virus__HK1095" : [ - "KJ410496" - ], - "Arthrobacter_phenanthrenivorans_Sphe3" : [ - "NC_015147", - "NC_015146", - "NC_015145" - ], - "Wheat_dwarf_virus____Sanxi_Yangling___SXYL05_5" : [ - "EF536881" - ], - "Infectious_bronchitis_virus__CK_CH_SD_121220" : [ - "KJ128295" - ], - "Human_immunodeficiency_virus_1_ES_X2400_3" : [ - "FJ670524" - ], - "Hepatitis_E_virus__CCC220" : [ - "AB108537" - ], - "Wheat_dwarf_virus____Henan_zhengzhou___HNZZ05" : [ - "EF536861" - ], - "Human_poliovirus_2_NIE0811454_KBS08_03" : [ - "JX275162" - ], - "Ferret_hepatitis_E_virus_FRHEV4" : [ - "JN998606" - ], - "Homalodisca_vitripennis_reovirus__Riverside10" : [ - "GU437840" - ], - "Bat_hepevirus__BatHEV_BS7_GE_2009" : [ - "NC_018382" - ], - "Dengue_virus_1__DENV_1_US_BID_V2137_1992" : [ - "FJ410187" - ], - "Chicken_anemia_virus__CAV_18" : [ - "KJ872514" - ], - "Human_immunodeficiency_virus_1__03ZAPS116MB1" : [ - "DQ445635" - ], - "Mycobacterium_phage_Jolie2" : [ - "NC_023604" - ], - "Tomato_yellow_leaf_curl_China_virus_Tb_Y8___Y8" : [ - "AJ319677" - ], - "Helicobacter_pylori_XZ274" : [ - "NC_017926", - "NC_017919" - ], - "Enterovirus_A71__02_1_042" : [ - "KP691651" - ], - "Hepatitis_E_virus__JYN_Nii02L" : [ - "AB193178" - ], - "Human_immunodeficiency_virus_1__98BWMO37_d5" : [ - "AF443082" - ], - "Swan_circovirus__H51" : [ - "NC_025247" - ], - "Newcastle_disease_virus_Du_CH_LZJ_067_2011" : [ - "KM885152" - ], - "Blueberry_latent_virus__MI_2" : [ - "HM029247" - ], - "Hepatitis_B_virus__C_PNG_Y020_2003" : [ - "HQ700542" - ], - "Urochloa_streak_virus__USV_NG_ng23_Sam1_2011" : [ - "KJ437665" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_12_2013" : [ - "KF600627" - ], - "Japanese_encephalitis_virus_JaOS75770" : [ - "AB569984" - ], - "Murine_norovirus_GV_CR5_2005_USA__Mu_NoV_GV_CR5_2005_USA" : [ - "EU004675" - ], - "Hepatitis_B_virus__Nin_2008" : [ - "HQ603078" - ], - "Human_poliovirus_1_NIE1218344" : [ - "KJ170497" - ], - "Hepatitis_B_virus__PNF4247" : [ - "KF779316" - ], - "Sugarcane_mosaic_virus__Ohio" : [ - "JX188385" - ], - "Cotton_leaf_curl_betasatellite__Lucknow" : [ - "GQ369731", - "GQ370389" - ], - "Chickpea_chlorosis_Australia_virus__CpCV_D_AU_3768F_2003" : [ - "JN989423" - ], - "Tomato_yellow_leaf_curl_virus__BZ28" : [ - "JX070043" - ], - "Saffold_virus__Pak_1570" : [ - "AB747253" - ], - "Hepatitis_B_virus__D18" : [ - "EU939641" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_21_DRC" : [ - "JX458843" - ], - "Dengue_virus_2__MD917" : [ - "FM210228" - ], - "Clostridium_cellulolyticum_H10" : [ - "NC_011898" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG638A5_11" : [ - "KJ888071" - ], - "Measles_virus_Ichinose_B95a" : [ - "NC_001498" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD153_2013" : [ - "KM229820" - ], - "Cucumber_mosaic_virus_ON_CMV_ON" : [ - "AB248752" - ], - "Hepatitis_B_virus__1830" : [ - "FJ386589" - ], - "Hepatitis_B_virus_HBV_P13" : [ - "KC510645" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V302_2003" : [ - "EU482860" - ], - "Hepatitis_B_virus__serum_H1" : [ - "AY862860", - "AY862861" - ], - "Zucchini_yellow_mosaic_virus__E81" : [ - "JN192412" - ], - "Rabies_virus__Coati_3639" : [ - "JQ685963" - ], - "Hepatitis_E_virus_FR_SHEV3c_like" : [ - "JQ953664" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLA4816_2008_B" : [ - "KJ627404" - ], - "Human_immunodeficiency_virus_1__DR6174" : [ - "AB480692", - "AB480693" - ], - "Human_papillomavirus_type_57" : [ - "X55965" - ], - "Porcine_circovirus_2__WSEC11" : [ - "KJ680353" - ], - "Pseudomonas_putida_NBRC_14164" : [ - "NC_021505" - ], - "Habenaria_mosaic_virus__Ha_1" : [ - "NC_021786" - ], - "Hepatitis_B_virus__JFA3829" : [ - "KF779256" - ], - "Cellulophaga_phage_phi46_3_phi46_3" : [ - "NC_021792" - ], - "Rat_coronavirus__8190" : [ - "JF792617" - ], - "Hepatitis_B_virus__dww1024" : [ - "KC774439" - ], - "Equine_arteritis_virus__S3961" : [ - "GQ903797" - ], - "Feline_immunodeficiency_virus_Z1" : [ - "X57002" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0165" : [ - "KP759703" - ], - "Campylobacter_phage_CP30A" : [ - "NC_018861" - ], - "Muscovy_duck_circovirus__LZ_11_09" : [ - "HQ180265" - ], - "Hepatitis_C_virus_subtype_1b__HCR6" : [ - "AY045702" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3820" : [ - "KM233094" - ], - "Cowpox_virus_UK2000_K2984" : [ - "HQ420900" - ], - "Human_parechovirus_3__K12_94" : [ - "GQ183031" - ], - "Hepatitis_B_virus__C88" : [ - "EU939566" - ], - "Dengue_virus_2__DENV_2_VE_BID_V3365_1991" : [ - "GQ868598" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V417_2001" : [ - "EU239714" - ], - "Human_immunodeficiency_virus_1__97VNHCM303" : [ - "FJ185239" - ], - "Hepatitis_B_virus_1134_4b" : [ - "KR014016" - ], - "Croton_yellow_vein_mosaic_betasatellite__Lucknow" : [ - "EU604296" - ], - "Rice_yellow_mottle_virus__Mg15" : [ - "JX966245" - ], - "Foot_and_mouth_disease_virus___type_A_A26_Argentina_a26arg_iso74" : [ - "AY593770" - ], - "Small_anellovirus_2" : [ - "NC_007014" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2811_2007" : [ - "FJ882556" - ], - "Human_astrovirus_4__Rus_Nsc05_623" : [ - "KF039912" - ], - "South_African_cassava_mosaic_virus__MG_MG474A6_11" : [ - "KJ888020" - ], - "Infectious_bronchitis_virus__IBVUkr27_11" : [ - "KJ135013" - ], - "Western_equine_encephalitis_virus__Montana_64" : [ - "GQ287643" - ], - "MW_polyomavirus__HB087C" : [ - "KC571703" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_11_2001" : [ - "DQ404180" - ], - "Bluetongue_virus_BT2_03" : [ - "GQ506517", - "GQ506523", - "GQ506518", - "GQ506525", - "GQ506524", - "GQ506519", - "GQ506520", - "GQ506516", - "GQ506522", - "GQ506521" - ], - "Murine_norovirus_GV_CR6_2005_USA__GV_CR6_2005_USA" : [ - "JQ237823" - ], - "Hepatitis_C_virus__QC253" : [ - "JF735134" - ], - "Oropouche_virus__BeH759024" : [ - "KP691603", - "KP691604" - ], - "Euphorbia_yellow_mosaic_virus___Goias__Brazil_GO_Acreuna_AB3540_2005" : [ - "JF756678" - ], - "Mycobacterium_phage_Catera" : [ - "NC_008207" - ], - "Jatropha_mosaic_virus_Jamaica_Spanish_Town_2004" : [ - "KF723259", - "NC_024013", - "KF723262", - "NC_024012", - "KF723260" - ], - "Beak_and_feather_disease_virus__2NC88B" : [ - "JX049216" - ], - "Mycobacterium_phage_Rumpelstiltskin_Rumpelstiltskin" : [ - "NC_023732" - ], - "Human_papillomavirus_type_39" : [ - "PPHT39" - ], - "Hepatitis_B_virus__KDI43" : [ - "GQ358147" - ], - "Dengue_virus_2_DENV_2_PR_4DN_1994" : [ - "GQ398304" - ], - "Yersinia_pseudotuberculosis_IP_31758" : [ - "NC_009708", - "NC_009705", - "NC_009704" - ], - "Pectobacterium_phage_ZF40" : [ - "NC_019522" - ], - "Culex_flavivirus_Toyama861" : [ - "AB701774" - ], - "Hepatitis_B_virus__No20" : [ - "AB697502" - ], - "African_cassava_mosaic_virus__CF_CF39AB_07" : [ - "KJ887771" - ], - "Raspberry_leaf_mottle_virus__HCRL_Glen_Clova" : [ - "NC_008585" - ], - "Sand_fever_Naples_like_virus" : [ - "HM566183", - "HM566182" - ], - "West_Nile_virus__WNV_1_US_BID_V6519_2002" : [ - "KJ501338" - ], - "Cucurbit_yellow_stunting_disorder_virus__AlLM" : [ - "NC_004810", - "NC_004809" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Turkey200310849" : [ - "DQ211623", - "DQ211649", - "DQ211636" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK16" : [ - "KF287143" - ], - "Hepatitis_B_virus__S4_4" : [ - "EU916218" - ], - "Turkey_parvovirus_1078_1078" : [ - "NC_024454" - ], - "Human_immunodeficiency_virus_1__CH200_TFb" : [ - "KC156118" - ], - "Human_respiratory_syncytial_virus_12_002874" : [ - "JX576735" - ], - "Human_immunodeficiency_virus_1__HH8793" : [ - "AF061640", - "AB485662", - "AB485663", - "AF061641" - ], - "Human_coronavirus_NL63_NL63_human_USA_891_6_1989" : [ - "KF530108" - ], - "Hepatitis_B_virus__SHB818" : [ - "KJ598777" - ], - "West_Nile_virus__WNV_1_US_BID_V4801_2004" : [ - "HM756673" - ], - "Dengue_virus_2__DENV_2_PR_BID_V590_2006" : [ - "KF955360" - ], - "Norovirus_Hu_GII_4_CUK_3_2008_KR_Hu_GII_4_CUK_3_2008_KR" : [ - "FJ514242" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_25_13" : [ - "LN846607" - ], - "Alkhumra_hemorrhagic_fever_virus_200300001" : [ - "JF416954" - ], - "Citrus_yellow_mosaic_virus__PM" : [ - "EU489745" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_SriGanganagar2_2010" : [ - "JF502389" - ], - "BK_polyomavirus__MT_clone_7" : [ - "AB485695" - ], - "Enterobacteria_phage_PR772" : [ - "AY441783", - "AY848688" - ], - "Acidilobus_saccharovorans_345_15" : [ - "NC_014374" - ], - "Canine_parvovirus_2c__UY354" : [ - "KM457130" - ], - "Hepatitis_B_virus__2165" : [ - "FJ386623" - ], - "Small_begomovirus_associated_satellite__wf_S16" : [ - "KJ859177" - ], - "Apricot_vein_clearing_associated_virus__13025" : [ - "KM507063" - ], - "Simian_virus_40_VA45_54_1" : [ - "AF156107" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1422" : [ - "KM573767" - ], - "Hepatitis_B_virus_adr" : [ - "X14193" - ], - "Bean_yellow_mosaic_virus__lisianthus" : [ - "AM884180" - ], - "Subterranean_clover_stunt_C2_alphasatellite" : [ - "NC_003814" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_38A_PR_2008" : [ - "HM748939" - ], - "JC_polyomavirus__SBW_1" : [ - "AB362365" - ], - "Human_immunodeficiency_virus_1__03MYKL018_1" : [ - "DQ366664" - ], - "Staphylococcus_phage_Staph1N" : [ - "JX080300" - ], - "Equid_herpesvirus_1_90c16" : [ - "KF644566" - ], - "Cyanoramphus_nest_associated_circular_K_DNA_virus__CynNCKV" : [ - "NC_023884" - ], - "Hepatitis_B_virus_HB562" : [ - "HM011484" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_684" : [ - "KR534517" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V406_2006" : [ - "EU155273" - ], - "GB_virus_C__UU1" : [ - "JN127373" - ], - "Eel_River_basin_pequenovirus__c1271" : [ - "KP087938" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4244_2007" : [ - "HM181944" - ], - "Bacillus_thuringiensis_serovar_kurstaki_HD73" : [ - "NC_020250", - "NC_020239", - "NC_020249", - "NC_020238", - "NC_020243", - "NC_020241", - "NC_020240", - "NC_020242" - ], - "Dengue_virus_1__HNRG15417" : [ - "KC692510" - ], - "Peanut_mottle_virus" : [ - "NC_002600" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2776_2007" : [ - "GQ199799" - ], - "Coxsackievirus_A24__110390" : [ - "KF725085" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7563_2008" : [ - "KJ189312" - ], - "Simian_T_lymphotropic_virus_3" : [ - "Y07616" - ], - "Porcine_circovirus_2__Ciego_de_Avila_09" : [ - "FN687847" - ], - "Hepatitis_B_virus__WY_NJ_24" : [ - "JX026881" - ], - "Mayaro_virus_Acre27" : [ - "KM400591" - ], - "Hepatitis_B_virus__J116" : [ - "GQ377575" - ], - "Coxsackievirus_A17__cCA17_67591" : [ - "FM955278" - ], - "Hepatitis_B_virus__P005_C_017" : [ - "KJ173327" - ], - "Maize_streak_virus__MSV_B1_Za_MitB_g133_2006" : [ - "EU628592" - ], - "Dengue_virus_2__DENV_2_NI_BID_V539_2005" : [ - "EU482758" - ], - "Norovirus_Hu_GII_20176_2009_VNM_Hu_GII_20176_2009_VNM" : [ - "KC409264" - ], - "Foot_and_mouth_disease_virus___type_O__UKG_2000_2001" : [ - "FJ542369" - ], - "Hepatitis_B_virus__B2_4" : [ - "GU815597" - ], - "Corynebacterium_diphtheriae_BH8" : [ - "NC_016800" - ], - "Bottlenose_dolphin_coronavirus_HKU22__CF090325" : [ - "KF793824" - ], - "Hepatitis_B_virus__08_40_117" : [ - "JQ429078" - ], - "Black_queen_cell_virus__JL1" : [ - "KP119603" - ], - "Human_papillomavirus_type_6__99" : [ - "HG793907" - ], - "Hepatitis_B_virus_GTA_CT" : [ - "GQ414522" - ], - "Equid_herpesvirus_1_T616_delta71" : [ - "KF644573" - ], - "Classical_swine_fever_virus_cF114" : [ - "AF333000" - ], - "Turnip_mosaic_virus__TUR9" : [ - "AB362513" - ], - "Hepatitis_B_virus__N005v3" : [ - "KF922416" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_18__AHEaCV_17_NZ_2032GA_2012" : [ - "NC_026644" - ], - "Feline_calicivirus__UTCVM_NH2" : [ - "AY560114" - ], - "Dengue_virus_2__DENV_2_NI_BID_V654_2005" : [ - "EU482636" - ], - "Human_adenovirus_37__1996" : [ - "AB448777" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1989_19_1" : [ - "Z75872" - ], - "Foot_and_mouth_disease_virus___type_O__UKG_35_2001" : [ - "AJ539141" - ], - "Middle_East_respiratory_syndrome_coronavirus_Abu_Dhabi_UAE_9_2013" : [ - "KP209312" - ], - "Propionibacterium_phage_P100D" : [ - "NC_018852" - ], - "Hepatitis_B_virus__clz2114" : [ - "KC774211" - ], - "Haloarcula_hispanica_pleomorphic_virus_2" : [ - "NC_023592" - ], - "Human_bocavirus_TUN2922" : [ - "JF327787" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM112" : [ - "KM233039" - ], - "JC_polyomavirus__KE_2" : [ - "AB126994" - ], - "Coxsackievirus_B2__KOR_04_243" : [ - "EF174468" - ], - "Canine_papillomavirus_16__Chana" : [ - "NC_026640" - ], - "Beak_and_feather_disease_virus__AFG3_ZA" : [ - "AY450443" - ], - "Hepatitis_B_virus__3358v3" : [ - "KJ010778" - ], - "Mycobacterium_phage_Perseus_Perseus" : [ - "NC_023720" - ], - "Chikungunya_virus__LKRGCH1507" : [ - "FJ445428" - ], - "Squash_leaf_curl_China_virus__P54" : [ - "EU487031" - ], - "Hendra_virus_HeV_Australia_Horse_2006_Murwillumbah" : [ - "HM044318" - ], - "GB_virus_C_K2141" : [ - "D87713" - ], - "Tomato_yellow_leaf_curl_China_virus__Y244" : [ - "AM260702" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5_1P20_2010_c5_1P20" : [ - "KF514403" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Must_alpha_6" : [ - "EU384631" - ], - "Sweet_potato_chlorotic_stunt_virus__Jiangsu" : [ - "KC146840" - ], - "Lactococcus_Phage_ASCC397" : [ - "JQ740800" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1936_2008" : [ - "FJ461334" - ], - "Hepatitis_B_virus__C189" : [ - "EU939670" - ], - "Rice_stripe_virus__SC_CN" : [ - "FJ602683", - "FJ602696" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7680_2012" : [ - "KF973466" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2321_2001" : [ - "FJ744733" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_BP_1996" : [ - "KF688551" - ], - "Human_respiratory_syncytial_virus_A_WI_629_3248_98" : [ - "JF920062" - ], - "Hepatitis_E_virus__wbJNN_13" : [ - "AB856243" - ], - "West_Nile_virus__WNV_1_US_BID_V4691_2001" : [ - "HM488247" - ], - "Caprine_arthritis_encephalitis_virus_gansu" : [ - "AY900630" - ], - "Hepatitis_B_virus__WHATR2" : [ - "JN257161" - ], - "Enterobacteria_phage_NC35" : [ - "DQ079872" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_9__AHEaCV_9_NZ_4424GA_2012" : [ - "KM874317" - ], - "Human_papillomavirus_type_26" : [ - "NC_001583" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C47" : [ - "KJ019030" - ], - "Human_papillomavirus_type_168__KC15" : [ - "KC862317" - ], - "Vibrio_Ex25" : [ - "NC_013457", - "NC_013456" - ], - "Porcine_circovirus_2__SS1" : [ - "KC514975" - ], - "Dengue_virus_4__DENV_4_US_BID_V2443_1998" : [ - "FJ850059" - ], - "Mycobacterium_phage_Euphoria_Euphoria" : [ - "NC_023726" - ], - "Tomato_severe_rugose_virus__BR_Vic13_09" : [ - "JX865627" - ], - "Infectious_bronchitis_virus_P5" : [ - "JX195177" - ], - "Hepatitis_C_virus_subtype_1a__F730P" : [ - "EU781754" - ], - "Escherichia_phage_Av_05" : [ - "NC_025830" - ], - "Chilli_leaf_curl_virus__Th1" : [ - "JN604496" - ], - "Porcine_circovirus_2_strain_SD5_SD5" : [ - "DQ218420" - ], - "Listonella_anguillarum_M3" : [ - "NC_022223", - "NC_022225", - "NC_022224" - ], - "West_Nile_virus__WNV_1_US_BID_V6617_2002" : [ - "KJ501373" - ], - "Hepatitis_B_virus__D54" : [ - "EU939676" - ], - "Rhizobium_phage_RR1_A_RR1_A" : [ - "NC_021560" - ], - "Hepatitis_B_virus_HBV_Ya14" : [ - "AB106884" - ], - "Enterovirus_B85_HTPS_MJH21F_XJ_CHN_2011" : [ - "JX898906" - ], - "Mamastrovirus_1_Pune_063681_India" : [ - "JF327666" - ], - "Enterovirus_A71__V05_2243055" : [ - "KC436266" - ], - "Torque_teno_douroucouli_virus__At_TTV3" : [ - "NC_014087" - ], - "Duck_hepatitis_virus_SD01__SD01" : [ - "GQ485310" - ], - "Human_mastadenovirus_B_human_USA_Pitts_00112_1988_NEW_P3H3F7" : [ - "KF429752" - ], - "Torque_teno_mini_virus_9__TLMV_NLC030" : [ - "AB038631" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US13" : [ - "KJ019085" - ], - "Bluetongue_virus_2_BTV_2IT_H" : [ - "JN255873", - "JN255881", - "JN255876", - "JN255877", - "JN255878", - "JN255880", - "JN255879", - "JN255872", - "JN255874", - "JN255875" - ], - "Bluetongue_virus_14__BT87_59" : [ - "JX272488" - ], - "Hepatitis_B_virus__A1_50020" : [ - "FJ692575" - ], - "Human_immunodeficiency_virus_1__93RW037A" : [ - "AB287379", - "AB287378" - ], - "Tomato_yellow_leaf_curl_virus__SD_WF13" : [ - "KM435325" - ], - "Tembusu_virus_TMUV_JSGo" : [ - "AB917090" - ], - "Enterovirus_A71_SHAPHC695F_SH_CHN_10" : [ - "JQ736684" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1569_2007" : [ - "FJ024429" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2837_2004" : [ - "GQ199833" - ], - "Enterovirus_D68__2014_R0672" : [ - "KT280500" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P80" : [ - "FJ548853" - ], - "Rabies_virus_JX08_45CC" : [ - "JQ946087" - ], - "Human_respiratory_syncytial_virus_02_028215" : [ - "JX576761" - ], - "Dengue_virus_1__MKS_2082" : [ - "KC762624" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_01CB1" : [ - "DQ864705" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Dabwali2_2010" : [ - "JF502394" - ], - "Human_immunodeficiency_virus_1__97CD_KCC2" : [ - "AM000053" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4264_1" : [ - "KR105228" - ], - "Turnip_mosaic_virus__HUN1" : [ - "AB701719" - ], - "Guanarito_mammarenavirus_CVH_960102" : [ - "AY572558" - ], - "Human_immunodeficiency_virus_1__DR2594" : [ - "AB253659", - "AB253664", - "AB253668", - "AB253667", - "AB253662", - "AB253665", - "AB253663", - "AB253660", - "AB253661", - "AB253666" - ], - "JC_polyomavirus__FD_1" : [ - "AB103413" - ], - "Rice_tungro_bacilliform_virus" : [ - "AJ292232", - "RTBWG" - ], - "Beet_necrotic_yellow_vein_virus__S43" : [ - "NC_003513" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1522_2007" : [ - "EU687250" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1531_2007" : [ - "EU677158" - ], - "West_Nile_virus__WNV_1_US_BID_V7436_2011" : [ - "KJ501146" - ], - "West_Nile_virus__WNV_1_US_BID_V6493_2002" : [ - "KJ501484" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1213" : [ - "KR534583" - ], - "Hepatitis_B_virus__ZADGM1122" : [ - "GQ184324" - ], - "Porcine_circovirus_2__FJ_3" : [ - "HM776437" - ], - "Human_immunodeficiency_virus_1__J11243" : [ - "EU697907" - ], - "Southern_rice_black_streaked_dwarf_virus__Hainan" : [ - "NC_014713", - "NC_014712" - ], - "Hepatitis_B_virus_419_7" : [ - "KR013925" - ], - "Hepatitis_C_virus_subtype_1a__00A" : [ - "EU781776" - ], - "Citrus_chlorotic_dwarf_associated_virus__TK4" : [ - "NC_018151" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Punc_alpha_11" : [ - "EU384649" - ], - "Rhodobacter_capsulatus_SB_1003" : [ - "NC_014034", - "NC_014035" - ], - "Honeysuckle_yellow_vein_mosaic_virus__OT2" : [ - "AB178948" - ], - "Hepatitis_B_virus_274_1a" : [ - "KR013903" - ], - "Enterobacteria_phage_ID18_sensu_lato" : [ - "NC_007856" - ], - "Streptococcus_suis_TL13" : [ - "NC_021213" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2250_2005" : [ - "FJ639812" - ], - "Tomato_yellow_leaf_curl_virus__Shiraz_Iran___TYLCV_IL_IR_Sh40_07" : [ - "GU076444" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA05" : [ - "KF670649" - ], - "Staphylococcus_lugdunensis_HKU09_01" : [ - "NC_013893" - ], - "Beet_curly_top_Iran_virus__IR_Dash_B29P_Sug_08" : [ - "JQ707946" - ], - "Hepatitis_B_virus_49136" : [ - "FM199978" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1557_2007" : [ - "EU726781" - ], - "Dengue_virus_1__DS06_210505" : [ - "EU179860" - ], - "Hepatitis_B_virus__SHB518" : [ - "KJ598713" - ], - "Porcine_circovirus_2__ROM" : [ - "DQ233257" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NB_04" : [ - "FJ536165" - ], - "Hepatitis_B_virus__CHN_QH19" : [ - "DQ478891" - ], - "Tobacco_mosaic_virus__Jimo" : [ - "HE818443" - ], - "HBV_genotype_E_HB_JI411_HB_JI411F" : [ - "AP007262" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_34_2011" : [ - "KJ686303" - ], - "Clostridium_botulinum_A_ATCC_3502" : [ - "NC_009496", - "NC_009495" - ], - "Maize_streak_virus__MSV_A_ZA_Geo_M51_1988" : [ - "HQ693412" - ], - "McMurdo_Ice_Shelf_pond_associated_circular_DNA_virus_2__alg49_66" : [ - "NC_024478" - ], - "Torque_teno_virus_28__CT43F" : [ - "NC_014073" - ], - "Norovirus_Hu_GII_4_Aomori4_2006_JP_Hu_GII_4_Aomori4_2006_JP" : [ - "AB447434" - ], - "Hepatitis_B_virus_HB315" : [ - "JQ027317" - ], - "Banna_virus_SC043" : [ - "KC954616", - "KC954612", - "KC954613", - "KC954622", - "KC954619", - "KC954617", - "KC954618", - "KC954614", - "KC954620", - "KC954615", - "KC954611", - "KC954621" - ], - "Duck_circovirus_LJ33" : [ - "EU344803" - ], - "Saffold_virus__Pak_2457" : [ - "AB747256" - ], - "Sweet_potato_leaf_curl_virus_Puerto_Rico_SPLCV_PR_BR_CA_08" : [ - "HQ393445" - ], - "Turnip_mosaic_virus_BJ_B05" : [ - "KC119189" - ], - "Canine_distemper_virus_50Cbl_H" : [ - "AB490678" - ], - "Porcine_circovirus_2__NL_PMWS_1" : [ - "AY484413" - ], - "Dengue_virus_3__DENV_3_CK_BID_V2972_1991" : [ - "FJ898455" - ], - "Tomato_leaf_curl_New_Delhi_virus__Pumpkin_New_Delhi___1" : [ - "AM286433" - ], - "African_cassava_mosaic_virus__ACMV_CM_NG_Cc_03" : [ - "EU685328" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_110410" : [ - "KP118893" - ], - "Hepatitis_B_virus__B4" : [ - "FJ904426" - ], - "Human_bocavirus__HBov_sh9" : [ - "JN632519" - ], - "Human_papillomavirus_type_18__CU8" : [ - "GQ180784" - ], - "Hepatitis_B_virus__B1_2" : [ - "GU815583" - ], - "Dengue_virus_3_D3_SG_05K845DK1_2005" : [ - "EU081188" - ], - "Psittacid_herpesvirus_1_97_0001" : [ - "NC_005264" - ], - "Hepatitis_A_virus_GBM_HFS" : [ - "X75216" - ], - "Human_poliovirus_1_NIE1118317" : [ - "KJ170505" - ], - "Potato_virus_Y_N_T13" : [ - "AB714135" - ], - "Hepatitis_B_virus__AH32" : [ - "KC836881" - ], - "South_African_cassava_mosaic_virus__MG_MG126A2_09" : [ - "KJ887920" - ], - "Human_papillomavirus_type_149__10_18" : [ - "GU117629" - ], - "Fowl_aviadenovirus_D" : [ - "KM096546" - ], - "South_African_cassava_mosaic_virus__MG_MG419A1_11" : [ - "KJ887717" - ], - "Merkel_cell_polyomavirus__12b" : [ - "HM011542" - ], - "Muscovy_duck_circovirus__FJPT60" : [ - "GQ423746" - ], - "Simian_hemorrhagic_fever_virus_SHFV_krc2_SHFV_krc2_RC01" : [ - "KC787631" - ], - "Wheat_dwarf_virus_wheat_strain_Aschersleben_1" : [ - "HG422316" - ], - "Chlamydia_trachomatis_D_LC" : [ - "NC_017436", - "NC_017433" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V415_2001" : [ - "EU256102" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Moheli_MO10BN3_2009" : [ - "JF909133" - ], - "Muscovy_duck_reovirus_J18" : [ - "JX478264", - "JX478260", - "JX478265", - "JX478267", - "JX478263", - "JX478269", - "JX478261", - "JX478268", - "JX478262" - ], - "Okra_yellow_mosaic_Mexico_virus__OkYMMV_TX" : [ - "HM035059", - "HM035060" - ], - "Human_papillomavirus_type_16__IN151168" : [ - "HQ644248" - ], - "Papaya_ringspot_virus__HYD" : [ - "KP743981" - ], - "Tick_borne_encephalitis_virus_MGL_Selenge_13_14" : [ - "LC017693" - ], - "Potato_virus_Y_strain_Wilga_156_Wilga_156_156" : [ - "AJ889867" - ], - "Tomato_severe_rugose_virus__BR_Car238_08" : [ - "KC706627", - "KC004089" - ], - "Wheat_dwarf_virus___barley_Germany_Baden_2005___Baden_Wuerttemberg_2" : [ - "AM411652" - ], - "Foot_and_mouth_disease_virus___type_A_A4_West_Germany_72_a4wg_iso72" : [ - "AY593779" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V246_2005" : [ - "EU155349" - ], - "Hepatitis_B_virus__N02_M_085A" : [ - "KJ173429" - ], - "Tomato_black_ring_virus__TBRV_Mirs" : [ - "HG939487", - "HG939488" - ], - "Plum_pox_virus__Penn6" : [ - "EF640934" - ], - "JC_polyomavirus__JCV135_41" : [ - "JF424866" - ], - "Maize_streak_virus__MSV_A_MZ_Map9_Moz4_2007" : [ - "HQ693359" - ], - "Ipomoea_yellow_vein_virus__ES_MAL_IG3_06" : [ - "EU839577" - ], - "Echovirus_E11" : [ - "X80059" - ], - "Phlebiopsis_gigantea_mycovirus_dsRNA_1__TW2" : [ - "NC_013999" - ], - "JC_polyomavirus__SI" : [ - "AB081617" - ], - "Methanobacterium_AL_21" : [ - "NC_015216" - ], - "African_horse_sickness_virus_4_M90" : [ - "Z48735" - ], - "Human_papillomavirus_type_6__51" : [ - "HG793859" - ], - "Garlic_virus_A" : [ - "NC_003375" - ], - "Phlebovirus_JS2010_015_JS2010_015" : [ - "JQ317173", - "JQ317174", - "JQ317172" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1539_2007" : [ - "EU677139" - ], - "Hepatitis_B_virus__5_D1_5_5" : [ - "GU815650" - ], - "Porcine_circovirus_2__Matanzas_06" : [ - "FN687855" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_82_96" : [ - "DQ989309" - ], - "Hepatitis_C_virus_subtype_1b_MD6_2" : [ - "AF165056" - ], - "Porcine_circovirus_2__A4146" : [ - "JF317569" - ], - "Hantaanvirus_CGRn93P8_CGRn93P8" : [ - "EF990904", - "EF990918" - ], - "Beet_western_yellows_virus_BWYV_Memuro" : [ - "AB903033" - ], - "Maize_streak_virus__UMpi_14" : [ - "EF547067" - ], - "Human_immunodeficiency_virus_1_ADA" : [ - "AF004394" - ], - "Bovine_papillomavirus_type_13" : [ - "JQ798171" - ], - "Small_begomovirus_associated_satellite__wf_S24" : [ - "KJ859185" - ], - "Chikungunya_virus_A301" : [ - "HM045821" - ], - "Enterobacteria_phage_phiX174_beta3" : [ - "HM775310" - ], - "Chilli_leaf_curl_virus_HD__India_New_Delhi_Papaya_2007___HD" : [ - "HM140365" - ], - "Mimivirus_terra2__Terra2" : [ - "NC_023639" - ], - "Norwalk_like_virus" : [ - "AB045603" - ], - "Hepatitis_B_virus__F3O_C1" : [ - "AB471856" - ], - "Lettuce_necrotic_yellows_virus__318" : [ - "NC_007642" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1788_2007" : [ - "FJ432733" - ], - "Euproctis_pseudoconspersa_nucleopolyhedrovirus_Hangzhou" : [ - "NC_012639" - ], - "Gyrovirus_GyV3_G19" : [ - "KM348009" - ], - "Human_papillomavirus_type_18__Z52" : [ - "KC470214" - ], - "Human_coronavirus_OC43_OC43_human_USA_911_11_1991" : [ - "KF530076" - ], - "South_African_cassava_mosaic_virus__MG_MG507A6_11" : [ - "KJ887727" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3073_2008" : [ - "GQ199871" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2173_1999" : [ - "FJ639745" - ], - "Hepatitis_B_virus__HBV_USA2126" : [ - "AB116077" - ], - "Hepatitis_B_virus__Leb30" : [ - "JN642140" - ], - "Hepatitis_B_virus__cww1031" : [ - "KC774252" - ], - "Squash_leaf_curl_virus__IL3_102" : [ - "KM595125" - ], - "Bean_golden_mosaic_virus__BR_Cri14_12" : [ - "KJ939850" - ], - "Porcine_circovirus_2_Fd2" : [ - "AY321999" - ], - "Kenaf_leaf_curl_virus__India_Bhangha_2007" : [ - "EU822322" - ], - "Porcine_circovirus_2__S05_1218" : [ - "JX512859" - ], - "Bluetongue_virus_2__TUN2000_01" : [ - "AJ586668" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143360" : [ - "KR653258" - ], - "Canine_papillomavirus_3" : [ - "NC_008297" - ], - "Cucumber_mosaic_virus_satellite_RNA__TSH" : [ - "DQ249297" - ], - "Usutu_virus_V248" : [ - "KJ438774" - ], - "Escherichia_phage_wV7" : [ - "NC_019505" - ], - "Macroptilium_yellow_spot_virus__BR_Crb10_11" : [ - "KC004093" - ], - "African_bat_icavirus_A__TNo13" : [ - "NC_026470" - ], - "Rosavirus_A2_GA7403" : [ - "NC_024070" - ], - "Lettuce_mosaic_virus__LMV_Cr" : [ - "KF268956" - ], - "Equid_herpesvirus_1_T_616" : [ - "KF644574" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1710_2007" : [ - "FJ024276" - ], - "Adeno_associated_virus___6" : [ - "AF028704" - ], - "Hepatitis_B_virus_HB808" : [ - "JQ027334" - ], - "Hepatitis_B_virus__SHB619" : [ - "KJ598732" - ], - "Yellow_tailflower_mild_mottle_virus__Kalbarri" : [ - "KJ683937" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0154" : [ - "KP759617" - ], - "Hepatitis_E_virus__JYN_Sap01C" : [ - "AB193177" - ], - "West_Nile_virus__WNV_1_US_BID_V6412_2002" : [ - "KJ501285" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3724_2007" : [ - "GQ868519" - ], - "Japanese_encephalitis_virus_4790_85" : [ - "GQ902062" - ], - "Citrus_leaf_blotch_virus_V20_M3_A" : [ - "JN983456" - ], - "Erwinia_phage_vB_EamM_Y2" : [ - "NC_019504" - ], - "Human_bocavirus__HZ1401" : [ - "KP710211" - ], - "Human_immunodeficiency_virus_1__04ZASK180B1" : [ - "AY878059" - ], - "BK_polyomavirus__SHA_4" : [ - "AB365158" - ], - "Hepatitis_C_virus_subtype_1a__TN15" : [ - "EU781816" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant" : [ - "FJ882943" - ], - "Small_begomovirus_associated_satellite__wf_S19" : [ - "KJ859180" - ], - "West_Nile_virus__Nea_Santa_Greece_2010" : [ - "HQ537483" - ], - "Staphylococcus_aureus_LGA251" : [ - "NC_017349", - "NC_017348" - ], - "Dengue_virus_2__MD1515" : [ - "FM210235" - ], - "Maize_streak_virus__MSV_A_RE_Pie5_Mic14_1994" : [ - "HQ693397" - ], - "Culex_flavivirus__HLD105" : [ - "JQ308187" - ], - "Dengue_virus_1__MKS_0248" : [ - "KC762632" - ], - "Porcine_circovirus_2__PF163" : [ - "FJ905469" - ], - "West_Nile_virus__WNV_1_US_BID_V6667_2006" : [ - "KJ501407" - ], - "Human_immunodeficiency_virus_1__04ZASK183B1" : [ - "AY878055" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V52_2006" : [ - "EU529677" - ], - "Gluconobacter_oxydans_H24" : [ - "NC_019396", - "NC_019397" - ], - "Usutu_virus_V390" : [ - "KJ438741" - ], - "Melon_necrotic_spot_virus" : [ - "NC_001504", - "MNSCGA" - ], - "Hepatitis_B_virus__HBVJSTZ3" : [ - "JF412801" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HC120821_SH1" : [ - "KP998406" - ], - "South_African_cassava_mosaic_virus__MG_MG712A10_11" : [ - "KJ887746" - ], - "Enterovirus_A71__SB2864_SAR_00" : [ - "DQ341366" - ], - "Hepatitis_C_virus_subtype_4o__HCV_4o_GB_BID_G2038" : [ - "JX227978" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4830_2009" : [ - "HQ671177" - ], - "BK_polyomavirus__OKN_36" : [ - "AB365152" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA4275_2008" : [ - "KJ672547" - ], - "Duck_hepatitis_B_virus__31" : [ - "AY250901" - ], - "Broad_bean_wilt_virus_2__IA_isolate" : [ - "AB032403" - ], - "Bacillus_phage_Moonbeam" : [ - "NC_027374" - ], - "Rosellinia_necatrix_victorivirus_1__W1029" : [ - "NC_021565" - ], - "Mycobacterium_phage_L5" : [ - "NC_001335" - ], - "Bacillus_phage_CP_51" : [ - "NC_025423" - ], - "Dromedary_camel_coronavirus_HKU23_HKU23_362F" : [ - "KF906250" - ], - "Chickpea_chlorosis_Australia_virus__34" : [ - "KC172693" - ], - "Cotton_leaf_curl_Burewala_virus__C_50" : [ - "HF549183" - ], - "Dengue_virus_1_D1_SG_05K4820DK1_2005" : [ - "EU081279" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1895_2008" : [ - "FJ410233" - ], - "Hepatitis_B_virus__MOD_4705" : [ - "GQ183467" - ], - "Rabies_virus_CHN0802D" : [ - "JQ970480" - ], - "Acinetobacter_baumannii_AYE" : [ - "NC_010401", - "NC_010410", - "NC_010402", - "NC_010403", - "NC_010404" - ], - "Hepatitis_C_virus_subtype_2m__HCV_2m_CA_BID_G1314" : [ - "JX227967" - ], - "JC_polyomavirus__AM_4" : [ - "AB262403" - ], - "Chickpea_yellow_dwarf_virus__CpYDV_PK_PK37_2012" : [ - "KM377675" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V41_2006" : [ - "EU256002" - ], - "Paenibacillus_polymyxa_CR1" : [ - "NC_023037" - ], - "Variola_virus_Iran_1972_2602_Tabriz" : [ - "DQ437587" - ], - "Human_immunodeficiency_virus_1__UG035" : [ - "AY352656" - ], - "Human_parainfluenza_virus_2_V98" : [ - "AF533011" - ], - "Potato_virus_Y__GF_YL20" : [ - "KJ634023" - ], - "Human_poliovirus_3_NIE1018466" : [ - "KJ170621" - ], - "Wheat_dwarf_virus__Winter_rye_101" : [ - "KJ473698" - ], - "Human_coronavirus_OC43_OC43_human_USA_953_23_1995" : [ - "KF530075" - ], - "Squash_leaf_curl_virus__LB3_5_33" : [ - "KM595133" - ], - "Wheat_dwarf_virus__SXTY07_6" : [ - "KJ536120" - ], - "Prevotella_intermedia_17" : [ - "NC_017860", - "NC_017861" - ], - "Duck_hepatitis_B_virus_SCP01" : [ - "KM676220" - ], - "Propionibacterium_phage_PHL115M02" : [ - "JX570708" - ], - "Dengue_virus_2_DENV_2_PR_38DN_1994" : [ - "GQ398277" - ], - "Hepatitis_C_virus_subtype_6a_6a61" : [ - "DQ480516" - ], - "Monkeypox_virus__DRC_06_1076" : [ - "JX878412" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HL" : [ - "KP998418" - ], - "Dengue_virus_2__DENV_2_MX_BID_V7540_2007" : [ - "KJ189310" - ], - "Hepatitis_B_virus__QB062" : [ - "FR714495" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3974_2008" : [ - "GU131748" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_TD1" : [ - "KP998425" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_MEX_59_2007" : [ - "KF530268" - ], - "Sacbrood_virus_CSBV_LN_China_2009_CSBV_LN" : [ - "HM237361" - ], - "Mycobacterium_phage_Stinger_Stinger" : [ - "NC_023741" - ], - "Oat_mosaic_virus__Cranbrook_laboratory_isolate" : [ - "NC_004016", - "NC_004017" - ], - "Hepatitis_B_virus__I_T7" : [ - "GU456636" - ], - "Cotton_leaf_curl_Multan_betasatellite__HP" : [ - "HQ455362" - ], - "Human_adenovirus_6_ATCC_VR_6_Tonsil_99" : [ - "HQ413315" - ], - "Hepatitis_B_virus_494_23" : [ - "KR013789" - ], - "Lactococcus_phage_jm3" : [ - "NC_021854" - ], - "Sida_micrantha_mosaic_virus_BR_Sag3_Soy_08" : [ - "FJ686693", - "FJ686694" - ], - "Beak_and_feather_disease_virus__05_106" : [ - "EF457974" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD11_2013" : [ - "KM229809" - ], - "Watermelon_mosaic_virus__CHI87_620" : [ - "EU660580" - ], - "Fusobacterium_nucleatum_polymorphum_ATCC_10953" : [ - "NC_009506" - ], - "Butcherbird_polyomavirus__AWH19840" : [ - "NC_023008" - ], - "Bean_golden_mosaic_virus__BR_Pai17_11" : [ - "KJ939753" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3895_2008" : [ - "HM181964" - ], - "Infectious_bronchitis_virus__GX_YL9" : [ - "HQ850618" - ], - "Hepatitis_B_virus__919020" : [ - "JN040817" - ], - "Pineapple_bacilliform_comosus_virus__HI1" : [ - "GQ398110" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Lewis_Before" : [ - "EF532818" - ], - "Mycobacterium_phage_Doom_Doom" : [ - "NC_023704" - ], - "Hepatitis_B_virus__J86" : [ - "GQ377555" - ], - "Mycobacterium_tuberculosis_KZN_4207" : [ - "NC_016768" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2311_2001" : [ - "FJ744725" - ], - "Papaya_ringspot_virus_P__prT3_AX_N_Ad6" : [ - "JX448369" - ], - "Coxsackievirus_B3_31_1_93" : [ - "AF231763" - ], - "Norovirus_Hu_GII_4_CHDC5191_1974_USA_Hu_GII_4_CHDC5191_1974_USA" : [ - "JX023286" - ], - "HBV_genotype_G_HB_JI444G_HB_JI444GF" : [ - "AP007264" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK14" : [ - "KF287141" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2635_2007" : [ - "FJ850051" - ], - "West_Nile_virus_Italy_2012_Livenza_31_1" : [ - "JX556213" - ], - "Hepatitis_B_virus__129" : [ - "JQ023664" - ], - "Gallid_herpesvirus_1_CSW_1" : [ - "JX646899" - ], - "Human_astrovirus_1_lhar_2011_kor" : [ - "JN887820" - ], - "Rift_Valley_fever_virus_ZC_3349" : [ - "DQ380152", - "DQ380207", - "DQ375412" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_97_03" : [ - "DQ989323" - ], - "East_African_cassava_mosaic_virus__EACMV__K36" : [ - "AJ717554" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9499_2013" : [ - "KJ643554" - ], - "Human_papillomavirus_type_16__Rw649" : [ - "HQ644288" - ], - "JC_polyomavirus__AN_6" : [ - "AB092582" - ], - "Human_immunodeficiency_virus_1__03ZASK006B2" : [ - "AY878056" - ], - "Hepatitis_B_virus__CHIMP_DJA" : [ - "AM117394" - ], - "Orangutan_hepadnavirus_Papa" : [ - "AF193864" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K262" : [ - "AJ704955", - "AJ717522" - ], - "Maize_streak_virus__MSV_Sasri_S" : [ - "EU152254" - ], - "Maize_streak_virus__MSV_A_NG_Ile_N34_2007" : [ - "HQ693382" - ], - "Human_respiratory_syncytial_virus__HRSV_A_GZ08_0" : [ - "KP218910" - ], - "Norovirus_Hu_GII_4_Kumamoto3_2006_JP_Hu_GII_4_Kumamoto3_2006_JP" : [ - "AB447461" - ], - "Small_begomovirus_associated_satellite__wf_S46" : [ - "KJ859201" - ], - "Methanoregula_formicicum_SMSP" : [ - "NC_019943" - ], - "Watermelon_chlorotic_stunt_virus__SD" : [ - "AJ245651", - "AJ245650" - ], - "Human_rotavirus_A_US244" : [ - "AJ400640" - ], - "Porcine_circovirus_2__40856" : [ - "AF264041" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_11FS11_GD" : [ - "JX215551" - ], - "Hepatitis_B_virus__Ag35" : [ - "KJ843196" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3541_1997" : [ - "GU056030" - ], - "Mosavirus_A2_SZAL6_MoV_2011_HUN" : [ - "NC_023987" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7446_2009" : [ - "KJ627373" - ], - "Hepatitis_B_virus__G250" : [ - "JQ040175" - ], - "Plum_bark_necrosis_stem_pitting_associated_virus__VC1" : [ - "HG917400" - ], - "Human_papillomavirus_type_11__LP1" : [ - "HE611267" - ], - "Cauliflower_mosaic_virus__IRNRKh" : [ - "JX912266" - ], - "Morogoro_virus_3017_2004" : [ - "NC_013058", - "NC_013057" - ], - "Mycobacterium_phage_Seabiscuit" : [ - "NC_024136" - ], - "Human_immunodeficiency_virus_1__CANA1FULL" : [ - "AY779564" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9397_2013" : [ - "KJ643485" - ], - "Lake_Victoria_marburgvirus___Angola2005_Ang0126" : [ - "DQ447656" - ], - "Gyrovirus_Tu789_Tu789" : [ - "NC_022789" - ], - "West_Nile_virus__M20122" : [ - "JF415928" - ], - "Hepatitis_B_virus__HB13_1191" : [ - "AB937795" - ], - "Southern_rice_black_streaked_dwarf_virus__ZCD1" : [ - "KJ513443", - "KJ493782" - ], - "Staphylococcus_phage_phiPVL_CN125" : [ - "NC_012784" - ], - "Hepatitis_B_virus_HB264" : [ - "HM011489" - ], - "Fort_Morgan_virus__CM4_146" : [ - "NC_013528" - ], - "Hepatitis_B_virus__MMA_17" : [ - "AM421545" - ], - "Dengue_virus_2_ThNH55_93" : [ - "AF169681" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_86E_435_01_1986" : [ - "KP258714" - ], - "Hepatitis_B_virus__bne134" : [ - "FN594752" - ], - "Avian_metapneumovirus_PL_1" : [ - "EF199771" - ], - "Echovirus_E5_Noyce" : [ - "AF083069" - ], - "Microviridae_IME_16_IME_16_swab" : [ - "NC_026013" - ], - "Dengue_virus_2_43" : [ - "AF204178" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL171A" : [ - "AB985577" - ], - "Porcine_circovirus_2_Hsin_Chu" : [ - "JQ390467" - ], - "Dengue_virus_1_49440" : [ - "JF459993" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3175_2008" : [ - "HQ541791" - ], - "Hepatitis_B_virus__P56" : [ - "GQ477485" - ], - "East_African_cassava_mosaic_virus_KE2__EACMV_KE2_K208" : [ - "AJ704952", - "AJ717540" - ], - "Myxoma_virus_Aust_Uriarra_2_53_1_Uriarra" : [ - "JX565577" - ], - "Human_papillomavirus_type_16__Qv25054" : [ - "HQ644282" - ], - "Human_immunodeficiency_virus_1__G1_5p21" : [ - "HM469978" - ], - "Helicoverpa_zea_single_nucleopolyhedrovirus__Br_South" : [ - "KM596835" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2683_1999" : [ - "GQ199895" - ], - "Simian_T_lymphotropic_virus_1__Tan90" : [ - "NC_000858" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_pool_MEX_MX10_91M1_2010_IE" : [ - "KC344493" - ], - "Chickpea_chlorotic_dwarf_virus__D320" : [ - "JX183064" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0008" : [ - "KP759718" - ], - "Mycoplasma_wenyonii_Massachusetts" : [ - "NC_018149" - ], - "Beet_curly_top_Iran_virus__IR_Neg_B26P_Sug_08" : [ - "JQ707945" - ], - "Bluetongue_virus_IND1994_01" : [ - "KP268774", - "KP268779", - "KP268776", - "KP268778", - "KP268783", - "KP268780", - "KP268781", - "KP268777", - "KP268782" - ], - "Apple_latent_spherical_virus" : [ - "NC_003788", - "NC_003787" - ], - "Hepatitis_B_virus__027_TI_Mil" : [ - "KF873535" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6534_2009" : [ - "KJ627274" - ], - "Kashmir_bee_virus__KBV_AY" : [ - "KF956377" - ], - "Newcastle_disease_virus_NDV_Chicken_Egypt_1_2005" : [ - "FJ939313" - ], - "Tomato_yellow_leaf_curl_virus_Israel__Japan_Tosa_2005__TYLCV_Tosa" : [ - "AB192965" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_71U384_1971_IE" : [ - "KC344454" - ], - "Duck_hepatitis_A_virus_3__AP_04203" : [ - "DQ256134" - ], - "Burkholderia_mallei_SAVP1" : [ - "NC_008785", - "NC_008784" - ], - "Hepatitis_B_virus__HK1193" : [ - "DQ089773" - ], - "Reptile_vesivirus_Cro1__780032I_1978_US" : [ - "JX047864" - ], - "Reticuloendotheliosis_virus_ZD0708" : [ - "FJ496333" - ], - "Maize_streak_virus__MSV_A_MZ_Xai1_xaimoz_2007" : [ - "FJ882101" - ], - "Escherichia_coli_ATCC_8739" : [ - "NC_010468" - ], - "Paspalum_dilatatum_striate_mosaic_virus__AU_QG45_2011" : [ - "JQ948086" - ], - "Dengue_virus_1__DENV_1_VN_BID_V986_2006" : [ - "EU482530" - ], - "Small_begomovirus_associated_satellite__wf_S17" : [ - "KJ859178" - ], - "Streptococcus_phage_TP_J34_TP_J34" : [ - "NC_020197" - ], - "Lipovnik_virus__CzArLip_91" : [ - "HM543475", - "HM543476" - ], - "Porcine_circovirus_2_SNUVR000463" : [ - "KF871068" - ], - "Canine_parvovirus_2b_CPV_LZ2" : [ - "JQ268284" - ], - "Hepatitis_B_virus__HK884" : [ - "DQ089776" - ], - "Maize_streak_virus__MSV_B1_Za_PlaA_g8_2006" : [ - "EU628596" - ], - "Human_immunodeficiency_virus_1__03ZAPS077B1" : [ - "DQ093591" - ], - "Enterobacteria_phage_phiX174__DEL4" : [ - "EF380032" - ], - "Duck_Tembusu_virus__DTMUV_AH2011" : [ - "KJ958533" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2491_2007" : [ - "FJ882582" - ], - "Salmonella_enterica_serovar_Gallinarum_Pullorum_CDC1983_67" : [ - "NC_022221" - ], - "Bacillariodnavirus_LDMD_2013" : [ - "NC_025707" - ], - "Bordetella_phage_BIP_1" : [ - "NC_005809" - ], - "Potato_virus_Y_9703_3" : [ - "KC296432" - ], - "Human_immunodeficiency_virus_1__02BR006" : [ - "DQ358807" - ], - "Wheat_dwarf_virus_Bg17_barley_Bg17" : [ - "AM989927" - ], - "Listeria_phage_LP_026" : [ - "NC_024375" - ], - "West_Nile_virus__WNV_1_US_BID_V6658_2002" : [ - "KJ501400" - ], - "Hepatitis_B_virus__1958_4" : [ - "KR013875" - ], - "Potato_virus_Y_1108" : [ - "KC296440" - ], - "Foot_and_mouth_disease_virus_C5_C5_Argentina_c5arg_iso60" : [ - "AY593809" - ], - "Human_immunodeficiency_virus_1__03ZASK223B1" : [ - "DQ093597" - ], - "Hepatitis_B_virus__4681" : [ - "JN827420" - ], - "Bluetongue_virus__BTV4_SAD2012" : [ - "KC896853" - ], - "Hepatitis_B_virus__13" : [ - "EU562216" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7449_2009" : [ - "KJ627360" - ], - "Murid_herpesvirus_4_g2_4" : [ - "AF105037" - ], - "Human_TMEV_like_cardiovirus__HTCV_UC6" : [ - "GU595289" - ], - "Human_adenovirus_41__10_4851" : [ - "KF303071" - ], - "Streptococcus_phage_7201" : [ - "NC_002185" - ], - "Swine_hepatitis_E_virus__swDQ" : [ - "DQ279091" - ], - "Candidatus_Chloracidobacterium_thermophilum_B" : [ - "NC_016025", - "NC_016024" - ], - "Infectious_pancreatic_necrosis_virus_19G3e" : [ - "AY780922", - "AY780929" - ], - "Bifidobacterium_thermophilum_RBL67" : [ - "NC_020546" - ], - "Murine_norovirus_GV_CR18_2005_DEU__Mu_NoV_GV_CR18_2005_DE" : [ - "EU004683" - ], - "HBV_genotype_C__NAB1" : [ - "AB644280" - ], - "Cymbidium_chlorotic_mosaic_virus__Cym92_20" : [ - "NC_027123" - ], - "Dengue_virus_2__DENV_2_US_BID_V1060_1989" : [ - "EU482562" - ], - "Tomato_leaf_curl_China_betasatellite__Y253" : [ - "AJ971331" - ], - "Hepatitis_B_virus__318_98_4" : [ - "EU872009" - ], - "Pig_stool_associated_circular_ssDNA_virus__HEN1" : [ - "JX305991" - ], - "Dengue_virus_2__DENV_2_US_BID_V1435_2004" : [ - "EU687214" - ], - "Porcine_circovirus_2__GZ_CS1" : [ - "JQ809462" - ], - "Human_immunodeficiency_virus_1__03ZASK036B1" : [ - "AY901966" - ], - "Dengue_virus_1__DENV_1_VN_BID_V932_2007" : [ - "EU482477" - ], - "Candidatus_Phytoplasma_australiense" : [ - "NC_010544" - ], - "Porcine_circovirus_2_BJW_Beijing" : [ - "AY847748" - ], - "Penaeus_monodon_circovirus_VN11__VN11" : [ - "NC_022897" - ], - "Mycobacterium_phage_Jabbawokkie" : [ - "NC_022069" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_12_2010" : [ - "KF686346" - ], - "Torque_teno_sus_virus_1b__TTV2FC" : [ - "JX535329" - ], - "Dengue_virus_2__FGU_Apr2_06" : [ - "EU920848" - ], - "Tobacco_bushy_top_virus__MD_I" : [ - "KM016225" - ], - "West_Nile_virus__WNV_1_US_BID_V6401_2002" : [ - "KJ501279" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir5_T6X_Cuc_07" : [ - "FJ660436" - ], - "Legionella_pneumophila_Hextuple_3a" : [ - "NC_017526" - ], - "Hepatitis_B_virus__919077" : [ - "JN040798" - ], - "Dengue_virus_4__DENV_4_US_BID_V2446_1999" : [ - "FJ882599" - ], - "Dengue_virus_2__DF657" : [ - "FM210237" - ], - "Infectious_bursal_disease_virus_B_SD_RZ" : [ - "GQ166972", - "GQ166971" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V309_2006" : [ - "EU155375" - ], - "Porcine_circovirus_2_HB0402" : [ - "EF524519" - ], - "Kyuri_green_mottle_mosaic_virus_Yodo" : [ - "AB015145" - ], - "Human_immunodeficiency_virus_1__PS2008_Day377" : [ - "DQ676876" - ], - "Hepatitis_B_virus__N11_M_6642A" : [ - "KJ173405" - ], - "Hepatitis_B_virus__A153" : [ - "HM363592" - ], - "Dengue_virus_1__BNI_5201" : [ - "KJ468234" - ], - "Chickpea_chlorosis_virus_E__3460B" : [ - "KC172697" - ], - "Hepatitis_B_virus__F3_8" : [ - "GU815745" - ], - "Human_papillomavirus_type_6__54" : [ - "HG793862" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2010_2007" : [ - "FJ639692" - ], - "African_cassava_mosaic_virus__CF_CF124AN_07" : [ - "KJ887800" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2884_2006" : [ - "GQ199847" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4297_2007" : [ - "GU131940" - ], - "Crassocephalum_yellow_vein_virus___Jinghong__Jinghong" : [ - "NC_008794" - ], - "Hepatitis_B_virus__S2_2" : [ - "EU916208" - ], - "Human_coronavirus_NL63_NL63_DEN_2009_31" : [ - "JQ900257" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA42" : [ - "KF670661" - ], - "Wheat_dwarf_virus__SXTY10_35" : [ - "JQ647505" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5898_1" : [ - "KR105331" - ], - "Methanoculleus_marisnigri_JR1" : [ - "NC_009051" - ], - "Yellow_fever_virus__ArD181464" : [ - "JX898877" - ], - "Dengue_virus_2__CNS36" : [ - "JX649147", - "JX649148" - ], - "Porcine_circovirus_2__YL1" : [ - "HQ202946" - ], - "Dengue_virus_1__CHN_GuangDong_ZhongShan_Henglan01_2013" : [ - "KF971871" - ], - "Enterobacteria_phage_alpha3__wildtype" : [ - "NC_001330" - ], - "Norovirus_Hu_GII_4_CGMH14_2007_TW" : [ - "JN400612" - ], - "Porcine_circovirus_2_HuaiAn0609" : [ - "EU503034" - ], - "Ralstonia_phage_RSM1" : [ - "NC_008574" - ], - "Okra_yellow_mosaic_Mexico_virus__Mazatepec_3" : [ - "NC_014066" - ], - "Maize_streak_virus__MSV_I_Za_NewA_g217_2007" : [ - "EU628639" - ], - "Beet_chlorosis_virus__BChV_2a" : [ - "NC_002766" - ], - "Human_metapneumovirus_BJ1887" : [ - "DQ843659" - ], - "Eel_River_basin_pequenovirus__c18953" : [ - "KP087951" - ], - "Potato_virus_Y__ME173" : [ - "FJ643479" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC45AI1_2009" : [ - "JF909119" - ], - "Broad_bean_wilt_virus_1_ATCC_PV132" : [ - "NC_005290", - "NC_005289" - ], - "Tomato_severe_rugose_virus__BR_Car217_6_08" : [ - "KC706621" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19076_H00066_2007" : [ - "KR135304" - ], - "Duck_circovirus_AQ0901" : [ - "GU014543" - ], - "Dengue_virus_2__DENV_2_VN_BID_V722_2006" : [ - "EU482659" - ], - "Mamastrovirus_1_Oxford" : [ - "HUANSSPS" - ], - "Murine_norovirus_GV_NIH_4421_2005_USA_GV_NIH_4421_2005_USA" : [ - "JF320649" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0094" : [ - "KP759761" - ], - "Enterovirus_A71_Taipei_B4_01_2011" : [ - "KP274877" - ], - "Gallid_herpesvirus_2_Md5" : [ - "NC_002229" - ], - "Chikungunya_virus__SVUKDP_09" : [ - "JN558836" - ], - "Hepatitis_B_virus__HBV70" : [ - "KC875294" - ], - "Human_immunodeficiency_virus_1__04ZASK145B1" : [ - "AY901976" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19087_J32715_2007" : [ - "KR135315" - ], - "West_Nile_virus__BSL5_2004" : [ - "DQ666448" - ], - "Hepatitis_B_virus__Leb33" : [ - "JN642143" - ], - "Mycobacterium_phage_Nyxis" : [ - "NC_023565" - ], - "Guanarito_mammarenavirus_S_56764" : [ - "AY572554" - ], - "Porcine_circovirus_2__HX" : [ - "KC860786" - ], - "Human_immunodeficiency_virus_1__patient_WCIPR" : [ - "HIVU69592", - "HIVU69587", - "HIVU69585", - "HIVU69591", - "HIVU69584", - "HIVU69590", - "HIVU69593", - "HIVU69588", - "HIVU69586", - "HIVU69589" - ], - "Merkel_cell_polyomavirus__30b" : [ - "HM011554" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_COL_00SMH279_2000_ID" : [ - "KC344461" - ], - "Western_equine_encephalitis_virus__Imperial" : [ - "GQ287641" - ], - "Human_immunodeficiency_virus_1__03ZAPS079B1" : [ - "DQ093592" - ], - "Apple_mosaic_virus__Trapez_6" : [ - "HG328284" - ], - "JC_polyomavirus_723B" : [ - "AF300948" - ], - "Edwardsiella_ictaluri_93_146" : [ - "NC_012779" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_87I_028A_01_1987" : [ - "KJ723476" - ], - "Dengue_virus_2__DENV_2_US_BID_V1166_1987" : [ - "EU482570" - ], - "Human_herpesvirus_5_varUC" : [ - "FJ527563" - ], - "Human_immunodeficiency_virus_1__97CD_MBS30" : [ - "FN392875" - ], - "Human_immunodeficiency_virus_1__02TH_OUR1331" : [ - "AF529572" - ], - "Israel_turkey_meningoencephalomyelitis_virus__Israel_106819_2010" : [ - "KC734552" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US104" : [ - "KJ019070" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO16AF2_2009" : [ - "JF909224" - ], - "Canis_familiaris_papillomavirus_2" : [ - "NC_006564" - ], - "Hepatitis_C_virus_subtype_1b_MD5_2" : [ - "AF165054" - ], - "Chilli_leaf_curl_betasatellite____Pakistan_Lahore1_2004" : [ - "AM260466" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_C15" : [ - "KT013259", - "KT013258" - ], - "Bacillus_phage_Gamma__51" : [ - "NC_007458" - ], - "African_horse_sickness_virus__RSArrah_01" : [ - "KF446265", - "KF446256" - ], - "Soybean_crinkle_leaf_virus__Japan" : [ - "NC_003357" - ], - "Tanay_virus__11_4" : [ - "KF425263" - ], - "Coxsackievirus_A13_Flores" : [ - "AF465511", - "AF499637" - ], - "Cowpox_virus_Germany_1980_EP4" : [ - "HQ420895" - ], - "Cauliflower_mosaic_virus__Cabb_B_JI" : [ - "KJ716236" - ], - "Hepatitis_B_virus__HK1644" : [ - "DQ089762" - ], - "Dengue_virus_3__255_BR_PE_05" : [ - "JX669497" - ], - "Parainfluenza_virus_5_DEN" : [ - "JQ743322" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD23_2013" : [ - "KM229872" - ], - "JC_polyomavirus__J2_10" : [ - "AB081600" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3779_2006" : [ - "GU131889" - ], - "Hepatitis_B_virus_551_33" : [ - "KR013977" - ], - "Human_bocavirus_ZJ68" : [ - "JX887481" - ], - "Dengue_virus_2_VE_61133_2007" : [ - "HQ332187" - ], - "JC_polyomavirus__ZA_3" : [ - "AB198952" - ], - "Hepatitis_B_virus__GU779" : [ - "GQ161831" - ], - "Bluetongue_virus_21__RSArrrr_21" : [ - "AJ586724" - ], - "Toscana_virus_TOSV_Mantova_ITA_2013" : [ - "KM275783" - ], - "African_cassava_mosaic_virus__MG_MG69A1_06" : [ - "KJ887889" - ], - "Gallid_herpesvirus_1_TCO_high_passage" : [ - "JN580314" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_Asia1Leb83_asia1leb_89_iso89" : [ - "AY593798" - ], - "Beet_black_scorch_virus__Ir_Ksh3" : [ - "FN543467" - ], - "Bacillus_cellulosilyticus_DSM_2522" : [ - "NC_014829" - ], - "JC_polyomavirus__SA_3" : [ - "AB048555" - ], - "Hepatitis_B_virus__NIR_6" : [ - "KM577668" - ], - "Dichelobacter_nodosus_VCS1703A" : [ - "NC_009446" - ], - "Penaeus_monodon_hepandensovirus_1" : [ - "NC_007218" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_201102714" : [ - "JN687949" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_300_2012" : [ - "KP308451" - ], - "African_cassava_mosaic_virus__MG_MG46A1_06" : [ - "KJ887863" - ], - "Human_immunodeficiency_virus_1__02BR033" : [ - "DQ358811" - ], - "Tobacco_vein_banding_mosaic_virus__YN9_1" : [ - "KF444434" - ], - "Rabies_virus__FL1010" : [ - "JQ685916" - ], - "Mycobacterium_avium_104" : [ - "NC_008595" - ], - "Dengue_virus_2__DENV_2_NI_BID_V576_2006" : [ - "EU482689" - ], - "West_Nile_virus__WNV_1_US_BID_V7427_2011" : [ - "KJ501137" - ], - "Human_parechovirus_3__K20_94" : [ - "GQ183032" - ], - "Porcine_circovirus_2_CZ1107" : [ - "JX948783" - ], - "Listeria_phage_LMTA_148" : [ - "NC_024787" - ], - "Hepatitis_B_virus__SHB511" : [ - "KJ598709" - ], - "Porcine_circovirus_2_PT_32042_07" : [ - "HQ831526" - ], - "Hepatitis_B_virus__HBV_G123" : [ - "AB205190" - ], - "Tula_virus__Tula_Moravia_5302v_95" : [ - "Z69991" - ], - "Hepatitis_C_virus_subtype_1b_MD21" : [ - "AF207762" - ], - "Watermelon_chlorotic_stunt_virus__Als_4" : [ - "JN618984" - ], - "Potato_virus_M__PVM_352" : [ - "JX678982" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus__Sicily__Sicily" : [ - "AY736854" - ], - "Human_immunodeficiency_virus_1__PS2019_Day367" : [ - "DQ676882" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V418_2001" : [ - "EU256103" - ], - "Duck_hepatitis_A_virus_3__AP_04114" : [ - "DQ812093" - ], - "Hepatitis_C_virus__QC10" : [ - "KJ470615" - ], - "Hepatitis_B_virus_FMU007" : [ - "AY206378" - ], - "BK_polyomavirus__SHA_70" : [ - "AB365176" - ], - "Dengue_virus_1_CHI3336_02" : [ - "EU863650" - ], - "Feline_infectious_peritonitis_virus__79_1146" : [ - "NC_002306" - ], - "Tolypocladium_cylindrosporum_virus_1" : [ - "NC_014823" - ], - "Hepatitis_B_virus__T1434d" : [ - "GQ205384" - ], - "Broad_bean_wilt_virus_2__LS2" : [ - "KM076648", - "KM076649" - ], - "Norovirus_Hu_GII_20184_2009_VNM_Hu_GII_20184_2009_VNM" : [ - "KC409267" - ], - "Candidatus_Hodgkinia_cicadicola_Dsem" : [ - "NC_012960" - ], - "Torque_teno_mini_virus_ALA22__TTMV_ALA22" : [ - "NC_025726" - ], - "Hepatitis_B_virus__M85_216" : [ - "EU330997" - ], - "Potato_virus_Y__ME56" : [ - "FJ643478" - ], - "GB_virus_C_K1789" : [ - "D87711" - ], - "BK_polyomavirus__ANY_7" : [ - "AB464955" - ], - "Norovirus_Hu_GII_4_FUMI_2010_JP_Hu_GII_4_FUMI_2010_JP" : [ - "AB543808" - ], - "Squash_leaf_curl_virus__IL2_57" : [ - "KM595111" - ], - "European_mountain_ash_ringspot_associated_virus__E52907" : [ - "HG799737" - ], - "Bombyx_mandarina_nucleopolyhedrovirus_S2" : [ - "JQ071499" - ], - "Human_immunodeficiency_virus_1__C_96BW16_26" : [ - "AF110978" - ], - "Tomato_leaf_curl_Taiwan_virus__LJC14_2" : [ - "DQ866128" - ], - "Hepatitis_B_virus__I228" : [ - "FJ562327" - ], - "South_African_cassava_mosaic_virus__MG_MG1B2_06" : [ - "KJ887633" - ], - "Microviridae_Fen7918_21__Fen7918_21" : [ - "NC_027647" - ], - "JC_polyomavirus__LA_27" : [ - "AB081612" - ], - "Hepatitis_B_virus_362_4" : [ - "KR013921" - ], - "Thermococcus_barophilus_MP" : [ - "NC_014804", - "NC_015471" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140872" : [ - "KR653297" - ], - "Venezuelan_equine_encephalitis_virus_Pixuna_BeAr_35645" : [ - "AF075256" - ], - "West_Nile_virus__WNV_1_US_BID_V4588_2003" : [ - "HM756653" - ], - "Hepatitis_B_virus__1813" : [ - "FJ386636" - ], - "Banana_bunchy_top_virus__TJ1" : [ - "GQ214699", - "EF529519", - "EU095948" - ], - "Streptococcus_mitis_B6" : [ - "NC_013853" - ], - "Maize_streak_virus__MSV_B2_Ug_Kib1_2007" : [ - "EU628613" - ], - "Hepatitis_A_virus__HAJ95_8" : [ - "AB279734" - ], - "BK_polyomavirus_ITA_3" : [ - "AB269832" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM104" : [ - "KM233035" - ], - "Porcine_circovirus_1__Aust_3" : [ - "AY754014" - ], - "Tomato_yellow_leaf_curl_virus_IL__MX__SLP_11" : [ - "JQ303121" - ], - "Pepper_yellow_vein_Mali_virus__FY1" : [ - "AM691549" - ], - "Rice_stripe_virus__FYi04" : [ - "AJ875055", - "AJ875058" - ], - "Tick_borne_encephalitis_virus_Chichagovka_1222" : [ - "KP844724" - ], - "West_Nile_virus__WNV_1_US_BID_V6501_2005" : [ - "KJ501330" - ], - "Ectothiorhodospiraceae_bacterium_M19_40" : [ - "NC_021291" - ], - "Hepatitis_B_virus__N06_C_166B" : [ - "KJ173436" - ], - "Tobacco_leaf_curl_Pusa_virus_IN_Pusa_Tb_10" : [ - "NC_014596" - ], - "West_Nile_virus__WNV_1_US_BID_V6597_2012" : [ - "KJ501217" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V252_2002" : [ - "EU255954" - ], - "Foot_and_mouth_disease_virus___type_O__O_S04KOR_2002" : [ - "KF694734" - ], - "Hepatitis_B_virus__CX038M_e253n" : [ - "KJ173290" - ], - "Malvastrum_yellow_vein_Yunnan_virus__SC44" : [ - "KC189891" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1670_2007" : [ - "FJ182036" - ], - "Hepatitis_B_virus__AT2004" : [ - "JN792899" - ], - "Hepatitis_B_virus__MOD_4601" : [ - "GQ183473" - ], - "Hepatitis_B_virus__Ia_6" : [ - "AY596106" - ], - "Human_papillomavirus_type_58__AS347" : [ - "HQ537760" - ], - "Hepatitis_B_virus__T1503" : [ - "GQ205386" - ], - "Pepino_mosaic_virus__LE_2000" : [ - "AJ606359" - ], - "Human_immunodeficiency_virus_1__03ZAPS104MB1" : [ - "DQ369990" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E2835_2011_G3P_8__E2835" : [ - "KF371871", - "KF371872", - "KF371873", - "KF371875", - "KF371874", - "KF371870", - "KF371877", - "KF371878", - "KF371869" - ], - "La_Crosse_virus_LACV_mosquito_1978" : [ - "EF485037", - "EF485036", - "EF485038" - ], - "Maize_streak_virus__MSV_A_MZ_Map6_Moz27_2007" : [ - "HQ693356" - ], - "Porcine_circovirus_2_SuZhou0511" : [ - "EU503036" - ], - "Broad_bean_wilt_virus_2__PAP2" : [ - "KC625501", - "KC625514" - ], - "Streptococcus_phage_Sfi19" : [ - "NC_000871" - ], - "Vibrio_phage_VH7D" : [ - "NC_023568" - ], - "Hepatitis_B_virus_1463_22" : [ - "KR014072" - ], - "Duck_Tembusu_virus__df_2" : [ - "KJ489355" - ], - "Myxoma_virus_Lausanne" : [ - "NC_001132" - ], - "African_cassava_mosaic_virus__ACMV_Ybi4_Pr" : [ - "FN435274" - ], - "African_cassava_mosaic_virus__ACMV_Ybi2_Pr" : [ - "FN435272" - ], - "Human_immunodeficiency_virus_1__99UFRJ_1" : [ - "AY455778" - ], - "Human_cosavirus_E_HCoSV_E1" : [ - "NC_012798" - ], - "Human_immunodeficiency_virus_1__ES_X2118_2__C" : [ - "EU884500" - ], - "Hepatitis_B_virus__S3_1" : [ - "EU916211" - ], - "West_Nile_virus__WNV_1_US_BID_V4226_2005" : [ - "HM488152" - ], - "Saffold_virus__Pak_2338" : [ - "AB747258" - ], - "Tomato_yellow_leaf_curl_virus_Mild_SE_Imp_2_09__Imported_2" : [ - "HF548825" - ], - "Escherichia_phage_vB_EcoM_FFH2" : [ - "NC_024134" - ], - "BK_polyomavirus__SJH_LG_305" : [ - "JN192436" - ], - "Pyrococcus_ST04" : [ - "NC_017946" - ], - "HIV_1_CRF03_AB__KAL153" : [ - "AF193276" - ], - "JC_polyomavirus__JCV135_20" : [ - "JF424851" - ], - "Infectious_bronchitis_virus__GX_NN09032" : [ - "JX897900" - ], - "Astrovirus_MLB1_WD0016" : [ - "FJ402983" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ20AF3_2009" : [ - "JF909205" - ], - "Hepatitis_B_virus__DEN6152" : [ - "KF779244" - ], - "Equine_rhinitis_A_virus__D1305_03" : [ - "KM269483" - ], - "Rabies_virus_SAD_B19_4th" : [ - "EU877067" - ], - "Bean_golden_mosaic_virus__BR_Par4_12" : [ - "KJ939798" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_621_2001" : [ - "DQ404172" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1896_2007" : [ - "FJ410234" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLI1585_2010" : [ - "KJ672598" - ], - "Synechococcus_phage_ACG_2014c__Syn7803C97" : [ - "KJ019063" - ], - "Sweet_potato_virus_2__CW142" : [ - "KP115615" - ], - "Porcine_circovirus_2_pmws_PCV" : [ - "AF027217" - ], - "Dengue_virus_1__DENV_1_BR_BID_V2395_2006" : [ - "FJ850087" - ], - "Avian_leukosis_virus_CTS_016" : [ - "AB669569" - ], - "Simian_adenovirus_37_1" : [ - "FJ025921" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_2__AHEaCV_2_NZ_3024C1_2012" : [ - "NC_026653" - ], - "Cellulophaga_phage_phi12_2_phi12_2" : [ - "NC_021797" - ], - "Dengue_virus_1__RR107" : [ - "KF289072" - ], - "Dengue_virus_3__HN_2013_108" : [ - "KJ622198" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO05BD3_2009" : [ - "JF909130" - ], - "Myxoma_virus_Aust_Brooklands_1_95_BRK_897" : [ - "JX565564" - ], - "Human_immunodeficiency_virus_1__NP03" : [ - "AB485654", - "AB485655" - ], - "Porcine_circovirus_2__BG0_5" : [ - "JQ181595" - ], - "JC_polyomavirus__AC_2" : [ - "AB212953" - ], - "Hepatitis_B_virus__J181" : [ - "GQ377613" - ], - "Maize_streak_virus__MSV_A_ZA_Hec3_O12_1989" : [ - "FJ882111" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1218_2007" : [ - "KF955366" - ], - "Human_immunodeficiency_virus_1__00BW1759_3" : [ - "AF443094" - ], - "Dengue_virus_1__12898_BR_PE_10" : [ - "JX669462" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_12" : [ - "EU384617" - ], - "Hepatitis_B_virus__Ib_1" : [ - "AY596107" - ], - "Japanese_encephalitis_virus__SH3" : [ - "JN381864" - ], - "Human_immunodeficiency_virus_1__03ZASK111B1" : [ - "DQ056404" - ], - "West_Nile_virus__BSL106_06" : [ - "JF957167" - ], - "Porcine_circovirus_2_09GS" : [ - "HQ395028" - ], - "Strawberry_mild_yellow_edge_virus__AB41_02" : [ - "KR350471" - ], - "Toscana_virus_TOSV_Firenze_ITA_1983_1" : [ - "KM275764" - ], - "Bordetella_avium_197N" : [ - "NC_010645" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1751_2007" : [ - "FJ390399" - ], - "Shewanella_baltica_OS117" : [ - "NC_017577", - "NC_017578", - "NC_017580", - "NC_017579" - ], - "Human_immunodeficiency_virus_1__21068" : [ - "AF067155" - ], - "Visna_maedi_virus_kv1772" : [ - "NC_001452" - ], - "SARS_coronavirus_MA15_MA15_d4ym2" : [ - "JF292912" - ], - "Enterobacteria_phage_phiX174__CMMloMhi" : [ - "AF299313" - ], - "Shigella_flexneri_2002017" : [ - "NC_017321", - "NC_017329", - "NC_017328", - "NC_017330", - "NC_017320", - "NC_017319" - ], - "Gordonia_phage_GRU1" : [ - "NC_016435" - ], - "European_mountain_ash_ringspot_associated_virus__E52995" : [ - "HG799743" - ], - "Dengue_virus_2__GUA_Sep_06" : [ - "EU920849" - ], - "Porcine_circovirus_2__k52" : [ - "DQ629117" - ], - "Norovirus_Hu_GII_4_NIHIC4_1_2011_USA_Hu_GII_4_NIHIC4_1_2011_USA" : [ - "KC576912" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1009_2006" : [ - "EU482453" - ], - "Tomato_spotted_wilt_virus__NC_1" : [ - "AY744476" - ], - "Human_papillomavirus_type_102__Qv34077" : [ - "DQ080083" - ], - "Chickpea_chlorosis_Australia_virus__21" : [ - "KC172691" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8161_2010" : [ - "KJ627372" - ], - "Turnip_mosaic_virus__NZ419C" : [ - "AB989652" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_237_2011" : [ - "KJ686207" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V378_2001" : [ - "EU256044" - ], - "Dinoroseobacter_phage_DFL12phi1" : [ - "NC_024367" - ], - "Duck_circovirus__D12_JW_035" : [ - "KC851814" - ], - "BK_polyomavirus_VNM_1" : [ - "AB269867" - ], - "Sewage_associated_gemycircularvirus_4__BS3913" : [ - "NC_026144" - ], - "Alkaliphilus_oremlandii_OhILAs" : [ - "NC_009922" - ], - "Human_rotavirus_A_A64" : [ - "ROHSG10B" - ], - "Japanese_encephalitis_virus_Sw_Mie_34_2004" : [ - "AB698909" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1717_2007" : [ - "FJ024280" - ], - "Maize_streak_virus__MSV_A_NG_Eji2_N35a_2007" : [ - "HQ693370" - ], - "Maize_streak_virus__UHoi_159" : [ - "EF547102" - ], - "Hepatitis_B_virus__DEN6139" : [ - "KF779242" - ], - "Wheat_dwarf_virus__QHLD10_18" : [ - "JQ647481" - ], - "Treponema_primitia_ZAS_2" : [ - "NC_015578" - ], - "Chickpea_chlorotic_dwarf_virus__PK31" : [ - "KM377668" - ], - "Human_rhinovirus_A78" : [ - "EF173418" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_FH16_2010" : [ - "KM188445" - ], - "Hepatitis_B_virus__S1656_8" : [ - "FJ787485" - ], - "Human_mastadenovirus_D_human_USA_Pitts_00121_1991_8_P8H8F8" : [ - "KF429746" - ], - "Tomato_leaf_curl_Vietnam_virus__ToLCVV_DX2" : [ - "EU189149" - ], - "Humulus_japonicus_latent_virus" : [ - "NC_006066", - "NC_006065", - "NC_006064" - ], - "Human_papillomavirus_type_6__PV529" : [ - "JN252315" - ], - "Hepatitis_B_virus__CH8" : [ - "DQ823092" - ], - "SARS_coronavirus_Sin850" : [ - "AY559096" - ], - "Maize_streak_virus__MSV_A_MZ_Mac_Moz19_2006" : [ - "HQ693349" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9513_2013" : [ - "KJ643563" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC18B00_2005" : [ - "JF909096" - ], - "Hepatitis_B_virus__MLT0596" : [ - "KF779285" - ], - "Enterovirus_A71_1_SHENZHEN_08_China_HFMD_2008" : [ - "FJ607334" - ], - "Human_papillomavirus_type_16__BF215" : [ - "HQ644238" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4016_2008" : [ - "GU131778" - ], - "Human_herpesvirus_4_HN4" : [ - "AB850649" - ], - "Hepatitis_B_virus_012" : [ - "AB900107" - ], - "Tomato_yellow_leaf_curl_Vietnam_betasatellite__SDSG" : [ - "KP322555" - ], - "Dengue_virus_2__MAR_Jun_05" : [ - "EU920836" - ], - "Koala_retrovirus__Pci_582119" : [ - "KF786280" - ], - "Human_bocavirus__2012GZ0963" : [ - "KJ684077" - ], - "Human_immunodeficiency_virus_1_ES_X230_10" : [ - "FJ670515" - ], - "SFTS_virus_HNXY_231_HNXY_231" : [ - "KC292286", - "KC292339", - "KC292313" - ], - "Middle_East_respiratory_syndrome_coronavirus__Jeddah_C7770_KSA_2014_04_07" : [ - "KM027257" - ], - "Mycobacterium_bovis_BCG_Mexico" : [ - "NC_016804" - ], - "Human_immunodeficiency_virus_1__04ZAPS188B1" : [ - "DQ164122" - ], - "West_Nile_virus__WNV_1_US_BID_V6643_2002" : [ - "KJ501388" - ], - "Human_poliovirus_2_NIE1018444" : [ - "KJ170546" - ], - "Gorilla_smacovirus__SF3" : [ - "NC_026319" - ], - "Rhesus_rotavirus_RRV" : [ - "AF295303" - ], - "JC_polyomavirus__SK_6" : [ - "AB183152" - ], - "Puumala_virus_Evo_15Cg_93" : [ - "Z30705" - ], - "Hepatitis_B_virus_T_1858_975484" : [ - "AF330110" - ], - "Human_papillomavirus_type_13" : [ - "X62843", - "DQ344807" - ], - "African_cassava_mosaic_virus__MG_MG44B1_06" : [ - "KJ887860" - ], - "Torque_teno_sus_virus_1b__TTV2Hn93" : [ - "JQ664305" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3405_2007" : [ - "GQ868578" - ], - "Porcine_epidemic_diarrhea_virus__KUIDL_PED_2014_002" : [ - "KJ588063" - ], - "Measles_virus_Edmonston_B" : [ - "Z66517" - ], - "Monkeypox_virus__DRC_06_0970" : [ - "JX878408" - ], - "Southern_rice_black_streaked_dwarf_virus__LC1" : [ - "KJ513444", - "KJ493783" - ], - "Hepatitis_B_virus__J253" : [ - "GQ377640" - ], - "Pseudomonas_phage_KPP25" : [ - "NC_024123" - ], - "Bat_coronavirus_HKU9_3_BF_493I" : [ - "EF065515" - ], - "Rabies_virus__TN310" : [ - "JQ685947" - ], - "JC_polyomavirus__Han_4" : [ - "AB198946" - ], - "Human_poliovirus_1__DOR00025" : [ - "AF405686" - ], - "Coxsackievirus_A11_Belgium_1" : [ - "AF499636" - ], - "Hepatitis_B_virus_WLAP10" : [ - "AF182804" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1535_2007" : [ - "EU677162" - ], - "Dengue_virus_2__DENV_2_NI_BID_V566_2006" : [ - "EU482773" - ], - "Coxsackievirus_A22_Chulman" : [ - "AF499643" - ], - "Methylobacterium_4_46" : [ - "NC_010373", - "NC_010374", - "NC_010511" - ], - "Hepatitis_B_virus__1765" : [ - "FJ386582" - ], - "Norovirus_Hu_GII_4_Toyama5_2007_JP_Hu_GII_4_Toyama5_2007_JP" : [ - "AB541361" - ], - "Mammalian_orthoreovirus_2_BYD1" : [ - "DQ318037" - ], - "Idiomarinaceae_phage_1N2_2" : [ - "NC_025439" - ], - "Blainvillea_yellow_spot_virus__BR_Vic26c_10" : [ - "KC706528" - ], - "Hepatitis_B_virus__KOR41HCC" : [ - "GQ475345" - ], - "Hepatitis_B_virus__Cr07" : [ - "KJ843224" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_1C" : [ - "KM609203" - ], - "Human_immunodeficiency_virus_1__US2" : [ - "AY173953", - "AB485639", - "AB485638", - "AB485640" - ], - "Human_bocavirus_GZ2010_03" : [ - "JN128953" - ], - "Puumala_virus_Sotkamo" : [ - "NC_005223", - "NC_005224", - "NC_005225" - ], - "Human_immunodeficiency_virus_1__S15_5h4_3h2_FL" : [ - "KP170487" - ], - "Mycobacterium_intracellulare_ATCC_13950" : [ - "NC_016946" - ], - "TGEV_Purdue_P115_attenuated_Purdue_P115" : [ - "DQ811788" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_89E_067_01_1989" : [ - "KP856965" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4171_midgut" : [ - "HQ671731" - ], - "Rabbit_hemorrhagic_disease_virus_Ascot" : [ - "EF558575" - ], - "Hepatitis_B_virus__gib824" : [ - "AJ131568" - ], - "Bluetongue_virus_2__14643_2808" : [ - "DQ191261" - ], - "Bean_golden_mosaic_virus__BR_Stm1_05" : [ - "KJ939722" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2823_2007" : [ - "FJ882561" - ], - "Rotavirus_G9_US244" : [ - "AJ250274" - ], - "Hepatitis_C_virus_subtype_1b_MD10_2" : [ - "AF165064" - ], - "BK_polyomavirus__SAU_3" : [ - "AB365157" - ], - "Hepatitis_B_virus__DMY_5" : [ - "FJ787488" - ], - "Papaya_leaf_crumple_virus_Najafgarh_1__India_New_Delhi_Papaya_2008___Naj1__IN_ND_Pap_08" : [ - "HM140369" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1378" : [ - "KM573772" - ], - "Hepatitis_B_virus__CHN_L45" : [ - "AY817510" - ], - "Chikungunya_virus__MY_06_37348" : [ - "FN295483" - ], - "Borrelia_bissettii_DN127" : [ - "NC_015906", - "NC_015922", - "NC_015916", - "NC_015921", - "NC_015919", - "NC_015910", - "NC_015907", - "NC_015908", - "NC_015911", - "NC_015904", - "NC_015903", - "NC_015917", - "NC_015918", - "NC_015905", - "NC_015920", - "NC_015909", - "NC_015915" - ], - "Tomato_leaf_curl_China_betasatellite__Y146_31" : [ - "AJ536623" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2286_2001" : [ - "FJ687441" - ], - "Microbacterium_phage_Min1" : [ - "NC_009603" - ], - "Hepatitis_B_virus_551_16" : [ - "KR013973" - ], - "West_Nile_virus__BSL24_11" : [ - "JQ700441" - ], - "Dengue_virus_1_ThD1_0049_01" : [ - "AY732482" - ], - "Hepatitis_A_virus__AH3" : [ - "AB020566" - ], - "Tomato_yellow_leaf_curl_virus__KW2" : [ - "JN604485" - ], - "Human_papillomavirus_type_35__UA151" : [ - "JX129488" - ], - "Beak_and_feather_disease_virus__PT08" : [ - "EU810207" - ], - "Hepatitis_B_virus__N12_M_6600A" : [ - "KJ173439" - ], - "Hepatitis_B_virus__7782" : [ - "U87746" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3393_2002" : [ - "GQ868571" - ], - "Hepatitis_E_virus__180C" : [ - "KJ496144" - ], - "Banana_bunchy_top_virus__Lucknow" : [ - "EU516323", - "EU402601", - "EU051379", - "EF687856" - ], - "Klebsiella_phage_K11" : [ - "NC_011043" - ], - "Hepatitis_B_virus__MMA_2" : [ - "AM421530" - ], - "Sporobolus_striate_mosaic_virus_1__AU_3020_1_2011" : [ - "NC_018577" - ], - "Hepatitis_B_virus_4651_97" : [ - "EU594424" - ], - "Theiler_s_like_virus_of_rats_NGS910" : [ - "AB090161" - ], - "Human_papillomavirus_type_11_CU18" : [ - "JQ773410" - ], - "Trailing_lespedeza_virus_1__06TGP01091" : [ - "NC_015227" - ], - "Hepatitis_B_virus__Occult_HK321" : [ - "KJ410500" - ], - "Human_immunodeficiency_virus_1_ES_X1628_2" : [ - "FJ670520" - ], - "Hepatitis_B_virus__G192" : [ - "JQ040158" - ], - "Eel_River_basin_pequenovirus__c21265" : [ - "KP087955" - ], - "Banana_bunchy_top_virus__JS1" : [ - "FJ859745", - "FJ859749", - "FJ859732" - ], - "Human_immunodeficiency_virus_1__92RW025A" : [ - "AB287376", - "AB287377" - ], - "Duck_reovirus_TH11" : [ - "JX826589", - "KC493573", - "KC493574", - "JX826588", - "KC493572" - ], - "Diaporthe_ambigua_RNA_virus_1" : [ - "NC_001278" - ], - "Maize_Iranian_mosaic_virus" : [ - "NC_011542" - ], - "Hepatitis_B_virus__TW706" : [ - "EF494376" - ], - "Citrus_leaf_blotch_virus_V18_M3_A" : [ - "JN983455" - ], - "Porcine_circovirus_2_YangZhou0608" : [ - "EU503039" - ], - "Dengue_virus_3__DENV_3_VE_BID_V915_2001" : [ - "EU569690" - ], - "Dengue_virus_4__DENV_4_US_BID_V2429_1994" : [ - "GQ199878" - ], - "Rodent_Torque_teno_virus_2__RN_8_Se11" : [ - "KM609325" - ], - "Dengue_virus_4__DENV_4_VE_BID_V1160_2007" : [ - "FJ182017" - ], - "Hepatitis_B_virus_adr_Donor_3_98_May" : [ - "AB026814" - ], - "Hepatitis_B_virus__CONTROL7" : [ - "JQ801500" - ], - "Rotavirus_G9_PH301" : [ - "AJ491184" - ], - "Hepatitis_B_virus__F_6" : [ - "KF373038" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2313_2001" : [ - "FJ744727" - ], - "Tomato_leaf_curl_betasatellite_JP8" : [ - "HM989847" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota67_2013" : [ - "KJ645663" - ], - "Enterobacteria_phage_HK022" : [ - "NC_002166" - ], - "Tomato_leaf_curl_Bangalore_virus_Indian_tomato_leaf_curl_virus__ITmLCV" : [ - "NC_003891" - ], - "Torque_teno_virus__TTV_HD24d__rheu236" : [ - "FR751509" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_84E_016_01_1984" : [ - "KP258737" - ], - "Hepatitis_B_virus__Cr06" : [ - "KJ843223" - ], - "Hepatitis_B_virus_362_8" : [ - "KR013923" - ], - "Human_adenovirus_7_HAdV_B7_XZ2011_93" : [ - "KC857700" - ], - "Human_parainfluenza_virus_3_HPIV3_AUS_1_2007" : [ - "KF530226" - ], - "Norovirus_Hu_GII_20180_2009_VNM_Hu_GII_20180_2009_VNM" : [ - "KC409265" - ], - "Soil_borne_wheat_mosaic_virus" : [ - "AJ298068", - "AJ298069" - ], - "Infectious_salmon_anemia_virus__Loch_Nevis_98" : [ - "AF262387" - ], - "Hepatitis_B_virus__HK1663" : [ - "DQ089767" - ], - "Feline_calicivirus_FCV2024" : [ - "AF479590" - ], - "Hepatitis_B_virus__HBV_MDQ29" : [ - "JQ272888" - ], - "Gossypium_punctatum_mild_leaf_curl_virus__Punc_15A" : [ - "EU384575" - ], - "Cauliflower_mosaic_virus__IRNTuKh12" : [ - "JX912270" - ], - "Sewage_associated_circular_DNA_virus_22__SaCV_22_NZ_BS4155_2012" : [ - "NC_026265" - ], - "SARS_coronavirus_JMD__JMD" : [ - "AY394988" - ], - "Hepatitis_B_virus_C_1858_sa11" : [ - "AF223963" - ], - "Hepatitis_B_virus__HBV228" : [ - "JN688722" - ], - "Beet_soil_borne_virus" : [ - "FN386612", - "FN386613", - "FN386614" - ], - "Euphorbia_mosaic_virus__Jalisco" : [ - "HQ185235" - ], - "Hepatitis_B_virus__EHBV_I_033_HIV_HBV" : [ - "KM524360" - ], - "Murray_Valley_encephalitis_virus_MK6684" : [ - "KF751869" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_298_2012" : [ - "KP308434" - ], - "Croton_yellow_vein_mosaic_alphasatellite" : [ - "FN658709", - "FR877534", - "NC_013801" - ], - "Porcine_enterovirus_G1__13_03212" : [ - "KF985175" - ], - "Hepatitis_B_virus__HBV9" : [ - "KC875310" - ], - "Rift_Valley_fever_virus_ZH_501_777" : [ - "DQ375408", - "DQ380202", - "DQ380148" - ], - "Prevotella_ruminicola_23" : [ - "NC_014033" - ], - "Mycobacterium_kansasii_ATCC_12478" : [ - "NC_022654", - "NC_022663" - ], - "Enterovirus_A71__EV144_06" : [ - "HQ647179" - ], - "Maize_streak_virus__MSV_F_Ng_IntB_g88_2007" : [ - "EU628629" - ], - "Human_papillomavirus_type_45__Z5" : [ - "KC470251" - ], - "Prochlorococcus_phage_Syn1_Syn1" : [ - "NC_015288" - ], - "Hepatitis_B_virus__patient18" : [ - "EU881998", - "EU881997" - ], - "Chromohalobacter_salexigens_DSM_3043" : [ - "NC_007963" - ], - "Sweet_potato_leaf_curl_South_Carolina_virus__US_SC_648B_9" : [ - "NC_015317" - ], - "Human_herpesvirus_5_BE_4_2012" : [ - "KP745724" - ], - "Usutu_virus_SAAR_1776" : [ - "AY453412" - ], - "Classical_swine_fever_virus___Alfort_Tuebingen" : [ - "HCVCGSA" - ], - "West_Nile_virus__WNV_1_US_BID_V6542_2002" : [ - "KJ501502" - ], - "Maprik_virus__MK7532" : [ - "NC_026283", - "NC_026282", - "NC_026281" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V27_2003" : [ - "EU862832" - ], - "Hepatitis_B_virus__BA92" : [ - "EU366129" - ], - "Papaya_ringspot_virus_P__HN_1" : [ - "HQ424465" - ], - "Moroccan_pepper_virus__Lisianthus" : [ - "AB704411" - ], - "Porcine_circovirus_2__La_Habana_30" : [ - "FN687842" - ], - "Equine_infectious_anemia_virus_DV_DV35_20" : [ - "HM141911" - ], - "Paracoccus_aminophilus_JCM_7686" : [ - "NC_022049", - "NC_022042", - "NC_022050", - "NC_022043", - "NC_022044", - "NC_022041" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1771_2007" : [ - "FJ432723" - ], - "Dengue_virus_3__DENV_3_US_BID_V2110_2000" : [ - "FJ547075" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V404_2006" : [ - "EU155272" - ], - "Mycobacterium_phage_DrDrey" : [ - "NC_022059" - ], - "Coxsackievirus_B5_COXB5_Henan_2010" : [ - "HQ998851" - ], - "Human_papillomavirus_type_11__LP2" : [ - "HE611271" - ], - "Bat_coronavirus_HKU9_10_1" : [ - "HM211100" - ], - "Citrus_tristeza_virus__A18" : [ - "JQ798289" - ], - "Bluetongue_virus_17__South_Africa_ref" : [ - "AJ585138" - ], - "Hepatitis_B_virus__FF6" : [ - "KM359441" - ], - "Bean_golden_mosaic_virus__BR_Par12_12" : [ - "KJ939819" - ], - "Tomato_yellow_leaf_curl_virus__Nons" : [ - "GU325632" - ], - "Hepatitis_B_virus__2151" : [ - "FJ386637" - ], - "Dengue_virus_3__423_BR_PE_06" : [ - "JX669507" - ], - "Impatiens_necrotic_spot_virus__YSMi_SH" : [ - "FN400773" - ], - "Coxsackievirus_B5_Faulkner" : [ - "AF114383" - ], - "Dengue_virus_2__DENV_2_MX_BID_V2959_2005" : [ - "GQ199894" - ], - "Tomato_spotted_wilt_virus__CO" : [ - "AY744475" - ], - "Maize_streak_virus__MSV_A_CF_Bang5_Car43_2008" : [ - "HQ693300" - ], - "Tomato_yellow_leaf_curl_virus_Oman__Tom_49" : [ - "KF229726" - ], - "Rabbit_hemorrhagic_disease_virus" : [ - "DQ189077", - "DQ189078" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA4815_2008" : [ - "KJ672601" - ], - "Hepatitis_B_virus__Cuba56" : [ - "KM606749" - ], - "Hepatitis_B_virus__CAR107" : [ - "AM494703" - ], - "Convict_Creek_107_virus__Convict_Creek_107" : [ - "HPSCC107MS" - ], - "Porcine_circovirus_2__HB1_1" : [ - "JQ181591" - ], - "Hepatitis_B_virus__N04_C_158B" : [ - "KJ173432" - ], - "Measles_virus_Shanghai_191" : [ - "FJ416067", - "EU435017" - ], - "Escherichia_coli_O103_H2_12009" : [ - "NC_013353", - "NC_013354" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0136" : [ - "KP759684" - ], - "Sweet_potato_leaf_curl_Georgia_virus__16" : [ - "NC_004640" - ], - "Southern_rice_black_streaked_dwarf_virus__Hunan_DC" : [ - "JQ337964" - ], - "Chikungunya_virus__IND_KA51" : [ - "FJ000068" - ], - "Staphylococcus_phage_phi5967PVL_JCSC5967" : [ - "NC_019921" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2344_2000" : [ - "FJ850060" - ], - "Human_immunodeficiency_virus_1__JRC77AE" : [ - "AB565503", - "AB565504" - ], - "JC_polyomavirus__KB_11" : [ - "AB362354" - ], - "Vibrio_nigripulchritudo_SnF1" : [ - "NC_022543", - "NC_022528" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_B2_6D_P" : [ - "JX570651" - ], - "West_Nile_virus__WNV_USA_BID_G15502" : [ - "JX503093" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GBC_11_392" : [ - "KF385412" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_14_2009" : [ - "KF430199" - ], - "Torque_teno_sus_virus_1a__TTV1Bj2_2" : [ - "HM633244" - ], - "Porcine_circovirus_2_SXYLA_03" : [ - "KC800641" - ], - "Wheat_dwarf_virus__QHXN08_26" : [ - "KJ536148" - ], - "Human_papillomavirus_type_68__Qv33015" : [ - "KC470274" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1810A" : [ - "JX869177" - ], - "Soybean_mosaic_virus__SX_Z" : [ - "KP710870" - ], - "Human_papillomavirus_type_58_CNZJ_2" : [ - "KC860271" - ], - "Gossypium_darwinii_symptomless_virus__Dar4" : [ - "EU365615" - ], - "Dengue_virus_2_D2_PF_UH00_1973" : [ - "HM582110" - ], - "Hepatitis_B_virus__P130" : [ - "GQ477503" - ], - "Hepatitis_B_virus_HB581" : [ - "HM011503" - ], - "Helicobacter_phage_1961P" : [ - "NC_019512" - ], - "Fowl_aviadenovirus_A_Phelps__ATCC_VR_432" : [ - "NC_001720" - ], - "African_cassava_mosaic_virus__CF_CF118AB1_07" : [ - "KJ887797" - ], - "Human_coronavirus_OC43_OC43_human_USA_851_15_1985" : [ - "KF530060" - ], - "West_Nile_virus__WNV_1_US_BID_V6408_2001" : [ - "KJ501454" - ], - "Human_immunodeficiency_virus_1__02ZMDB" : [ - "AB254150", - "AB254151", - "AB254154", - "AB254153", - "AB254152" - ], - "Hepatitis_E_virus__JDEER_Hyo03L" : [ - "AB189071" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1808_2007" : [ - "FJ410203" - ], - "Bean_necrotic_mosaic_virus__TF_SP" : [ - "NC_018071", - "NC_018070", - "NC_018072" - ], - "HBV_genotype_C__NAB32" : [ - "AB644284" - ], - "JC_polyomavirus__JCV144_19" : [ - "JF424880" - ], - "Escherichia_phage_N4" : [ - "NC_008720" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG582A1_11" : [ - "KJ888050" - ], - "Dengue_virus_4_H772852_DENV_4_ROR7363" : [ - "JQ513331" - ], - "Duck_hepatitis_A_virus_1__JH1" : [ - "EU395436" - ], - "Canine_distemper_virus_Snyder_Hill" : [ - "JN896987" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_9" : [ - "JQ647461" - ], - "Hepatitis_B_virus__LBY001" : [ - "GQ358137" - ], - "Papiine_herpesvirus_2_OU4_2" : [ - "KF908244" - ], - "Apple_stem_pitting_virus__PM8" : [ - "KF319056" - ], - "Batai_virus" : [ - "X73464" - ], - "Hepatitis_B_virus__AnkaraE19" : [ - "AB674416" - ], - "Shallot_yellow_stripe_virus__ZQ2" : [ - "NC_007433" - ], - "Hepatitis_B_virus_468_11" : [ - "KR013927" - ], - "Hepatitis_B_virus_1303_30" : [ - "KR013851" - ], - "African_swine_fever_virus__Pretorisuskop_96_4" : [ - "AY261363" - ], - "Hepatitis_B_virus__PNF5034" : [ - "KF779352" - ], - "Dengue_virus_3__DENV_3_VE_BID_V916_2001" : [ - "EU569691" - ], - "Bacillus_phage_JBP901" : [ - "NC_027352" - ], - "Black_howler_monkey_smacovirus__SF1" : [ - "NC_026317" - ], - "Rehmannia_mosaic_virus__Henan" : [ - "NC_009041" - ], - "Corchorus_golden_mosaic_virus" : [ - "NC_009646", - "NC_009644" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2786_2007" : [ - "GQ199806" - ], - "Potato_virus_Y_N_SASA_207" : [ - "AJ584851" - ], - "Enterobacteria_phage_BA14" : [ - "NC_011040" - ], - "Torque_teno_sus_virus_1a__TTV1XM" : [ - "JX535327" - ], - "Hepatitis_B_virus__LDA274" : [ - "KF849724" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V458_2006" : [ - "EU482886" - ], - "Human_immunodeficiency_virus_1__DR5032" : [ - "AB253724", - "AB253721", - "AB253719", - "AB253718", - "AB253723", - "AB253722", - "AB253725", - "AB253717", - "AB253720" - ], - "Porcine_circovirus_2__IL" : [ - "HQ202969" - ], - "Hepatitis_B_virus_China_Xinjiang_HB26_2009_Xinjiang_HB26" : [ - "HQ833466" - ], - "Dengue_virus_2__DENV_2_VN_BID_V703_2006" : [ - "EU482640" - ], - "Hepatitis_B_virus__dyc1011" : [ - "KC774498" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD174_2013" : [ - "KM229836" - ], - "Rice_tungro_bacilliform_virus__Philippines" : [ - "NC_001914" - ], - "JC_polyomavirus__PB_4" : [ - "AB077877" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1118_2001" : [ - "EU529687" - ], - "JC_polyomavirus__MT_2" : [ - "AB077860" - ], - "Hepatitis_B_virus__318_99_5" : [ - "EU872012" - ], - "Escherichia_coli_O157_H7_TW14359" : [ - "NC_013010", - "NC_013008" - ], - "Mycobacterium_phage_Giles" : [ - "NC_009993" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V6_2001" : [ - "EU256055" - ], - "Hepatitis_B_virus__2061Chinese" : [ - "EF473975" - ], - "Hepatitis_B_virus__E1_11" : [ - "GU815680" - ], - "Avian_hepatitis_E_virus__05_5492" : [ - "AM943646" - ], - "Hepatitis_B_virus__HBV38" : [ - "KC875278" - ], - "Hepatitis_B_virus_UZBV61_UZBV61" : [ - "AB222712" - ], - "archaeon_Mx1201" : [ - "NC_020913" - ], - "Norovirus_Hu_GII_4_Aichi3_2006_JP_Hu_GII_4_Aichi3_2006_JP" : [ - "AB447446" - ], - "Japanese_encephalitis_virus_JaOAr73055" : [ - "AB569988" - ], - "Temperate_fruit_decay_associated_virus__MFB15" : [ - "KR134314" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_27_2011" : [ - "KJ686221" - ], - "Enterovirus_D68__2014_R1357" : [ - "KT280496" - ], - "Cauliflower_mosaic_virus__GRC87G" : [ - "AB863198" - ], - "Human_papillomavirus_type_6__CAC331" : [ - "FR751327" - ], - "Dengue_virus_1__DENV_1_VN_BID_V948_2007" : [ - "EU482493" - ], - "Ageratum_yellow_vein_China_betasatellite__G95" : [ - "AJ971260" - ], - "Cyclovirus_ZM62_ZM62" : [ - "AB937987" - ], - "Human_papillomavirus_type_104__DL253" : [ - "FM955840" - ], - "Dengue_virus_2__DENV_2_VE_BID_V3364_1991" : [ - "GQ868597" - ], - "Tomato_yellow_leaf_curl_virus_HBDC" : [ - "JN990923" - ], - "Human_rotavirus_A_KU" : [ - "X81435" - ], - "Wheat_dwarf_virus__SXYL07_8" : [ - "KJ536124" - ], - "Tomato_yellow_leaf_curl_virus__SDSG" : [ - "KC999843", - "HQ702862" - ], - "Hepatitis_C_virus_subtype_1b_MD1_2" : [ - "AF165046" - ], - "Hepatitis_B_virus__TW8585" : [ - "EF494379" - ], - "Mycobacterium_phage_Patience_Patience" : [ - "NC_023691" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT50A75_2008" : [ - "JF909249" - ], - "Hepatitis_B_virus_1456_29a" : [ - "KR013866" - ], - "Hepatitis_B_virus_Ehi_YY_lam_4_2" : [ - "AB195940" - ], - "Hepatitis_E_virus__JSW_Kyo_FH06L" : [ - "AB291955" - ], - "JC_polyomavirus__AN_3" : [ - "AB092579" - ], - "Hepatitis_C_virus__HC_C2" : [ - "HPCRNA" - ], - "Pneumonia_virus_of_mice_15_15" : [ - "AY743910" - ], - "Enterovirus_A_GZ2010_95_EV71_Guangzhou_95_2010" : [ - "HQ456313" - ], - "Hepatitis_B_virus__919082" : [ - "JN040791" - ], - "Hepatitis_B_virus__S1248_4" : [ - "FJ787457" - ], - "Staphylococcus_phage_187" : [ - "NC_007047" - ], - "Dengue_virus_1__DENV_1_IND_631288_1963" : [ - "JQ922544" - ], - "Hepatitis_B_virus__HBV7" : [ - "KC875277" - ], - "Transmissible_gastroenteritis_virus_attenuated_H" : [ - "EU074218" - ], - "Cucumber_mosaic_virus_207" : [ - "AJ585517" - ], - "Human_immunodeficiency_virus_1__98VNHD10" : [ - "FJ185233" - ], - "Nyamanini_nyavirus__tick_39" : [ - "NC_012703" - ], - "Malvastrum_leaf_curl_Guangdong_betasatellite__G8" : [ - "NC_023896" - ], - "Human_immunodeficiency_virus_1__HXB2" : [ - "HIVHXB2CG" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2092_2007" : [ - "FJ639731" - ], - "Brevundimonas_subvibrioides_ATCC_15264" : [ - "NC_014375" - ], - "Bean_common_mosaic_necrosis_virus_TN1" : [ - "HQ229995" - ], - "Bluetongue_virus_11__South_Africa_ref" : [ - "AJ585132" - ], - "Pepper_mild_mottle_virus__HN1" : [ - "KP345899" - ], - "Tomato_yellow_leaf_curl_virus__SDJN" : [ - "HM627883" - ], - "West_Nile_virus__WNV_1_US_BID_V6489_2003" : [ - "KJ501326" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1205_2007" : [ - "FJ373301" - ], - "Deftia_phage_phiW_14" : [ - "NC_013697" - ], - "Porcine_circovirus_2_PT_5693_08" : [ - "HQ831520" - ], - "Duck_Tembusu_virus_LC_2010" : [ - "KC990543" - ], - "Hepatitis_B_virus__D_K148A_2004" : [ - "HQ700536" - ], - "Porcine_stool_associated_circular_virus_1__DP3" : [ - "NC_024772" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20146553" : [ - "KR653224" - ], - "Human_immunodeficiency_virus_1__04ZASK173B1" : [ - "DQ093604" - ], - "Pseudomonas_aeruginosa_PAO1_VE2" : [ - "NC_022591" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXwn06" : [ - "EF641008" - ], - "Iodobacteriophage_phiPLPE" : [ - "NC_011142" - ], - "Coxsackievirus_B1_MSH_KM9_2009" : [ - "JN596588" - ], - "Human_rotavirus_A_258_stool" : [ - "AJ236782" - ], - "Human_immunodeficiency_virus_1__93TH060" : [ - "AB220946" - ], - "Human_immunodeficiency_virus_1__CH58E_flC4" : [ - "FJ495942" - ], - "Coxsackievirus_A10_FY02_AH_CHN_2013" : [ - "KP009575" - ], - "Hepatitis_B_virus__EN64_LC" : [ - "JN664948" - ], - "Bluetongue_virus_IND2003_08" : [ - "JQ771815", - "JQ771822", - "JQ771813", - "JQ771817", - "JQ771819", - "JQ771816", - "JQ771818", - "JQ771814", - "JQ771821", - "JQ771820" - ], - "Human_parainfluenza_virus_3_HPIV3_ARG_14555_2007" : [ - "KF687342" - ], - "Cotton_leaf_curl_Multan_virus__FC2" : [ - "HQ455348" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3998_2008" : [ - "HM181967" - ], - "Enterovirus_A71__GZ_08_02" : [ - "FJ360545" - ], - "Hepatitis_B_virus_029" : [ - "AB900115" - ], - "Simian_adenovirus_18" : [ - "NC_022266" - ], - "Hepatitis_B_virus__06hac" : [ - "EF464097" - ], - "Plum_pox_virus_D_Cdn_123_1" : [ - "AY953267" - ], - "JC_polyomavirus__FD_1a" : [ - "AB103414" - ], - "Escherichia_phage_Seurat" : [ - "NC_027378" - ], - "West_Nile_virus__WNV_1_US_BID_V4223_2005" : [ - "HM488149" - ], - "Rabies_virus_CVS_N2c" : [ - "HM535790" - ], - "Bean_golden_mosaic_virus__BR_Pai11_11" : [ - "KJ939747" - ], - "Human_rotavirus_A_GX77" : [ - "KF447848", - "KF447840", - "KF447843", - "KF447844", - "KF447839", - "KF447846", - "KF447847", - "KF447841", - "KF447849" - ], - "Propionibacterium_phage_PHL085N00__PHL085N00" : [ - "NC_027361" - ], - "Hepatitis_B_virus_574_2" : [ - "KR013983" - ], - "Bean_golden_mosaic_virus__BR_Sag9_12" : [ - "KJ939787" - ], - "South_African_cassava_mosaic_virus__MG_MG411A1_11" : [ - "KJ888011" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C104" : [ - "KJ019137" - ], - "Shewanella_baltica_OS185" : [ - "NC_009661", - "NC_009665" - ], - "Chikungunya_virus__LK_PB_CH5308" : [ - "FJ513635" - ], - "Borrelia_turicatae_91E135" : [ - "NC_008710" - ], - "Bluetongue_virus_23_DPP90" : [ - "JQ086275", - "JQ086280", - "JQ086272", - "JQ086273", - "JQ086279", - "JQ086274", - "JQ086271", - "JQ086278", - "JQ086277", - "JQ086276" - ], - "Human_immunodeficiency_virus_1__0063SP" : [ - "JF804806" - ], - "Porcine_circovirus_2__PCV2_2" : [ - "KJ778680" - ], - "Rabies_virus_CJX0906D" : [ - "JQ970485" - ], - "Infectious_salmon_anemia_virus" : [ - "AJ242808" - ], - "Hepatitis_A_virus_LP014" : [ - "EF207320" - ], - "Dengue_virus_2__MD1270" : [ - "FM210232" - ], - "Feline_coronavirus_Felis_catus_NLD_UU71_2010" : [ - "KF530126" - ], - "Hepatitis_B_virus_419_2" : [ - "KR013781" - ], - "Porcine_parvovirus_China" : [ - "AY583318" - ], - "Enterococcus_casseliflavus_EC20" : [ - "NC_020995" - ], - "Potato_leafroll_virus_OP" : [ - "AF453389" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD204_2013" : [ - "KM229771" - ], - "Bean_golden_mosaic_virus__BR_Rla_05" : [ - "KJ939724" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8508_2003" : [ - "KJ627716" - ], - "Asparagus_virus_1__DSMZ_PV_0954" : [ - "NC_025821" - ], - "JC_polyomavirus_731B" : [ - "AF300956" - ], - "Hepatitis_B_virus__WY_HZ_34" : [ - "JX429902" - ], - "Merkel_cell_polyomavirus__MKL_1" : [ - "FJ173815" - ], - "Enterovirus_A71_EV71_Jinan1004" : [ - "JQ074188" - ], - "Bluetongue_virus_1__SAD2006" : [ - "KJ736007", - "KJ736003", - "KJ736009", - "KJ736005", - "KJ736010", - "KJ736001", - "KJ736004", - "KJ736006", - "KJ736008" - ], - "Human_adenovirus_22__AV_2711" : [ - "FJ404771" - ], - "Equine_infectious_anemia_virus_DV_DV3_5" : [ - "HM141909" - ], - "Southern_rice_black_streaked_dwarf_virus__Hue1" : [ - "KM454843" - ], - "Dengue_virus_4__DENV_4_US_BID_V860_1994" : [ - "FJ226067" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLE3936_2009" : [ - "KJ672617" - ], - "SARS_coronavirus_Sino1_11_Sino1_11" : [ - "AY485277" - ], - "Hepatitis_B_virus__35Y17HCC" : [ - "AB014394" - ], - "West_Nile_virus__WNV_1_US_BID_V7277_2012" : [ - "KJ501434" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_USA_258DEL1934_1934" : [ - "KJ469583" - ], - "Coxsackievirus_B3_A103_KM_09" : [ - "JX843810" - ], - "Dengue_virus_2_DENV_2_PR_11DN_1994" : [ - "GQ398313" - ], - "Mycobacterium_phage_HH92" : [ - "KJ538722" - ], - "Rubella_virus_Takahashi_vaccine__KRT" : [ - "AB222608" - ], - "Hepatitis_B_virus__3765" : [ - "JN827425" - ], - "Dengue_virus_2__DC730Y12" : [ - "KM279558" - ], - "Marburg_marburgvirus__NML_M_musculus_lab_AGO_2005_Ang_MA_P2" : [ - "KM261523" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0048" : [ - "KP759716" - ], - "Hepatitis_B_virus__LAMr_Pt__40" : [ - "AB367431" - ], - "St__Louis_encephalitis_virus_CbaAr_4005" : [ - "FJ753286" - ], - "Gallibacterium_anatis_UMN179" : [ - "NC_015460", - "NC_015461" - ], - "Porcine_circovirus_2_PM166" : [ - "KJ094601" - ], - "Ageratum_yellow_vein_China_betasatellite__G98" : [ - "AJ971262" - ], - "Foot_and_mouth_disease_virus___type_O_O_UK2001_O_UK2001_ED" : [ - "AY593831" - ], - "Squash_leaf_curl_virus__JO2_218" : [ - "KM595193" - ], - "Rabies_virus__AZ3003" : [ - "JQ685971" - ], - "Hepatitis_B_virus__BR1_NORTHEAST" : [ - "KC494405" - ], - "Streptococcus_parasanguinis_FW213" : [ - "NC_017905" - ], - "Groundnut_bud_necrosis_virus" : [ - "NC_003620", - "NC_003619", - "NC_003614" - ], - "JC_polyomavirus__PML013URNFLC_03" : [ - "JF425553" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLI2436_2010" : [ - "KJ627334" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1644_2007" : [ - "FJ182024" - ], - "Dengue_virus_2__MD1275" : [ - "FM210241" - ], - "West_Nile_virus__WNV_1_US_BID_V6523_2005" : [ - "KJ501341" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2790_2007" : [ - "GQ199810" - ], - "Canine_calicivirus" : [ - "NC_004542" - ], - "Murid_herpesvirus_1_C4C" : [ - "HE610453" - ], - "Squash_vein_yellowing_virus__Florida" : [ - "NC_010521" - ], - "Gossypium_mustilinum_symptomless_alphasatellite__Punc_alphaB_9" : [ - "EU384663" - ], - "Hippeastrum_mosaic_virus__Marijiniup_1" : [ - "NC_017967" - ], - "Hepatitis_B_virus__W37" : [ - "EU787442" - ], - "Dengue_virus_4_H780563_DENV_4_AM5097" : [ - "JQ513343" - ], - "Rice_yellow_mottle_virus__Ga4" : [ - "FN432838" - ], - "Human_immunodeficiency_virus_1__05MYKL015_2" : [ - "DQ366660" - ], - "Human_enterovirus_C118__CQ5185" : [ - "JX678288" - ], - "Dengue_virus_3_D3_SG_05K4159DK1_2005" : [ - "EU081217" - ], - "Cotton_leaf_curl_Multan_betasatellite__G6" : [ - "NC_009535" - ], - "Streptococcus_phage_DCC1738" : [ - "NC_024361" - ], - "Grapevine_virus_A__P163_M5" : [ - "DQ855082" - ], - "South_African_cassava_mosaic_virus__MG_MG238A1_10" : [ - "KJ887961" - ], - "Hepatitis_delta_virus_dFr2703" : [ - "AM183328" - ], - "Torque_teno_sus_virus_1b__TTV2Jl2" : [ - "HM633222" - ], - "Atlantic_salmon_paramyxovirus_ASPV_Ro" : [ - "EF646380" - ], - "Yersinia_phage_vB_YenP_AP5" : [ - "NC_025451" - ], - "West_Nile_virus__WNV_1_BID_V5032" : [ - "JN819307" - ], - "Malakal_virus__SudAr_1169_64" : [ - "NC_025400" - ], - "Dengue_virus_2__DENV_2_US_BID_V1399_1997" : [ - "EU569717" - ], - "Oxalis_yellow_vein_virus_USA_LA_01" : [ - "NC_026253" - ], - "Bhendi_yellow_vein_betasatellite" : [ - "KF471035", - "KF471034", - "KF471036" - ], - "Chlamydia_pecorum_PV3056_3" : [ - "NC_022439" - ], - "Synechococcus_PCC_7002" : [ - "NC_010475", - "NC_010476", - "NC_010474", - "NC_010479", - "NC_010480", - "NC_010478", - "NC_010477" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_10__AHEaCV_10_NZ_2599SG_2012" : [ - "NC_026636" - ], - "Hepatitis_B_virus__BAJT2006_1C" : [ - "AB298721" - ], - "Avian_orthoreovirus_B_98" : [ - "DQ643974", - "EF030498" - ], - "Coxsackievirus_A6__PF001_SH_CHN_2013" : [ - "KJ541165" - ], - "Norovirus_Hu_GII_4_Osaka5_2007_JP_Hu_GII_4_Osaka5_2007_JP" : [ - "AB541327" - ], - "Hantaan_virus__84FLi" : [ - "AF345636" - ], - "JC_polyomavirus__ANF" : [ - "AB185020" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_M78B_2005" : [ - "JQ319174" - ], - "Rift_Valley_fever_virus_OS_3" : [ - "DQ375396", - "DQ380184", - "DQ380178" - ], - "Human_metapneumovirus_HMPV_AUS_193951503_2004_A" : [ - "KC403984" - ], - "West_Nile_virus__BSL26_11" : [ - "JQ700442" - ], - "Torque_teno_sus_virus_1a__TTV1Bj2_1" : [ - "HM633243" - ], - "West_Nile_virus_T_1304" : [ - "JX070655" - ], - "Duck_Tembusu_virus_LD_2010" : [ - "KC990544" - ], - "Streptococcus_pneumoniae_R6" : [ - "NC_003098" - ], - "Grapevine_leafroll_associated_virus_2__BD" : [ - "DQ286725" - ], - "Sida_mosaic_Alagoas_virus__BgV02B_1_C66" : [ - "JF694475" - ], - "Sweet_potato_leaf_curl_Shanghai_virus__China_Jilin1_2012" : [ - "NC_022232" - ], - "Hepatitis_B_virus__84" : [ - "AF297625" - ], - "Dengue_virus_3__DENV_3_US_BID_V2105_2000" : [ - "FJ410177" - ], - "Cotton_leaf_curl_Multan_betasatellite__HK" : [ - "KF766954" - ], - "Human_herpesvirus_5__FIX_BAC" : [ - "AC146907" - ], - "Columbid_circovirus__Ita_4B" : [ - "DQ915950" - ], - "Gallid_herpesvirus_1_USDA_reference" : [ - "JN542534" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3605_2007" : [ - "GU131875" - ], - "West_Nile_virus__WNV_1_US_BID_V6463_2003" : [ - "KJ501470" - ], - "Avian_leukosis_virus__CAUSY01" : [ - "JF932001" - ], - "Megavirus_courdo11" : [ - "JX975216" - ], - "Bean_golden_mosaic_virus__BR_Par15_12" : [ - "KJ939794" - ], - "Squash_leaf_curl_virus__IL2_53" : [ - "KM595110" - ], - "Hepatitis_B_virus__06UC" : [ - "AB493838" - ], - "Human_rotavirus_A_1071_stool" : [ - "AJ236754" - ], - "Squash_leaf_curl_virus__IL3_94" : [ - "KM595119" - ], - "Madariaga_virus_MADV_Equus_ferus_caballus_PAN_247168_2010" : [ - "KJ469645" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V172_1990" : [ - "EU155339" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2827_2003" : [ - "FJ882564" - ], - "Rice_tungro_bacilliform_virus__Chinsura_West_Bengal" : [ - "FN377814" - ], - "Equine_infectious_anemia_virus_Liaoning" : [ - "AF327877" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2824_2007" : [ - "GQ199829" - ], - "Alfalfa_mosaic_virus" : [ - "MAARNA3L", - "NC_002024" - ], - "Enterobacter_cloacae_dissolvens_SDM" : [ - "NC_018079" - ], - "Hepatitis_B_virus__MY247131" : [ - "KJ803755" - ], - "Newcastle_disease_virus_APMV_1_chicken_Ca_2098_71_2098" : [ - "JQ247691" - ], - "Norovirus_Hu_GII_4_Jiangsu2_2012_CHN_Hu_GII_4_Jiangsu2_2012_CHN" : [ - "KC577175" - ], - "Coxsackievirus_A16_L23" : [ - "KJ746492" - ], - "Tortoise_picornavirus_144_10" : [ - "KM873614" - ], - "Marburg_virus___Musoke__Kenya__1980_Musoke" : [ - "Z12132" - ], - "Hepatitis_B_virus__E1_12" : [ - "GU815681" - ], - "Burkholderia_mallei_NCTC_10247" : [ - "NC_009080", - "NC_009079" - ], - "JC_polyomavirus_712A" : [ - "AF300962" - ], - "Hepatitis_B_virus__J85" : [ - "GQ377554" - ], - "Citrus_tristeza_virus_SY568" : [ - "CTAF001623" - ], - "Foot_and_mouth_disease_virus___type_O__TUR_840_2010" : [ - "JX040493" - ], - "West_Nile_virus__WNV_1_US_BID_V4618_2003" : [ - "HQ671704" - ], - "Prochlorococcus_phage_P_RSM4_9303_10a" : [ - "NC_015283" - ], - "Human_papillomavirus_type_53__Qv18622" : [ - "EF546481" - ], - "Hepatitis_B_virus__1958_21" : [ - "KR014097" - ], - "Xanthomonas_fuscans_4834_R" : [ - "NC_022541", - "NC_022539", - "NC_022542", - "NC_022540" - ], - "Pseudomonas_putida_S16" : [ - "NC_015733" - ], - "Human_herpesvirus_5_BE_6_2010" : [ - "KP745701" - ], - "Human_papillomavirus_type_68__Qv25395" : [ - "KC470279" - ], - "Dengue_virus_3__MKS_IF058" : [ - "KC762691" - ], - "Hepatitis_B_virus__B10" : [ - "FJ904430" - ], - "Human_respiratory_syncytial_virus_09_052064" : [ - "JX576743" - ], - "Papaya_leaf_curl_China_virus____G2___G2" : [ - "AJ558123" - ], - "Human_immunodeficiency_virus_1__98BWMO36_a5" : [ - "AF443081" - ], - "West_Nile_virus__TX5810" : [ - "JF415915" - ], - "Blattella_germanica_densovirus_1" : [ - "NC_005041" - ], - "Tomato_yellow_leaf_curl_virus_HNNH" : [ - "JN990925" - ], - "Mycobacterium_phage_CrimD_CrimD" : [ - "NC_014459" - ], - "Dragonfly_cyclovirus_4__DfCyV_4_US_DFKWGB_2012" : [ - "KC512917" - ], - "West_Nile_virus__WNV_1_US_BID_V7397_2008" : [ - "KJ501109" - ], - "Lactococcus_lactis_KLDS_4_0325" : [ - "NC_022593", - "NC_022587" - ], - "Hepatitis_C_virus__4025q" : [ - "EU362903" - ], - "Sida_micrantha_mosaic_virus_Santaremensis_SiMMV_Santaremensis_BR_GO_Luz780_03" : [ - "JX415187" - ], - "Mycobacterium_phage_Bane1" : [ - "NC_022331" - ], - "Leuconostoc_C2" : [ - "NC_015734" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E1367_2008_G3P_8__E1367" : [ - "KF371789", - "KF371785", - "KF371787", - "KF371784", - "KF371783", - "KF371782", - "KF371790", - "KF371786", - "KF371781" - ], - "Muscovy_duck_circovirus__FJFQ312" : [ - "GQ423745" - ], - "Rabies_virus__A093500" : [ - "JQ685898" - ], - "Bluetongue_virus_1__IAH_IND2003_04" : [ - "AJ783902" - ], - "Erwinia_Ejp617" : [ - "NC_017443", - "NC_017444", - "NC_017442", - "NC_017446", - "NC_017447", - "NC_017445" - ], - "Human_poliovirus_3__33239" : [ - "FJ460226" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V1711_2007" : [ - "FJ024277" - ], - "Human_parvovirus_4_G1" : [ - "NC_007018" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4454_1" : [ - "KR105258" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4042_2008" : [ - "GU131799" - ], - "Human_immunodeficiency_virus_1__02ZAPS006MB1" : [ - "DQ351220" - ], - "Dengue_virus_2__DC620Y12" : [ - "KM279534" - ], - "Tomato_leaf_curl_Ranchi_virus__GUW_2" : [ - "JN676053" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__HL_Adult_G2" : [ - "KF791952", - "KF791962", - "KF791957" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD270_2013" : [ - "KM229893" - ], - "Vaccinia_virus_TianTan" : [ - "KC207811", - "KC207810" - ], - "Dengue_virus_3_D3_SG_05K2418DK1_2005" : [ - "EU081195" - ], - "Deinococcus_deserti_VCD115" : [ - "NC_012528", - "NC_012529", - "NC_012527", - "NC_012526" - ], - "Hepatitis_B_virus__J164" : [ - "GQ377601" - ], - "Tomato_golden_mosaic_virus__yvTGMV_92_11" : [ - "JF694491", - "JF694490" - ], - "Human_immunodeficiency_virus_1__CH167_w8" : [ - "KC156213" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_400_XXXX" : [ - "KP308460" - ], - "Hepatitis_B_virus__F3_7" : [ - "GU815744" - ], - "Norovirus_Hu_GII_4_Shimane4_2007_JP_Hu_GII_4_Shimane4_2007_JP" : [ - "AB541351" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6533_2009" : [ - "KJ627255" - ], - "Porcine_circovirus_2_CQ08" : [ - "FJ608544" - ], - "Duck_hepatitis_A_virus_1_GFS99" : [ - "FJ496344" - ], - "Hepatitis_C_virus_subtype_1b__No__23" : [ - "AB154198" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC27AG1_2009" : [ - "JF909101" - ], - "Bovine_viral_diarrhea_virus_1__camel_6" : [ - "KC695810" - ], - "Lactobacillus_rhamnosus_LOCK908" : [ - "NC_021725" - ], - "Human_immunodeficiency_virus_1__04ZAPS201B1" : [ - "DQ164111" - ], - "Fort_Sherman_virus_86MSP18" : [ - "EU564829" - ], - "Simian_adenovirus_A1296_A1296" : [ - "JN880453" - ], - "Western_equine_encephalitis_virus__Kern" : [ - "GQ287642" - ], - "Porcine_circovirus_2_GD004" : [ - "KM974911" - ], - "Oceanobacillus_iheyensis_HTE831" : [ - "NC_004193" - ], - "Human_poliovirus_2" : [ - "AY177685", - "X00595", - "DQ205099" - ], - "BK_polyomavirus__A_23H" : [ - "AB369087" - ], - "Human_immunodeficiency_virus_1__05ZASK240B1" : [ - "DQ369991" - ], - "Oat_dwarf_virus__SxA25" : [ - "NC_010799" - ], - "Norovirus_Hu_GI_2_Leuven_2003_BEL_Hu_GI_2_Leuven_2003_BEL" : [ - "FJ515294" - ], - "Hepatitis_A_virus__GBS_IND" : [ - "DQ991030" - ], - "Dengue_virus_2__DENV_2_PE_FPI1617_2011" : [ - "KC294210" - ], - "Hepatitis_B_virus__FEN36" : [ - "JF439999" - ], - "West_Nile_virus__WNV_1_US_BID_V6695_2007" : [ - "KJ501425" - ], - "Rice_black_streaked_dwarf_virus__Wuhan_S9" : [ - "AJ291706" - ], - "Streptococcus_pneumoniae_670_6B" : [ - "NC_014498" - ], - "Hepatitis_B_virus__C182" : [ - "EU939668" - ], - "Human_parainfluenza_virus_3_HPIV3_AUS_2_2007" : [ - "KF530237" - ], - "Dengue_virus_2__E1436Y12" : [ - "KM279578" - ], - "Hepatitis_B_virus__H1886_07" : [ - "FJ882612" - ], - "Hepatitis_B_virus_ZXJ" : [ - "FJ518811" - ], - "Wheat_dwarf_virus__XJWLMQ08_5" : [ - "KJ536134" - ], - "Porcine_circovirus_2_HB05" : [ - "EF524528" - ], - "Hepatitis_B_virus_4655_97" : [ - "EU594422" - ], - "Hepatitis_B_virus__919024" : [ - "JN040788" - ], - "Dengue_virus_1_ThD1_0673_80" : [ - "AY732474" - ], - "Dengue_virus_2__DENV_2_US_BID_V1385_1996" : [ - "EU596486" - ], - "Maize_streak_virus__MSV_K_Ksv_Jic2_2002" : [ - "EU628642" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V288_2006" : [ - "EU155364" - ], - "Hepatitis_B_virus__WHKSH" : [ - "JN257183" - ], - "Staphylococcus_aureus_55_2053" : [ - "NC_022126", - "NC_022113" - ], - "Hepatitis_B_virus__MOD_4607" : [ - "GQ183479" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2615_2007" : [ - "GQ199877" - ], - "Muscovy_duck_parvovirus__MDPV_GX5" : [ - "KM093740" - ], - "Human_adenovirus_21_NHRC_71227" : [ - "KJ364584" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3593_2007" : [ - "GU131871" - ], - "Watermelon_mosaic_virus__C05_463" : [ - "JF273458" - ], - "Human_astrovirus_2__Rus_Nsc05_430" : [ - "KF039910" - ], - "Malvastrum_yellow_mosaic_alphasatellite__Hn39" : [ - "AM236765" - ], - "Dengue_virus_3__314_BR_PE_06" : [ - "JX669503" - ], - "Kimberley_virus__CS368" : [ - "NC_025396" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3838" : [ - "KM233105" - ], - "Hepatitis_C_virus_subtype_3a__ILBSRAS6" : [ - "JQ717257" - ], - "Hepatitis_C_virus__patient_1__Hepatitis_C_virus__JK1_full" : [ - "X61596" - ], - "Porcine_epidemic_diarrhea_virus_TC_PC173_P2" : [ - "KM392228" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20142127" : [ - "KR653234" - ], - "Cucumber_mosaic_virus_satellite_RNA_Fny" : [ - "X54065", - "X54066" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GBR_2014_Makona_UK2" : [ - "KP658432" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V230_2003" : [ - "EU255948" - ], - "Human_poliovirus_2__CHN3219" : [ - "HM107834" - ], - "Hepatitis_B_virus__I197" : [ - "FJ562307" - ], - "Cotton_leaf_curl_Gezira_betasatellite__BF_Kap_Okra1_2" : [ - "FN554575" - ], - "Hepatitis_B_virus__D_NZL_AN10_1984" : [ - "HQ700441" - ], - "West_Nile_virus__WNV_1_US_BID_V4566_2003" : [ - "HM488211" - ], - "Hepatitis_B_virus__MY727495" : [ - "KJ803756" - ], - "Prochlorococcus_phage_P_GSP1_P_GSP1" : [ - "NC_020878" - ], - "Enterovirus_A71__02_1_065" : [ - "KP691661" - ], - "Feline_bocavirus__FBD2" : [ - "KM017745" - ], - "Hepatitis_B_virus__SHB214" : [ - "KJ598656" - ], - "Human_immunodeficiency_virus_1__BREPM12313" : [ - "DQ085872" - ], - "Cauliflower_mosaic_virus__IRNHRa4" : [ - "KF357596" - ], - "Sweet_potato_virus_2__GJ118" : [ - "KP115616" - ], - "Hepatitis_B_virus__D_KI152P_2004" : [ - "HQ700535" - ], - "Porcine_circovirus_2_GXHZ_3" : [ - "EF675232" - ], - "Human_immunodeficiency_virus_1__WC3_0498_4" : [ - "EF175212" - ], - "Plum_pox_virus_PPV_D_Ou2" : [ - "AB576058" - ], - "Hepatitis_B_virus__EN58_CHB" : [ - "JN664933" - ], - "Salmonella_bongori_Sbon_167" : [ - "NC_021870", - "NC_021871" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota83_2013" : [ - "KJ645677" - ], - "Escherichia_phage_bV_EcoS_AHS24" : [ - "NC_024784" - ], - "West_Nile_virus__WNV_1_CTFS_BID_V4112_2006" : [ - "HM488123" - ], - "African_horse_sickness_virus_1__South_African_isolate" : [ - "Z26316" - ], - "Cabbage_leaf_curl_virus" : [ - "NC_003887", - "NC_003866" - ], - "Tick_borne_encephalitis_virus_MGL_Selenge_13_12" : [ - "LC017692" - ], - "Human_immunodeficiency_virus_1__CANB4FULL" : [ - "AY779554" - ], - "Sida_micrantha_mosaic_virus__BR_Pda43_05" : [ - "KC706536" - ], - "Chilli_leaf_curl_virus__Taq2" : [ - "JN604493" - ], - "Tomato_severe_rugose_virus__BR_Car226_5_08" : [ - "KC706619" - ], - "Hepatitis_B_virus__H60_2_5KB" : [ - "DQ995805" - ], - "Mungbean_yellow_mosaic_India_virus_associated_betasatellite__India__Faizabad__Cow_Pea_2012___India_Faizabad_Cow_Pea_2012" : [ - "NC_018869" - ], - "Dengue_virus_1_FP1104" : [ - "DQ672559" - ], - "Murine_adenovirus_2__K87" : [ - "NC_014899" - ], - "Chikungunya_virus_RGCB355_KL08" : [ - "GQ428214" - ], - "Chicken_anemia_virus_GD_D_12" : [ - "KF224928" - ], - "Cauliflower_mosaic_virus__IRNCaV" : [ - "JX912258" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5516_1" : [ - "KR105307" - ], - "Hepatitis_B_virus__D3_5" : [ - "GU815674" - ], - "Hepatitis_B_virus__16650_NE_BRA" : [ - "KJ854691" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD225_2013" : [ - "KM229870" - ], - "Hepatitis_B_virus__586" : [ - "AY217364" - ], - "Bacteroides_thetaiotaomicron_VPI_5482" : [ - "NC_004703", - "NC_004663" - ], - "Francisella_tularensis_NE061598" : [ - "NC_017453" - ], - "Porcine_circovirus_2_GD005" : [ - "KM487708" - ], - "Hepatitis_B_virus__JMY_0725_ETC" : [ - "DQ993700" - ], - "Hepatitis_B_virus__I72" : [ - "FJ562244" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2062_2007" : [ - "GQ868624" - ], - "JC_polyomavirus__SI_7" : [ - "AB074590" - ], - "Norwalk_like_virus_YURI_32073" : [ - "AB083781" - ], - "Porcine_circovirus_2__zz_1" : [ - "KC753772" - ], - "Burkholderia_cepacia_GG4" : [ - "NC_018513", - "NC_018514" - ], - "Falcovirus_A1_kestrel_VOVE0622_2013_HUN" : [ - "NC_026921" - ], - "Hepatitis_B_virus__MLT0874" : [ - "KF779297" - ], - "Chikungunya_virus_3462" : [ - "KJ451623" - ], - "Human_adenovirus_28_BP_5__ATCC_VR_226" : [ - "FJ824826" - ], - "Hepatitis_A_virus_MB_7_4647" : [ - "EU251188" - ], - "Tomato_leaf_curl_Hajipur_betasatellite" : [ - "NC_018614" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_AHL_China_2011" : [ - "JQ670934", - "JQ670930", - "JQ670932" - ], - "Cherry_leaf_roll_virus__441" : [ - "KC937025", - "KC937031" - ], - "Tembusu_virus_Du_CH_LSD_110128_P50" : [ - "KJ782378" - ], - "Hepatitis_delta_virus__D9_B" : [ - "KJ744226" - ], - "Crimean_Congo_hemorrhagic_fever_virus_SPU415_85" : [ - "DQ211635", - "DQ211622", - "DQ211648" - ], - "Faba_bean_necrotic_stunt_virus__JKI_1998_99" : [ - "AJ749894", - "AJ749898", - "AJ749899", - "AJ749897", - "AJ749900", - "AJ749895", - "AJ749901", - "AJ749896" - ], - "Escherichia_phage_EB49" : [ - "NC_023743" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus__Thailand_Kan2" : [ - "AF511530", - "AF511527" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1909_2008" : [ - "FJ410245" - ], - "Felis_catus_papillomavirus_4__MY_3" : [ - "NC_022373" - ], - "Hepatitis_C_virus__M1LE" : [ - "AB080299" - ], - "Human_immunodeficiency_virus_1__01IC_PCI123" : [ - "AJ866557" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo154_08" : [ - "KC706543" - ], - "Planctomyces_limnophilus_DSM_3776" : [ - "NC_014148", - "NC_014149" - ], - "Human_poliovirus_1_NIE1018325" : [ - "KJ170488" - ], - "Pseudomonas_putida_BIRD_1" : [ - "NC_017530" - ], - "South_African_cassava_mosaic_virus__MG_MG571A5_11" : [ - "KJ887736" - ], - "Tick_borne_encephalitis_virus_886_84" : [ - "KJ633033", - "EF469662" - ], - "Maize_streak_virus__MSV_A_KE_Nan1_Ke3_2008" : [ - "HQ693329" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_13" : [ - "EU384618" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P110" : [ - "KC422726" - ], - "Xanthomonas_axonopodis_citri_306" : [ - "NC_003921", - "NC_003919", - "NC_003922" - ], - "KI_polyomavirus__HN057" : [ - "KC571691" - ], - "Hepatitis_B_virus__L15_57" : [ - "EU305543" - ], - "Human_parvovirus_B19_HV" : [ - "AF162273" - ], - "Sugarcane_yellow_leaf_virus__IND3" : [ - "JF925154" - ], - "Hepatitis_B_virus__S462_9" : [ - "FJ032339" - ], - "Wheat_dwarf_virus__SXHC07_29" : [ - "KJ536113" - ], - "Hepatitis_B_virus_038" : [ - "AB900112" - ], - "JC_polyomavirus__PE_12" : [ - "AB081025" - ], - "Caulobacter_phage_swift" : [ - "NC_019411" - ], - "Human_herpesvirus_4_Raji" : [ - "KF717093", - "NC_007605" - ], - "SARS_coronavirus_TW11__TW11" : [ - "AY502924" - ], - "Ralstonia_solanacearum_CFBP2957" : [ - "NC_014307", - "NC_014309" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_IQA1484_2010_A" : [ - "KJ627417" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2221_2004" : [ - "FJ639788" - ], - "Rhinolophus_bat_coronavirus_HKU2_HKU2_HK_33_2006" : [ - "EF203067" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4862_2009" : [ - "HQ705612" - ], - "Ageratum_yellow_vein_Singapore_alphasatellite__Alb43" : [ - "FJ956707" - ], - "Porcine_circovirus_2__MM2" : [ - "KC514973" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V306_2004" : [ - "EU155372" - ], - "Hepatitis_B_virus_258_2" : [ - "KR013896" - ], - "Sapelovirus_A_JD2011" : [ - "KF539414" - ], - "JC_polyomavirus__SK_1" : [ - "AB081028" - ], - "Human_respiratory_syncytial_virus_A_WI_629_Q0154_10" : [ - "JF920052" - ], - "Dengue_virus_2__DENV_2_NI_BID_V572_2006" : [ - "EU482685" - ], - "Rhizobium_phage_vB_RleM_P10VF" : [ - "NC_025429" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K302" : [ - "AJ717569" - ], - "Malvastrum_yellow_mosaic_virus__Hn36" : [ - "NC_008559" - ], - "Hepatitis_B_virus__1811" : [ - "FJ386586" - ], - "Human_papillomavirus_type_66" : [ - "HPU31794", - "EF177182", - "EF177189", - "EF177187", - "EF177188", - "EF177191", - "EF177184", - "EF177190", - "EF177183", - "EF177186", - "EF177185" - ], - "Bluetongue_virus_4_BTV_4IT_H" : [ - "JN255901", - "JN255893", - "JN255892", - "JN255895", - "JN255898", - "JN255896", - "JN255894", - "JN255897", - "JN255900", - "JN255899" - ], - "Dengue_virus_3__MKS_3000" : [ - "KC762690" - ], - "Simian_immunodeficiency_virus__SIVcpzTAN2" : [ - "EF394357" - ], - "Bean_common_mosaic_virus__CT" : [ - "KM076650" - ], - "Cowpea_mild_mottle_virus__Ghana" : [ - "NC_014730" - ], - "Ophiostoma_mitovirus_3a" : [ - "NC_004049" - ], - "Mycobacterium_phage_RedRock" : [ - "NC_025444" - ], - "Hepatitis_C_virus_subtype_1b_Pt1_98_R" : [ - "AB828699" - ], - "Hepatitis_B_virus__bba9" : [ - "KP341010" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_DC" : [ - "JF748718" - ], - "West_Nile_virus__BSL18_09" : [ - "JF957179" - ], - "Bacillus_licheniformis_DSM_13___ATCC_14580" : [ - "NC_006322" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7776_2009" : [ - "KJ627337" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C57" : [ - "KJ019036" - ], - "Hepatitis_B_virus__8052_07095" : [ - "JN792913" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1195_2007" : [ - "EU596495" - ], - "Bean_golden_mosaic_virus__BR_Mac2_10" : [ - "JN419006" - ], - "Potato_virus_Y_Ordinary_OUNKA3" : [ - "AB711153" - ], - "Powassan_virus_Nadezdinsk_1991" : [ - "EU670438" - ], - "Tomato_rugose_yellow_leaf_curl_virus__U5" : [ - "JN381828", - "JN381829", - "JN381826" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_A2_6D_V" : [ - "JX570641" - ], - "Porcine_circovirus_2__DK1993PMWSfree" : [ - "EU148506" - ], - "Impatiens_necrotic_spot_virus" : [ - "A78740", - "A78753", - "A78748", - "NC_003616", - "DQ425094", - "DQ425095", - "A78749", - "A78741", - "A78759" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX10_H4_2010_IE" : [ - "KC344465" - ], - "Gremmeniella_abietina_mitochondrial_RNA_virus_S2__SurS4" : [ - "NC_006264" - ], - "Mycobacterium_phage_Rosebush" : [ - "NC_004684" - ], - "Hepatitis_delta_virus__D49" : [ - "KJ744248" - ], - "West_Nile_virus__WNV_1_US_BID_V6611_2002" : [ - "KJ501371" - ], - "Tembusu_virus_HN_Tembusu_virus_strain" : [ - "KF192951" - ], - "Mycobacterium_phage_CASbig" : [ - "NC_021324" - ], - "WU_Polyomavirus__B9371" : [ - "GU296391" - ], - "SARS_coronavirus_LC2__LC2" : [ - "AY394999" - ], - "Human_papillomavirus_type_58__HPV58sc165" : [ - "FJ385265" - ], - "Montana_myotis_leukoencephalitis_virus" : [ - "NC_004119" - ], - "Hepatitis_B_virus__Da" : [ - "KF584165" - ], - "Macaca_nemestrina_rhadinovirus_2_J97167" : [ - "KP265674" - ], - "Pseudomonas_putida_HB3267" : [ - "NC_019906", - "NC_019905" - ], - "Potato_virus_Y_N_SD1" : [ - "EU182576" - ], - "Emilia_yellow_vein_virus_associated_DNA_beta__Fz1" : [ - "NC_012666" - ], - "HBV_genotype_B__pBS_HBVB1_1005425_1_3G_wt_mu" : [ - "AB819613" - ], - "Hepatitis_B_virus__BA67" : [ - "EU366118" - ], - "Duck_hepatitis_B_virus__Australian_DHBV" : [ - "AJ006350" - ], - "Hepatitis_C_virus_subtype_1a__DN09" : [ - "EU781812" - ], - "Duck_circovirus__LZ04_2011" : [ - "KC460529" - ], - "Simian_adenovirus_B__BaAdV_1" : [ - "KC693021" - ], - "Hepatitis_B_virus_1368_44" : [ - "KR014050" - ], - "Human_parainfluenza_virus_4a__HPIV4_DK_459" : [ - "KF483663" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4245_2007" : [ - "HM181945" - ], - "Cotton_leaf_curl_Gezira_virus__okra_Niger___AFNG1" : [ - "EU432373" - ], - "Achromobacter_phage_JWAlpha_JWAlpha" : [ - "NC_023556" - ], - "Hepatitis_B_virus__919073" : [ - "JN040815" - ], - "Enterobacteria_phage_PRD1" : [ - "NC_001421" - ], - "Pichinde_mammarenavirus_Munchique_CoAn4763_P18" : [ - "EF529747", - "EF529746" - ], - "Human_poliovirus_1__10050" : [ - "FJ859058" - ], - "Norovirus_GII_Hu_JP_2012_GII_Pe_GII_4_Sydney2012_Fukuyama_3__Fukuyama_3" : [ - "KJ196279" - ], - "Streptococcus_suis_YB51" : [ - "NC_022516" - ], - "Hepatitis_B_virus__HK343" : [ - "DQ089793" - ], - "Hepatitis_B_virus__MN2009" : [ - "JN792894" - ], - "Streptococcus_pseudopneumoniae_IS7493" : [ - "NC_015875", - "NC_015876" - ], - "Merkel_cell_polyomavirus__915_F_06_001_PJ2" : [ - "JQ479315" - ], - "East_Asian_Passiflora_virus__EAPV_TW" : [ - "KP114136" - ], - "Tomato_spotted_wilt_virus__Tomato_NJ_JN" : [ - "HM581936", - "HM581934", - "HM581935" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_Galah_12_1474" : [ - "KF385430" - ], - "Rice_stripe_virus__XJi04" : [ - "AJ871754" - ], - "Dengue_virus_2__DF727" : [ - "FM210210" - ], - "Crimean_Congo_hemorrhagic_fever_virus__TAJ_HU8978" : [ - "AY297691" - ], - "Marine_birnavirus_AY_98" : [ - "NC_008019" - ], - "Human_immunodeficiency_virus_1__01IC_17395" : [ - "AJ866554" - ], - "Cotton_leaf_curl_Multan_betasatellite__GY1" : [ - "JQ963626" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1979_2001" : [ - "FJ639670" - ], - "Tomato_spotted_wilt_virus__CA_1" : [ - "AY744468" - ], - "West_Nile_virus__WNV_1_CTFS_BID_V4111_2006" : [ - "HM488122" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4728_spleen" : [ - "HQ671668" - ], - "Tomato_yellow_leaf_curl_virus_HNHJ" : [ - "JQ004048" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7706_2012" : [ - "KJ189352" - ], - "Tomato_severe_rugose_virus__BR_Jai127_08" : [ - "KC004069" - ], - "Thermus_phage_IN93" : [ - "NC_004462" - ], - "JC_polyomavirus__FE_1" : [ - "AB103417" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__BJ1102" : [ - "KF751237" - ], - "Hepatitis_B_virus_3831" : [ - "EU796068" - ], - "Dengue_virus_1__MKS_2097" : [ - "KC762630" - ], - "South_African_cassava_mosaic_virus__MG_MG127A1_09" : [ - "KJ887921" - ], - "Tomato_yellow_leaf_curl_virus__SH2" : [ - "KC312668" - ], - "JC_polyomavirus__JCV149URNFL_38" : [ - "JF424835" - ], - "Porcine_circovirus_1__Guiyang" : [ - "KC878437" - ], - "Dengue_virus_2__FGU_Fev_98" : [ - "EU920830" - ], - "Raphanus_sativus_cryptic_virus_2" : [ - "NC_010345", - "NC_010343", - "NC_010344" - ], - "Human_poliovirus_1_NIE1018366" : [ - "KJ170446" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US30" : [ - "KJ019093" - ], - "Beet_curly_top_Iran_virus__IR_Neg_B19K_Sug_04" : [ - "JQ707940" - ], - "Rabies_virus__QS_BHK_P7" : [ - "JN786878" - ], - "Human_coronavirus_NL63_NL63_DEN_2009_9" : [ - "JQ765563" - ], - "Bat_picornavirus_1_LMH22A" : [ - "HQ595341" - ], - "Hepatitis_B_virus__PNF3985" : [ - "KF779314" - ], - "Human_immunodeficiency_virus_1__GDDG095" : [ - "JX574663" - ], - "Bathycoccus_sp__RCC1105_virus_BpV1" : [ - "NC_014765" - ], - "Human_poliovirus_2_NIE0611446_BOS06_01" : [ - "JX274987" - ], - "Human_immunodeficiency_virus_1__C_ZA_1192M3M" : [ - "AY463219" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5482_2010" : [ - "JF920401" - ], - "TGEV_Miller_M6_virulent_Miller_M6" : [ - "DQ811785" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_DEU_106_2008" : [ - "KF530261" - ], - "Streptomyces_phage_phiC31_Norwich_stock" : [ - "NC_001978" - ], - "Hepatitis_B_virus__KWgib10" : [ - "AB823662" - ], - "Hepatitis_B_virus__Os_JP_2010" : [ - "AB933281" - ], - "Chikungunya_virus__MY_06_37350" : [ - "FN295484" - ], - "JC_polyomavirus__JCV135_36" : [ - "JF424861" - ], - "Blueberry_necrotic_ring_blotch_virus__BNRBV_RL" : [ - "KC433318", - "KC433316", - "KC433317", - "KC433319" - ], - "Hepatitis_B_virus__S1538_4" : [ - "FJ787470" - ], - "Newcastle_disease_virus__D1_1998" : [ - "KJ636208" - ], - "Hepatitis_B_virus__I_T9" : [ - "GU456656" - ], - "Chickpea_chlorotic_dwarf_virus__G_ErC472_05" : [ - "KC172674" - ], - "Hepatitis_B_virus__MTB166" : [ - "AY902768" - ], - "Hepatitis_B_virus__HBsAg_negative_patient_GX27" : [ - "AJ344116" - ], - "Hepatitis_B_virus__SHB210" : [ - "KJ598645" - ], - "Tomato_leaf_curl_China_betasatellite__G22" : [ - "AJ704613" - ], - "Rice_ragged_stunt_virus__CT" : [ - "HM125547", - "HM125544", - "HM125541", - "HM125545", - "HM125539", - "HM125540", - "HM125543", - "HM125542", - "HM125546", - "HM125548" - ], - "Tobacco_curly_shoot_alphasatellite__Y249" : [ - "FN678902" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3561_2006" : [ - "JN819415" - ], - "Mokola_virus__86101RCA" : [ - "EU293118" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9761_2010" : [ - "KJ627294" - ], - "Potato_virus_Y__IUNG_10" : [ - "JF927758" - ], - "Dengue_virus_3__Jeddah_2014" : [ - "KJ830751" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Aomori10_5" : [ - "AB811789" - ], - "Hepatitis_B_virus__Ag56" : [ - "KJ843215" - ], - "JC_polyomavirus__JCV176FLC_09" : [ - "JF424907" - ], - "Sapovirus_SaKaeo_15_Thailand_SaKaeo_15_Thailand" : [ - "AY646855" - ], - "Methanomassiliicoccus_Mx1_Issoire" : [ - "NC_021353" - ], - "JC_polyomavirus__Sam_12" : [ - "AB127345" - ], - "Hepatitis_B_virus__WY_HZ_1" : [ - "JX504531" - ], - "Hepatitis_B_virus__GU925" : [ - "GQ161835" - ], - "Cucurbit_aphid_borne_yellows_virus__N" : [ - "NC_003688" - ], - "Dengue_virus_3__HN_2013_22" : [ - "KJ622194" - ], - "Human_bocavirus__TW674_07" : [ - "EU984244" - ], - "Human_coronavirus_HKU1_N23" : [ - "DQ415900" - ], - "BK_polyomavirus__MT_clone_93" : [ - "AB485708" - ], - "Persimmon_virus_A_persimmon_isolate" : [ - "NC_018381" - ], - "Botrytis_cinerea_RNA_virus_1_BerBc_1" : [ - "NC_026139" - ], - "JC_polyomavirus__MU_4" : [ - "AB198953" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C22" : [ - "KJ019150" - ], - "Human_immunodeficiency_virus_1__95127" : [ - "AJ288982" - ], - "Hepatitis_B_virus__B3_2" : [ - "GU815607", - "HQ231878" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_MEX_51_2008" : [ - "KF826843" - ], - "Sida_mosaic_Alagoas_virus__BgV02A_1_C61" : [ - "JF694472" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__NT0801_P80" : [ - "KJ523897" - ], - "Human_immunodeficiency_virus_1_NLXJDC6441X2" : [ - "EF420987" - ], - "Dengue_virus_2__DS09_280106" : [ - "EU179859" - ], - "Dragonfly_larvae_associated_circular_virus_10__DflaCV_10_NZ_XZ1_LH" : [ - "NC_023436" - ], - "Beet_curly_top_virus__New_Mexico" : [ - "EF501977" - ], - "Lake_Victoria_marburgvirus___Angola2005_Ang1381" : [ - "DQ447654" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD171_2013" : [ - "KM229834" - ], - "Idiomarina_loihiensis_GSL_199" : [ - "NC_021286" - ], - "Western_equine_encephalitis_virus__AG80_646" : [ - "GQ287646" - ], - "Hepatitis_B_virus__020_EA_Ram" : [ - "KF873516" - ], - "Bluetongue_virus_1_CSIRO156" : [ - "JN881991", - "JN881993", - "JN881989", - "JN881986", - "JN881988", - "JN881987", - "JN881994", - "JN881990", - "JN881992", - "JN881985" - ], - "Human_immunodeficiency_virus_1__03ZAPS052MB1" : [ - "DQ369987" - ], - "Hepatitis_B_virus__S462_4" : [ - "FJ032336" - ], - "Phocoena_phocoena_papillomavirus_1" : [ - "NC_018074" - ], - "Hepatitis_B_virus__ggcam19" : [ - "FJ798095" - ], - "Caviid_herpesvirus_2_22122" : [ - "AB592928" - ], - "Cauliflower_mosaic_virus__IRNLR9" : [ - "KF357593" - ], - "Hepatitis_E_virus__JTC_Kit_FH04L" : [ - "AB291959" - ], - "WU_Polyomavirus__E58" : [ - "GU296392" - ], - "Hepatitis_B_virus__clz1028" : [ - "KC774188" - ], - "Desulfotomaculum_ruminis_DSM_2154" : [ - "NC_015589" - ], - "Bradyrhizobium_japonicum_USDA_6" : [ - "NC_017249" - ], - "Beet_soil_borne_virus_ahlum" : [ - "NC_003519" - ], - "Human_papillomavirus_type_16__Qv28131" : [ - "HQ644284" - ], - "Human_immunodeficiency_virus_1__1069MB" : [ - "AY838567" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140489" : [ - "KR653235" - ], - "Human_rotavirus_A_1033_stool" : [ - "AJ236750" - ], - "Cassava_brown_streak_virus_Tanzanian_Tan_Z" : [ - "GQ329864" - ], - "South_African_cassava_mosaic_virus__MG_MG44A1_06" : [ - "KJ887859" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1340" : [ - "KR534551" - ], - "Hepatitis_B_virus_494_3" : [ - "KR013941" - ], - "Human_papillomavirus_type_53__Qv33767" : [ - "EF546475" - ], - "Macaca_fascicularis_papillomavirus_type_7__Mac18" : [ - "EF558838" - ], - "Changuinola_virus__CGLV_BE_AR_397956" : [ - "KF668550", - "KF668547", - "KF668554", - "KF668549", - "KF668556", - "KF668552", - "KF668551", - "KF668553", - "KF668555" - ], - "Hepatitis_B_virus__HK1100" : [ - "KJ410494" - ], - "Rabies_virus__A11_1043" : [ - "JQ685973" - ], - "Tomato_spotted_wilt_virus__CPNH9" : [ - "NC_002051" - ], - "Hepatitis_B_virus__dww1034" : [ - "KC774441" - ], - "Enterovirus_B85_BAN00_10353" : [ - "AY843303" - ], - "Blackberry_virus_Y__3" : [ - "NC_008558" - ], - "Micromonospora_aurantiaca_ATCC_27029" : [ - "NC_014391" - ], - "Hepatitis_B_virus_1134_21a" : [ - "KR014012" - ], - "Hepatitis_B_virus__cww1013" : [ - "KC774245" - ], - "Citrus_tatter_leaf_virus_CTLV_MTH" : [ - "KC588948" - ], - "Rickettsia_rickettsii_Colombia" : [ - "NC_016908" - ], - "Bifidobacterium_animalis_lactis_AD011" : [ - "NC_011835" - ], - "Turnip_curly_top_virus__IR_Hom3_7k_09" : [ - "GU456689" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Must_alpha_H3G7" : [ - "EU384635" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3549_2000" : [ - "GU131833" - ], - "Hepatitis_B_virus__FEN70" : [ - "JF440008" - ], - "Ageratum_leaf_curl_Cameroon_betasatellite__SatB14" : [ - "FR717139" - ], - "Porcine_circovirus_2_TJ1306" : [ - "KP670421" - ], - "Hepatitis_B_virus__LDA445" : [ - "KF849715" - ], - "Porcine_circovirus_2__S05_409" : [ - "JX512857" - ], - "Rotavirus_A_RVA_Human_wt_USA_DC1230_1980_G1P_8" : [ - "KC579941", - "KC579951", - "KC579944", - "KC579954" - ], - "Hepatitis_A_virus_GBM_FRhK" : [ - "X75214" - ], - "Goose_circovirus_yk2" : [ - "DQ192279" - ], - "Dengue_virus_3__DENV_3_US_BID_V2120_2002" : [ - "FJ410178" - ], - "JC_polyomavirus__322A" : [ - "AY376830" - ], - "Methylobacillus_flagellatus_KT" : [ - "NC_007947" - ], - "Tomato_leaf_curl_China_betasatellite__Y277" : [ - "AM980510" - ], - "Tamiami_mammarenavirus_CDC_W_10777" : [ - "NC_010701" - ], - "Torque_teno_sus_virus_1b__TTV2ZhZh4" : [ - "JX535335" - ], - "Enterobacteria_phage_mEp460" : [ - "NC_019716" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_130_2012" : [ - "KJ686282" - ], - "West_Nile_virus_Italy_2014_Pavia1" : [ - "KP789953" - ], - "Porcine_circovirus_2_WC1111" : [ - "JX982225" - ], - "Cowpea_aphid_borne_mosaic_virus__CABMV_Z" : [ - "NC_004013" - ], - "Hepatitis_B_virus__HK1442" : [ - "DQ089778" - ], - "Megamonas_hypermegale" : [ - "NC_021041" - ], - "Tomato_leaf_curl_betasatellite__India_Valsad_2012___Valsad" : [ - "KF515613" - ], - "Dengue_virus_2__DENV_2_VN_BID_V927_2004" : [ - "EU482472" - ], - "Saffold_virus__Pak_3486" : [ - "AB747255" - ], - "Human_respiratory_syncytial_virus__RSV_11" : [ - "GU591768" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8536_2003" : [ - "KJ627728" - ], - "Simian_agent_5_B165" : [ - "AF326751" - ], - "Hepatitis_B_virus__BL1_8" : [ - "AY721612" - ], - "Mycobacterium_phage_Butters" : [ - "NC_021061" - ], - "Hepatitis_C_virus_subtype_1b_HC_J4" : [ - "AF054250" - ], - "Tomato_leaf_curl_Cebu_virus__P135" : [ - "EU487043" - ], - "Bacillus_phage_B4" : [ - "NC_018863" - ], - "Cherry_green_ring_mottle_virus__02F23rD" : [ - "KC218931" - ], - "Hepatitis_B_virus__HBV_IF687_1" : [ - "AB205119" - ], - "Squash_leaf_curl_virus__PA1_J253" : [ - "KM595223" - ], - "Rabbit_astrovirus_TN_2208_2010__TN_rabbit_10_2208" : [ - "NC_025346" - ], - "Human_immunodeficiency_virus_1__BREPM1032" : [ - "EF637051" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1149_2007" : [ - "EU932687" - ], - "Enterovirus_D68__2013_1017_26" : [ - "KT280501" - ], - "Hepatitis_C_virus_subtype_1a__03_12" : [ - "EU781823" - ], - "Penaeid_shrimp_infectious_myonecrosis_virus_Indonesia" : [ - "KF836757" - ], - "Rabies_virus__FL385" : [ - "JQ685905" - ], - "Blue_squill_virus_A__SW3" : [ - "NC_019415" - ], - "Norovirus_Hu_GII_4_Hokkaido4_2006_JP_Hu_GII_4_Hokkaido4_2006_JP" : [ - "AB447430" - ], - "Porcine_circovirus_1_DY" : [ - "KC924758" - ], - "Potato_virus_Y_NTN" : [ - "KM396648" - ], - "Hepatitis_B_virus__E3_7" : [ - "GU815708" - ], - "Senecavirus_A_11_55910_3" : [ - "KC667560" - ], - "Japanese_encephalitis_virus__DH107" : [ - "JN381873" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4942_1" : [ - "KR105279" - ], - "Deltapapillomavirus_1" : [ - "NC_001524" - ], - "Porcine_epidemic_diarrhea_virus_USA_Indiana12_83_2013" : [ - "KJ645635" - ], - "Hepatitis_B_virus__CX004C_e207" : [ - "KJ173279" - ], - "Foot_and_mouth_disease_virus___type_SAT_2__PAT_1_2012" : [ - "JX014256" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2216_2003" : [ - "FJ639783" - ], - "Human_coronavirus_OC43_OC43_human_USA_911_38_1991" : [ - "KF530096" - ], - "Hepatitis_C_virus_subtype_1a__L8128" : [ - "EU781761" - ], - "Faecal_associated_gemycircularvirus_4__as50" : [ - "NC_025736" - ], - "Small_begomovirus_associated_satellite__Sa46_S2" : [ - "KJ859162" - ], - "Porcine_circovirus_1__YZ70719" : [ - "FJ159691" - ], - "Hepatitis_B_virus__C35" : [ - "EU859956" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5763_1" : [ - "KR105325" - ], - "Tomato_yellow_leaf_curl_virus__63_Birjand" : [ - "JQ928346" - ], - "Hepatitis_delta_virus__D70" : [ - "KJ744257" - ], - "Simian_retrovirus_2_D2_RHE_OR_V1" : [ - "AF126468" - ], - "Acinetobacter_baumannii_AB0057" : [ - "NC_011586", - "NC_011585" - ], - "Human_papillomavirus_type_6__80" : [ - "HG793888" - ], - "HBV_genotype_H__MEX914M" : [ - "AB516395" - ], - "Propionibacterium_phage_PHL151N00__PHL151N00" : [ - "KJ578784" - ], - "Newcastle_disease_virus_Du_CH_LJS_213_2011" : [ - "KM885154" - ], - "Plum_pox_virus_PPV_D_Ha2" : [ - "AB576049" - ], - "Porcine_circovirus_2_GXHP" : [ - "EF675239" - ], - "Human_respiratory_syncytial_virus__01_000868" : [ - "JQ901449" - ], - "Toscana_virus_ELB" : [ - "EF201833" - ], - "Dengue_virus_2__DENV_2_BF_BID_V3502_1986" : [ - "GU131843" - ], - "Staphylococcus_phage_TEM123" : [ - "NC_017968" - ], - "West_Nile_virus__WNV_1_US_BID_V4607_2003" : [ - "HM488226" - ], - "Western_equine_encephalitis_virus_BFS1703" : [ - "KJ554968" - ], - "Hepatitis_A_virus_IVA" : [ - "DQ646426" - ], - "Dengue_virus_2_D2_TO_UH44_1974" : [ - "HM582115" - ], - "Cotton_leaf_curl_Multan_betasatellite__FC3" : [ - "HQ455352" - ], - "Tomato_yellow_leaf_curl_virus__KW1" : [ - "JN604484" - ], - "Human_papillomavirus_type_58__Rw791" : [ - "HQ537753" - ], - "Enterobacteria_phage_WA10" : [ - "DQ079894" - ], - "Dengue_virus_1__DENV_1_NI_BID_V1070_2005" : [ - "EU482616" - ], - "Infectious_bursal_disease_virus__A_BH83" : [ - "JF811921" - ], - "Porcine_circovirus_2_HZ0201" : [ - "AY188355" - ], - "Tomato_severe_rugose_virus__BR_Vic22_09" : [ - "JX865635" - ], - "Candidatus_Nitrososphaera_gargensis_Ga9_2" : [ - "NC_018719" - ], - "Hepatitis_B_virus__Vac06_C_m620" : [ - "KJ173396" - ], - "Hepatitis_B_virus__Del" : [ - "KC492740" - ], - "Dengue_virus_3__D3BR_AL95_2009" : [ - "JF808120" - ], - "JC_polyomavirus__MO_6" : [ - "AB048562" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3424_2006" : [ - "GU131846" - ], - "Hepatitis_B_virus_022" : [ - "AB900102" - ], - "Norovirus_Hu_GII_20350_2009_VNM_Hu_GII_20350_2009_VNM" : [ - "KC409291" - ], - "Turnip_vein_clearing_virus_OSU" : [ - "NC_001873" - ], - "Hepatitis_B_virus__HBVJSTZ1" : [ - "HQ684848" - ], - "Human_adenovirus_65_BGD_2004_B172__P58_H10_F9" : [ - "AP012285" - ], - "Pepino_mosaic_virus__Ch1" : [ - "DQ000984" - ], - "Citrus_tristeza_virus__NZRB_TH28" : [ - "FJ525433" - ], - "Myxococcus_stipitatus_DSM_14675" : [ - "NC_020126" - ], - "GB_virus_C_K1741" : [ - "D87710" - ], - "Halorubrum_pleomorphic_virus_3" : [ - "NC_017088" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P3pp18" : [ - "FJ882937" - ], - "Hepatitis_B_virus__C90" : [ - "FJ349235" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1553_2007" : [ - "EU677175" - ], - "Rice_yellow_mottle_virus__Ma77" : [ - "AJ608209" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_pool_MEX_MX10_95M8_2010_IE" : [ - "KC344499" - ], - "Bottlenose_dolphin_coronavirus_HKU22__CF090327" : [ - "KF793825" - ], - "Mycobacterium_tuberculosis_Haarlem3_NITR202" : [ - "NC_021192" - ], - "Porcine_circovirus_2_HX02" : [ - "KJ956691" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_TJ" : [ - "EU860248" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00625_2011" : [ - "KJ672557" - ], - "Dengue_virus_1__DENV_1_VN_BID_V821_2006" : [ - "EU482815" - ], - "Peste_des_petits_ruminants_virus__Uganda_2012" : [ - "KJ867543" - ], - "Simian_retrovirus_1" : [ - "SIVRV1CG" - ], - "Hepatitis_B_virus__WHOTH1" : [ - "JN257174" - ], - "Human_immunodeficiency_virus_1__Cu87" : [ - "AY586549" - ], - "Hepatitis_B_virus__J83" : [ - "GQ377552" - ], - "Muscovy_duck_circovirus__TC4_2002" : [ - "DQ166838" - ], - "Torque_teno_sus_virus_1b__TTV2Jl27" : [ - "HM633223" - ], - "West_Nile_virus__WNV_1_US_BID_V4697_2001" : [ - "HM756663" - ], - "Citrus_tristeza_virus__FS701_T30" : [ - "KC517489" - ], - "JC_polyomavirus__Ceb_14" : [ - "AB113119" - ], - "Echovirus_E9_Barty" : [ - "AF524866" - ], - "Human_respiratory_syncytial_virus__RSV_9" : [ - "GU591766" - ], - "Human_immunodeficiency_virus_1__06KECst_014" : [ - "FJ623495" - ], - "Banana_mild_mosaic_virus" : [ - "NC_002729" - ], - "Hepatitis_B_virus__MOD_4577" : [ - "GQ183466" - ], - "Dehalobacter_CF" : [ - "NC_018867" - ], - "Squash_leaf_curl_virus__EG2_12" : [ - "KM595151" - ], - "Odontoglossum_ringspot_virus_18KDa_coat_protein_18KDa_coat_protein" : [ - "NC_001728" - ], - "Human_herpesvirus_5_PAV16" : [ - "KJ872539" - ], - "Tick_borne_encephalitis_virus_Absettarov" : [ - "KJ000002" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2015_Makona_Liberia_DQE6" : [ - "KR075000" - ], - "Hepatitis_B_virus__Patient__4101__PNN4" : [ - "AB219429" - ], - "Small_begomovirus_associated_satellite__Sa8_S125" : [ - "KJ859165" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V348_2002" : [ - "EU256099" - ], - "Porcine_circovirus_2_HD" : [ - "AY916791" - ], - "Porcine_circovirus_2__SX0915" : [ - "GU325766" - ], - "Coxsackievirus_A16__CVA16_WIBP_P4_731" : [ - "KF924762" - ], - "Human_mastadenovirus_D__LN2012_14" : [ - "KF302429" - ], - "Cimodo_virus_C70_CI_2004" : [ - "KF880772" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0157" : [ - "KP759699" - ], - "Enterovirus_D68_US_MO_14_18949" : [ - "KM851227" - ], - "Pseudomonas_phage_PAK_P5" : [ - "NC_022966" - ], - "Watermelon_chlorotic_stunt_virus__JO2_54" : [ - "KM820206" - ], - "Newcastle_disease_virus__01_1108" : [ - "AY935489" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4782_2009" : [ - "JN183884" - ], - "Bean_golden_mosaic_virus__BR_Una9_12" : [ - "KJ939829" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V4277_2008" : [ - "GU131932" - ], - "Rotavirus_A_RVA_Human_wt_ITA_JES11_2010_G9P8_RVA_Human_wt_ITA_JES11_2010_G9P8_JES11" : [ - "JX195092", - "JX195086", - "JX195089", - "JX195088", - "JX195085", - "JX195093", - "JX195090", - "JX195095", - "JX195087", - "JX195094" - ], - "JC_polyomavirus__LA_29" : [ - "AB081614" - ], - "Grapevine_leafroll_associated_virus_3__GP18" : [ - "EU259806" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4751_1" : [ - "KR105271" - ], - "Cotton_leaf_curl_Burewala_virus__C_49" : [ - "HF549182" - ], - "Sida_mosaic_Sinaloa_virus__Sinaloa" : [ - "NC_008056" - ], - "Watermelon_chlorotic_stunt_virus__IL2_109" : [ - "KM820250" - ], - "Lactococcus_Phage_ASCC476" : [ - "JQ740806" - ], - "Ageratum_yellow_vein_Taiwan_virus__TaiwanPD___Tw_PD" : [ - "AF327902" - ], - "Torque_teno_virus__tth18" : [ - "AJ620215" - ], - "Dengue_virus_1__DENV_1_VN_BID_V987_2006" : [ - "EU482531" - ], - "Francisella_TX077308" : [ - "NC_015696" - ], - "Vaccinia_virus_IHD_W" : [ - "KJ125439" - ], - "East_African_cassava_mosaic_virus__EACMV_Ybi1_Cm" : [ - "FN435280" - ], - "Porcine_circovirus_2__NL_Control_1" : [ - "AY484407" - ], - "Papaya_leaf_curl_virus_Vtk_PaND_13" : [ - "KF307208" - ], - "Starkeya_novella_DSM_506" : [ - "NC_014217" - ], - "Human_immunodeficiency_virus_1__MBC200" : [ - "AF042100" - ], - "Hepatitis_B_virus__MC04" : [ - "EU547561" - ], - "SARS_coronavirus_TW7__TW7" : [ - "AY502930" - ], - "Enterobacteria_phage_phiX174__CG" : [ - "AF299300" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1888_2007" : [ - "FJ461324" - ], - "Myxoma_virus_Brazil_Campinas_1949_1_LuCSL" : [ - "JX565570" - ], - "Bacillus_amyloliquefaciens_plantarum_AS43_3" : [ - "NC_019842" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V18_2004" : [ - "EU256040" - ], - "Hepatitis_B_virus__WHSOD1" : [ - "JN257198" - ], - "Bovine_viral_diarrhea_virus_1_type_1_non_cytopathic_NADL" : [ - "AJ133739" - ], - "Dengue_virus_1__DENV_1_VN_BID_V792_2007" : [ - "EU482718" - ], - "Porcine_circovirus_2__CL1" : [ - "JF682791" - ], - "Mycobacterium_phage_Bxz2" : [ - "NC_004682" - ], - "Human_metapneumovirus_HMPV_USA_TN_99_419_1999_B" : [ - "KC562234" - ], - "Goose_circovirus__TW1_2001" : [ - "AF536931" - ], - "Bluetongue_virus_4__79043" : [ - "JX272588" - ], - "Mycobacterium_phage_Liefie_Liefie" : [ - "NC_023705" - ], - "Porcine_torovirus_PToV_NPL_2014" : [ - "KM403390" - ], - "Wheat_dwarf_virus__QHXN08_11" : [ - "KJ536150" - ], - "African_horse_sickness_virus_serotype_7_South_African" : [ - "AJ007306" - ], - "Wheat_dwarf_virus__WDV_B" : [ - "AM040732" - ], - "Chalara_elegans_RNA_Virus_1" : [ - "NC_005883" - ], - "Nitrobacter_hamburgensis_X14" : [ - "NC_007961", - "NC_007959", - "NC_007960", - "NC_007964" - ], - "Human_poliovirus_3__MB1" : [ - "GU180608" - ], - "Dengue_virus_1__SB_01057805__DF02" : [ - "AB519681" - ], - "Maize_streak_virus__MSV_A_LS_Mal2_Les2_2005" : [ - "FJ882096" - ], - "Human_papillomavirus_type_67__Qv25738" : [ - "HQ537783" - ], - "Rift_Valley_fever_virus_2250_74" : [ - "DQ380209", - "DQ380143", - "DQ375413" - ], - "Brassica_yellows_virus__Beijing" : [ - "JN015068" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_192_2011" : [ - "KJ686297" - ], - "Parrot_hepatitis_B_virus__P1032" : [ - "JX274020" - ], - "Chickpea_chlorosis_Australia_virus__CpCV_D_AU_2612_2010" : [ - "JN989419" - ], - "Enterobacterial_phage_mEp390" : [ - "NC_019721" - ], - "Dengue_virus_2__DC710Y12" : [ - "KM279557" - ], - "Epizootic_hemorrhagic_disease_virus_2__600044" : [ - "EHDSEG2F" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_MLI_2014_Makona_Mali_DPR3" : [ - "KP260801" - ], - "Human_herpesvirus_5_BE_48_2011" : [ - "KP745709" - ], - "Infectious_bronchitis_virus_ck_CH_LJL_121059" : [ - "KJ425509" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2733_2007" : [ - "GQ868607" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V319_2001" : [ - "EU155286" - ], - "Dengue_virus_2__MKS_2210" : [ - "KC762659" - ], - "Dengue_virus_3__DENV_3_PE_BID_V6158_2002" : [ - "KJ189256" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P140" : [ - "KC422729" - ], - "Human_herpesvirus_5_BE_39_2011" : [ - "KP745686" - ], - "Gossypium_punctatum_mild_leaf_curl_virus__GPMLCuV_PAK_Mul_Loba1_08" : [ - "FJ210467" - ], - "Human_papillomavirus_type_39__Qv29613" : [ - "KC470233" - ], - "Hantaanvirus_CGRn93MP8_CGRn93MP8" : [ - "EF990919", - "EF990905" - ], - "JC_polyomavirus__337A" : [ - "AY386376" - ], - "Hepatitis_B_virus__530_00_5" : [ - "EU871998" - ], - "Escherichia_coli_O127_H6_E2348_69" : [ - "NC_011601", - "NC_011603", - "NC_011602" - ], - "Hepatitis_B_virus__A11" : [ - "HPBA11A" - ], - "BK_polyomavirus_MMR_43" : [ - "AB269845" - ], - "Dengue_virus_2__DC704Y12" : [ - "KM279556" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1331_2006" : [ - "EU660411" - ], - "European_mountain_ash_ringspot_associated_virus__E51605" : [ - "HG799707" - ], - "Dengue_virus_3__DENV_3_US_BID_V1606_2004" : [ - "FJ024465" - ], - "Chikungunya_virus_CHIK31" : [ - "EU564335" - ], - "Respiratory_syncytial_virus__RSV_USA_BID_V6103" : [ - "JX503101" - ], - "Helicobacter_phage_phiHP33" : [ - "NC_016568" - ], - "West_Nile_virus__WNV_1_US_BID_V7394_2008" : [ - "KJ501106" - ], - "Myxoma_virus_England_Sussex_9_54_1" : [ - "KC660084" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__HSG1_6" : [ - "GU723733" - ], - "Hepatitis_B_virus__JPN_CH7" : [ - "AB453985" - ], - "Ageratum_yellow_vein_betasatellite__F2" : [ - "EF527824" - ], - "Staphylococcus_aureus" : [ - "NC_020536", - "NC_020567" - ], - "Macroptilium_yellow_vein_virus__BR_Pai35_11" : [ - "KJ939915" - ], - "Hepatitis_B_virus__1892" : [ - "FJ386599" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B195_2008" : [ - "GU936288" - ], - "Porcine_circovirus_2__SH0901" : [ - "KF850458" - ], - "Porcine_circovirus_2_JX1105" : [ - "JX948779" - ], - "Methylobacterium_extorquens_DM4" : [ - "NC_012988", - "NC_012987", - "NC_012989" - ], - "West_Nile_virus__WNV_1_US_BID_V6682_2006" : [ - "KJ501524" - ], - "Newcastle_disease_virus_WF00D" : [ - "FJ754272" - ], - "Hepatitis_B_virus__N01_C_011B" : [ - "KJ173428" - ], - "Feline_coronavirus_UU18_UU18" : [ - "HQ012368" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda36_05" : [ - "KC706661" - ], - "Human_rhinovirus_B37" : [ - "EF173423" - ], - "Hepatitis_A_virus_DH01" : [ - "KF569906" - ], - "Hepatitis_B_virus__AIDS34" : [ - "JQ801487" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1027" : [ - "KR534577" - ], - "Hepatitis_B_virus__TK6" : [ - "JF754614" - ], - "Human_mastadenovirus_D_human_USA_CL_49_1991_8_P8_H8_F53" : [ - "KF268198" - ], - "Leek_yellow_stripe_virus__SG2" : [ - "JX429965" - ], - "Human_papillomavirus_type_124__NJ3900" : [ - "GQ845446" - ], - "Hepatitis_B_virus__C232_6" : [ - "FJ899791" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3377_1998" : [ - "GQ868560" - ], - "Hepatitis_B_virus__C_Tomga_BH5413_2002" : [ - "HQ700562" - ], - "Helicoverpa_zea_single_nucleopolyhedrovirus_HS_18" : [ - "KJ004000" - ], - "Apple_chlorotic_leaf_spot_virus__JB" : [ - "KC935956" - ], - "Dengue_virus_2__DENV_2_PR_BID_V3367_1969" : [ - "GQ868600" - ], - "Hepatitis_B_virus__07D07HCC" : [ - "AB014366" - ], - "Dengue_virus_1__DENV_1_VN_BID_V933_2007" : [ - "EU482478" - ], - "Hepatitis_B_virus__C173_1" : [ - "FJ899778" - ], - "Pineapple_bacilliform_comosus_virus" : [ - "NC_014648" - ], - "Human_papillomavirus_type_39__Qv25984" : [ - "KC470241" - ], - "Dengue_virus_3__DENV_3_US_BID_V2119_2002" : [ - "FJ547083" - ], - "Watermelon_chlorotic_stunt_virus__JO2_46" : [ - "KM820201" - ], - "Hepatitis_B_virus__21Y03HCC" : [ - "AB014380" - ], - "Human_papillomavirus_type_33__BF131" : [ - "HQ537706" - ], - "Hepatitis_C_virus__Eg4" : [ - "DQ988075" - ], - "Hepatitis_B_virus_MH15" : [ - "AY220699" - ], - "Human_papillomavirus_type_68__Qv18016" : [ - "KC470270" - ], - "Tomato_leaf_curl_China_betasatellite__JX_2" : [ - "JF919829" - ], - "Human_rhinovirus_A10_ATCC_VR_1120" : [ - "FJ445178" - ], - "Human_immunodeficiency_virus_1__03ZASK097B1" : [ - "AY878060" - ], - "Squash_leaf_curl_virus_SLCV_WAZ" : [ - "AF256203" - ], - "Clostridium_saccharobutylicum_DSM_13864" : [ - "NC_022571" - ], - "Blueberry_mosaic_associated_virus__Arkansas5" : [ - "NC_024476" - ], - "Porcine_circovirus_2__PCV_54" : [ - "KC514991" - ], - "Human_bocavirus__TW2836_06" : [ - "EU984236" - ], - "Pegivirus_A" : [ - "NC_001837", - "AF023424", - "AF023425" - ], - "Natronomonas_moolapensis_8_8_11" : [ - "NC_020388" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3434_2006" : [ - "GU131850" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__LY5" : [ - "GU723754", - "GU723742" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NX06" : [ - "EU097706" - ], - "Madariaga_virus_MADV_Mesocricetus_GTM_68U230_1968" : [ - "KJ469589" - ], - "Hepatitis_B_virus__dxn1038" : [ - "KC774480" - ], - "Cucumber_mosaic_virus_BX" : [ - "DQ399549", - "DQ399548", - "DQ399550" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20144820" : [ - "KR653243" - ], - "Porcine_circovirus_2__HNF1011" : [ - "KJ680362" - ], - "Vibrio_phage_K139" : [ - "NC_003313" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V87_2002" : [ - "EU256030" - ], - "Hepatitis_B_virus_subtype_adw_RTB299" : [ - "AB033554" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__YN_1" : [ - "KJ747052" - ], - "Hepatitis_B_virus_Ehime17_Iyo_0719039" : [ - "AB119255" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0131" : [ - "KP759680" - ], - "Usutu_virus_V389" : [ - "KJ438713" - ], - "Hepatitis_B_virus_C0610090_BIK_F" : [ - "AP011102" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_315_2013" : [ - "KP308431" - ], - "African_cassava_mosaic_virus__CF_CF151AB_07" : [ - "KJ887808" - ], - "Lactobacillus_crispatus_ST1" : [ - "NC_014106" - ], - "Salmonella_phage_FSL_SP_004" : [ - "NC_021774" - ], - "Human_immunodeficiency_virus_2__EHO" : [ - "HIV2U27200" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus__U83_8" : [ - "AJ519675" - ], - "Hepatitis_B_virus__PNF5017" : [ - "KF779351" - ], - "Feline_coronavirus_Felis_catus_NLD_UU63_2010" : [ - "KF530134" - ], - "Luna_mammarenavirus_LSK_2" : [ - "AB693148", - "AB693149" - ], - "Tomato_chlorosis_virus__AT80_99" : [ - "DQ136146", - "DQ983480" - ], - "JC_polyomavirus__MO_3" : [ - "AB048551" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3810_1" : [ - "KM233087" - ], - "African_cassava_mosaic_virus__CF_CF33BE_07" : [ - "KJ887594" - ], - "Porcine_circovirus_2_JX_China_04" : [ - "AM086384" - ], - "Porcine_circovirus_2__H026" : [ - "KJ679446" - ], - "HBV_genotype_B__P2_121210" : [ - "AB981582" - ], - "Sweet_potato_leaf_curl_virus__US_SC_634_7" : [ - "HQ333137" - ], - "Wheat_dwarf_virus__SXHC10_18" : [ - "JQ647500" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2177_2000" : [ - "FJ639748" - ], - "Okra_enation_leaf_curl_virus__India_Munthal_EL32_2006___EL32" : [ - "GU112000" - ], - "JC_polyomavirus__KB_34" : [ - "AB362361" - ], - "Escherichia_coli_O26_H11_11368" : [ - "NC_013369", - "NC_014543", - "NC_013363", - "NC_013362", - "NC_013361" - ], - "Human_enterovirus_C99__HEV_99_68229" : [ - "JF260926" - ], - "Rubella_virus_TCRB19_vaccine" : [ - "AB588188" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3753_2008" : [ - "GQ868534" - ], - "Tibrogargan_virus_CS132" : [ - "NC_020804" - ], - "Enterovirus_A71_FY17_08_4_AH_CHN_2008" : [ - "JX678875" - ], - "Hepatitis_B_virus__C_Tonga_To251_2006" : [ - "HQ700580" - ], - "Macaca_fuscata_rhadinovirus__12E2" : [ - "JN885137" - ], - "West_Nile_virus__WNV_1_US_BID_V6657_2002" : [ - "KJ501399" - ], - "Human_bocavirus__TW830_06" : [ - "EU984231" - ], - "Avian_paramyxovirus_3_turkey_Wisconsin_68" : [ - "NC_025373" - ], - "Maize_streak_virus___A_MakD__MSV_A_MSV_MakD" : [ - "AF329884" - ], - "Potato_virus_Y_1103" : [ - "KC296435" - ], - "Human_papillomavirus_type_16__Qv03470" : [ - "HQ644262" - ], - "Rhodococcus_phage_RER2" : [ - "NC_016653" - ], - "Squash_mosaic_virus__Y_SqMV" : [ - "NC_003800", - "NC_003799" - ], - "East_African_cassava_mosaic_virus__KE_mtw_CMD_MI85_12" : [ - "HG530112" - ], - "Roseobacter_phage_SIO1" : [ - "NC_002519" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1000" : [ - "KM573764" - ], - "Hepatitis_delta_virus_dTk1_dTk1" : [ - "AM779581" - ], - "Lassa_mammarenavirus_Pinneo" : [ - "AY628207" - ], - "KI_polyomavirus__Brisbane_001" : [ - "EF520287" - ], - "Human_poliovirus_3_NIE1118471" : [ - "KJ170651" - ], - "Hepatitis_B_virus_HB669" : [ - "JQ027313" - ], - "Tomato_leaf_curl_Vietnam_virus__Hanoi_103" : [ - "GQ338767" - ], - "Human_immunodeficiency_virus_1__ES_X2149__B" : [ - "EU786678" - ], - "Dengue_virus_2__DENV_2_NI_BID_V627_2004" : [ - "FJ898436" - ], - "Porcine_circovirus_2_LZ" : [ - "DQ363860" - ], - "Salinarchaeum_laminariae_Harcht_Bsk1" : [ - "NC_021313" - ], - "Human_immunodeficiency_virus_1__ES_X2515_3" : [ - "GQ372988" - ], - "_Ruminococcus__torques" : [ - "NC_021015" - ], - "SARS_coronavirus_MA15_MA15_d3om5" : [ - "JF292920" - ], - "Dengue_virus_3_D3_SG_05K3913DK1_2005" : [ - "EU081210" - ], - "Enterovirus_A71_202_Jingdezhen_China_HFMD_Severe_2011" : [ - "KC109780" - ], - "Macroptilium_yellow_spot_virus__BR_Sti23_11" : [ - "KJ939880" - ], - "Porcine_torque_teno_virus_2" : [ - "GU376737" - ], - "Beak_and_feather_disease_virus__AU_RL3" : [ - "KP795105" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7051_2007" : [ - "KJ189268" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA97_15" : [ - "KF670670" - ], - "West_Nile_virus__NY_2002_Nassau" : [ - "DQ164195" - ], - "Porcine_circovirus_2__Tsh2006" : [ - "KM604667" - ], - "Porcine_circovirus_2__BG0_3" : [ - "JQ181594" - ], - "Bat_polyomavirus_6d__6d_2" : [ - "AB972942" - ], - "Dengue_virus_1__DENV_1_VN_BID_V805_2006" : [ - "EU482799" - ], - "Escherichia_coli_UTI89" : [ - "NC_007946", - "NC_007941" - ], - "JC_polyomavirus__AN_11" : [ - "AB092585" - ], - "Human_coronavirus_229E_229E_human_USA_932_72_1993" : [ - "KF514432" - ], - "Synechococcus_phage_ACG_2014a__Syn7803US101" : [ - "KJ019067" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V375_2006" : [ - "EU155260" - ], - "Tobacco_rattle_virus_SYM" : [ - "X06172", - "MTRRNA1" - ], - "African_horse_sickness_virus_9" : [ - "S69829" - ], - "Dengue_virus_3_Singapore_8120_95" : [ - "AY766104" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4290_2007" : [ - "GU131938" - ], - "Geobacillus_Y412MC61" : [ - "NC_013412", - "NC_013411" - ], - "Hepatitis_C_virus_subtype_1a__01_33" : [ - "EU781788" - ], - "Tomato_leaf_curl_Taiwan_virus__T1" : [ - "DQ866127" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT72AL1_2008" : [ - "JF909254" - ], - "Human_immunodeficiency_virus_1__04ZAPS208B1" : [ - "DQ093603" - ], - "Ralstonia_pickettii_12J" : [ - "NC_010682", - "NC_010683", - "NC_010678" - ], - "Pan_troglodytes_verus_polyomavirus_2c__5924" : [ - "HQ385749" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V465_2007" : [ - "EU155238" - ], - "Astrovirus_MLB2__GUP187" : [ - "AB829252" - ], - "Usutu_virus__BAT1USUTU_BNI" : [ - "KJ859682" - ], - "Hepatitis_B_virus__KOR30LC" : [ - "GQ475334" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0077" : [ - "KP759745" - ], - "Dengue_virus_2__DENV_2_US_BID_V1039_2006" : [ - "EU482551" - ], - "Human_immunodeficiency_virus_1_TH_9_95" : [ - "AF490974" - ], - "West_Nile_virus_FL2001_crow_67030" : [ - "GQ379156" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1703_2007" : [ - "FJ024464" - ], - "SFTS_virus_HNXY_144_HNXY_144" : [ - "KC292280", - "KC292333", - "KC292307" - ], - "West_Nile_virus__WNV_1_US_BID_V5230_2008" : [ - "JF920757" - ], - "Hepatitis_B_virus__N202C_e404" : [ - "KJ173419" - ], - "HIV_1_M_97CD_KTB119__97CD_KTB119" : [ - "FM877777" - ], - "Human_poliovirus_1_NIE1118327" : [ - "KJ170489" - ], - "Dengue_virus_2__DC427Y11" : [ - "KM279586" - ], - "Mycobacterium_phage_Dhanush" : [ - "KC661271" - ], - "Human_immunodeficiency_virus_1__C_IN_05_NIRT723_2" : [ - "KF766542" - ], - "Enterovirus_A71__V08_2236079" : [ - "KC436270" - ], - "Hepatitis_B_virus__C82" : [ - "FJ349234" - ], - "JC_polyomavirus__TD_6" : [ - "AB077863" - ], - "Human_bocavirus_LZFB080" : [ - "KM624025" - ], - "Hepatitis_B_virus__I153" : [ - "FJ562288" - ], - "Porcine_circovirus_2_GS" : [ - "DQ151643" - ], - "Papaya_leaf_curl_China_virus__Fz10" : [ - "JF682837" - ], - "Foot_and_mouth_disease_virus___type_O_O1_Manisa_o1manisa_iso87" : [ - "AY593823" - ], - "Human_herpesvirus_5_BE_19_2011" : [ - "KP745654" - ], - "Chicken_anemia_virus_GD_B_12" : [ - "KF224926" - ], - "Hepatitis_E_virus_HeBei_China" : [ - "HPCEGENOM" - ], - "African_cassava_mosaic_virus__MG_MG79A1_06" : [ - "KJ887898" - ], - "West_Nile_virus__WNV_1_US_BID_V7821_2011" : [ - "KJ501537" - ], - "Soybean_mosaic_virus__WS149" : [ - "FJ640968" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2224_2004" : [ - "FJ639791" - ], - "Streptococcus_pyogenes_MGAS9429" : [ - "NC_008021" - ], - "Porcine_circovirus_2__Pinar_del_Rio_20" : [ - "FN687849" - ], - "Hepatitis_B_virus_FD18_3" : [ - "FJ151414" - ], - "Lactobacillus_sakei_23K" : [ - "NC_007576" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3703_2007" : [ - "GU131970" - ], - "White_clover_cryptic_virus_1" : [ - "NC_006276", - "NC_006275" - ], - "Hepatitis_B_virus_1989_97" : [ - "EU594401" - ], - "Human_immunodeficiency_virus_1__92UG037" : [ - "AB253428", - "AB253429" - ], - "Xanthomonas_albilineans_GPE_PC73" : [ - "NC_017556", - "NC_013722", - "NC_017555", - "NC_017557" - ], - "Dengue_virus_1__52082_BR_PE_98" : [ - "JX669470" - ], - "Grapevine_Anatolian_ringspot_virus__A34" : [ - "NC_018383" - ], - "Human_picobirnavirus_Hy005102" : [ - "NC_007027", - "NC_007026" - ], - "Human_bocavirus__HK4" : [ - "EF450720" - ], - "Rabies_virus__AZBAT_7453" : [ - "JQ685956" - ], - "Fiji_disease_virus" : [ - "NC_007154", - "NC_007160", - "NC_007156", - "NC_007161", - "NC_007162", - "NC_007157", - "NC_007159", - "NC_007158", - "NC_007163", - "NC_007155" - ], - "Norovirus_Hu_GII_4_Miyazaki1_2008_JP_Hu_GII_4_Miyazaki1_2008_JP" : [ - "AB541289" - ], - "Avian_paramyxovirus_6_APMV_6_Goose_FarEast_4440_2003" : [ - "EF569970" - ], - "Hepatitis_B_virus__UdeA_089" : [ - "FJ589068" - ], - "Mycobacterium_phage_Bobi" : [ - "NC_022055" - ], - "Rabies_virus_PV_2061" : [ - "JX276550" - ], - "JC_polyomavirus__ML_4" : [ - "AB198951" - ], - "Sango_virus__An_5077" : [ - "HE795099", - "HE795101", - "HE795100" - ], - "Porcine_circovirus_2__S99_1542_3a" : [ - "JX512856" - ], - "Tomato_yellow_leaf_curl_virus_HNJX" : [ - "JN990924" - ], - "Human_adenovirus_41__NY_2010_4849" : [ - "KF303069" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_91I_043A_01_1991" : [ - "KJ723477" - ], - "Human_papillomavirus_type_11__A86" : [ - "FN870021" - ], - "Enterovirus_A71__02_1_055" : [ - "KP691645" - ], - "Norovirus_Hu_GII_4_CGMH06_2006_TW" : [ - "JN400604" - ], - "Human_poliovirus_3_NIE1118507" : [ - "KJ170629" - ], - "Human_immunodeficiency_virus_1__04013226_2_flH5" : [ - "FJ496079" - ], - "Hepatitis_B_virus__833" : [ - "AY233289" - ], - "Human_T_lymphotropic_virus_1__tlom1_1" : [ - "AB979451" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V3_2005" : [ - "EU256043" - ], - "Bean_golden_mosaic_virus__BR_Sag5_12" : [ - "KJ939783" - ], - "South_African_cassava_mosaic_virus__MG_MG730A1_11" : [ - "KJ887749" - ], - "Acheta_domestica_densovirus__AdEu07" : [ - "KF015276" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9537_2013" : [ - "KJ643579" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1919_2007" : [ - "FJ410252" - ], - "Rabies_virus__CA982" : [ - "JQ685894" - ], - "Vernonia_yellow_vein_Fujian_virus_alphasatellite" : [ - "KC959932", - "NC_015929", - "KC959931" - ], - "Hepatitis_B_virus__patient17" : [ - "EU881995", - "EU881996" - ], - "Maize_streak_virus__MSV_A_ZW_Har2_Mic22_1987" : [ - "FJ882140" - ], - "Hepatitis_delta_virus__M18" : [ - "KF660601" - ], - "Dengue_virus_1__DENV_1_BR_BID_V2374_2000" : [ - "FJ850070" - ], - "Hepatitis_B_virus_28059" : [ - "EU414137" - ], - "Tomato_yellow_leaf_curl_virus__HB_WH1" : [ - "KC312659" - ], - "Salicola_phage_CGphi29_CGphi29" : [ - "NC_020844" - ], - "Hepatitis_B_virus__LAMr_Pt__35" : [ - "AB367426" - ], - "Hepatitis_B_virus__Tibet_60" : [ - "HM750149" - ], - "Cercopithecine_herpesvirus_5_Colburn" : [ - "FJ483969" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_pool_MEX_MX10_94M4_2010_IE" : [ - "KC344496" - ], - "Maize_chlorotic_mottle_virus__ANETF1S2" : [ - "KP798452" - ], - "Mycoplasma_pneumoniae_M129" : [ - "NC_000912" - ], - "Enterovirus_A71_Anhui1_09_China" : [ - "GQ994988" - ], - "Hepatitis_B_virus__QHX_14" : [ - "HM750135" - ], - "Euphorbia_yellow_mosaic_virus__EuYMV__BR_GO_Acr3539_05" : [ - "JX415189" - ], - "Tomato_severe_rugose_virus__BR_Car230_08" : [ - "KC004083" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9386_2013" : [ - "KJ643474" - ], - "Hepatitis_B_virus__11_S698" : [ - "EU570074" - ], - "Pseudomonas_phage_LMA2" : [ - "NC_011166" - ], - "Alcelaphine_herpesvirus_1_C500" : [ - "NC_002531" - ], - "Human_immunodeficiency_virus_1__14296_1" : [ - "DQ853452" - ], - "Hepatitis_B_virus__NT_1" : [ - "KF495606" - ], - "HBV_genotype_C__NAB9" : [ - "AB644281" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V115_2001" : [ - "EU155216" - ], - "Hepatitis_B_virus_551_31" : [ - "KR013975" - ], - "BK_polyomavirus__ANY_2" : [ - "AB464953" - ], - "Faecal_associated_gemycircularvirus_1c__P9" : [ - "NC_025739" - ], - "Mycoplasma_ovis_Michigan" : [ - "NC_023062" - ], - "Helicobacter_pylori_PeCan18" : [ - "NC_017742" - ], - "Sweet_potato_leaf_curl_virus_Sao_Paulo_SPLCV_SP_BR_PP_09" : [ - "HQ393476" - ], - "Urochloa_streak_virus__USV_NEji2" : [ - "NC_010797" - ], - "Hepatitis_B_virus__062_WA_Man" : [ - "KF873536" - ], - "Infectious_bronchitis_virus_Conn46_1996" : [ - "FJ904716" - ], - "Chicken_anemia_virus_TR20" : [ - "AB027470" - ], - "Maize_streak_virus__MSV_A_GH_gh24_Nko_2010" : [ - "KJ699343" - ], - "Odontoglossum_ringspot_virus__Cy_1" : [ - "S83257" - ], - "Feline_immunodeficiency_virus__JF6" : [ - "EF455610" - ], - "Cucumber_green_mottle_mosaic_virus__DY13" : [ - "KM873789" - ], - "Watermelon_mosaic_virus__C04_106" : [ - "JF273469" - ], - "Mycobacterium_phage_Omega" : [ - "NC_004688" - ], - "Human_papillomavirus_type_94__8_14" : [ - "GU117628" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1939_2008" : [ - "FJ410262" - ], - "Marine_RNA_virus_JP_B" : [ - "NC_009758" - ], - "Japanese_encephalitis_virus_T1P1_L4" : [ - "AY303792" - ], - "Dengue_virus_2__DENV_2_VN_BID_V920_2006" : [ - "EU482466" - ], - "BK_polyomavirus__FUJ_27" : [ - "AB369098" - ], - "Human_herpesvirus_5_Merlin_RCMV1149" : [ - "KM192299" - ], - "Hepatitis_B_virus__WHFRJ2" : [ - "JN257177" - ], - "Haloarcula_marismortui_ATCC_43049" : [ - "NC_006394", - "NC_006390", - "NC_006395", - "NC_006396", - "NC_006397", - "NC_006392", - "NC_006389", - "NC_006391", - "NC_006393" - ], - "Norovirus_Hu_GII_10405_2010_VNM_Hu_GII_10405_2010_VNM" : [ - "KC409241" - ], - "Human_rotavirus_A_MW23" : [ - "AJ278254" - ], - "Simian_foamy_virus_Pan_troglodytes_troglodytes_BAD327" : [ - "JQ867463" - ], - "Streptococcus_phage_Abc2" : [ - "NC_013645" - ], - "Croton_yellow_vein_mosaic_virus__CYVMV_Del_Cr" : [ - "JN817516" - ], - "Hepatitis_B_virus__EI03194" : [ - "DQ315777" - ], - "Hepatitis_B_virus__SamsunD27" : [ - "AB674410" - ], - "Hepatitis_B_virus__Alaska433" : [ - "AB287314" - ], - "Monkeypox_virus__DRC_07_0354" : [ - "JX878425" - ], - "Human_immunodeficiency_virus_1__05ZASK243B1" : [ - "DQ396372" - ], - "Norovirus_Hu_GII_4_Fukui2_2007_JP_Hu_GII_4_Fukui2_2007_JP" : [ - "AB541245" - ], - "Hepatitis_B_virus__Leb18" : [ - "JN642132" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V437_2006" : [ - "EU155278" - ], - "Human_immunodeficiency_virus_1__03ZAPS118MB1" : [ - "DQ396368" - ], - "Hepatitis_B_virus__MOD_4639" : [ - "GQ183470" - ], - "SARS_coronavirus_Frankfurt_1__Frankfurt_1" : [ - "AB257344", - "AY291315" - ], - "West_Nile_virus__M20141" : [ - "JF415927" - ], - "Chili_leaf_curl_virus_Oman__Tom_33" : [ - "KF229720" - ], - "Hepatitis_B_virus__S6" : [ - "EU678475" - ], - "West_Nile_virus__CA_04_COAV689" : [ - "JF703161" - ], - "Human_immunodeficiency_virus_1__14303_1" : [ - "DQ853451" - ], - "Porcine_circovirus_2_GD011" : [ - "KM880085" - ], - "Granulicella_mallensis_MP5ACTX8" : [ - "NC_016631" - ], - "MW_polyomavirus_QLDMW05" : [ - "KC549589" - ], - "Human_immunodeficiency_virus_1_05GX079" : [ - "GQ845125" - ], - "West_Nile_virus__WNV_1_US_BID_V4685_2003" : [ - "HM756657" - ], - "Hepatitis_B_virus__cxa2077" : [ - "KC774331" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_05_2012" : [ - "KJ672455" - ], - "Tomato_yellow_leaf_curl_virus__Beijing3" : [ - "GU983859" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD22_2013" : [ - "KM229868" - ], - "Akabane_virus_Okayama2001" : [ - "AB289322", - "AB289319" - ], - "African_cassava_mosaic_virus__MG_MG306A4_10" : [ - "KJ887975" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2685_2006" : [ - "FJ882516" - ], - "Swine_cyclovirus_SC_CGS96" : [ - "KM392284" - ], - "African_cassava_mosaic_virus__Cameroon__ACMV_CM_S1" : [ - "AF112352", - "AF112353" - ], - "Sweet_potato_golden_vein_associated_virus_Rondonia_SPGVaV_RO_BR_Uti_08" : [ - "HQ393447" - ], - "Ludwigia_yellow_vein_virus__G37" : [ - "NC_007210" - ], - "Dengue_virus_2__DC814Y12" : [ - "KM279569" - ], - "Cauliflower_mosaic_virus__TUR5" : [ - "AB863169" - ], - "Beet_necrotic_yellow_vein_virus__Pithivier" : [ - "HM117903" - ], - "Hepatitis_B_virus__HBV_6395" : [ - "AF121250" - ], - "Porcine_circovirus_type_1_2a__FMV08_1133505" : [ - "FJ655419" - ], - "Hepatitis_B_virus__MY342396" : [ - "KJ803823" - ], - "Wheat_dwarf_virus__HBSJZ10_18" : [ - "JQ647472" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7705_2012" : [ - "KJ189351" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GX10_42" : [ - "JQ309822" - ], - "Hepatitis_B_virus__CAR053" : [ - "AM494695" - ], - "Mycobacterium_phage_Chy5" : [ - "NC_021318" - ], - "JC_polyomavirus_733B" : [ - "AY121912" - ], - "Turnip_mosaic_virus__AUST22" : [ - "AB989638" - ], - "Chlamydia_trachomatis_RC_J_953" : [ - "NC_021889" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4920_spleen" : [ - "HQ671671" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO04AF2_2009" : [ - "JF909128" - ], - "Porcine_circovirus_2_LYG1203" : [ - "KC823055" - ], - "Synechococcus_phage_metaG_MbCM1" : [ - "NC_019443" - ], - "Maize_streak_virus__MSV_A_ZA_War8_Ta8_2008" : [ - "HQ693448" - ], - "Faba_bean_necrotic_yellows_C9_alphasatellite__Egyptian_EV1_93" : [ - "NC_003567" - ], - "Bhendi_yellow_vein_India_virus__India_Phalaghat_OY03_2005___OY03" : [ - "GU112011" - ], - "Hepatitis_B_virus__S310" : [ - "FJ386664" - ], - "Clover_yellow_mosaic_virus" : [ - "NC_001753" - ], - "Bean_golden_mosaic_virus__BR_Mur1_11" : [ - "KJ939754" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP5B" : [ - "JN013986" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__YN57_19" : [ - "KC149952" - ], - "Geobacter_M21" : [ - "NC_012918" - ], - "Hepatitis_B_virus__C_Tonga_To281_2006" : [ - "HQ700568" - ], - "Melon_chlorotic_mosaic_virus__VE06_45" : [ - "KF670619", - "KF670618" - ], - "Epizootic_hemorrhagic_disease_virus" : [ - "EHDVP7", - "EHDVP2", - "X55782" - ], - "Lactococcus_phage_bIL311" : [ - "NC_002670" - ], - "Soybean_mosaic_virus__WS117" : [ - "FJ640962" - ], - "Caldilinea_aerophila_DSM_14535___NBRC_104270" : [ - "NC_017079" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG650A7_11" : [ - "KJ888081" - ], - "Junin_mammarenavirus_JNM_6682" : [ - "DQ531486" - ], - "Turnip_curly_top_virus__IR_Hom_T57K_Tur_10" : [ - "JQ742019" - ], - "Hepatitis_B_virus__P13" : [ - "EU859917" - ], - "Southern_elephant_seal_virus" : [ - "NC_016960" - ], - "Hepatitis_B_virus__D158" : [ - "EU939626" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_368_2012" : [ - "KP308442" - ], - "Escherichia_phage_KBNP1711" : [ - "NC_023593" - ], - "Bifidobacterium_adolescentis_ATCC_15703" : [ - "NC_008618" - ], - "SFTS_virus_HNXY_188_HNXY_188" : [ - "KC292328", - "KC292301", - "KC292274" - ], - "Hepatitis_B_virus__J113" : [ - "GQ377572" - ], - "Hepatitis_B_virus__SHB716" : [ - "KJ598750" - ], - "Tobacco_mosaic_virus__Xingren_2" : [ - "HE818450" - ], - "Squash_leaf_curl_China_virus____B___B" : [ - "NC_007339" - ], - "Hepatitis_B_virus__YOGHhbv68" : [ - "AB713529" - ], - "Human_poliovirus_1__DOR00042C2" : [ - "AF405676" - ], - "Hepatitis_B_virus__WHHLL2" : [ - "JN257166" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_QUAL2_After" : [ - "EF536002" - ], - "Human_rhinovirus_A60_ATCC_VR_1473" : [ - "FJ445143" - ], - "Simian_adenovirus_35_1" : [ - "FJ025912" - ], - "Rice_stripe_virus__CY_CN" : [ - "FJ602695", - "FJ602682" - ], - "Enterobacteria_phage_f1__f1_2_FR" : [ - "JF719733" - ], - "Hepatitis_C_virus_subtype_4L__HCV_4l_GB_BID_G1247" : [ - "JX227958" - ], - "Porcine_deltacoronavirus_CH_Sichuan_S27_2012" : [ - "KT266822" - ], - "Hepatitis_B_virus__M32" : [ - "GQ924615" - ], - "Salmonella_phage_P22_pbi" : [ - "AF527608" - ], - "WU_Polyomavirus__NP186" : [ - "GU296401" - ], - "Tomato_yellow_leaf_curl_virus_Israel_New_Caledonia_La_Foa_2010" : [ - "HE603245" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA34" : [ - "KF670654" - ], - "Hepatitis_B_virus__HBV_139_1" : [ - "AF121248" - ], - "Hepatitis_B_virus__clz2044" : [ - "KC774200" - ], - "Dengue_virus_2__DENV_2_VN_BID_V921_2006" : [ - "EU482467" - ], - "Tobacco_mosaic_virus__Binchuan" : [ - "HE818415" - ], - "Hepatitis_B_virus__J115" : [ - "GQ377574" - ], - "Rodent_pegivirus__CC61" : [ - "NC_021154" - ], - "Enterobacteria_phage_cdtI" : [ - "NC_009514" - ], - "Falconid_herpesvirus_1_S_18" : [ - "NC_024450" - ], - "South_African_cassava_mosaic_virus__MG_MG474A3_11" : [ - "KJ887724" - ], - "Escherichia_phage_Cba120_vB_EcoM_CBA120" : [ - "NC_016570" - ], - "Hepatitis_B_virus_China_Xinjiang_HB27_2009_Xinjiang_HB27" : [ - "HQ833467" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9398_2013" : [ - "KJ643486" - ], - "Measles_virus__9301V" : [ - "AB012949" - ], - "Enterovirus_A71_SDLY153_F" : [ - "JX244187" - ], - "Spinach_yellow_vein_Sikar_virus" : [ - "NC_023023" - ], - "Melon_chlorotic_mosaic_virus__VE09_65" : [ - "KF670622", - "KF670623" - ], - "Human_immunodeficiency_virus_1__03ZASK232B1" : [ - "DQ093589" - ], - "Porcine_circovirus_2__SC11" : [ - "KJ680347" - ], - "Chikungunya_virus_ArD_30237" : [ - "HM045815" - ], - "Okra_yellow_mosaic_Mexico_virus____Sida_Colima_2__Colima_2" : [ - "JX219471" - ], - "Escherichia_phage_T5_ATCC_11303_B5" : [ - "AY587007" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3916_2008" : [ - "GQ868636" - ], - "Maize_streak_virus__MSV_A_GH_gh144_Daa_2010" : [ - "KJ699331" - ], - "STL_polyomavirus_WD972" : [ - "JX463184" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4937_spleen" : [ - "HQ671676" - ], - "JC_polyomavirus__JCV161FLC_06" : [ - "JF424915" - ], - "Clostridium_botulinum_Ba4_657" : [ - "NC_012654", - "NC_012658", - "NC_012657" - ], - "Bacillus_1NLA3E" : [ - "NC_021171" - ], - "South_African_cassava_mosaic_virus__MG_MG34A2_06" : [ - "KJ887642" - ], - "Tomato_yellow_leaf_curl_Axarquia_virus__ES_mh800" : [ - "AY227892" - ], - "Newcastle_disease_virus_Chicken_China_SDWF07_2011" : [ - "JQ015295" - ], - "JC_polyomavirus__Tky_1" : [ - "AB038254" - ], - "Echovirus_E29_JV_10" : [ - "AY302552" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC89" : [ - "KP195265" - ], - "East_Asian_Passiflora_virus__EAPV_0920_6" : [ - "KP114137" - ], - "Porcine_circovirus_2_16845" : [ - "EU340258" - ], - "Papaya_ringspot_virus__PRSVR3" : [ - "KJ755852" - ], - "Mumps_virus_Hoshino_vaccine" : [ - "AB470486" - ], - "Human_immunodeficiency_virus_1_GR11" : [ - "AF119820" - ], - "Rotavirus_A__RVA_Human_wt_DEN_W31705_2010_G9P_4" : [ - "KP013456" - ], - "Cucumber_mosaic_virus_satellite_RNA_T4" : [ - "X86415" - ], - "Escherichia_coli_LY180" : [ - "NC_022364" - ], - "Rubella_virus_RVI_DEZHOU_CHN_02_1E" : [ - "KF201674" - ], - "Ageratum_enation_virus__Lucknow_3" : [ - "KJ488991" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4730_1" : [ - "KR105268" - ], - "Lactococcus_phage_SK1" : [ - "NC_001835" - ], - "Human_papillomavirus_type_16__Qv23856" : [ - "HQ644278" - ], - "Hepatitis_C_virus_subtype_1b_MD12" : [ - "AF207753" - ], - "Salmonella_phage_SE1" : [ - "NC_011802" - ], - "Drosophila_melanogaster_sigmavirus_AP30__AP30" : [ - "NC_013135" - ], - "Wheat_dwarf_virus__GSTS07_5" : [ - "KJ536083" - ], - "Barley_yellow_dwarf_virus_GAV__05WN3" : [ - "EU402389" - ], - "Hepatitis_B_virus__N01_M_011A" : [ - "KJ173427" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PAN_4840_1961_ID" : [ - "KC344506" - ], - "Plum_pox_virus_PPV_D_Od5" : [ - "AB576080" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2901_2006" : [ - "GQ868612" - ], - "Maize_streak_virus__UNak_111" : [ - "EF547086" - ], - "Human_papillomavirus_type_6__95" : [ - "HG793903" - ], - "Ranid_herpesvirus_1_McKinnell" : [ - "NC_008211" - ], - "Dolphin_morbillivirus" : [ - "NC_005283" - ], - "Rhodomicrobium_vannielii_ATCC_17100" : [ - "NC_014664" - ], - "Streptomyces_hygroscopicus_jinggangensis_TL01" : [ - "NC_020895", - "NC_020293", - "NC_020894" - ], - "Columbid_circovirus__Dove" : [ - "DQ915959" - ], - "Ustilaginoidea_virens_RNA_virus_1_Uv0901" : [ - "KF791041" - ], - "Hepatitis_B_virus__1929" : [ - "FJ386639" - ], - "Hepatitis_B_virus_UZBV34_UZBV34" : [ - "AB222709" - ], - "Coxsackievirus_A16_BJ1208" : [ - "JX507808" - ], - "Hepatitis_B_virus__patient_567" : [ - "AF418677", - "AF418678", - "AF418676" - ], - "Variola_virus_Kuwait_1967__K1629" : [ - "DQ441433" - ], - "Human_rotavirus_A_Wa_variant_VirWa" : [ - "FJ423118", - "FJ423117", - "FJ423113", - "FJ423119", - "FJ423115", - "FJ423114", - "FJ423121", - "FJ423122", - "FJ423123", - "FJ423116", - "FJ423120" - ], - "Dengue_virus_3__DENV_3_KH_BID_V3816_2006" : [ - "HM181933" - ], - "Haemophilus_influenzae_KR494" : [ - "NC_022356" - ], - "West_Nile_virus__WNV_1_US_BID_V6662_2004" : [ - "KJ501402" - ], - "Hepatitis_B_virus__HBV80" : [ - "KC875300" - ], - "Burkholderia_phage_phi6442" : [ - "NC_009235" - ], - "Cauliflower_mosaic_virus__IRN10" : [ - "AB863145" - ], - "Serratia_phage_Eta" : [ - "NC_021563" - ], - "Polynucleobacter_necessarius_STIR1" : [ - "NC_010531" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLI1399_2010" : [ - "KJ672580" - ], - "Sulfolobales_Mexican_rudivirus_1" : [ - "NC_019413" - ], - "Pseudomonas_phage_vB_PaeM_PAO1_Ab03_Ab03" : [ - "NC_026587" - ], - "Tomato_leaf_deformation_virus__CL_LD_G9_To_2012" : [ - "KC620461" - ], - "Alphapapillomavirus_3" : [ - "NC_001694" - ], - "Sendai_virus_pi" : [ - "AB195967" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4701_1" : [ - "KR105264" - ], - "Duck_hepatitis_B_virus_DHBV_WS" : [ - "HM590411" - ], - "Rabovirus_A__Berlin_Jan2011_0572" : [ - "NC_026314" - ], - "Hepatitis_B_virus__8118" : [ - "KJ470893" - ], - "Human_papillomavirus_type_82" : [ - "AB027021", - "AF293961" - ], - "Porcine_circovirus_2__2b_JF11__2a_CL1" : [ - "JF682793" - ], - "Simian_immunodeficiency_virus__677" : [ - "NC_001549" - ], - "Dengue_virus_1__ZH415" : [ - "KC131141" - ], - "Potato_virus_Y_strain_NTN_NTN_L26" : [ - "FJ204165" - ], - "Human_adenovirus_55__Hebei_BD6729_2013" : [ - "KJ883521" - ], - "Dengue_virus_1__DENV_1_US_BID_V2132_1993" : [ - "FJ410183" - ], - "Tomato_yellow_leaf_curl_virus__SDSGMT" : [ - "KC999847" - ], - "Tomato_yellow_spot_virus_BR_MCR7_Le_09_Mc_7" : [ - "JX513953", - "JX513952" - ], - "Pseudomonas_phage_B3_ATCC15692_B1" : [ - "NC_006548" - ], - "African_cassava_mosaic_virus__CF_CF32AB_07" : [ - "KJ887770" - ], - "Human_immunodeficiency_virus_1__SE8646" : [ - "AY352654" - ], - "Avian_paramyxovirus_8_APMV_8_pintail_Wakuya_20_78" : [ - "JX901129" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Henan_A14" : [ - "KJ819936" - ], - "Dengue_virus_2__DENV_2_NI_BID_V3143_2007" : [ - "HQ634199" - ], - "Human_immunodeficiency_virus_1__SE8603" : [ - "AF075702" - ], - "Hepatitis_B_virus__ZADGM4522" : [ - "GQ184322" - ], - "Amsacta_moorei_entomopoxvirus__L" : [ - "NC_002520" - ], - "Human_mastadenovirus_B_human_USA_UFL_Adv7h_2005_66_P7H7F3" : [ - "KF268126" - ], - "Puumala_virus_Evo_13Cg_93" : [ - "Z30703" - ], - "West_Nile_virus__WNV_1_US_BID_V6562_2003" : [ - "KJ501358" - ], - "Hepatitis_B_virus__3319v2" : [ - "KF922423" - ], - "Enterovirus_C99__YT31_SD_CHN_11" : [ - "KJ857508" - ], - "Mumps_virus_JL5_JL_CK1" : [ - "JQ946550" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0063" : [ - "KP759638" - ], - "Echovirus_E3_OC10_380" : [ - "AB647316" - ], - "Human_immunodeficiency_virus_1__04ZAPS190B1" : [ - "DQ093602" - ], - "Mokola_virus" : [ - "NC_006429" - ], - "Human_rotavirus_A_US1343" : [ - "AJ400639" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_MP1_09" : [ - "HQ393464" - ], - "Hepatitis_B_virus__dlz1003" : [ - "KC774420" - ], - "Sweet_potato_leaf_curl_virus_Puerto_Rico_SPLCV_PR_BR_Cac_08" : [ - "HQ393460" - ], - "Hepatitis_B_virus__MY816598" : [ - "KJ803772" - ], - "Lactococcus_garvieae_ATCC_49156" : [ - "NC_015930" - ], - "Human_papillomavirus_type_6__71" : [ - "HG793879" - ], - "Hepatitis_B_virus__ADVT_Pt__24" : [ - "AB367800" - ], - "Sugarcane_mosaic_virus__Xiangshan" : [ - "AJ310103" - ], - "Cocksfoot_mottle_virus__Russia" : [ - "CKFPRORNAC" - ], - "Dengue_virus_2__DENV_2_PE_FMD1337_2007" : [ - "KC294200" - ], - "Halovirus_HCTV_1" : [ - "NC_021330" - ], - "Sugarcane_bacilliform_virus__Guadeloupe" : [ - "FJ824813", - "FJ824814" - ], - "Pepino_mosaic_virus__LE_2002" : [ - "AJ606360" - ], - "Raspberry_bushy_dwarf_virus__BY22" : [ - "FR687352", - "FR687357" - ], - "Human_adenovirus_7_gz07" : [ - "HQ659699" - ], - "Tomato_rugose_yellow_leaf_curl_virus__U2" : [ - "NC_020258" - ], - "Hepatitis_B_virus_4364" : [ - "EU796069" - ], - "Human_immunodeficiency_virus_1__WCM32P0793" : [ - "DQ487190" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2004_2006" : [ - "FJ639687" - ], - "Porcine_circovirus_2_JX0301" : [ - "AY651850" - ], - "Norovirus_Hu_GII_20187_2009_VNM_Hu_GII_20187_2009_VNM" : [ - "KC409269" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Ingelvac_MLV" : [ - "EF484033" - ], - "Posavirus_1_958_4" : [ - "KR019687" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V3791_2008" : [ - "GQ868631" - ], - "Newcastle_disease_virus__APMV1_Pigeon_PA_USA_0712_2007" : [ - "KC013040" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_177N7__177N7" : [ - "JN819489" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_413N1__413N1" : [ - "JN819507" - ], - "JC_polyomavirus__LA_17" : [ - "AB081610" - ], - "Cleome_leaf_crumple_virus_associated_DNA_1" : [ - "NC_014646" - ], - "Myzus_persicae_densovirus" : [ - "NC_005040" - ], - "Bokeloh_bat_lyssavirus__21961" : [ - "NC_025251" - ], - "Arboretum_virus__Lo_121" : [ - "NC_025393" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_lena" : [ - "JF802085" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_91_2012" : [ - "KJ686210" - ], - "Human_immunodeficiency_virus_1__14301_1" : [ - "DQ853465" - ], - "Cucumber_mosaic_virus_Fny" : [ - "NC_002035", - "NC_001440", - "NC_002034" - ], - "Human_poliovirus_3_NIE1018502" : [ - "KJ170600" - ], - "East_African_cassava_mosaic_Zanzibar_virus" : [ - "NC_004655", - "NC_004656", - "AJ628732" - ], - "Maize_streak_virus__MSV_A_BF_Gol_BF1_2008" : [ - "HQ693281" - ], - "Maize_streak_virus__MSV_A_GH_gh1_Yej_2010" : [ - "KJ699342" - ], - "Human_herpesvirus_3_YC03" : [ - "KJ808816" - ], - "Hepatitis_B_virus__C228" : [ - "EU939616" - ], - "Human_immunodeficiency_virus_1__UY05_4752" : [ - "FJ213780" - ], - "Hepatitis_B_virus_MEXICO34_H" : [ - "AB375163" - ], - "Hepatitis_delta_virus_dFr2067_dFr2067" : [ - "AM902163" - ], - "Campylobacter_jejuni_RM1221" : [ - "NC_003912" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9103_2010" : [ - "KJ627313" - ], - "Usutu_virus__ArD101291" : [ - "KC754956" - ], - "Phytophthora_infestans_RNA_virus_1" : [ - "FJ373318", - "NC_013221", - "NC_013220" - ], - "Cyanothece_PCC_8802" : [ - "NC_013163", - "NC_013160", - "NC_013168", - "NC_013167", - "NC_013161" - ], - "Newcastle_disease_virus__Ch_CH_SD_2008_128" : [ - "KJ600785" - ], - "Bluetongue_virus_2__IAH_IND2003_03" : [ - "AJ783906" - ], - "Toscana_virus__SI_31051" : [ - "EU003174" - ], - "Chilli_leaf_curl_betasatellite__India_Moga_Okra_2014___India_Moga_Okra_2014" : [ - "KJ614228" - ], - "Porcine_circovirus_2__CP5491_2" : [ - "FJ905462" - ], - "Tomato_leaf_curl_Bangalore_virus__Kolar__Kolar" : [ - "AF428255" - ], - "Rift_Valley_fever_virus_Sudan_4_2010" : [ - "JQ820473" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_9" : [ - "EU384614" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9396_2013" : [ - "KJ643484" - ], - "Hepatitis_B_virus__C1_5" : [ - "GU815622" - ], - "Human_immunodeficiency_virus_1__97GA_TB45" : [ - "FN392877" - ], - "Infectious_bronchitis_virus_ck_CH_LHLJ_111246" : [ - "KP118891" - ], - "Middle_East_respiratory_syndrome_coronavirus__Wadi_Ad_Dawasir_1_2013" : [ - "KJ156881" - ], - "Rotavirus_G4__Rota_349" : [ - "AB012067" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0109" : [ - "KP759594" - ], - "Sandfly_fever_Naples_virus_P_7101795" : [ - "EF201830" - ], - "Coxsackievirus_A16_CA16_GD09_24_CA16" : [ - "KC117317" - ], - "Hepatitis_B_virus__739_11_2004" : [ - "DQ463796" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_COD_2014_Lomela_Lokolia_B11" : [ - "KR819004" - ], - "JC_polyomavirus__320A" : [ - "AY373463" - ], - "Indian_citrus_ringspot_virus__Pune" : [ - "HQ324250" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V79_2002" : [ - "EU256025" - ], - "Cellulophaga_phage_phi13_2_phi13_2" : [ - "NC_021803" - ], - "Yellow_fever_virus_BeH413820" : [ - "JF912181" - ], - "Enterovirus_A71__EV073_07" : [ - "HQ647177" - ], - "Bifidobacterium_animalis_ATCC_25527" : [ - "NC_017834" - ], - "Streptococcus_pneumoniae_ATCC_700669" : [ - "NC_011900" - ], - "Human_papillomavirus_type_166__KC9" : [ - "NC_019023" - ], - "Hepatitis_delta_virus__2" : [ - "HQ005371" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1250" : [ - "KR534585" - ], - "Chloroflexus_aggregans_DSM_9485" : [ - "NC_011831" - ], - "Enterovirus_B77_USA_TX97_10394" : [ - "AY843302" - ], - "Human_herpesvirus_3_VZVi_Weimar_GER_04_05_V_5__134_2005" : [ - "JN704706" - ], - "Canine_papillomavirus_9" : [ - "NC_016074" - ], - "West_Nile_virus__WNV_1_US_BID_V4349_2003" : [ - "HM756676" - ], - "Mycobacterium_phage_Violet_Violet" : [ - "NC_023695" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_HENAN_HEB" : [ - "KJ143621" - ], - "Columbid_circovirus__PL43" : [ - "KF738856" - ], - "Variovorax_paradoxus_EPS" : [ - "NC_014931" - ], - "UR2_sarcoma_virus" : [ - "NC_001618" - ], - "Temperate_fruit_decay_associated_virus__MFBpe35c" : [ - "KR134344" - ], - "South_African_cassava_mosaic_virus__MG_MG321A8_10" : [ - "KJ887981" - ], - "South_African_cassava_mosaic_virus__MG_MG47A1_06" : [ - "KJ887649" - ], - "Circoviridae_SFBeef_SFBeef" : [ - "NC_025216" - ], - "Rotavirus_G4__Rota_399" : [ - "AB012068" - ], - "Vibrio_phage_pYD38_B_pYD38_pYD38_B" : [ - "NC_021561" - ], - "Equid_herpesvirus_1_01c1" : [ - "KF644578" - ], - "Newcastle_disease_virus__Chicken_China_Hebei_01_2006" : [ - "KC542895" - ], - "African_cassava_mosaic_virus__CF_CF355A_08" : [ - "KJ887818" - ], - "Abutilon_mosaic_virus_IN_Udg_JIE1_2010" : [ - "HQ588899" - ], - "Cauliflower_mosaic_virus__IRNLKh7" : [ - "JX912262" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3862_2008" : [ - "GU131697" - ], - "Bluetongue_virus__IVRI_3" : [ - "AM261979" - ], - "Bean_golden_mosaic_virus__BR_Vis14_11" : [ - "KJ939736" - ], - "Merkel_cell_polyomavirus__16b" : [ - "HM011548" - ], - "Watermelon_mosaic_virus__FMF00_LL2" : [ - "EU660578" - ], - "Human_enterovirus_C104_AK11" : [ - "AB686524" - ], - "Human_respiratory_syncytial_virus__RSV_3" : [ - "GU591760" - ], - "Corchorus_yellow_spot_virus" : [ - "NC_008492", - "NC_008493" - ], - "West_Nile_virus__WNV_1_US_BID_V5188_2005" : [ - "JF488093" - ], - "Maize_streak_virus___Reunion__SP2R13___SP2" : [ - "AJ225011" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Dalaba_1104" : [ - "KR534533" - ], - "Hepatitis_B_virus_Ehi_KK_lam_9_2" : [ - "AB195953" - ], - "Saimiri_sciureus_papillomavirus_1__Mac2066" : [ - "NC_023496" - ], - "JC_polyomavirus__JCV135_34" : [ - "JF424859" - ], - "Human_poliovirus_1_NIE1118336" : [ - "KJ170461" - ], - "Ampivirus_A1_NEWT_2013_HUN" : [ - "NC_027214" - ], - "Hepatitis_B_virus__HK428" : [ - "DQ089765" - ], - "Hepatitis_B_virus__G62K_8" : [ - "EU717214" - ], - "Turnip_rosette_virus__TRoV_2" : [ - "KC778721" - ], - "Human_mastadenovirus_C_human_EGY_E13_2001_1_P1H1F1" : [ - "JX173080" - ], - "Enterobacteria_phage_phiX174__CGGhiMhi" : [ - "AF299310" - ], - "African_cassava_mosaic_virus__MG_MG68A1_06" : [ - "KJ887888" - ], - "Pelargonium_zonate_spot_virus__Parana" : [ - "JQ350737", - "JQ350736", - "JQ350739" - ], - "Mamastrovirus_1" : [ - "NC_001943" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC35BC1_2009" : [ - "JF909114" - ], - "Potato_virus_Y_Ordinary_OHO37" : [ - "AB711149" - ], - "Posavirus_1" : [ - "NC_023637" - ], - "Hepatitis_B_virus__J63" : [ - "GQ377543" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_359_2012" : [ - "KP308429" - ], - "Rickettsia_prowazekii_Rp22" : [ - "NC_017560" - ], - "Cauliflower_mosaic_virus__IRNWKB13" : [ - "KF357591" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9477_2013" : [ - "KJ643537" - ], - "Bartonella_vinsonii_berkhoffii_Winnie" : [ - "NC_020301" - ], - "Dengue_virus_3_D3_Hu_TL018NIID_2005" : [ - "AB214879" - ], - "Simian_immunodeficiency_virus__SIVtal_01CM8023" : [ - "AM182197" - ], - "Dengue_virus_1__MKS_2138" : [ - "KC762626" - ], - "Coxsackievirus_A20_IH35" : [ - "AF499642" - ], - "Human_poliovirus_1_Sabin_7_b_97" : [ - "EF456706" - ], - "Echovirus_E6__2012EM100" : [ - "KF042343" - ], - "Paludibacter_propionicigenes_WB4" : [ - "NC_014734" - ], - "Methanosaeta_thermophila_PT" : [ - "NC_008553" - ], - "Avian_paramyxovirus_4_APMV_4_duck_Hongkong_D3_75" : [ - "FJ177514" - ], - "Myxoma_virus_Aust_Southwell_Hill_2_93_SWH_8_2_93" : [ - "JX565575" - ], - "Maize_streak_virus__MSV_B2_Rw_Rob1_1990" : [ - "EU628610" - ], - "Chilli_leaf_curl_virus__RK01" : [ - "KJ700653" - ], - "Norovirus_Hu_GII_4_Hokkaido2_2007_JP_Hu_GII_4_Hokkaido2_2007_JP" : [ - "AB541262" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V396_2006" : [ - "EU155268" - ], - "Oropouche_virus__BeH759620" : [ - "KP691621", - "KP691622" - ], - "Menangle_virus__Australia_bat_2009_Cedar_Grove" : [ - "JX112711" - ], - "Banana_bunchy_top_virus__NS1" : [ - "FJ859744", - "FJ859731" - ], - "Human_papillomavirus_type_6a" : [ - "PPHE6E" - ], - "Human_papillomavirus_type_6__119" : [ - "HG793927" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Bar_B908P_bea_10" : [ - "JF501726" - ], - "Rotavirus_G4__Rota_331" : [ - "AB012077" - ], - "Human_immunodeficiency_virus_1__5082_86" : [ - "AY835771" - ], - "Lactobacillus_rhamnosus_LOCK900" : [ - "NC_021723" - ], - "Foot_and_mouth_disease_virus__R_D_45" : [ - "AM503965" - ], - "JC_polyomavirus__ID_1" : [ - "AB048580" - ], - "Hepatitis_B_virus_497_6" : [ - "KR013791" - ], - "Hepatitis_B_virus__919046" : [ - "JN040766" - ], - "Human_bocavirus__HK18" : [ - "EF450734" - ], - "Hepatitis_B_virus_1303_17" : [ - "KR013850" - ], - "Eastern_equine_encephalitis_virus_EEEV_Phasianus_USA_94M_9_1994" : [ - "KJ469577" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD167_2013" : [ - "KM229830" - ], - "Sugarcane_mosaic_virus__ARG_1662" : [ - "JX237862" - ], - "Pepino_mosaic_virus_EU" : [ - "KJ018164" - ], - "Bean_golden_mosaic_virus__BR_Una15_12" : [ - "KJ939835" - ], - "Hepatitis_B_virus__BA61" : [ - "EU366116" - ], - "Escherichia_coli_ETEC_H10407" : [ - "NC_017723", - "NC_017722", - "NC_017724", - "NC_017633", - "NC_017721" - ], - "Human_immunodeficiency_virus_1__CTL_043" : [ - "EF514712" - ], - "Bacillus_cereus_FRI_35" : [ - "NC_018493", - "NC_018499", - "NC_018492", - "NC_018491", - "NC_018494" - ], - "Dengue_virus_1__DENV_1_VN_BID_V978_2006" : [ - "EU482522" - ], - "Maize_streak_virus__MSV_A_NG_Iba3_N16_2006" : [ - "HQ693377" - ], - "Foot_and_mouth_disease_virus___type_O__UKG_1734_2001" : [ - "FJ542368" - ], - "Bean_common_mosaic_virus__DXH021" : [ - "KJ807809" - ], - "Newcastle_disease_virus__Chicken_China_Liaoning_01_2005" : [ - "KC542892" - ], - "Human_papillomavirus_type_6__LPX26" : [ - "HE962032" - ], - "Porcine_circovirus_2_SX04" : [ - "EF524523", - "AY604430" - ], - "Equid_herpesvirus_1_VA02" : [ - "KF644572" - ], - "Hepatitis_B_virus__SHB41" : [ - "KJ598679" - ], - "Hepatitis_B_virus__BD14999" : [ - "AY311370" - ], - "Human_respiratory_syncytial_virus_03_000005" : [ - "JX576760" - ], - "Hepatitis_C_virus_subtype_1a__99N" : [ - "EU781772" - ], - "Dengue_virus_2_D2_NC_UH97_1972" : [ - "HM582103" - ], - "Shigella_flexneri_2a_301" : [ - "NC_004851", - "NC_004337" - ], - "HBV_genotype_C__NAB47" : [ - "AB644286" - ], - "Human_adenovirus_7_NHRC_1315" : [ - "AY601634" - ], - "South_African_cassava_mosaic_virus__MG_MG584A4_11" : [ - "KJ888052" - ], - "Tomato_yellow_leaf_curl_virus__Andong_2" : [ - "JN183880" - ], - "Dengue_virus_3__D3BR_BR8_04" : [ - "JF808119" - ], - "Monkeypox_virus__DRC_07_0283" : [ - "JX878420" - ], - "Hepatitis_B_virus__HBV23" : [ - "KC875253" - ], - "SFTS_virus_HNXY_195_HNXY_195" : [ - "KC292326", - "KC292352", - "KC292299" - ], - "Simian_virus_40_Ri257" : [ - "FN812745" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_HB154_China_2011" : [ - "JQ733560", - "JQ733561", - "JQ733562" - ], - "Methylobacterium_radiotolerans_JCM_2831" : [ - "NC_010517", - "NC_010504", - "NC_010502", - "NC_010507", - "NC_010505", - "NC_010514", - "NC_010518", - "NC_010509", - "NC_010510" - ], - "Clostridium_phage_phiMMP02" : [ - "NC_019421" - ], - "Dengue_virus_2__DENV_2_VN_BID_V733_2006" : [ - "EU482670" - ], - "Hepatitis_B_virus_1130_5a" : [ - "KR013827" - ], - "Dengue_virus_2__DENV_2_US_BID_V1409_1997" : [ - "EU569720" - ], - "Human_adenovirus_26" : [ - "EF153474" - ], - "Hepatitis_B_virus__clz2056" : [ - "KC774204" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V412_2000" : [ - "EU155312" - ], - "Human_immunodeficiency_virus_1__CHU2727" : [ - "KP718933" - ], - "Campylobacter_jejuni_ICDCCJ07001" : [ - "NC_014801", - "NC_014802" - ], - "Hepatitis_E_virus__HE_JF4" : [ - "AB220972" - ], - "Tobacco_rattle_virus_ppk20" : [ - "AF406990" - ], - "Bluetongue_virus_2__NIG1982_02" : [ - "AJ586667" - ], - "Human_immunodeficiency_virus_1__04RU001" : [ - "DQ400856" - ], - "Marburg_marburgvirus__Ravn_virus_H_sapiens_tc_KEN_1987_Kitum_Cave_810040" : [ - "NC_024781" - ], - "Potato_virus_X__Iran" : [ - "FJ461343" - ], - "Desulfovibrio_salexigens_DSM_2638" : [ - "NC_012881" - ], - "Human_mastadenovirus_B_human_USA_UFL_Adv3a50_2007_3_P3H3F3" : [ - "KF268133" - ], - "Hepatitis_B_virus__BOL51" : [ - "AB365447" - ], - "Porcine_circovirus_1__090507" : [ - "KC990120" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2599_2006" : [ - "HQ733861" - ], - "Hepatitis_B_virus__CAR112" : [ - "AM494704" - ], - "Yersinia_phage_phiR1_RT" : [ - "NC_019909" - ], - "Porcine_circovirus_2_TJ05" : [ - "EF524529" - ], - "Human_papillomavirus_type_6__67" : [ - "HG793875" - ], - "Torque_teno_sus_virus_1a__TTV1Bj6_1" : [ - "HM633249" - ], - "East_African_cassava_mosaic_virus__CF_CF783B_07" : [ - "KM885996" - ], - "Hepatitis_E_virus__IND_HEV_FHF4_2006" : [ - "JF443725" - ], - "Hepatitis_B_virus__919066" : [ - "JN040806" - ], - "Human_papillomavirus_type_35__Rw807" : [ - "HQ537719" - ], - "Tobacco_mosaic_virus__Xuyong" : [ - "HE818454" - ], - "Caprine_kobuvirus__12Q108" : [ - "NC_023422" - ], - "West_Nile_virus__WNV_1_US_BID_V4696_2001" : [ - "HM488249" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_K_SD_SD06_2013" : [ - "KM229904" - ], - "Hepatitis_B_virus__I120" : [ - "FJ562267" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP6A_subpopulation_2" : [ - "JN014003" - ], - "Porcine_circovirus_2_GX08142" : [ - "GQ359008" - ], - "Nanovirus_like_particle__Sriganganagar" : [ - "GQ478667" - ], - "Hepatitis_B_virus__539_16_1979" : [ - "DQ463791" - ], - "African_cassava_mosaic_virus__MG_MG14A17_06" : [ - "KJ887834" - ], - "Aleutian_mink_disease_virus_ADV_G" : [ - "NC_001662" - ], - "Human_immunodeficiency_virus_1__83166" : [ - "GU595152" - ], - "Hepatitis_C_virus_subtype_1b_RB_NC1" : [ - "AJ238800" - ], - "Japanese_encephalitis_virus__SH80" : [ - "JN381848" - ], - "Hepatitis_B_virus__HBV1" : [ - "KC875251" - ], - "Shigella_phage_pSs_1" : [ - "NC_025829" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1200_2007" : [ - "EU596496" - ], - "JC_polyomavirus__JCV144_23" : [ - "JF424882" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_369_2012" : [ - "KP308455" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_DY" : [ - "JN864948" - ], - "Hepatitis_delta_virus__D8" : [ - "KJ744224" - ], - "Turnip_mosaic_virus__AUST2" : [ - "AB989630" - ], - "Synechococcus_phage_ACG_2014c__Syn7803C43" : [ - "KJ019027" - ], - "Ureaplasma_parvum_serovar_3_ATCC_27815" : [ - "NC_010503" - ], - "Zaliv_Terpenia_virus_LEIV_21C" : [ - "KF892041", - "KF892042", - "KF892040" - ], - "Infectious_pancreatic_necrosis_virus_Connecticut_1" : [ - "JF440810" - ], - "Hepatitis_B_virus__1" : [ - "AY233278", - "AJ131956" - ], - "Mulberry_vein_banding_virus__SL_3" : [ - "KM819700" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_INGELVAC_ATP" : [ - "EF532801" - ], - "Enterovirus_A71_306A" : [ - "KJ746493" - ], - "Dengue_virus_2__DENV_2_VN_BID_V928_2006" : [ - "EU482473" - ], - "Enterovirus_C__V2_Tsi_4" : [ - "HQ738295" - ], - "Human_enterovirus_C118_ISR38" : [ - "JX961709" - ], - "Chikungunya_virus_IbAn4824" : [ - "HM045807" - ], - "Sida_mosaic_Bolivia_virus_2_SM2" : [ - "KJ742422" - ], - "Maize_streak_virus__MSV_A_GH_gh131_Aki2_2010" : [ - "KJ699320" - ], - "Hepatitis_B_virus_497_12" : [ - "KR013946" - ], - "Newcastle_disease_virus_JS_3_05_Ch" : [ - "JN618349" - ], - "Pseudomonas_putida_W619" : [ - "NC_010501" - ], - "Dengue_virus_1__DENV_1_VN_BID_V944_2007" : [ - "EU482489" - ], - "Human_papillomavirus_type_58__Qv03554" : [ - "HQ537754" - ], - "Wheat_dwarf_virus__NXYC07_14" : [ - "KJ536096" - ], - "Pyrococcus_furiosus_DSM_3638" : [ - "NC_003413" - ], - "Tomato_leaf_curl_China_betasatellite" : [ - "AJ781299", - "AJ536627", - "AJ781297", - "AJ781301", - "AJ781300", - "AJ781298" - ], - "Crimean_Congo_hemorrhagic_fever_virus_SPU128_81_7" : [ - "DQ076415" - ], - "Tomato_severe_rugose_virus__ToSRV__BR_780Tom3_08" : [ - "JX415196" - ], - "Human_papillomavirus_type_6__60" : [ - "HG793868" - ], - "Plum_pox_virus_PPV_D_Mi3" : [ - "AB576075" - ], - "Dengue_virus_2_DENV_2_ID_1183DN_1977" : [ - "GQ398257" - ], - "Tomato_spotted_wilt_virus__TSWV_8" : [ - "KC261960", - "KC261961", - "KC261959" - ], - "Human_immunodeficiency_virus_1__02ZAPS005MB1" : [ - "DQ351235" - ], - "Porcine_circovirus_2__C7155" : [ - "FJ905463" - ], - "African_cassava_mosaic_virus__West_Kenyan_844" : [ - "NC_001468", - "NC_001467" - ], - "Human_mastadenovirus_B_human_ARG_ak36_AdV11a_2005_55_P14H11F14" : [ - "JX423384" - ], - "Hepatitis_B_virus__HBV_G758" : [ - "AB205192" - ], - "Porcine_circovirus_2__Mal008_11_Melaka" : [ - "JF690917" - ], - "Marine_birnavirus_Y_6" : [ - "AY283781" - ], - "HBV_genotype_C__NMB09122" : [ - "AB554019" - ], - "Mycobacterium_avium_paratuberculosis_MAP4" : [ - "NC_021200" - ], - "Maize_streak_virus__MSV_A_ZA_Blu4_Ta31_2008" : [ - "HQ693403" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2020_2001" : [ - "FJ639697" - ], - "Hepatitis_B_virus__THB47_IC" : [ - "JN664911" - ], - "Dengue_virus_2_D2_AS_UH77_1972" : [ - "HM582104" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_C07" : [ - "KT013257", - "KT013256" - ], - "Hepatitis_B_virus__WHJHM2" : [ - "JN257156" - ], - "Norovirus_Hu_GII_4_NIHIC1_16_2012_USA_Hu_GII_4_NIHIC1_16_2012_USA" : [ - "KF712499" - ], - "Hepatitis_B_virus__pt10T" : [ - "KM875419" - ], - "Hepatitis_B_virus__010_EA_Ram" : [ - "KF873511" - ], - "Human_immunodeficiency_virus_1__04RU128005" : [ - "AY682547" - ], - "Hepatitis_B_virus__IH030213" : [ - "AB250109" - ], - "Bovine_parainfluenza_virus_3__TVMDL17" : [ - "KJ647286" - ], - "Wheat_dwarf_virus__SXHC10_11" : [ - "JQ647494" - ], - "Echovirus_E3_OC10_798" : [ - "AB647326" - ], - "Coxsackievirus_B5_2001_01_101" : [ - "KP266576" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1991_2003" : [ - "GQ868619" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__K5J6" : [ - "JN053446" - ], - "Enterovirus_D68__CA_AFP_11_1767" : [ - "KM892501" - ], - "Bovine_viral_diarrhea_virus_3_Th_04_KhonKaen_Th_04_KhonKaen" : [ - "NC_012812" - ], - "Hepatitis_delta_virus__TW2479_12s" : [ - "AY261457" - ], - "Wheat_dwarf_virus____Hebei_Shijiazhuang___HBSJZ06_11" : [ - "EF536870" - ], - "Methylobacterium_populi_BJ001" : [ - "NC_010727", - "NC_010725", - "NC_010721" - ], - "Salmonella_enterica_serovar_Typhimurium_D23580" : [ - "NC_016854" - ], - "Clostridium_autoethanogenum_DSM_10061" : [ - "NC_022592" - ], - "Hepatitis_B_virus__EI0386" : [ - "DQ315785" - ], - "West_Nile_virus_15803" : [ - "FJ483549" - ], - "Human_parechovirus_4__K251176_02" : [ - "DQ315670" - ], - "Niastella_koreensis_GR20_10" : [ - "NC_016609" - ], - "Opuntia_virus_X_CC10" : [ - "NC_006060" - ], - "JC_polyomavirus__314A" : [ - "AY328376" - ], - "Porcine_circovirus_2_SDrc_1b" : [ - "FJ870975" - ], - "Norovirus_Hu_GII_4_CGMH05_2006_TW" : [ - "JN400603" - ], - "Human_poliovirus_3_NIE1218541" : [ - "KJ170584" - ], - "Saffold_virus_BCH1031" : [ - "GU943513" - ], - "Porcine_circovirus_2_08TJ" : [ - "HQ395021" - ], - "African_cassava_mosaic_virus__MG_MG55A2_06" : [ - "KJ887874" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00098_2010_G1P_8" : [ - "KC769482", - "KC769483", - "KC769481", - "KC769484" - ], - "JC_polyomavirus__JCV161FLC_27" : [ - "JF424934" - ], - "Human_papillomavirus_type_6__91" : [ - "HG793899" - ], - "JC_polyomavirus_734B" : [ - "AY121913" - ], - "Human_immunodeficiency_virus_1__92NG083" : [ - "U88826" - ], - "Bovine_coronavirus_Quebec" : [ - "AF220295" - ], - "Wheat_dwarf_virus__HBWH07_2" : [ - "KJ536126" - ], - "Human_metapneumovirus__NL_1_99" : [ - "AY525843" - ], - "Pepino_mosaic_virus__PepMV_H" : [ - "AM491606" - ], - "Hepatitis_B_virus__530_92_2" : [ - "EU872000" - ], - "Porcine_circovirus_2_JXII__Jiangxi" : [ - "AY732494" - ], - "Hepatitis_B_virus__IND_2010_7" : [ - "KF214666" - ], - "Maize_streak_virus__MSV_A_MZ_Bil4_Moz23_2007" : [ - "HQ693338" - ], - "Bean_golden_mosaic_virus__BR_Flt9_11" : [ - "KJ939774" - ], - "Human_bocavirus_TUN8497" : [ - "JF327789" - ], - "Porcine_circovirus_2_Wuzhi" : [ - "HQ650833" - ], - "beta_proteobacterium_CB" : [ - "NC_020417" - ], - "JC_polyomavirus__MR_10" : [ - "AB127003" - ], - "Porcine_circovirus_2__SH1101" : [ - "KF850463" - ], - "Human_poliovirus_1_NIE1118367" : [ - "KJ170493" - ], - "Chikungunya_virus_CHI2010" : [ - "JQ067624" - ], - "Tomato_yellow_leaf_curl_virus__SD_SG" : [ - "KC312665" - ], - "Azotobacter_vinelandii_DJ" : [ - "NC_012560" - ], - "Bovine_parainfluenza_virus_3_SF" : [ - "AX073601" - ], - "Hepatitis_B_virus__SFN0061" : [ - "KF779384" - ], - "Beak_and_feather_disease_virus__BFDV17" : [ - "FJ685989" - ], - "Hepatitis_B_virus__D3_50158" : [ - "FJ692507" - ], - "Hepatitis_B_virus__8" : [ - "AY233295", - "JQ040125" - ], - "Mumps_virus_Drag94" : [ - "AY669145" - ], - "Torque_teno_virus__TTV_HD16k__gbDhDi43_7" : [ - "FR751486" - ], - "Enterovirus_A_GZ08_520_EV71_Guangzhou_520_2008" : [ - "HQ456312" - ], - "Turkey_parvovirus_260_260" : [ - "GU214706" - ], - "Beak_and_feather_disease_virus__BFDV_S_PL_168_2006" : [ - "JX221015" - ], - "Paralichthys_olivaceus_rhabdovirus__IVa" : [ - "KC685626" - ], - "Oropouche_virus__BeH759025" : [ - "KP691612", - "KP691613" - ], - "Erwinia_phage_PhiEaH1" : [ - "NC_023610" - ], - "Sewage_associated_circular_DNA_virus_35__SaCV_35_NZ_BS4050_2012" : [ - "NC_026280" - ], - "Torque_teno_virus__TTV_HD23b__rheu210" : [ - "FR751501" - ], - "Microviridae_Bog9017_22__Bog9017_22" : [ - "NC_027638" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K229" : [ - "AJ704968", - "AJ717578" - ], - "Enterobacteria_phage_SfV" : [ - "NC_003444" - ], - "Escherichia_phage_vB_EcoP_PhAPEC5" : [ - "NC_024786" - ], - "Cucumber_mosaic_virus_satellite_RNA_CE" : [ - "X86425" - ], - "Sclerotinia_sclerotiorum_hypovirus_2__5472" : [ - "NC_022896" - ], - "Potato_leafroll_virus_CIP01" : [ - "AF453392" - ], - "Human_herpesvirus_5_HAN38" : [ - "GQ396662" - ], - "Avian_orthoreovirus_Fahey_Crawley" : [ - "DQ868789" - ], - "Geitlerinema_PCC_7407" : [ - "NC_019703" - ], - "Human_immunodeficiency_virus_1__A063" : [ - "AF408628" - ], - "Enterovirus_A71__02_1_005" : [ - "KP691662" - ], - "Broad_bean_wilt_virus_2__PAP1" : [ - "KC634010", - "KC625500" - ], - "Pseudomonas_aeruginosa_c7447m" : [ - "NC_022360" - ], - "Sida_yellow_mottle_virus__Cuba_Sancti_Spiritus_159_2009___159" : [ - "HQ822124", - "HQ822123" - ], - "Tomato_leaf_curl_Cebu_virus__P152" : [ - "EU487044" - ], - "Hepatitis_C_virus_subtype_2a__G2aK1" : [ - "AF169003" - ], - "Norovirus_Hu_GII_4_Miyazaki1_2007_JP_Hu_GII_4_Miyazaki1_2007_JP" : [ - "AB541288" - ], - "Eubacterium_siraeum" : [ - "NC_021011" - ], - "Tomato_leaf_curl_Togo_betasatellite__Togo_2006" : [ - "NC_014741" - ], - "Cyprinid_herpesvirus_2_SY_C1" : [ - "KM200722" - ], - "Human_poliovirus_1_NIE1018319" : [ - "KJ170438" - ], - "Maize_streak_virus___Reunion__SP2R11___SP2" : [ - "AJ225009" - ], - "Hepatitis_B_virus_HB586" : [ - "HM011504" - ], - "Hepatitis_B_virus__CONTROL27" : [ - "JQ801519" - ], - "Burkholderia_thailandensis_MSMB121" : [ - "NC_021173", - "NC_021174" - ], - "Pseudomonas_aeruginosa_UCBPP_PA14" : [ - "NC_008463" - ], - "Beak_and_feather_disease_virus__2NC86F" : [ - "JX049214" - ], - "Cauliflower_mosaic_virus__IRNKorC1" : [ - "KF357592" - ], - "Enterovirus_D68__NY316" : [ - "KP745764" - ], - "Japanese_encephalitis_virus_JaTAn1_90" : [ - "AB551991" - ], - "Hepatitis_B_virus__clz2086" : [ - "KC774208" - ], - "Human_herpesvirus_5_PAV20" : [ - "KJ872541" - ], - "Tobacco_yellow_dwarf_virus_A__TYDV_A_AU_2564_2010" : [ - "JN989443" - ], - "Human_papillomavirus_type_6__PV1732" : [ - "JN252321" - ], - "Vaccinia_virus_Tiantan" : [ - "JX489135", - "JX489137", - "JX489138", - "JX489139", - "JX489136" - ], - "Okra_enation_leaf_curl_virus__India_Sonipat_EL14_2006___EL14" : [ - "GU111997" - ], - "Foot_and_mouth_disease_virus___type_SAT_1_SAT1_6swa40_61_sat1_6swa_iso16" : [ - "AY593843" - ], - "Human_immunodeficiency_virus_1__TV725" : [ - "HM215250" - ], - "JC_polyomavirus__CW_1" : [ - "AB118656" - ], - "Feline_picornavirus_661F" : [ - "JN572118" - ], - "Hepatitis_B_virus__D_NZL_HA53_1984" : [ - "HQ700454" - ], - "Euphorbia_yellow_mosaic_virus___Goias__Brazil_GO_Morrinhos_9027_2009" : [ - "JF756674" - ], - "Sideroxydans_lithotrophicus_ES_1" : [ - "NC_013959" - ], - "Dengue_virus_2__DENV_2_VN_BID_V737_2006" : [ - "EU482674" - ], - "Hepatitis_B_virus__G18" : [ - "FM209513" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO12BS3_2009" : [ - "JF909135" - ], - "Human_poliovirus_1__TCDC01_861" : [ - "AF538843" - ], - "Tobacco_vein_banding_mosaic_virus__CL" : [ - "JN630470" - ], - "Bluetongue_virus_16_SAD2004_04__Sardinia_2004" : [ - "AM773693" - ], - "Mycobacterium_phage_Pukovnik_Pukovnik" : [ - "NC_011023" - ], - "Hepatitis_B_virus__S1030_8" : [ - "FJ032355" - ], - "Enterobacteria_phage_ID12" : [ - "DQ079905" - ], - "Mumps_virus_MuV_New_York_USA_40_09_4" : [ - "JX287391" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_92I_048A_01_1992" : [ - "KJ723490" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_OR4_2012" : [ - "KF467253" - ], - "Hepatitis_B_virus__QHX_2" : [ - "HM750144" - ], - "JC_polyomavirus__JCV161FLC_29" : [ - "JF424936" - ], - "Hepatitis_B_virus__C76" : [ - "EU939563" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3379_2001" : [ - "GU131948" - ], - "Human_immunodeficiency_virus_1__Cu43" : [ - "AY586543" - ], - "Bean_common_mosaic_virus__MB" : [ - "KC832502" - ], - "Mycoplasma_hyorhinis_DBS_1050" : [ - "NC_022807" - ], - "Hepatitis_B_virus__HK741" : [ - "DQ089800" - ], - "Grapevine_virus_F__AUD46129" : [ - "NC_018458" - ], - "Melanoplus_sanguinipes_entomopoxvirus" : [ - "NC_001993" - ], - "Tomato_chino_La_Paz_virus__pepper" : [ - "HM459852" - ], - "African_cassava_mosaic_virus__MG_MG57A1_06" : [ - "KJ887876" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1947_2008" : [ - "FJ410266" - ], - "Hepatitis_C_virus__QC273" : [ - "JX183550" - ], - "Hepatitis_B_virus__S425_2" : [ - "FJ787445" - ], - "West_Nile_virus__WNV_1_US_BID_V5180_2004" : [ - "JF488090" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4236_1" : [ - "KR105221" - ], - "Common_midwife_toad_ranavirus__Pelophylax_kl__esculentus_2013_NL" : [ - "KP056312" - ], - "Hepatitis_B_virus__I223" : [ - "FJ562325" - ], - "Cucurbit_yellow_stunting_disorder_virus_Spanish" : [ - "AJ537493" - ], - "Human_immunodeficiency_virus_1__D_ZA_85_R286" : [ - "AY773340" - ], - "Hepatitis_B_virus__I151" : [ - "FJ562287" - ], - "Alternanthera_yellow_vein_virus__F22" : [ - "EF544604" - ], - "Human_poliovirus_1_NIE1118401" : [ - "KJ170454" - ], - "Cotton_leaf_curl_Gezira_betasatellite__BF_Po_Okra6" : [ - "FN554579" - ], - "Dengue_virus_2__DENV_2_US_BID_V1497_2005" : [ - "EU687245" - ], - "Dengue_virus_3__DENV_3_US_BID_V1608_2004" : [ - "FJ024467" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9456_2013" : [ - "KJ643525" - ], - "Enterobacteria_phage_Bp7" : [ - "NC_019500" - ], - "JC_polyomavirus__UZ_1" : [ - "AB262406" - ], - "Yellow_fever_virus__ArD114972" : [ - "JX898872" - ], - "Y73_sarcoma_virus" : [ - "V01170" - ], - "Burkholderia_phage_phiE255" : [ - "NC_009237" - ], - "Escherichia_coli_K_12_substr__DH10B" : [ - "NC_010473" - ], - "Hepatitis_B_virus_MEXICO30_G" : [ - "AB375166" - ], - "Torque_teno_sus_virus_1a__TTV1Hlj16" : [ - "HM633255" - ], - "Plum_pox_virus_PPV_D_Ou7" : [ - "AB576063" - ], - "Japanese_encephalitis_virus__GZ042" : [ - "JN381857" - ], - "Streptococcus_equi_4047" : [ - "NC_012471" - ], - "West_Nile_virus_LEIV_1628Az" : [ - "JX041629" - ], - "Ceratocystis_polonica_partitivirus_CpPV_CMW7151" : [ - "NC_010706", - "NC_010705" - ], - "Maize_streak_virus__UKap_289" : [ - "EF547121" - ], - "Burkholderia_CCGE1003" : [ - "NC_014539", - "NC_014540" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1225_2007" : [ - "EU621672" - ], - "Hepatitis_B_virus__P009_M2_B137" : [ - "KJ173372" - ], - "Guanarito_mammarenavirus_VAV_1608" : [ - "AY572560" - ], - "Tomato_yellow_leaf_curl_virus__Goseong" : [ - "JN680149" - ], - "Shigella_phage_pSf_1" : [ - "NC_021331" - ], - "West_Nile_virus__WNV_1_US_BID_V4205_2002" : [ - "HM756648" - ], - "Rift_Valley_fever_virus_MgH824" : [ - "DQ380144", - "DQ375414", - "DQ380210" - ], - "Simian_T_lymphotropic_virus_3_TGE_2117" : [ - "AY217650" - ], - "Human_parainfluenza_virus_1_HPIV1_USA_38081A_2011" : [ - "KF530212" - ], - "Enterovirus_J_N203_Simian_picornavirus_strain_N203" : [ - "NC_013695" - ], - "Melon_chlorotic_mosaic_virus__VE10_97" : [ - "KF670627", - "KF670626" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19074_M1119_2007" : [ - "KR135302" - ], - "Rabies_virus__SM3849" : [ - "JQ685907" - ], - "Hepatitis_B_virus__HBNAT004" : [ - "KJ638656" - ], - "Tomato_yellow_leaf_curl_China_virus__Bean_YM" : [ - "DQ256460" - ], - "Echovirus_E3_OC10_532" : [ - "AB647321" - ], - "Plum_pox_virus_PPV_D_Ou1" : [ - "AB545926" - ], - "Hepatitis_B_virus__PNF5084" : [ - "KF779354" - ], - "Cucumber_mosaic_virus_satellite_RNA__Tobtree_Tex_clon_1146" : [ - "KJ127541" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZP02_2011" : [ - "JQ693005" - ], - "West_Nile_virus__NY_2003_Westchester" : [ - "DQ164188" - ], - "Bos_grunniens_papillomavirus_type_1_QH_1" : [ - "JX174437" - ], - "Dengue_virus_1__ZJ01_2004" : [ - "AY835999" - ], - "Hepatitis_B_virus__C2S_HB11_0922" : [ - "AB931171" - ], - "BK_polyomavirus__FIN_14" : [ - "AB260031" - ], - "Ngewotan_virus_JKT9982" : [ - "KC807170" - ], - "Human_herpesvirus_3_VarilRix" : [ - "DQ008354" - ], - "Rice_black_streaked_dwarf_virus__Henan_Zhengzhou" : [ - "AF540976" - ], - "West_Nile_virus__WNV_1_US_BID_V4096_2008" : [ - "HM488203" - ], - "Olive_latent_virus_3__CN1_1" : [ - "NC_013920" - ], - "Seal_anellovirus_TFFN_USA_2006" : [ - "NC_015212" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_20__AHEaCV_20_NZ_2283TU_2012" : [ - "NC_026647" - ], - "Beet_mosaic_virus__Inner_Mongolia" : [ - "DQ674263" - ], - "Hepatitis_B_virus__MY081577" : [ - "KJ803806" - ], - "Porcine_circovirus_2__NL_Control_2" : [ - "AY484408" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7778_2009" : [ - "KJ627288" - ], - "Cucumber_mosaic_virus_satellite_RNA__IR_WI" : [ - "JF834526" - ], - "Hepatitis_B_virus__MLT0787" : [ - "KF779293" - ], - "Respiratory_syncytial_virus_B_WI_629_5B_06_07" : [ - "JN032115" - ], - "Carnation_etched_ring_virus__Indian" : [ - "AJ853858" - ], - "Dengue_virus_1__DENV_1_VN_BID_V985_2006" : [ - "EU482529" - ], - "Tomato_yellow_leaf_curl_virus_HNXW" : [ - "JQ004052" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1850_2007" : [ - "FJ562101" - ], - "Cucumber_fruit_mottle_mosaic_virus" : [ - "NC_002633" - ], - "HBV_genotype_A2__Mart_B34" : [ - "HE974371" - ], - "Maize_necrotic_streak_virus" : [ - "NC_007729" - ], - "Human_immunodeficiency_virus_1__J11451" : [ - "EU697908" - ], - "Porcine_epidemic_diarrhea_virus_OH851" : [ - "KJ399978" - ], - "Infectious_salmon_anemia_virus__Scottish" : [ - "AJ242016" - ], - "Faecal_associated_gemycircularvirus_1b__P22" : [ - "NC_025740" - ], - "Porcine_circovirus_2_WuHan" : [ - "FJ598044" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC59BH1_2009" : [ - "JF909125" - ], - "Human_immunodeficiency_virus_1__TW_D118" : [ - "EF078279" - ], - "Vesicular_stomatitis_Indiana_virus__MARMC_from_S_F__Elena_Lab__2001" : [ - "EF197793" - ], - "Pennisetum_mosaic_virus__AZ2" : [ - "JX070149" - ], - "Hepatitis_B_virus__cww1027" : [ - "KC774249" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1702_2007" : [ - "FJ390388" - ], - "Dengue_virus_2__E1434Y12" : [ - "KM279577" - ], - "Porcine_circovirus_2_08QD" : [ - "HQ395020" - ], - "Hepatitis_B_virus__1958_15" : [ - "KR013872" - ], - "Hepatitis_B_virus__HBV219" : [ - "KJ647352" - ], - "Hepatitis_B_virus__STN013" : [ - "GQ358156" - ], - "Murine_astrovirus_STL_1" : [ - "NC_018702" - ], - "Rice_stripe_virus__LQu04" : [ - "AJ871753" - ], - "Hepatitis_C_virus_subtype_6n__KM42" : [ - "DQ278894", - "AY878652" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_FR23_2008" : [ - "KM229798" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2909_2006" : [ - "GQ868613" - ], - "Hepatitis_B_virus__I84" : [ - "FJ562251" - ], - "Human_immunodeficiency_virus_1__15386_1" : [ - "DQ853460" - ], - "Hepatitis_B_virus__DEN6051" : [ - "KF779226" - ], - "Pseudomonas_phage_PT5" : [ - "NC_011105" - ], - "Hepatitis_B_virus__PG_60" : [ - "KF471643" - ], - "Hepatitis_B_virus__HBV_Vi16" : [ - "AB073834" - ], - "Dengue_virus_2__DENV_2_NI_BID_V574_2006" : [ - "EU482687" - ], - "Pepper_leaf_curl_virus__Malaysia" : [ - "AF414287" - ], - "Hepatitis_B_virus__BR12_NORTH" : [ - "KC494394" - ], - "Penaeus_vannamei_nodavirus_Belize" : [ - "NC_014978" - ], - "Hepatitis_C_virus__isolate_EUHK2__euhk2" : [ - "Y12083" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__GS2008" : [ - "EU880431" - ], - "Murine_coronavirus_JHM_WU_wb3" : [ - "JX169867" - ], - "Rabies_virus__CASK2" : [ - "JQ685970" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1_9P20_2010_c1_9P20" : [ - "KF514404" - ], - "Tick_borne_encephalitis_virus_Kavalerovo" : [ - "FJ402885" - ], - "Getah_virus__LEIV_17741_MPR" : [ - "EF631999" - ], - "Fusarium_graminearum_dsRNA_mycovirus_1_DK_21" : [ - "NC_006937" - ], - "Hepatitis_B_virus__G2_6" : [ - "GU815768" - ], - "Sinorhizobium_fredii_HH103" : [ - "NC_016815", - "NC_018294", - "NT_187149", - "NC_018299", - "NT_187147", - "NC_016814", - "NT_187148", - "NC_018303", - "NC_018293", - "NC_016813", - "NC_018304", - "NT_187150", - "NC_016812", - "NT_187146", - "NC_016836" - ], - "Mesta_yellow_vein_mosaic_virus__India_Amadalavalasa_2008___Amadalavalasa_South_India" : [ - "FJ159269" - ], - "Hepatitis_B_virus__SSC116" : [ - "KJ598695" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_94E_551_01_1994" : [ - "KP258702" - ], - "Equid_herpesvirus_4_NS80567" : [ - "NC_001844" - ], - "South_African_cassava_mosaic_virus__M12___M12" : [ - "AJ422132" - ], - "Human_mastadenovirus_D_human_USA_CHOP_LRRI_2010_P20H20F15_49_21_10_VT9763" : [ - "KJ626292" - ], - "Finch_polyomavirus" : [ - "NC_007923" - ], - "Dengue_virus_2__DENV_2_KH_BID_V4269_2008" : [ - "KF955401" - ], - "Human_papillomavirus_type_11__LP12" : [ - "FN907957" - ], - "West_Nile_virus__BSL2_10" : [ - "JF957185" - ], - "Chrysodeixis_chalcites_nucleopolyhedrovirus_TF1" : [ - "JX560539", - "JX560541", - "JX560540", - "JX560542" - ], - "Burkholderia_phage_ST79" : [ - "NC_021343" - ], - "Maize_streak_virus__MSV_A_NG_Ogb3_N30b_2007" : [ - "HQ693390" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1985_2002" : [ - "FJ639674" - ], - "Meleagris_gallopavo_enteric_parvovirus__TuPV_1090" : [ - "KM598420" - ], - "Coxsackievirus_B3_0" : [ - "AY752945" - ], - "Porcine_circovirus_2__PCV2Izn_200_12" : [ - "KJ729073" - ], - "Potato_virus_Y_strain_NTN_NTN_v942490" : [ - "EF016294" - ], - "Digitaria_didactyla_striate_mosaic_virus_DDSMV__AU_QL_99" : [ - "NC_014547" - ], - "Synechococcus_phage_P60" : [ - "NC_003390" - ], - "Nostoc_PCC_7524" : [ - "NC_019684", - "NC_019677", - "NC_019685" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota5" : [ - "KP283410" - ], - "Dengue_virus_1_D1_SG_05K4172DK1_2005" : [ - "EU081261" - ], - "Bhendi_yellow_vein_India_virus__India_Dharwad_OYDWR2_2006___OYDWR2" : [ - "NC_014845" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V395_2006" : [ - "EU256049" - ], - "Coxsackievirus_A4__1047_SH_CHN_2010" : [ - "KJ541164" - ], - "Tomato_leaf_curl_New_Delhi_virus_Chilli_pepper__Bahraich" : [ - "EU309045" - ], - "Hepatitis_B_virus__bne439" : [ - "FN594762" - ], - "Hepatitis_B_virus__1829" : [ - "FJ386642" - ], - "Rift_Valley_fever_virus_200803163" : [ - "JF311387", - "JF311369", - "JF311378" - ], - "Simian_immunodeficiency_virus_17E_Fr" : [ - "AY033146" - ], - "Tomato_yellow_leaf_curl_virus__SDLZ" : [ - "HQ702861" - ], - "Dengue_virus_3__DENV_3_CO_BID_V2986_2005" : [ - "FJ898444" - ], - "Usutu_virus_V10" : [ - "KJ438760" - ], - "East_African_cassava_mosaic_Cameroon_virus__Ivory_Coast" : [ - "AF259896", - "AF259897" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2355_2007" : [ - "FJ639835" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_pool_MEX_MX10_94M6_2010_IE" : [ - "KC344498" - ], - "Trichechus_manatus_papillomavirus_1" : [ - "NC_006563" - ], - "Pea_early_browning_virus" : [ - "X78455" - ], - "Human_papillomavirus_type_18__Qv03814" : [ - "EF202154" - ], - "Human_immunodeficiency_virus_1__DR1712" : [ - "AB604947", - "AB604946" - ], - "Rabies_virus_CYN1009D" : [ - "JQ730682" - ], - "Hepatitis_B_virus__C3_10" : [ - "GU815634" - ], - "Hepatitis_B_virus__S5_2" : [ - "EU916220" - ], - "Dengue_virus_1_D1_SG_05K3318DK1_2005" : [ - "EU081239" - ], - "Cucumber_mosaic_virus_satellite_RNA_2m" : [ - "EU022373" - ], - "Human_bocavirus__2010GZ5497" : [ - "KJ684074" - ], - "Erwinia_phage_PEp14" : [ - "NC_016767" - ], - "Banana_bunchy_top_virus__MY01" : [ - "AB252639", - "AB252642" - ], - "Dengue_virus_2__DENV_2_NI_BID_V4639_2005" : [ - "HQ541794" - ], - "Sugarcane_streak_mosaic_virus__JP1" : [ - "JF488064" - ], - "Sida_yellow_vein_alphasatellite__India_Okra_OK2_2013" : [ - "KM108329" - ], - "Sindbis_virus_Lovanger" : [ - "KF737350" - ], - "Coxsackievirus_A13_ARG98_10614" : [ - "DQ995636" - ], - "Gemycircularvirus_BZ1_BZ1" : [ - "KP133078" - ], - "Johnsongrass_chlorotic_stripe_mosaic_virus" : [ - "NC_005287" - ], - "Porcine_circovirus_2__A4133" : [ - "JF317568" - ], - "Haemophilus_phage_SuMu" : [ - "NC_019455" - ], - "West_Nile_virus__WNV_1_US_BID_V6444_2002" : [ - "KJ501301" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P10" : [ - "FJ548854" - ], - "Hepatitis_B_virus_1134_8" : [ - "KR014018" - ], - "Human_immunodeficiency_virus_1__99HYH2" : [ - "JQ316129" - ], - "Bean_golden_mosaic_virus__BR_Rec2_05" : [ - "KJ939711" - ], - "Papaya_leaf_curl_China_virus__FQ1" : [ - "AM691554" - ], - "Hepatitis_E_virus_E097_OSA05C" : [ - "AB369691" - ], - "Dengue_virus_1__DENV_1_VN_BID_V803_2006" : [ - "EU482797" - ], - "Hepatitis_B_virus__HBV75" : [ - "KC875333" - ], - "Zucchini_yellow_mosaic_virus__E82" : [ - "JN192413" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_404N3__404N3" : [ - "JN819497" - ], - "Japanese_encephalitis_virus_CC27_L1" : [ - "AY303795" - ], - "Human_herpesvirus_5_HAN22" : [ - "JX512206" - ], - "Cotton_leaf_curl_alphasatellite__IARI_45" : [ - "KM070823", - "KM070824" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2385_2003" : [ - "GQ868640" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD187_2013" : [ - "KM229844" - ], - "Crimean_Congo_hemorrhagic_fever_virus_8402_from_China_Xin_Jiang_Province_1984" : [ - "AJ010649" - ], - "Dengue_virus_3__DENV_3_US_BID_V1490_2003" : [ - "EU726769" - ], - "Clostridium_phage_phiCP9O" : [ - "JF767210" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9412_2013" : [ - "KJ643493" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_G94" : [ - "LN846605" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_SCC_13_0679_001" : [ - "KF385417" - ], - "Porcine_circovirus_2_09HuN" : [ - "HQ395036" - ], - "WU_Polyomavirus_FZ18" : [ - "FJ890981" - ], - "Human_poliovirus_1_NIE1218346" : [ - "KJ170496" - ], - "Newcastle_disease_virus__Chicken_China_Hebei_01_2010" : [ - "KC542906" - ], - "Hepatitis_C_virus_subtype_1a__DN24" : [ - "EU781818" - ], - "Paenibacillus_terrae_HPL_003" : [ - "NC_016641" - ], - "Staphylococcus_lugdunensis_N920143" : [ - "NC_017353" - ], - "Hepatitis_B_virus__Pkst7912" : [ - "AB583680" - ], - "Rhinovirus_C_024" : [ - "NC_009996" - ], - "Hepatitis_B_virus__AIDS41" : [ - "JQ801493" - ], - "Cyprinid_herpesvirus_3_TUMST1" : [ - "AP008984" - ], - "SARS_coronavirus_SinP2" : [ - "AY559089" - ], - "Ruegeria_pomeroyi_DSS_3" : [ - "NC_006569", - "NC_003911" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7685_2012" : [ - "KF973470" - ], - "Cotton_leaf_curl_betasatellite__Abohar_2011" : [ - "KJ614435" - ], - "Methanothermobacter_marburgensis_Marburg" : [ - "NC_014408", - "NC_014409" - ], - "Hepatitis_B_virus__MLT0756" : [ - "KF779290" - ], - "Hepatitis_B_virus__QH_90" : [ - "JF491453" - ], - "Porcine_circovirus_2__SH1104" : [ - "KF850466" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K67" : [ - "AJ717526" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2278_2001" : [ - "FJ687434" - ], - "Human_rhinovirus_A40_ATCC_VR_341" : [ - "FJ445129" - ], - "JC_polyomavirus__JCV161FLC_25" : [ - "JF424933" - ], - "South_African_cassava_mosaic_virus__MG_MG336A1_10" : [ - "KJ887698" - ], - "Fowlpox_virus_isolate_HP_438_Munich__HP1_438_Munich" : [ - "AJ581527" - ], - "Dengue_virus_2__DENV_2_US_BID_V1040_2006" : [ - "EU482552" - ], - "West_Nile_virus__WNV_1_US_BID_V5201_2006" : [ - "JF920731" - ], - "Abutilon_mosaic_virus_IN_UDG_JAX_2010" : [ - "JN236209" - ], - "Newcastle_disease_virus__Belize__Spanish_Lookout__4224_3_2008" : [ - "KF767466" - ], - "Norovirus_Hu_GII_4_NIHIC11_3_2013_USA_Hu_GII_4_NIHIC11_3_2013_USA" : [ - "KF712504" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4035_2008" : [ - "HM488256" - ], - "Human_immunodeficiency_virus_1__CB619" : [ - "AY900576" - ], - "Dengue_virus_2_DENV_2_PR_25DN_1994" : [ - "GQ398299" - ], - "Human_immunodeficiency_virus_1__98USHVTN941c1" : [ - "AY560110" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4859_2009" : [ - "HQ705609" - ], - "Infectious_bronchitis_virus_ck_CH_LGD_090907" : [ - "KP118894" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2085_2005" : [ - "GQ868628" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL154A" : [ - "AB985569" - ], - "Tomato_spotted_wilt_virus__CA_5" : [ - "AY744483", - "AY744472" - ], - "Porcine_circovirus_2_47_Bhu" : [ - "KM975683" - ], - "Bifidobacterium_asteroides_PRL2011" : [ - "NC_018720" - ], - "Coxsackievirus_A16__CVA16_SZ29_CHN_2014" : [ - "KM215267" - ], - "Porcine_circovirus_2_FMV05_7389" : [ - "DQ220734" - ], - "Marburg_marburgvirus__MARV_R_aegyptiacus_tc_UGA_2009_1328_Qbat" : [ - "JX458858" - ], - "Loktanella_phage_pCB2051_A_pCB2051_A" : [ - "NC_020853" - ], - "Canine_parvovirus_2c__UY242" : [ - "KM457120" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD203_2013" : [ - "KM229855" - ], - "Puumala_virus_PUUV_Mg9_HungaryTR17_00" : [ - "FN377821" - ], - "Cyclovirus_NGchicken15_NGA_2009__NGchicken15" : [ - "NC_014930" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_KWT02_2011" : [ - "KM188459" - ], - "Hepatitis_B_virus__I_T27" : [ - "GU456670" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V127_1992" : [ - "EU155328" - ], - "Hepatitis_B_virus__EI03188" : [ - "DQ315783" - ], - "Enterovirus_A71__ENT_PM_SHA52" : [ - "AM396584" - ], - "Chilli_leaf_curl_betasatellite__India_Palampur_2008" : [ - "FM877803" - ], - "JC_polyomavirus__MO_4" : [ - "AB262397" - ], - "Wheat_dwarf_virus__SXYL07_2" : [ - "KJ536121" - ], - "Yellow_fever_virus__ArD149815" : [ - "JX898875" - ], - "Porcine_epidemic_diarrhea_virus_USA_Wisconsin55_2013" : [ - "KJ645653" - ], - "Chickpea_chlorosis_Australia_virus__41" : [ - "KC172692" - ], - "Hepatitis_B_virus__MY081397" : [ - "KJ803820" - ], - "Hepatitis_B_virus__HBV_AN28" : [ - "AB049609" - ], - "Human_astrovirus_4__Goiania_GO_12_95_Brazil" : [ - "DQ070852" - ], - "Circovirus_like_genome_RW_B_RW_B" : [ - "NC_013024" - ], - "Potato_virus_X__GAF224" : [ - "KJ534602" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7657_2012" : [ - "KF973479" - ], - "Dengue_virus_2__DENV_2_VN_BID_V925_2006" : [ - "EU482470" - ], - "Bovine_parainfluenza_virus_3_BN_CE" : [ - "AB770485" - ], - "Small_begomovirus_associated_satellite__wf_S58" : [ - "KJ859213" - ], - "Coxsackievirus_B5__19CSF" : [ - "JX017381" - ], - "Bean_golden_mosaic_virus__BR_Par11_12" : [ - "KJ939815" - ], - "Watermelon_mosaic_virus__CHI02_481" : [ - "EU660582" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V408_2006" : [ - "EU255939" - ], - "Pseudomonas_phage_F10" : [ - "NC_007805" - ], - "Hepatitis_B_virus_28025" : [ - "EU414135" - ], - "Hepatitis_B_virus__MY403021" : [ - "KJ803818" - ], - "Torque_teno_virus__TTV_HD23f__rheu214" : [ - "FR751505" - ], - "Newcastle_disease_virus_Layer_China_Chang_an_10" : [ - "KP027404" - ], - "Hepatitis_B_virus__C_PNG_143PF_2005" : [ - "HQ700526" - ], - "Tomato_yellow_leaf_curl_virus__Pyeongtaek1" : [ - "JX961668" - ], - "Human_papillomavirus_type_35__Qv19083" : [ - "HQ537708" - ], - "Enterobacter_R4_368" : [ - "NC_021500", - "NC_021492" - ], - "Bluetongue_virus__BTV_2_SAD2001_02__S_5" : [ - "AM773706" - ], - "Hepatitis_B_virus__HBV57" : [ - "KC875290" - ], - "Ntaya_virus_Original" : [ - "KF917539" - ], - "Lily_mottle_virus_LMoV_DL" : [ - "HM222521" - ], - "Human_herpesvirus_5_BE_10_2010" : [ - "KC519320" - ], - "Fowl_aviadenovirus_C__ON1" : [ - "NC_015323" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__SD_WM_tom3_11" : [ - "KC763633" - ], - "Desulfotalea_psychrophila_LSv54" : [ - "NC_006139", - "NC_006138", - "NC_006140" - ], - "Lettuce_mosaic_virus__CL246" : [ - "KJ161177" - ], - "Bean_common_mosaic_virus_NL_1n" : [ - "KF114860" - ], - "Foot_and_mouth_disease_virus___type_A_A28_Turkey_a28_Turkey_iso44" : [ - "AY593772" - ], - "Human_immunodeficiency_virus_1__ZM246F_flD5" : [ - "FJ496194" - ], - "Soybean_mosaic_virus_G7A" : [ - "FJ640982" - ], - "Clostridium_perfringens_ATCC_13124" : [ - "NC_008261" - ], - "Tomato_ringspot_virus__13C280" : [ - "KM083890", - "KM083891" - ], - "Great_Island_virus__CanAr_42" : [ - "NC_014523", - "NC_014524", - "NC_014529", - "NC_014525", - "NC_014522", - "NC_014527", - "NC_014530", - "NC_014528", - "NC_014531", - "NC_014526" - ], - "Ngari_virus_Adrar" : [ - "KJ716850", - "KJ716848" - ], - "Human_immunodeficiency_virus_1__04ZASK200B1" : [ - "DQ396383" - ], - "Synechococcus_phage_S_PM2" : [ - "NC_006820" - ], - "Mycoplasma_cynos_C142" : [ - "NC_019949" - ], - "Cotton_leaf_curl_Rajasthan_virus__Uf_1" : [ - "KM096468" - ], - "Rubella_virus_RVi_Daly_City_CA_USA_97_1j_CRS" : [ - "JN635291" - ], - "Tomato_yellow_leaf_curl_virus___Il_IL_16_6" : [ - "LN846616" - ], - "Rice_stripe_virus" : [ - "RCSSEG4", - "RCSRSVAS3" - ], - "Norovirus_Hu_GII_4_Niigata5_2008_JP_Hu_GII_4_Niigata5_2008_JP" : [ - "AB541318" - ], - "Newcastle_disease_virus__98_1249" : [ - "AY935492" - ], - "Enterobacteria_phage_Chi" : [ - "NC_021315" - ], - "Cellulophaga_phage_phi12_3_phi12_3" : [ - "KC821615" - ], - "Cucumber_mosaic_virus_Y" : [ - "D83958", - "MCVYRNA1", - "MCVYRNA2" - ], - "Cucumber_mosaic_virus__Kanpur" : [ - "GU906293" - ], - "Porcine_circovirus_2_LN08" : [ - "FJ608545" - ], - "Human_adenovirus_8__8b" : [ - "AB448768" - ], - "Human_immunodeficiency_virus_1__97VNHCM343" : [ - "FJ185243" - ], - "Norovirus_Hu_GII_4_Toyama3_2008_JP_Hu_GII_4_Toyama3_2008_JP" : [ - "AB541358" - ], - "Simbu_virus__SA_Ar_53" : [ - "NC_018477", - "NC_018478", - "NC_018476" - ], - "Tula_virus_Tula_53Ma_87" : [ - "Z30942" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2182_2001" : [ - "FJ639753" - ], - "Thioalkalivibrio_sulfidophilus_HL_EbGr7" : [ - "NC_011901" - ], - "Hepatitis_B_virus__C84" : [ - "AF458664" - ], - "Dengue_virus_3__DENV_3_US_BID_V1091_2004" : [ - "EU529704" - ], - "Turnip_mosaic_virus__NZ412B" : [ - "AB989649" - ], - "Grapevine_virus_A__GTR1_1" : [ - "DQ787959" - ], - "Rabies_virus_HN10" : [ - "EU643590" - ], - "Pseudomonas_entomophila_L48" : [ - "NC_008027" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1628_2006" : [ - "FJ024444" - ], - "Mayaro_virus" : [ - "NC_003417" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4973_1" : [ - "KR105286" - ], - "Human_rhinovirus_A88" : [ - "DQ473504" - ], - "Macroptilium_yellow_vein_virus__BR_Pai32_11" : [ - "KJ939912" - ], - "Japanese_encephalitis_virus__GX0519" : [ - "JN381835" - ], - "Human_immunodeficiency_virus_1__03ZAPS155MB1" : [ - "DQ396371" - ], - "Pepper_leaf_curl_Bangladesh_virus" : [ - "NC_004192" - ], - "Hepatitis_B_virus__WHKML" : [ - "JN257171" - ], - "Dengue_virus_3_D3_SG_05K871DK1_2005" : [ - "EU081192" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1113_2001" : [ - "EU529684" - ], - "Adeno_associated_virus___8" : [ - "NC_006261" - ], - "Small_begomovirus_associated_satellite__Sa20_S10" : [ - "KJ859141" - ], - "Listeria_phage_LMSP_25_LMSP_25" : [ - "NC_024360" - ], - "West_Nile_virus__1048813" : [ - "KC601756" - ], - "West_Nile_virus__WNV_1_US_BID_V6661_2004" : [ - "KJ501520" - ], - "Ovine_hungarovirus_OHUV1_2009_HUN_OHUV1_2009_HUN" : [ - "HM153767" - ], - "Dengue_virus_1__30597_07" : [ - "HM469967" - ], - "Human_adenovirus_21_NHRC_71252" : [ - "KJ364585" - ], - "Hop_mosaic_virus" : [ - "NC_010538" - ], - "Porcine_circovirus_2_PCV2_SD" : [ - "JF827599" - ], - "Japanese_encephalitis_virus__GSBY0804" : [ - "JN381844" - ], - "Lactobacillus_phage_LF1" : [ - "NC_019486" - ], - "Bean_pod_mottle_virus_K_Hopkins1" : [ - "AF394609", - "AF394608" - ], - "Hepatitis_B_virus__Yamagata_1" : [ - "AB010289" - ], - "Hepatitis_B_virus__Tibet_70" : [ - "HM750150" - ], - "Eubacterium_limosum_KIST612" : [ - "NC_014624" - ], - "Malvastrum_yellow_vein_betasatellite__SC224_3" : [ - "JX679254" - ], - "Dengue_virus_1__DENV_1_TH_BID_V2277_2001" : [ - "FJ687433" - ], - "Hepatitis_B_virus__S1049_4" : [ - "FJ787454" - ], - "Newcastle_disease_virus_DE_R49_99" : [ - "DQ097393" - ], - "Mycobacterium_phage_Dylan" : [ - "NC_022325" - ], - "Sri_Lankan_cassava_mosaic_virus__Salem" : [ - "AJ607394" - ], - "BK_polyomavirus__NEB_27" : [ - "AB365143" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP01224_2012" : [ - "KJ672583" - ], - "Enterovirus_A71__7F_AUS_6_99" : [ - "DQ341357" - ], - "Columbid_circovirus__PL94" : [ - "KF738872" - ], - "Bean_golden_mosaic_virus__BR_Sag2_12" : [ - "KJ939780" - ], - "Feline_coronavirus_UU11_UU11" : [ - "FJ938052" - ], - "Legionella_pneumophila_Hextuple_2q" : [ - "NC_017525" - ], - "Porcine_circovirus_2__HD1_9" : [ - "JQ181586" - ], - "Pepper_ringspot_virus_CAM" : [ - "NC_003669" - ], - "Pepino_mosaic_virus_US1" : [ - "FJ940225", - "AY509926" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PGM_81A_2008" : [ - "HM748919" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2467_2007" : [ - "FJ873810" - ], - "Porcine_circovirus_2__Uy94" : [ - "KP867049" - ], - "Sheeppox_virus_NISKHI_NISKHI" : [ - "AY077834" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Kah_T9X_Cuc_07" : [ - "FJ660434" - ], - "Hepatitis_B_virus__S1649" : [ - "FJ386689" - ], - "Maize_streak_virus__MSV_A_ZM_Lit_Z14_2008" : [ - "HQ693464" - ], - "Stenotrophomonas_maltophilia_K279a" : [ - "NC_010943" - ], - "Papaya_leaf_curl_alphasatellite" : [ - "NC_023292" - ], - "Human_papillomavirus_type_31__QV14117" : [ - "HQ537674" - ], - "Quang_Binh_virus__VN180" : [ - "NC_012671" - ], - "Hepatitis_B_virus__FMD69" : [ - "GU332691" - ], - "Japanese_encephalitis_virus_Ling" : [ - "JEVLINGCG" - ], - "Coxsackievirus_B5__03001N" : [ - "JX017383" - ], - "Enterovirus_A71_TW_70516_08" : [ - "GQ231933" - ], - "Azoarcus_BH72" : [ - "NC_008702" - ], - "Mycobacterium_phage_Gumball" : [ - "NC_011290" - ], - "Canine_papillomavirus_4__pug2006" : [ - "NC_010226" - ], - "Foot_and_mouth_disease_virus___type_O__12LPN1" : [ - "JX066664" - ], - "West_Nile_virus__WNV_1_US_BID_V6672_2006" : [ - "KJ501521" - ], - "Potato_virus_Y_Ordinary_ONGOB6" : [ - "AB711152" - ], - "Human_rotavirus_C_BCN21" : [ - "AM118023", - "AM118020", - "AM118026" - ], - "Human_immunodeficiency_virus_1__671_00T93" : [ - "AY423382" - ], - "Hepatitis_B_virus__G3_9" : [ - "GU815783" - ], - "Hepatitis_B_virus__cxa1087" : [ - "KC774287" - ], - "Dengue_virus_2__37473_BR_PE_97" : [ - "JX669483" - ], - "Kenaf_leaf_curl_virus__India_Bahraich_2007___North_India__Bahraich" : [ - "NC_010435" - ], - "Adoxophyes_honmai_entomopoxvirus__L___Tokyo" : [ - "NC_021247" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_132_1" : [ - "KC106646" - ], - "Tomato_chino_La_Paz_virus__Solanum_MM1" : [ - "DQ347948" - ], - "Human_immunodeficiency_virus_1__99ZALT42" : [ - "EU293448" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7710_2012" : [ - "KJ189356" - ], - "Maize_streak_virus__MSV_A_NG_Odo_N18_2006" : [ - "HQ693387" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8486_2001" : [ - "KJ627707" - ], - "Rift_Valley_fever_virus_Sudan_2V_2007" : [ - "JQ820483", - "JQ820472", - "JQ820490" - ], - "Tomato_spotted_wilt_virus__BS97" : [ - "AJ418777" - ], - "Wheat_yellow_mosaic_virus__Yaan" : [ - "AJ239039" - ], - "Human_immunodeficiency_virus_1__93br020" : [ - "AF005494" - ], - "Hepatitis_B_virus__Leb22" : [ - "JN642134" - ], - "Hepatitis_B_virus__CONTROL24" : [ - "JQ801516" - ], - "Dengue_virus_1__01096_07" : [ - "HM469966" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PR_45A_2008" : [ - "HM748936" - ], - "Hepatitis_B_virus__252_2" : [ - "EU871977" - ], - "Norovirus_Hu_GII_20407_2010_VNM_Hu_GII_20407_2010_VNM" : [ - "KC409295" - ], - "Cyclovirus_VN__hcf1" : [ - "NC_021707" - ], - "MW_polyomavirus_WD976" : [ - "JQ898292" - ], - "Naranjal_virus_25008" : [ - "KF917538" - ], - "Halorubrum_pleomorphic_virus_2" : [ - "NC_017087" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_HND_67U225_1967_IE" : [ - "KC344444" - ], - "Maize_streak_virus__MSV_A_ZM_Chi7_Z11_2008" : [ - "HQ693458" - ], - "Serratia_ATCC_39006" : [ - "NC_022268" - ], - "Salmonella_enterica_serovar_Bareilly_CFSAN000189" : [ - "NC_021817", - "NC_021844" - ], - "Simian_T_lymphotropic_virus_1_F88_R2_baboon_F88395" : [ - "JX987040" - ], - "Digitaria_ciliaris_striate_mosaic_virus__AU_QG7_2011" : [ - "JQ948090" - ], - "Hepatitis_B_virus__Pkst8216" : [ - "AB583681" - ], - "Hepatitis_B_virus__17993" : [ - "AY217367" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K12" : [ - "AJ717561" - ], - "Puumala_virus_Udmurtia_894Cg_91" : [ - "Z21497" - ], - "Synechococcus_phage_ACG_2014b__Syn7803US54" : [ - "KJ019109" - ], - "Hepatitis_B_virus__YOGHhbv132" : [ - "AB713532" - ], - "Okra_yellow_crinkle_virus__Mali" : [ - "EU024118" - ], - "Human_adenovirus_21_CDC_V2148A" : [ - "KJ364588" - ], - "Ralstonia_phage_RSY1" : [ - "NC_025115" - ], - "Hepatitis_B_virus__HBVFLS46" : [ - "JX154580" - ], - "Maize_streak_virus___A_Km__MSV_Km" : [ - "AF395891" - ], - "Equus_ferus_caballus_papillomavirus_type_5" : [ - "NC_020084" - ], - "Human_rotavirus_A__neo25" : [ - "AJ427314" - ], - "Sugarcane_mosaic_virus__Beijing" : [ - "AY042184" - ], - "Nanovirus_like_particle__Lucknow" : [ - "JX512905" - ], - "Porcine_circovirus_2_PCV2_herd_2" : [ - "EU136714" - ], - "Eastern_equine_encephalitis_virus_EEEV_Quiscalus_USA_I01_754_A_2001" : [ - "KJ469591" - ], - "Squash_leaf_curl_virus__JO1_132" : [ - "KM595167" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ24AY3_2009" : [ - "JF909209" - ], - "Peristrophe_mosaic_virus__11B_1_C1206" : [ - "NC_019024" - ], - "Mycoplasma_pneumoniae_309" : [ - "NC_016807" - ], - "Foot_and_mouth_disease_virus___type_O__TUR_1086_2010" : [ - "JX040498" - ], - "Hepatitis_B_virus__A1_50086" : [ - "FJ692581" - ], - "Macaque_simian_foamy_virus" : [ - "JN801175" - ], - "Wheat_dwarf_virus_barley_strain_Leutewitz" : [ - "HG422313", - "HG422312" - ], - "Chicken_anemia_virus_LF4" : [ - "AY839944" - ], - "Human_papillomavirus_type_45__RW632" : [ - "KC470252" - ], - "Maize_streak_virus__UWak_1" : [ - "EF547063" - ], - "Cyprinid_herpesvirus_3_KHV_U" : [ - "NC_009127" - ], - "Tomato_yellow_leaf_curl_virus__Gwangju_30" : [ - "HM856913" - ], - "Pseudocowpox_virus_VR634" : [ - "NC_013804" - ], - "Human_immunodeficiency_virus_1__05BRRJ055" : [ - "EU735537" - ], - "Merkel_cell_polyomavirus__14b" : [ - "HM011545" - ], - "Bdellovibrio_phage_phiMH2K" : [ - "NC_002643" - ], - "Dengue_virus_1__DENV_1_VN_BID_V984_2006" : [ - "EU482528" - ], - "Human_mastadenovirus_D_human_USA_CL_48_1991_8_P8_H8F_F53" : [ - "KF268118" - ], - "Paspalum_dilatatum_striate_mosaic_virus__AU_QG46_2011" : [ - "JQ948087" - ], - "Exiguobacterium_antarcticum_B7" : [ - "NC_018665" - ], - "Hepatitis_B_virus__EN46_LC" : [ - "JN664938" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA105" : [ - "KF670672" - ], - "South_African_cassava_mosaic_virus__MG_MG122B2_09" : [ - "KJ887657" - ], - "Streptococcus_thermophilus_JIM_8232" : [ - "NC_017581" - ], - "Dengue_virus_2__DENV_2_NI_BID_V648_2005" : [ - "FJ898435" - ], - "Porcine_circovirus_2_AH" : [ - "HM038030" - ], - "Simian_retrovirus_4_SRV4_TEX_2009_V3" : [ - "FJ979639" - ], - "Psychromonas_ingrahamii_37" : [ - "NC_008709" - ], - "Hepatitis_B_virus__2340_N_BRA" : [ - "KJ854699" - ], - "Hepatitis_B_virus_b_dono12" : [ - "AB090270" - ], - "Rhizobium_phage_RHEph06" : [ - "NC_027296" - ], - "Papaya_ringspot_virus_Korean_watermelon" : [ - "AB369277" - ], - "Cryphonectria_parasitica_bipartite_mycovirus_1_09269" : [ - "NC_021222", - "NC_021223" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9431_2013" : [ - "KJ643508" - ], - "Tomato_ringspot_virus__GYV_2014" : [ - "KM083892" - ], - "Banana_bunchy_top_virus__TA2" : [ - "FJ859726", - "FJ859739" - ], - "Streptococcus_agalactiae_GD201008_001" : [ - "NC_018646" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__LMY" : [ - "DQ473474" - ], - "Human_immunodeficiency_virus_2__BEN" : [ - "NC_001722" - ], - "Hepatitis_B_virus__I68" : [ - "FJ562242" - ], - "Tomato_begomovirus_satellite_DNA_beta" : [ - "NC_004904" - ], - "Hepatitis_B_virus_1149_12" : [ - "KR013829" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y89" : [ - "AJ579358" - ], - "Hepatitis_B_virus__Tibet_1888" : [ - "KP276255" - ], - "Equus_caballus_papillomavirus_3__Haflinger" : [ - "NC_017862" - ], - "Tomato_spotted_wilt_virus__p105" : [ - "KJ575621", - "KJ575620" - ], - "Temperate_fruit_decay_associated_virus__MFBpe3" : [ - "KR134327" - ], - "Hepatitis_B_virus__N202M_e403" : [ - "KJ173418" - ], - "Porcine_circovirus_2_NB0701" : [ - "EU727546" - ], - "Sulfolobus_spindle_shaped_virus_1" : [ - "NC_001338" - ], - "Sweet_potato_leaf_curl_virus_Spain__ES_CI_BG13_02" : [ - "EU856366" - ], - "Hepatitis_B_virus__EICI_10" : [ - "KF679994" - ], - "West_Nile_virus_1_TX_2002_1" : [ - "DQ164198" - ], - "Maize_streak_virus__MSV_A_NG_Igb_N12_2006" : [ - "HQ693381" - ], - "Hepatitis_B_virus__C105" : [ - "EU939572", - "EU859944" - ], - "Cucurbit_aphid_borne_yellows_virus__CABYV_FJ" : [ - "GQ221223" - ], - "Hepatitis_B_virus__259" : [ - "JQ040140" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1561" : [ - "KR534563" - ], - "Kedougou_virus_DakAar_D1470" : [ - "NC_012533" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K19" : [ - "AJ704942", - "AJ717562" - ], - "Eel_virus_European_X__153311" : [ - "NC_022581" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dav_alpha_13" : [ - "EU384626" - ], - "Hepatitis_B_virus__HBV_15122" : [ - "AF121244" - ], - "Human_papillomavirus_type_178" : [ - "NC_023891" - ], - "Tomato_mild_mosaic_virus__BR_Pda58_05" : [ - "NC_010834", - "NC_010833" - ], - "Squash_leaf_curl_virus__IL3_90" : [ - "KM595117" - ], - "Enterovirus_A71_BJ08_Z025_5" : [ - "FJ606450" - ], - "BK_polyomavirus__J2B_13" : [ - "AB301102" - ], - "Vaccinia_virus_Ankara_chorioallantois_vaccinia_virus_Ankara__CVA__BN" : [ - "AM501482" - ], - "Dengue_virus_2__FGU_Apr_02" : [ - "EU920835" - ], - "African_green_monkey_simian_foamy_virus_LK_3" : [ - "NC_010820" - ], - "Asparagus_virus_2" : [ - "NC_011809", - "NC_011808" - ], - "Hepatitis_B_virus__bxn1016" : [ - "KC774416" - ], - "Pepper_yellow_vein_Mali_virus" : [ - "NC_005347" - ], - "Turnip_mosaic_virus__ITA8" : [ - "AB701725" - ], - "Cotton_leaf_curl_Kokhran_virus_Pakistan_clc806b" : [ - "NC_004583" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09SC" : [ - "JF268672" - ], - "Human_papillomavirus_type_68__Qv19111" : [ - "KC470273" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC15B21_2008" : [ - "JF909093" - ], - "Tomato_yellow_leaf_curl_virus__TYLCV_Mld_JO_Ju_08" : [ - "GQ861427" - ], - "West_Nile_virus__WNV_1_US_BID_V4576_2003" : [ - "HQ671700" - ], - "Sweet_potato_feathery_mottle_virus__IS90" : [ - "KP115610" - ], - "Euphorbia_yellow_mosaic_virus__EuYMV__BR_768Cro3b_08" : [ - "JX415191" - ], - "Tomato_yellow_leaf_curl_virus__LNPJS" : [ - "KJ754193" - ], - "Lymantria_dispar_iflavirus_1__Ames" : [ - "NC_024497" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7593_2007" : [ - "KJ189327" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3973_2008" : [ - "GU131747" - ], - "Leek_yellow_stripe_virus__1A3l" : [ - "AB194623" - ], - "Tomato_spotted_wilt_virus" : [ - "AB190813", - "AB010996", - "AB190819", - "AB190818", - "NC_002050" - ], - "Hepatitis_B_virus__CONTROL19" : [ - "JQ801511" - ], - "Western_equine_encephalitis_virus_CO921356" : [ - "KJ554979" - ], - "Hepatitis_B_virus__dxn1079" : [ - "KC774489" - ], - "Porcine_parvovirus__HN_G" : [ - "KF429252" - ], - "Human_papillomavirus_type_39__BF182" : [ - "KC470248" - ], - "West_Nile_virus_1_GA_2002_1" : [ - "DQ164196" - ], - "Human_metapneumovirus_HMPV_AUS_172832103_2004_A" : [ - "KC403978" - ], - "Human_immunodeficiency_virus_1__CANC2FULL" : [ - "AY779559" - ], - "Rhynchosia_golden_mosaic_virus_Soybean_Sinaloa_SO_1045" : [ - "NC_010293" - ], - "Bluetongue_virus_4913_02" : [ - "AY775153" - ], - "Ageratum_yellow_vein_virus_satellite_DNA_beta__Ishigaki" : [ - "AB306522" - ], - "Ageratum_yellow_vein_China_betasatellite__G86" : [ - "AJ971259" - ], - "JC_polyomavirus__ML_6" : [ - "AB048581" - ], - "Tomato_yellow_leaf_curl_China_virus__Y278" : [ - "AM980509" - ], - "BK_polyomavirus_GRC_4" : [ - "AB269830" - ], - "Human_papillomavirus_type_52__Rw846" : [ - "HQ537735" - ], - "Avian_paramyxovirus_6_duck_Italy_4524_2_07" : [ - "GQ406232" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM121" : [ - "KM233044" - ], - "Human_respiratory_syncytial_virus_07_000431" : [ - "JX576751" - ], - "East_African_cassava_mosaic_virus__CF_CF54B_07" : [ - "KM885990" - ], - "JC_polyomavirus__JCV135_40" : [ - "JF424865" - ], - "Streptococcus_pasteurianus_ATCC_43144" : [ - "NC_015600" - ], - "Pennisetum_mosaic_virus__C" : [ - "DQ977725" - ], - "Chickpea_chlorosis_virus_A__2683D" : [ - "KC172685" - ], - "Hepatitis_B_virus_HCC_2_NY" : [ - "AB113876" - ], - "Foot_and_mouth_disease_virus___type_O__Nari_UVAS_Pak_2005" : [ - "KT003716" - ], - "Porcine_epidemic_diarrhea_virus__ISU13_19338E_IN_homogenate" : [ - "KF650370" - ], - "Haemophilus_parasuis_ZJ0906" : [ - "NC_021521" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7346_2002" : [ - "KF973329" - ], - "Rubella_virus_TO_336_wild_progenitor" : [ - "AB047330" - ], - "Eupatorium_yellow_vein_betasatellite__Fukuoka_MNS2" : [ - "NC_004515" - ], - "Salmonella_enterica_serovar_Dublin_CT_02021853" : [ - "NC_011204", - "NC_011205" - ], - "Pennisetum_mosaic_virus__CD1" : [ - "JX070152" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_49_2013" : [ - "KM042386" - ], - "Hepatitis_B_virus__349_SE_BRA" : [ - "KJ854701" - ], - "Tropheryma_whipplei_TW08_27" : [ - "NC_004551" - ], - "Measles_virus_strain_Edmonston_Zagreb__EZD24_2_99" : [ - "AY486084" - ], - "Hepatitis_B_virus__A1_7" : [ - "GU815554" - ], - "Maize_streak_virus__MSV_B1_Za_RawJ_g23_2006" : [ - "EU628599" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_PL97_1_LP1" : [ - "AY612613" - ], - "Hepatitis_B_virus__C70" : [ - "EU939561" - ], - "Hepatitis_B_virus__S1244" : [ - "FJ386680" - ], - "Human_bocavirus_CBJ020" : [ - "KM464729" - ], - "Chlamydia_trachomatis_RC_J_966" : [ - "NC_021898" - ], - "Newcastle_disease_virus__NDV01" : [ - "FJ386392" - ], - "Hepatitis_B_virus__F2_11" : [ - "GU815724" - ], - "Tomato_leaf_curl_betasatellite__To_Ag_1" : [ - "JN638434" - ], - "Tomato_leaf_curl_China_betasatellite__Y265" : [ - "AM260723" - ], - "Enterovirus_A71__02_0_065" : [ - "KP691659" - ], - "BK_polyomavirus__RYU_1" : [ - "AB211376" - ], - "Bluetongue_virus_9__11920" : [ - "DQ191282" - ], - "West_Nile_virus__WNV_1_US_BID_V4092_2007" : [ - "HM488200" - ], - "West_Nile_virus__WNV_1_US_BID_V6687_2004" : [ - "KJ501420" - ], - "Monkeypox_virus__DRC_07_0514" : [ - "JX878428" - ], - "JC_polyomavirus__MMW_9" : [ - "AB362364" - ], - "Alteromonas_macleodii__Aegean_Sea_MED64" : [ - "NC_023045" - ], - "East_African_cassava_mosaic_virus__EACMV__K211" : [ - "AJ704935" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3889_2008" : [ - "GU131719" - ], - "Dengue_virus_2__DF670" : [ - "FM210219" - ], - "Lily_symptomless_virus" : [ - "NC_005138" - ], - "Alkhumra_hemorrhagic_fever_virus_200201036" : [ - "JF416952" - ], - "Maize_streak_virus__MSV_A4_Za_RosE_g131_2006" : [ - "EU628575" - ], - "Thermaerobacter_marianensis_DSM_12885" : [ - "NC_014831" - ], - "Allpahuayo_mammarenavirus_CLHP_2472" : [ - "NC_010253", - "NC_010249" - ], - "Aichi_virus_1" : [ - "AB040749" - ], - "Dengue_virus_1__DENV_1_IND_715393_1971" : [ - "JQ922546" - ], - "Dengue_virus_1__DENV_1_VN_BID_V965_2007" : [ - "EU482510" - ], - "Tomato_mild_mosaic_virus__BR_Vic14_10" : [ - "KC706609" - ], - "Dengue_virus_3_D3_SG_05K3887DK1_2005" : [ - "EU081206" - ], - "Bean_common_mosaic_virus__DXH005" : [ - "KJ807803" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4867_2009" : [ - "HQ705614" - ], - "Porcine_teschovirus_13_3064_6" : [ - "KC667563" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0039" : [ - "KP759620" - ], - "Mungbean_yellow_mosaic_India_virus__Soybean___MYMV_Sb" : [ - "AY049772", - "AY049771" - ], - "Peste_des_petits_ruminants_virus__Sungri_1996_MSD__The_Netherlands" : [ - "KJ867542" - ], - "Angelonia_flower_break_virus__Florida" : [ - "NC_007733" - ], - "Tobacco_vein_banding_mosaic_virus__YN" : [ - "JN630468" - ], - "Campylobacter_jejuni_IA3902" : [ - "NC_017279", - "NC_017284" - ], - "Barley_yellow_dwarf_virus_PAV__0101" : [ - "EF521842" - ], - "Human_immunodeficiency_virus_1__03ZAPS085MB1" : [ - "DQ351236" - ], - "Human_immunodeficiency_virus_1__03GH182AG" : [ - "AB286857", - "AB286858" - ], - "Newcastle_disease_virus_SRZ03" : [ - "EU167540" - ], - "West_Nile_virus__FDA_BSL5_2003" : [ - "DQ005530" - ], - "Maize_streak_virus__MSV_A_CF_Ban1_Car20_2008" : [ - "HQ693292" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V386_2004" : [ - "EU482840" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL090A" : [ - "AB985543", - "AB985311" - ], - "Infectious_bursal_disease_virus_23_82_genomic_segment_A" : [ - "Z21971" - ], - "Irkut_virus" : [ - "NC_020809" - ], - "Hepatitis_B_virus__BV_201" : [ - "GQ331048" - ], - "Hepatitis_B_virus__HBV_I_025_HIV_HBV" : [ - "KM524352" - ], - "Human_papillomavirus_type_6__130" : [ - "HG793938" - ], - "Newcastle_disease_virus__Chicken_China_Tianjin_01_2007" : [ - "KC542897" - ], - "Ippy_mammarenavirus_Dak_An_B_188_d" : [ - "NC_007905", - "NC_007906" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__YN57_18" : [ - "KC149949" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8493_2001" : [ - "KJ627710" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3668_2007" : [ - "GU131961" - ], - "Plum_pox_virus_PPV_D_Od4" : [ - "AB576079" - ], - "WU_Polyomavirus_S4" : [ - "EF444553" - ], - "Porcine_circovirus_2_CHL" : [ - "AY682991" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3682_1" : [ - "KM034560" - ], - "Rice_tungro_bacilliform_virus_RTBV_G2" : [ - "AF113831" - ], - "Hepatitis_B_virus_327_2" : [ - "KR013773" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09HEB" : [ - "JF268679" - ], - "European_bat_lyssavirus_2__RV1333" : [ - "NC_009528" - ], - "Hepatitis_B_virus__G1_1" : [ - "GU815751" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG241A1_10" : [ - "KJ887963" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3441_2006" : [ - "GU131852" - ], - "Lapine_rotavirus_N5" : [ - "JQ423901", - "JQ423897", - "JQ423899", - "JQ423898", - "JQ423902", - "JQ423900", - "JQ423903", - "JQ423906", - "JQ423907", - "JQ423905", - "JQ423904" - ], - "Peanut_stunt_virus_J2" : [ - "AB360968", - "AB360970", - "AB360969" - ], - "Hepatitis_B_virus__HBV_75_Mother" : [ - "JN400087" - ], - "Squash_leaf_curl_Yunnan_virus__Y23" : [ - "NC_004651" - ], - "Human_parainfluenza_virus_3_LZ22" : [ - "FJ455842" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10SJ_GD" : [ - "JX192637" - ], - "Cleome_leaf_crumple_virus__BR_SE_Jpt1_09" : [ - "JN103430" - ], - "Equine_arteritis_virus__S4445" : [ - "GQ903808" - ], - "Pseudomonas_phage_phiCTX" : [ - "Y13918" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_27__AHEaCV_27_NZ_2332TU_2012" : [ - "NC_026627" - ], - "Vibrio_phage_VP5" : [ - "NC_005891" - ], - "Semliki_Forest_virus__L10" : [ - "KP271965" - ], - "Marburg_marburgvirus__MARV_R_aegyptiacus_tc_UGA_2008_53_Qbat" : [ - "JX458852" - ], - "Grapevine_Pinot_gris_virus__SK30_1" : [ - "KF686810" - ], - "Varroa_Tymo_like_virus__PSU_1var" : [ - "NC_027619" - ], - "Porcine_circovirus_2__n10na" : [ - "DQ629114" - ], - "Yersinia_pestis_Z176003" : [ - "NC_014027", - "NC_014017", - "NC_014022", - "NC_014029" - ], - "Hepatitis_C_virus_subtype_1a__03P" : [ - "EU781810" - ], - "Infectious_bursal_disease_virus__HeB10XS02" : [ - "KF569802", - "KF569801" - ], - "Tomato_leaf_curl_Hsinchu_virus__CT1" : [ - "NC_008727" - ], - "Hepatitis_B_virus__A5_50127" : [ - "FJ692611" - ], - "Rabbit_hemorrhagic_disease_virus_RHDV_Hokkaido_2002_JPN" : [ - "AB300693" - ], - "Parvo_like_hybrid_virus_UC9_UC9" : [ - "KF214640" - ], - "Okra_leaf_curl_betasatellite__OKB_1" : [ - "KF267444" - ], - "Human_papillomavirus_type_45" : [ - "X74479" - ], - "Acinetobacter_baumannii_D1279779" : [ - "NC_020547", - "NC_020525" - ], - "Tick_borne_encephalitis_virus_Primorye_212" : [ - "EU816450" - ], - "Human_immunodeficiency_virus_1__98BWMO18_d5" : [ - "AF443080" - ], - "Torque_teno_virus__TTV_HD14g__gbDfDg33_45" : [ - "FR751469" - ], - "Torque_teno_sus_virus_1a__TTV1Bj10" : [ - "HM633251" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI3_12_DNA_B" : [ - "HE979782" - ], - "Pepper_leaf_curl_virus_satellite_DNA_beta__Varansi" : [ - "GQ330541" - ], - "Cucumber_green_mottle_mosaic_virus__BG_SB" : [ - "FJ654657" - ], - "Actinoplanes_friuliensis_DSM_7358" : [ - "NC_022657" - ], - "Budgerigar_fledgling_disease_polyomavirus_APV4" : [ - "AB453162" - ], - "Hepatitis_B_virus__F2_4" : [ - "GU815729" - ], - "Hepatitis_B_virus__MC01" : [ - "EU547558" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_14391_2001" : [ - "DQ404161" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5486_2010" : [ - "JF937629" - ], - "Lettuce_mosaic_virus_0" : [ - "X97704" - ], - "Porcine_circovirus_2__PCV_HZY29" : [ - "KC514994" - ], - "Variola_virus_Germany_1958_Heidelberg" : [ - "DQ437584" - ], - "Hepatitis_B_virus__MLT1093" : [ - "KF779306" - ], - "Middle_East_respiratory_syndrome_coronavirus_Hu_Oman_2874_2013" : [ - "KT156561" - ], - "Pestivirus_PG_2__PG_2" : [ - "KJ660072" - ], - "Hepatitis_C_virus_subtype_6q__QC99" : [ - "EF424625" - ], - "Mycobacterium_tuberculosis_RGTB423" : [ - "NC_017528" - ], - "Peste_des_petits_ruminants_virus__CH_HNZM_2014" : [ - "KM089832" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7120_2009_A" : [ - "KJ627422" - ], - "Newcastle_disease_virus__JSD0812" : [ - "GQ849007" - ], - "Aeromonas_phage_Aeh1" : [ - "NC_005260" - ], - "Human_immunodeficiency_virus_1__UG270" : [ - "AB485651", - "AB485650" - ], - "Hepatitis_B_virus__pt11T" : [ - "KM875421" - ], - "Infectious_pancreatic_necrosis_virus_17F2" : [ - "AY780927", - "AY780920" - ], - "Human_immunodeficiency_virus_1__SE7535" : [ - "AF069671" - ], - "WU_Polyomavirus_GD_WU3032" : [ - "GQ926977" - ], - "West_Nile_virus__WNV_1_US_BID_V4339_2002" : [ - "HM488180" - ], - "Usutu_virus__ArB1803" : [ - "KC754958" - ], - "Dengue_virus_1__74488_BR_PE_01" : [ - "JX669473" - ], - "Hepatitis_C_virus_subtype_1b_MD2_1" : [ - "AF165047" - ], - "Bluetongue_virus_16__243277" : [ - "DQ191259" - ], - "Monkeypox_virus__DRC_07_0286" : [ - "JX878421" - ], - "Rice_yellow_mottle_virus__CIa" : [ - "AJ608219" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4860_2009" : [ - "HQ705610" - ], - "Cucumber_green_mottle_mosaic_virus__ZJ" : [ - "KP244682" - ], - "Human_immunodeficiency_virus_1__03ZAPS050MB1" : [ - "DQ369980" - ], - "Ramlibacter_tataouinensis_TTB310" : [ - "NC_015677" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2723_2007" : [ - "FJ882545" - ], - "Coxsackievirus_A16_SZ_HK08_7" : [ - "GQ279371" - ], - "Avian_leukosis_virus_2011NDVP4" : [ - "KF866225" - ], - "Hepatitis_B_virus__AIDS30" : [ - "JQ801484" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__JX2006" : [ - "EU880432" - ], - "Hepatitis_B_virus__Q2_10" : [ - "AY217377" - ], - "Foot_and_mouth_disease_virus___type_O_Yangju" : [ - "KF501487" - ], - "Hepatitis_B_virus__PNF5421" : [ - "KF779368" - ], - "Enterovirus_A71_SDLY11_B" : [ - "JX244183" - ], - "Hepatitis_B_virus_1456_18a" : [ - "KR013864" - ], - "Human_poliovirus_1_NIE1118329" : [ - "KJ170494" - ], - "Hepatitis_B_virus__Occult_HK346" : [ - "KJ410508" - ], - "Barley_yellow_dwarf_virus_PAV_PAV_CN_China" : [ - "AY855920" - ], - "Newcastle_disease_virus_Du_CH_LFJ_104_2011" : [ - "KM885159" - ], - "Human_rhinovirus_A64" : [ - "EF173417" - ], - "Gallid_herpesvirus_1_V1_99" : [ - "JX646898" - ], - "Dengue_virus_2_VE_61095_2007" : [ - "HQ332190" - ], - "Foot_and_mouth_disease_virus___type_O_O_Uruguay_ouruguay_51_iso51" : [ - "AY593837" - ], - "Banana_streak_GF_virus__MP" : [ - "KJ013507" - ], - "Hepatitis_B_virus__PNF4854" : [ - "KF779340" - ], - "Beak_and_feather_disease_virus__BFDV_N_PL_680_2008" : [ - "JX221034" - ], - "Tomato_yellow_leaf_curl_Guangdong_virus__G3" : [ - "NC_008374" - ], - "Kappapapillomavirus_2_subtype_b" : [ - "AJ243287" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP4B_subpopulation_2" : [ - "JN013983" - ], - "Simian_immunodeficiency_virus_17E_Cl" : [ - "AY033233" - ], - "Propionibacterium_acnes_TypeIA2_P_acn31" : [ - "NC_016511" - ], - "Gyrovirus_Tu243_Tu243" : [ - "NC_022788" - ], - "Maize_streak_virus__MSV_A_KE_Kag_K14b_1998" : [ - "FJ882090" - ], - "Human_papillomavirus_type_18__BF288" : [ - "KC470224" - ], - "Porcine_circovirus_2_Huanan_12" : [ - "EF493841" - ], - "Sweet_potato_golden_vein_associated_virus_Rondonia_SPGVaV_RO_BR_PV2_08" : [ - "HQ393457" - ], - "Hepatitis_B_virus__MK096_EP_CHB" : [ - "KM524346" - ], - "West_Nile_virus__WNV_1_US_BID_V5176_2004" : [ - "JF488086" - ], - "Chlamydia_psittaci_WC" : [ - "NC_018624", - "NC_018639" - ], - "BK_polyomavirus_SWC_4" : [ - "AB269865" - ], - "Porcine_circovirus_2__Farm_X" : [ - "EU391637" - ], - "Hepatitis_B_virus__MGL231F" : [ - "AB270538" - ], - "Dengue_virus_1__DENV_1_US_BID_V2094_1995" : [ - "FJ410174" - ], - "Duck_circovirus__46_2" : [ - "KF941315" - ], - "Hepatitis_C_virus_subtype_1b__WYHCV131" : [ - "HQ639940" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Jpn5_37" : [ - "LC008532" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_YNBS_58" : [ - "AY390432" - ], - "Hepatitis_B_virus__GRE3641NN" : [ - "AB302944" - ], - "Enterovirus_C96_09228C1" : [ - "HQ415759" - ], - "Hepatitis_B_virus__530_00_6" : [ - "EU872017" - ], - "Human_immunodeficiency_virus_1__CAN11FULL" : [ - "AY779558" - ], - "Feline_leukemia_virus_FRA" : [ - "NC_001940" - ], - "Marburg_marburgvirus_Uganda_371Bat2007_811277" : [ - "FJ750958" - ], - "Viral_hemorrhagic_septicemia_virus_4p168" : [ - "AB672616" - ], - "Mycoplasma_haemofelis_Langford_1" : [ - "NC_014970" - ], - "Coxsackievirus_A16__THA_CA16_090" : [ - "JF738003" - ], - "Echovirus_E30_Kor08_ECV30" : [ - "JN704615" - ], - "Hepatitis_B_virus__N204M_e407" : [ - "KJ173422" - ], - "Human_poliovirus_2__PV2_5116_9_ISR99" : [ - "AM040039" - ], - "Dengue_virus_1_VE_61084_2007" : [ - "HQ332179" - ], - "Human_immunodeficiency_virus_1__PMVL_018" : [ - "EF514697" - ], - "Porcine_circovirus_1_PCV1" : [ - "AY193712" - ], - "Jatropha_leaf_crumple_India_virus__J__curcas__Jodhpur___SKJ2" : [ - "NC_025258" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL030A" : [ - "AB817992", - "AB817984", - "AB818000" - ], - "Saimiriine_herpesvirus_1_MV_5_4" : [ - "NC_014567" - ], - "Sunflower_leaf_curl_Karnataka_alphasatellite__Karnataka" : [ - "NC_019499" - ], - "Human_poliovirus_1__HAI01008" : [ - "AF405665" - ], - "Fathead_minnow_picornavirus__FHMPV_2" : [ - "KF183916" - ], - "Hepatitis_B_virus__I_T57" : [ - "GU456649" - ], - "Pig_stool_associated_circular_ssDNA_virus__HUN2" : [ - "JX305996" - ], - "Tomato_golden_mottle_virus__Rioverde_SLP" : [ - "NC_008058" - ], - "SARS_coronavirus_SinP5" : [ - "AY559092" - ], - "Hepatitis_B_virus__cxn1027" : [ - "KC774338" - ], - "Human_papillomavirus_type_6__LP5" : [ - "FR751324" - ], - "Hepatitis_B_virus__tibet_116" : [ - "HM750143" - ], - "Tortoise_picornavirus_5_04" : [ - "KM873612" - ], - "Human_rhinovirus_A66_HRV_A66_p1086_sR457_2008" : [ - "JN112340" - ], - "Hepatitis_B_virus__29234" : [ - "AJ627220" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2983_2003" : [ - "FJ898447" - ], - "Hepatitis_B_virus_Ehi_IK_lam_10_1" : [ - "AB195955" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4299_1" : [ - "KR105229" - ], - "Hepatitis_B_virus_subtype_adw_SK619" : [ - "AB033553" - ], - "Hepatitis_B_virus__IND_2009_2" : [ - "KF214659" - ], - "Porcine_circovirus_2_M226" : [ - "AF086836" - ], - "Dengue_virus_3__DENV_3_KH_BID_V3829_2007" : [ - "HM181935" - ], - "Turkey_coronavirus__TCoV_ATCC" : [ - "EU022526" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1922_2008" : [ - "FJ461331" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1558_2007" : [ - "EU677177" - ], - "Rabies_virus__AZBAT_6763" : [ - "JQ685913" - ], - "Edwardsiella_phage_PEi21" : [ - "NC_021342" - ], - "Pepino_mosaic_virus_US1_EF09_58" : [ - "JQ314460" - ], - "Hepatitis_E_virus__JRM_Toy05C" : [ - "AB291963" - ], - "Hantaanvirus_CGRn45_CGRn45" : [ - "EU092221", - "EU092225" - ], - "Simian_virus_40_YNQD38" : [ - "DQ218418" - ], - "West_Nile_virus__WNV_1_US_BID_V4209_2003" : [ - "HQ705659" - ], - "Enterovirus_A71_KED005_org" : [ - "AB550340" - ], - "SARS_coronavirus_BJ182_8" : [ - "EU371563" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dar_Beta_6" : [ - "EU384600" - ], - "Hepatitis_B_virus__FMD71" : [ - "GU332693" - ], - "Guinea_pig_Chlamydia_phage_PhiCPG1" : [ - "NC_001998" - ], - "Maize_streak_virus__MSV_A_NG_ng32_Mil_2011" : [ - "KJ437659" - ], - "Sweet_potato_leaf_curl_virus__RS2__BR_Poa1" : [ - "FJ969836" - ], - "Equid_herpesvirus_1_NY03" : [ - "KF644569" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FLU9371_2007" : [ - "KJ627299" - ], - "Norovirus_Hu_GII_4_NIHIC35_2013_USA_Hu_GII_4_NIHIC35_2013_USA" : [ - "KF712502" - ], - "Tomato_leaf_curl_China_betasatellite__Y323" : [ - "AM260729" - ], - "Beak_and_feather_disease_virus__BFDV_Q_PL_1067_2010" : [ - "JX221004" - ], - "Tent_making_bat_hepatitis_B_virus__TBHBV_Pan376_Uro_bil_PAN_2010" : [ - "KC790379" - ], - "Human_papillomavirus_type_18__Z135" : [ - "KC470213" - ], - "Porcine_circovirus_2_PCV2b_1C_HNYYDPC102" : [ - "KP112484" - ], - "South_African_cassava_mosaic_virus__MG_MG239B11_10" : [ - "KJ887684" - ], - "Pepper_vein_yellows_virus__HN" : [ - "KP300822", - "KP326573" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC07AI3_2008" : [ - "JF909213" - ], - "Mariental_virus_N27_MRMi_n9" : [ - "NC_027136" - ], - "Sugarcane_streak_Egypt_virus____Man__Mansoura" : [ - "AF039530" - ], - "Tula_virus_Moravia_5302v_95" : [ - "NC_005226", - "NC_005228" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1509_2007" : [ - "EU687248" - ], - "Beet_soil_borne_virus__XJ" : [ - "EF545141", - "EF545143", - "EF545139" - ], - "Hepatitis_B_virus_HB172" : [ - "HM011467" - ], - "European_mountain_ash_ringspot_associated_virus__E53112" : [ - "HG799722" - ], - "Hepatitis_B_virus__1379_SE_BRA" : [ - "KJ854688" - ], - "Mycobacterium_phage_Astraea" : [ - "NC_021349" - ], - "Small_begomovirus_associated_satellite__Sa19_S111" : [ - "KJ859136" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPI02659_2011" : [ - "KJ672614" - ], - "Rickettsia_prowazekii_NMRC_Madrid_E" : [ - "NC_020992" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GX09_16" : [ - "HM214913" - ], - "JC_polyomavirus_256A" : [ - "AY121911" - ], - "Hepatitis_C_virus_subtype_1b_MD6_1" : [ - "AF165055" - ], - "Columbid_circovirus" : [ - "NC_002361" - ], - "Chiltepin_yellow_mosaic_virus__20_5" : [ - "NC_014127" - ], - "Maricaulis_maris_MCS10" : [ - "NC_008347" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3831" : [ - "KM233103" - ], - "Hepatitis_B_virus_1456_14a" : [ - "KR014062" - ], - "Hepatitis_B_virus__Happy" : [ - "AY330915" - ], - "Human_immunodeficiency_virus_2__D194" : [ - "HIV2D194" - ], - "Porcine_circovirus_2_Fh20" : [ - "AY321983" - ], - "Hepatitis_B_virus_ayw_Japan_Ehime_22_HS_2005__Ehime_22_HS" : [ - "AB267090" - ], - "Puumala_like_virus_isolate_Fusong_Cr_247__Fusong_Cr_247" : [ - "EF442087" - ], - "Tomato_leaf_curl_Philippines_virus___Laguna" : [ - "AB307731" - ], - "Middle_East_respiratory_syndrome_coronavirus__England_3_2013" : [ - "KM210278" - ], - "Yellow_tailflower_mild_mottle_virus__Nb" : [ - "KF495565" - ], - "Human_parechovirus_5_T92_15" : [ - "AM235749" - ], - "Lake_Victoria_marburgvirus___Angola2005_Ang0214" : [ - "DQ447657" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3935_2008" : [ - "GU131731" - ], - "Tomato_leaf_curl_China_betasatellite__Y261" : [ - "AM260719" - ], - "Imperata_yellow_mottle_virus" : [ - "NC_011536" - ], - "Japanese_encephalitis_virus__LN02_102" : [ - "JF706278" - ], - "Rotavirus_G4__Rota_554" : [ - "AB012074" - ], - "Enterovirus_B81__99298c_XZ_CHN_1999" : [ - "KJ755190" - ], - "Bovine_papillomavirus_8__BAPV1" : [ - "DQ098913" - ], - "Maize_streak_virus__MSV_A_CF_Yal2_Car33_2008" : [ - "HQ693318" - ], - "Tomato_leaf_curl_New_Delhi_virus__ToLCNDV__Pum_IARI_06" : [ - "JN129254" - ], - "JC_polyomavirus__NG_5" : [ - "AB127007" - ], - "Hepatitis_B_virus__C_F528PF_2005" : [ - "HQ700498" - ], - "Listeria_phage_LP_124" : [ - "KJ094031" - ], - "Human_immunodeficiency_virus_1__HK003" : [ - "FJ460500" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5039_1" : [ - "KR105295" - ], - "Rice_black_streaked_dwarf_virus__JSXHR26" : [ - "HM209073" - ], - "Zucchini_yellow_mosaic_virus__F82" : [ - "JN192406" - ], - "Tomato_severe_rugose_virus__BR_Car234_5_08" : [ - "KC706623" - ], - "Escherichia_coli_O157_H7" : [ - "NC_002695", - "NC_002127", - "NC_002128" - ], - "Hepatitis_B_virus_FD_36_5" : [ - "FJ151413" - ], - "Human_immunodeficiency_virus_1__J11456" : [ - "EU697909" - ], - "Tomato_torrado_virus__PRI_ToTV0301" : [ - "NC_009013", - "NC_009032" - ], - "Human_adenovirus_3_GB" : [ - "AY599834" - ], - "Hepatitis_B_virus__bww1116" : [ - "KC774388" - ], - "Human_immunodeficiency_virus_1__06BR579" : [ - "FJ771009" - ], - "Dengue_virus_4_VE_61013_2007" : [ - "HQ332175" - ], - "Hepatitis_B_virus__919090" : [ - "JN040783" - ], - "Lettuce_mosaic_virus__Br6" : [ - "KJ161174" - ], - "West_Nile_virus__WNV_1_US_BID_V6406_2001" : [ - "KJ501282" - ], - "Frateuria_aurantia_DSM_6220" : [ - "NC_017033" - ], - "Hepatitis_B_virus__GU3449" : [ - "GQ161809" - ], - "Human_bocavirus__HK17" : [ - "EF450733" - ], - "Norovirus_Hu_GII_4_NSW123B_2010_AU_Hu_GII_4_NSW123B_2010_AU" : [ - "JQ613552" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__NT4_1" : [ - "GU723736" - ], - "Hepatitis_B_virus__SSC18" : [ - "KJ598690" - ], - "Hepatitis_B_virus__Occult_HK8" : [ - "KJ410512" - ], - "Hepatitis_B_virus_4484_97" : [ - "EU594399" - ], - "Goatpox_virus_FZ_FZ" : [ - "KC951854" - ], - "Human_herpesvirus_5_HAN20" : [ - "GQ396663" - ], - "Fervidicoccus_fontis_Kam940" : [ - "NC_017461" - ], - "Bean_golden_yellow_mosaic_virus__Puerto_Rico" : [ - "MBGCG2Z", - "MBGCG1Z" - ], - "Lactococcus_phage_bIL286" : [ - "NC_002667" - ], - "Hepatitis_B_virus__HBV_15N" : [ - "EU660229" - ], - "Human_immunodeficiency_virus_1__ZM247F_flF7" : [ - "FJ496204" - ], - "Human_rhinovirus_B26_ATCC_VR_1136" : [ - "FJ445124" - ], - "Haemophilus_influenzae_R2846" : [ - "NC_017452" - ], - "Sweet_potato_leaf_curl_virus__RS2__BR_Ros1" : [ - "FJ969837" - ], - "Dengue_virus_3__GZ1D3" : [ - "GU363549" - ], - "Changuinola_virus__CGLV_BE_AR_440489" : [ - "KF668537", - "KF668546", - "KF668542", - "KF668539", - "KF668544", - "KF668545", - "KF668540", - "KF668543" - ], - "Maize_streak_virus__MSV_F_Ug_SN117_2005" : [ - "EU628630" - ], - "Cucumber_mosaic_virus_S" : [ - "Y10884" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD215_2013" : [ - "KM229773" - ], - "Cherry_rusty_mottle_associated_virus__95CI192R3" : [ - "NC_020996" - ], - "West_Nile_virus__WNV_1_US_BID_V6535_2003" : [ - "KJ501499" - ], - "Hybrid_snakehead_virus_Xingtan" : [ - "KP876483" - ], - "Hepatitis_B_virus__B42a" : [ - "FJ904441" - ], - "Hepatitis_B_virus__919008" : [ - "JN040827" - ], - "Dengue_virus_1__DENV_1_VN_BID_V931_2003" : [ - "EU482476" - ], - "Hepatitis_B_virus__E1_6" : [ - "GU815687" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Iran_53" : [ - "DQ446216", - "DQ446213" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_29__AHEaCV_29_NZ_3425C1_2012" : [ - "KM874366" - ], - "Human_adenovirus_3_11p_OvAd1" : [ - "EF564600" - ], - "Coxsackievirus_A16_G08" : [ - "KC342228" - ], - "Bluetongue_virus_4_TUR1978_01" : [ - "AM900373" - ], - "Dengue_virus_2__DENV_2_BR_BID_V2386_2003" : [ - "FJ850078" - ], - "Middle_East_respiratory_syndrome_coronavirus__Hafr_Al_Batin_6_2013" : [ - "KJ156874" - ], - "Human_immunodeficiency_virus_1__WC10C_11" : [ - "AY314062" - ], - "Hepatitis_B_virus_034" : [ - "AB900114" - ], - "Norovirus_Hu_GII_4_Hiroshima3_2008_JP_Hu_GII_4_Hiroshima3_2008_JP" : [ - "AB541256" - ], - "Hepatitis_C_virus_subtype_1a__L861P" : [ - "EU781769" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_150_2012" : [ - "KJ686129" - ], - "Streptococcus_mutans_LJ23" : [ - "NC_017768" - ], - "Chlamydia_trachomatis_D_SotonD6" : [ - "NC_020959", - "NC_020968" - ], - "Crimean_Congo_hemorrhagic_fever_virus_SPU97_85" : [ - "DQ211646", - "DQ211633", - "DQ211620" - ], - "Xanthobacter_autotrophicus_Py2" : [ - "NC_009720", - "NC_009717" - ], - "Hepatitis_delta_virus_Miyako_JA_M24" : [ - "AB118838" - ], - "Paspalum_striate_mosaic_virus__AU_1659_2004" : [ - "JQ948063" - ], - "Chicken_anemia_virus__1" : [ - "KJ728814" - ], - "Lactobacillus_phage_LP65" : [ - "NC_006565" - ], - "Hepatitis_delta_virus_dTk28_dTk28" : [ - "AM779586" - ], - "Echovirus_E6__2012EM95" : [ - "KF042342" - ], - "Pseudomonas_phage_phiIBB_PAA2_phiIBB_PAA2" : [ - "NC_022971" - ], - "Hepatitis_B_virus__C_PNG_D071A_2005" : [ - "HQ700518" - ], - "Okra_leaf_curl_betasatellite__EL14" : [ - "KJ437507" - ], - "Swine_hepatitis_E_virus__CHN_XJ_SW13" : [ - "GU119961" - ], - "Hepatitis_B_virus__TP59" : [ - "KF192831" - ], - "Mycobacterium_phage_CloudWang3" : [ - "NC_022965" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1304_2007" : [ - "FJ898432" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143466" : [ - "KR653304" - ], - "African_cassava_mosaic_virus__CF_CF144AN_07" : [ - "KJ887804" - ], - "West_Nile_virus__AVA1204331" : [ - "KC736495" - ], - "Hepatitis_B_virus__S624_1" : [ - "EU589344" - ], - "Dengue_virus_2__D2_Pakistan_78_2009" : [ - "KF041237" - ], - "Hepatitis_B_virus__S171_5" : [ - "FJ787443" - ], - "Duck_circovirus__DU092" : [ - "HM162346" - ], - "West_Nile_virus__WNV_1_US_BID_V4103_2005" : [ - "HM488115" - ], - "Bacillus_subtilis_BSP1" : [ - "NC_019896" - ], - "Norovirus_Hu_GII_30212_2009_VNM_Hu_GII_30212_2009_VNM" : [ - "KC409316" - ], - "JC_polyomavirus__JCV135_47" : [ - "JF424872" - ], - "Foot_and_mouth_disease_virus___type_SAT_1__TAN_22_2012" : [ - "KM268899" - ], - "Classical_swine_fever_virus_Zj0801" : [ - "FJ529205" - ], - "Synechococcus_phage_ACG_2014b__Syn9311C1" : [ - "KJ019132" - ], - "Tomato_yellow_leaf_curl_virus_TYLCV_RE4" : [ - "AM409201" - ], - "Rotavirus_G9_OM67" : [ - "AJ491179" - ], - "Hepatitis_B_virus__Srb_207" : [ - "JQ687532" - ], - "Bean_golden_mosaic_virus__BR_Mur8_11" : [ - "KJ939761" - ], - "Dengue_virus_1_D1_SG_05K2398DK1_2005" : [ - "EU081229" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2192_2001" : [ - "FJ639762" - ], - "Desulfosporosinus_orientis_DSM_765" : [ - "NC_016584" - ], - "Human_poliovirus_3_NIE1218543" : [ - "KJ170635" - ], - "Eastern_equine_encephalitis_virus_EEEV_Aedes_USA_10522_2004" : [ - "KJ469584" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P130" : [ - "KC422728" - ], - "Cereal_yellow_dwarf_virus_RPV__092" : [ - "EF521848" - ], - "Tomato_leaf_curl_New_Delhi_virus_India_PP78B_2013_PP78" : [ - "KM921670" - ], - "Cuban_alphasatellite_1__1_1" : [ - "NC_021708" - ], - "Hepatitis_C_virus_RF3_2_5" : [ - "EF026073" - ], - "Semliki_Forest_virus" : [ - "EU350586", - "NC_003215" - ], - "Classical_swine_fever_virus_Bergen" : [ - "KJ619377" - ], - "Cotton_leaf_curl_Gezira_virus__okra_Niger___AFNG2" : [ - "EU432374" - ], - "Hepatitis_B_virus_Ehime18_Iyo_529246" : [ - "AB119256" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V256_2003" : [ - "EU155350" - ], - "Dengue_virus_1__MKS_0483" : [ - "KC762651" - ], - "Human_rotavirus_A_MW47" : [ - "AJ400642" - ], - "Japanese_encephalitis_virus__Ha3" : [ - "JN381872" - ], - "Sida_leaf_curl_virus__62" : [ - "DQ641707" - ], - "West_Nile_virus__WNV_1_US_BID_V5147_2007" : [ - "JF730042" - ], - "Hepatitis_B_virus_B0308839_DPS_F" : [ - "AP011093" - ], - "Maize_streak_virus__MSV_A_GH_gh13_Ama_2010" : [ - "KJ699326" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1560_2007" : [ - "EU677178" - ], - "West_Nile_virus__twn9" : [ - "HM051416" - ], - "Yellow_fever_virus_ASIBI" : [ - "AY640589" - ], - "Human_immunodeficiency_virus_1__04ZASK083B2" : [ - "DQ093585" - ], - "Porcine_circovirus_2__4_05_2" : [ - "HM009337" - ], - "West_Nile_virus__WNV_1_Gallus_BID_V4961_kidney" : [ - "HQ671693" - ], - "Porcine_circovirus_2__AUT4" : [ - "AY424404" - ], - "Usutu_virus_V43" : [ - "KJ438731" - ], - "Potato_virus_Y_N_strain_SCRI_N" : [ - "AJ585197" - ], - "Echovirus_E9__DM" : [ - "AF524867" - ], - "Norovirus_Hu_GI_1_CH4XO533_2009_USA_Hu_GI_1_CH4XO533_2009_USA" : [ - "KF039731" - ], - "Porcine_circovirus_2_HZ0202" : [ - "AY217743" - ], - "Dengue_virus_2__DC669Y12" : [ - "KM279551" - ], - "Beak_and_feather_disease_virus__YCP21" : [ - "JQ782205" - ], - "Cucumber_mosaic_virus__PF" : [ - "AB368499", - "AB368501", - "AB368500" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_94I_153A_01_1994" : [ - "KP258697" - ], - "Papaya_ringspot_virus_W" : [ - "EU475877" - ], - "Human_papillomavirus_type_16__JP1773" : [ - "AB818690" - ], - "Sweet_potato_leaf_curl_Georgia_virus__SPLCGoV_CUB_10" : [ - "KC253236" - ], - "Cotton_leaf_curl_Multan_betasatellite__Fz1" : [ - "JX861211" - ], - "Rehmannia_mosaic_virus__Shanxi" : [ - "JX575184" - ], - "Rhinovirus_C__6331" : [ - "KF958310" - ], - "Hepatitis_B_virus__C_Tonga_BL9389_2002" : [ - "HQ700563" - ], - "Hepatitis_B_virus__I33" : [ - "FJ562228" - ], - "Enterovirus_A71_Nanyang_2011_China" : [ - "JN052925" - ], - "Human_poliovirus_2_NIE0611197_BOS06_03" : [ - "JX274995" - ], - "Hepatitis_B_virus__WHMQR2" : [ - "JN257217" - ], - "Neisseria_meningitidis_8013" : [ - "NC_017501" - ], - "Avian_leukosis_virus_Km_5844" : [ - "AB670312" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2780_2007" : [ - "GQ199802" - ], - "Human_immunodeficiency_virus_1__A1774" : [ - "KP718935" - ], - "Enterobacteria_phage_mEp043_c_1" : [ - "NC_019706" - ], - "Dengue_virus_2__DENV_2_US_BID_V1360_1993" : [ - "EU482589" - ], - "Hepatitis_B_virus__GU1125" : [ - "GQ161837" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1234_2007" : [ - "EU482626" - ], - "Jatropha_mosaic_virus__Fl_USA" : [ - "KF998097", - "KF998098" - ], - "Merkel_cell_polyomavirus__FraMerk24" : [ - "JN383841" - ], - "Dragonfly_larvae_associated_circular_virus_4__DflaCV_4_NZ_PG3_LG" : [ - "NC_023430" - ], - "Human_papillomavirus_type_33__Qv32494" : [ - "HQ537688" - ], - "Mycoplasma_gallisepticum_S6" : [ - "NC_023030" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V3789_2007" : [ - "GU131897" - ], - "Tomato_yellow_leaf_curl_virus__SD_SG14" : [ - "KM435324" - ], - "Xanthomonas_phage_vB_XveM_DIBBI" : [ - "NC_017981" - ], - "Rabies_virus__SM4872" : [ - "JQ685960" - ], - "Foot_and_mouth_disease_virus___type_O__lz" : [ - "DQ248888" - ], - "Cucumber_mosaic_virus_satellite_RNA_sBM26" : [ - "KC713593" - ], - "Hepatitis_B_virus__GU1214" : [ - "GQ161816" - ], - "Rabies_virus_SHBRV_18" : [ - "AY705373" - ], - "Hepatitis_E_virus__Thai_swHEV07" : [ - "EU375463" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_13__AHEaCV_13_NZ_1986SG_2012" : [ - "NC_026639" - ], - "Hepatitis_B_virus__16_S_BRA" : [ - "KJ854708" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_JS2012_tick01" : [ - "KC473541", - "KC473542", - "KC473540" - ], - "Beet_curly_top_virus__pCO_95_6_31" : [ - "JN817383" - ], - "South_African_cassava_mosaic_virus__MG_MG334A5_10" : [ - "KJ887696" - ], - "Tomato_yellow_leaf_curl_virus__SDZZ" : [ - "GQ352538" - ], - "Porcine_circovirus_2__A4204" : [ - "JF317575" - ], - "Hepatitis_B_virus__Ag42" : [ - "KJ843202" - ], - "Human_immunodeficiency_virus_1__CH40E_flF7" : [ - "FJ495823" - ], - "Hepatitis_B_virus__947_Harare" : [ - "HM535200" - ], - "Hepatitis_C_virus_subtype_1b_RB_Con1" : [ - "AJ238799" - ], - "Dengue_virus_3__mutant_BDH02_03" : [ - "DQ401691" - ], - "Human_immunodeficiency_virus_1__L8157" : [ - "DQ886035" - ], - "Hepatitis_B_virus__C75" : [ - "EU939562" - ], - "Sulfolobus_islandicus_rudivirus_1_variant_XX" : [ - "AJ748296" - ], - "Human_herpesvirus_5_BE_49_2011" : [ - "KP745725" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_11_68" : [ - "JX869182" - ], - "Hepatitis_B_virus__6380_3" : [ - "GQ372968" - ], - "Squash_leaf_curl_virus__EG2_9" : [ - "KM595148" - ], - "Dengue_virus_2__MAR_Oct_05" : [ - "EU920841" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_86E_155_01_1986" : [ - "KP258696" - ], - "Goose_circovirus__TW3_2001" : [ - "AF536933" - ], - "Hepatitis_B_virus__NH017M_e37" : [ - "KJ173316" - ], - "Hepatitis_B_virus__B1_9" : [ - "GU815590" - ], - "Newcastle_disease_virus__SDWF02" : [ - "HM188399" - ], - "Listeria_monocytogenes_serotype_1_2b_SLCC2755" : [ - "NC_018587", - "NC_014495" - ], - "Dengue_virus_2__DENV_2_VN_BID_V730_2006" : [ - "EU482667" - ], - "Eupatorium_yellow_vein_betasatellite__Suya_2003" : [ - "AB300464" - ], - "Haemophilus_ducreyi_35000HP" : [ - "NC_002940" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_177_2012" : [ - "KJ686264" - ], - "Hepatitis_B_virus__Z31_6" : [ - "GQ227696" - ], - "Dengue_virus_2__MD919" : [ - "FM210229" - ], - "Human_rhinovirus_A9_ATCC_VR_489" : [ - "FJ445177" - ], - "Cotton_leaf_curl_Rajasthan_virus___India__India_Sri_Ganganagar_2008___Sri_Ganganagar" : [ - "GQ220850" - ], - "Banana_streak_CA_virus_MP" : [ - "KJ013511" - ], - "Hepatitis_B_virus__C185_3" : [ - "FJ899781" - ], - "Hepatitis_B_virus__D2_8" : [ - "GU815665" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA102" : [ - "KF670671" - ], - "Human_immunodeficiency_virus_1__Ph99full" : [ - "AY818642" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP1B" : [ - "JN013975" - ], - "Watermelon_silver_mottle_virus__DD6_S_RAN" : [ - "AY864852" - ], - "Dengue_virus_2__CSF381" : [ - "FM210236" - ], - "Mycobacterium_VKM_Ac_1815D" : [ - "NC_023036" - ], - "Porcine_circovirus_2__DK455case" : [ - "EF565357" - ], - "Human_respiratory_syncytial_virus__08_000507" : [ - "JX015493" - ], - "Chicken_anemia_virus__4" : [ - "KJ728816" - ], - "Hepatitis_delta_virus__7" : [ - "HQ005365" - ], - "Sacbrood_virus_Rothamstead" : [ - "NC_002066" - ], - "JC_polyomavirus__CB_2" : [ - "AB048550" - ], - "Measles_virus_Schwarz_FF_8" : [ - "AB591381" - ], - "Lysinibacillus_sphaericus_C3_41" : [ - "NC_010382", - "NC_010381" - ], - "Passerivirus_A1_00356" : [ - "NC_014411" - ], - "West_Nile_virus__WNV_1_US_BID_V6628_2001" : [ - "KJ501377" - ], - "Viral_hemorrhagic_septicemia_virus_96_43_Atlantic_herring" : [ - "AF143862" - ], - "Enterobacter_cloacae_SCF1" : [ - "NC_014618" - ], - "Hepatitis_B_virus__C89" : [ - "FJ349240" - ], - "Lactobacillus_rhamnosus_Lc_705" : [ - "NC_013199", - "NC_013200" - ], - "Squash_leaf_curl_virus__IL1_29" : [ - "KM595103" - ], - "Maize_streak_virus__MSV_A_ZW_Mvu_Bet45_2006" : [ - "HQ693473" - ], - "Hepatitis_B_virus_1263_4" : [ - "KR013847" - ], - "Enterovirus_A71_TW_71428_05" : [ - "GQ231937" - ], - "Hepatitis_B_virus__MLT1018" : [ - "KF779303" - ], - "Ageratum_yellow_leaf_curl_betasatellite__ALBF" : [ - "FM164738" - ], - "Bacillus_phage_BCJA1c" : [ - "NC_006557" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__GD_2011" : [ - "KC527830" - ], - "Chlamydia_trachomatis_RC_L2_s_3" : [ - "NC_021897" - ], - "Human_immunodeficiency_virus_1__5018_86" : [ - "AY835778" - ], - "Hepatitis_C_virus_LTD1_2_XF222" : [ - "AF511948" - ], - "Papaya_mosaic_virus" : [ - "NC_001748" - ], - "Hepatitis_B_virus__QHX_5" : [ - "HM750134" - ], - "Cryphonectria_parasitica_mitovirus_1_NB631_NB631" : [ - "NC_004046" - ], - "Foot_and_mouth_disease_virus___type_A_A22_Turkey_a22turkey_iso66" : [ - "AY593765" - ], - "Enterovirus_D68__NY278" : [ - "KP745760" - ], - "Listeria_phage_LP_048" : [ - "NC_024359" - ], - "Hepatitis_B_virus__Leb49" : [ - "JN642155" - ], - "Human_immunodeficiency_virus_1__97VNHCM345" : [ - "FJ185244" - ], - "Hepatitis_B_virus__LAMr_Pt__3_Adefovir_treated_Pt__8" : [ - "AB367394" - ], - "Chlamydia_trachomatis_G_11074" : [ - "NC_017440" - ], - "Tomato_mosaic_virus__XJT_1" : [ - "FN985165" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_MEX_24_2005" : [ - "KF826829" - ], - "Duck_circovirus_MH11" : [ - "EU344805" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V443_2001" : [ - "EU256054" - ], - "Potato_virus_Y_strain_C_C_Adgen" : [ - "AJ890348" - ], - "Enterovirus_A71__EV71_NX10_147_2010" : [ - "KJ004556" - ], - "Human_papillomavirus_type_16__Asian_American_variant" : [ - "AF402678" - ], - "Irkut_virus__IRKV_THChina12" : [ - "JX442979" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V346_2001" : [ - "EU155303" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7587_2007" : [ - "KJ189321" - ], - "Lettuce_mosaic_virus__CL574" : [ - "KJ161183" - ], - "Velvet_tobacco_mottle_virus_Satellite_RNA__K1v" : [ - "HQ680397" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3680_1" : [ - "KM034559" - ], - "Small_begomovirus_associated_satellite__wf_S45" : [ - "KJ859200" - ], - "Hepatitis_B_virus__Occult_HK532" : [ - "KJ410501" - ], - "Tomato_leaf_curl_Vietnam_virus__Haiphong_23" : [ - "GQ246941" - ], - "JC_polyomavirus__Luz_2" : [ - "AB113132" - ], - "Mycobacterium_phage_Lockley_Lockley" : [ - "NC_011021" - ], - "West_Nile_virus__WNV_1_US_BID_V6630_2001" : [ - "KJ501379" - ], - "Human_immunodeficiency_virus_1__59211" : [ - "GU595151" - ], - "Enterovirus_B__SE_03_78616" : [ - "EF371880" - ], - "Tomato_yellow_leaf_curl_virus___Il__CN_SH_Tomato1_08" : [ - "GU434141" - ], - "Porcine_parvovirus_BQ" : [ - "EU790641" - ], - "Cauliflower_mosaic_virus__IRNHC63" : [ - "KF357597" - ], - "Okra_leaf_curl_Cameroon_virus_Cameroon_Lik1_GR23" : [ - "HE793426" - ], - "Porcine_circovirus_2_10BJ_3" : [ - "HQ395061" - ], - "Dengue_virus_1_D1_SG_05K3934DK1_2005" : [ - "EU081252" - ], - "Tomato_leaf_curl_Philippines_virus__P2" : [ - "EU487026" - ], - "Zucchini_yellow_mosaic_virus__5th" : [ - "JN192424" - ], - "Salmonella_phage_SETP13" : [ - "NC_022752" - ], - "African_cassava_mosaic_virus__MG_MG54A1_06" : [ - "KJ887873" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD265_2014" : [ - "KM229779" - ], - "African_cassava_mosaic_virus__ACMV_Ybi1_Cm" : [ - "FN435275" - ], - "Porcine_circovirus_2_PT_14338_03" : [ - "HQ831524" - ], - "Human_papillomavirus_type_52__Qv12377" : [ - "HQ537747" - ], - "Mungbean_yellow_mosaic_India_virus__India_Varanasi_French_bean_2011" : [ - "KC019303", - "KC019304", - "KC019305" - ], - "Human_poliovirus_1_CHN8225c_GZ_CHN_2004" : [ - "FJ769383" - ], - "Streptococcus_suis_JS14" : [ - "NC_017618" - ], - "Hepatitis_B_virus__clz1034" : [ - "KC774192" - ], - "WU_Polyomavirus_S5" : [ - "EF444554" - ], - "West_Nile_virus__WNV_1_US_BID_V4347_2003" : [ - "HM488185" - ], - "Mumps_virus_Urabe_Gw7" : [ - "FJ375178" - ], - "Staphylococcus_phage_77" : [ - "NC_005356" - ], - "Cotton_leaf_curl_Gezira_betasatellite__BF_Kap_Okra6" : [ - "FN554578" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC03E02_2006" : [ - "JF909080" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_71U382_1971_IE" : [ - "KC344466" - ], - "Banana_bunchy_top_virus__ChengMai" : [ - "GU559702" - ], - "Human_poliovirus_2_NIE0611200_BOS06_02" : [ - "JX274991" - ], - "Dengue_virus_3__DENV_3_MZ_BID_V2418_1985" : [ - "FJ882575" - ], - "Spodoptera_litura_granulovirus__SlGV_K1" : [ - "NC_009503" - ], - "WU_Polyomavirus__NP166" : [ - "GU296400" - ], - "Human_immunodeficiency_virus_1__99FR_MP1298" : [ - "AJ291719" - ], - "Hepatitis_B_virus__liver_07_96" : [ - "DQ788729" - ], - "Bean_golden_mosaic_virus__BR_Flt5_11" : [ - "KJ939770" - ], - "Hepatitis_B_virus__JFA3898" : [ - "KF779262" - ], - "West_Nile_virus_H442_H442" : [ - "EF429200" - ], - "Cupixi_mammarenavirus_BeAn_119303" : [ - "NC_010254", - "NC_010252" - ], - "Hepatitis_B_virus__BR10_SOUTHEAST" : [ - "KC494396" - ], - "Torque_teno_sus_virus_1b__TTV2SH" : [ - "JX535333" - ], - "Human_immunodeficiency_virus_1__03ZAPS097MB1" : [ - "DQ351230" - ], - "Fusobacterium_4_8" : [ - "NC_021277", - "NC_021281" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3782_2006" : [ - "GU131891" - ], - "Mycobacterium_bovis_BCG_Pasteur_1173P2" : [ - "NC_008769" - ], - "Hepatitis_delta_virus_dFr2264_dFr2264" : [ - "AM902172" - ], - "Duck_circovirus__DB26_3" : [ - "KP229366" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2251_2005" : [ - "FJ639813" - ], - "Enterovirus_A71_B5_96015_TW_2012" : [ - "KF154355" - ], - "Tomato_yellow_leaf_curl_virus___Il_IL_322" : [ - "LN846614" - ], - "Hepatitis_B_virus_HB503" : [ - "JQ027321" - ], - "Hepatitis_B_virus__I109" : [ - "FJ562261" - ], - "Dengue_virus_3__DENV_3_US_BID_V1624_2005" : [ - "FJ182039" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC29BG1_2009" : [ - "JF909105" - ], - "Enterovirus_A71_FY17_08_7_AH_CHN_2008" : [ - "JX678878" - ], - "Hepatitis_B_virus__HK262" : [ - "DQ089804" - ], - "Hepatitis_B_virus__C1P_HB11_1417" : [ - "AB931168" - ], - "Hepatitis_B_virus__S2_1" : [ - "EU916207" - ], - "Velvet_tobacco_mottle_virus_Satellite_RNA__R17v" : [ - "HQ680398" - ], - "WU_Polyomavirus_WU_Wuerzburg_01_07" : [ - "EU711056" - ], - "Oscivirus_A1_007167" : [ - "GU182409" - ], - "Hepatitis_B_virus__SHB720" : [ - "KJ598752" - ], - "Norovirus_Bo_Newbury2_1976_UK_Bo_Newbury2_1976_UK" : [ - "AF097917" - ], - "Human_immunodeficiency_virus_1__06CM_BA_040" : [ - "EU693240" - ], - "Hepatitis_B_virus__HBV56" : [ - "KC875288" - ], - "Hepatitis_B_virus__D_NZL_HE55_1993" : [ - "HQ700459" - ], - "Porcine_circovirus_2_AH0702" : [ - "GQ358992" - ], - "South_African_cassava_mosaic_virus__MG_MG145A1_09" : [ - "KJ887673" - ], - "Goose_parvovirus_Virulent_B" : [ - "NC_001701" - ], - "Porcine_circovirus_2_4d4" : [ - "EU909687" - ], - "Abelson_murine_leukemia_virus" : [ - "NC_001499" - ], - "Raspberry_bushy_dwarf_virus__GR_4" : [ - "EU796086" - ], - "Hepatitis_B_virus__S732_10" : [ - "FJ032348" - ], - "Human_respiratory_syncytial_virus__BE06_6650" : [ - "JX015482" - ], - "West_Nile_virus__WNV_1_US_BID_V6464_2003" : [ - "KJ501312" - ], - "Hepatitis_B_virus_HB363" : [ - "HM011475" - ], - "Hepatitis_B_virus__MY091938" : [ - "KJ803822" - ], - "Listeria_ivanovii_PAM_55" : [ - "NC_016011" - ], - "Feline_coronavirus_UU20_UU20" : [ - "HQ392471" - ], - "West_Nile_virus__WNV_1_BID_V5039" : [ - "JN819312" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JA142" : [ - "AY424271" - ], - "BK_polyomavirus_VNM_2" : [ - "AB269868" - ], - "Hepatitis_B_virus__NB215C_m216" : [ - "KJ173303" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00066_2000_G1P_8" : [ - "JN651808", - "JN651803", - "JN651804", - "JN651806", - "JN651809", - "JN651812", - "JN651811", - "JN651810", - "JN651805", - "JN651807" - ], - "Bacillus_phage_MG_B1" : [ - "NC_021336" - ], - "Dengue_virus_1__DENV_1_US_BID_V2135_1992" : [ - "FJ547087" - ], - "Avian_orthoreovirus_GX110058" : [ - "KF741739", - "KF741745", - "KF741744", - "KF741737", - "KF741736", - "KF741743", - "KF741738", - "KF741741", - "KF741740" - ], - "West_Nile_virus__WNV_1_US_BID_V4909_2001" : [ - "HQ671716" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7069_2008" : [ - "KJ189285" - ], - "Streptococcus_intermedius_C270" : [ - "NC_022237" - ], - "Dobrava_Belgrade_virus_Esl_34Aa_01" : [ - "AY961618" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI39_12_DNA_B" : [ - "HE979776" - ], - "Potato_virus_Y__GBVC_PVY_3_NTN" : [ - "JQ969035" - ], - "Dengue_virus_2__DC621Y12" : [ - "KM279535" - ], - "Newcastle_disease_virus__CBU2179" : [ - "JX401404" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI31_12" : [ - "HE979766" - ], - "Porcine_circovirus_2_GD001" : [ - "KM434195" - ], - "Feline_infectious_peritonitis_virus__FCoVWSU791146_P8" : [ - "KC461236" - ], - "Bean_golden_mosaic_virus__BR_Par13_12" : [ - "KJ939820" - ], - "Phormidium_phage_Pf_WMP3" : [ - "NC_009551" - ], - "East_African_cassava_mosaic_virus_KE2__EACMV_KE2_K201" : [ - "AJ704953", - "AJ717541" - ], - "Porcine_circovirus_2__C02_recombinant" : [ - "FJ218002" - ], - "Simian_adenovirus_6_SV_39" : [ - "JQ776547" - ], - "African_swine_fever_virus_Ken06_Bus" : [ - "KM111295" - ], - "Variola_virus_United_Kingdom_1946_Harvey" : [ - "DQ441444" - ], - "Newcastle_disease_virus__SF2" : [ - "KF306265" - ], - "Hepatitis_B_virus__M17" : [ - "GQ924609" - ], - "Mumps_virus_RIT4385" : [ - "FJ211585", - "FJ211584" - ], - "Hollyhock_leaf_crumple_virus____Cairo2" : [ - "AJ542539" - ], - "Wheat_dwarf_virus__SXHC10_10" : [ - "JQ647493" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP2A" : [ - "JN013976" - ], - "Avian_leukosis_virus_Km_6249" : [ - "AB764104" - ], - "HBV_genotype_C__58PU" : [ - "AB560661" - ], - "Hepatitis_B_virus__5_6154" : [ - "JX096956" - ], - "Goose_circovirus__TW6_2001" : [ - "AF536936" - ], - "Lactobacillus_brevis_ATCC_367" : [ - "NC_008499", - "NC_008498", - "NC_008497" - ], - "Hepatitis_C_virus__1030q" : [ - "EU362900" - ], - "Dengue_virus_2_ThD2_0038_74" : [ - "DQ181806" - ], - "Norovirus_GII_Hu_TW_2012_GII_Pe_GII_4_Sydney2012_Taipei_106__Taipei_106" : [ - "KJ196283" - ], - "BK_polyomavirus_MMR_29" : [ - "AB269844" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_198_2011" : [ - "KJ686190" - ], - "Hepatitis_B_virus_362_5" : [ - "KR013922" - ], - "Cucumber_green_mottle_mosaic_virus__JSHZ12" : [ - "KC852073" - ], - "Chikungunya_virus_10Mdy20" : [ - "KF590565" - ], - "Feline_coronavirus_Felis_catus_NLD_UU73_2011" : [ - "KF530120" - ], - "Muscovy_duck_reovirus_YH" : [ - "DQ198854" - ], - "Human_immunodeficiency_virus_1__C_ZA_J54Ma" : [ - "AY463223" - ], - "JC_polyomavirus__TD_19" : [ - "AB077865" - ], - "Human_rhinovirus_A13__F03" : [ - "FJ445117" - ], - "Ovine_lentivirus" : [ - "NC_001511", - "OLVCG" - ], - "Human_papillomavirus_type_58__Rw754" : [ - "HQ537765" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C8" : [ - "KJ019058" - ], - "Mouse_parvovirus_1" : [ - "NC_001630" - ], - "Dengue_virus_2_D2_PF_UH57_1971" : [ - "HM582109" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_MP3_09" : [ - "HQ393470" - ], - "Papaya_leaf_curl_China_virus__G43" : [ - "AJ876548" - ], - "Helicobacter_pylori_UM298" : [ - "NC_021882" - ], - "Hepatitis_B_virus__SEA_02" : [ - "KP017271" - ], - "Hepatitis_B_virus__CX022M_e231" : [ - "KJ173284" - ], - "Human_immunodeficiency_virus_1__ARMA159" : [ - "AF385936" - ], - "Tomato_severe_leaf_curl_virus__NI1" : [ - "AJ508784" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0042" : [ - "KP759711" - ], - "Rickettsia_africae_ESF_5" : [ - "NC_012634", - "NC_012633" - ], - "Dengue_virus_2__DENV_2_US_BID_V1167_1987" : [ - "EU482571" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3822" : [ - "KM233096" - ], - "Sida_leaf_curl_virus_associated_DNA_1" : [ - "DQ641717" - ], - "Human_immunodeficiency_virus_1_LM49_TWCYS" : [ - "AF086817" - ], - "Lactobacillus_acidophilus_NCFM" : [ - "NC_006814" - ], - "Mammalian_orthoreovirus_3__jin_1" : [ - "GU991675", - "GU991672", - "GU991673", - "GU991671", - "GU991670", - "GU991669", - "GU991677", - "GU991676", - "GU991674", - "GU991678" - ], - "Yersinia_phage_YpP_G" : [ - "JQ965702" - ], - "Infectious_salmon_anemia_virus__Brekke_98" : [ - "AF262380" - ], - "BK_polyomavirus__BKV_HC_u5" : [ - "AY628235" - ], - "Infectious_pancreatic_necrosis_virus__S_IPNV_SH96" : [ - "DQ536091" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2362_2000" : [ - "FJ744745" - ], - "Maize_streak_virus__UKas_76" : [ - "EF547080" - ], - "Junonia_coenia_densovirus__Oxford" : [ - "KC883978" - ], - "Garlic_virus_A__GarVA_SP" : [ - "KF632716" - ], - "Goose_circovirus__TW11_2001" : [ - "AF536941" - ], - "Porcine_circovirus_2_TJ1111" : [ - "KC533812" - ], - "Bluetongue_virus_16__TUR2000_01" : [ - "AJ586691" - ], - "Hepatitis_B_virus__CH1" : [ - "DQ823088" - ], - "Merkel_cell_polyomavirus__915F_06_005_FS2" : [ - "JQ479318" - ], - "Monkeypox_virus_Gabon_1988" : [ - "KJ642619" - ], - "Potato_virus_Y_strain_NTN_NTN_Ditta" : [ - "AJ890344" - ], - "Human_immunodeficiency_virus_1__920_49" : [ - "KP718923" - ], - "Canine_pneumovirus_dog_Bari_100_12_ITA_2012" : [ - "NC_025344" - ], - "Equine_arteritis_virus" : [ - "A45589" - ], - "Human_parainfluenza_virus_3_HPIV3_ZAF_3066_2008" : [ - "KF687337" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__NT0801_P30" : [ - "KJ523895" - ], - "Muscovy_duck_reovirus_YJL" : [ - "DQ191363" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5467_2010" : [ - "JF920405" - ], - "Dengue_virus_3__DENV_3_LK_BID_V2411_1989" : [ - "FJ882571" - ], - "Porcine_circovirus_2_T0181c_03__T0181c_03" : [ - "EU057186" - ], - "Human_mastadenovirus_B_human_USA_UFL_Adv35_2004_35_P35H35F35" : [ - "KF268124" - ], - "Hepatitis_B_virus_FMU004" : [ - "AY206375" - ], - "Treponema_pallidum_pertenue_CDC2" : [ - "NC_016848" - ], - "Human_immunodeficiency_virus_1__671_00T162" : [ - "AY423383" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K136" : [ - "AJ717520" - ], - "Maize_streak_virus__MSV_A_MZ_Pem2_Moz37_2007" : [ - "HQ693363" - ], - "Pennisetum_mosaic_virus__CD6" : [ - "JX070156" - ], - "Hepatitis_delta_virus__D2_C" : [ - "KJ744217" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_128_2012" : [ - "KJ686220" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0102" : [ - "KP759657" - ], - "Heliothis_zea_nudivirus" : [ - "AF451898" - ], - "Torque_teno_virus__TTV_HD15d__gbCsCt38_6" : [ - "FR751475" - ], - "Torque_teno_virus__TTV_HD16h__gbDhDi43_1" : [ - "FR751483" - ], - "BK_polyomavirus__THK_11" : [ - "AB211380" - ], - "Ikoma_lyssavirus__RV2508" : [ - "NC_018629" - ], - "Hepatitis_B_virus__KWgib5" : [ - "AB823657" - ], - "Tomato_spotted_wilt_virus__ALPA" : [ - "HQ537114" - ], - "Chikungunya_virus_I_634029" : [ - "HM045803" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9430_2013" : [ - "KJ643507" - ], - "Porcine_circovirus_2__CQQJ13" : [ - "KF742547" - ], - "Tomato_severe_leaf_curl_virus__Rioverde_SLP2" : [ - "DQ347947" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V342_2001" : [ - "EU482877" - ], - "Shewanella_baltica_BA175" : [ - "NC_017572", - "NC_017570", - "NC_017571" - ], - "Coxsackievirus_A6__TW_273_09" : [ - "JQ946051" - ], - "Bacillus_coagulans_2_6" : [ - "NC_015634" - ], - "Merkel_cell_polyomavirus__MCC339" : [ - "EU375804" - ], - "Porcine_circovirus_2_HALY12" : [ - "JX534236" - ], - "BK_polyomavirus__JL" : [ - "AB211370" - ], - "Natronobacterium_gregoryi_SP2" : [ - "NC_019792" - ], - "Dengue_virus_1__DENV_1_VN_BID_V789_2007" : [ - "EU482715" - ], - "Dengue_virus_3_C0331_94" : [ - "AY876494" - ], - "European_mountain_ash_ringspot_associated_virus__E53113" : [ - "HG799723" - ], - "Ralstonia_phage_RSB1" : [ - "NC_011201" - ], - "Bacillus_cereus_ATCC_10987" : [ - "NC_005707", - "NC_003909" - ], - "JC_polyomavirus__PE_16" : [ - "AB081026" - ], - "Lactobacillus_phage_J_1" : [ - "NC_022756" - ], - "Zucchini_tigre_mosaic_virus__VET_026" : [ - "KC345606" - ], - "Wheat_dwarf_virus__GSTS07_1" : [ - "KJ536080" - ], - "Hepatitis_C_virus_subtype_1a__DN03" : [ - "EU781821" - ], - "Porcine_circovirus_2_GXWZ_1" : [ - "FJ426398" - ], - "Chikungunya_virus_1455_75" : [ - "HM045814" - ], - "Hepatitis_B_virus__GU1700" : [ - "GQ161803" - ], - "Strawberry_vein_banding_virus__Shenyang" : [ - "KP311681" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG137A12_09" : [ - "KJ887667" - ], - "Barley_yellow_dwarf_virus_PAV_Ill__PAV_Ill" : [ - "AF235167" - ], - "JC_polyomavirus__JCV161FLC_11" : [ - "JF424919" - ], - "Persimmon_latent_virus_persimmon_isolate" : [ - "NC_023983" - ], - "Actinosynnema_mirum_DSM_43827" : [ - "NC_013093" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2675_2002" : [ - "GQ199897" - ], - "JC_polyomavirus__JCV135_26" : [ - "JF424856" - ], - "Porcine_circovirus_2__Aust_11" : [ - "AY754022" - ], - "Hepatitis_B_virus__WY_SD_14" : [ - "JX504544" - ], - "WU_Polyomavirus__B40" : [ - "GU296381" - ], - "Mycobacterium_tuberculosis_Haarlem" : [ - "NC_022350" - ], - "Saffold_virus" : [ - "NC_009448" - ], - "Canine_picodicistrovirus_236" : [ - "JN819203" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD09_2013" : [ - "KM229807" - ], - "Human_herpesvirus_1__RE" : [ - "KF498959" - ], - "Tobacco_mosaic_virus__WT_L2" : [ - "KF972429" - ], - "Hepatitis_B_virus__HBV_TA37" : [ - "AB555497" - ], - "Dengue_virus_3__DENV_3_US_BID_V1080_2006" : [ - "EU529699" - ], - "Honeysuckle_yellow_vein_Kagoshima_virus__KG5TOB" : [ - "NC_008793" - ], - "Gallus_gallus_enteric_parvovirus__ChPV_798" : [ - "KM598416" - ], - "Human_papillomavirus_type_6__41" : [ - "HG793849" - ], - "African_cassava_mosaic_virus__MG_MG17A33_06" : [ - "KJ887837" - ], - "Infectious_bronchitis_virus_ck_CH_LHLJ_131216" : [ - "KJ425507" - ], - "Calothrix_PCC_7507" : [ - "NC_019682" - ], - "Small_begomovirus_associated_satellite__wf_S36" : [ - "KJ859192" - ], - "Hepatitis_B_virus__blz2147" : [ - "KC774367" - ], - "Hepatitis_B_virus__CAR106" : [ - "AM494702" - ], - "Western_equine_encephalitis_virus_93A38" : [ - "KJ554980" - ], - "BK_polyomavirus_GRC_3" : [ - "AB269829" - ], - "Fowlpox_virus" : [ - "NC_002188" - ], - "Maize_streak_virus__MSV_A1_Za_Tre_A_g141_2006" : [ - "EU628569" - ], - "Cowpox_virus_Germany_1998_2" : [ - "HQ420897" - ], - "Wheat_dwarf_virus__QHXN08_29" : [ - "KJ536147" - ], - "Maize_streak_virus__MSV_A_ZA_War2_Ta1_2008" : [ - "HQ693442" - ], - "Tomato_leaf_curl_Philippines_virus__P108" : [ - "EU487038" - ], - "Hepatitis_C_virus_subtype_1a__DN10" : [ - "EU781817" - ], - "Hepatitis_B_virus__28Y10HCC" : [ - "AB014387" - ], - "Hepatitis_B_virus__PNF4204" : [ - "KF779315" - ], - "Sheldgoose_hepatitis_B_virus__Ashy_headed_sheldgoose_hepatitis_B_virus" : [ - "NC_005890" - ], - "Human_metapneumovirus_HMPV_AUS_159148534_2004_B" : [ - "KC562230" - ], - "Meiothermus_silvanus_DSM_9946" : [ - "NC_014213", - "NC_014214", - "NC_014212" - ], - "Dengue_virus_3__DENV_3_US_BID_V1454_1999" : [ - "EU726774" - ], - "Hepatitis_B_virus__CHIMP_2" : [ - "AF242585" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Henan_A6" : [ - "KJ534541" - ], - "Porcine_circovirus_2__K368_2" : [ - "EU450585" - ], - "JC_polyomavirus__UR_2" : [ - "AB113143" - ], - "West_Nile_virus__WNV_1_US_BID_V6429_2003" : [ - "KJ501457" - ], - "Human_bocavirus_TUN2207" : [ - "JF327786" - ], - "Jingmen_tick_virus__SY84" : [ - "NC_024111", - "NC_024114", - "NC_024113", - "NC_024112" - ], - "Mulberry_mosaic_dwarf_associated_virus__AK1_3" : [ - "KP699128" - ], - "Banana_bunchy_top_virus__KP2" : [ - "FJ859724", - "FJ859737" - ], - "Respiratory_syncytial_virus_B_WI_629_12_06_07" : [ - "JN032116" - ], - "Squash_leaf_curl_virus__JO3_228" : [ - "KM595210" - ], - "Clitoria_yellow_mottle_virus__Larrimah" : [ - "NC_016519" - ], - "Hepatitis_B_virus__D_NZL_Manu_1992" : [ - "HQ700465" - ], - "West_Nile_virus__WNV_1_US_BID_V6649_2001" : [ - "KJ501393" - ], - "Human_immunodeficiency_virus_2__HIV_2_ST" : [ - "HIV2ST" - ], - "Simian_immunodeficiency_virus__UG38" : [ - "JN091690" - ], - "Porcine_circovirus_2__PCV_Y21" : [ - "KC515013" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3451_2006" : [ - "GU131855" - ], - "Norovirus_Hu_GII_4_Toyama2_2007_JP_Hu_GII_4_Toyama2_2007_JP" : [ - "AB541355" - ], - "Human_herpesvirus_3__HHV3_M2DR" : [ - "DQ452050" - ], - "Human_papillomavirus_type_6__65" : [ - "HG793873" - ], - "Foot_and_mouth_disease_virus___type_O__Israel_07_6387" : [ - "FJ175666" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2773_2007" : [ - "GQ199796" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__TUR_13_2013" : [ - "KM268898" - ], - "Hepatitis_B_virus_4512_97" : [ - "EU594394" - ], - "Sweet_potato_golden_vein_associated_virus_Paraiba1_SPGVaV_PB1_BR_CA_08" : [ - "HQ393444" - ], - "Pseudomonas_phage_SN" : [ - "NC_011756" - ], - "Hepatitis_B_virus__795" : [ - "AY233285" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Anjouan_AJ25AE4_2009" : [ - "JF909210" - ], - "Jutiapa_virus_JG_128" : [ - "NC_026620" - ], - "Rhodococcus_phage_ReqiPepy6" : [ - "NC_023735" - ], - "Dengue_virus_2__DENV_2_US_BID_V1031_2006" : [ - "EU482544" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141352" : [ - "KR653284" - ], - "Cotton_leaf_curl_Multan_betasatellite__Islamabad61" : [ - "KR013746" - ], - "Canine_parvovirus_2a__UY280" : [ - "KM457134" - ], - "Hepatitis_B_virus__pt5N" : [ - "KM875410" - ], - "Pseudomonas_phage_vB_PaeP_PPA_ABTNL" : [ - "NC_027375" - ], - "Chicken_anemia_virus__C14" : [ - "EF176599" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA6503_2009" : [ - "KJ672562" - ], - "Synechocystis_PCC_6803_substr__PCC_N" : [ - "NC_017039" - ], - "Human_immunodeficiency_virus_1__CH58E_flA7" : [ - "FJ495939" - ], - "Staphylococcus_phage_47" : [ - "NC_007054" - ], - "Human_respiratory_syncytial_virus__01_002215" : [ - "JQ901450" - ], - "Rice_stripe_virus__GS_JB" : [ - "FJ602677", - "FJ602690" - ], - "Croton_yellow_vein_mosaic_virus__ZI73" : [ - "HG937524" - ], - "Human_enterovirus_71_HZ08_Hangzhou_2008_HZ08" : [ - "HQ400942" - ], - "Rotavirus_C__Belem" : [ - "X77256" - ], - "Porcine_associated_stool_circular_virus__Cass" : [ - "NC_018617" - ], - "Plum_pox_virus_PPV_D_Ok1" : [ - "AB576056" - ], - "Southern_rice_black_streaked_dwarf_virus__LX1" : [ - "KJ513448", - "KJ493787" - ], - "JC_polyomavirus__JCV135_04" : [ - "JF424837" - ], - "Thermoplasma_volcanium_GSS1" : [ - "NC_002689" - ], - "Tomato_yellow_leaf_curl_virus__KSCDa" : [ - "JX456644" - ], - "Cotton_leaf_curl_Allahabad_virus__India_Karnal_OY77_2005___OY77" : [ - "NC_014897" - ], - "Bean_yellow_dwarf_virus" : [ - "NC_003493" - ], - "Beak_and_feather_disease_virus__2NC38F" : [ - "JX049205" - ], - "Torque_teno_virus__P_1C1" : [ - "AF298585" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c2P20_2009_c2P20" : [ - "KF514409" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_M105A_2005" : [ - "JQ319173" - ], - "Infectious_bursal_disease_virus_Australian_002_73" : [ - "X03993" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3817" : [ - "KM233091" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_299_2012" : [ - "KP308421" - ], - "Streptococcus_phage_2972" : [ - "NC_007019" - ], - "Hepatitis_C_virus_subtype_1b__LyHCVserumSR" : [ - "AB779562" - ], - "Porcine_circovirus_2_Fd11" : [ - "AY321988" - ], - "Squash_leaf_curl_virus__Homra" : [ - "JX444577", - "JX444574" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9553_2013" : [ - "KJ643585" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_91I_020A_01_1991" : [ - "KJ723480" - ], - "African_cassava_mosaic_virus__MG_MG88A1_06" : [ - "KJ887901" - ], - "Human_poliovirus_1_NIE0918390" : [ - "KJ170524" - ], - "Newcastle_disease_virus_LaSota_VRDC_Clone_LM2_P3" : [ - "KJ563936" - ], - "Buchnera_aphidicola_Ua__Uroleucon_ambrosiae" : [ - "NC_017261", - "NC_017260", - "NC_017259" - ], - "Thogoto_virus_SiAr126" : [ - "NC_006506", - "NC_006504" - ], - "Candidatus_Carsonella_ruddii_CE_isolate_Thao2000" : [ - "NC_018414" - ], - "Mycobacterium_phage_SG4_SG4" : [ - "NC_023699" - ], - "Ilheus_virus_Original" : [ - "NC_009028" - ], - "Dendrolimus_punctatus_cypovirus_22__Macheng" : [ - "NC_025852", - "NC_025838", - "NC_025853", - "NC_025844", - "NC_025845", - "NC_025842", - "NC_025840", - "NC_025839", - "NC_025843", - "NC_025850", - "NC_025841", - "NC_025846", - "NC_025848", - "NC_025851", - "NC_025849", - "NC_025847" - ], - "Apple_chlorotic_leaf_spot_virus__Z3" : [ - "JN634761" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD212_2013" : [ - "KM229862" - ], - "Dengue_virus_2__DENV_2_NI_BID_V633_2006" : [ - "EU482634" - ], - "Rift_Valley_fever_virus_2373_74" : [ - "DQ375432", - "DQ380159", - "DQ380194" - ], - "Pseudomonas_phage_JBD30" : [ - "NC_020198" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3879_2008" : [ - "GU131712" - ], - "Hepatitis_B_virus__Cuba100" : [ - "KM606752" - ], - "Hepatitis_B_virus__CAR115" : [ - "AM494705" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3744_2008" : [ - "GQ868529" - ], - "Tomato_leaf_curl_New_Delhi_virus__Multan_Duranta_repens" : [ - "AM392426" - ], - "West_Nile_virus__WNV_1_US_BID_V7773_2012" : [ - "KJ501222" - ], - "Torque_teno_virus__JT41F" : [ - "AB064603" - ], - "Maize_streak_virus__MSV_A_ZM_Chi9_Z17_2008" : [ - "HQ693460" - ], - "Human_papillomavirus_type_6__LPX32" : [ - "HE962028" - ], - "Dengue_virus_4__DENV_4_US_BID_V1093_1998" : [ - "EU854296" - ], - "Gallus_gallus_enteric_parvovirus__ChPV_736" : [ - "KM598415" - ], - "Porcine_circovirus_2__JX3" : [ - "KP824717" - ], - "Maize_streak_virus__MSV_A1_Za_ThoE_g132_2006" : [ - "EU628568" - ], - "Tomato_yellow_leaf_curl_virus___Mild_Portugal__Portugal" : [ - "AF105975" - ], - "Dengue_virus_3__DENV_3_CO_BID_V2978_2001" : [ - "GQ199891" - ], - "Rice_stripe_virus__YSDi28" : [ - "KP083235", - "KP083243" - ], - "West_Nile_virus__AVA1202621" : [ - "KC736490" - ], - "Temperate_fruit_decay_associated_virus__MFBpe2" : [ - "KR134326" - ], - "Hepatitis_B_virus_G683_1" : [ - "AF363961" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8435_2010" : [ - "KJ627358" - ], - "Porcine_circovirus_2__SD05" : [ - "FJ644563" - ], - "Hepatitis_E_virus__JKO_Aba_FH06C" : [ - "AB291967" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4254_1" : [ - "KR105225" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K72" : [ - "AJ717527", - "AJ704974" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3713_4" : [ - "KM233052" - ], - "Yellow_fever_virus_BeH622205" : [ - "JF912187" - ], - "Foot_and_mouth_disease_virus___type_O_O1_Campos_o1campos_iso96" : [ - "AY593818" - ], - "Bean_golden_mosaic_virus__BR_Una13_12" : [ - "KJ939833" - ], - "Ryegrass_mosaic_virus_RGMV_AV__Australia_Victoria" : [ - "AF035818" - ], - "Dengue_virus_1__DENV_1_US_BID_V2133_1993" : [ - "FJ410184" - ], - "Coprothermobacter_proteolyticus_DSM_5265" : [ - "NC_011295" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__SD0901" : [ - "JN256115" - ], - "Spring_viraemia_of_carp_virus__A1" : [ - "DQ097384" - ], - "Lettuce_mosaic_virus__Tn517_ev" : [ - "KJ161193" - ], - "Human_immunodeficiency_virus_1__93TH062" : [ - "AB220947" - ], - "Human_respiratory_syncytial_virus_A_WI_629_4239_98" : [ - "JF920057" - ], - "Bovine_parainfluenza_virus_3__HS9" : [ - "LC000638" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__AIT" : [ - "DQ871220", - "DQ871222" - ], - "Potato_virus_Y__GBVC__PVY_10_N" : [ - "JQ969036" - ], - "Ross_River_virus_QML_1" : [ - "GQ433354" - ], - "Hepatitis_B_virus__0121_20" : [ - "DQ060824" - ], - "Hepatitis_B_virus__306" : [ - "AY233282" - ], - "Hepatitis_delta_virus_Miyako_JA_M10" : [ - "AB118825" - ], - "Human_poliovirus_3_NIE1018493" : [ - "KJ170639" - ], - "Coxsackievirus_A16_CC045" : [ - "KF055241" - ], - "Hepatitis_B_virus__209_1119_Nature1_1_unSero" : [ - "DQ993689" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8510_2003" : [ - "KJ627718" - ], - "Potato_virus_X_HB_HARPENDEN_ISOLATE" : [ - "Z23256" - ], - "Tomato_leaf_curl_Patna_virus" : [ - "NC_012492" - ], - "Tomato_yellow_leaf_curl_virus__SDSGGC" : [ - "KC999845" - ], - "Human_papillomavirus_type_35__UA892" : [ - "JX129487" - ], - "Hepatitis_B_virus__G376_7" : [ - "AF384371" - ], - "Sugarcane_yellow_leaf_virus__IND4" : [ - "JF925155" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7692_2012" : [ - "KF973474" - ], - "Siegesbeckia_yellow_vein_Guangxi_virus_satellite_DNA_beta__G111" : [ - "AM238695" - ], - "Porcine_epidemic_diarrhea_virus_TC_PC170_P2" : [ - "KM392227" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1521_2007" : [ - "EU677150" - ], - "Hepatitis_B_virus__919083" : [ - "JN040793" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10BJ_1" : [ - "JQ663541" - ], - "Wheat_dwarf_virus__SXHC10_7" : [ - "JQ647490" - ], - "Human_immunodeficiency_virus_1__BREPM278" : [ - "AY771593" - ], - "Deinococcus_gobiensis_I_0" : [ - "NC_017771", - "NC_017806", - "NC_017793", - "NC_017791", - "NC_017805", - "NC_017792", - "NC_017790" - ], - "Hepatitis_B_virus__S307" : [ - "FJ386663" - ], - "Enterococcus_phage_phiEF24C_phiEF24C" : [ - "NC_009904" - ], - "Chilli_leaf_curl_betasatellite" : [ - "AM279669", - "AM258978", - "FN179279", - "AM279673", - "NC_005048", - "AM849549", - "AM279662", - "AM279672", - "AM279664", - "AM279661", - "FR751147", - "AM279663", - "AM279670", - "AM279665", - "AM279671", - "AM279667", - "AM279668", - "FJ515274" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_Galah_04_298" : [ - "KF385435" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0120" : [ - "KP759599" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_287_2012" : [ - "KP308428" - ], - "Porcine_epidemic_diarrhea_virus_USA_Oklahoma32_2013" : [ - "KJ645640" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3827_2007" : [ - "GU131913" - ], - "Hepatitis_B_virus__1798" : [ - "FJ386584" - ], - "Kyasanur_forest_disease_virus_KFD_P_9605" : [ - "HM055369" - ], - "Chicken_anemia_virus__Cux_1" : [ - "AJ297685", - "AJ297684" - ], - "Hepatitis_B_virus__Occult_HBV320" : [ - "KJ410505" - ], - "Human_immunodeficiency_virus_1_CRF01_AE_FJ054" : [ - "DQ859180" - ], - "Hepatitis_B_virus__1998" : [ - "FJ386608" - ], - "Ljungan_virus_87_012G" : [ - "EF202833" - ], - "Hepatitis_B_virus__C235" : [ - "EU939675" - ], - "Hepatitis_B_virus__I50" : [ - "FJ562235" - ], - "Human_immunodeficiency_virus_1__99ZASW7" : [ - "AF411966" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9524_2013" : [ - "KJ643571" - ], - "Chickpea_chlorosis_Australia_virus__3768C" : [ - "KC172687" - ], - "Enterovirus_A71__EV71_wuhan_3018_2010" : [ - "KF501389" - ], - "Croton_yellow_vein_mosaic_virus__CYVMV_WB_Cr" : [ - "JN817517" - ], - "Hepatitis_C_virus_subtype_1a__02_35" : [ - "EU781795" - ], - "Human_poliovirus_1_NIE1118373" : [ - "KJ170527" - ], - "Hepatitis_B_virus__HBV_Ry46" : [ - "AB073856" - ], - "Middle_East_respiratory_syndrome_coronavirus__Riyadh_9_2013" : [ - "KJ156869" - ], - "Mungbean_yellow_mosaic_India_virus____Akola___Akola" : [ - "AY271893", - "AY271894" - ], - "Pyrobaculum_aerophilum_IM2" : [ - "NC_003364" - ], - "Gallid_herpesvirus_1_CEO_high_passage" : [ - "JN580316" - ], - "Human_poliovirus_1_NIE1118334" : [ - "KJ170471" - ], - "Pseudomonas_phage_D3" : [ - "NC_002484" - ], - "Newcastle_disease_virus__VRDC_Ventri_LaSota_WS" : [ - "KJ563940" - ], - "Dengue_virus_3__DENV_3_US_BID_V1455_1999" : [ - "EU687219" - ], - "Potato_virus_Y__HN2" : [ - "GQ200836" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5370_1" : [ - "KR105306" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0005" : [ - "KP759628" - ], - "Tomato_leaf_curl_Philippines_virus__P115" : [ - "EU487039" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_10" : [ - "EU384615" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8482_2001" : [ - "KJ627703" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__KSA27_DNA1_1" : [ - "HG530544" - ], - "Newcastle_disease_virus_VG_GA" : [ - "EU289029", - "EU289028" - ], - "Lactococcus_phage_Q54" : [ - "NC_008364" - ], - "Chlamydia_psittaci_VS225" : [ - "NC_018638", - "NC_018621" - ], - "Cucumber_mosaic_virus_CMV_Ts_Lucknow" : [ - "EF153734" - ], - "Hepatitis_B_virus__PhLC03" : [ - "AB241110" - ], - "Hepatitis_B_virus__919025" : [ - "JN040813" - ], - "Human_rhinovirus_B79_ATCC_VR_1189" : [ - "FJ445155" - ], - "Norovirus_Hu_GII_4_CGMH20_2009_TW" : [ - "JN400618" - ], - "Maize_streak_virus__MSV_A_GH_gh127_Ada_2010" : [ - "KJ699316" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3548_2000" : [ - "GU131832" - ], - "Hepatitis_B_virus__SWT1_2" : [ - "EU916234" - ], - "Hepatitis_B_virus__MY501032" : [ - "KJ803803" - ], - "Feline_foamy_virus__FUV" : [ - "NC_001871", - "Y08851" - ], - "Cotton_leaf_curl_Multan_betasatellite__Himachal" : [ - "HG965237" - ], - "WU_Polyomavirus__O342" : [ - "GU296362" - ], - "Hepatitis_B_virus__JFA3864" : [ - "KF779258" - ], - "Marburg_marburgvirus_Uganda_02Uga07_811225" : [ - "FJ750953" - ], - "Human_immunodeficiency_virus_1__pXJDC6291_2_7" : [ - "KC503853" - ], - "Powassan_virus__DTVWiB08" : [ - "HM440561" - ], - "Cyclovirus_VN__cs1" : [ - "KF031471" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI52_12_DNA_B" : [ - "HE979780" - ], - "Vaccinia_virus" : [ - "KJ467597", - "KJ467594", - "KJ467611", - "KJ467596", - "KJ467601", - "KJ467616", - "KJ467584", - "KJ467591", - "KJ467614", - "KJ467590", - "KJ467583", - "KJ467595", - "KJ467608", - "KJ467585", - "KJ467609", - "KJ467607", - "KJ467598", - "KJ467587", - "KJ467612", - "KJ467586", - "KJ467615", - "KJ467613", - "KJ467602", - "KJ467588", - "KJ467606", - "KJ467600", - "KJ467603", - "KJ467599", - "KJ467593", - "KJ467610", - "KJ467604", - "KJ467582", - "KJ467605", - "KJ467589", - "KJ467592" - ], - "MW_polyomavirus__HN104" : [ - "KC571705" - ], - "Dengue_virus_1__DENV_1_VN_BID_V833_2006" : [ - "EU482827" - ], - "Roseobacter_phage_RDJL_Phi_1" : [ - "NC_015466" - ], - "Hepatitis_B_virus__Osang" : [ - "AY330912" - ], - "Hepatitis_B_virus_genotype_E_HBV_E_Ch195" : [ - "AB032431" - ], - "Tomato_common_mosaic_virus__BR_Pda42_05" : [ - "KC706590" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_310_2012" : [ - "KP308402" - ], - "Human_poliovirus_2_NIE1018445" : [ - "KJ170547" - ], - "Dengue_virus_1__DENV_1_CO_BID_V3391_2008" : [ - "GQ868570" - ], - "West_Nile_virus__TX_2003" : [ - "DQ164199" - ], - "Dengue_virus_2_DENV_2_SG_07K3588DK1_2007" : [ - "GQ398267" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_412N1__412N1" : [ - "JN819498" - ], - "Human_immunodeficiency_virus_1__03ZAPS042MB1" : [ - "DQ369977" - ], - "BK_polyomavirus__THK_8" : [ - "AB211390" - ], - "Influenza_A_virus__A_Korea_426_1968_H2N2___A_Korea_426_1968" : [ - "NC_007376", - "NC_007381", - "NC_007382", - "NC_007377", - "NC_007380", - "NC_007374", - "NC_007375", - "NC_007378" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_43_2012" : [ - "KJ686139" - ], - "Pseudomonas_phage_P3_CHA" : [ - "KC862296" - ], - "Hepatitis_B_virus__M3" : [ - "KF584160", - "GQ924604" - ], - "Foot_and_mouth_disease_virus___type_O__TAW_2_99_TC" : [ - "AJ539136" - ], - "Hepatitis_B_virus__S852_10" : [ - "EU589341" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B162a_2008" : [ - "GU936292" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_17__AHEaCV_17_NZ_2032CO_2012" : [ - "NC_026645" - ], - "Enterobacter_phage_EcP1" : [ - "NC_019485" - ], - "Burkholderia_vietnamiensis_G4" : [ - "NC_009228", - "NC_009255", - "NC_009256", - "NC_009254", - "NC_009226", - "NC_009229", - "NC_009230", - "NC_009227" - ], - "Dengue_virus_3__DENV_3_US_BID_V859_1998" : [ - "EU482596" - ], - "Macacine_herpesvirus_1__E90_136" : [ - "KJ566591" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2770_2007" : [ - "GQ199794" - ], - "Porcine_circovirus_2__DBN_07" : [ - "FJ660968" - ], - "Chilli_leaf_curl_betasatellite__India_Punjab_TC241_2009" : [ - "KJ605111" - ], - "Coxsackievirus_B3_P" : [ - "AF231764" - ], - "Human_herpesvirus_4_1_LGY_C666_1" : [ - "AB828190" - ], - "Human_bocavirus_BJ3064" : [ - "DQ988933" - ], - "Vibrio_vulnificus_CMCP6" : [ - "NC_004459", - "NC_004460" - ], - "HBV_recombinant_B_C__NAB20" : [ - "AB644282" - ], - "Pseudoalteromonas_phage_pYD6_A_pYD6_A" : [ - "NC_020849" - ], - "Hepatitis_B_virus__I167" : [ - "FJ562293" - ], - "Grapevine_virus_E__WAHH2" : [ - "JX402759" - ], - "Hepatitis_B_virus__J41" : [ - "GQ377534" - ], - "Trichomonas_vaginalis_virus_3_TVV3_OC3" : [ - "HQ607519" - ], - "Leuconostoc_phage_P793" : [ - "NC_020880" - ], - "West_Nile_virus__WNV_1_US_BID_V6409_2001" : [ - "KJ501283" - ], - "Tomato_mosaic_virus_L11Y" : [ - "AB355139" - ], - "Anaplasma_phagocytophilum_HZ2" : [ - "NC_021879" - ], - "Human_adenovirus_27" : [ - "JN226753" - ], - "Dengue_virus_2__DENV_2_US_BID_V1058_1994" : [ - "EU529695" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1206_2007" : [ - "EU569696" - ], - "SARS_coronavirus_MA15_MA15_d2om4" : [ - "HQ890545" - ], - "Nanovirus_like_particle__Bihar" : [ - "GQ374450" - ], - "Newcastle_disease_virus_pigeon_Yunnan_1111_2013" : [ - "KM374056" - ], - "African_cassava_mosaic_virus__CF_CF11B_07" : [ - "KJ887585" - ], - "Porcine_circovirus_2_SZ" : [ - "AY181948" - ], - "West_Nile_virus__WNV_1_US_BID_V4612_2003" : [ - "HM488230" - ], - "Maize_streak_virus__MSV_A_BF_Oua1_BF4_2008" : [ - "HQ693284" - ], - "Tomato_yellow_leaf_curl_virus__HBFN" : [ - "KC702797" - ], - "Epizootic_hemorrhagic_disease_virus_2__600041" : [ - "EHDSEG2D" - ], - "Enterovirus_B97_BAN99_10355" : [ - "AY843307" - ], - "Kenaf_leaf_curl_betasatellite" : [ - "FN678779" - ], - "Hepatitis_B_virus__Q1_1" : [ - "AY217376" - ], - "Sugarcane_yellow_leaf_virus__CHN_YL1" : [ - "AM072751" - ], - "Bradyrhizobium_S23321" : [ - "NC_017082" - ], - "Mannheimia_succiniciproducens_MBEL55E" : [ - "NC_006300" - ], - "Dengue_virus_1__DS212_110306" : [ - "EU179861" - ], - "Hepatitis_B_virus__PNF4312" : [ - "KF779318" - ], - "Wheat_dwarf_virus__SDJN07_8" : [ - "KJ536104" - ], - "Maize_streak_virus__MSV_A_KE_Kar_K1_2006" : [ - "FJ882092" - ], - "JC_polyomavirus__JCV183FLC_10" : [ - "JF425497" - ], - "Bovine_leukemia_virus__469_wild_type" : [ - "LC005615" - ], - "Hepatitis_B_virus_Ehi_MM_lam_1_3" : [ - "AB195932" - ], - "Hepatitis_B_virus__S367" : [ - "FJ386666" - ], - "Human_poliovirus_1_NIE1118375" : [ - "KJ170532" - ], - "Torque_teno_sus_virus_1b__TTV2Bj7_3" : [ - "HM633219" - ], - "Porcine_parvovirus_4_JS0918a" : [ - "HM031134" - ], - "Hepatitis_B_virus__clz2125" : [ - "KC774215" - ], - "Human_immunodeficiency_virus_1__14188_1" : [ - "DQ853446" - ], - "Human_papillomavirus_type_6__6" : [ - "HG793814" - ], - "Rift_Valley_fever_virus_OS_9" : [ - "DQ375397", - "DQ380183", - "DQ380179" - ], - "Porcine_circovirus_2_WH1005" : [ - "JX982226" - ], - "Hepatitis_B_virus__HBV_TA64" : [ - "AB555500" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dar_Beta_15" : [ - "EU384597" - ], - "Rotavirus_G9_US1206" : [ - "AJ250271" - ], - "Propionibacterium_phage_PHL092M00__PHL092M00" : [ - "NC_027385" - ], - "Streptococcus_pneumoniae_SPN034156" : [ - "NC_021006" - ], - "Hepatitis_B_virus__E1_3" : [ - "GU815684" - ], - "Tobacco_mosaic_virus__Changle_9" : [ - "HE818411" - ], - "Lymantria_xylina_MNPV__LyxyMNPV_5" : [ - "NC_013953" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_336_2012" : [ - "KP308459" - ], - "Corynebacterium_glutamicum_R" : [ - "NC_009342", - "NC_009343" - ], - "Norovirus_Hu_Guangzhou_NVgz01_CHN_Hu_Guangzhou_NVgz01_CHN" : [ - "DQ369797" - ], - "Hepatitis_B_virus__SHB5103" : [ - "KJ598718" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_NM042_2" : [ - "KM233117" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo194_08" : [ - "KC706562", - "KC706557" - ], - "Legionella_longbeachae_NSW150" : [ - "NC_013861", - "NC_014544" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7694_2012" : [ - "KF973486" - ], - "Tomato_yellow_leaf_curl_virus__DT2" : [ - "JN604488" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1792_2007" : [ - "FJ432734" - ], - "Bean_golden_mosaic_virus__BR_Rec1_05" : [ - "KJ939710" - ], - "Hepatitis_B_virus_362_15" : [ - "KR013914" - ], - "Hepatitis_B_virus__QH_29" : [ - "JF491448" - ], - "Mycobacterium_phage_Taj" : [ - "NC_025433" - ], - "Porcine_circovirus_2_jvnan" : [ - "KP313254" - ], - "Norovirus_Hu_GII_4_CGMH21_2010_TW" : [ - "JN400619" - ], - "Hepatitis_B_virus__3658v1" : [ - "KF922433" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3498A_2002" : [ - "JN989434" - ], - "Hamster_polyomavirus__Berlin_Buch" : [ - "NC_001663" - ], - "West_Nile_virus__WNV_1_Culex_BID_V5768_midgut" : [ - "JN183895" - ], - "Dengue_virus_2_DENV_2_PR_47DN_1994" : [ - "GQ398302" - ], - "Avian_leukosis_virus" : [ - "AB112960" - ], - "Pseudomonas_phage_phi8" : [ - "NC_003301", - "NC_003300", - "NC_003299" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL117A" : [ - "AB985553", - "AB985321" - ], - "Simian_rotavirus_rrv" : [ - "X81426" - ], - "Dengue_virus_3__DENV_3_VE_BID_V906_2001" : [ - "EU482613" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G19086_7444_1996_25809_1996" : [ - "KR135314" - ], - "Staphylococcus_phage_55_2" : [ - "KR709302" - ], - "Saffold_virus__Pak_2325" : [ - "AB747257" - ], - "Hepatitis_B_virus__MOD_4588" : [ - "GQ183451" - ], - "Dengue_virus_1__DENV_1_BR_BID_V3490_2008" : [ - "GU131863" - ], - "South_African_cassava_mosaic_virus__MG_MG337A3_10" : [ - "KJ887699" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0002" : [ - "KP759640" - ], - "Daphne_mosaic_virus" : [ - "NC_008028" - ], - "Norovirus_Hu_GII_4_Sakai4_2008_JP_Hu_GII_4_Sakai4_2008_JP" : [ - "AB541345" - ], - "Tomato_leaf_curl_China_betasatellite__Y330" : [ - "AM260727" - ], - "Chickpea_chlorotic_dwarf_virus__K_ErC86_05" : [ - "KC172679" - ], - "Barley_mild_mosaic_virus_common_UK_M" : [ - "Y10974" - ], - "Pantoea_vagans_C9_1" : [ - "NC_014561", - "NC_014562", - "NC_014258", - "NC_014563" - ], - "Xylella_fastidiosa_M12" : [ - "NC_010513" - ], - "Human_papillomavirus_type_16__Amazonian" : [ - "HM057182" - ], - "Dengue_virus_2__DENV_2_US_BID_V1170_1987" : [ - "EU482574" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V3922_2008" : [ - "GU131924" - ], - "Newcastle_disease_virus_APMV_1_chicken_NL_152608_93_152608" : [ - "JN986837" - ], - "Dengue_virus_4_VE_61054_2007" : [ - "HQ332176" - ], - "Pseudomonas_phage_Pf1_ATCC_25102_B1" : [ - "NC_001331" - ], - "Rift_Valley_fever_virus_Sudan_133_2007" : [ - "JQ820478" - ], - "Transmissible_gastroenteritis_virus__AYU" : [ - "HM776941" - ], - "West_Nile_virus__WNV_1_US_BID_V4717_2003" : [ - "HM488250" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4416_1" : [ - "KR105248" - ], - "BK_polyomavirus__LAB_27" : [ - "AB301095" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2755_2007" : [ - "GQ199779" - ], - "Rabies_virus__8743THA" : [ - "EU293121" - ], - "Hepatitis_B_virus_wild_type__adw__patient_6" : [ - "X97851" - ], - "Cauliflower_mosaic_virus__GRC92D" : [ - "AB863202" - ], - "Bluetongue_virus__N_15_Hyd" : [ - "AM261975" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_90_2012" : [ - "KJ686245" - ], - "Rhodococcus_erythropolis_PR4" : [ - "NC_012490", - "NC_007491", - "NC_007486", - "NC_007487" - ], - "Hibiscus_green_spot_virus__WAI_1_1" : [ - "NC_016143", - "NC_016142", - "NC_016141" - ], - "Bluetongue_virus_8054_02" : [ - "AY775162" - ], - "Pelargonium_ringspot_virus__DSMZ_PV0304" : [ - "NC_026240" - ], - "SARS_coronavirus_MA_15" : [ - "DQ497008" - ], - "JC_polyomavirus__SA27_03" : [ - "AY536243" - ], - "Coxsackievirus_A16_changchun029" : [ - "KF055240" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_USA_Minnesota188_2014" : [ - "KM077139" - ], - "Porcine_circovirus_1_sc_4" : [ - "DQ472014" - ], - "Hepatitis_B_virus__Cuba60" : [ - "KM606750" - ], - "Equine_arteritis_virus_F62" : [ - "JN211319" - ], - "West_Nile_virus__WNV_1_US_BID_V5219_2008" : [ - "JF920748" - ], - "SARS_coronavirus_PUMC03__PUMC03" : [ - "AY357076" - ], - "Enterovirus_A71__EV054_07" : [ - "HQ647167" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2639_2007" : [ - "JN819420" - ], - "Hepatitis_E_virus__HE_JF5_15F_p6" : [ - "AB480825" - ], - "Human_papillomavirus_type_18__Qv21444" : [ - "EF202153" - ], - "Dengue_virus_2__DENV_2_VN_BID_V727_2006" : [ - "EU482664" - ], - "Acinetobacter_phage_133_Acj133" : [ - "NC_015250" - ], - "Human_immunodeficiency_virus_1__Fj062" : [ - "EF036531" - ], - "Bhendi_yellow_vein_India_virus__India_Tumkur_OYTumkur_2006___OY_Tumkur" : [ - "GU112049" - ], - "Mycobacterium_phage_Phrux" : [ - "NC_021309" - ], - "Invertebrate_iridescent_virus_6" : [ - "NC_003038" - ], - "Tomato_chlorotic_leaf_distortion_virus__Venezuela_Zulia_2004" : [ - "NC_015961", - "NC_015962" - ], - "Mungbean_yellow_mosaic_India_virus__14" : [ - "AJ512495" - ], - "West_Nile_virus__WNV_1_US_BID_V6560_2003" : [ - "KJ501508" - ], - "Hepatitis_delta_virus__Patient_A" : [ - "X85253" - ], - "Hepatitis_B_virus__HBV_G758_2" : [ - "AB205129" - ], - "Beak_and_feather_disease_virus__BFDV_T_PL_336_2007" : [ - "JX221018" - ], - "Honeysuckle_yellow_vein_mosaic_virus__Nara1___Nara1" : [ - "AB287440" - ], - "African_cassava_mosaic_Burkina_Faso_virus__BF_Oua_BF128B_08" : [ - "HE616780" - ], - "Zalophus_californianus_papillomavirus_1_ZcPV1_2008" : [ - "NC_015325" - ], - "Acinetobacter_baumannii_ACICU" : [ - "NC_010606", - "NC_010605", - "NC_010611" - ], - "Chilli_leaf_curl_betasatellite__RKB1" : [ - "KJ700654" - ], - "Newcastle_disease_virus_chicken_TC_9_2011" : [ - "KC461214" - ], - "Apple_chlorotic_leaf_spot_virus_plum_pseudopox_PBM1" : [ - "AJ243438" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dav_alpha_16" : [ - "EU384627" - ], - "Human_poliovirus_1__TCDC01_330" : [ - "AF538842" - ], - "Turnip_mosaic_virus_YC5" : [ - "AF530055" - ], - "Burkholderia_thailandensis_E264" : [ - "NC_007651", - "NC_007650" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_347" : [ - "JQ765572" - ], - "Helicobacter_pylori_26695" : [ - "NC_000915" - ], - "Helicobacter_pylori_Rif2" : [ - "NC_018938" - ], - "Watermelon_silver_mottle_virus__Taiwan" : [ - "NC_003841" - ], - "Hepatitis_B_virus_362_11" : [ - "KR013912" - ], - "Beet_western_yellows_virus_BWYV_Shimizu" : [ - "AB903032" - ], - "Hepatitis_B_virus__M94" : [ - "GQ924657" - ], - "Hepatitis_B_virus__SHB56" : [ - "KJ598707" - ], - "JC_polyomavirus__CA_9" : [ - "AB126982" - ], - "Banana_bunchy_top_virus__aP34" : [ - "AB250957", - "AB250954" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7544_2009_A" : [ - "KJ627390" - ], - "Human_papillomavirus_type_42__TJ43_42" : [ - "GQ472847" - ], - "Hepatitis_B_virus__A1_50090" : [ - "FJ692584" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5492_2010" : [ - "JN093515" - ], - "Rice_black_streaked_dwarf_virus__SDJNi1" : [ - "HM188539" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_423_01" : [ - "DQ989319" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_Galah_04_065" : [ - "KF385431" - ], - "Turnip_mosaic_virus__ASP" : [ - "AB701697" - ], - "Human_immunodeficiency_virus_1__98BW21_17" : [ - "AF192135" - ], - "Vibrio_vulnificus_MO6_24_O" : [ - "NC_014966", - "NC_014965" - ], - "Turnip_mosaic_virus__ESP1" : [ - "AB701706" - ], - "Human_parechovirus_4_T75_4077" : [ - "AM235750" - ], - "Xanthomonas_campestris_8004" : [ - "NC_007086" - ], - "Human_immunodeficiency_virus_1__00BW2063_6" : [ - "AF443103" - ], - "Sida_golden_yellow_vein_virus_Malvastrum__CU_Camaguey_177_09___177" : [ - "HQ896203" - ], - "Pennisetum_mosaic_virus__AZ4" : [ - "JX070141" - ], - "Simian_adenovirus_50__18222" : [ - "HQ241820" - ], - "Propionibacterium_phage_PHL064M01__PHL064M01" : [ - "NC_027338" - ], - "West_Nile_virus__WNV_1_US_BID_V4572_2003" : [ - "HM488214" - ], - "Torque_teno_sus_virus_1a__TTV1Hlj5" : [ - "HM633254" - ], - "Hepatitis_delta_virus_dFr2040_dFr2040" : [ - "AM902178" - ], - "Bluetongue_virus_2__ITL2002_05" : [ - "AJ586669" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2665_2000" : [ - "FJ850066" - ], - "Hepatitis_B_virus__HK1814" : [ - "DQ089768" - ], - "Hepatitis_B_virus__pt16T" : [ - "KM875431" - ], - "Tomato_leaf_curl_China_betasatellite__Y321" : [ - "AM260728" - ], - "Dengue_virus_3__DENV_3_US_BID_V1079_2006" : [ - "EU529698" - ], - "Hepatitis_B_virus__HBV32" : [ - "KC875281" - ], - "Ndumu_virus" : [ - "NC_016959" - ], - "TGEV_Miller_M60_partially_attenuated_Miller_M60" : [ - "DQ811786" - ], - "Echovirus_E6_2005_29_1" : [ - "KP266568" - ], - "Hepatitis_B_virus__CHI1" : [ - "FJ709457" - ], - "Human_rhinovirus_A78_ATCC_VR_1188" : [ - "FJ445183" - ], - "Mungbean_yellow_mosaic_virus___Vigna__KA28" : [ - "AJ439058" - ], - "Hepatitis_B_virus__KOR38HCC" : [ - "GQ475342" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota94_2013" : [ - "KJ645686" - ], - "Dengue_virus_1__DENV_1_VN_BID_V973_2007" : [ - "EU482517" - ], - "Bovine_viral_diarrhea_virus_3__Italy_68_13ncp" : [ - "KJ627179" - ], - "Swine_hepatitis_E_virus_SS19" : [ - "JX855794" - ], - "Human_poliovirus_2_NIE1118447" : [ - "KJ170566" - ], - "Hepatitis_B_virus__6_D1_5_6" : [ - "GU815651" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_HP65_2009_1" : [ - "JF912084", - "JF912085" - ], - "Stigmatella_aurantiaca_DW4_3_1" : [ - "NC_014623" - ], - "Vibrio_phage_J2" : [ - "NC_027393" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4168_legs" : [ - "HQ705672" - ], - "Rice_black_streaked_dwarf_virus_2__GD" : [ - "FN563983", - "FN563985", - "FN563987", - "FN563988", - "FN563986", - "FN563984" - ], - "Dengue_virus_1_D1_hu_Yap_NIID27_2004" : [ - "AB204803" - ], - "Bovine_parvovirus" : [ - "NC_001540" - ], - "Hepatitis_B_virus_951_8a" : [ - "KR013826" - ], - "Enterovirus_A71_BJ09_07" : [ - "JQ319054" - ], - "Hepatitis_B_virus__Occult_HK534" : [ - "KJ410503" - ], - "Bean_golden_mosaic_virus__BR_Cno2_05" : [ - "KJ939713" - ], - "Human_foamy_virus" : [ - "Y07725", - "Y07724" - ], - "Enterobacteria_phage_MS2__DL16" : [ - "EF108464" - ], - "Hepatitis_B_virus__919029" : [ - "JN040781" - ], - "Usutu_virus_2794" : [ - "KJ438767" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FLA0166_2008" : [ - "KJ627280" - ], - "Dengue_virus_3__98TW358" : [ - "DQ675522" - ], - "Acetobacter_pasteurianus_IFO_3283_07" : [ - "NC_017144", - "NC_017143", - "NC_017110", - "NC_017123", - "NC_017121", - "NC_017122", - "NC_017124" - ], - "Human_immunodeficiency_virus_1__97VNAG216" : [ - "FJ185254" - ], - "Rotavirus_A_MRC_DPRU1424_RVA_Human_wt_CMR_MRC_DPRU1424_2009_G9P_8" : [ - "JN605407", - "JN605411", - "JN605409", - "JN605408", - "JN605414", - "JN605404", - "JN605412", - "JN605406", - "JN605413", - "JN605405" - ], - "Hepatitis_B_virus__1800" : [ - "FJ386585" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K140" : [ - "AJ717521", - "AJ704957" - ], - "Hepatitis_B_virus__HBV91" : [ - "KC875304" - ], - "Hepatitis_B_virus__I74" : [ - "FJ562246" - ], - "South_African_cassava_mosaic_virus__MG_MG250A1_10" : [ - "KJ887967" - ], - "Human_rhinovirus_B35_ATCC_VR_1145" : [ - "FJ445187" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZP04_2011" : [ - "JQ693007" - ], - "Porcine_circovirus_2_HBZX" : [ - "FJ041151" - ], - "Dengue_virus_1__DENV_1_VN_BID_V937_2007" : [ - "EU482482" - ], - "Hepatitis_B_virus__1160" : [ - "JQ023660" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10FUJ_1" : [ - "JQ663546" - ], - "Tick_borne_encephalitis_virus_SofjinKSY" : [ - "JF819648" - ], - "Human_adenovirus_4_GZ01" : [ - "KF006344" - ], - "Bromus_associated_circular_DNA_virus_1__BasCV_1_NZ_NZG01_Sef_2012" : [ - "NC_026241" - ], - "South_African_cassava_mosaic_virus__MG_MG52C1_06" : [ - "KJ887871" - ], - "Hepatitis_B_virus_B0715677_MMR_F" : [ - "AP011092" - ], - "Wheat_dwarf_virus__Barley" : [ - "AM747816", - "AJ783960" - ], - "West_Nile_virus__WNV_1_US_BID_V4530_2005" : [ - "HM756677" - ], - "Hepatitis_B_virus__cur1070" : [ - "KC774242" - ], - "Simian_immunodeficiency_virus__SIVcpzTAN1" : [ - "AF447763", - "EF394356" - ], - "Human_parainfluenza_virus_4a_4a_variant_HPIV_4a_QPID08_0015" : [ - "KF878965" - ], - "Squash_yellow_mild_mottle_virus__CR" : [ - "NC_003860" - ], - "Reticuloendotheliosis_virus_104865" : [ - "KJ756349" - ], - "Tomato_leaf_curl_Laos_virus" : [ - "NC_004613" - ], - "Hepatitis_C_virus_subtype_1b_MD10_1" : [ - "AF165063" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09HUB2" : [ - "JF268683" - ], - "Foot_and_mouth_disease_virus___type_SAT_1_SAT1_4sr2_58_sat1_4srhod_iso24" : [ - "AY593841" - ], - "Hepatitis_B_virus__ES70_1" : [ - "JF828913" - ], - "Human_poliovirus_2_NIE1018410" : [ - "KJ170563" - ], - "West_Nile_virus__WNV_1_US_BID_V6567_2001" : [ - "KJ501362" - ], - "Porcine_partetravirus_FMV10_1437266" : [ - "NC_022104" - ], - "Infectious_flacherie_virus_ZheJiang01_CHN" : [ - "EU868609" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V2_2005" : [ - "EU256041" - ], - "Nootka_lupine_vein_clearing_virus__Alaska" : [ - "NC_009017" - ], - "Sugarcane_bacilliform_MO_virus" : [ - "NC_008017" - ], - "SARS_coronavirus_HZS2_Fb__HZS2_Fb" : [ - "AY394987" - ], - "Infectious_bronchitis_virus_Beaudette_IBV_p65" : [ - "DQ001339" - ], - "Tobacco_mosaic_virus__Fujian" : [ - "AF395127" - ], - "Sewage_associated_circular_DNA_virus_32__SaCV_32_NZ_BS4194_2012" : [ - "NC_026277" - ], - "Clostridium_difficile_CD196" : [ - "NC_013315" - ], - "Squash_leaf_curl_virus__JO2_24" : [ - "KM595178" - ], - "Rift_Valley_fever_virus_73HB1449" : [ - "DQ380162", - "DQ375416", - "DQ380211" - ], - "Porcine_circovirus_2_Y_4" : [ - "KF027494" - ], - "Dengue_virus_2__GWL18_INDI_01" : [ - "DQ448231" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1815_2007" : [ - "FJ562099" - ], - "Dengue_virus_3__DENV_3_EC_BID_V2975_2000" : [ - "FJ898457" - ], - "Chickpea_chlorotic_dwarf_virus__P_25" : [ - "KF111683" - ], - "Xanthomonas_campestris" : [ - "NC_010688" - ], - "Sugarcane_streak_virus__SSV_B_RPie" : [ - "EU244914" - ], - "Beak_and_feather_disease_virus__BFDV_U_PL_543_2008" : [ - "JX221029" - ], - "Anguilla_anguilla_circovirus__Ba1" : [ - "NC_023421" - ], - "Ageratum_leaf_curl_Cameroon_virus__pBal" : [ - "NC_014645" - ], - "Bordetella_bronchiseptica_253" : [ - "NC_019382" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6758_2009" : [ - "KJ627366" - ], - "Hepatitis_B_virus_002" : [ - "AB900111" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3785_2007" : [ - "GU131893" - ], - "Weeksella_virosa_DSM_16922" : [ - "NC_015144" - ], - "TYLCCNV__Y322__satellite_DNA_beta__Y322" : [ - "NC_007735" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9424_2013" : [ - "KJ643501" - ], - "Sida_yellow_vein_China_alphasatellite" : [ - "KC282643", - "NC_023484", - "KC677736" - ], - "Equine_infectious_anemia_virus_DLV_DLV5_10" : [ - "HM141921" - ], - "Spiroplasma_syrphidicola_EA_1" : [ - "NC_021284" - ], - "Hepatitis_B_virus__I125" : [ - "FJ562272" - ], - "JC_polyomavirus__JCV183FLC_14" : [ - "JF425501" - ], - "Simian_immunodeficiency_virus_SIVmac239_96020" : [ - "AY611488" - ], - "Eggplant_mosaic_virus" : [ - "NC_001480" - ], - "Hepatitis_B_virus__I_T62" : [ - "GU456650" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4811_2009" : [ - "HM756277" - ], - "Dengue_virus_1__DENV_1_VN_BID_V800_2006" : [ - "EU482794" - ], - "Chili_leaf_curl_virus_Oman__Tom_26" : [ - "KF229718" - ], - "Variola_virus_China_Horn_1948__Sabin_Lab_July_1948" : [ - "DQ437582" - ], - "Maize_streak_virus__MSV_I_Za_RosC_g130_2006" : [ - "EU628640" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_B3_3D_V" : [ - "JX570653" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_11XX_GD" : [ - "JX235367" - ], - "Shigella_phage_Shfl2__Shfl2" : [ - "NC_015457" - ], - "Halovirus_HSTV_1" : [ - "NC_021471" - ], - "Soybean_mosaic_virus__WS200" : [ - "FJ548849" - ], - "Measles_virus_Measles_virus_strain_Edmonston" : [ - "AF266288" - ], - "Clover_yellow_vein_virus__90_1_Br2" : [ - "AB732962" - ], - "SFTS_virus_HNXY_319_HNXY_319" : [ - "KC292345", - "KC292292", - "KC292319" - ], - "Porcine_circovirus_2_SZ1101" : [ - "JX406420" - ], - "Torque_teno_virus__JT19F" : [ - "AB064602" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1541_2007" : [ - "EU677166" - ], - "Sri_Lankan_cassava_mosaic_virus__Ker4___Kattukuda" : [ - "AJ575821" - ], - "Human_rhinovirus_A1_ATCC_VR_1559" : [ - "FJ445111" - ], - "Hepatitis_C_virus_subtype_6a_6a74" : [ - "DQ480524" - ], - "Hepatitis_B_virus_subtype_adw_SK300" : [ - "AB033551" - ], - "Human_immunodeficiency_virus_1__15383_1" : [ - "DQ853461" - ], - "Crimean_Congo_hemorrhagic_fever_virus_UG3010" : [ - "AY900143", - "DQ211624", - "DQ211637", - "DQ211650" - ], - "Methanosphaerula_palustris_E1_9c" : [ - "NC_011832" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2302_2001" : [ - "FJ744716" - ], - "Kemerovo_virus_21_10" : [ - "KC288139", - "KC288138", - "KC288131", - "KC288137", - "KC288132", - "KC288130", - "KC288134", - "KC288135" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_148_2012" : [ - "KJ686236" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2222_2004" : [ - "FJ639789" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V270_2006" : [ - "EU155355" - ], - "Lymantria_dispar_multiple_nucleopolyhedrovirus" : [ - "NC_001973" - ], - "Feline_calicivirus__FB_NJ_13" : [ - "KM111557" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_Liberia_DQE13" : [ - "KR075002" - ], - "Bluetongue_virus_9_BOS2002_02" : [ - "AM900377" - ], - "West_Nile_virus__WNV_1_US_BID_V4187_1999" : [ - "HM488126" - ], - "Norovirus_Hu_GII_4_Aichi2_2007_JP_Hu_GII_4_Aichi2_2007_JP" : [ - "AB541203" - ], - "Simian_immunodeficiency_virus_SIVmac239_97009" : [ - "AY599199" - ], - "Pseudomonas_phage_phi_2_phi_2" : [ - "NC_013638" - ], - "Simian_immunodeficiency_virus___agm_sab_1_SIVagmSAB_1" : [ - "SIU04005" - ], - "Human_immunodeficiency_virus_1__PMVL_027" : [ - "EF514698" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4036_2008" : [ - "GU131793" - ], - "Pectobacterium_carotovorum_PCC21" : [ - "NC_018525" - ], - "Dengue_virus_1__MKS_1001" : [ - "KC762652" - ], - "Banana_bunchy_top_virus__Kandy" : [ - "JN250593", - "JN250597", - "JN250594", - "JN250595", - "JN250596", - "JN250598" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K308" : [ - "AJ704972", - "AJ717574" - ], - "Streptococcus_suis_S735" : [ - "NC_018526" - ], - "Enterobacteria_phage_NC7" : [ - "DQ079886" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0146" : [ - "KP759610" - ], - "Dengue_virus_3__161_BR_PE_04" : [ - "JX669499" - ], - "Wheat_dwarf_virus__SXHC10_15" : [ - "JQ647497" - ], - "Rift_Valley_fever_virus_Saudi_2000_10911" : [ - "DQ375401", - "DQ380197", - "DQ380170" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3458H_2002" : [ - "JN989424" - ], - "Hepatitis_B_virus__SHB624" : [ - "KJ598737" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus_Thailand_Kan1" : [ - "NC_005812", - "NC_005811" - ], - "Sabo_virus__IB_AN_9398" : [ - "HE795096", - "HE795097", - "HE795098" - ], - "Sapovirus_N21_N21" : [ - "AY237423" - ], - "Human_immunodeficiency_virus_1__00BW2127_214" : [ - "AF443105" - ], - "Vibrio_phage_ICP1" : [ - "NC_015157" - ], - "Hepatitis_B_virus__HBV71" : [ - "KC875306" - ], - "Hepatitis_B_virus__JP_02" : [ - "KP017269" - ], - "Porcine_epidemic_diarrhea_virus_USA_Wisconsin74_2013" : [ - "KJ645669" - ], - "Rhodovulum_phage_RS1_RS1" : [ - "NC_020866" - ], - "Dengue_virus_2__DENV_2_PR_BID_V1406_1997" : [ - "KF955372" - ], - "Enterobacteria_phage_phiX174__CGGloC" : [ - "AF299311" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI56_12_DNA_B" : [ - "HE979777" - ], - "Human_immunodeficiency_virus_1__CANC3FULL" : [ - "AY779560" - ], - "Porcine_circovirus_2_GDYX" : [ - "JX519293" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y248" : [ - "AJ888450" - ], - "Dengue_virus_3__DENV_3_AI_BID_V2976_2001" : [ - "FJ898462" - ], - "West_Nile_virus__WNV_1_US_BID_V4360_2007" : [ - "HM488164" - ], - "Duck_hepatitis_A_virus_1__FZ86" : [ - "JX390982" - ], - "Human_immunodeficiency_virus_1__04ZASK217B1" : [ - "DQ056417" - ], - "Rice_stripe_virus__DaL08" : [ - "JQ927426", - "JQ927432", - "JQ927414", - "JQ927420" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3469_2007" : [ - "GU131861" - ], - "Human_papillomavirus_type_16__Qv25086" : [ - "HQ644283" - ], - "Helicobacter_cinaedi_ATCC_BAA_847" : [ - "NC_020555" - ], - "JC_polyomavirus_711A" : [ - "AF300961" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_rV68" : [ - "EU360128" - ], - "Dengue_virus_Hb22_CHN_2014" : [ - "KP772252" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V82_2002" : [ - "EU256026" - ], - "Simian_immunodeficiency_virus_SIVmac239_2065" : [ - "AY611493" - ], - "Bean_golden_mosaic_virus__BR_Una7_12" : [ - "KJ939827" - ], - "Synechococcus_WH_8102" : [ - "NC_005070" - ], - "Human_immunodeficiency_virus_1__ZM247F_flF10" : [ - "FJ496203" - ], - "Temperate_fruit_decay_associated_virus__MFBpe21" : [ - "KR134341" - ], - "Sweet_potato_leaf_curl_Canary_virus__ES_CI_BG25_02" : [ - "NC_013465" - ], - "European_mountain_ash_ringspot_associated_virus__E53009" : [ - "HG799709" - ], - "Grapevine_leafroll_associated_virus_2__GLRaV_2_SG" : [ - "KF220376" - ], - "Porcine_circovirus_2_KU_1" : [ - "GU244506" - ], - "Hepatitis_C_virus_subtype_1a__00_66" : [ - "EU781797" - ], - "Canine_parvovirus_2c__UY247" : [ - "KM457121" - ], - "Porcine_circovirus_2_PT_12722_07" : [ - "HQ831523" - ], - "Enterovirus_C__V3_Tul_7" : [ - "HQ738302" - ], - "Psychrobacter_PRwf_1" : [ - "NC_009524", - "NC_009517", - "NC_009516" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6734_2009" : [ - "KJ627304" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI48_12" : [ - "HE979771" - ], - "African_cassava_mosaic_virus__CF_CF21BN1_07" : [ - "KJ887586" - ], - "JC_polyomavirus__KB_23" : [ - "AB220942" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2010_10_2_1" : [ - "KC862581" - ], - "Cauliflower_mosaic_virus__IRNRSh8" : [ - "JX912273" - ], - "Newcastle_disease_virus__chicken_China_Guangxi7_2002" : [ - "DQ485229" - ], - "Human_papillomavirus_type_11__GUMC_AJ_Lung" : [ - "JN644142" - ], - "Tomato_yellow_leaf_curl_virus__XH2" : [ - "GU111505" - ], - "West_Nile_virus__WNV_1_US_BID_V4101_2008" : [ - "HM488207" - ], - "Cardiospermum_yellow_leaf_curl_betasatellite" : [ - "NC_010297" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3805_2" : [ - "KM233083" - ], - "South_African_cassava_mosaic_virus__MG_MG339A5_10" : [ - "KJ887701" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4054_2008" : [ - "GU131806" - ], - "Human_papillomavirus_type_16__JPD168" : [ - "AB889489" - ], - "Moussa_virus__C23" : [ - "NC_025359" - ], - "Tomato_severe_rugose_virus__ToSRV__BR_768Tom8b_08" : [ - "JX415193" - ], - "Mamestra_configurata_nucleopolyhedrovirus_B" : [ - "NC_004117" - ], - "Prunus_necrotic_ringspot_virus__30_4" : [ - "NC_004364" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09SD" : [ - "JF268678" - ], - "Hepatitis_B_virus__J251" : [ - "GQ377639" - ], - "Gossypium_mustilinum_symptomless_alphasatellite__Mus_alphaB_1B" : [ - "EU384662" - ], - "Mycoplasma_penetrans_HF_2" : [ - "NC_004432" - ], - "BK_polyomavirus__A_68H" : [ - "AB369094" - ], - "Norovirus_Hu_GII_4_Sakai2_2007_JP_Hu_GII_4_Sakai2_2007_JP" : [ - "AB541341" - ], - "Porcine_circovirus_2__DY01" : [ - "JF272497" - ], - "Synechococcus_phage_S_CBP4" : [ - "NC_025464" - ], - "Duck_circovirus__33753_52" : [ - "NC_007220" - ], - "Hepatitis_B_virus__N07_M_4161A" : [ - "KJ173399" - ], - "Halorhabdus_utahensis_DSM_12940" : [ - "NC_013158" - ], - "Newcastle_disease_virus_Du_CH_LFJ_048_2011" : [ - "KM885156" - ], - "Hepatitis_B_virus_1385_4" : [ - "KR014057" - ], - "Human_papillomavirus_type_16__Qv11074" : [ - "HQ644267" - ], - "Gairo_virus_TZ_27421_TZ_27421_L" : [ - "NC_026247" - ], - "Bordetella_bronchiseptica_MO149" : [ - "NC_018829" - ], - "Soybean_mosaic_virus__WS84" : [ - "FJ640956" - ], - "Burkholderia_phage_BcepIL02" : [ - "NC_012743" - ], - "Hepatitis_B_virus__MC06" : [ - "EU547563" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PR_42A_2008" : [ - "HM748937" - ], - "Hepatitis_B_virus__F1S_C2" : [ - "AB471849" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ18BW3_2009" : [ - "JF909073" - ], - "Norovirus_Hu_GII_20424_2010_VNM_Hu_GII_20424_2010_VNM" : [ - "KC409297" - ], - "Cotton_leaf_curl_Kokhran_virus_Dabawali" : [ - "AY456683" - ], - "Potato_virus_X_Taiwan" : [ - "AF272736" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1841_2008" : [ - "FJ410213" - ], - "Hepatitis_B_virus__I196" : [ - "FJ562306" - ], - "Human_mastadenovirus_C_human_USA_Pitts_00107_1988_1_P1H1F1" : [ - "KF429744" - ], - "Duck_circovirus__DU095" : [ - "HM162349" - ], - "Porcine_circovirus_2__PCV2MRT_192_13" : [ - "KJ729075" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4039_2008" : [ - "GU131796" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_66_2012" : [ - "KJ686213" - ], - "Brassica_yellows_virus__BrYV_BJS" : [ - "HQ388351" - ], - "Hepatitis_C_virus__HCVT094" : [ - "AB049088" - ], - "Hepatitis_B_virus__823" : [ - "AY233288" - ], - "Duck_egg_drop_syndrome_virus_pigeon" : [ - "JQ920425" - ], - "Hepatitis_B_virus__D38" : [ - "EU939645" - ], - "Norovirus_Hu_GII_4_Akita4_2008_JP_Hu_GII_4_Akita4_2008_JP" : [ - "AB541216" - ], - "African_cassava_mosaic_virus__MG_MG53B13_06" : [ - "KJ887651" - ], - "Bluetongue_virus_16_SAD2004_03__Sardinia_2004" : [ - "AM773692" - ], - "Hepatitis_B_virus__Ib" : [ - "AY167090" - ], - "Simian_hemorrhagic_fever_virus_LVR_42_0_M6941_I618_d3" : [ - "KM371109" - ], - "Dengue_virus_1__DV1_SL_2009d" : [ - "HQ891316" - ], - "Decapod_penstyldensovirus_1__Fujian" : [ - "EF633688" - ], - "Sacbrood_virus__AcSBV_Viet2" : [ - "KM884991" - ], - "Beet_curly_top_Iran_virus__IR_Neg_B32P_Sug_08" : [ - "JQ707948" - ], - "Hepatitis_B_virus__SEA_01" : [ - "KM999990" - ], - "Streptococcus_pneumoniae_SPN033038" : [ - "NC_021004" - ], - "Hepatitis_B_virus__BV_188" : [ - "GQ331046" - ], - "Norovirus_Hu_GII_4_NIHIC28_6_2012_USA_Hu_GII_4_NIHIC28_6_2012_USA" : [ - "KF712508" - ], - "Dengue_virus_2__DENV_2_VE_BID_V3362_1991" : [ - "GQ868595" - ], - "Paspalum_dilatatum_striate_mosaic_virus__AU_1660_2004" : [ - "NC_018576" - ], - "Maize_streak_virus__MSV_A_ZA_Fer_D16_2008" : [ - "FJ882108" - ], - "Human_coronavirus_NL63_NL63_human_USA_901_24_1990" : [ - "KF530111" - ], - "Escherichia_coli_O111_H__11128" : [ - "NC_013368", - "NC_013364", - "NC_013366", - "NC_013367", - "NC_013365", - "NC_013370" - ], - "Human_immunodeficiency_virus_1_97CN001" : [ - "AF286226" - ], - "Norovirus_Hu_GII_20198_2009_VNM_Hu_GII_20198_2009_VNM" : [ - "KC409274" - ], - "Norovirus_Hu_GII_4_NIHIC17_8_2013_USA_Hu_GII_4_NIHIC17_8_2013_USA" : [ - "KF712491" - ], - "Bovine_viral_diarrhea_virus_2_SD1301" : [ - "KJ000672" - ], - "Equine_rhinitis_A_virus_PERV_1" : [ - "DQ272578" - ], - "Human_coronavirus_OC43_OC43_human_USA_912_36_1991" : [ - "KF530094" - ], - "Hepatitis_B_virus_UZNVC7M_UZNVC7M" : [ - "AB222715" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC05B25_2008" : [ - "JF909082" - ], - "Chlamydia_trachomatis_L2b_LST" : [ - "NC_020975", - "NC_020985" - ], - "Porcine_circovirus_2_XS1" : [ - "JF718784" - ], - "Human_adenovirus_4_CL68578" : [ - "AY458656" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V97_2004" : [ - "EU256036" - ], - "Blackcurrant_reversion_virus_satellite_RNA" : [ - "NC_003872" - ], - "Maize_streak_virus__MSV_B1_Za_Lig_g213_2007" : [ - "EU628586" - ], - "Dengue_virus_4_ThD4_0348_91" : [ - "AY618990" - ], - "Plantago_asiatica_mosaic_virus_Li4" : [ - "AB360793" - ], - "Hepatitis_B_virus__S1357_2" : [ - "FJ787461" - ], - "Coxsackievirus_A8__CVA8_SZ266_CHN_2014" : [ - "KP765687" - ], - "Bluetongue_virus_1__RSArrrr_01" : [ - "AJ586695" - ], - "Chicken_anemia_virus__26P4" : [ - "CAE26P4" - ], - "Neisseria_meningitidis_M04_240196" : [ - "NC_017515" - ], - "Porcine_circovirus_2__HD3" : [ - "KC514970" - ], - "Foot_and_mouth_disease_virus___type_A_A_Canefa_acanefa_iso48" : [ - "AY593789" - ], - "Human_metapneumovirus_HMPV_USA_C2_202_2004_B" : [ - "KC562235" - ], - "Human_immunodeficiency_virus_1__WITO_flD5" : [ - "FJ496175" - ], - "Human_immunodeficiency_virus_1__L8249" : [ - "DQ886037" - ], - "Propionibacterium_phage_Procrass1" : [ - "NC_027626" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_GTM_73U151_1973_IE" : [ - "KC344434" - ], - "Rabies_virus__RAC" : [ - "JQ685901" - ], - "Hepatitis_B_virus__919015" : [ - "JN040769" - ], - "Tomato_leaf_curl_New_Delhi_virus__UN" : [ - "HG932560" - ], - "Hepatitis_B_virus__P68" : [ - "GQ477454" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00064_2007_G1P_8" : [ - "KC769365" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2673_2001" : [ - "FJ850120" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4029_2008" : [ - "HM181968" - ], - "Human_immunodeficiency_virus_1__301999" : [ - "AF067154" - ], - "Simian_foamy_virus_gorilla" : [ - "HM245790" - ], - "Coxsackievirus_A20__89490" : [ - "DQ358078" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143796" : [ - "KR653257" - ], - "XMRV__xmlv15" : [ - "HQ154630" - ], - "Phaeobacter_gallaeciensis" : [ - "NC_018422", - "NC_018423", - "NC_018286", - "NC_018421" - ], - "Gremmeniella_abietina_RNA_virus_MS2__SurS4" : [ - "NC_006445", - "NC_006444", - "NC_006446" - ], - "Hepatitis_B_virus__F1_5" : [ - "GU815718" - ], - "West_Caucasian_bat_virus" : [ - "NC_025377" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3770_1" : [ - "KM233069" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2777_2007" : [ - "GQ199800" - ], - "Giardia_canis_virus_Changchun" : [ - "DQ238861" - ], - "Human_papillomavirus_type_16_CU1" : [ - "FJ610146" - ], - "Tomato_yellow_leaf_curl_virus___Il_IL_33" : [ - "LN846615" - ], - "Maize_streak_virus__MSV_A_ZW_Mas2_Mic4_1993" : [ - "FJ882143" - ], - "Hepatitis_B_virus_274_15" : [ - "KR013899" - ], - "Infectious_salmon_anemia_virus__Bremnes_98" : [ - "AY168787", - "AY044132", - "AF262385" - ], - "Dengue_virus_2_DENV_2_SG_07K3598DK2_2007" : [ - "GQ398266" - ], - "Oscillatoria_acuminata_PCC_6304" : [ - "NC_019693", - "NC_019700", - "NC_019694" - ], - "Sweet_potato_leaf_curl_virus_Spain__ES_CI_BG6_02" : [ - "EF456744" - ], - "Tomato_leaf_curl_virus" : [ - "EU487009", - "EU487008" - ], - "Southern_rice_black_streaked_dwarf_virus__Son_La" : [ - "KM576881" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__S4J1" : [ - "JN053455" - ], - "Hepatitis_B_virus__0294" : [ - "JN827416" - ], - "Transmissible_gastroenteritis_virus__SHXB" : [ - "KP202848" - ], - "Norovirus_Hu_GII_4_Miyagi5_2006_JP_Hu_GII_4_Miyagi5_2006_JP" : [ - "AB447442" - ], - "Bean_calico_mosaic_virus" : [ - "NC_003505", - "NC_003504" - ], - "Porcine_circovirus_2_KSSF1103" : [ - "JX982220" - ], - "Pennisetum_mosaic_virus__AZ1" : [ - "JX070145" - ], - "Human_bocavirus__HZ1301" : [ - "KP710208" - ], - "Chlamydia_phage_4" : [ - "NC_007461" - ], - "Synechococcus_phage_S_CBP1" : [ - "NC_025456" - ], - "Ageratum_yellow_leaf_curl_betasatellite__Mohali" : [ - "JF728868", - "KC305088", - "KC305086", - "JF728869", - "KC305089", - "KJ028213", - "KC305085" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3851_2" : [ - "KR105202" - ], - "Porcine_circovirus_2_RVC_UK1" : [ - "JX193799" - ], - "Porcine_circovirus_2__PCV_H" : [ - "KC515026" - ], - "Listeria_phage_2389" : [ - "NC_003291" - ], - "Melandrium_yellow_fleck_virus_KU1" : [ - "NC_013266", - "NC_013268", - "NC_013267" - ], - "Hepatitis_B_virus__2119" : [ - "FJ386619" - ], - "Hepatitis_B_virus__PW2" : [ - "EU239222" - ], - "Dengue_virus_3__KDH0014A" : [ - "HG316484" - ], - "East_African_cassava_mosaic_virus__KE_mtw_CMD_MI88_12" : [ - "HG530113" - ], - "Sinorhizobium_phage_PBC5" : [ - "NC_003324" - ], - "Watermelon_chlorotic_stunt_virus__Als_2" : [ - "JN618982", - "HE800539" - ], - "Salmonid_alphavirus_subtype_3__SAV3_2_MR_10" : [ - "KC122926" - ], - "Anaplasma_phagocytophilum_Dog2" : [ - "NC_021881" - ], - "Human_immunodeficiency_virus_1__00BW1783_5" : [ - "AF443096" - ], - "Saccharum_streak_virus__SacSV_ZA_Emp_T1_2008" : [ - "NC_013464" - ], - "Hepatitis_B_virus__C44" : [ - "EU939546" - ], - "Human_papillomavirus_type_52__Qv00615" : [ - "HQ537746" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0142" : [ - "KP759690" - ], - "Human_herpesvirus_3_BC" : [ - "AY548171" - ], - "Cucumber_mosaic_virus_PepY" : [ - "AB369271" - ], - "African_cassava_mosaic_virus__MG_MG27A3_06" : [ - "KJ887847" - ], - "Pagoda_yellow_mosaic_associated_virus_pymav_01" : [ - "NC_024301" - ], - "Hepatitis_B_virus__JFA4259" : [ - "KF779274" - ], - "BK_polyomavirus__MT_clone_18" : [ - "AB485698" - ], - "Bhendi_yellow_vein_India_virus__India_Thondawada_OY39B_2005___OY39B" : [ - "GU112021" - ], - "Hepatitis_B_virus__D3_3" : [ - "GU815672" - ], - "SARS_coronavirus_HSZ_A__HSZ_A" : [ - "AY394984" - ], - "Avian_leukemia_virus__SCDY1" : [ - "NC_015116" - ], - "Hepatitis_B_virus__bur1044" : [ - "KC774373" - ], - "South_African_cassava_mosaic_virus__MG_MG340A1_10" : [ - "KJ887991" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir1_T55P_Cuc_08" : [ - "FJ660423" - ], - "Leuconostoc_phage_phiLNTR3" : [ - "NC_024378" - ], - "Porcine_circovirus_2_HBwh_2a" : [ - "FJ870967" - ], - "Gossypium_mustilinum_symptomless_alphasatellite___Pakistan_17_5_06__Lahore3" : [ - "FR772087" - ], - "Grapevine_leafroll_associated_virus_2__OR1" : [ - "FJ436234" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Amervac_PRRS" : [ - "GU067771" - ], - "Chikungunya_virus__LK_PB_chik6008" : [ - "GU013529" - ], - "Human_herpesvirus_3_VariVax" : [ - "DQ008355" - ], - "Infectious_bursal_disease_virus_94432" : [ - "AM167551", - "AM167550" - ], - "Bluetongue_virus_2_BTV_2RSA_WT" : [ - "JN255930", - "JN255925", - "JN255923", - "JN255926", - "JN255929", - "JN255927", - "JN255928", - "JN255922", - "JN255931", - "JN255924" - ], - "Human_papillomavirus_type_6__106" : [ - "HG793914" - ], - "Hepatitis_B_virus__125" : [ - "JQ040131" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Po_Okra1" : [ - "FN554531" - ], - "Hepatitis_B_virus__E1_7" : [ - "GU815688" - ], - "Dengue_virus_4__MKS_2139" : [ - "KC762699" - ], - "Lactobacillus_delbrueckii_bulgaricus_ATCC_BAA_365" : [ - "NC_008529" - ], - "Norovirus_Hu_GII_20263_2009_VNM_Hu_GII_20263_2009_VNM" : [ - "KC409286" - ], - "Hepatitis_B_virus__M79" : [ - "GQ924644" - ], - "Rift_Valley_fever_virus_1260_78" : [ - "DQ380214", - "DQ375418", - "DQ380164" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__MY_376" : [ - "KJ609517" - ], - "Dengue_virus_2__DENV_2_PE_FPI01777_2011" : [ - "KC294212" - ], - "Human_immunodeficiency_virus_2__FG" : [ - "HIV2NIHZ" - ], - "Tick_borne_encephalitis_virus_Primirye_89" : [ - "FJ906622" - ], - "Porcine_circovirus_2__HM" : [ - "HM027580", - "HM142899" - ], - "Mycobacterium_phage_HufflyPuff" : [ - "NC_022981" - ], - "Hepatitis_B_virus__GU807" : [ - "GQ161777" - ], - "Human_immunodeficiency_virus_1__ML752_3_1997" : [ - "AY322193" - ], - "Zobellia_galactanivorans" : [ - "NC_015844" - ], - "Wheat_dwarf_virus__YNKM07_43" : [ - "KJ536146" - ], - "Dengue_virus_2_DENV_2_PR_35DN_1994" : [ - "GQ398282" - ], - "Foot_and_mouth_disease_virus___type_O_O1_Canefa_o1canefa_iso59" : [ - "AY593820" - ], - "Phlebovirus_JS2007_01_JS2007_01" : [ - "JF837593", - "JF837594" - ], - "Tomato_severe_rugose_virus__BR_Vic20_10" : [ - "JX865633" - ], - "Hepatitis_B_virus__dlz2128" : [ - "KC774432" - ], - "Hepatitis_B_virus__P17" : [ - "EU859918", - "JX898691" - ], - "Hepatitis_B_virus__Leb58" : [ - "JN642162" - ], - "Norovirus_Hu_GII_4_Miyagi2_2006_JP_Hu_GII_4_Miyagi2_2006_JP" : [ - "AB447440" - ], - "South_African_cassava_mosaic_virus__MG_MG209A4_09" : [ - "KJ887678" - ], - "Corynebacterium_phage_P1201" : [ - "NC_009816" - ], - "West_Nile_virus__WNV_1_US_BID_V6688_2004" : [ - "KJ501421" - ], - "Yam_mild_mosaic_virus__CN20" : [ - "KC473517" - ], - "South_African_cassava_mosaic_virus__MG_MG42A2_06" : [ - "KJ887857" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9435_2013" : [ - "KJ643512" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD13_2013" : [ - "KM229811" - ], - "Avian_paramyxovirus_4_APMV4_mallard_Belgium_15129_07" : [ - "JN571485" - ], - "Sweet_potato_latent_virus__UN202" : [ - "KP115614" - ], - "Potato_virus_Y__PVY_MON" : [ - "JF928458" - ], - "Ralstonia_phage_RSM3" : [ - "NC_011399" - ], - "Enterobacter_cloacae_NCTC_9394" : [ - "NC_021046" - ], - "Norovirus_Hu_GII_20206_2009_VNM_Hu_GII_20206_2009_VNM" : [ - "KC409277" - ], - "Hepatitis_B_virus__HPC017_07" : [ - "AB562463" - ], - "Maize_streak_Reunion_virus__MSRV_RE_StP_PR50_2009" : [ - "JQ624880" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C16" : [ - "KJ019146" - ], - "Erwinia_amylovora_CFBP1430" : [ - "NC_013957", - "NC_013961" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_9__AHEaCV_9_NZ_3171C3_2012" : [ - "KM874316" - ], - "West_Nile_virus_strain_PT5_2_PT5_2" : [ - "AJ965628" - ], - "Human_respiratory_syncytial_virus__01_002279" : [ - "JQ901451" - ], - "Ectropis_obliqua_nucleopolyhedrovirus_A1" : [ - "NC_008586" - ], - "Shigella_phage_Shfl1__Shfl1" : [ - "NC_015456" - ], - "Rift_Valley_fever_virus_Sudan_34_2010" : [ - "JQ820475" - ], - "Hepatitis_B_virus__C64" : [ - "EU859950", - "EU939556" - ], - "Hepatitis_B_virus__D2_1" : [ - "GU815658" - ], - "Banana_bunchy_top_virus__BS2" : [ - "FJ859728", - "FJ859741" - ], - "Coxsackievirus_A13_BAN01_10637" : [ - "DQ995638" - ], - "Hepatitis_B_virus__GU1398" : [ - "GQ161808" - ], - "Peruvian_horse_sickness_virus__Elsey" : [ - "FJ225399", - "FJ225398" - ], - "Rotavirus_A_MRC_DPRU1723_RVA_Human_wt_ZWE_MRC_DPRU1723_2009_G9P_8" : [ - "JN605420", - "JN605415", - "JN605423", - "JN605418", - "JN605425", - "JN605417", - "JN605416", - "JN605422", - "JN605419", - "JN605424" - ], - "Porcine_circovirus_2_FX1101" : [ - "JX406422" - ], - "Hepatitis_C_virus_subtype_4L__HCV_4l_GB_BID_G1246" : [ - "JX227957" - ], - "Potato_virus_Y_NTN_HN1" : [ - "HQ631374" - ], - "Porcine_circovirus_1__YZ70722" : [ - "FJ159689" - ], - "Newcastle_disease_virus_Du_CH_LSH_130828_2013" : [ - "KM885164" - ], - "Maize_streak_virus__MSV_A_ZM_Chi5_Z9a_2008" : [ - "HQ693456" - ], - "Lettuce_mosaic_virus__Muju" : [ - "KF955619" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2466_2007" : [ - "JN819414" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_397_97" : [ - "DQ989308" - ], - "Dengue_virus_2__DENV_2_CO_BID_V3370_2004" : [ - "GQ868554" - ], - "Rotavirus_A_RVA_Cow_wt_ZAF_1603_2007_G6P_5" : [ - "JN831214", - "JN831207", - "JN831211", - "JN831212", - "JN831206", - "JN831208", - "JN831209", - "JN831213", - "JN831210", - "JN831205" - ], - "Peruvian_horse_sickness_virus" : [ - "NC_007753", - "NC_007756", - "NC_007757", - "NC_007750", - "NC_007754", - "NC_007748", - "NC_007751", - "NC_007752", - "NC_007749", - "NC_007755" - ], - "WU_Polyomavirus__NP360" : [ - "GU296402" - ], - "West_Nile_virus__WNV_1_US_BID_V7429_2011" : [ - "KJ501139" - ], - "Tomato_leaf_curl_Taiwan_virus__T3_6" : [ - "GU723728" - ], - "Classical_swine_fever_virus__BRESCIAX" : [ - "AY578687" - ], - "Murine_norovirus_GV_WU11_2005_USA__Mu_NoV_GV_WU11_2005_USA" : [ - "EU004663" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_509" : [ - "KR534508" - ], - "Salmonella_enterica_serovar_Choleraesuis_SC_B67" : [ - "NC_006905", - "NC_006855", - "NC_006856" - ], - "African_cassava_mosaic_virus__KE_mtw_CMD_MI74_12" : [ - "HG530118" - ], - "Human_herpesvirus_5_BE_6_2011" : [ - "KP745660" - ], - "Human_papillomavirus_type_19" : [ - "X74470" - ], - "Hepatitis_B_virus__HBV_T11" : [ - "AB073844" - ], - "Circulifer_tenellus_virus_1" : [ - "NC_014360" - ], - "Homalodisca_vitripennis_reovirus__NC19" : [ - "GU437849" - ], - "Human_bocavirus_JPOC07_510" : [ - "AB481079" - ], - "Enterovirus_A71__02_0_024" : [ - "KP691664" - ], - "Cucumber_mosaic_virus_V" : [ - "AB369270" - ], - "Culex_flavivirus_Toyama41" : [ - "AB701770" - ], - "Soybean_mosaic_virus__XFQ005" : [ - "KP710872" - ], - "Hepatitis_E_virus__wbJSG1" : [ - "AB222182" - ], - "Dengue_virus_1__DENV_1_US_BID_V2127_1994" : [ - "FJ410179" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1794_2007" : [ - "FJ562098" - ], - "Infectious_bronchitis_virus_ck_CH_LHLJ_140906" : [ - "KP036502" - ], - "South_African_cassava_mosaic_virus__MG_MG369A2_11" : [ - "KJ887999" - ], - "Human_mastadenovirus_D__2307_S" : [ - "AB562588" - ], - "Sida_yellow_vein_Madurai_virus" : [ - "NC_009354" - ], - "Hepatitis_C_virus_subtype_1a__TN18" : [ - "EU781819" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8484_2001" : [ - "KJ627705" - ], - "West_Nile_virus__WNV_1_US_BID_V6482_2003" : [ - "KJ501320" - ], - "Dragonfly_associated_alphasatellite__PR_NZ48_2009" : [ - "NC_019498" - ], - "Lactococcus_Phage_ASCC527" : [ - "JQ740811" - ], - "Hepatitis_B_virus__A26" : [ - "FJ904402" - ], - "Enterovirus_A71_35_Jingdezhen_China_HFMD_Severe_2011" : [ - "JQ806378" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V234_2004" : [ - "EU256071" - ], - "West_Nile_virus_SA93_01_SA93_01" : [ - "EF429198" - ], - "Thermofilum_pendens_Hrk_5" : [ - "NC_008698", - "NC_008696" - ], - "Macacine_herpesvirus_3_68_1" : [ - "NC_006150" - ], - "Dengue_virus_3__BDH02_7" : [ - "AY496877" - ], - "Mycobacterium_phage_Donovan" : [ - "NC_023552" - ], - "Rift_Valley_fever_virus_OS_1" : [ - "DQ380186", - "DQ375398", - "DQ380180" - ], - "Colorado_tick_fever_virus_Florio" : [ - "NC_004186", - "NC_004183", - "NC_004184", - "NC_004187", - "NC_004188", - "NC_004185", - "NC_004182", - "NC_004191", - "NC_004189" - ], - "Tomato_common_mosaic_virus__BR_Coi21_07" : [ - "KC706575" - ], - "Mycoplasma_gallisepticum_CA06_2006_052_5_2P" : [ - "NC_018412" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_11SH1_GD" : [ - "JX235366" - ], - "Porcine_circovirus_2_Runan" : [ - "EU521708" - ], - "Sulfolobus_islandicus_M_14_25" : [ - "NC_012588" - ], - "Porcine_circovirus_2__ly4" : [ - "EU274311" - ], - "Chlamydia_trachomatis" : [ - "NC_020972", - "NC_020982" - ], - "Beak_and_feather_disease_virus__BFDV_T_PL_1288_2011" : [ - "JX221011" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V312_2006" : [ - "EU255960" - ], - "Hepatitis_C_virus_subtype_1b_MD20" : [ - "AF207761" - ], - "Rice_stripe_virus__YWD07" : [ - "EU931509", - "EU931507", - "EU931508", - "EU931506" - ], - "Rabies_virus__RV2772" : [ - "KF155002" - ], - "Yaba_monkey_tumor_virus" : [ - "NC_005179" - ], - "Tobacco_mild_green_mosaic_virus_U2__small_type__DSMZ_PV_0113" : [ - "EF469769" - ], - "Kappapapillomavirus_2_a4" : [ - "AJ404003" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_84_1984" : [ - "JN989438" - ], - "Halomicrobium_mukohataei_DSM_12286" : [ - "NC_013201", - "NC_013202" - ], - "Helicoverpa_armigera_densovirus_SDBH2010_1" : [ - "NC_015718" - ], - "West_Nile_virus__WNV_1_US_BID_V4627_2008" : [ - "HM488240" - ], - "Hepatitis_B_virus_295_01" : [ - "EU594407" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL134A" : [ - "AB985562" - ], - "Clostridium_kluyveri_DSM_555" : [ - "NC_009706", - "NC_009466" - ], - "Human_immunodeficiency_virus_1__97VNAG221" : [ - "FJ185257" - ], - "Chicken_anemia_virus_CAT_CAV" : [ - "KC414026" - ], - "Bean_golden_yellow_mosaic_virus" : [ - "AJ544531" - ], - "Bombyx_mori_nucleopolyhedrovirus_Guangxi" : [ - "JQ991011" - ], - "Yellow_fever_virus__Pasteur_17D_204_yellow_fever_vaccine" : [ - "X15062" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__K3J4" : [ - "JN053445" - ], - "Porcine_circovirus_2_TX1106" : [ - "JX982224" - ], - "Hepatitis_B_virus__PW7" : [ - "EU239225" - ], - "BK_polyomavirus__OKN_50" : [ - "AB365155" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__GD3" : [ - "GU269541" - ], - "Cucumber_green_mottle_mosaic_virus_MC_1" : [ - "FJ848666" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC352" : [ - "KF577604" - ], - "Hepatitis_B_virus__Alr049East" : [ - "EF473976" - ], - "Salmonella_phage_ST160" : [ - "NC_014900" - ], - "Southern_rice_black_streaked_dwarf_virus__Nghe_An" : [ - "KM576876", - "KM576888", - "KM454845" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1552_2007" : [ - "EU660419" - ], - "Papaya_leaf_curl_betasatellite__PaLCuB_IYV_Del" : [ - "JX050199" - ], - "Duck_hepatitis_A_virus_B_N" : [ - "JX235698" - ], - "Beak_and_feather_disease_virus__2NC43B" : [ - "JX049210" - ], - "Hepatitis_B_virus__BR2" : [ - "KP090177" - ], - "Human_immunodeficiency_virus_1__G829" : [ - "AF184155" - ], - "Tomato_leaf_curl_Mali_virus__Tom_145" : [ - "LM651404" - ], - "Cotton_leaf_curl_Multan_betasatellite__Okra1" : [ - "GU574207" - ], - "Lactococcus_phage_ul36_t1" : [ - "DQ394808" - ], - "Hepatitis_B_virus__A1_48004" : [ - "FJ692557" - ], - "Honeysuckle_yellow_vein_virus__Japan_Masuda_2003___Msd" : [ - "AB236325" - ], - "Porcine_circovirus_2_GUOY1102" : [ - "JX948774" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2024_2002" : [ - "FJ639701" - ], - "Squash_leaf_curl_virus__IL1_11" : [ - "KM595097" - ], - "Muromegalovirus_C4A_C4A" : [ - "EU579861" - ], - "Cucumber_green_mottle_mosaic_virus__Ec" : [ - "KF155231" - ], - "Human_immunodeficiency_virus_1_PT3037" : [ - "FR846408" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE2322_2009" : [ - "KJ627256" - ], - "Hepatitis_B_virus__PG_65" : [ - "KF471642" - ], - "Beak_and_feather_disease_virus__CS12082720213" : [ - "KC693651" - ], - "Simian_adenovirus_44" : [ - "FJ025899" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_LW3_7" : [ - "JQ663564" - ], - "Hepatitis_B_virus_Ehi_SK_lam_2_1" : [ - "AB195933" - ], - "Hepatitis_B_virus_Ehi_MH_lam_3_3" : [ - "AB195938" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_LW6_6" : [ - "JQ663566" - ], - "Citrus_tristeza_virus__CTV" : [ - "DQ272579" - ], - "Squash_yellow_mild_mottle_virus__CR_98_631" : [ - "NC_003865" - ], - "Helicobacter_pylori_SouthAfrica7" : [ - "NC_017373", - "NC_017361" - ], - "Squash_leaf_curl_virus__JO3_225" : [ - "KM595208" - ], - "FTLS_virus__YPQ2" : [ - "KF356519", - "KF356531", - "KF356543" - ], - "Sandfly_fever_Turkey_virus_Izmir_19" : [ - "NC_015412", - "NC_015411", - "NC_015413" - ], - "Melon_necrotic_spot_virus_Kochi" : [ - "AB250685" - ], - "BK_polyomavirus__LAB_7" : [ - "AB301086" - ], - "Human_papillomavirus_type_68__Qv32718" : [ - "KC470268" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1585_2001" : [ - "FJ373303" - ], - "Cauliflower_mosaic_virus__IRNWKB63" : [ - "KF357589" - ], - "Mycobacterium_leprae_TN" : [ - "NC_002677" - ], - "Thottapalayam_virus_VRC_66412" : [ - "EU001330", - "NC_010707", - "NC_010708", - "EU001329" - ], - "Dengue_virus_4_VE_61073_2007" : [ - "HQ332174" - ], - "Tobacco_mosaic_virus__Fengcheng" : [ - "HE818420" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1523_2007" : [ - "EU677151" - ], - "Vibrio_phage_ICP2_2006_A" : [ - "HQ641346" - ], - "Mungbean_yellow_mosaic_India_virus____Cowpea_Pakistan" : [ - "AY269990" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1567_2007" : [ - "FJ024427" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2160_2003" : [ - "FJ639734" - ], - "Streptococcus_phage_5093" : [ - "NC_012753" - ], - "Bovine_viral_diarrhea_virus_2__D75_13_609_Dup" : [ - "HG426482", - "HG426481" - ], - "Enterovirus_B87_BAN01_10396" : [ - "AY843305" - ], - "Tula_virus_Tula_249Mr_87" : [ - "Z30944" - ], - "Choristoneura_rosaceana_entomopoxvirus__L" : [ - "NC_021249" - ], - "Enterobacteria_phage_fd_478" : [ - "NC_025824" - ], - "Nakamurella_multipartita_DSM_44233" : [ - "NC_013235" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0168" : [ - "KP759705" - ], - "Hepatitis_B_virus__ES72_12" : [ - "JF828937" - ], - "Soybean_mosaic_virus__WS144" : [ - "FJ640966" - ], - "Newcastle_disease_virus_LaSota_VRDC_Clone_LWS8_P1" : [ - "KJ563937" - ], - "Rice_stripe_virus__isolate_T" : [ - "NC_003776" - ], - "Foot_and_mouth_disease_virus___type_O__persistent_OUKG_84dpc" : [ - "KR265074" - ], - "Norovirus_Hu_GII_4_Saga2_2008_JP_Hu_GII_4_Saga2_2008_JP" : [ - "AB541333" - ], - "Hepatitis_E_virus__JBOAR124_Mie11" : [ - "AB780453" - ], - "Norovirus_Hu_GII_4_Saga4_2006_JP_Hu_GII_4_Saga4_2006_JP" : [ - "AB447457" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1278" : [ - "KR534544" - ], - "Orgyia_leucostigma_NPV__CFS_77" : [ - "NC_010276" - ], - "Enterovirus_A71_EV71_GDSG_17_2008" : [ - "FJ194965" - ], - "Clostridium_ljungdahlii_DSM_13528" : [ - "NC_014328" - ], - "Hepatitis_B_virus__C2_Shanghai" : [ - "GU385774" - ], - "Pepino_mosaic_virus_Peruvian_SM_74" : [ - "AM109896" - ], - "Wheat_dwarf_virus__YNKM07_31" : [ - "KJ536142" - ], - "JC_polyomavirus_735B" : [ - "AY121914" - ], - "Hepatitis_B_virus__NA1_11" : [ - "AY796032" - ], - "Banana_bunchy_top_virus__KHI" : [ - "AY996563" - ], - "Aroa_virus_Bussuquara_virus_BeAn_4073" : [ - "NC_009026" - ], - "Potato_virus_Y__ID269" : [ - "FJ643477" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_QYYZ" : [ - "JQ308798" - ], - "Decapod_penstyldensovirus_1_KLV_2010_01" : [ - "JN377975" - ], - "Infectious_bronchitis_virus_ck_CH_LBJ_140413" : [ - "KP118881" - ], - "Usutu_virus_5660" : [ - "KJ438709" - ], - "Cleome_leaf_crumple_virus__BgV05B_1_C54" : [ - "JF694464" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1998_2004" : [ - "JQ287664" - ], - "Halanaerobium_praevalens_DSM_2228" : [ - "NC_017455" - ], - "Bluetongue_virus_3__RSArrrr_03" : [ - "AJ586697" - ], - "South_African_cassava_mosaic_virus__MG_MG561A1_11" : [ - "KJ887733" - ], - "Tomato_leaf_curl_New_Delhi_virus__X4A" : [ - "KJ778695" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4999_1" : [ - "KR105291" - ], - "Human_immunodeficiency_virus_1__C_ZA_1189MB" : [ - "AY585264" - ], - "Coxsackievirus_A18_G_13" : [ - "AF465513" - ], - "Infectious_pancreatic_necrosis_virus_strain_31_75" : [ - "AJ622823" - ], - "Hepatitis_B_virus_HB506" : [ - "JQ027311" - ], - "Dengue_virus_3_D3_SG_05K791DK1_2005" : [ - "EU081182" - ], - "Encephalomyocarditis_virus__emcv_pv21" : [ - "X74312" - ], - "Wheat_dwarf_virus__SXYL07_4" : [ - "KJ536122" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota2" : [ - "KP283413" - ], - "Newcastle_disease_virus_Sterna_Astr_2755_2001" : [ - "AY865652" - ], - "Hepatitis_B_virus__T1667" : [ - "GQ205389" - ], - "Hepatitis_B_virus__G3_4" : [ - "GU815779" - ], - "Porcine_circovirus_2__QY" : [ - "KC514974" - ], - "Barley_yellow_dwarf_virus_Ker_II__K465" : [ - "KC572000" - ], - "Maize_streak_Reunion_virus__MSRV_NG_ng11_Ife_2011" : [ - "KJ437669" - ], - "Porcine_circovirus_2_U0168_03__U0168_03" : [ - "EU057187" - ], - "Dengue_virus_2__DENV_2_US_BID_V1471_2001" : [ - "EU687231" - ], - "Bat_SARS_coronavirus_HKU3_2__HKU3_2" : [ - "DQ084199" - ], - "Chikungunya_virus_IPD_A_SH_2807" : [ - "HM045804" - ], - "Porcine_circovirus_2__930_09_1" : [ - "HQ591378" - ], - "Hepatitis_B_virus__KWgib9" : [ - "AB823661" - ], - "Hepatitis_B_virus__J222" : [ - "GQ377625" - ], - "Coxsackievirus_A7__ET1080" : [ - "GU942821" - ], - "Pseudomonas_phage_phiKMV" : [ - "NC_005045" - ], - "Norovirus_Hu_GII_4_Akita5_2007_JP_Hu_GII_4_Akita5_2007_JP" : [ - "AB541217" - ], - "Beak_and_feather_disease_virus__BFDV_DL10B" : [ - "KF768552" - ], - "Gossypium_davidsonii_symptomless_alphasatellite__Dav_alphaB_7B" : [ - "EU384653" - ], - "Avian_paramyxovirus_penguin_Falkland_Islands_324_2007__penguin_Falkland_Islands_324_2007" : [ - "NC_025349" - ], - "Ross_River_virus_NB5092" : [ - "NC_001544" - ], - "Hepatitis_B_virus__HBV_TR1" : [ - "AB116079" - ], - "Hepatitis_C_virus_subtype_1b__No__31" : [ - "AB154206" - ], - "Hepatitis_B_virus__Ib_2" : [ - "AY596108" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI61_12_DNA_B" : [ - "HE979778" - ], - "Bean_golden_yellow_mosaic_virus__Guatemala__type_II_Guatemala" : [ - "MBGCGA" - ], - "Human_coronavirus_HKU1_N7" : [ - "DQ415905" - ], - "Maize_streak_virus__MSV_A_RE_Pie1_Mic1_1986" : [ - "FJ882105" - ], - "Hepatitis_B_virus__SLC17" : [ - "KJ598757" - ], - "Hepatitis_B_virus__CAR165" : [ - "AM494714" - ], - "JC_polyomavirus__JCV161FLC_41" : [ - "JF424948" - ], - "Porcine_epidemic_diarrhea_virus_USA_Missouri102_2013" : [ - "KJ645693" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7064_2007" : [ - "KJ189280" - ], - "Ageratum_yellow_vein_virus__AFSP3d" : [ - "JN809816" - ], - "Human_coronavirus_229E_229E" : [ - "NC_002645" - ], - "Hepatitis_B_virus__919037" : [ - "JN040758" - ], - "Tomato_yellow_leaf_curl_virus__HBLF3" : [ - "GU348995" - ], - "Peste_des_petits_ruminants_virus__Ethiopia_1994" : [ - "KJ867540" - ], - "Middle_East_respiratory_syndrome_coronavirus__Riyadh_2014KSA_683_KSA_2014" : [ - "KM027262" - ], - "Classical_swine_fever_virus_HCLV" : [ - "AF531433", - "AF091507" - ], - "Mosquito_circovirus_B19" : [ - "NC_026512" - ], - "Murine_coronavirus_MHV_JHM_IA_MHV_JHM_IA" : [ - "FJ647226" - ], - "Rabies_virus__A02_2972" : [ - "JQ685965" - ], - "Human_parainfluenza_virus_3_HPIV3_ZAF_1183071_2007" : [ - "KF687335" - ], - "Yersinia_phage_phiR201" : [ - "NC_019919" - ], - "Human_parechovirus_3__K8_94" : [ - "GQ183033" - ], - "Lake_Victoria_marburgvirus___DRC1999_05DRC99" : [ - "DQ447651" - ], - "JC_polyomavirus__JCV176FLC_13" : [ - "JF424894" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3588_2007" : [ - "GU131867" - ], - "Hepatitis_B_virus__GU758" : [ - "GQ161785" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Po_Okra6" : [ - "FN554536" - ], - "Tomato_aspermy_virus_TAV_KC" : [ - "AJ237849" - ], - "Porcine_circovirus_2__SX_1" : [ - "HM776451" - ], - "Southern_rice_black_streaked_dwarf_virus__Quang_Tri1" : [ - "KM454850" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4007_2008" : [ - "GU131771" - ], - "Hepatitis_B_virus__Cr01" : [ - "KJ843219" - ], - "Human_poliovirus_1_NIE1018360" : [ - "KJ170440" - ], - "Saffold_virus__Pak_2491" : [ - "AB747249" - ], - "Aggregatibacter_actinomycetemcomitans_D11S_1" : [ - "NC_014629", - "NC_013416", - "NC_013597", - "NC_013438" - ], - "Simian_immunodeficiency_virus_SIVmac239_95058" : [ - "AY611494" - ], - "Okra_yellow_crinkle_virus" : [ - "DQ902715", - "NC_008377" - ], - "Wheat_dwarf_virus____Sanxi_Yangling___SXYL05_1" : [ - "EF536877" - ], - "Cronobacter_sakazakii_ATCC_BAA_894" : [ - "NC_009778", - "NC_009780", - "NC_009779" - ], - "Hepatitis_B_virus__919012" : [ - "JN040800" - ], - "Japanese_encephalitis_virus__YN05124" : [ - "JF706281" - ], - "Human_bocavirus_Bonn_1" : [ - "FJ858259" - ], - "West_Nile_virus__WNV_1_US_BID_V4338_2002" : [ - "HM488179" - ], - "Hepatitis_B_virus__HBV_USA1911" : [ - "AB116076" - ], - "Simian_virus_40__SV40_SP_KT" : [ - "EF579804" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_6_2011" : [ - "KJ686183" - ], - "Goose_circovirus_xs3" : [ - "DQ192284" - ], - "Heartland_virus__Patient2" : [ - "JX005845", - "JX005843", - "JX005847" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__MU4B3" : [ - "FM164735" - ], - "Hantaan_virus__CBAa11_106" : [ - "KC576787" - ], - "Rotavirus_A_RVA_Human_wt_ITA_AV21_2010_G9P8_RVA_Human_wt_ITA_AV21_2010_G9P8_AV21" : [ - "JX195066", - "JX195071", - "JX195068", - "JX195070", - "JX195073", - "JX195065", - "JX195067", - "JX195063", - "JX195064", - "JX195072" - ], - "Human_rhinovirus_B14_1059" : [ - "HRV14POL" - ], - "Pan_troglodytes_verus_polyomavirus_2c__6413" : [ - "HQ385751" - ], - "Squash_leaf_curl_virus__JO3_36" : [ - "KM595196" - ], - "Pepino_mosaic_virus__Tor9" : [ - "HG313806" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PR_54A_2008" : [ - "HM748933" - ], - "Tomato_leaf_curl_New_Delhi_virus__cucumber_Thailand" : [ - "AB368448", - "AB330079", - "AB368447", - "AB330080" - ], - "Deltacoronavirus_PDCoV_USA_Illinois121_2014_PDCoV_USA_Illinois121_2014" : [ - "KJ481931" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_79E_159_01_1979" : [ - "KP258712" - ], - "Bean_yellow_mosaic_virus__PN83A" : [ - "HG970860" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_O27B_2005" : [ - "JQ319169" - ], - "Rice_black_streaked_dwarf_virus__JSXHR44" : [ - "HM209075" - ], - "South_African_cassava_mosaic_virus__MG_MG38A5_06" : [ - "KJ887643" - ], - "BK_polyomavirus_NWC_8" : [ - "AB269858" - ], - "Coxsackievirus_B5__CVB5_SD_09" : [ - "JX276378" - ], - "Yunnan_orbivirus__YOV_77_2" : [ - "NC_007664", - "NC_007663", - "NC_007660", - "NC_007665", - "NC_007659", - "NC_007657", - "NC_007658", - "NC_007661", - "NC_007662", - "NC_007656" - ], - "Pennisetum_mosaic_virus__AZ6" : [ - "JX070140" - ], - "Porcine_circovirus_2_Fd8" : [ - "AY321995" - ], - "African_cassava_mosaic_virus__ACMV__NG_Mg_03" : [ - "EU685318" - ], - "Dengue_virus_2__DENV_2_NI_BID_V515_2005" : [ - "EU482750" - ], - "Hepatitis_B_virus__S1607_8" : [ - "FJ032357" - ], - "Norovirus_Hu_GII_4_Ohio_7I_2012_USA_Hu_GII_4_Ohio_7I_2012_USA" : [ - "JX126912" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_WUH2" : [ - "EU678352" - ], - "Infectious_bronchitis_virus_Georgia_1998_Vaccine" : [ - "GQ504723" - ], - "Human_coronavirus_NL63_NL63_DEN_2008_16" : [ - "JQ765566" - ], - "Human_bocavirus_LZFB037" : [ - "KM624024" - ], - "Dengue_virus_4__DF_patient" : [ - "JN638570" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_16_2010" : [ - "KF430200" - ], - "Plum_pox_virus_PPV_D_Ou13" : [ - "AB576067" - ], - "Tick_borne_encephalitis_virus_IrkutskBR_1456_09" : [ - "KP331443" - ], - "Duck_hepatitis_B_virus_Indian_IDHBV" : [ - "X74623" - ], - "Dengue_virus_2__SG_EHI_D2_0466Y07" : [ - "KR779782" - ], - "Amasya_cherry_disease_associated_chrysovirus" : [ - "NC_009945", - "NC_009944", - "AJ781398", - "NC_009947", - "NC_009946", - "AJ781400", - "AJ781397", - "AJ781399" - ], - "Japanese_encephalitis_virus_CC27_L3" : [ - "AY303796" - ], - "BK_polyomavirus__KOM_5" : [ - "AB211374" - ], - "Porcine_circovirus_1_sc_3" : [ - "DQ472013" - ], - "Hepatitis_B_virus__WHRNA2" : [ - "JN257158" - ], - "Dengue_virus_1__MKS_IF062" : [ - "KC762627" - ], - "Cherry_rusty_mottle_associated_virus__8804" : [ - "KF356396" - ], - "Pepper_mild_mottle_virus_Ia" : [ - "AJ308228" - ], - "Beak_and_feather_disease_virus__BFDV_DL03B" : [ - "KF768551" - ], - "Dengue_virus_2__DENV_2_US_BID_V1054_1996" : [ - "EU482561" - ], - "Hepatitis_delta_virus__TW3678_25" : [ - "AY648959" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V353_2002" : [ - "EU155307" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC33BD2_2009" : [ - "JF909112" - ], - "Beak_and_feather_disease_virus__BFDV_B_B_PL_337_2007" : [ - "JX221019" - ], - "Norovirus_Hu_GII_4_Osaka3_2008_JP_Hu_GII_4_Osaka3_2008_JP" : [ - "AB541324" - ], - "Listeria_monocytogenes_N53_1" : [ - "NC_020558" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_Galah_04_410" : [ - "KF385436" - ], - "Human_immunodeficiency_virus_1__URTR35" : [ - "AF385935" - ], - "Rice_gall_dwarf_virus__Guangdong" : [ - "GU937008", - "GU937004", - "GU937006", - "GU937009", - "GU937007", - "GU937005", - "GU937010", - "DQ445091" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V366_2006" : [ - "EU155255" - ], - "Human_immunodeficiency_virus_1__DR0796" : [ - "AB565479", - "AB565478" - ], - "Porcine_circovirus_2_ChangZhou0511" : [ - "EU503031" - ], - "Human_herpesvirus_5_BE_2_2013" : [ - "KP745656" - ], - "Dengue_virus_3__DENV_3_US_BID_V1447_1998" : [ - "EU687218" - ], - "Human_poliovirus_1__10094c" : [ - "FJ859062" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5507_2010" : [ - "JF937648" - ], - "Dengue_virus_2__DENV_2_US_BID_V684_1994" : [ - "EU482741" - ], - "Bacteroides_vulgatus_ATCC_8482" : [ - "NC_009614" - ], - "Hepatitis_B_virus__A186" : [ - "HM363565" - ], - "West_Nile_virus__WNV_1_US_BID_V5218_2008" : [ - "JF920747" - ], - "Norovirus_Hu_GII_20159_2009_VNM_Hu_GII_20159_2009_VNM" : [ - "KC409257" - ], - "Canine_parvovirus_2c__UY349" : [ - "KM457129" - ], - "Lactococcus_phage_bIBB29" : [ - "NC_011046" - ], - "Clavibacter_michiganensis_sepedonicus" : [ - "NC_010408", - "NC_010399", - "NC_010407" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2737_2007" : [ - "FJ906965" - ], - "Andrias_davidianus_ranavirus__1201" : [ - "KC865735" - ], - "Alkhumra_hemorrhagic_fever_virus_200905915" : [ - "JF416963" - ], - "Rotavirus_A_RVA_Human_wt_COD_KisB332_2008_G4P_6" : [ - "KJ870901", - "KJ870907", - "KJ870905", - "KJ870909", - "KJ870902", - "KJ870910", - "KJ870908", - "KJ870900", - "KJ870904", - "KJ870903" - ], - "Human_poliovirus_1_Cox" : [ - "AJ430385" - ], - "Philosamia_cynthia_ricini_nucleopolyhedrovirus_virus" : [ - "JX404026" - ], - "Norovirus_Hu_GII_4_Fukui4_2008_JP_Hu_GII_4_Fukui4_2008_JP" : [ - "AB541248" - ], - "Hepatitis_B_virus__GU852" : [ - "GQ161810" - ], - "Porcine_circovirus_2__PCV2_Ha08" : [ - "FJ804417" - ], - "Hepatitis_B_virus__cxa1067" : [ - "KC774285" - ], - "Calicivirus_pig_AB104_CAN_AB104" : [ - "FJ355930" - ], - "Hepatitis_B_virus__M70" : [ - "GQ924638" - ], - "Tortoise_picornavirus_14_04" : [ - "NC_025890" - ], - "Hepatitis_B_virus_29122" : [ - "FN545821" - ], - "Hepatitis_C_virus__HC_J1" : [ - "HPCHCJ1" - ], - "Hepatitis_B_virus__A231" : [ - "HM363602" - ], - "Hepatitis_B_virus__144" : [ - "JQ040132" - ], - "JC_polyomavirus__SL_1" : [ - "AB262398" - ], - "Potato_Virus_P_Potato_rough_dwarf_virus_Arg" : [ - "NC_009759" - ], - "Streptococcus_anginosus_C238" : [ - "NC_022239" - ], - "Pepper_mottle_virus__217" : [ - "EU586124" - ], - "Maize_rayado_fino_virus__Costa_Rican" : [ - "NC_002786" - ], - "Human_immunodeficiency_virus_1__99UGB21875" : [ - "AF484480" - ], - "Hepatitis_B_virus__ES72_2" : [ - "JF828933" - ], - "West_Nile_virus__WNV_1_US_BID_V4342_2002" : [ - "HQ705669" - ], - "Lactococcus_phage_bIL67" : [ - "NC_001629" - ], - "Escherichia_phage_ECBP5" : [ - "NC_027330" - ], - "Soybean_mild_mottle_virus__Sb17" : [ - "NC_014140" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pakistan_Cb_7_08" : [ - "FJ861370" - ], - "Plum_pox_virus_strain_Marcus_Marcus_SK_111pl" : [ - "HF585099" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT09B65_2005" : [ - "JF909168" - ], - "Staphylococcus_aureus_Z172" : [ - "NC_022610", - "NC_022604", - "NC_022605" - ], - "Squash_vein_yellowing_virus__SM2008cHe" : [ - "JF897996" - ], - "Hepatitis_B_virus__cyc1042" : [ - "KC774352" - ], - "Antheraea_pernyi_iflavirus__LnApIV_02" : [ - "NC_023483" - ], - "Reston_ebolavirus___Reston_Reston08_C" : [ - "FJ621584" - ], - "Porcine_circovirus_2_FJNP0412" : [ - "GU233804" - ], - "Hepatitis_B_virus__J194" : [ - "GQ377618" - ], - "Tick_borne_encephalitis_virus_Birobidzhan_1354" : [ - "KP844726" - ], - "Yersinia_pestis_D106004" : [ - "NC_017155", - "NC_017156", - "NC_017153", - "NC_017154" - ], - "Hepatitis_C_virus__QC271" : [ - "JX183558" - ], - "Dengue_virus_2__DENV_2_TH_BID_V3357_1964" : [ - "GQ868591" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LSD_090612" : [ - "JF828995" - ], - "Sri_Lankan_cassava_mosaic_virus__Tamil_Nadu_2" : [ - "AJ890227" - ], - "West_Nile_virus__WNV_1_US_BID_V6491_2002" : [ - "KJ501482" - ], - "Dengue_virus_2__China_04" : [ - "AF119661" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4015_2008" : [ - "GU131777" - ], - "Hepatitis_C_virus_subtype_1b_MD31" : [ - "AF207772" - ], - "African_cassava_mosaic_virus__CF_CF27AB_07" : [ - "KJ887768" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3864_1" : [ - "KR013754" - ], - "Hepatitis_B_virus__P14" : [ - "AB493829", - "GQ477467" - ], - "Hepatitis_B_virus__BR2_NORTHEAST" : [ - "KC494404" - ], - "Hepatitis_B_virus__ECO51377CWP2" : [ - "JQ664509" - ], - "West_Nile_virus__WNV_1_US_BID_V4232_2006" : [ - "HM488158" - ], - "Dengue_virus_3__424_BR_PE_06" : [ - "JX669508" - ], - "Hepatitis_B_virus__H2811" : [ - "KP322599" - ], - "Tomato_severe_rugose_virus__BR_Car235_08" : [ - "KC706625", - "KC004086" - ], - "Sindbis_virus__Ilomantsi_2005M" : [ - "JQ771793" - ], - "Treponema_pedis_T_A4" : [ - "NC_022097" - ], - "Chickpea_chlorotic_dwarf_virus__D_ICRISAT_1" : [ - "KC172664" - ], - "Yellow_fever_virus_French_viscerotropic_virus" : [ - "YFU21056" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V164_2002" : [ - "EU155232" - ], - "Bhendi_yellow_vein_India_virus__India_Trichy_OY115A_2005___OY115A" : [ - "GU112017" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LJS_090905" : [ - "JF828996" - ], - "Citrus_variegation_virus" : [ - "NC_009536", - "NC_009537", - "NC_009538" - ], - "Hepatitis_B_virus__2400" : [ - "FJ386647" - ], - "Infectious_salmon_anemia_virus__901_09" : [ - "KM262775", - "KM262777", - "KM262773", - "KM262776", - "KM262772", - "KM262774" - ], - "Hepatitis_B_virus__EN63_CHB" : [ - "JN664926" - ], - "West_Nile_virus__WNV_1_US_BID_V5212_2007" : [ - "JF920741" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2039_2003" : [ - "FJ639705" - ], - "Dengue_virus_2__DENV_2_VN_BID_V710_2006" : [ - "EU482647" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_58_2012" : [ - "KJ686259" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_27__AHEaCV_27_NZ_3061CO_2012" : [ - "KM874361" - ], - "Hepatitis_B_virus__G1_11" : [ - "GU815748" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1800_2007" : [ - "FJ432738" - ], - "Maize_streak_virus__MSV_A_CF_Bam1_Car50_2008" : [ - "HQ693291" - ], - "Cherry_virus_A__JK" : [ - "FN691959" - ], - "Human_respiratory_syncytial_virus__Kilifi_9697_5_RSVB_2006" : [ - "KP317917" - ], - "Human_rhinovirus_A76_ATCC_VR_1186" : [ - "FJ445182" - ], - "Japanese_encephalitis_virus_Nakayama_MY_2009_P578662" : [ - "HE861351" - ], - "Xanthomonas_phage_OP2" : [ - "NC_007710" - ], - "Bovine_polyomavirus_2b__2bS5" : [ - "KM496325" - ], - "Cyclovirus_bat_USA_2009__CyCV_TB" : [ - "NC_014929" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI0466_2010_B" : [ - "KJ627400" - ], - "Porcine_circovirus_1__PCV1_Eng_1970" : [ - "KJ408798" - ], - "Porcine_circovirus_2_PCV2_herd_1" : [ - "EU136711" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3758" : [ - "KM233062" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZP01_2011" : [ - "JQ693004" - ], - "Hepatitis_B_virus__DEN5691" : [ - "KF779211" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2228_2004" : [ - "FJ639795" - ], - "Hepatitis_B_virus__KOR52HCC" : [ - "GQ475356" - ], - "Chlamydia_trachomatis_L2b_Ams4" : [ - "NC_020978", - "NC_020981" - ], - "Hepatitis_B_virus__WHNDA" : [ - "JN257181" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Kah_T9P_Cuc_07" : [ - "FJ660424" - ], - "Porcine_epidemic_diarrhea_virus_JS_HZ2012" : [ - "KC210147" - ], - "South_African_cassava_mosaic_virus__MG_MG139A1_09" : [ - "KJ887932" - ], - "Navel_orange_infectious_mottling_virus__NI_1" : [ - "AB465583" - ], - "Grass_carp_reovirus_HeNan988" : [ - "KC847327", - "KC847321", - "KC847326", - "KC847325", - "KC847324", - "KC847320", - "KC847330", - "KC847323", - "KC847328", - "KC847329", - "KC847322" - ], - "Cotton_leaf_curl_Multan_virus__FC3" : [ - "HQ455349" - ], - "Hepatitis_delta_virus_dFr_47" : [ - "AJ584845" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3878_2008" : [ - "GU131711" - ], - "Desulfotomaculum_carboxydivorans_CO_1_SRB" : [ - "NC_015565" - ], - "Feline_coronavirus_Felis_catus_NLD_UU69_2010" : [ - "KF530130" - ], - "Chickpea_chlorotic_dwarf_virus__A_IC_148_99" : [ - "KC172659" - ], - "Human_papillomavirus_type_60" : [ - "NC_001693" - ], - "Campylobacter_phage_CP21" : [ - "NC_019507" - ], - "Hepatitis_C_virus__C1292" : [ - "HM777359" - ], - "Chikungunya_virus_10Mdy7" : [ - "KF590564" - ], - "Listeria_monocytogenes_SLCC2376" : [ - "NC_018590" - ], - "Human_papillomavirus_type_6__126" : [ - "HG793934" - ], - "Astrovirus_MLB1__BtnMLB1_86" : [ - "AB823732" - ], - "Monkeypox_virus__DRC_07_0104" : [ - "JX878417" - ], - "Human_immunodeficiency_virus_1__03ZAPS119MB1" : [ - "DQ351238" - ], - "Hepatitis_C_virus_subtype_6m__C_0192" : [ - "DQ835766" - ], - "Human_immunodeficiency_virus_1___194" : [ - "AB428553" - ], - "Porcine_circovirus_2__CQBS11" : [ - "KF742541" - ], - "Budgerigar_fledgling_disease_polyomavirus_GFM_1" : [ - "AB453166", - "AB477106" - ], - "Tomato_leaf_curl_New_Delhi_virus_JLH13" : [ - "HM989846" - ], - "Hepatitis_B_virus__HK910" : [ - "DQ089772" - ], - "Human_immunodeficiency_virus_1__TRJO_flC9" : [ - "FJ496156" - ], - "Simian_immunodeficiency_virus__SIVmus01CM2500" : [ - "EF070331" - ], - "Hepatitis_B_virus__MY853912" : [ - "KJ803790" - ], - "Duck_adenovirus_1__D11_JW_032" : [ - "KJ452172" - ], - "Dengue_virus_2__MKS_0297" : [ - "KC762662" - ], - "Dengue_virus_4__GZ1D4" : [ - "JF741967" - ], - "Tomato_chlorosis_virus__JJ" : [ - "KP137100", - "KP137101" - ], - "Hepatitis_B_virus__SWT1_3" : [ - "EU916235" - ], - "Feline_immunodeficiency_virus__JM01" : [ - "EF455609" - ], - "West_Nile_virus_TVP_8533" : [ - "AY289214" - ], - "Coxsackievirus_A6__4592_SH_CHN_2012" : [ - "KJ541159" - ], - "Human_astrovirus_1__JZ" : [ - "KF211475" - ], - "Human_adenovirus_53__C075_Matsuyama_2003" : [ - "AB605244" - ], - "Japanese_encephalitis_virus_B_0860_82" : [ - "GQ902058" - ], - "Leadbetterella_byssophila_DSM_17132" : [ - "NC_014655" - ], - "Hepatitis_C_virus_subtype_1a__00Z" : [ - "EU781747" - ], - "Hepatitis_B_virus__GD13_2004" : [ - "HQ603059" - ], - "Peste_des_petits_ruminants_virus__India_TN_Gingee_2014" : [ - "KR261605" - ], - "Watermelon_chlorotic_stunt_virus__PA2_Q18" : [ - "KM820284" - ], - "West_Nile_virus__WNV_1_US_BID_V4700_2003" : [ - "HM488236" - ], - "Temperate_fruit_decay_associated_virus__MFBpe35e" : [ - "KR134346" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO20AZ2_2009" : [ - "JF909146" - ], - "Hepatitis_B_virus_FMU014" : [ - "AY206385" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1571_2007" : [ - "FJ024431" - ], - "Lactococcus_phage_P335" : [ - "DQ838728" - ], - "Hepatitis_B_virus__MY711763" : [ - "KJ803796" - ], - "Hepatitis_B_virus__B31" : [ - "EU939583" - ], - "Dengue_virus_2__GW6" : [ - "KM587709" - ], - "WU_Polyomavirus__HN111" : [ - "KC571699" - ], - "Carrot_thin_leaf_virus__CTLV_Cs" : [ - "NC_025254" - ], - "Dengue_virus_3__DENV_3_US_BID_V858_2003" : [ - "EU482595" - ], - "Torque_teno_virus__TTV_HD16d__gbCsCt43_5" : [ - "FR751479" - ], - "West_Nile_virus_NY99_crow_V76_1" : [ - "FJ151394" - ], - "Bacillus_megaterium_DSM319" : [ - "NC_014103" - ], - "Rotavirus_G4__Rota_39" : [ - "AB012070" - ], - "Porcine_circovirus_1_ZZ_3" : [ - "KC733436" - ], - "Chikungunya_virus__LK_EH_chik19708" : [ - "GU013530" - ], - "Bell_pepper_endornavirus__Maor" : [ - "KP455654" - ], - "Mycoplasma_leachii_PG50" : [ - "NC_014751" - ], - "SARS_coronavirus_ZS_A__ZS_A" : [ - "AY394997" - ], - "Tomato_leaf_curl_New_Delhi_virus__2B" : [ - "KF537780" - ], - "Beijerinckia_indica_ATCC_9039" : [ - "NC_010581", - "NC_010580", - "NC_010578" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9464_2013" : [ - "KJ643530" - ], - "Human_respiratory_syncytial_virus_05_040058" : [ - "JX576755" - ], - "African_cassava_mosaic_virus__MG_MG64A1_06" : [ - "KJ887883" - ], - "Dengue_virus_3__D3_Pakistan_56_2008" : [ - "KF041254" - ], - "Human_poliovirus_3_NIE1018457" : [ - "KJ170590" - ], - "Plum_pox_virus__RU_30sc" : [ - "KC020126" - ], - "West_Nile_virus__WNV_1_US_BID_V7389_2009" : [ - "KJ501101" - ], - "Zucchini_tigre_mosaic_virus__Q10" : [ - "KC345605" - ], - "East_African_cassava_mosaic_virus__KE_mtw_CMD_MI95_12" : [ - "HG530116" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7610_2009" : [ - "KJ189341" - ], - "Hepatitis_B_virus__bur1064" : [ - "KC774377" - ], - "Dengue_virus_2__MKS_0417" : [ - "KC762655" - ], - "Acidithiobacillus_ferrooxidans_ATCC_53993" : [ - "NC_011206" - ], - "Cucumber_mosaic_virus_36a1" : [ - "AB079890", - "AB079889", - "AB079891" - ], - "Salmonella_enterica_serovar_Agona_24249" : [ - "NC_022991" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_412N2__412N2" : [ - "JN819506" - ], - "Maize_streak_virus__MSV_A_MZ_Pem4_Moz40_2007" : [ - "HQ693365" - ], - "Rhodospirillum_photometricum" : [ - "NC_017059" - ], - "Hepatitis_B_virus__GZ_JSM" : [ - "DQ448622" - ], - "Small_begomovirus_associated_satellite__wf_S7" : [ - "KJ859215" - ], - "Minute_virus_of_mice_MVM_p" : [ - "NC_001510" - ], - "Hepatitis_B_virus__cxa2051" : [ - "KC774320" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL172A" : [ - "AB985578" - ], - "Bean_golden_mosaic_virus__BR_Flt11_11" : [ - "KJ939776" - ], - "Bovine_rhinitis_B_virus_EC11" : [ - "NC_010354" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3683_1" : [ - "KM034561" - ], - "Cotton_leaf_curl_betasatellite__Rajasthan" : [ - "KP015743" - ], - "Reticuloendotheliosis_virus_APC_566" : [ - "DQ387450" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3856_3" : [ - "KM233114" - ], - "Arhar_cryptic_virus_I_Hyderabad" : [ - "NC_024011", - "NC_024014", - "NC_024010" - ], - "Dengue_virus_2_DENV_2_PR_28DN_1994" : [ - "GQ398312" - ], - "West_Nile_virus_578_10" : [ - "KC496015" - ], - "Hepatitis_C_virus__136142" : [ - "KC248193" - ], - "Passion_fruit_mosaic_virus" : [ - "NC_015552" - ], - "Foot_and_mouth_disease_virus___type_SAT_1_SAT1_5sa_61_sat1_5sa_iso13" : [ - "AY593842" - ], - "Bovine_enterovirus_strain_K2577__K2577" : [ - "AF123432" - ], - "Rotavirus_C__Bristol" : [ - "NC_007571" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9518_2010" : [ - "KJ627371" - ], - "Hepatitis_B_virus__S6_1" : [ - "EU916223" - ], - "Bluetongue_virus_1__SUD1987_01" : [ - "AJ586658" - ], - "Porcine_circovirus_2_HB" : [ - "AY291317" - ], - "Watermelon_chlorotic_stunt_virus__WmCSV_JOR" : [ - "EU561236" - ], - "Spodoptera_frugiperda_ascovirus_1a" : [ - "NC_008361" - ], - "Avian_paramyxovirus_7_APMV_7_dove_Tennessee_4_75" : [ - "NC_025347" - ], - "Hepatitis_B_virus_1463_19" : [ - "KR014070" - ], - "Cauliflower_mosaic_virus__Ca_Q50" : [ - "EU215797" - ], - "Hepatitis_B_virus__111002951" : [ - "JN792908" - ], - "West_Nile_virus__WNV_1_US_BID_V5170_2002" : [ - "JF730043" - ], - "Atlantic_salmon_calicivirus__Nordland_2011" : [ - "NC_024031" - ], - "Human_immunodeficiency_virus_1__CH6" : [ - "AY536234" - ], - "Hepatitis_B_virus__S955_2" : [ - "FJ787452" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V108_2003" : [ - "EU255931" - ], - "Cotton_leaf_curl_Multan_betasatellite__Lucknow" : [ - "KM065438" - ], - "Prunus_necrotic_ringspot_virus_PV32" : [ - "Y07568" - ], - "Cucumber_mosaic_virus_satellite_RNA_TN" : [ - "AB176850" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V143_2003" : [ - "EU256000" - ], - "Garlic_common_latent_virus__SW3_2" : [ - "JQ899445" - ], - "West_Nile_virus__WNV_1_US_BID_V6629_2001" : [ - "KJ501378" - ], - "McMurdo_Ice_Shelf_pond_associated_circular_DNA_virus_1__alg49_15" : [ - "NC_024477" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_25_2013" : [ - "KJ156866" - ], - "Human_smacovirus_1__Virginia_12_2011_Albemarle_G16" : [ - "KP233188" - ], - "Hepatitis_B_virus_4545_97" : [ - "EU594432" - ], - "Hepatitis_B_virus__MMA_3" : [ - "AM421531" - ], - "Trichomonas_vaginalis_virus_2_TVV2_UR1_1" : [ - "KM268109" - ], - "Propionibacterium_phage_PHL082M00__PHL082M00" : [ - "NC_027359" - ], - "Human_respiratory_syncytial_virus_03_034613" : [ - "JX576759" - ], - "West_Nile_virus__Italy_2011_AN_2" : [ - "JN858070" - ], - "Sida_micrantha_mosaic_virus__Brazil_Mato_grosso_do_sul_2_2007_____Bolivia__SimMV_MGS2_07_Bo" : [ - "HM585433", - "HM585434" - ], - "Feline_coronavirus_Felis_catus_NLD_UU50_2010" : [ - "KF530129" - ], - "Hepatitis_B_virus__BA109" : [ - "FJ657529" - ], - "Friend_murine_leukemia_virus_FB29" : [ - "NC_001362" - ], - "Human_mastadenovirus_D_human_USA_UFL_2005_P_NEW_H45_F_NEW" : [ - "KF268200" - ], - "JC_polyomavirus__JCV176FLC_06" : [ - "JF424899" - ], - "Enterococcus_phage_VD13" : [ - "KJ094032" - ], - "Hepatitis_B_virus__Gomez_2008" : [ - "HQ603069" - ], - "Dengue_virus_2__DF900" : [ - "FM210203" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC10B53_2008" : [ - "JF909086" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7464_2009" : [ - "KJ627314" - ], - "Hepatitis_B_virus_adr_Recipient_2_full" : [ - "AB026815" - ], - "Human_immunodeficiency_virus_1__99ZALT4" : [ - "EU293444" - ], - "Human_rotavirus_A_1261_stool" : [ - "AJ236751" - ], - "Bat_SARS_coronavirus_HKU3_3__HKU3_3" : [ - "DQ084200" - ], - "West_Nile_virus__WNV_1_US_BID_V4569_2003" : [ - "HM488175" - ], - "Staphylococcus_phage_S24_1_S24_1" : [ - "NC_016565" - ], - "Hepatitis_B_virus__M118_673" : [ - "EU305548" - ], - "HBV_genotype_A2__Mart_B42" : [ - "HE974374" - ], - "Foot_and_mouth_disease_virus___type_O__TUR_18_2010" : [ - "JX040491" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_38_2012" : [ - "KJ672474" - ], - "Human_bocavirus_CBJ010" : [ - "KM464728" - ], - "Bluetongue_virus_3_Australia_DPP973" : [ - "BTVFRA" - ], - "Dengue_virus_1__DENV_1_NI_BID_V653_2004" : [ - "EU596501" - ], - "Candidatus_Sulcia_muelleri_DMIN" : [ - "NC_014004" - ], - "Enterovirus_A71__EV71_Hun11_4_2011" : [ - "KJ004553" - ], - "Bamboo_mosaic_virus__BaMV_V" : [ - "BBSCG" - ], - "Persimmon_cryptic_virus__SSPI" : [ - "NC_017988", - "NC_017989" - ], - "South_African_cassava_mosaic_virus__MG_MG624A2_11" : [ - "KJ887740" - ], - "Simian_adenovirus_27_2" : [ - "FJ025928" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5099_2009" : [ - "JF920400" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE0433_2009" : [ - "KJ627271" - ], - "Hepatitis_B_virus__060_K_Laj" : [ - "KF873529" - ], - "Hepatitis_B_virus__D165" : [ - "EU939659" - ], - "Human_papillomavirus_type_31__QV00168" : [ - "HQ537673" - ], - "Hepatitis_B_virus__Ni" : [ - "HQ603067" - ], - "Tomato_yellow_leaf_curl_virus__SDTA" : [ - "JF414236" - ], - "Salmonella_phage_FSL_SP_058" : [ - "NC_021772" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite_India_PUSA_3_2010" : [ - "NC_014594" - ], - "Human_enterovirus_C104_Pavia260_9210" : [ - "JX982254" - ], - "Cucumber_mosaic_virus_Ns" : [ - "AJ511989", - "AJ580953", - "AJ511990" - ], - "Dolichos_yellow_mosaic_virus" : [ - "AY309241" - ], - "Porcine_circovirus_2_PT_26633_09" : [ - "HQ831538" - ], - "Cauliflower_mosaic_virus__IRNRKh22" : [ - "JX912267" - ], - "Barley_yellow_dwarf_virus_GAV" : [ - "NC_004666" - ], - "Spring_beauty_latent_virus_KU1" : [ - "NC_004120", - "NC_004122", - "NC_004121" - ], - "Human_mastadenovirus_B_human_USA_UFL_Adv7d2_3_unknown_7_P7H7F7" : [ - "KF268135" - ], - "Streptococcus_gallolyticus_UCN34" : [ - "NC_013798" - ], - "West_Nile_virus__WNV_1_US_BID_V6448_2002" : [ - "KJ501464" - ], - "Chilli_leaf_curl_virus_Noida__India_Uttar_Pradesh_Papaya_2009___Noida" : [ - "HM140371" - ], - "Hepatitis_B_virus__PNF4543" : [ - "KF779331" - ], - "Merremia_mosaic_virus__PR4_H6" : [ - "DQ644558" - ], - "Pseudomonas_phage_vB_PaeM_PAO1_Ab11_Ab11" : [ - "LN610583" - ], - "West_Nile_virus_804994" : [ - "DQ256376" - ], - "JC_polyomavirus__FC_4" : [ - "AB103410" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2778_2007" : [ - "FJ882548" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_2061_88_1988" : [ - "KJ469564" - ], - "Hepatitis_E_virus__SAAS_JDY5" : [ - "FJ527832" - ], - "Avian_metapneumovirus_type_C_Muscovy_duck_1999_99178_France_99178" : [ - "HG934338" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2012_2007" : [ - "FJ639694" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HK9" : [ - "KF287137" - ], - "West_Nile_virus__8_1_05_Uu" : [ - "FJ159131" - ], - "Porcine_circovirus_2__kaozhai" : [ - "AY122275" - ], - "Helicobacter_pylori_Rif1" : [ - "NC_018937" - ], - "Maize_streak_virus__MSV_E_Ug_LuwB_2007" : [ - "EU628624" - ], - "Banana_bunchy_top_virus__Robusta_BT_1" : [ - "AY960129" - ], - "Zucchini_yellow_mosaic_virus__begonia" : [ - "AM422386" - ], - "Rift_Valley_fever_virus_MM12" : [ - "X53771" - ], - "Bovine_astrovirus_B170_HK_B170_HK" : [ - "NC_023632" - ], - "JC_polyomavirus__SK_4" : [ - "AB081029" - ], - "Tomato_yellow_leaf_curl_virus__TYLCV_IRQ" : [ - "JQ354991" - ], - "Porcine_parvovirus_4_JS0918b" : [ - "HM031135" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Em2007" : [ - "EU262603" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20142551" : [ - "KR653226" - ], - "Lactococcus_phage_936" : [ - "KC182544" - ], - "Human_adenovirus_55_QS_DLL" : [ - "FJ643676" - ], - "JC_polyomavirus__RH_5" : [ - "AB198948" - ], - "Dengue_virus_2__MKS_2018" : [ - "KC762673" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143659" : [ - "KR653256" - ], - "Spring_viraemia_of_carp_virus__SVCV_265" : [ - "KJ513477" - ], - "Porcine_circovirus_2_HB1105" : [ - "JX948777" - ], - "Indian_citrus_ringspot_virus__K1" : [ - "NC_003093" - ], - "Human_immunodeficiency_virus_1__VI850" : [ - "AF077336" - ], - "Fox_circovirus__VS7100001" : [ - "KP260925" - ], - "Azotobacter_vinelandii_CA" : [ - "NC_021149" - ], - "Carnation_etched_ring_virus" : [ - "NC_003498" - ], - "Hepatitis_B_virus__E3_6" : [ - "GU815707" - ], - "European_mountain_ash_ringspot_associated_virus__E51594" : [ - "HG799706" - ], - "Pedilanthus_leaf_curl_virus__Pakistan_Multan_2007" : [ - "HF568782", - "HF568781" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2008_2007" : [ - "FJ639691" - ], - "Fusarium_graminearum_dsRNA_mycovirus_4" : [ - "NC_013471", - "NC_013470" - ], - "Pennisetum_mosaic_virus__CD3" : [ - "JX070151" - ], - "Saimiri_sciureus_papillomavirus_3__Mac2167_2" : [ - "JF304767" - ], - "Bacillus_cereus_G9842" : [ - "NC_011774", - "NC_011772", - "NC_011775" - ], - "Cereal_yellow_dwarf_virus_RPS" : [ - "NC_002198" - ], - "Norovirus_Hu_GII_20302_2009_VNM_Hu_GII_20302_2009_VNM" : [ - "KC409289" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir_T55X_Cuc_08" : [ - "FJ660443", - "FJ660444" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5295_1" : [ - "KR105302" - ], - "Hepatitis_B_virus__Leb54" : [ - "JN642161" - ], - "Hepatitis_B_virus_99_36" : [ - "KR013888" - ], - "Tomato_leaf_curl_Philippines_virus__P20" : [ - "EU487028" - ], - "Newcastle_disease_virus_mallard_US_MD__03_632_2003" : [ - "GQ288379" - ], - "Chikungunya_virus_StBI" : [ - "KP003811" - ], - "Hepatitis_B_virus__WY_HZ_47" : [ - "JX429905" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO13BW3_2009" : [ - "JF909138" - ], - "Norovirus_Hu_GII_4_Chiba2_2007_JP_Hu_GII_4_Chiba2_2007_JP" : [ - "AB541230" - ], - "African_cassava_mosaic_virus__MG_MG215A1_08" : [ - "KJ887955" - ], - "Hepatitis_B_virus_1485_14a" : [ - "KR014079" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1555_2007" : [ - "EU677176" - ], - "Southern_rice_black_streaked_dwarf_virus__PT1" : [ - "KJ513442", - "KJ493781" - ], - "Human_poliovirus_1_NIE0918392" : [ - "KJ170509" - ], - "Avian_orthoreovirus_1733" : [ - "KF741707", - "KF741708", - "KF741709", - "KF741711", - "KF741715", - "KF741713", - "KF741710", - "KF741714", - "KF741706" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P1pp1" : [ - "FJ882927" - ], - "Porcine_circovirus_2__PCV_Y26" : [ - "KC515018" - ], - "Foot_and_mouth_disease_virus___type_C__C_S8p360d417" : [ - "DQ409186" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir_T61X_Cuc_08" : [ - "JF501723" - ], - "Parrot_hepatitis_B_virus__P830" : [ - "JX274022" - ], - "Hepatitis_B_virus_HB753" : [ - "JQ027330" - ], - "Measles_virus_strain_Rubeovax_Measles_virus_strain_Edmonston__Rubeovax_vaccine" : [ - "AF266289" - ], - "Hepatitis_C_virus_subtype_1a__03_31" : [ - "EU781750" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7708_2012" : [ - "KJ189354" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3687_2007" : [ - "GQ868504" - ], - "Human_papillomavirus_type_58__Qv32351" : [ - "HQ537757" - ], - "Norovirus_Hu_GII_4_Nagano3_2008_JP_Hu_GII_4_Nagano3_2008_JP" : [ - "AB541306" - ], - "Polaribacter_MED152" : [ - "NC_020830" - ], - "Human_poliovirus_3_NIE1018522" : [ - "KJ170576" - ], - "Monkeypox_virus_MPXV_WRAIR7_61__Walter_Reed_267" : [ - "AY603973" - ], - "Human_rhinovirus_B6" : [ - "DQ473486" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3981_2008" : [ - "GU131754" - ], - "Tomato_leaf_curl_Philippines_virus__P101" : [ - "EU487036" - ], - "Human_immunodeficiency_virus_1__03ZASK033B2" : [ - "AY772692" - ], - "Western_equine_encephalitis_virus_BFS3060" : [ - "KJ554972" - ], - "BK_polyomavirus__BKV34_2" : [ - "KP412983" - ], - "Hepatitis_B_virus__patient26" : [ - "EU919169", - "EU919168" - ], - "Squash_leaf_curl_virus__JO2_22" : [ - "KM595176" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2317_2001" : [ - "FJ744731" - ], - "Hepatitis_B_virus_HBV_P1" : [ - "KC510641" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d2om5" : [ - "HQ890538" - ], - "Propionibacterium_phage_PHL117M00__PHL117M00" : [ - "NC_027403" - ], - "Steller_sea_lion_vesivirus_V1415_SSL2004_250F" : [ - "NC_011050" - ], - "Infectious_bursal_disease_virus_GX_NNZ_11" : [ - "JX134483", - "JX134484" - ], - "Euphorbia_mosaic_virus___B__Mexico_Jalasco_Pepper_2005___CC_Jalisco_1" : [ - "DQ520942" - ], - "Hepatitis_B_virus_28042" : [ - "EU414143" - ], - "Hepatitis_B_virus__P25" : [ - "EU859927" - ], - "Tomato_spotted_wilt_virus__CA_2" : [ - "AY744469" - ], - "Bean_golden_mosaic_virus__BgV03A_1_C69" : [ - "JF694453" - ], - "Citrus_tristeza_virus__FS674_T36" : [ - "KC517485" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3739_2007" : [ - "GQ868527" - ], - "Cellulophaga_phage_phi46_1_phi46_1" : [ - "NC_021800" - ], - "Barley_yellow_mosaic_virus_1__common__ASL1" : [ - "AJ515484" - ], - "Hepatitis_B_virus_1463_31" : [ - "KR013868" - ], - "Plum_bark_necrosis_stem_pitting_associated_virus__WH_1" : [ - "KJ792852" - ], - "Saccharomyces_cerevisiae_virus_L_A" : [ - "NC_003745" - ], - "Hepatitis_B_virus__C215_7" : [ - "FJ899786" - ], - "Kudzu_mosaic_virus" : [ - "NC_009645", - "NC_009647" - ], - "Saffold_virus_Can112051_06_adapted" : [ - "JF813004" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V92_2003" : [ - "EU256032" - ], - "African_cassava_mosaic_virus__TD_TD63BE_08" : [ - "KJ887752" - ], - "Hepatitis_B_virus__NIR_9" : [ - "KM577671" - ], - "Dengue_virus_1_D1_SG_05K3930DK1_2005" : [ - "EU081250" - ], - "Rift_Valley_fever_virus_2008_00099" : [ - "HE687304", - "HE687302", - "HE687303" - ], - "Chaerephon_polyomavirus_1__KY397" : [ - "NC_020065" - ], - "Porcine_circovirus_2_JaoZuo" : [ - "EU780073" - ], - "Pigeonpox_virus__FeP2" : [ - "NC_024447" - ], - "Madariaga_virus_MADV_Culex_TTO_24443_1959" : [ - "KJ469580" - ], - "Panicum_streak_virus__E_KE_Nye4_g363" : [ - "GQ415389" - ], - "Hepatitis_C_virus_subtype_1b__LB" : [ - "GU133617" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Tirupathi_OY98_2006___OY98" : [ - "GU111978" - ], - "Hepatitis_B_virus__patient_82" : [ - "DQ993683" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3685_2007" : [ - "GQ868502" - ], - "Hepatitis_B_virus__cur1035" : [ - "KC774233" - ], - "Hepatitis_delta_virus__C03" : [ - "KF660598" - ], - "Tomato_chlorotic_mottle_virus___Brazil_Minas_Gerais_Igarape1_1996" : [ - "DQ336354", - "DQ336353" - ], - "Porcine_circovirus_2_FJFQ0511" : [ - "GU247989" - ], - "Human_bocavirus__HZ1102" : [ - "KP710203" - ], - "Cotton_leaf_curl_Multan_virus__Faisalabad3___Pakistan" : [ - "AJ132430" - ], - "Rous_sarcoma_virus___Schmidt_Ruppin_B_Schmidt_Ruppin_B" : [ - "AF052428" - ], - "Potato_virus_X_TO" : [ - "AB196001" - ], - "Chlamydia_trachomatis_434_Bu" : [ - "NC_010287" - ], - "Methanosarcina_barkeri_Fusaro" : [ - "NC_007349", - "NC_007355" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Kishoreganj_2013___Bangladesh_Kishoreganj_2013" : [ - "AB971848", - "AB971849" - ], - "Porcine_circovirus_2__XSC" : [ - "DQ104422" - ], - "Dengue_virus_3__DENV_3_TH_BID_V3360_1973" : [ - "GQ868593" - ], - "Human_astrovirus_1_Hu_Nyergesujfalu_HUN4520_2010_HUN" : [ - "HQ398856" - ], - "Hepatitis_B_virus__HBV_1218" : [ - "AF121242" - ], - "Bluetongue_virus_2__87902" : [ - "DQ191274" - ], - "Hepatitis_B_virus__HBV247" : [ - "KJ647355" - ], - "Synergistetes_bacterium_SGP1" : [ - "NC_021038" - ], - "Mycobacterium_phage_PLot" : [ - "NC_008200" - ], - "Staphylococcus_aureus_JKD6008" : [ - "NC_017341" - ], - "Wheat_dwarf_virus__BB21" : [ - "AM296021" - ], - "Norovirus_GI_GI_Hu_CHN_2008_Huzhou_N11" : [ - "KP407451" - ], - "Hepatitis_delta_virus_Miyako_JA_M11" : [ - "AB118826" - ], - "Human_coronavirus_NL63_NL63_human_USA_911_56_1991" : [ - "KF530107" - ], - "Beak_and_feather_disease_virus__CS08_449_OBP_TAS_19167" : [ - "KF188687" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota52_2013" : [ - "KJ645704" - ], - "Hepatitis_C_virus__148636" : [ - "KC248194" - ], - "Drosophila_obscura_sigmavirus_10A__10A" : [ - "NC_022580" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4250_2007" : [ - "HM181949" - ], - "Hepatitis_B_virus__A5_50075" : [ - "FJ692608" - ], - "Cotton_leaf_curl_Burewala_virus__Lucknow" : [ - "HM461867", - "HM461866" - ], - "Euphorbia_yellow_mosaic_virus___Goias__Brazil_DF_Taquara_8880_2009" : [ - "JF756673" - ], - "Hepatitis_B_virus__WY_NJ_45" : [ - "JX429911" - ], - "Cotton_leaf_curl_Multan_virus" : [ - "GQ503175" - ], - "Dengue_virus_2__DF707" : [ - "FM210208" - ], - "Mycoplasma_phage_MAV1" : [ - "NC_001942" - ], - "Buchnera_aphidicola_TLW03__Acyrthosiphon_pisum" : [ - "NC_017252" - ], - "Human_immunodeficiency_virus_1__97CD_KTB13" : [ - "AM000054" - ], - "Hepatitis_B_virus_574_15" : [ - "KR013982" - ], - "Hepatitis_B_virus__GU921" : [ - "GQ161802" - ], - "Chlamydophila_psittaci_6BC" : [ - "NC_017287", - "NC_017288" - ], - "BK_polyomavirus__ANY_56" : [ - "AB464961" - ], - "Hepatitis_B_virus__WL339" : [ - "FR714504" - ], - "Small_begomovirus_associated_satellite__wf_S31" : [ - "KJ859188" - ], - "Dengue_virus_2_Cuba115_97" : [ - "AY702036" - ], - "Dengue_virus_2_ThD2_0433_85" : [ - "DQ181803" - ], - "Newcastle_disease_virus__cockatoo_Indonesia_14698_90" : [ - "AY562985" - ], - "Dengue_virus_2__DF699" : [ - "FM210221" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V295_2002" : [ - "EU155367" - ], - "Rickettsia_rickettsii_Hino" : [ - "NC_016914" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V398_2006" : [ - "EU155269" - ], - "Narcissus_mosaic_virus" : [ - "NC_001441" - ], - "Mycobacterium_phage_Nappy_Nappy" : [ - "NC_023725" - ], - "Columbid_circovirus__PL63" : [ - "KF738865" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V17_2004" : [ - "EU482837" - ], - "Human_immunodeficiency_virus_1__03ZAPS083MB1" : [ - "DQ351229" - ], - "Torque_teno_sus_virus_1b__PTTV2c_VA" : [ - "GU456386" - ], - "Human_immunodeficiency_virus_1__BREPM1035" : [ - "EF637049" - ], - "Hepatitis_B_virus__pt13T" : [ - "KM875425" - ], - "Dengue_virus_3__DENV_3_US_BID_V1449_1998" : [ - "EU726772" - ], - "Dengue_virus_3__DENV_3_US_BID_V1732_2002" : [ - "FJ390373" - ], - "Maize_streak_virus__MSV_A_ZA_Hec6_O18_1989" : [ - "FJ882114" - ], - "Citrus_tristeza_virus_T36_FS2_2" : [ - "EU937521" - ], - "Broad_bean_wilt_virus_2__SP2" : [ - "KC625504", - "KC625517" - ], - "Bean_common_mosaic_virus__CD026" : [ - "KM051428" - ], - "Dengue_virus_1__DENV_1_BOL_KW010" : [ - "JQ675358" - ], - "Human_immunodeficiency_virus_1__301904" : [ - "AF067157" - ], - "Hepatitis_B_virus__BA3" : [ - "AF043580" - ], - "JC_polyomavirus__NG_4" : [ - "AB127006" - ], - "Velvet_bean_severe_mosaic_virus" : [ - "NC_013415", - "NC_013414" - ], - "Soybean_mosaic_virus__LJZ002" : [ - "KP710865" - ], - "Macroptilium_yellow_mosaic_virus__St__Thomas" : [ - "NC_010648", - "NC_010647" - ], - "Japanese_encephalitis_virus__FJ0394" : [ - "JN381858" - ], - "Hepatitis_C_virus_subtype_1a__DN28" : [ - "EU781811" - ], - "African_cassava_mosaic_virus__CF_CF5AB_07" : [ - "KJ887757" - ], - "Tomato_yellow_leaf_curl_virus__JS_NJ" : [ - "KC312662" - ], - "Classical_swine_fever_virus_SXCDK" : [ - "GQ923951" - ], - "Norovirus_Hu_GII_4_Miyazaki3_2007_JP_Hu_GII_4_Miyazaki3_2007_JP" : [ - "AB541292" - ], - "Foot_and_mouth_disease_virus___type_O__TUR_868_2010" : [ - "JX040494" - ], - "Enterococcus_phage_phiFL2A_phiFL2A" : [ - "NC_013643" - ], - "Hahella_chejuensis_KCTC_2396" : [ - "NC_007645" - ], - "European_bat_lyssavirus_1__8918FRA" : [ - "EU293112" - ], - "Foot_and_mouth_disease_virus___type_A__TUR_11_2013" : [ - "KM268896" - ], - "Foot_and_mouth_disease_virus___type_O__IND811_1552__2013" : [ - "KJ825806" - ], - "Poinsettia_mosaic_virus__JO2" : [ - "AB550790" - ], - "Tomato_yellow_leaf_curl_virus_Oman__Tom_47" : [ - "KF229724" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_17c" : [ - "LN846610" - ], - "Sindbis_virus_XJ_160" : [ - "AF103728" - ], - "Dugbe_virus__KT_281_75" : [ - "AF434165" - ], - "Porcine_circovirus_2__ZQ" : [ - "KC514982" - ], - "Hepatitis_B_virus_321_96" : [ - "EU594406" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9383_2013" : [ - "KJ643471" - ], - "Duck_reovirus_QY" : [ - "KF689545" - ], - "Tomato_leaf_curl_Taiwan_virus__H8_1" : [ - "GU723723" - ], - "Brazoran_virus__Original" : [ - "NC_022039", - "NC_022037", - "NC_022038" - ], - "Achromobacter_xylosoxidans_A8" : [ - "NC_014641", - "NC_014642", - "NC_014640" - ], - "Human_immunodeficiency_virus_1__CH40E_flA2" : [ - "FJ495819" - ], - "Mammalian_orthoreovirus_2_D5_Jones__Reovirus_type_2__Jones" : [ - "X60066" - ], - "Mumps_virus_JL5_JL_CK5" : [ - "JQ946554" - ], - "Murine_pneumotropic_virus_Kilham" : [ - "NC_001505" - ], - "Hepatitis_B_virus__HBV_RU301" : [ - "AB126581" - ], - "Enterovirus_D68__2014_R1153" : [ - "KT280497" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_93E_014_01_1993" : [ - "KP258722" - ], - "Enterobacteria_phage_NL95" : [ - "AF059243" - ], - "Human_immunodeficiency_virus_1__90CF4071" : [ - "AF197341" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V128_1992" : [ - "EU155329" - ], - "Porcine_circovirus_2__JSTZ" : [ - "JQ413808" - ], - "Cyclovirus_ZM36a_ZM36a" : [ - "NC_025476" - ], - "Watermelon_chlorotic_stunt_virus__IL1_16" : [ - "KM820241" - ], - "Thiocystis_violascens_DSM_198" : [ - "NC_018012" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT03E63_2005" : [ - "JF909164" - ], - "Sapovirus_NongKhai_24_Thailand_NongKhai_24_Thailand" : [ - "AY646856" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP4C_subpopulation_2" : [ - "JN013997" - ], - "Norovirus_Hu_GII_10037_2009_VNM_Hu_GII_10037_2009_VNM" : [ - "JQ911598" - ], - "Citrus_tristeza_virus__FS701_VT" : [ - "KC517494" - ], - "Lymphocytic_choriomeningitis_mammarenavirus" : [ - "DQ361065", - "EU480452", - "DQ361066", - "NC_004294", - "EU480451", - "EU480453", - "EU480450" - ], - "Thermoanaerobacter_X514" : [ - "NC_010320" - ], - "Hepatitis_B_virus__dxa2066" : [ - "KC774463" - ], - "Sewage_associated_gemycircularvirus_9__BS3970" : [ - "NC_026165" - ], - "Pseudomonas_phage_MP29" : [ - "NC_011613" - ], - "Escherichia_blattae_DSM_4481" : [ - "NC_017910" - ], - "Human_papillomavirus_type_6__122" : [ - "HG793930" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V238_2005" : [ - "EU256072" - ], - "Dengue_virus_3__D3_Pakistan_55709_2006" : [ - "KF041256" - ], - "Dengue_virus_1__DENV_1_VN_BID_V767_2003" : [ - "EU482789" - ], - "Human_papillomavirus_type_56" : [ - "EF177181", - "EF177180", - "EF177177", - "EF177178", - "X74483", - "EF177179", - "EF177176" - ], - "Small_begomovirus_associated_satellite__wf_S49" : [ - "KJ859203" - ], - "West_Nile_virus__WNV_1_US_BID_V6625_2001" : [ - "KJ501516" - ], - "Pepper_mottle_virus__205137" : [ - "EU586131" - ], - "Porcine_kobuvirus__ch_kobu_2008_China" : [ - "KF695124" - ], - "Duck_hepatitis_A_virus_3_C_BLZ" : [ - "GU066822" - ], - "Nipah_virus__UMMC2" : [ - "AY029768" - ], - "Marburg_marburgvirus__Mbg_422_2012" : [ - "KC545387" - ], - "Torque_teno_virus__TTV_HD20e__uro953" : [ - "FR751496" - ], - "West_Nile_virus__BSL6_11" : [ - "JQ700439" - ], - "Potato_virus_Y__IUNG_7" : [ - "JF927755" - ], - "Human_immunodeficiency_virus_1__DR6538" : [ - "AB287363" - ], - "Hepatitis_B_virus__G3_3" : [ - "GU815778" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kampala_Okra2" : [ - "FN554522" - ], - "Usutu_virus__HB81P08" : [ - "KC754955" - ], - "Hepatitis_B_virus__HBV_MY683" : [ - "AB112408" - ], - "Hepatitis_B_virus__H22" : [ - "FJ349207" - ], - "Tomato_yellow_leaf_curl_virus__SDSGTO" : [ - "KJ546418" - ], - "Human_immunodeficiency_virus_1__ES_X2363_2__C" : [ - "EU786681" - ], - "Human_parvovirus_B19__KU2" : [ - "KM393163" - ], - "Tomato_leaf_curl_Sinaloa_virus__NI2" : [ - "NC_009606", - "NC_009605" - ], - "Hepatitis_B_virus__G2_5" : [ - "GU815767" - ], - "Xenotropic_MuLV_related_virus_22Rv1_CWR_R1" : [ - "FN692043" - ], - "Hepatitis_B_virus__Alaska427" : [ - "AB287316" - ], - "BK_polyomavirus__SJH_LG_313" : [ - "JN192441" - ], - "Lactococcus_phage_fd13" : [ - "KC182545" - ], - "Hepatitis_B_virus__Saan_2008" : [ - "HQ603072" - ], - "Human_immunodeficiency_virus_1__Phcsffull04" : [ - "AY818644" - ], - "Hepatitis_B_virus__JPN_Ba_A55" : [ - "AB287329" - ], - "Hepatitis_C_virus_subtype_1a__00U" : [ - "EU781746" - ], - "West_Nile_virus__WNV_1_US_BID_V7270_2012" : [ - "KJ501432" - ], - "Carnobacterium_17_4" : [ - "NC_015391", - "NC_015390" - ], - "Hepatitis_B_virus__A61" : [ - "FJ904413" - ], - "Human_immunodeficiency_virus_1__mIDU502" : [ - "AB097865" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V351_2002" : [ - "EU256101" - ], - "Hepatitis_B_virus__TK164" : [ - "JF754595" - ], - "Mycoplasma_genitalium_M2321" : [ - "NC_018495" - ], - "Human_bocavirus__HK23" : [ - "EF450739" - ], - "Hepatitis_B_virus__C103" : [ - "EU939570" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1769_2007" : [ - "FJ432722" - ], - "SARS_coronavirus_MA15_MA15_d3om3" : [ - "JF292918" - ], - "Hepatitis_delta_virus__CB" : [ - "EF514903" - ], - "Norovirus_Hu_GII_4_Akita1_2007_JP_Hu_GII_4_Akita1_2007_JP" : [ - "AB541211" - ], - "Porcine_circovirus_2__HN2" : [ - "KM035761" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2839_2005" : [ - "GQ199834" - ], - "Human_immunodeficiency_virus_1__15382_1" : [ - "DQ853459" - ], - "Hepatitis_B_virus__1879" : [ - "FJ386595" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2821_2007" : [ - "GQ199827" - ], - "Human_papillomavirus_type_33__AS099" : [ - "HQ537697" - ], - "Alkhumra_hemorrhagic_fever_virus_SCVHF001" : [ - "JN860200" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_DE_BID_V504_2003" : [ - "EU155382" - ], - "Sweet_potato_virus_G__IS103" : [ - "KM014815" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI63_12" : [ - "HE979775" - ], - "Bean_golden_mosaic_virus__BR_Una5_12" : [ - "KJ939825" - ], - "Human_papillomavirus_type_16__Qv19067" : [ - "HQ644273" - ], - "Methylococcus_capsulatus_Bath" : [ - "NC_002977" - ], - "Turnip_mosaic_virus__CAR39" : [ - "EF374098" - ], - "Grapevine_leafroll_associated_virus_4__LR106" : [ - "NC_016416" - ], - "Streptococcus_suis_ST1" : [ - "NC_017950" - ], - "Croton_yellow_vein_mosaic_betasatellite__CroYVMV_Del_Turnip" : [ - "KM229763" - ], - "Meles_meles_polyomavirus_1__UK" : [ - "KP644239" - ], - "Human_papillomavirus_type_161__KC1" : [ - "JX413109" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GBR_2015_Makona_UK3" : [ - "KR025228" - ], - "Gossypium_darwinii_symptomless_alphasatellite___Pakistan_17_5_06__Lahore9" : [ - "FR772092" - ], - "Thogoto_virus_PoTi503" : [ - "AF527530" - ], - "Hepatitis_B_virus__CONTROL4" : [ - "JQ801497" - ], - "Goose_circovirus__JX1" : [ - "GU320569" - ], - "Lates_calcarifer_nervous_necrosis_virus_VNIN" : [ - "HM485328" - ], - "Human_papillomavirus_type_6__100" : [ - "HG793908" - ], - "Hepatitis_B_virus__SHB32" : [ - "KJ598667" - ], - "West_Nile_virus__WNV_1_US_BID_V6394_2001" : [ - "KJ501277" - ], - "Gallid_herpesvirus_2_648a_p81" : [ - "JQ820250" - ], - "Human_mastadenovirus_C_DD28" : [ - "KF951595" - ], - "West_Nile_virus__WNV_1_US_BID_V6495_2006" : [ - "KJ501485" - ], - "Enterovirus_B" : [ - "NC_001472" - ], - "Hepatitis_B_virus__JPN_CH11" : [ - "AB453989" - ], - "Clostridium_phage_c_st" : [ - "NC_007581" - ], - "Human_immunodeficiency_virus_1__FSA" : [ - "DQ912822" - ], - "Hepatitis_A_virus__MakassarA07_R18" : [ - "AB839694" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8481_2001" : [ - "KJ627702" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Punc_alpha_15" : [ - "EU384650" - ], - "Dengue_virus_2__DENV_2_UMASS_Medical_BID_V2621_2008" : [ - "GQ199901" - ], - "Squash_leaf_curl_China_virus__Varanasi_Pumpkin_08___Varanasi" : [ - "GU967381", - "GU967382" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__1_1" : [ - "GU723744" - ], - "Hepatitis_C_virus_subtype_1a__01U" : [ - "EU781798" - ], - "Porcine_circovirus_2_BJ0402" : [ - "EF524516" - ], - "Foot_and_mouth_disease_virus___type_A_A5_Allier_a5allier_iso45" : [ - "AY593780" - ], - "Yellow_fever_virus__HD117294" : [ - "JX898868" - ], - "Aeromonas_phage_pAh6_C" : [ - "NC_025459" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3789_1" : [ - "KM233076" - ], - "Human_astrovirus_8_Yuc_8" : [ - "AF260508" - ], - "Chicken_anemia_virus__14" : [ - "KJ728824" - ], - "secondary_endosymbiont_of_Heteropsylla_cubana_Thao2000" : [ - "NC_018420" - ], - "Sinorhizobium_meliloti_Rm41" : [ - "NC_018682", - "NC_018700", - "NC_018701", - "NC_018683" - ], - "Porcine_circovirus_2__DE" : [ - "HM142897" - ], - "Maize_streak_virus__MSV_B1_Za_Mil_g138_2006" : [ - "EU628591" - ], - "Human_immunodeficiency_virus_1__ELI" : [ - "HIVELICG" - ], - "Hepatitis_B_virus__CX004M_e208" : [ - "KJ173280" - ], - "Hepatitis_B_virus_951_14a" : [ - "KR013821" - ], - "Alfalfa_mosaic_virus_425_Leiden" : [ - "NC_001495" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4314_2008" : [ - "GU131946" - ], - "Pepper_severe_mosaic_virus" : [ - "NC_008393" - ], - "Hepatitis_B_virus__C215" : [ - "EU939672" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2847_2005" : [ - "FJ898387" - ], - "Dengue_virus_3__DENV_3_PR_BID_V2102_2000" : [ - "KF955466" - ], - "Human_immunodeficiency_virus_1__C_96BW04_08" : [ - "AF110964" - ], - "Hepatitis_B_virus_1263_3" : [ - "KR013846" - ], - "Simian_adenovirus_30" : [ - "FJ025920" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP2C" : [ - "JN013978" - ], - "Porcine_circovirus_2__A4099" : [ - "JF317566" - ], - "Duck_adenovirus_1__D11_JW_017" : [ - "KJ452171" - ], - "Lactococcus_phage_BM13" : [ - "NC_021861" - ], - "Potato_virus_Y__ME162" : [ - "JQ971975" - ], - "Human_metapneumovirus_HMPV_AUS_134249451_2003_A" : [ - "KC562240" - ], - "Gemycircularvirus_BZ2_BZ2" : [ - "KP133079" - ], - "JC_polyomavirus__KB_15" : [ - "AB362355" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT49B14_2008" : [ - "JF909248" - ], - "Coxsackievirus_A6__PF19_SH_CHN_2013" : [ - "KJ541155" - ], - "West_Nile_virus__WNV_1_US_BID_V6178_2008" : [ - "KJ501237" - ], - "Human_poliovirus_1_NIE1118339" : [ - "KJ170474" - ], - "Hana_virus_A4_CI_2004" : [ - "NC_020899" - ], - "JC_polyomavirus__MT_14" : [ - "AB077861" - ], - "Bean_common_mosaic_necrosis_virus__PV_0413" : [ - "HG792063" - ], - "Erythrobacter_litoralis_HTCC2594" : [ - "NC_007722" - ], - "Microviridae_Fen418_41__Fen418_41" : [ - "NC_027640" - ], - "African_cassava_mosaic_virus__CF_CF46BE_07" : [ - "KJ887598" - ], - "Gull_circovirus" : [ - "NC_008521", - "JQ685854" - ], - "Papaya_leaf_curl_associated_betasatellite__beta_P4" : [ - "KJ397534" - ], - "Newcastle_disease_virus_Chicken_Sweden_95" : [ - "HQ839733" - ], - "Zaire_ebolavirus__H_sapiens_wt_GIN_2014_Makona_Kissidougou_C15" : [ - "KJ660346" - ], - "Murray_Valley_encephalitis_virus" : [ - "NC_000943" - ], - "Bluetongue_virus__Sirsa_S1" : [ - "AM261977" - ], - "Torque_teno_virus__US35" : [ - "AF122920" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143550" : [ - "KR653228" - ], - "Human_immunodeficiency_virus_1__04ZASK202B1" : [ - "DQ011180" - ], - "Chikungunya_virus_CAR256" : [ - "HM045793" - ], - "BK_polyomavirus__ETH_3" : [ - "AB263916" - ], - "Human_poliovirus_2__MAD004" : [ - "AM084223" - ], - "Cronobacter_turicensis_z3032" : [ - "NC_013284", - "NC_013283", - "NC_013282", - "NC_013285" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_DP2409_2012" : [ - "KM452739" - ], - "Hepatitis_B_virus__S2_3" : [ - "EU916209" - ], - "Foot_and_mouth_disease_virus___type_A__IND_281_2003" : [ - "HQ832579" - ], - "Beak_and_feather_disease_virus_BFDV_AUS_SP_04_233A" : [ - "KF673335" - ], - "Human_papillomavirus_type_45__Qv34163" : [ - "KC470260" - ], - "Pirital_mammarenavirus_3945_AV_97020912" : [ - "EU542420" - ], - "Hepatitis_B_virus__HBV_I_058_HIV_HBV" : [ - "KM524354" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20146001" : [ - "KR653237" - ], - "Hepatitis_B_virus__I_T98" : [ - "GU456676" - ], - "Ribgrass_mosaic_virus_RMV_Actinidia_AC_M2_A4" : [ - "GQ401365" - ], - "Tomato_common_mosaic_virus__BR_Coi11_07" : [ - "KC706595", - "KC706570" - ], - "Chlorobium_phaeobacteroides_DSM_266" : [ - "NC_008639" - ], - "Hepatitis_B_virus__919009" : [ - "JN040789" - ], - "Classical_swine_fever_virus_Riems" : [ - "AY259122" - ], - "Porcine_circovirus_2_Buffalo3" : [ - "KM116515" - ], - "Maize_chlorotic_mottle_virus__Yunnan" : [ - "GU138674" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3983_2008" : [ - "GU131756" - ], - "Staphylococcus_aureus_SA40" : [ - "NC_022443" - ], - "Maize_streak_virus__MSV_A_ZA_Boo_D1_2006" : [ - "HQ693405" - ], - "Human_immunodeficiency_virus_1__469_66" : [ - "KP718920" - ], - "JC_polyomavirus__JCV161FLC_16" : [ - "JF424924" - ], - "Vibrio_parahaemolyticus_RIMD_2210633" : [ - "NC_004605", - "NC_004603" - ], - "SARS_coronavirus_ZJ0301__ZJ0301" : [ - "DQ182595" - ], - "Enterovirus_B75_USA_OK85_10362" : [ - "AY556070" - ], - "Rice_stripe_virus__YBS07" : [ - "EU931499", - "EU931501", - "EU931498", - "EU931500" - ], - "Porcine_circovirus_2__Villa_Clara_V2" : [ - "FN398024" - ], - "Human_parechovirus_Gregory" : [ - "NC_001897" - ], - "Watermelon_chlorotic_stunt_virus__JO3_628" : [ - "KM820234" - ], - "Sida_mosaic_Bolivia_virus_2_SiMBoV2" : [ - "NC_015047", - "NC_015043" - ], - "Pseudomonas_phage_PaP1" : [ - "NC_019913" - ], - "Hepatitis_B_virus__919085" : [ - "JN040821" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1565_2007" : [ - "FJ024425" - ], - "West_Nile_virus__WNV_1_US_BID_V6392_2002" : [ - "KJ501276" - ], - "Adoxophyes_orana_granulovirus" : [ - "NC_005038" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota58_2013" : [ - "KJ645655" - ], - "West_Nile_virus__WNV_1_US_BID_V7425_2010" : [ - "KJ501135" - ], - "Macroptilium_yellow_vein_virus__BR_Pai29_11" : [ - "KJ939909" - ], - "Human_immunodeficiency_virus_1__DR1741" : [ - "AB253644", - "AB253636", - "AB253635", - "AB253646", - "AB253639", - "AB253643", - "AB253638", - "AB253642", - "AB253645", - "AB253641", - "AB253637", - "AB253640" - ], - "Monkeypox_virus_Congo_2003_358" : [ - "DQ011154" - ], - "Dicliptera_yellow_mottle_virus__Cuban" : [ - "AJ549960" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US108" : [ - "KJ019072" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3870_2008" : [ - "GU131705" - ], - "Hepatitis_B_virus__FEN78" : [ - "JF440011" - ], - "Aeromonas_salmonicida_A449" : [ - "NC_009349", - "NC_004924", - "NC_009348", - "NC_004923", - "NC_004925", - "NC_009350" - ], - "Dengue_virus_1_ThD1_0488_94" : [ - "AY732475" - ], - "Enterovirus_A71_TW_1101_08" : [ - "GQ231925" - ], - "Norovirus_Hu_GII_g_GII_12_StGeorge_NSW199U_2008_AU_Hu_GII_e_GII_12_StGeorge_NSW199U_2008_AU" : [ - "GQ845370" - ], - "Japanese_encephalitis_virus_JaOS75642" : [ - "AB569981" - ], - "Bat_circovirus__XOR" : [ - "JX863737" - ], - "Hepatitis_B_virus__patient_23" : [ - "KF767450" - ], - "Duck_circovirus__WF0804" : [ - "GU131343" - ], - "Human_poliovirus_1__DOR00044" : [ - "AF405681" - ], - "Cleome_leaf_crumple_virus__BgV05A_1_C75" : [ - "NC_016578" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4053_2008" : [ - "HM631851" - ], - "Torque_teno_virus__TTV_HD16e__gbCsCt43_6" : [ - "FR751480" - ], - "Enterobacteria_phage_NC6" : [ - "DQ079907" - ], - "Hepatitis_B_virus__Cuba27a" : [ - "KM606738" - ], - "Canine_distemper_virus_M25CR_H" : [ - "AB490681" - ], - "Hepatitis_B_virus__WHFAD" : [ - "JN257201" - ], - "Hepatitis_B_virus_99_41" : [ - "KR013890" - ], - "Feline_calicivirus" : [ - "CVXCOMGEN" - ], - "Porcine_epidemic_diarrhea_virus_USA_Texas39_2013" : [ - "KJ645645" - ], - "JC_polyomavirus__CB_4" : [ - "AB118655" - ], - "Melon_necrotic_spot_virus_Yamaguchi" : [ - "AB250687" - ], - "Escherichia_phage_vB_EcoM_PhAPEC2" : [ - "NC_024794" - ], - "Human_mastadenovirus_B_GB" : [ - "NC_011203" - ], - "Mycobacterium_phage_SargentShorty9" : [ - "NC_022326" - ], - "Invertebrate_iridescent_virus_30" : [ - "NC_023611" - ], - "Hepatitis_B_virus__I_T46" : [ - "GU456677" - ], - "Tomato_leaf_curl_Pune_virus" : [ - "NC_008517" - ], - "Turnip_curly_top_virus__IR_Hom1_2k_09" : [ - "GU456686" - ], - "Norovirus_Hu_GII_6_NIHIC34_1_2013_USA_Hu_GII_6_NIHIC34_1_2013_USA" : [ - "KF712509" - ], - "Bovine_rotavirus_K5" : [ - "JX971572", - "JX971578", - "JX971577", - "JX971574", - "JX971571", - "JX971576", - "JX971573", - "JX971579", - "JX971569", - "JX971570" - ], - "Spirosoma_linguale_DSM_74" : [ - "NC_013737", - "NC_013738", - "NC_013736", - "NC_013732", - "NC_013735", - "NC_013733", - "NC_013734", - "NC_013730", - "NC_013731" - ], - "Torque_teno_virus__HD11_sle2037" : [ - "FR848323" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD275_2013" : [ - "KM229896" - ], - "Human_papillomavirus_type_58__JP0891" : [ - "AB819277" - ], - "Bovine_parainfluenza_virus_3__TVMDL24" : [ - "KJ647288" - ], - "Japanese_encephalitis_virus__SH0410" : [ - "JN381856" - ], - "Hepatitis_B_virus__cur1023" : [ - "KC774228" - ], - "Sapovirus_Hu_GI_2_BR_DF01_BRA_2009__Hu_GI_2_BR_DF01_BRA_2009" : [ - "AB614356" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_111232" : [ - "KJ425490" - ], - "Chikungunya_virus_37997" : [ - "AY726732" - ], - "Tobacco_mosaic_virus_IM" : [ - "AB369276" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_2___strain_439__439_AUS1979_05" : [ - "AM744987" - ], - "Clostridium_phage_phiCPV4__phiCPV4" : [ - "NC_018083" - ], - "Murine_norovirus_GV_CR11_2005_USA__Mu_NoV_GV_CR11_2005_USA" : [ - "EU004679" - ], - "Bovine_viral_diarrhea_virus_1_CP7_5A" : [ - "AF220247" - ], - "Banana_bunchy_top_virus__JM5" : [ - "AB108454" - ], - "Bovine_respiratory_syncytial_virus_ATCC51908_ATCC51908" : [ - "AF295543" - ], - "Lactococcus_phage_TP901_1" : [ - "NC_002747" - ], - "Wolinella_succinogenes_DSM_1740" : [ - "NC_005090" - ], - "Parrot_hepatitis_B_virus__P904" : [ - "JX274021" - ], - "Tomato_aspermy_virus__Kolkata" : [ - "EF153735" - ], - "Coxsackievirus_A16__FJ09_02" : [ - "KF193627" - ], - "Infectious_hematopoietic_necrosis_virus_HLJ_09" : [ - "JX649101" - ], - "Mycoplasma_gallisepticum_R_low" : [ - "NC_004829" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0122" : [ - "KP759671" - ], - "JC_polyomavirus__ME_14" : [ - "AB081018" - ], - "Hepatitis_B_virus__A3_7" : [ - "GU815578" - ], - "Salmonella_phage_FSL_SP_124" : [ - "KC139515" - ], - "Cypovirus_1_Lymantria_dispar_cypovirus_1" : [ - "NC_003017", - "NC_003020", - "NC_003023", - "NC_003021", - "NC_003025", - "NC_003018", - "NC_003019", - "NC_003024", - "NC_003022", - "NC_003016" - ], - "Dengue_virus_2__DENV_2_Harvard_BID_V2993_2009" : [ - "FJ906969" - ], - "Cotton_leaf_curl_betasatellite__Bihar" : [ - "GQ374449" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V137_1991" : [ - "EU255961" - ], - "Infectious_bronchitis_virus_CK_CH_LGX_091109" : [ - "KF411041" - ], - "Newcastle_disease_virus__Chicken_China_Liaoning_03_2008" : [ - "KC542901" - ], - "Hepatitis_B_virus_42366" : [ - "FN545842" - ], - "Human_herpesvirus_5_U11" : [ - "GU179290" - ], - "Hepatitis_B_virus__C217" : [ - "EU939614" - ], - "Dengue_virus_3__DENV_3_US_BID_V2104_2000" : [ - "FJ410176" - ], - "Barley_dwarf_virus__ES3BDV" : [ - "HF968645", - "HF968644" - ], - "Hepatitis_B_virus__Leb59" : [ - "JN642163" - ], - "Norovirus_GI_Hu_CHN_2008_GI_P8_GII_8_Huzhou_N10" : [ - "KP407450" - ], - "Porcine_circovirus_2__GZ_KY1" : [ - "KC788504" - ], - "Enterococcus_phage_EF62phi" : [ - "NC_017732" - ], - "Shrimp_white_spot_syndrome_virus" : [ - "NC_003225" - ], - "Hepatitis_B_virus__B1_11" : [ - "GU815580" - ], - "Tomato_yellow_leaf_curl_virus__Damyang_43" : [ - "JN183872" - ], - "Burkholderia_phage_BcepC6B" : [ - "NC_005887" - ], - "Mumps_virus_MuV_New_York_USA_01_10" : [ - "JX287389" - ], - "Human_bocavirus_ZJ92" : [ - "JX887482" - ], - "Hepatitis_B_virus__919069" : [ - "JN040828" - ], - "Bluetongue_virus_16_TUR2000_10__Turkey_2000" : [ - "AM773696" - ], - "Porcine_circovirus_2__426_2_Venezia_23_10_03_2011" : [ - "KP231158" - ], - "West_Nile_virus__WNV_1_US_BID_V6187_2001" : [ - "KJ501243" - ], - "Sulfobacillus_acidophilus_TPY" : [ - "NC_015757" - ], - "Dengue_virus_2__DENV_2_NI_BID_V613_2005" : [ - "EU482598" - ], - "Squash_leaf_curl_virus__JO2_139" : [ - "KM595188" - ], - "Cauliflower_mosaic_virus__CRO180A" : [ - "AB863192" - ], - "Tomato_rugose_yellow_leaf_curl_virus__U1" : [ - "JN381816", - "JN381818", - "JN381814", - "JN381817" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dar_Beta_3" : [ - "EU384603" - ], - "Porcine_circovirus_2__RC220150108" : [ - "KP824722" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT10B67_2005" : [ - "JF909169" - ], - "Hepatitis_B_virus__8_D1_5_8" : [ - "GU815653" - ], - "Canine_bocavirus_1__Con_161" : [ - "NC_020499" - ], - "Dengue_virus_2__DENV_2_US_BID_V1496_2004" : [ - "EU687244" - ], - "Human_immunodeficiency_virus_1__ZM247F_flE10" : [ - "FJ496200" - ], - "Helicobacter_pylori_35A" : [ - "NC_017360" - ], - "Human_immunodeficiency_virus_1__98VNBG6" : [ - "FJ185230" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2706_2006" : [ - "FJ882532" - ], - "Hepatitis_C_virus_subtype_1a__03_10" : [ - "EU781803" - ], - "Rotavirus_A__RVA_Human_wt_DEN_Hv5137454_2010_G9P_4" : [ - "KP013448" - ], - "Barley_yellow_dwarf_virus_PAV__014" : [ - "EF521844" - ], - "Foot_and_mouth_disease_virus___type_A__IND_245_2007" : [ - "HQ832590" - ], - "Propionibacterium_phage_MrAK" : [ - "NC_027620" - ], - "West_Nile_virus__WNV_1_US_BID_V4343_2002" : [ - "HQ671742" - ], - "Hepatitis_B_virus__8117" : [ - "KJ470886" - ], - "Dengue_virus_1__DENV_1_US_BID_V2093_1998" : [ - "FJ410173" - ], - "Rabies_virus__BRdg335" : [ - "AB517659" - ], - "Mumps_virus_Jeryl_Lynn_S79" : [ - "HQ416907", - "HQ416906" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B125_2008" : [ - "GU936294" - ], - "Actinobacillus_pleuropneumoniae_serovar_5b_L20" : [ - "NC_009053" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2081_2003" : [ - "FJ639724" - ], - "Foot_and_mouth_disease_virus___type_O__MAY_3_2000" : [ - "HQ632768" - ], - "Hepatitis_B_virus__MK102_EP_CHB" : [ - "KM524347" - ], - "Lizard_adenovirus_2__23_06" : [ - "NC_024684" - ], - "Maize_streak_virus__MSV_A_ZA_Hei_O9_1979" : [ - "FJ882115" - ], - "Dengue_virus_2__MKS_2234" : [ - "KC762657" - ], - "Variola_virus_Yugoslavia_1972_V72_164" : [ - "DQ441448" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3961_2008" : [ - "GU131741" - ], - "Chickpea_chlorosis_virus_E__3487O" : [ - "KC172694" - ], - "Coxsackievirus_A11_BAN01_10589" : [ - "DQ995634" - ], - "Hepatitis_B_virus__Patient__4076__PNN3" : [ - "AB219428" - ], - "Hepatitis_B_virus_C_1858_ea2" : [ - "AF223955" - ], - "Turnip_yellows_virus__FL1" : [ - "NC_003743" - ], - "Sclerotinia_sclerotiorum_hypovirus_1_SZ_150" : [ - "NC_015939" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_86_68" : [ - "JX869187" - ], - "Tomato_leaf_curl_Joydebpur_betasatellite__India_Jaunpur_Chilli_2007___India_Jaunpur_Chilli_2007" : [ - "HM007103" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1987_2003" : [ - "FJ639675" - ], - "Columbid_circovirus__zj1" : [ - "DQ090945" - ], - "Hepatitis_B_virus__C113_6" : [ - "FJ899773" - ], - "Hepatitis_B_virus__038_DR_Wad" : [ - "KF873542" - ], - "Streptococcus_anginosus_C1051" : [ - "NC_022244" - ], - "Ectropis_obliqua_nucleopolyhedrovirus_unioasis_1" : [ - "KC960018" - ], - "Tomato_spotted_wilt_virus__TSWV_10" : [ - "KC261963", - "KC261964", - "KC261962" - ], - "Beet_severe_curly_top_virus___Cfh_CFH" : [ - "BCU02311" - ], - "Obodhiang_virus__Obodhiang" : [ - "NC_017685" - ], - "Feline_sakobuvirus_A__FFUP1" : [ - "NC_022802" - ], - "African_horse_sickness_virus__HS_28_08" : [ - "KP009665", - "KP009669", - "KP009670", - "KP009663", - "KP009666", - "KP009668", - "KP009664", - "KP009667", - "KP009661" - ], - "Usutu_virus_V83" : [ - "KJ438734" - ], - "Avian_metapneumovirus__IT_Ty_A_259_01_03" : [ - "JF424833" - ], - "Cowpea_chlorotic_mottle_virus__Car1" : [ - "HQ611266", - "HQ611268", - "HQ611267" - ], - "Dengue_virus_3__DENV_3_US_BID_V2126_2006" : [ - "FJ547085" - ], - "Human_papillomavirus_type_202__HPV202" : [ - "KP692116" - ], - "Human_immunodeficiency_virus_1__06KECst_016" : [ - "FJ623483" - ], - "Colobus_guereza_papillomavirus_type_2__CgPV2" : [ - "NC_015692" - ], - "Human_herpesvirus_2_HG52" : [ - "Z86099", - "NC_001798" - ], - "Watermelon_chlorotic_stunt_virus__IL2_110" : [ - "KM820251" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4848_2009" : [ - "HQ705621" - ], - "Feline_foamy_virus_Chatul_3" : [ - "AJ564746" - ], - "Hepatitis_B_virus__I_T2" : [ - "GU456666" - ], - "Aedes_flavivirus_Narita_21" : [ - "NC_012932" - ], - "Hepatitis_B_virus__CH_02" : [ - "KM999991" - ], - "Chickpea_chlorotic_dwarf_virus__A_TC41_96" : [ - "KC172662" - ], - "Photorhabdus_asymbiotica_ATCC_43949" : [ - "NC_012962", - "NC_012961" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1790_2007" : [ - "FJ562097" - ], - "Japanese_encephalitis_virus__GZ56" : [ - "HM366552" - ], - "Tomato_yellow_leaf_curl_virus__TYLCV_CW" : [ - "HQ260984" - ], - "Pepper_veinal_mottle_virus__P" : [ - "NC_011918" - ], - "Human_immunodeficiency_virus_1__5018_83" : [ - "AY835777" - ], - "Viral_hemorrhagic_septicemia_virus_14_58_French" : [ - "AF143863" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V401_2006" : [ - "EU155271" - ], - "Equine_pegivirus_1__C0035" : [ - "NC_020902" - ], - "Anatid_herpesvirus_1_VAC" : [ - "NC_013036" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3787_2009" : [ - "GU131895" - ], - "Catharanthus_yellow_mosaic_virus__DR_151" : [ - "NC_025964" - ], - "WU_Polyomavirus_WU_Wuerzburg_03_07" : [ - "EU711058" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4280_2006" : [ - "GU131933" - ], - "Rice_stripe_virus__HKF07" : [ - "EU931518", - "EU931520", - "EU931519", - "EU931521" - ], - "Hepatitis_B_virus__LAMr_Pt__8_Adefovir_treated_Pt__29" : [ - "AB367399" - ], - "Astrovirus_VA2__VA2_human_Stl_WD0680_2009" : [ - "NC_018669" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FLA3500_2008" : [ - "KJ627330" - ], - "Salmonella_phage_PhiSH19" : [ - "NC_019530" - ], - "Plum_bark_necrosis_stem_pitting_associated_virus" : [ - "NC_009992" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LGD_100928" : [ - "JF828988" - ], - "Hepatitis_B_virus__Ag24" : [ - "KJ843185" - ], - "Hepatitis_E_virus__CHN_BJ_r14_9" : [ - "KJ013415" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4085_2008" : [ - "GU131829" - ], - "Cucumber_mosaic_virus_satellite_RNA_T57" : [ - "X86418" - ], - "Tomato_yellow_spot_virus___Brazil_Minas_Gerais_Bicas2_1999" : [ - "NC_007726", - "NC_007727" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO18BN1_2009" : [ - "JF909145" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_MEX_27_2006" : [ - "KF826837" - ], - "Coxsackievirus_B3__KM06" : [ - "KJ020100" - ], - "Infectious_bronchitis_virus_Mass41_1965" : [ - "FJ904720" - ], - "Saccharomyces_20S_RNA_narnavirus_37_4C" : [ - "NC_004051" - ], - "Peste_des_petits_ruminants_virus__Sungri_96" : [ - "KF727981" - ], - "Yellow_oat_grass_mosaic_virus__YOgMV_Sb" : [ - "NC_024471" - ], - "Human_rhinovirus_A46" : [ - "DQ473506" - ], - "JC_polyomavirus__CB_1" : [ - "AB118654" - ], - "Bovine_foamy_virus__Riems" : [ - "JX307862" - ], - "Dengue_virus_3__D3BR_ACN_2007" : [ - "JF808121" - ], - "Enterobacteria_phage_PR5" : [ - "AY848687" - ], - "Peste_des_petits_ruminants_virus__Morocco_2008" : [ - "KC594074" - ], - "JC_polyomavirus__JCV176FLC_08" : [ - "JF424906" - ], - "Turnip_mosaic_virus__NZ12" : [ - "AB989645" - ], - "Hepatitis_B_virus__Tibet_1874" : [ - "KP276253" - ], - "Chinese_giant_salamander_iridovirus" : [ - "KC243313" - ], - "Mungbean_yellow_mosaic_virus___Vigna__KA34" : [ - "AJ439057" - ], - "Hepatitis_B_virus__055_WA_Oen" : [ - "KF873523" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_D619" : [ - "JX503077" - ], - "Porcine_circovirus_2__Bd2_2007" : [ - "KM624030" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0056" : [ - "KP759634" - ], - "Hepatitis_B_virus__Ag38" : [ - "KJ843199" - ], - "Norovirus_Hu_GII_4_Ehime5_2008_JP_Hu_GII_4_Ehime5_2008_JP" : [ - "AB541243" - ], - "Human_circovirus_VS6600022__VS6600022" : [ - "NC_024694" - ], - "Avian_leukosis_virus_GDFX0602" : [ - "KP686143" - ], - "Myxoma_virus_Aust_Meby_8_91_Meby" : [ - "JX565571" - ], - "Hepatitis_delta_virus_dFr_73" : [ - "AJ584846" - ], - "Hepatitis_B_virus__S8_1" : [ - "EU916230" - ], - "Potato_leafroll_virus_Wageningen" : [ - "Y07496" - ], - "Hepatitis_B_virus__MY851636" : [ - "KJ803792" - ], - "Human_immunodeficiency_virus_1__X138" : [ - "AF450098" - ], - "Human_immunodeficiency_virus_1__98ZADu178" : [ - "AF411965" - ], - "Sugarcane_streak_mosaic_virus__ID" : [ - "JF488066" - ], - "Hepatitis_C_virus__isolate_JPUT971017__MA_JPUT971017" : [ - "AB030907" - ], - "Malvastrum_leaf_curl_Guangdong_virus__GD9" : [ - "AM236780" - ], - "Tomato_mild_mosaic_virus__BR_Pda1_05" : [ - "KC706614" - ], - "Grapevine_leafroll_associated_virus_2__93_955" : [ - "NC_007448" - ], - "West_Nile_virus_NY99_6922_NY99iso_1" : [ - "FJ411043" - ], - "Wheat_dwarf_virus__SXTY10_40" : [ - "JQ647507" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1191_2007" : [ - "EU482621" - ], - "Ageratum_enation_virus__Lucknow_2" : [ - "KJ488990" - ], - "Tobacco_vein_banding_mosaic_virus__HN39" : [ - "EU734432" - ], - "Norovirus_Hu_GII_4_Westmead_NSW3639_2008_AUS_Hu_GII_4_NSW3639_2008_AU" : [ - "GQ845366" - ], - "BK_polyomavirus__NGY_5" : [ - "AB298942" - ], - "Hepatitis_B_virus__24_S_BRA" : [ - "KJ854709" - ], - "Cauliflower_mosaic_virus__IRNA" : [ - "JX912253" - ], - "Hepatitis_A_virus__IND_HAV_97F" : [ - "FJ360735" - ], - "Hepatitis_B_virus__MY830498" : [ - "KJ803827" - ], - "Hepatitis_B_virus_HB405" : [ - "HM011496" - ], - "Human_poliovirus_1__DOR01001" : [ - "AF405675" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus_Murcia_sample_28" : [ - "AY702650" - ], - "Human_immunodeficiency_virus_1__04ZASK163B1" : [ - "AY901979" - ], - "Hepatitis_B_virus_OS6" : [ - "EU155821" - ], - "Human_T_lymphotropic_virus_2_RP329" : [ - "AF326583" - ], - "Human_poliovirus_3_NIE1118513" : [ - "KJ170661" - ], - "Human_T_lymphotropic_virus_2" : [ - "NC_001488", - "AF412314" - ], - "SARS_coronavirus_civet020__civet020" : [ - "AY572038" - ], - "Hepatitis_B_virus__LAMr_Pt__38" : [ - "AB367429" - ], - "Hepatitis_B_virus__CX009C_e216" : [ - "KJ173281" - ], - "Hepatitis_B_virus_HB403" : [ - "HM011495" - ], - "West_Nile_virus_HS101_08" : [ - "JN393308" - ], - "Clostridiales_genomosp__BVAB3_UPII9_5" : [ - "NC_013895" - ], - "Hepatitis_B_virus__gor97" : [ - "AJ131567" - ], - "Human_immunodeficiency_virus_1__C_ZA_1168MB" : [ - "AY463231" - ], - "Hepatitis_C_virus__Eg10" : [ - "DQ988078" - ], - "Tomato_leaf_curl_Palampur_virus__Allipur" : [ - "HQ848383" - ], - "Porcine_circovirus_2__PCV_43" : [ - "KC514988" - ], - "Pepper_golden_mosaic_virus_Llano_Grande" : [ - "JQ743486" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE4190_2009" : [ - "KJ627349" - ], - "Hepatitis_C_virus_subtype_1b_MD33" : [ - "AF207774" - ], - "Hepatitis_E_virus__HRC_HE14C" : [ - "AB291965" - ], - "Hepatitis_C_virus_subtype_2a" : [ - "GM975743" - ], - "Brucella_abortus_A13334" : [ - "NC_016777", - "NC_016795" - ], - "Human_immunodeficiency_virus_2_ALT_D205" : [ - "X61240" - ], - "Human_immunodeficiency_virus_1__00BW3891_6" : [ - "AF443113" - ], - "Enterobacteria_phage_phiX174__C" : [ - "AF299302" - ], - "Hepatitis_B_virus__TW_02" : [ - "KP017272" - ], - "Porcine_circovirus_1_sc_2" : [ - "DQ472012" - ], - "Hepatitis_B_virus__V5" : [ - "HM363572" - ], - "Salmonella_phage_HK620" : [ - "NC_002730" - ], - "JC_polyomavirus__CW_5" : [ - "AB118658" - ], - "Japanese_encephalitis_virus__HEN0701" : [ - "FJ495189" - ], - "Hepatitis_B_virus__HB13_0302" : [ - "AB937793" - ], - "South_African_cassava_mosaic_virus__MG_MG402A1_11" : [ - "KJ888004" - ], - "Hepatitis_B_virus_1130_19a" : [ - "KR014001" - ], - "Wheat_dwarf_virus__SxA23" : [ - "AM296023" - ], - "Hepatitis_B_virus_419_3" : [ - "KR013782" - ], - "Simian_hemorrhagic_fever_virus_LVR_42_0_M6941_KS_06_17_11" : [ - "KM373784" - ], - "Dengue_virus_2__DENV_2_NI_BID_V570_2006" : [ - "EU482683" - ], - "Sea_turtle_tornovirus_1" : [ - "EU867821", - "EU867822", - "EU867820", - "EU867824", - "EU867817", - "EU867819", - "EU867816", - "EU867818", - "NC_012094" - ], - "Dengue_virus_2_DENV_2_PR_42DN_1994" : [ - "GQ398286" - ], - "Haloterrigena_turkmenica_DSM_5511" : [ - "NC_013748", - "NC_013746", - "NC_013747", - "NC_013744", - "NC_013743", - "NC_013749", - "NC_013745" - ], - "Desulfurococcus_fermentans_DSM_16532" : [ - "NC_018001" - ], - "Hepatitis_C_virus__EBW443" : [ - "KC248198" - ], - "Thioflavicoccus_mobilis_8321" : [ - "NC_019941", - "NC_019940" - ], - "Beet_western_yellows_virus_BWYV_Kiyosato" : [ - "AB903037" - ], - "Eastern_equine_encephalitis_virus_FL93_939" : [ - "EF151502" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2781_2007" : [ - "JF937597" - ], - "Armadillidium_vulgare_iridescent_virus" : [ - "NC_024451" - ], - "Bean_golden_mosaic_virus__BR_Mac_05" : [ - "KJ939716" - ], - "Hepatitis_B_virus__pt2N" : [ - "KM875406" - ], - "Lymphocytic_choriomeningitis_mammarenavirus_Traub" : [ - "DQ868488", - "DQ868487" - ], - "Foot_and_mouth_disease_virus___type_A_A4_Spain_a4spain_iso62" : [ - "AY593778" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD218_2013" : [ - "KM229866" - ], - "Hepatitis_B_virus__Bab9732" : [ - "JX507080" - ], - "Hepatitis_B_virus__B4_HBVST1" : [ - "HPBB4HST1" - ], - "Tomato_leaf_curl_New_Delhi_virus_India__Lucknow" : [ - "KC513822" - ], - "Synechococcus_phage_syn9" : [ - "NC_008296" - ], - "Gossypium_mustilinum_symptomless_alphasatellite__Mus_alphaB_H3A8" : [ - "EU384661" - ], - "Human_immunodeficiency_virus_1__04ZASK155B1" : [ - "AY901978" - ], - "Coxsackievirus_B4_Tuscany" : [ - "DQ480420" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1854_2007" : [ - "FJ461313" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir3_T4P_Cuc_07" : [ - "FJ660430" - ], - "Dengue_virus_2__DENV_2_US_BID_V596_1998" : [ - "EU482727" - ], - "Beet_necrotic_yellow_vein_virus__P" : [ - "AY823407" - ], - "Rice_black_streaked_dwarf_virus__JSXHR42" : [ - "HM209074" - ], - "Human_papillomavirus_type_22" : [ - "HPU31780" - ], - "Human_mastadenovirus_C_human_EGY_E53_2001_2_P2H2F2" : [ - "JX173081" - ], - "Hepatitis_B_virus__B1r_4" : [ - "AY217357" - ], - "Pea_early_browning_virus_Dutch_E116" : [ - "AJ006500" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0050" : [ - "KP759719" - ], - "Hepatitis_B_virus_1134_25a" : [ - "KR014014" - ], - "Hepatitis_E_virus__swGX32" : [ - "EU366959" - ], - "Plum_pox_virus_PPV_D_Od2" : [ - "AB576077" - ], - "Chuzan_virus__FO_90_8" : [ - "AB177634" - ], - "Enterovirus_B74_Rikaze_136_XZ_CHN_2010" : [ - "JQ397329" - ], - "Human_immunodeficiency_virus_1_TV012" : [ - "AY162225" - ], - "Human_respiratory_syncytial_virus__01_031282" : [ - "JQ901452" - ], - "Japanese_encephalitis_virus__YN79Bao83" : [ - "JN381851" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_94I_009A_01_1994" : [ - "KP258704" - ], - "Casphalia_extranea_densovirus" : [ - "NC_004288" - ], - "Rubella_virus_RVi_TX_USA_34_98_1C" : [ - "JN635284" - ], - "Hepatitis_B_virus__C185_1" : [ - "FJ899779" - ], - "Minute_virus_of_mice__lymphotropic_variant" : [ - "MVMICG" - ], - "Human_papillomavirus_type_39__Qv29509" : [ - "KC470236" - ], - "Dengue_virus_1__DENV_1_NI_BID_V2341_2006" : [ - "FJ810419" - ], - "Hepatitis_B_virus__cyc1098" : [ - "KC774358" - ], - "Western_equine_encephalitis_virus_PV72102" : [ - "KJ554986" - ], - "Porcine_circovirus_2_SXYLA_01" : [ - "KC800639" - ], - "Hepatitis_B_virus__KOR23LC" : [ - "GQ475327" - ], - "Human_papillomavirus_type_11__CAC86" : [ - "FN907962" - ], - "Hepatitis_B_virus__KOR24LC" : [ - "GQ475328" - ], - "Seoul_virus_IR461" : [ - "KM948595" - ], - "Human_herpesvirus_3_VZVi_Berlin_GER_14_08_V_1__925_2008" : [ - "JN704696" - ], - "Porcine_circovirus_2__Longyan" : [ - "EF989713" - ], - "Hepatitis_B_virus__clz2184" : [ - "KC774224" - ], - "Hepatitis_B_virus__HK734" : [ - "DQ089799" - ], - "Grapevine_redleaf_associated_virus__GiGV_WA_DS" : [ - "KC427994" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__YN57_14" : [ - "KC149948" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V160_2002" : [ - "EU155230" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_121024" : [ - "KJ425494" - ], - "Lactococcus_phage_phi15" : [ - "KM091442" - ], - "Cellulophaga_phage_phiSM_phiSM" : [ - "NC_020860", - "KC821616" - ], - "Porcine_circovirus_2__BS11" : [ - "KJ680352" - ], - "Bluetongue_virus_16__RSAvvvv_16" : [ - "AJ586689" - ], - "Methanococcus_maripaludis_S2" : [ - "NC_005791" - ], - "Newcastle_disease_virus__APMV1_Pigeon_PA_USA_0704_2007" : [ - "KC013034" - ], - "Hepatitis_B_virus__23A" : [ - "AY236162" - ], - "Soybean_yellow_mottle_mosaic_virus" : [ - "NC_011643" - ], - "JC_polyomavirus__JCV161FLC_01" : [ - "JF424911" - ], - "Dengue_virus_2_ThNH_p36_93" : [ - "AF022441" - ], - "Mycobacterium_phage_Leo" : [ - "NC_021556" - ], - "Human_poliovirus_2_NIE0811460_SOS08_09" : [ - "JX275147" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_15" : [ - "JQ647465" - ], - "Human_immunodeficiency_virus_1__04BRSQ46" : [ - "EU735540" - ], - "Hepatitis_B_virus__D_KI387C_2005" : [ - "HQ700541" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Equus_ferus_caballus_MEX_MX09_Eq03_2009_IE" : [ - "KC344481" - ], - "Bat_adenovirus_2_PPV1" : [ - "NC_015932" - ], - "Hepatitis_B_virus__N17_C_199B" : [ - "KJ173442" - ], - "Human_immunodeficiency_virus_1_CRF01_AE_FJ053" : [ - "DQ859179" - ], - "Variola_virus_Benin__Dahomey_1968__v68_59" : [ - "DQ441416" - ], - "Human_immunodeficiency_virus_1__00NE36" : [ - "AJ508597" - ], - "Tomato_leaf_curl_China_betasatellite__YWSh03" : [ - "KJ477326" - ], - "Bacillus_amyloliquefaciens_plantarum_UCMB5036" : [ - "NC_020410" - ], - "Hepatitis_B_virus__WY_HZ_67" : [ - "JX429910" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_174_2012" : [ - "KJ686211" - ], - "Watermelon_chlorotic_stunt_virus" : [ - "NC_003708", - "JX131283", - "JX131284", - "NC_003709" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141643" : [ - "KR653233" - ], - "Maize_streak_virus__MSV_B1_Za_Ans_g140_2006" : [ - "EU628645" - ], - "Blainvillea_yellow_spot_virus__BgV06B_1_C70" : [ - "JF694478" - ], - "Hepatitis_B_virus__C_PNG_GM009A_2004" : [ - "HQ700520" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Kha_W9P_Wat_10" : [ - "JF501728" - ], - "Human_immunodeficiency_virus_1__03ZAPS017MB1" : [ - "DQ351224" - ], - "Hepatitis_B_virus_HB537" : [ - "JQ027324" - ], - "WU_Polyomavirus__B0408" : [ - "GU296368" - ], - "Hepatitis_B_virus__Patient_E88" : [ - "HPBE88A" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2875_2006" : [ - "GQ199842" - ], - "Corynebacterium_pseudotuberculosis_1_06_A" : [ - "NC_017308" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4240_2006" : [ - "HM181942" - ], - "Human_bocavirus_GD_HBoV_594" : [ - "GQ926983" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPP00610_2011_A" : [ - "KJ627394" - ], - "Dengue_virus_1__MKS_0088" : [ - "KC762635" - ], - "Beet_western_yellows_virus_BWYV_Kunneppu" : [ - "AB903034" - ], - "Dengue_virus_2__DENV_2_VN_BID_V715_2006" : [ - "EU482652" - ], - "Phycisphaera_mikurensis_NBRC_102666" : [ - "NC_017081", - "NC_017080" - ], - "Lactobacillus_phage_ATCC8014" : [ - "NC_019916" - ], - "Mycoplasma_gallisepticum_NC06_2006_080_5_2P" : [ - "NC_018411" - ], - "Hepatitis_B_virus__GU960" : [ - "GQ161768" - ], - "Human_smacovirus_1__France_6_2008_2871" : [ - "KP264969" - ], - "Human_bocavirus__TW2739_06" : [ - "EU984234" - ], - "Porcine_circovirus_2_Huanan_13" : [ - "EF493842" - ], - "Human_papillomavirus_type_6__97" : [ - "HG793905" - ], - "Coxsackievirus_A16_KMM_08" : [ - "HQ423141" - ], - "African_cassava_mosaic_virus__MG_MG318A1_10" : [ - "KJ887980" - ], - "Porcine_circovirus_2_PT_55935_05" : [ - "HQ831532" - ], - "Streptococcus_thermophilus_LMD_9" : [ - "NC_008500", - "NC_008532", - "NC_008501" - ], - "Hepatitis_B_virus__D3_11" : [ - "GU815668" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V3788_2007" : [ - "GU131896" - ], - "Southern_rice_black_streaked_dwarf_virus__HN" : [ - "NC_014715", - "NC_014708", - "NC_014717", - "NC_014714", - "NC_014709", - "NC_014716", - "NC_014710", - "NC_014711" - ], - "Chikungunya_virus_Thailand_2008_CK80" : [ - "KJ796848" - ], - "Turnip_mosaic_virus__POL1" : [ - "AB701728" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7744_2009" : [ - "KJ627362" - ], - "Maize_streak_virus__UWak_4" : [ - "EF547064" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2712_2006" : [ - "FJ882537" - ], - "Rotavirus_G4__Rota_Hochi" : [ - "AB012078" - ], - "Hepatitis_B_virus__239_O218_Nature3_2_unSero" : [ - "DQ993707" - ], - "Red_clover_necrotic_mosaic_virus_Australian" : [ - "NC_003775" - ], - "Enterococcus_phage_vB_Efae230P_4" : [ - "NC_025467" - ], - "Tobacco_mosaic_virus__Fengjie_2" : [ - "HE818424" - ], - "Lassa_mammarenavirus_Josiah" : [ - "AY628203", - "NC_004297", - "NC_004296", - "HQ688672", - "HQ688674", - "AY628202" - ], - "West_Nile_virus__WNV_1_BID_V5036" : [ - "JN819309" - ], - "Human_immunodeficiency_virus_1__ZM246F_flA10" : [ - "FJ496186" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta__YN65_10" : [ - "KC149946", - "KC149945" - ], - "West_Nile_virus__WNV_USA_BID_G15495" : [ - "JX503086" - ], - "Bat_coronavirus_HKU5_5_TT07f" : [ - "EF065512" - ], - "Streptococcus_pyogenes_phage_315_5" : [ - "NC_004588" - ], - "Porcine_bocavirus_3_22" : [ - "JF713714" - ], - "Rotavirus_A_RVA_Human_wt_BEL_BE5028_2012_G3P_14" : [ - "KP258405", - "KP258400", - "KP258403", - "KP258406", - "KP258404", - "KP258398", - "KP258399", - "KP258402" - ], - "Pepper_ringspot_virus_CAM_strain" : [ - "NC_003670" - ], - "Western_equine_encephalitis_virus_71V_1658" : [ - "NC_003908" - ], - "Porcine_circovirus_1_SD_73_1" : [ - "KJ746929" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4065_2008" : [ - "GU131814" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1820_2007" : [ - "FJ432744" - ], - "Hepatitis_B_virus__P008_C_B37" : [ - "KJ173369" - ], - "Human_adenovirus_37__GW__76_19026" : [ - "DQ900900" - ], - "Hepatitis_B_virus__D_NZL_AN19_1984" : [ - "HQ700444" - ], - "Human_poliovirus_1_NIE1118405" : [ - "KJ170525" - ], - "Hepatitis_B_virus__HBV18" : [ - "KC875287" - ], - "Torque_teno_virus__tth11g2" : [ - "AJ620214" - ], - "Dengue_virus_3_D3_SG_05K3312DK1_2005" : [ - "EU081200" - ], - "Hepatitis_B_virus__045_DR_Wad" : [ - "KF873537" - ], - "Maruca_vitrata_nucleopolyhedrovirus" : [ - "NC_008725" - ], - "Watermelon_chlorotic_stunt_virus__JO1_125" : [ - "KM820184" - ], - "Tick_borne_encephalitis_virus_Chichagovka_1223" : [ - "KP844725" - ], - "Dengue_virus_1_S275_90" : [ - "A75711" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5498_2010" : [ - "JF937633" - ], - "Norovirus_Hu_GII_4_Kumamoto1_2007_JP_Hu_GII_4_Kumamoto1_2007_JP" : [ - "AB541277" - ], - "Hepatitis_B_virus__C109" : [ - "EU939574", - "EU859943" - ], - "Grass_carp_rhabdovirus_V76__V76" : [ - "NC_025376" - ], - "Hepatitis_B_virus__WY_HZ_49" : [ - "JX504537" - ], - "Leuconostoc_gasicomitatum_LMG_18811" : [ - "NC_014319" - ], - "Hepatitis_B_virus__dur1021" : [ - "KC774434" - ], - "Acinetobacter_ADP1" : [ - "NC_005966" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_USA_97_1076_2009" : [ - "KJ469559" - ], - "Porcine_circovirus_2__DF" : [ - "KC753768" - ], - "West_Nile_virus__WNV_1_US_BID_V4605_2003" : [ - "HM488225" - ], - "Dengue_virus_2__Od2112" : [ - "JQ955624" - ], - "Norwalk_virus" : [ - "NC_001959" - ], - "Propionibacterium_phage_Lauchelly" : [ - "NC_027628" - ], - "Hepatitis_B_virus__HBNAT023" : [ - "KJ638658" - ], - "Human_immunodeficiency_virus_1__98BY10443" : [ - "AF414006" - ], - "West_Nile_virus__WNV_1_US_BID_V5209_2007" : [ - "JF920739" - ], - "JC_polyomavirus_GS_K" : [ - "AF004349" - ], - "Pithovirus_sibericum__P1084_T" : [ - "NC_023423" - ], - "Sugarcane_mosaic_virus__Sp" : [ - "AM110759" - ], - "Torque_teno_virus__tth4" : [ - "AJ620226" - ], - "Dengue_virus_2__DENV_2_NI_BID_V3149_2007" : [ - "HQ541788" - ], - "JC_polyomavirus_319C" : [ - "AY366359" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4974_serum" : [ - "JF784158" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2855_2005" : [ - "FJ898394" - ], - "Merkel_cell_polyomavirus__349" : [ - "JF813000" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1635_2007" : [ - "FJ182019" - ], - "Hepatitis_B_virus__S627_3" : [ - "FJ787451" - ], - "Hepatitis_B_virus__2359" : [ - "FJ386631" - ], - "Pepino_mosaic_virus__Yur1_5" : [ - "HG313807" - ], - "Hepatitis_B_virus__DH01_IC" : [ - "JN664922" - ], - "Sweet_potato_leaf_curl_virus_USA_SPLCV_US_BR_AM2_09" : [ - "HQ393472" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_LBC_LBC6" : [ - "KF385421" - ], - "Tomato_leaf_curl_Philippines_virus__Laguna2" : [ - "AB377112" - ], - "HBV_genotype_C__NAB28" : [ - "AB644283" - ], - "Porcine_circovirus_2__HB2" : [ - "JQ181601" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG59" : [ - "FJ914403" - ], - "Hepatitis_B_virus__Yamagata_2" : [ - "AB010290" - ], - "Acinetobacter_phage_IME_AB3" : [ - "NC_023590" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141960" : [ - "KR653283" - ], - "East_African_cassava_mosaic_virus__EACMV__K315" : [ - "AJ717550" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG640A3_11" : [ - "KJ888074" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7677_2012" : [ - "KF973464" - ], - "Echarate_virus" : [ - "HM119412", - "HM119410", - "HM119411" - ], - "Porcine_kobuvirus__CH_DX_2012" : [ - "KJ452348" - ], - "Hepatitis_B_virus__DEN6123" : [ - "KF779240" - ], - "Dengue_virus_2__DENV_2_NI_BID_V3227_2008" : [ - "JF357906" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K10" : [ - "AJ704943", - "AJ717567" - ], - "Himetobi_P_virus__Jiangsu" : [ - "KC952671" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC16AZ1_2004" : [ - "JF909215" - ], - "BK_polyomavirus_FUJ_13" : [ - "AB269826" - ], - "Cauliflower_mosaic_virus__TUR12" : [ - "AB863170" - ], - "Cotton_leaf_curl_virus_betasatellite__Sirsa_Haryana_En_P" : [ - "HM037922" - ], - "Donkey_orchid_symptomless_virus__Mariginiup11" : [ - "NC_022894" - ], - "Measles_virus_Edmonston" : [ - "MEANPCG" - ], - "Ageratum_enation_alphasatellite__Himachal" : [ - "LN558518" - ], - "Mycobacterium_phage_DD5_DD5" : [ - "NC_011022" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__PA8" : [ - "AF176348" - ], - "Hepatitis_A_virus__HAV5" : [ - "EU131373" - ], - "Human_immunodeficiency_virus_1__BREPM1026" : [ - "EF637055" - ], - "Foot_and_mouth_disease_virus___type_SAT_1_SAT1_3swa1_49_sat1_3swa_iso14" : [ - "AY593840" - ], - "Dengue_virus_3__MKS_2065" : [ - "KC762689" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V281_2004" : [ - "EU155361" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Kolar_OYVijipura_2006___OY_Vijapura" : [ - "GU111973" - ], - "Porcine_circovirus_2__TN4_1" : [ - "JQ181604" - ], - "Hepatitis_B_virus__TK171" : [ - "JF754623" - ], - "Dengue_virus_3__DENV_3_US_BID_V2111_2000" : [ - "FJ547076" - ], - "Rhodoferax_ferrireducens_T118" : [ - "NC_007908", - "NC_007901" - ], - "Human_immunodeficiency_virus_1__06BR_FPS561" : [ - "HM026455" - ], - "Usutu_virus_V54" : [ - "KJ438772" - ], - "Soybean_mosaic_virus__Am" : [ - "KC845322" - ], - "Tomato_yellow_leaf_curl_virus_Mild__Japan_Osuka__SzOs" : [ - "AB116636" - ], - "Hendra_virus_HeV_Australia_Bat_2009_Yeppoon_Y47a" : [ - "JN255800" - ], - "Hepatitis_B_virus_320_95" : [ - "EU594435" - ], - "Western_equine_encephalitis_virus_California" : [ - "KJ554965" - ], - "Tobacco_vein_banding_mosaic_virus__YY" : [ - "JN630472" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_BH58_10" : [ - "JN626287" - ], - "Human_herpesvirus_5_BE_11_2010" : [ - "KC519321" - ], - "Dengue_virus_1__DENV_1_US_BID_V1734_1995" : [ - "FJ390374" - ], - "Blechum_interveinal_chlorosis_virus__Campeche" : [ - "NC_019036", - "NC_019035" - ], - "Hepatitis_B_virus__YY004C_e107" : [ - "KJ173375" - ], - "Hepatitis_B_virus__F5M_F" : [ - "AB471854" - ], - "Cellulophaga_phage_phi18_2_phi18_2" : [ - "KC821627" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL106A" : [ - "AB985316", - "AB985548" - ], - "Human_papillomavirus_type_93" : [ - "AY382778" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1236_2007" : [ - "EU482628" - ], - "Escherichia_fergusonii_ATCC_35469" : [ - "NC_011743", - "NC_011740" - ], - "Indian_cassava_mosaic_virus__Ker2___Adivaram_2" : [ - "AJ575819" - ], - "Human_papillomavirus_type_16__JPD062" : [ - "AB889490" - ], - "Tomato_yellow_leaf_curl_China_virus__YN72___YN72" : [ - "EF011559" - ], - "Tomato_yellow_leaf_curl_virus___Mild_Spain7297___Spain_Sp7297" : [ - "AF071228" - ], - "Human_herpesvirus_5_BE_23_2010" : [ - "KP745697" - ], - "Hepatitis_B_virus__HBV11" : [ - "KC875279" - ], - "Hepatitis_B_virus_3798_91" : [ - "EU594382" - ], - "Porcine_circovirus_2_Pingtung_3" : [ - "AY146993" - ], - "Human_immunodeficiency_virus_1__C_ZA_1165MB" : [ - "AY463230" - ], - "West_Nile_virus__WNV_1_US_BID_V7484_2005" : [ - "KJ501186" - ], - "Rice_stripe_virus__BA1_JB" : [ - "FJ602688", - "FJ602675" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1761_2006" : [ - "JN819424" - ], - "Wheat_dwarf_virus____Hebei_Shijiazhuang___HBSJZ04" : [ - "EF536862" - ], - "Porcine_circovirus_2_QD1111" : [ - "JX948786" - ], - "Tomato_yellow_leaf_curl_virus_Oman__Tom_48" : [ - "KF229725" - ], - "Enzootic_nasal_tumour_virus_of_goats" : [ - "NC_004994" - ], - "Hepatitis_B_virus__MLT1003" : [ - "KF779301" - ], - "Bluetongue_virus_2__81640" : [ - "DQ191270" - ], - "Chikungunya_virus__IND_MH51" : [ - "FJ000067" - ], - "Hepatitis_B_virus__KOR3CHB" : [ - "GQ475307" - ], - "Porcine_circovirus_2__40895" : [ - "AF264042" - ], - "Maize_streak_virus__MSV_A_MZ_Pem5_Moz41_2007" : [ - "FJ882099" - ], - "Japanese_encephalitis_virus__IND_WB_JE1" : [ - "JX050179" - ], - "Tomato_leaf_curl_Gujarat_virus_Varanasi_1" : [ - "NC_004559", - "NC_004558" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5495_2009" : [ - "JF937647" - ], - "Cotton_leaf_curl_Multan_DNA_betasatellite__India_Kaisarganj04_Kenaf_2006" : [ - "EU825205" - ], - "Porcine_circovirus_2_GXGG_2" : [ - "EF675229" - ], - "Hepatitis_B_virus__HBV45" : [ - "KC875336" - ], - "Human_parechovirus_3__450936" : [ - "GQ183028" - ], - "Hepatitis_B_virus__ik3346" : [ - "AY934763" - ], - "Sweet_potato_leaf_curl_virus__PR80_N2" : [ - "DQ644562" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_53_2013" : [ - "KJ672434" - ], - "Coxsackievirus_A10_FY03_AH_CHN_2013" : [ - "KP009576" - ], - "Human_parvovirus_B19__C39" : [ - "FN598217", - "FN598218" - ], - "Maize_streak_virus__MSV_A_GH_gh128_New_2010" : [ - "KJ699317" - ], - "Chikungunya_virus__IND_KA52" : [ - "FJ000063" - ], - "Roseburia_intestinalis" : [ - "NC_021040" - ], - "Bacillus_phage_B103" : [ - "NC_004165" - ], - "Human_parainfluenza_virus_3_HPIV3_USA_629_D00155_2007" : [ - "KF530231" - ], - "Wheat_dwarf_virus__SXLF07_1" : [ - "KJ536116" - ], - "Porcine_circovirus_2_TYK2007" : [ - "GQ911590" - ], - "Hepatitis_B_virus__Ag50" : [ - "KJ843210" - ], - "JC_polyomavirus__JCV135_22" : [ - "JF424852" - ], - "South_African_cassava_mosaic_virus__MG_MG142A3_09" : [ - "KJ887934" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3713_2007" : [ - "GQ868515" - ], - "Newcastle_disease_virus_Go_CH_HLJ_LL01_08" : [ - "GU143550" - ], - "Hepatitis_B_virus__D_NZL_HA53_1999" : [ - "HQ700455" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1905_2008" : [ - "FJ410241" - ], - "Hepatitis_B_virus__14118" : [ - "AF241408" - ], - "Mumps_virus_MuV_IA" : [ - "JN012242" - ], - "BK_polyomavirus_ITA_4" : [ - "AB269833" - ], - "Maize_streak_virus__MSV_A_NG_Ipe_N24_2007" : [ - "HQ693383" - ], - "Rice_ragged_stunt_virus__GD" : [ - "HM125551", - "HM125552", - "HM125553", - "HM125549", - "HM125556", - "HM125550", - "HM125555", - "HM125554", - "HM125557", - "HM125558" - ], - "Dengue_virus_1__DENV_1_VN_BID_V938_2007" : [ - "EU482483" - ], - "Hepatitis_B_virus__SHB820" : [ - "KJ598779" - ], - "Bacillus_phage_AP50" : [ - "NC_011523" - ], - "Middle_East_respiratory_syndrome_coronavirus__KSA_CAMEL_376" : [ - "KJ713299" - ], - "Foot_and_mouth_disease_virus___type_O__Tibet_CHA_99" : [ - "AJ539138" - ], - "Rhynchosia_mild_mosaic_virus_PR79" : [ - "NC_015489", - "NC_015488" - ], - "Norovirus_Hu_GII_4_Sakai2_2006_JP_Hu_GII_4_Sakai2_2006_JP" : [ - "AB447448" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Forecariah_1069" : [ - "KR534531" - ], - "Barley_yellow_dwarf_virus_PAV__0100" : [ - "EF521843" - ], - "Hepatitis_delta_virus_dTk27_dTk27" : [ - "AM779594" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PR_54b_2008" : [ - "HM748932" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GBC_06_939" : [ - "KF385408" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2572_2005" : [ - "FJ906961" - ], - "West_Nile_virus__BSL2_09" : [ - "JF957175" - ], - "Honeysuckle_yellow_vein_mosaic_virus__SP1" : [ - "AB182261" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19091_D39765_2008" : [ - "KR135319" - ], - "Rubella_virus_RVi_Pullman_WA_USA_30_08_1E" : [ - "JN635288" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Moheli_MO15AZ1_2009" : [ - "JF909139" - ], - "Propionibacterium_phage_PHL114L00" : [ - "NC_022340" - ], - "Cacipacore_virus_BeAn_3276000" : [ - "NC_026623" - ], - "Citrobacter_phage_CR44b" : [ - "NC_023576" - ], - "Hepatitis_B_virus__ES69_4" : [ - "JF828908" - ], - "Corynebacterium_pseudotuberculosis_I19" : [ - "NC_017303" - ], - "Hepatitis_B_virus__patient24" : [ - "EU919165", - "EU919164", - "EU919163" - ], - "Hepatitis_A_virus__HAJ85_1" : [ - "AB279735" - ], - "Torque_teno_virus__GH1" : [ - "AF122913" - ], - "Hepatitis_B_virus__GD13_2008" : [ - "HQ603060" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2042_2005" : [ - "FJ639708" - ], - "Human_poliovirus_2_NIE1018412" : [ - "KJ170537" - ], - "Human_immunodeficiency_virus_2_HIV_2_KR" : [ - "HIV2U22047" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1548_2007" : [ - "EU677172" - ], - "Hepatitis_B_virus__DR003_EP_CHB" : [ - "KM524342" - ], - "Hepatitis_B_virus__C212" : [ - "EU939611" - ], - "Human_coronavirus_OC43_OC43_human_USA_9612_9_1996" : [ - "KF530064" - ], - "Wheat_dwarf_virus____Sanxi_Yuncheng___SXYC05_2" : [ - "EF536875" - ], - "Cucumber_green_mottle_mosaic_virus__JD2" : [ - "KM873785" - ], - "Hepatitis_B_virus_Ehi_IK_lam_10_3" : [ - "AB195957" - ], - "Echovirus_E3_OC10_478" : [ - "AB647318" - ], - "Porcine_circovirus_2_JMS" : [ - "HM038023" - ], - "Mungbean_yellow_mosaic_India_virus__Mungbean___mungbean" : [ - "AF416741", - "AF416742" - ], - "JC_polyomavirus_309A" : [ - "AF295731" - ], - "Human_immunodeficiency_virus_1_CRF01_AE_FJ051" : [ - "DQ859178" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_573" : [ - "KR534511" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2353_2008" : [ - "FJ810418" - ], - "West_Nile_virus__AVA1204260" : [ - "KC736502" - ], - "Cotton_leaf_curl_Gezira_virus__Al_Ain" : [ - "KJ939446" - ], - "Macroptilium_yellow_spot_virus__BR_Pir1_10" : [ - "JN419015" - ], - "Hepatitis_B_virus__N15_M_6579A" : [ - "KJ173411" - ], - "Human_immunodeficiency_virus_1__03ZAPS124MB1" : [ - "DQ369976" - ], - "Hepatitis_B_virus_5131" : [ - "EU796072" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V55_2005" : [ - "EU660384" - ], - "Tomato_yellow_leaf_curl_Yunnan_virus__YN2013" : [ - "NC_021341", - "KC686707", - "KC686709", - "KC686708", - "KC686710", - "KC686706" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA7405_2009" : [ - "KJ672600" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3068_2008" : [ - "GQ199864" - ], - "European_bat_lyssavirus_1__RV20" : [ - "KF155003" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9533_2013" : [ - "KJ643576" - ], - "Feline_immunodeficiency_virus__BM3070" : [ - "AF474246" - ], - "Pasteurella_multocida_HN06" : [ - "NC_017035", - "NC_017027" - ], - "Hepatitis_B_virus__D3_6" : [ - "GU815675" - ], - "Banana_bunchy_top_virus__TO314" : [ - "JF957694", - "JF957658", - "JF957646", - "JF957682", - "JF957634", - "JF957670" - ], - "Human_immunodeficiency_virus_1__Fj056" : [ - "EF036529" - ], - "Human_immunodeficiency_virus_1__BREPM11932" : [ - "DQ085870" - ], - "Hepatitis_B_virus__WHHMM2" : [ - "JN257168" - ], - "Dengue_virus_3__DENV_3_VE_BID_V904_2001" : [ - "EU482612" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPP00366_2011_A" : [ - "KJ627418" - ], - "Bluetongue_virus__Sirsa_S3" : [ - "AM261978" - ], - "Dengue_virus_1__DENV_1_SV_BID_V2938_1993" : [ - "JN819417" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_D616" : [ - "JX503074" - ], - "West_Nile_virus__WNV_1_US_BID_V6213_2008" : [ - "KJ501441" - ], - "Small_begomovirus_associated_satellite__wf_S35" : [ - "KJ859191" - ], - "Marine_birnavirus___H1_H1" : [ - "AY283783" - ], - "Calicivirus_pig_AB90_CAN_AB90" : [ - "NC_012699" - ], - "Hepatitis_B_virus__0433_20" : [ - "DQ060826" - ], - "Hepatitis_B_virus__I14" : [ - "FJ562222" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Equus_ferus_caballus_COL_CoAn5384_1967_IAB" : [ - "KC344485" - ], - "Hepatitis_B_virus__24306" : [ - "AY934765" - ], - "Japanese_encephalitis_virus__DL0445" : [ - "JN381854" - ], - "Dengue_virus_2__DENV_2_US_BID_V1179_1989" : [ - "EU482582" - ], - "West_Nile_virus__WNV_1_US_BID_V6620_2001" : [ - "KJ501515" - ], - "Squash_leaf_curl_virus__PA3_T5" : [ - "KM595237" - ], - "Methylobacterium_extorquens_PA1" : [ - "NC_010172" - ], - "Bromus_associated_circular_DNA_virus_2__BasCV_2_NZ_NZG03_Wel_2012" : [ - "NC_026243" - ], - "Echovirus_E9_DM34" : [ - "KC238668" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1507_2007" : [ - "EU660413" - ], - "Bluetongue_virus_15__ZIM2003_09" : [ - "AJ586718" - ], - "Enterobacteria_phage_Qbeta__Anc_P1" : [ - "AB971354" - ], - "JC_polyomavirus__SK_2" : [ - "AB118651" - ], - "JC_polyomavirus_724B" : [ - "AF300949" - ], - "Porcine_circovirus_2_05_55004_7" : [ - "HQ713495" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC57" : [ - "KP195259" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2190_2001" : [ - "FJ639760" - ], - "Macroptilium_yellow_spot_virus__BR_Ced1_09" : [ - "JN419007" - ], - "Enterobacteria_phage_NC41" : [ - "DQ079890" - ], - "Bluetongue_virus_5__4868" : [ - "JX272578" - ], - "Murine_norovirus_S7_P2" : [ - "AB435514" - ], - "Blueberry_scorch_virus_NJ_2" : [ - "NC_003499" - ], - "Helicobacter_pylori_Puno135" : [ - "NC_017379" - ], - "Bhendi_yellow_vein_India_betasatellite__Jal" : [ - "KJ462078" - ], - "Potato_virus_Y_strain_N_N_34_01" : [ - "AJ890342" - ], - "Cotton_leaf_curl_Bangalore_virus__India_Bangalore_OY136A_2005___OY136A" : [ - "GU112003" - ], - "Dengue_virus_2__DENV_2_US_BID_V1376_1996" : [ - "EU569709" - ], - "Chaetoceros_tenuissimus_DNA_virus_type_II__SS10_24V" : [ - "AB971659" - ], - "Hepatitis_B_virus_HCC_3_TT" : [ - "AB113877" - ], - "Rhynchosia_golden_mosaic_virus_Sinaloa_Soybean_1068" : [ - "DQ347950" - ], - "Rotavirus_A__RVA_Human_wt_DEN_T67456_2010_G9P_4" : [ - "KP013453" - ], - "Hepatitis_C_virus_subtype_6i__C_0159" : [ - "DQ835762" - ], - "Panicum_streak_virus__H_NG_Jic15_BL" : [ - "GQ415398" - ], - "Maize_streak_virus__MSV_A_ZA_Mak1_M22K_1988" : [ - "HQ693420" - ], - "Citrobacter_phage_Stevie" : [ - "NC_027350" - ], - "Human_immunodeficiency_virus_1__97CMABB497" : [ - "AY169809" - ], - "Pseudomonas_phage_phiCTX_phiCTX_c" : [ - "NC_003278" - ], - "Dengue_virus_2__DENV_2_KH_BID_V4273_2008" : [ - "JF730047" - ], - "Human_poliovirus_3_NIE1118511" : [ - "KJ170619" - ], - "Human_papillomavirus_type_58__Qv34982" : [ - "HQ537772" - ], - "Human_immunodeficiency_virus_1__HK002" : [ - "FJ460499" - ], - "JC_polyomavirus_720B" : [ - "AF300945" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC31BL1_2009" : [ - "JF909108" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1776_2007" : [ - "FJ410195" - ], - "Frankia_EuI1c" : [ - "NC_014666" - ], - "Maize_streak_virus__MSV_B1_Za_RosA_2005" : [ - "EU628601" - ], - "Hepatitis_B_virus__245" : [ - "JX870000" - ], - "Porcine_circovirus_2__Han8" : [ - "JQ181600" - ], - "East_African_cassava_mosaic_Cameroon_virus_Cameroon__Comoros_Grande_Comore_GC15E11_2008" : [ - "JF909094" - ], - "Bombyx_mori_densovirus_3__VD1" : [ - "NC_020928" - ], - "Maize_streak_virus__MSV_A_ZA_Jou1_O25_1989" : [ - "FJ882116" - ], - "Tomato_severe_rugose_virus__BR_Vic01_09" : [ - "JX865615" - ], - "Bifidobacterium_animalis_lactis_Bl_04" : [ - "NC_012814" - ], - "Human_poliovirus_1_NIE1118333" : [ - "KJ170490" - ], - "Cyanophage_S_SSM6b_S_SSM6b" : [ - "HQ316603" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7056_2007" : [ - "KJ189272" - ], - "Cyclobacterium_marinum_DSM_745" : [ - "NC_015914" - ], - "Porcine_circovirus_1__NT70719" : [ - "FJ159693" - ], - "Dengue_virus_3__DENV_3_PR_BID_V2101_2000" : [ - "KF955465" - ], - "Dengue_virus_1__DENV_1_VN_BID_V960_2007" : [ - "EU482505" - ], - "Acinetobacter_phage_YMC_13_01_C62" : [ - "NC_024785" - ], - "Junin_mammarenavirus_P1998" : [ - "DQ854730" - ], - "Feline_coronavirus__80F" : [ - "KP143511" - ], - "Nanovirus_like_particle__2" : [ - "AJ132345" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1946_2008" : [ - "FJ461337" - ], - "Corynebacterium_diphtheriae_HC01" : [ - "NC_016786" - ], - "Rotavirus_G9_INL1" : [ - "AJ250277" - ], - "Synechococcus_phage_ACG_2014b__Syn7803US53" : [ - "KJ019108" - ], - "Rotavirus_G4__Rota_513" : [ - "AB012071" - ], - "Porcine_circovirus_2_Changsha" : [ - "AY849938" - ], - "Tomato_black_ring_virus_satellite_RNA_S" : [ - "X00978" - ], - "Human_bocavirus_WLL_3_WLL_3" : [ - "EF584447" - ], - "Potato_virus_Y__3D" : [ - "KJ946936" - ], - "Dengue_virus_1__DENV_1_VN_BID_V818_2006" : [ - "EU482812" - ], - "Tick_borne_encephalitis_virus_Oshima_08_As" : [ - "AB753012" - ], - "Small_ruminant_lentivirus_FESC_752" : [ - "HM210570" - ], - "Human_immunodeficiency_virus_1__0008SP" : [ - "JF804805" - ], - "Measles_virus__D_CEF" : [ - "EU293549" - ], - "Porcine_circovirus_2__FRA3" : [ - "AF201311" - ], - "Propionibacterium_phage_PHL067M01__PHL067M01" : [ - "NC_027380" - ], - "Echovirus_E19_Burke" : [ - "AY302544" - ], - "Squash_leaf_curl_virus__JO2_122" : [ - "KM595184" - ], - "Human_papillomavirus_type_6__84" : [ - "HG793892" - ], - "Hepatitis_B_virus__H0645_08" : [ - "FJ882617" - ], - "Hepatitis_B_virus__Vac03_C_m608" : [ - "KJ173388" - ], - "Goutanap_virus_F47_CI_2004" : [ - "KF588037" - ], - "Maize_streak_virus__MSV_A_MZ_Bil3_Moz22_2007" : [ - "HQ693337" - ], - "Human_papillomavirus_type_45__Qv06560" : [ - "EF202163" - ], - "Sweet_potato_leaf_curl_Shanghai_virus__China_Shandong4_2014" : [ - "KP069468" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Iran_52" : [ - "DQ446212", - "DQ446215" - ], - "Duck_circovirus__NN11_2012" : [ - "KC460530" - ], - "Sebokele_virus_1_1" : [ - "NC_021482" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI1_12_DNA_B" : [ - "HE979781" - ], - "Spiroplasma_phage_1_C74_SpV1_C74" : [ - "NC_003793" - ], - "Dengue_virus_2_DENV_2_PR_14DN_1994" : [ - "GQ398295" - ], - "Ovine_herpesvirus_2" : [ - "DQ198083" - ], - "West_Nile_virus__GCTX2_2005" : [ - "DQ666450" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_09HUN2" : [ - "JF268674" - ], - "Papaya_ringspot_virus_W_W" : [ - "AY010722" - ], - "Mycobacterium_phage_PMC" : [ - "NC_008205" - ], - "Yersinia_phage_phiD1" : [ - "NC_027353" - ], - "Hepatitis_C_virus_subtype_1b_MD11" : [ - "AF207752" - ], - "Pepino_mosaic_virus__Euro_6" : [ - "KF718832" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__MN184A" : [ - "DQ176019" - ], - "Hazara_virus" : [ - "HAZSRNA" - ], - "Potato_virus_S__89_249_PVS_HU1" : [ - "HF571059" - ], - "Human_papillomavirus_type_52__Qv00585" : [ - "HQ537741" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Roo_T10X_Tom_06" : [ - "FJ660442" - ], - "Staphylococcus_aureus_HO_5096_0412" : [ - "NC_017763" - ], - "Cauliflower_mosaic_virus__IRNYC2" : [ - "JX912272" - ], - "Hepatitis_B_virus__YZ009M_e31" : [ - "KJ173384" - ], - "SARS_coronavirus_ZS_C__ZS_C" : [ - "AY395003" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141043" : [ - "KR653305" - ], - "Mulard_duck_circovirus__TD_41_09" : [ - "HQ180266" - ], - "South_African_cassava_mosaic_virus__MG_MG449A3_11" : [ - "KJ888016" - ], - "Mycobacterium_phage_Bane2" : [ - "NC_022327" - ], - "Dengue_virus_2_D2_SG_05K4155DK1_2005" : [ - "EU081180" - ], - "Human_papillomavirus_type_6__24" : [ - "HG793832" - ], - "Staphylococcus_phage_PVL" : [ - "NC_002321" - ], - "Francisella_cf__novicida_Fx1" : [ - "NC_017450" - ], - "Dengue_virus_4__DENV_4_US_BID_V2445_1998" : [ - "FJ882598" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2169_1998" : [ - "FJ639741" - ], - "Rotavirus_A_RVA_Human_wt_IND_N184_2004_G10P_11" : [ - "KC175130" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7662_2011" : [ - "KF973481" - ], - "Maize_streak_virus__MSV_A_GH_gh110_Fra_2010" : [ - "KJ699307" - ], - "Blainvillea_yellow_spot_virus__BR_Rla3_10" : [ - "JX871389" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Pandarahalli_OY175_2006___OY175" : [ - "GU111974" - ], - "Hepatitis_B_virus__1870" : [ - "FJ386592" - ], - "San_Miguel_sea_lion_virus_8" : [ - "NC_025676" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota95_2013" : [ - "KJ645687" - ], - "Maize_streak_virus__MSV_A_ZA_War11_Ta11_2008" : [ - "HQ693441" - ], - "Newcastle_disease_virus__01_10" : [ - "JX974435" - ], - "Cucumber_mosaic_virus__SW_11" : [ - "KM434204", - "KM434205" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_131118" : [ - "KJ425499" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1198_2007" : [ - "EU482622" - ], - "Human_herpesvirus_5_BE_1_2010" : [ - "KP745677" - ], - "Porcine_circovirus_2__SD_2" : [ - "DQ478947" - ], - "Prochlorococcus_marinus_MIT_9215" : [ - "NC_009840" - ], - "West_Nile_virus__WNV_1_US_BID_V4706_2002" : [ - "JN183887" - ], - "Simian_adenovirus_29" : [ - "FJ025916" - ], - "Porcine_circovirus_2__SFBeef3" : [ - "HQ738640" - ], - "Hepatitis_B_virus__12A" : [ - "AY236161" - ], - "Myxoma_virus_Aust_Woodstock_6_3_95_WS6_346" : [ - "JX565581" - ], - "Hepatitis_B_virus_Ehi_KK_lam_9_3" : [ - "AB195954" - ], - "Human_mastadenovirus_B_human_USA_MEEI_00075_X_3_P3H3F3" : [ - "KF268202" - ], - "Potato_virus_Y__AQ4" : [ - "JN083841" - ], - "Zucchini_yellow_mosaic_virus__H" : [ - "KF976712" - ], - "Human_papillomavirus_type_6__90" : [ - "HG793898" - ], - "Dengue_virus_2__DENV_2_VN_BID_V741_2006" : [ - "EU482678" - ], - "Heliothis_armigera_cypovirus_14__China" : [ - "DQ010323", - "DQ010324", - "DQ010325", - "DQ010326" - ], - "Chikungunya_virus__SGEHICHS421708" : [ - "FJ445431" - ], - "Newcastle_disease_virus_NDV_BJ" : [ - "KF915807" - ], - "Hepatitis_B_virus__F1_1" : [ - "GU815714" - ], - "Human_immunodeficiency_virus_1__06BR564" : [ - "FJ771008" - ], - "Tomato_yellow_leaf_curl_virus_Israel__Japan_Misumi_Stellaria__Mis" : [ - "AB116631" - ], - "Plum_pox_virus_PPV_D_Ok2" : [ - "AB576057" - ], - "Human_immunodeficiency_virus_1__CAP257_7w_F1" : [ - "GQ999990" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0078" : [ - "KP759746" - ], - "Human_rotavirus_A_284_stool" : [ - "AJ236775" - ], - "West_Nile_virus__WNV_1_US_BID_V7433_2011" : [ - "KJ501143" - ], - "Hepatitis_B_virus_Ehime_Lam_MM1_001208" : [ - "AB113878" - ], - "Hepatitis_B_virus__KOR40HCC" : [ - "GQ475344" - ], - "Tomato_yellow_leaf_curl_virus__Gongju_49" : [ - "JN183877" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1532_2007" : [ - "EU677159" - ], - "Hepatitis_B_virus__I_T130" : [ - "GU456647" - ], - "East_African_cassava_mosaic_virus__CF_CF112BE_07" : [ - "KM886000" - ], - "Tobacco_streak_virus__Illinois" : [ - "FJ403375", - "FJ403376", - "FJ403377" - ], - "Bean_golden_mosaic_virus__BgV03B_1_C44" : [ - "JF694456" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4419_1" : [ - "KR105249" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_P_SD_SD263_2014" : [ - "KM229913" - ], - "Alteromonas_phage_vB_AmaP_AD45_P4" : [ - "KF005319" - ], - "Lloviu_cuevavirus__Lloviu_virus_M_schreibersii_wt_ESP_2003_Asturias_Bat86" : [ - "NC_016144" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_LBC_LBC50" : [ - "KF385426" - ], - "Hepatitis_C_virus__HKP7" : [ - "KJ470620" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_D_MA_Q4790_2013" : [ - "KM229788" - ], - "African_cassava_mosaic_virus__MG_MG349B1_11" : [ - "KJ887707" - ], - "Bear_Canyon_mammarenavirus_AV_A0070039" : [ - "NC_010255", - "NC_010256" - ], - "Staphylococcus_phage_phiSA012_phiSA012" : [ - "NC_023573" - ], - "African_cassava_mosaic_virus__CF_CF116AB_07" : [ - "KJ887796" - ], - "Hepatitis_B_virus__P100" : [ - "GQ477498" - ], - "East_African_cassava_mosaic_virus__EACMV__K35" : [ - "AJ717552", - "AJ704934" - ], - "Human_herpesvirus_5_BE_3_2012" : [ - "KP745692" - ], - "African_horse_sickness_virus_HS32_62" : [ - "JQ796732", - "JQ796729", - "JQ796731", - "JQ796730", - "JQ796733", - "JQ796724", - "JQ796727", - "JQ796726", - "JQ796728", - "JQ796725" - ], - "West_Nile_virus__WNV_1_US_BID_V6613_2002" : [ - "KJ501511" - ], - "Sweet_potato_virus_G__SC11" : [ - "KP115623" - ], - "Bordetella_parapertussis_18323" : [ - "NC_018518" - ], - "Dengue_virus_2__DENV_2_CO_BID_V1599_1944" : [ - "EU854293" - ], - "Hepatitis_B_virus__HBV_I_031_HIV_HBV" : [ - "KM524353" - ], - "Micromonas_pusilla_reovirus" : [ - "NC_008181", - "NC_008178", - "NC_008177", - "NC_008175", - "NC_008171", - "NC_008174", - "NC_008180", - "NC_008176", - "NC_008172", - "NC_008173", - "NC_008179" - ], - "Hepatitis_B_virus__6_89" : [ - "AF043593" - ], - "Lactate_dehydrogenase_elevating_virus_Plagemann" : [ - "NC_001639" - ], - "Hepatitis_B_virus__F4_03" : [ - "KJ676694" - ], - "Iguape_virus_SPAn_71686" : [ - "AY632538" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_D185808_2009" : [ - "KM452744" - ], - "Francisella_tularensis_TIGB03" : [ - "NC_016933" - ], - "WU_Polyomavirus__B5381" : [ - "GU296378" - ], - "Hepatitis_B_virus__LAMr_Pt__6" : [ - "AB367397" - ], - "European_bat_lyssavirus_2__RV1787" : [ - "KF155004" - ], - "Tomato_yellow_leaf_curl_virus__SD_LC" : [ - "KC312664", - "KM435319" - ], - "Hepatitis_B_virus__SX11xa1580" : [ - "KC774179" - ], - "Coxsackievirus_B3_2679" : [ - "KJ489414" - ], - "West_Nile_virus__WNV_1_US_BID_V4619_2003" : [ - "HM488235" - ], - "Porcine_circovirus_2__TZ60804" : [ - "FJ158606" - ], - "Human_poliovirus_3_NIE0918516" : [ - "KJ170674" - ], - "Honeysuckle_yellow_vein_Japan_betasatellite__Myz" : [ - "NC_009450" - ], - "Human_immunodeficiency_virus_1__WC10P_2" : [ - "AY314045" - ], - "Hepatitis_B_virus__GU873" : [ - "GQ161772" - ], - "Wheat_dwarf_virus__WDV_F" : [ - "AM040733" - ], - "Human_herpesvirus_5_BE_42_2011" : [ - "KP745673" - ], - "Hepatitis_B_virus__J102" : [ - "GQ377567" - ], - "Hepatitis_B_virus__D104" : [ - "EU939651" - ], - "Enterovirus_A71_MP9_2" : [ - "JF894382" - ], - "Chikungunya_virus__SGEHICHD96808" : [ - "FJ445463" - ], - "Tioman_virus" : [ - "NC_004074" - ], - "BK_polyomavirus__A_37H" : [ - "AB369089" - ], - "Hepatitis_B_virus__KOR15CHB" : [ - "GQ475319" - ], - "JC_polyomavirus__JCV161FLC_33" : [ - "JF424940" - ], - "Enterobacteria_phage_13a" : [ - "NC_011045" - ], - "Paenibacillus_mucilaginosus_KNP414" : [ - "NC_015690" - ], - "Hepatitis_B_virus_adw2_hb614" : [ - "Z35717" - ], - "Ageratum_yellow_vein_Hualian_virus__Taiwan_Hualian2_2000___A2" : [ - "DQ866133" - ], - "Hepatitis_B_virus__SHB62" : [ - "KJ598721" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dav_alpha_20" : [ - "EU384628" - ], - "Zucchini_yellow_mosaic_virus__F71" : [ - "JN192409" - ], - "Duck_hepatitis_A_virus_1_H" : [ - "DQ249300" - ], - "Actinoplanes_phage_phiAsp2" : [ - "NC_005885" - ], - "Human_adenovirus_48" : [ - "EF153473" - ], - "Human_immunodeficiency_virus_1__U_NL_01_H10986_D1" : [ - "EF029068" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT25A13_2003" : [ - "JF909237" - ], - "Rotavirus_G9_US1145" : [ - "AJ250270" - ], - "Hepatitis_B_virus__SHB38" : [ - "KJ598670" - ], - "Hepatitis_B_virus__HCUCH10" : [ - "HM585191" - ], - "Small_begomovirus_associated_satellite__wf_S13" : [ - "KJ859174" - ], - "Hepatitis_B_virus__GU754" : [ - "GQ161775" - ], - "Canna_yellow_streak_virus__OK" : [ - "KM882640" - ], - "Cytophaga_hutchinsonii_ATCC_33406" : [ - "NC_008255" - ], - "Bean_yellow_mosaic_virus_CS" : [ - "AB373203" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZP03_2011" : [ - "JQ693006" - ], - "Porcine_circovirus_2_SX0201" : [ - "AY536755" - ], - "Plum_pox_virus_PPV_D_Ak2" : [ - "AB576046" - ], - "Bean_golden_mosaic_virus__BR_Flt6_11" : [ - "KJ939771" - ], - "Anopheles_gambiae_densovirus" : [ - "NC_011317" - ], - "Junin_mammarenavirus_P2031" : [ - "DQ854731" - ], - "Enterobacteria_phage_phiX174__AP100" : [ - "EF380009" - ], - "Avian_leukosis_virus_JL09H01" : [ - "HQ148554" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1115_2001" : [ - "EU569688" - ], - "Tomato_yellow_leaf_curl_virus__Seongnam1_1" : [ - "JX961669" - ], - "Hepatitis_B_virus__I208" : [ - "FJ562316" - ], - "Human_coronavirus_OC43_HK04_02" : [ - "JN129835" - ], - "Papaya_ringspot_virus_P__prT3_AX_N_Ph" : [ - "JX448370" - ], - "Beak_and_feather_disease_virus" : [ - "AF311295", - "AF311297", - "AF311296", - "AF080560", - "AF311301", - "AF311299", - "NC_001944", - "AF311298", - "AF311302", - "AF311300" - ], - "Hepatitis_B_virus_XZK_pre_t" : [ - "EF536065" - ], - "African_cassava_mosaic_virus__CF_CF49AB_07" : [ - "KJ887774" - ], - "Cucumber_mosaic_virus_satellite_RNA__N1_05_satRNA" : [ - "JF918975" - ], - "Madariaga_virus_MADV_Culex_PER_PE160050_1998" : [ - "KJ469586" - ], - "Dengue_virus_3__DENV_3_US_BID_V1475_2002" : [ - "EU687234" - ], - "Hepatitis_B_virus_258_20a" : [ - "KR013762" - ], - "Hepatitis_B_virus__PAN009" : [ - "GQ358150" - ], - "Helleborus_net_necrosis_virus_H6" : [ - "FJ196836" - ], - "Dengue_virus_1_Western_Pacific" : [ - "AY145122", - "AY145121", - "AY145123" - ], - "Propionibacterium_phage_PHL025M00__PHL025M00" : [ - "NC_027357" - ], - "South_African_cassava_mosaic_virus__MG_MG473A3_11" : [ - "KJ887723" - ], - "Hepatitis_B_virus__10_D1_5_10" : [ - "GU815655" - ], - "Salmonella_phage_LSPA1" : [ - "NC_026017" - ], - "Middle_East_respiratory_syndrome_coronavirus_Abu_Dhabi_UAE_33_2014" : [ - "KP209311" - ], - "Epizootic_hemorrhagic_disease_virus_2__600544" : [ - "EHDVP3B" - ], - "Rabies_virus__SM3844" : [ - "JQ685974" - ], - "Human_parainfluenza_virus_2_GREER" : [ - "AF533012" - ], - "West_Nile_virus__BSL23_11" : [ - "JQ700440" - ], - "Simian_endogenous_retrovirus_vero_ATCC_CCL_81__SRVcae" : [ - "JN134185" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2850_2005" : [ - "FJ898389" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA45_5" : [ - "KF670662" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3696_2007" : [ - "GQ868507" - ], - "West_Nile_virus__WNV_1_US_BID_V6570_2003" : [ - "KJ501365" - ], - "Hepatitis_B_virus_CH1_OHs" : [ - "AB090268" - ], - "Merkel_cell_polyomavirus__344" : [ - "JF812999" - ], - "West_Nile_virus__Ast02_3_208" : [ - "DQ377180" - ], - "African_cassava_mosaic_virus__MG_MG76A1_06" : [ - "KJ887895" - ], - "Echovirus_E14_Tow" : [ - "AY302540" - ], - "Hepatitis_B_virus__019_TI_Ngu" : [ - "KF873534" - ], - "Cotton_leaf_curl_Multan_DNA_betasatellite____India_Haringhata_05_Kenaf_2006" : [ - "EF620565" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8419_2001" : [ - "KJ627676" - ], - "Dengue_virus_1__DENV_1_VN_BID_V956_2007" : [ - "EU482501" - ], - "Porcine_circovirus_2_FMV05_6302" : [ - "DQ220739" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SHB" : [ - "EU864232" - ], - "Hepatitis_B_virus__N16_M_FY137A" : [ - "KJ173413" - ], - "Torque_teno_sus_virus_1b__TTV2SG3" : [ - "JX535332" - ], - "Magpie_robin_coronavirus_HKU18_HKU18_chu3" : [ - "NC_016993" - ], - "Hepatitis_B_virus__C181" : [ - "EU939633" - ], - "Bean_common_mosaic_virus__CD025" : [ - "KM051427" - ], - "Echovirus_E6_FIN09_NPA" : [ - "JQ929657" - ], - "Avian_orthoreovirus__GX_2010_1" : [ - "KJ476701", - "KJ476706", - "KJ476708", - "KJ476699", - "KJ476707", - "KJ476704", - "KJ476703", - "KJ476702", - "KJ476700" - ], - "Hepatitis_C_virus_subtype_1b_MD9_1" : [ - "AF165061" - ], - "Human_immunodeficiency_virus_1__09YNLX090sg" : [ - "KC898995" - ], - "Lagos_bat_virus__0406SEN" : [ - "NC_020807" - ], - "Chikungunya_virus_SL15649" : [ - "GU189061" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_507" : [ - "KR534586" - ], - "Hepatitis_B_virus__S1030_9" : [ - "FJ032356" - ], - "African_horse_sickness_virus__KENrrah_07" : [ - "KF446271", - "KF446262" - ], - "Hepatitis_B_virus__dww1102" : [ - "KC774456" - ], - "Middle_East_respiratory_syndrome_coronavirus__Camel_UAE_D1243_12_2014" : [ - "KP719932" - ], - "Usutu_virus_V391" : [ - "KJ438739" - ], - "Tomato_yellow_leaf_curl_virus__Zu1_09" : [ - "KF477277" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2268_2008" : [ - "FJ639827" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2300_2001" : [ - "FJ744714" - ], - "Thermococcus_gammatolerans_EJ3" : [ - "NC_012804" - ], - "SFTS_virus_HNXY_164_HNXY_164" : [ - "KC292340", - "KC292314", - "KC292287" - ], - "Panicum_streak_virus__PanSV_D_NIfo" : [ - "EU224265" - ], - "South_African_cassava_mosaic_virus__MG_MG335A6_10" : [ - "KJ887986" - ], - "Porcine_kobuvirus_swine_S_1_HUN_2007_Hungary_swine_S_1_HUN_2007_Hungary" : [ - "NC_011829" - ], - "Staphylococcus_phage_phiSa119" : [ - "NC_025460" - ], - "Strawberry_mild_yellow_edge_virus__AB41_01" : [ - "KR350470" - ], - "Cotton_leaf_curl_Multan_betasatellite__UN" : [ - "HG932562" - ], - "Porcine_circovirus_2__Aust_8" : [ - "AY754019" - ], - "Hepatitis_B_virus__cyc1106" : [ - "KC774361" - ], - "Mycobacterium_phage_Jolie1" : [ - "NC_023600" - ], - "Maize_streak_virus__MSV_A_GH_gh53_Geo_2010" : [ - "KJ699349" - ], - "Chikungunya_virus_Hu_85_NR_001" : [ - "HM045800" - ], - "Hepatitis_B_virus__bxa1073" : [ - "KC774395" - ], - "West_Nile_virus__WNV_1_US_BID_V6439_2003" : [ - "KJ501460" - ], - "Junin_mammarenavirus_XJ13" : [ - "NC_005081", - "FJ805377", - "FJ805378", - "NC_005080" - ], - "Maize_streak_virus__UBug_248" : [ - "EF547118" - ], - "Human_immunodeficiency_virus_1__TRJO_flA9" : [ - "FJ496153" - ], - "East_African_cassava_mosaic_virus_KE2__EACMV_KE2_K48" : [ - "AJ717542", - "AJ704949" - ], - "Rift_Valley_fever_virus_ZH_548" : [ - "NC_014396", - "NC_014397", - "NC_014395" - ], - "Dengue_virus_2__DC367Y11" : [ - "KM279519" - ], - "Hepatitis_B_virus__JFA3896" : [ - "KF779261" - ], - "SARS_coronavirus_Sin849" : [ - "AY559086" - ], - "Papaya_leaf_curl_associated_betasatellite__beta_P5" : [ - "KJ397535" - ], - "Hepatitis_B_virus__WY_NNJ_13" : [ - "JX504540" - ], - "Macaca_fascicularis_papillomavirus_type_1" : [ - "EF028290" - ], - "West_Nile_virus_Italy_2009_FIN" : [ - "KF234080" - ], - "Anaplasma_marginale_Florida" : [ - "NC_012026" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_5_2" : [ - "KC106635" - ], - "Hepatitis_E_virus__178C" : [ - "KJ496143" - ], - "Human_respiratory_syncytial_virus_BE_5133_08" : [ - "JX576729" - ], - "Choristoneura_biennis_entomopoxvirus__L" : [ - "NC_021248" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_32_2011" : [ - "KJ686188" - ], - "Bean_golden_mosaic_virus__BR_Cri9_12" : [ - "KJ939840" - ], - "Human_immunodeficiency_virus_1__04KYR8" : [ - "DQ295196" - ], - "Salmonella_phage_SPN19" : [ - "NC_019417" - ], - "Hepatitis_delta_virus_Nagasaki_JA_N1" : [ - "AB118848" - ], - "Sugarcane_streak_mosaic_virus__TPT" : [ - "GQ246187" - ], - "Potato_virus_Y__PVY_12" : [ - "AB185833" - ], - "Campylobacter_concisus_13826" : [ - "NC_009795", - "NC_009796", - "NC_009802" - ], - "Streptococcus_phage_PH15_PH15" : [ - "NC_010945" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_OBS01_2013" : [ - "KM452734" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2452_2001" : [ - "FJ850097" - ], - "Hepatitis_B_virus__HBV63" : [ - "KC875270" - ], - "Human_papillomavirus_type_68__TJ42_68" : [ - "GQ472851" - ], - "Tobacco_rattle_virus__TRV_PhB1_28" : [ - "DQ448613" - ], - "Enterobacteria_phage_phiEcoM_GJ1" : [ - "NC_010106" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__ESP_1991_Olot91" : [ - "KC862570" - ], - "Venezuelan_equine_encephalitis_virus" : [ - "NC_001449" - ], - "Alstroemeria_virus_x" : [ - "NC_007408" - ], - "Hepatitis_B_virus__919079" : [ - "JN040792" - ], - "Hepatitis_B_virus_34010" : [ - "FN545826" - ], - "Hepatitis_B_virus__Tk_JP_2009" : [ - "AB933280" - ], - "Hepatitis_B_virus__N05_M_159A" : [ - "KJ173433" - ], - "Dengue_virus_1__DENV_1_NI_BID_V534_2005" : [ - "JN819402" - ], - "Deerpox_virus_W_1170_84__W_1170_84" : [ - "NC_006967" - ], - "Human_respiratory_syncytial_virus_RSV_A_NIV1114073_11" : [ - "KC731483" - ], - "Middle_East_respiratory_syndrome_coronavirus_ChinaGD01" : [ - "KT006149" - ], - "Dengue_virus_2__DC796Y12" : [ - "KM279573" - ], - "JC_polyomavirus__UZ_4" : [ - "AB127025" - ], - "Rotavirus_C__Preston" : [ - "X77258" - ], - "Brugmansia_mosaic_virus__D_437" : [ - "JX874139" - ], - "Dengue_virus_1__DENV_1_NI_BID_V2342_2006" : [ - "FJ547068" - ], - "Reticuloendotheliosis_virus__CY1111" : [ - "KJ909531" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_14_DRC" : [ - "JX458831" - ], - "Measles_virus_MVi_Tokyo_JPN_37_99_Y_C7__MV99YC7" : [ - "GQ376027" - ], - "African_cassava_mosaic_virus__ACMV__UG_Nam_CMD_MI24_12" : [ - "HE979761" - ], - "Simian_adenovirus_A1327_A1327" : [ - "JN880455" - ], - "Sclerotinia_sclerotiorum_mitovirus_1_HC025__HC025" : [ - "NC_026510" - ], - "Blainvillea_yellow_spot_virus__BR_Rla6_09" : [ - "JX871392" - ], - "Norovirus_Hu_GII_4_Hokkaido4_2007_JP_Hu_GII_4_Hokkaido4_2007_JP" : [ - "AB541265" - ], - "Hepatitis_B_virus_FMU019" : [ - "AY206390" - ], - "Norovirus_Hu_GII_4_Shellharbour_NSW696T_2006_AUS_Hu_NSW696T_2006_AUS" : [ - "EF684915" - ], - "FTLS_virus__YXX2" : [ - "KF356546", - "KF356522", - "KF356534" - ], - "Hepatitis_B_virus__H60_6" : [ - "DQ995801" - ], - "Rift_Valley_fever_virus_2007000324" : [ - "JF326195", - "JF326204", - "JF326190" - ], - "Human_papillomavirus_type_18__Z53" : [ - "KC470216" - ], - "Hepatitis_delta_virus__Central_African_Republic" : [ - "AJ000558" - ], - "Porcine_circovirus_2_FMV05_8037" : [ - "DQ220738" - ], - "Human_bocavirus__HBov_sh8" : [ - "JN632518" - ], - "Corynebacterium_pseudotuberculosis_316" : [ - "NC_016932" - ], - "Human_bocavirus_CQ201012" : [ - "JN387085" - ], - "Macaque_simian_foamy_virus_type_1" : [ - "NC_010819" - ], - "Porcine_parvovirus__HN_I" : [ - "KF429254" - ], - "Human_immunodeficiency_virus_1__ES_X2432_2__URF_BF1" : [ - "FJ853621" - ], - "Squash_leaf_curl_virus__IL1_9" : [ - "KM595096" - ], - "Hepatitis_B_virus__Ag06" : [ - "KJ843168" - ], - "Listeria_phage_LP_030_2" : [ - "NC_021539" - ], - "Lactobacillus_phage_LLKu" : [ - "NC_022989" - ], - "Lettuce_mosaic_virus__CL464" : [ - "KJ161182" - ], - "Hepatitis_B_virus__IS1_OY" : [ - "AB078033" - ], - "San_Miguel_sea_lion_virus_serotype_1" : [ - "SMU15301" - ], - "Tomato_mild_mosaic_virus__BR_Vic17_2_10" : [ - "KC706607" - ], - "Cacao_swollen_shoot_virus__N1A" : [ - "AJ609020" - ], - "Hepatitis_B_virus__1839" : [ - "AY233276" - ], - "Heliothis_virescens_ascovirus_3g__5a" : [ - "JX491653" - ], - "Beet_black_scorch_virus_satellite_RNA__Ir_Ha1sat" : [ - "FN543472" - ], - "Caldicellulosiruptor_kronotskyensis_2002" : [ - "NC_014720" - ], - "Simian_adenovirus_28_1" : [ - "FJ025914" - ], - "Human_poliovirus_1__KAZ38374" : [ - "KC880371" - ], - "Tobacco_bushy_top_virus_satellite_like_RNA__SalR_YN1" : [ - "NC_006458" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1958_2008" : [ - "FJ410275" - ], - "Cucumber_mosaic_virus_R" : [ - "Y18138", - "HE793685", - "HE793686" - ], - "Caprine_arthritis_encephalitis_virus_Shanxi" : [ - "GU120138" - ], - "Maize_streak_virus__MSV_A_CF_Bang4_Car42_2008" : [ - "HQ693299" - ], - "JC_polyomavirus__C3" : [ - "AB077873" - ], - "Yersinia_phage_Berlin" : [ - "NC_008694" - ], - "Ageratum_yellow_vein_Taiwan_virus" : [ - "NC_004627" - ], - "Cucumber_mosaic_virus__GTN" : [ - "KP033526", - "KP033525", - "KP033524" - ], - "Hepatitis_B_virus__GU1039" : [ - "GQ161800" - ], - "Enterobacteria_phage_phiX174__30C90" : [ - "EF380018" - ], - "Lactobacillus_reuteri_SD2112" : [ - "NC_015697", - "NC_015698", - "NC_015699", - "NC_015701", - "NC_015700" - ], - "Hepatitis_B_virus__LRF_k1" : [ - "KM213032" - ], - "JC_polyomavirus__PH_2" : [ - "AB113138" - ], - "Hepatitis_B_virus_adr_subtype" : [ - "AF068756" - ], - "Bluetongue_virus_1__IND2001_01" : [ - "AJ586663" - ], - "Dengue_virus_2__DC795Y12" : [ - "KM279572" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0124" : [ - "KP759673" - ], - "JC_polyomavirus__KB_5" : [ - "AB362352" - ], - "Human_respiratory_syncytial_virus_98_25147_X" : [ - "FJ948820" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2089_2006" : [ - "FJ639729" - ], - "Torque_teno_sus_virus_1b__TTV2Jl1" : [ - "HM633221" - ], - "Campylobacter_phage_NCTC12673" : [ - "NC_015464" - ], - "Human_respiratory_syncytial_virus_RSVA_human_USA_A1998_03_02_1998_A1998_3_2" : [ - "JX069801" - ], - "Dengue_virus_1__DENV_1_NI_BID_V667_2005" : [ - "FJ873814" - ], - "Tomato_leaf_curl_virus__Solanum_species_D2__D2" : [ - "AF084007" - ], - "Human_bocavirus__HBov_sh6" : [ - "JN632516" - ], - "Axonopus_compressus_streak_virus__ACSV_NG_g84_oba_2007" : [ - "NC_023864" - ], - "Hepatitis_C_virus_SA1" : [ - "KJ925146" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_41_68" : [ - "JX869183" - ], - "Enterovirus_A71__03_0_002" : [ - "KP691644" - ], - "BK_polyomavirus_JPN_31" : [ - "AB269835" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7335_2002" : [ - "KF973319" - ], - "Hepatitis_B_virus__MY98472" : [ - "KJ803774" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_FR26_2006" : [ - "KM229799" - ], - "Human_parainfluenza_virus_1_HPIV1_FRA_27344044_2007" : [ - "KF687312" - ], - "Maize_streak_virus__MSV_A_ZW_Hel2_Bet36_2006" : [ - "FJ882141" - ], - "Monkey_B_lymphotropic_papovavirus" : [ - "PPMCG" - ], - "Salivirus_NG_J1_NG_J1" : [ - "NC_012957" - ], - "Espirito_Santo_virus" : [ - "NC_016517", - "NC_016518" - ], - "Hepatitis_B_virus__NIR_7" : [ - "KM577669" - ], - "Alkhumra_hemorrhagic_fever_virus_200201034" : [ - "JF416950" - ], - "Norovirus_Hu_GII_4_Iwate1_2008_JP_Hu_GII_4_Iwate1_2008_JP" : [ - "AB541269" - ], - "Hepatitis_B_virus__A1_50119" : [ - "FJ692588" - ], - "Duck_hepatitis_A_virus_1_E53" : [ - "EF151313" - ], - "SARS_coronavirus_TW1" : [ - "AY291451" - ], - "Porcine_circovirus_1_BJ_1" : [ - "FJ475129" - ], - "Hepatitis_B_virus_HB522" : [ - "JQ027322" - ], - "Dengue_virus_2__1328" : [ - "EU056812" - ], - "Hepatitis_B_virus__TK25" : [ - "JF754625" - ], - "Tomato_leaf_curl_virus_Pune_associated_DNA_beta" : [ - "NC_008524" - ], - "Rabbit_hemorrhagic_disease_virus_WHNRH" : [ - "DQ280493" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_92I_094A_01_1992" : [ - "KJ723465" - ], - "Dengue_virus_3__D3_Pakistan_45251_2009" : [ - "KF041258" - ], - "Hepatitis_B_virus__M90" : [ - "GQ924653" - ], - "Human_immunodeficiency_virus_1__03ZAPS071MB1" : [ - "DQ396376" - ], - "Classical_swine_fever_virus_CSFV_2_3_dp_CSF857_2006_Borken_CSF857" : [ - "GU233731" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culicidae_USA_1272_2003" : [ - "KJ469651" - ], - "Echovirus_E7_2001_031" : [ - "KP266569" - ], - "Porcine_circovirus_2__YZ70717" : [ - "FJ158602" - ], - "Staphylococcus_aureus_ECT_R_2" : [ - "NC_017343", - "NC_017346", - "NC_017344" - ], - "Small_begomovirus_associated_satellite__wf_S23" : [ - "KJ859184" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1224_2007" : [ - "EU569701" - ], - "Bluetongue_virus_9_BUL1999_01_Bulgaria_1999" : [ - "AM778444" - ], - "Simian_immunodeficiency_virus__SIVmus_01CM1085" : [ - "AY340700" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1637_2007" : [ - "FJ182020" - ], - "JC_polyomavirus__AN_8" : [ - "AB092583" - ], - "Papaya_ringspot_virus_P__pfT3_AX_D_Ph" : [ - "JX448372" - ], - "Japanese_encephalitis_virus__CBH" : [ - "JN381860" - ], - "Hepatitis_B_virus__QP046" : [ - "FR714497" - ], - "African_cassava_mosaic_virus__CF_CF78BN_07" : [ - "KJ887607" - ], - "Rabies_virus__R2012_26" : [ - "KF620487" - ], - "Mycobacterium_phage_Validus" : [ - "NC_023498" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_LIBR0333" : [ - "KR006953" - ], - "Foot_and_mouth_disease_virus___type_A_IND81_00" : [ - "HM854021" - ], - "Hepatitis_B_virus__WY_SD_40" : [ - "JX504546" - ], - "Salmonella_enterica_serovar_Paratyphi_B_SPB7" : [ - "NC_010102" - ], - "Norovirus_Hu_GII_4_Hiroshima1_2007_JP_Hu_GII_4_Hiroshima1_2007_JP" : [ - "AB541251" - ], - "Cleome_leaf_crumple_virus__BR_PB_Alh1_10" : [ - "JN103438" - ], - "Listeria_phage_LP_037" : [ - "NC_021787" - ], - "Dengue_virus_4_ThD4_0476_97" : [ - "AY618988" - ], - "Lupine_mosaic_virus__LU2" : [ - "NC_014898" - ], - "Porcine_circovirus_2_NIVS_3" : [ - "HQ378159" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_LA2_51_2013" : [ - "KJ672430" - ], - "Hepatitis_B_virus__IND_2007_11" : [ - "KF214663" - ], - "Tobacco_rattle_virus__TRV_PmF_12" : [ - "DQ448615" - ], - "South_African_cassava_mosaic_virus__MG_MG403A4_11" : [ - "KJ888006" - ], - "Staphylococcus_aureus_MSHR1132" : [ - "NC_016942", - "NC_016941" - ], - "JC_polyomavirus__333A" : [ - "AY382185" - ], - "Potato_yellow_dwarf_virus_SYDV" : [ - "NC_016136" - ], - "Chlamydia_trachomatis_RC_F_69" : [ - "NC_021895" - ], - "Tick_borne_encephalitis_virus_Primorye_90" : [ - "FJ997899" - ], - "Hepatitis_B_virus__CX017M_e227" : [ - "KJ173350" - ], - "Madariaga_virus_MADV_Equus_ferus_caballus_GUY_SP43710_13_1962" : [ - "KJ469578" - ], - "Bacillus_phage_BCP78" : [ - "NC_018860" - ], - "Human_immunodeficiency_virus_1__04LSK7" : [ - "DQ295192" - ], - "Potato_virus_Y_1107" : [ - "KC296439" - ], - "JC_polyomavirus__MO_2" : [ - "AB262396" - ], - "Dengue_virus_2_ZS01_01" : [ - "EF051521" - ], - "Sweet_potato_leaf_curl_virus__US_MS_1B_1a" : [ - "HQ333139" - ], - "Zucchini_yellow_mosaic_virus__SG" : [ - "AJ316228" - ], - "Cucumber_mosaic_virus_satellite_RNA__P1_2" : [ - "AJ457164" - ], - "Enterococcus_hirae_ATCC_9790" : [ - "NC_018081", - "NC_015845" - ], - "Grapevine_deformation_virus__N66" : [ - "NC_017939" - ], - "Hepatitis_B_virus__THB36_IC" : [ - "JN664909" - ], - "Okra_leaf_curl_Mali_virus_satellite_DNA_beta__OMHB11" : [ - "FM164731" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_D613" : [ - "JX503071" - ], - "Hepatitis_B_virus__No6" : [ - "AB697491" - ], - "Dengue_virus_2__DENV_2_VN_BID_V918_2006" : [ - "EU482464" - ], - "Cherry_green_ring_mottle_virus__S10" : [ - "JX501671" - ], - "Hepatitis_B_virus_C_1858_ea3" : [ - "AF223956" - ], - "Squash_leaf_curl_virus__JO1_163" : [ - "KM595160" - ], - "Hepatitis_B_virus__895_N_BRA" : [ - "KJ854707" - ], - "South_African_cassava_mosaic_virus__MG_MG275A7_10" : [ - "KJ887690" - ], - "Hepatitis_B_virus_HBV_P55" : [ - "KC510658" - ], - "Chikungunya_virus_OPY4" : [ - "KP003809" - ], - "Comamonas_testosteroni_CNB_2" : [ - "NC_013446", - "NC_010935" - ], - "Propionibacterium_phage_SKKY" : [ - "NC_027624" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3401_2004" : [ - "GU131953" - ], - "Betacoronavirus_HKU24_HKU24_R05010I" : [ - "KM349744" - ], - "Canine_papillomavirus_12__Deacon_C" : [ - "JQ754321" - ], - "Human_rhinovirus_A74" : [ - "DQ473494" - ], - "Dengue_virus_1__DENV_1_NI_BID_V652_2005" : [ - "FJ024482" - ], - "Tomato_leaf_curl_New_Delhi_virus__India_Ash_gourd_2011" : [ - "JN208137", - "JN208136" - ], - "Sorghum_mosaic_virus_H_south_Texas" : [ - "SMU57358" - ], - "Small_begomovirus_associated_satellite__wf_S9" : [ - "KJ859217" - ], - "Feline_picornavirus_127F" : [ - "JN572116" - ], - "Porcine_circovirus_2__CH3" : [ - "HQ202960" - ], - "Goose_circovirus__CPA13007_2" : [ - "KP229373" - ], - "Hepatitis_B_virus__CHN_QH9" : [ - "DQ478888" - ], - "Citrus_tristeza_virus__B165" : [ - "EU076703" - ], - "Hepatitis_B_virus__MN2004" : [ - "JN792893" - ], - "Bamboo_mosaic_virus__BaMv_Au" : [ - "AB636267" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda12_05" : [ - "KC706629" - ], - "Lactococcus_Phage_ASCC473" : [ - "JQ740805" - ], - "Wheat_dwarf_virus__QHLD10_15" : [ - "JQ647480" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3769_1" : [ - "KM233065" - ], - "Dengue_virus_1__DENV_1_GZ_ZW_0802_2014" : [ - "KR028435" - ], - "Tomato_leaf_curl_Gujarat_virus____Nepal" : [ - "AY234383" - ], - "Paenibacillus_polymyxa_SC2" : [ - "NC_014628", - "NC_014622" - ], - "Hepatitis_B_virus__Q6_5" : [ - "AY217359" - ], - "Dengue_virus_2__DENV_2_US_BID_V1372_1995" : [ - "EU660399" - ], - "Betacoronavirus_HKU24_HKU24_R05009I" : [ - "KM349743" - ], - "Norovirus_Hu_GII_4_Saga2_2007_JP_Hu_GII_4_Saga2_2007_JP" : [ - "AB541332" - ], - "Variola_virus_Sumatra_1970_V70_222" : [ - "DQ437591" - ], - "Alternanthera_mosaic_virus__SP_3_1" : [ - "GQ179646" - ], - "Hepatitis_B_virus__J100" : [ - "GQ377565" - ], - "Squash_leaf_curl_virus__IL1_23" : [ - "KM595101" - ], - "West_Nile_virus__WNV_1_US_BID_V4632_2008" : [ - "HM488243" - ], - "Deltapapillomavirus_4" : [ - "NC_001522" - ], - "Wheat_dwarf_virus__HNJZ07_2" : [ - "KJ536091" - ], - "Cucumber_mosaic_virus__Va" : [ - "JX014247", - "JX014248", - "JX014246" - ], - "Dengue_virus_1__DENV_1_VN_BID_V787_2007" : [ - "EU482713" - ], - "Pseudomonas_phage_YH6" : [ - "NC_027388" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC04B19_2005" : [ - "JF909081" - ], - "Human_immunodeficiency_virus_1__98VNND15" : [ - "FJ185235" - ], - "Beluga_Whale_coronavirus_SW1__SW1" : [ - "NC_010646" - ], - "Human_herpesvirus_3_Dumas" : [ - "NC_001348" - ], - "Sida_yellow_blotch_virus__BR_Rla2_10" : [ - "JX871381" - ], - "Coprococcus_catus_GD_7" : [ - "NC_021009" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_OR5_2012" : [ - "KF467254" - ], - "Staphylococcus_phage_6ec" : [ - "NC_024355" - ], - "Porcine_circovirus_2_09GX" : [ - "HQ395029" - ], - "Hepatitis_C_virus__QC88" : [ - "KJ470617" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ06B21_2004" : [ - "JF909069" - ], - "Simian_hemorrhagic_fever_virus__krc1" : [ - "HQ845737" - ], - "Bagaza_virus_DakAr_B209" : [ - "NC_012534" - ], - "Bhendi_yellow_vein_India_virus__India_Phalaghat_OY04_2005___OY04" : [ - "GU112018" - ], - "Cucumber_mosaic_virus_satellite_RNA__P1" : [ - "Z96099" - ], - "Borrelia_burgdorferi_JD1" : [ - "NC_017394", - "NC_017409", - "NC_017425", - "NC_017426", - "NC_017403", - "NC_013129", - "NC_017404", - "NC_017412", - "NC_017396", - "NC_017397", - "NC_017410", - "NC_017407", - "NC_017428", - "NC_017408", - "NC_017413", - "NC_017406", - "NC_017405", - "NC_017427", - "NC_017411", - "NC_017393", - "NC_017395" - ], - "Squash_leaf_curl_virus__JO3_215" : [ - "KM595206" - ], - "Equid_herpesvirus_1_Ab4" : [ - "NC_001491" - ], - "Porcine_circovirus_2_DY1102" : [ - "JX406424" - ], - "Cucumber_mosaic_virus__strain_Mf__Mf" : [ - "AJ276479", - "AJ276481", - "AJ276480" - ], - "Rice_dwarf_virus_RDV_S" : [ - "RDVSS8" - ], - "Hepatitis_B_virus__cxn1013" : [ - "KC774335" - ], - "Variola_virus_Japan_1951__Stillwell__Masterseed" : [ - "DQ441431" - ], - "Cucumber_green_mottle_mosaic_virus__TZ4" : [ - "KM873788" - ], - "Human_immunodeficiency_virus_1__14299_1" : [ - "DQ853449" - ], - "Maize_streak_virus__MSV_A_ZA_Pot4_O28_1979" : [ - "FJ882132" - ], - "Woodchuck_hepatitis_virus" : [ - "NC_004107", - "AY628099", - "AY334075", - "KF874492", - "AY628098", - "OHVCGB", - "AY628097", - "OHVCGA", - "AY628096", - "OHVCGC", - "AY628100", - "AY334076", - "KF874493", - "AY334077", - "KF874491", - "AY628095", - "OHVHEPBA" - ], - "Cucumber_mosaic_virus_ZM" : [ - "JN180309", - "JN180311", - "JN180310" - ], - "Classical_swine_fever_virus_HNLY_2011" : [ - "JX262391" - ], - "Hepatitis_E_virus__individual_patient_infected_with_HEV" : [ - "X99441" - ], - "Porcine_circovirus_2__JZB2" : [ - "KC821784" - ], - "Tomato_yellow_leaf_curl_China_virus__YWSh03" : [ - "KJ477327" - ], - "Alteromonas_macleodii__Ionian_Sea_U7" : [ - "NC_021717" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5468_2010" : [ - "JF920406" - ], - "Hepatitis_B_virus__GU1178" : [ - "GQ161776" - ], - "Methanocella_conradii_HZ254" : [ - "NC_017034" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8316_2001" : [ - "KJ627649" - ], - "JC_polyomavirus__SP_1" : [ - "AB048566" - ], - "BK_polyomavirus__SHA_22" : [ - "AB365164" - ], - "Vibrio_furnissii_NCTC_11218" : [ - "NC_016628", - "NC_016602" - ], - "Hepatitis_B_virus__1965" : [ - "FJ386605" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Gueckedou_633" : [ - "KR534512" - ], - "Beet_black_scorch_virus__Ir_Ksh1" : [ - "FN543421" - ], - "Citrus_yellow_mosaic_virus__AL" : [ - "EU489744" - ], - "SARS_coronavirus_BJ182b" : [ - "EU371561" - ], - "Burkholderia_phage_Bcep1" : [ - "NC_005263" - ], - "South_African_cassava_mosaic_virus__MG_MG20A1_06" : [ - "KJ887840" - ], - "Bovine_viral_diarrhea_virus_1__Av69_VEDEVAC" : [ - "KC695814" - ], - "Torque_teno_sus_virus_1b__TTV2HaiN" : [ - "JX535330" - ], - "Cauliflower_mosaic_virus__IRN1" : [ - "AB863136" - ], - "Cucumber_mosaic_virus_satellite_RNA_TO79" : [ - "X86417" - ], - "Plum_pox_virus_strain_Marcus_Marcus_GR0019" : [ - "FM955843" - ], - "Beet_mosaic_virus__BtMV_Wa" : [ - "NC_005304" - ], - "Bat_circovirus__XOR7" : [ - "NC_021206" - ], - "African_cassava_mosaic_virus__Ivory_Coast" : [ - "AF259895", - "AF259894" - ], - "Dengue_virus_3_ThD3_0010_87" : [ - "AY676352" - ], - "Hepatitis_B_virus__FF7" : [ - "KF485389" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__CK2" : [ - "GU723751" - ], - "Maize_streak_virus__MSV_A_GH_gh155_Kwa_2010" : [ - "KJ699337" - ], - "Hepatitis_B_virus__TK37" : [ - "JF754627" - ], - "Bluetongue_virus_1__LAZ2013" : [ - "KJ577130", - "KJ577126", - "KJ577132", - "KJ577124", - "KJ577127", - "KJ577133", - "KJ577131", - "KJ577129", - "KJ577128" - ], - "Beak_and_feather_disease_virus__05_726" : [ - "EF457975" - ], - "Hepatitis_B_virus__I_T16" : [ - "GU456674" - ], - "Snow_goose_hepatitis_B_virus__SGHBV1_19" : [ - "AF110998" - ], - "BK_polyomavirus__OKN_14" : [ - "AB298946" - ], - "Human_papillomavirus_type_16__Qv03874" : [ - "HQ644264" - ], - "Human_poliovirus_3_NIE1018483" : [ - "KJ170581" - ], - "Enterovirus_A71__J115_MAL_01" : [ - "DQ341360" - ], - "Papilio_polyxenes_densovirus__IAF" : [ - "NC_018450" - ], - "Galinsoga_mosaic_virus" : [ - "NC_001818" - ], - "Staphylococcus_phage_vB_SauM_Romulus" : [ - "NC_020877" - ], - "Tembusu_virus_MM_1775" : [ - "JX477685" - ], - "Human_immunodeficiency_virus_1__PRB959_03" : [ - "AY331296" - ], - "East_African_cassava_mosaic_virus__EACMV__K24" : [ - "AJ717557", - "AJ704936" - ], - "Hepatitis_B_virus__MY484998" : [ - "KJ803758" - ], - "Tomato_leaf_curl_Philippines_virus___Los_Banos_L3" : [ - "AB377113" - ], - "Newcastle_disease_virus__NDV2K35_CH_TN_2003" : [ - "KF740478" - ], - "JC_polyomavirus__IN_8" : [ - "AB126992" - ], - "Candidatus_Hamiltonella_defensa_5AT__Acyrthosiphon_pisum" : [ - "NC_012751", - "NC_012752" - ], - "Homalodisca_vitripennis_reovirus__Riverside1" : [ - "GU437839" - ], - "Turnip_mosaic_virus__POL2" : [ - "AB701731" - ], - "Hepatitis_B_virus__I_T94" : [ - "GU456669" - ], - "Tench_rhabdovirus_S64__S64" : [ - "NC_025371" - ], - "Rotavirus_A_RVA_Cow_wt_FRA_V025_2010_G6P_5" : [ - "HE646646" - ], - "West_Nile_virus__WNV_1_US_BID_V4805_2005" : [ - "HM488252" - ], - "Hepatitis_B_virus__F3_9" : [ - "GU815746" - ], - "Human_coronavirus_NL63_NL63_DEN_2005_1862" : [ - "JQ765574" - ], - "Hepatitis_B_virus__KOR18LC" : [ - "GQ475322" - ], - "Hepatitis_B_virus__Greenland_4" : [ - "AB287323" - ], - "Pigeon_paramyxovirus_1_IT_227_82" : [ - "AJ880277" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US40" : [ - "KJ019100" - ], - "Zaire_ebolavirus__Ebola_virus_H_sap_wt_COD_2014_Boende_Lokolia" : [ - "KM519951" - ], - "Bluetongue_virus_5__NIG1982_03" : [ - "AJ586702" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo191_08" : [ - "KC706554" - ], - "Hepatitis_B_virus__YOGHhbv30" : [ - "AB713527" - ], - "Hepatitis_B_virus__He53" : [ - "AY641559" - ], - "Pseudomonas_phage_PAK_P2" : [ - "NC_022967" - ], - "JC_polyomavirus__334A" : [ - "AY386373" - ], - "Hepatitis_B_virus__EN61_CHB" : [ - "JN664934" - ], - "Chickpea_chlorosis_virus_A__3460D" : [ - "KC172683" - ], - "Porcine_circovirus_2_DZ" : [ - "DQ201641" - ], - "Porcine_circovirus_2_PCV2_P6_30708" : [ - "FJ667587" - ], - "Hepatitis_B_virus_1240_5" : [ - "KR013839" - ], - "Hepatitis_E_virus__HE_JA37" : [ - "AB220978" - ], - "Human_smacovirus_1__France_2_2008_2548" : [ - "KP264964" - ], - "Tomato_severe_rugose_virus__BR_Car214_08" : [ - "KC004075" - ], - "Dengue_virus_1_D1_Hu_Chiba_NIID153_2014" : [ - "LC011948" - ], - "Hepatitis_B_virus_Ehi_SK_lam_7_1" : [ - "AB195947" - ], - "Wheat_dwarf_virus__Rye9_3" : [ - "KJ473707" - ], - "Tobacco_etch_virus__HAT_AU" : [ - "KM282187" - ], - "Rabies_virus__AZBAT_65094" : [ - "JQ685942" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V113_2001" : [ - "EU255998" - ], - "Echovirus_E30__E30SD2010CHN" : [ - "JX976773" - ], - "Hepatitis_B_virus__QL523" : [ - "FR714496" - ], - "Tobacco_vein_distorting_virus__Longlin" : [ - "NC_010732" - ], - "Hepatitis_E_virus__IND_HEV_AVH2_1998" : [ - "JF443718" - ], - "Mycobacterium_gilvum_PYR_GCK" : [ - "NC_009339", - "NC_009338", - "NC_009340", - "NC_009341" - ], - "Human_immunodeficiency_virus_1__PMVL_049" : [ - "EF514701" - ], - "Chikungunya_virus__CU_Chik683" : [ - "GU301781" - ], - "Human_astrovirus_1_Beijing_128_2005_CHN_Beijing_128_2005_CHN" : [ - "FJ755402" - ], - "Pepper_golden_mosaic_virus__Turrialba_2" : [ - "JN688724" - ], - "Mesoplasma_florum_W37" : [ - "NC_022583" - ], - "Simian_foamy_virus" : [ - "NC_001364" - ], - "Human_poliovirus_2_NIE0511448_SOS05_01" : [ - "JX274982" - ], - "Hepatitis_B_virus__DT2007" : [ - "JQ732168" - ], - "Echovirus_9_strain_Barty_Barty" : [ - "X92886" - ], - "Foot_and_mouth_disease_virus___type_C_C_rp99" : [ - "AJ133358" - ], - "Hepatitis_C_virus__Eg2" : [ - "DQ988073" - ], - "Salmonella_enterica_serovar_Heidelberg_41578" : [ - "NC_021810", - "NC_021869", - "NC_021811", - "NC_021841" - ], - "Eidolon_polyomavirus_1__KY270" : [ - "NC_020068" - ], - "JC_polyomavirus__CN_15" : [ - "AB081008" - ], - "Lactococcus_phage_bIL310" : [ - "NC_002669" - ], - "West_Nile_virus__WNV_1_US_BID_V6556_2001" : [ - "KJ501507" - ], - "Beilong_virus" : [ - "NC_007803" - ], - "Human_immunodeficiency_virus_1__ML752" : [ - "EU110085" - ], - "Human_rhinovirus_A39" : [ - "AY751783" - ], - "Human_bocavirus_CQ201005" : [ - "JN387080" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_110_2012" : [ - "KJ686174" - ], - "Dengue_virus_3_ThD3_1687_98" : [ - "AY676348" - ], - "Hepatitis_B_virus__HBV_IF687_2" : [ - "AB205120" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NADC30" : [ - "JN654459" - ], - "Human_papillomavirus_type_6__49" : [ - "HG793857" - ], - "Hepatitis_delta_virus__VnzD8624" : [ - "AB037949" - ], - "Alternanthera_yellow_vein_virus__F30" : [ - "EU286797" - ], - "Porcine_circovirus_2__HN6" : [ - "KM035762" - ], - "Porcine_circovirus_2_GXWZ_2" : [ - "FJ501957" - ], - "JC_polyomavirus__JCV144_39" : [ - "JF424888" - ], - "Porcine_circovirus_2__177_07_21" : [ - "HQ591372" - ], - "Bluetongue_virus_9__TUR2000_05" : [ - "AJ586686" - ], - "Hepatitis_B_virus__Cuba109" : [ - "KM606753" - ], - "Malvastrum_leaf_curl_betasatellite__G87" : [ - "NC_007711" - ], - "Hepatitis_B_virus__AK8" : [ - "AB976562" - ], - "Porcine_circovirus_2__JY" : [ - "KC753770" - ], - "Porcine_circovirus_2_DaFeng0609" : [ - "EU503032" - ], - "Chickpea_chlorotic_dwarf_virus__H_ErC177_05" : [ - "KC172676" - ], - "Human_papillomavirus_type_122__CL3802" : [ - "GQ845444" - ], - "Human_herpesvirus_5_BE_12_2011" : [ - "KP745683" - ], - "Halalkalicoccus_jeotgali_B3" : [ - "NC_014297", - "NC_014302", - "NC_014300", - "NC_014299", - "NC_014301", - "NC_014298", - "NC_014303" - ], - "Equine_arteritis_virus_F61" : [ - "JN211318" - ], - "Zantedeschia_mild_mosaic_virus_TW" : [ - "NC_011560" - ], - "Hepatitis_B_virus__WHYMN" : [ - "JN257204" - ], - "Koala_retrovirus__Pci_maex1738" : [ - "KF786281" - ], - "Ligustrum_necrotic_ringspot_virus" : [ - "NC_010305" - ], - "Temperate_fruit_decay_associated_virus__MFBpe7" : [ - "KR134331" - ], - "West_Nile_virus_Italy_2014_Verona_35_1" : [ - "KP789955" - ], - "Pan_troglodytes_verus_polyomavirus_4__3147" : [ - "NC_019856" - ], - "Hepatitis_B_virus__EN71_LC" : [ - "JN664939" - ], - "Hepatitis_B_virus__D_KI018_2004" : [ - "HQ700534" - ], - "JC_polyomavirus__MS" : [ - "AB081654" - ], - "Human_rotavirus_A_I231" : [ - "X81433" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4829_2009" : [ - "HQ891025" - ], - "Hepatitis_B_virus__DEN5739" : [ - "KF779212" - ], - "Hepatitis_B_virus__GU1033" : [ - "GQ161761" - ], - "Hepatitis_B_virus__clz2039" : [ - "KC774198" - ], - "Dengue_virus_3_CH53489" : [ - "DQ863638" - ], - "Newcastle_disease_virus_B1_B1" : [ - "NC_002617" - ], - "Watermelon_mosaic_virus__C07_014" : [ - "JF273464" - ], - "West_Nile_virus__WNV_1_US_BID_V4375_2005" : [ - "HM488195" - ], - "Canine_distemper_virus_Shuskiy" : [ - "HM063009" - ], - "Apple_chlorotic_leaf_spot_virus_B6" : [ - "AB326224" - ], - "Hepatitis_B_virus__cyc1070" : [ - "KC774355" - ], - "African_cassava_mosaic_virus__KE_mtw_CMD_MI77_12" : [ - "HG530119" - ], - "Hepatitis_B_virus__C151" : [ - "EU939597", - "EU859948" - ], - "Porcine_circovirus_2_PCV2_P7" : [ - "FJ667594" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_2___strain_Alberta__Alberta_CAN1962_01" : [ - "AM744999", - "AM745002", - "AM745000", - "AM745006", - "AM745005", - "AM745003", - "AM744997", - "AM745004", - "AM745001", - "AM744998" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0153" : [ - "KP759616" - ], - "Human_adenovirus_11_Slobitski" : [ - "AF532578" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20146578" : [ - "KR653281" - ], - "Dengue_virus_4__DENV_4_US_BID_V2432_1995" : [ - "GQ252675" - ], - "Soybean_mosaic_virus__WS162" : [ - "FJ640973" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V179_1990" : [ - "EU482889" - ], - "Potato_virus_Y_O_OH" : [ - "AB714134" - ], - "Hepatitis_E_virus__JAO_Gif12" : [ - "AB909124" - ], - "Wheat_dwarf_virus____Sweden___SE" : [ - "X02869" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8432_2001" : [ - "KJ627682" - ], - "Mammalian_orthoreovirus_3_variant_T3v1" : [ - "JQ599139", - "JQ599140", - "JQ599141" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__NJ_1106" : [ - "JX880029" - ], - "Sweet_potato_leaf_curl_virus_USA_SPLCV_US_BR_AM1_09" : [ - "HQ393471" - ], - "Turnip_mosaic_virus__AUST23" : [ - "AB989639" - ], - "Cowpea_chlorotic_mottle_virus__Car2" : [ - "HQ611269", - "HQ611270", - "HQ611271" - ], - "Hepatitis_delta_virus_dTk4_dTk4" : [ - "AM779584" - ], - "Pectobacterium_phage_My1" : [ - "NC_018837" - ], - "Sacbrood_virus__AcSBV_Viet3" : [ - "KM884992" - ], - "South_African_cassava_mosaic_virus__MG_MG7A33_05" : [ - "KJ887827" - ], - "Tomato_black_ring_virus__MJ" : [ - "NC_004439", - "NC_004440" - ], - "Norovirus_Hu_GII_4_Nagano4_2008_JP_Hu_GII_4_Nagano4_2008_JP" : [ - "AB541307" - ], - "Rubella_virus_RVi_CA_USA_88_1D" : [ - "JN635285" - ], - "Hepatitis_B_virus__S454" : [ - "FJ386670" - ], - "Bovine_viral_diarrhea_virus_2__SH2210_17" : [ - "HG426493" - ], - "West_Nile_virus__WNV_1_BID_V5050" : [ - "JN819323" - ], - "Hepatitis_B_virus__Ag49" : [ - "KJ843209" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7440_2009" : [ - "KJ627289" - ], - "Tomato_leaf_curl_China_betasatellite__YN60" : [ - "KF042891" - ], - "Ageratum_yellow_vein_virus__AFSP2a" : [ - "JN809812" - ], - "Wheat_dwarf_virus__SXHC07_14" : [ - "KJ536109" - ], - "Human_immunodeficiency_virus_1__HIV1084i" : [ - "AY805330" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V29_2003" : [ - "EU155379" - ], - "Hepatitis_B_virus__MOD_4599" : [ - "GQ183485" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3897_2008" : [ - "HM181966" - ], - "Tomato_mottle_wrinkle_virus__Ar_Pichanal_400" : [ - "NC_025265", - "NC_025266" - ], - "Tomato_yellow_leaf_curl_virus__MS001" : [ - "KC211184" - ], - "Rice_stripe_virus__Chinese" : [ - "Y11096", - "Y11095" - ], - "West_Nile_virus_Cz_13_104" : [ - "KM203860" - ], - "Porcine_circovirus_2_Hebei" : [ - "HM003570" - ], - "Euphorbia_yellow_mosaic_virus___Goias__Brazil_GO_Luziania_8675_2009" : [ - "JF756676" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_67_2013" : [ - "KJ672447" - ], - "Vibrio_phage_VEJphi" : [ - "NC_012757" - ], - "Ageratum_leaf_curl_Cameroon_alphasatellite__CM_OMHD2_Ok_09___OMHD2" : [ - "FN675295" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Abohar_2009" : [ - "JF502378" - ], - "Helicobacter_pylori_908" : [ - "NC_017357" - ], - "Mycoplasma_gallisepticum_VA94_7994_1_7P" : [ - "NC_018406" - ], - "Mycobacterium_phage_Corndog" : [ - "NC_004685" - ], - "Tembusu_virus__SDXT" : [ - "KJ740745" - ], - "Hepatitis_B_virus__J172" : [ - "GQ377607" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PAN_484551_2001_ID" : [ - "KC344511" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLE9483_2010" : [ - "KJ672611" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC40BY1_2009" : [ - "JF909219" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_233_2011" : [ - "KJ686298" - ], - "South_African_cassava_mosaic_virus__MG_MG122A2_09" : [ - "KJ887916" - ], - "Hepatitis_E_virus_E088_STM04C" : [ - "AB369689" - ], - "Hepatitis_B_virus_Ehi_MH_lam_3_2" : [ - "AB195937" - ], - "Rabies_virus__NC1234" : [ - "JQ685967" - ], - "Hepatitis_B_virus_99_34" : [ - "KR013887" - ], - "Aphid_lethal_paralysis_virus" : [ - "NC_004365", - "JQ320375" - ], - "Porcine_circovirus_2_TangHe" : [ - "EU418627" - ], - "Enterovirus_A_GZ2010_134_EV71_Guangzhou_134_2010" : [ - "HQ456306" - ], - "Enterobacteria_phage_VT2phi_272" : [ - "HQ424691" - ], - "Wheat_streak_mosaic_virus_type" : [ - "AF285169" - ], - "Odontoglossum_ringspot_virus_Singapore_1" : [ - "ORU34586" - ], - "Siegesbeckia_yellow_vein_virus__GD24__associated_DNA_beta__GD24" : [ - "AM230644" - ], - "Hepatitis_B_virus__I_T40" : [ - "GU456664" - ], - "Porcine_circovirus_2_No_35" : [ - "AB072303" - ], - "Lactococcus_phage_712" : [ - "NC_008370" - ], - "Dengue_virus_3__DENV_3_US_BID_V1736_1999" : [ - "FJ390376" - ], - "Enterobacteria_phage_T4_GT7" : [ - "KJ477686" - ], - "Hepatitis_B_virus__ES71_7" : [ - "JF828927" - ], - "Porcine_circovirus_2_GXHZ_5" : [ - "EF675234" - ], - "Sweet_potato_leaf_curl_virus__SPLCV_PER_PER_CAN1_10" : [ - "KC253234" - ], - "Hepatitis_B_virus__G25" : [ - "AY077735" - ], - "Bamboo_mosaic_virus__BaMV_O" : [ - "NC_001642" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3659_2006" : [ - "GQ868498" - ], - "Hepatitis_B_virus__S586" : [ - "FJ386671" - ], - "Tomato_yellow_leaf_curl_virus__SD_YT13" : [ - "KM435327" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V175_1990" : [ - "EU862839" - ], - "Brassica_yellows_virus__Chinese_cabbage_Haidian" : [ - "KF015269" - ], - "Hepatitis_B_virus__919052" : [ - "JN040830" - ], - "Panicum_mosaic_virus" : [ - "NC_002598" - ], - "Hepatitis_B_virus__8066" : [ - "KJ470894" - ], - "Aguacate_virus_VP_175A" : [ - "NC_015451", - "NC_015450", - "NC_015452" - ], - "Coxsackievirus_A11_BAN00_10444" : [ - "DQ995633" - ], - "Southwest_baboon_virus_1__SWBV_16986_11_4_2013" : [ - "NC_025113" - ], - "Potato_leafroll_virus_Noir" : [ - "AF453390" - ], - "Chickpea_chlorotic_dwarf_virus__F_YeL8_96" : [ - "KC172669" - ], - "Salinispora_tropica_CNB_440" : [ - "NC_009380" - ], - "Maize_streak_virus__ULuw_192" : [ - "EF547108" - ], - "Maize_streak_virus__MSV_A_CF_Bang8_Car46_2008" : [ - "HQ693303" - ], - "Hepatitis_C_virus_subtype_1b_MD24" : [ - "AF207765" - ], - "African_cassava_mosaic_virus__CF_CF2AB_07" : [ - "KJ887755" - ], - "Mamastrovirus_1__V1347" : [ - "AB308374" - ], - "Human_poliovirus_1_NIE1118378" : [ - "KJ170459" - ], - "West_Nile_virus__WNV_1_US_BID_V6632_2003" : [ - "KJ501381" - ], - "HBV_genotype_B__pBS_HBVB1_1005425_1_3G_wt_wt" : [ - "AB819614" - ], - "Pigeon_paramyxovirus_1_pi_CH_LGD_110945" : [ - "JX486555" - ], - "Blainvillea_yellow_spot_virus__BgV06B_1_C55" : [ - "JF694470" - ], - "Grapevine_leafroll_associated_virus_6__Estellat" : [ - "NC_016417" - ], - "Cellulophaga_phage_phi39_1_phi39_1" : [ - "NC_021804" - ], - "Threadfin_reovirus" : [ - "AF524892", - "AY236219" - ], - "Mycobacterium_phage_Angelica_Angelica" : [ - "NC_014458" - ], - "Tomato_yellow_leaf_curl_virus__HNSQ" : [ - "JF414237" - ], - "Human_papillomavirus_type_11__LP224f" : [ - "HE962366" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9459_2013" : [ - "KJ643527" - ], - "Hepatitis_B_virus__234_6_1979" : [ - "DQ463794" - ], - "Erwinia_phage_phiEa100" : [ - "NC_019926" - ], - "Canine_distemper_virus_Phoca_Caspian_2007" : [ - "HM046486" - ], - "Hepatitis_B_virus__09_41_591" : [ - "JQ429082" - ], - "Goose_parvovirus_SYG61v" : [ - "KC996729" - ], - "Beak_and_feather_disease_virus__BFDV_T_PL_399_2007" : [ - "JX221022" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V427_2002" : [ - "EU482835" - ], - "Dengue_virus_3__95TW466" : [ - "DQ675519" - ], - "Simian_T_lymphotropic_virus_1_STLV_I_TE4_TE4" : [ - "Z46900" - ], - "Human_herpesvirus_3__MAV06" : [ - "JF306641" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Coquillettidia_nigricans_MEX_MX09_M49_2009_IE" : [ - "KC344453" - ], - "Rubella_virus_GUZ_GER92" : [ - "DQ388280" - ], - "Human_polyomavirus_7__707a" : [ - "HM011564" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V40_2003" : [ - "EU862840" - ], - "Hardenbergia_mosaic_virus__MD2" : [ - "KJ152152" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_D620" : [ - "JX503078" - ], - "Panicum_streak_virus__I_KE_Nra1_g374" : [ - "GQ415399" - ], - "Duck_adenovirus_2_GR" : [ - "NC_024486" - ], - "Hepatitis_B_virus_Ehime16_BD_No53_20030120" : [ - "AB119254" - ], - "Japanese_encephalitis_virus__GSBY0810" : [ - "JN381840" - ], - "Thermosynechococcus_NK55" : [ - "NC_023033" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4165_legs" : [ - "HQ671688" - ], - "Dragonfly_larvae_associated_circular_virus_6__DflaCV_6_NZ_PG9_LD" : [ - "NC_023432" - ], - "Usutu_virus_V24" : [ - "KJ438752" - ], - "Porcine_circovirus_2_GD006" : [ - "KM880081" - ], - "Anaconda_paramyxovirus__1110RN043" : [ - "KJ956408" - ], - "Dengue_virus_4_ThD4_0734_00" : [ - "AY618993" - ], - "Cowpea_aphid_borne_mosaic_virus__RR3" : [ - "KM597165" - ], - "Propionibacterium_acnes_266" : [ - "NC_017534" - ], - "Macroptilium_yellow_vein_virus__BR_Pai28_11" : [ - "KJ939908" - ], - "Human_rhinovirus_B70" : [ - "DQ473489" - ], - "Hepatitis_B_virus__1958_3" : [ - "KR014098" - ], - "Norovirus_Hu_GII_30266_2009_VNM_Hu_GII_30266_2009_VNM" : [ - "KC409318" - ], - "Bacillus_phage_WBeta" : [ - "NC_007734" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3727_2007" : [ - "GQ868521" - ], - "Human_immunodeficiency_virus_2__CAM_2" : [ - "HIV2CAM2" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0053" : [ - "KP759721" - ], - "Dengue_virus_3__DENV_3_NI_BID_V2653_2008" : [ - "FJ850048" - ], - "Human_adenovirus_18__D_C" : [ - "GU191019" - ], - "Hepatitis_C_virus_genotype_2_HC_J6CH" : [ - "NC_009823" - ], - "Porcine_circovirus_2_ZM_4" : [ - "JN119257" - ], - "Human_immunodeficiency_virus_1__60000" : [ - "EU861977" - ], - "Tomato_leaf_curl_New_Delhi_virus__ToLCNDV_Spain_Almeria" : [ - "KF891467", - "KF891468" - ], - "Bean_golden_mosaic_virus__BR_Car3_10" : [ - "JN419003" - ], - "Muscovy_duck_circovirus__FJ0701" : [ - "GQ868757" - ], - "Melon_chlorotic_mosaic_virus__VE10_209" : [ - "KF670643", - "KF670642" - ], - "Human_papillomavirus_type_6__PV1499" : [ - "JN252322" - ], - "Squash_leaf_curl_virus__JO3_114" : [ - "KM595199" - ], - "Hepatitis_A_virus__HA_JNG04_90" : [ - "AB279732" - ], - "Rubella_virus_Matsuba_GMK3" : [ - "AB588189" - ], - "Human_metapneumovirus_HMPV_USA_TN_91_316_1991_B" : [ - "KC403971" - ], - "Porcine_circovirus_2__Vos_6630_31_07" : [ - "EU545543" - ], - "West_Nile_virus__WNV_1_US_BID_V4575_2003" : [ - "HM488176" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V303_2003" : [ - "EU256084" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8524_2004" : [ - "KJ627723" - ], - "Hepatitis_B_virus__A5_24063" : [ - "FJ692554" - ], - "Hepatitis_B_virus__H3" : [ - "AY862864" - ], - "Southern_rice_black_streaked_dwarf_virus__YJ_M" : [ - "HQ394211", - "HQ394212" - ], - "Saccharopolyspora_erythraea_NRRL_2338" : [ - "NC_009142" - ], - "Human_immunodeficiency_virus_1__MN" : [ - "AF075719" - ], - "Cucumber_mottle_virus" : [ - "NC_008614" - ], - "Epizootic_hemorrhagic_disease_virus_2__Alberta" : [ - "EHDNS1B" - ], - "Mycobacterium_phage_Myrna" : [ - "NC_011273" - ], - "Human_immunodeficiency_virus_1__97VNHCM301" : [ - "FJ185237" - ], - "Bovine_immunodeficiency_virus" : [ - "NC_001413" - ], - "Dengue_virus_4__DENV_4_CO_BID_V3409_2001" : [ - "GQ868582" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1011_2006" : [ - "EU482455" - ], - "Streptococcus_phage_phi3396" : [ - "NC_009018" - ], - "Hepatitis_B_virus__MGL88F" : [ - "AB270546" - ], - "Beak_and_feather_disease_virus__BFDV_B_D_PL_482_2007" : [ - "JX221026" - ], - "Kudzu_mosaic_virus__Yg3" : [ - "FJ539015", - "FJ539014" - ], - "African_cassava_mosaic_virus__CF_CF78A_07" : [ - "KJ887782" - ], - "Potato_virus_Y_Ordinary_ONGI3" : [ - "AB711151" - ], - "Potato_virus_X__PVX_Gooseberry" : [ - "KM659859" - ], - "Clostridium_phage_phiSM101" : [ - "NC_008265" - ], - "Hepatitis_B_virus__I216" : [ - "FJ562322" - ], - "Thielaviopsis_basicola_mitovirus" : [ - "NC_012585" - ], - "Hepatitis_B_virus__C171" : [ - "EU939667" - ], - "Pea_yellow_stunt_virus__Glinzendorf_Marchfeld_15" : [ - "NC_023297", - "NC_023309", - "NC_023311", - "NC_023303", - "KC979060", - "NC_023296", - "NC_023310", - "NC_023298", - "NC_023308" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ21AL3_2009" : [ - "JF909074" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Okra_India_Ludhiana_OKA4" : [ - "KJ843307" - ], - "Hepatitis_C_virus_subtype_1b_NC1" : [ - "AB691953" - ], - "JC_polyomavirus__326A" : [ - "AY378087" - ], - "Beet_curly_top_Iran_virus__Sh2___Sh2" : [ - "EU273817" - ], - "Hepatitis_B_virus__F001_01" : [ - "AB819065" - ], - "Aedes_aegypti_densovirus_2_0814616" : [ - "NC_012636" - ], - "Dengue_virus_2__MKS_2167" : [ - "KC762674" - ], - "Hepatitis_B_virus__AIDS19" : [ - "JQ801477" - ], - "Hepatitis_B_virus__J21" : [ - "GQ377523" - ], - "Chikungunya_virus_DHS4263_Calif_AB" : [ - "HM045794" - ], - "Human_mastadenovirus_B_Slobitski" : [ - "NC_011202" - ], - "Human_poliovirus_1__RUS39223" : [ - "KC880365" - ], - "BK_polyomavirus__TW_7" : [ - "AB211384" - ], - "Desulfovibrio_magneticus_RS_1" : [ - "NC_012795", - "NC_012796", - "NC_012797" - ], - "Hepatitis_B_virus__IND_2008_4" : [ - "KF214675" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8150_2010" : [ - "KJ627295" - ], - "West_Nile_virus__WNV_1_US_BID_V4106_2005" : [ - "KJ145799" - ], - "African_cassava_mosaic_virus__MG_MG35A1_06" : [ - "KJ887852" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V3796_2008" : [ - "GU131899" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141280" : [ - "KR653276" - ], - "Hepatitis_B_virus__serum_11_93" : [ - "DQ788726" - ], - "Human_immunodeficiency_virus_1__04RU139089" : [ - "AY751407" - ], - "Hepatitis_B_virus__C129" : [ - "EU939665" - ], - "Parrot_hepatitis_B_virus__P1233" : [ - "JX274019" - ], - "Dengue_virus_2__DENV_2_PE_FSL_4862_2010" : [ - "KC294217" - ], - "Avian_adeno_associated_virus__ZN1" : [ - "KF937794" - ], - "Sphaerochaeta_pleomorpha_Grapes" : [ - "NC_016633" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1870_2007" : [ - "FJ461319" - ], - "PRRSV_LV4_2_1_LV4_2_1" : [ - "AY588319" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_98_2012" : [ - "KJ686235" - ], - "Gossypium_punctatum_mild_leaf_curl_virus" : [ - "NC_011805" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3585_2007" : [ - "GU131866" - ], - "Rhinovirus_C__N4" : [ - "GQ223227" - ], - "Duck_circovirus__NN13_2012" : [ - "KC460532" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1855_2007" : [ - "FJ547063" - ], - "Human_poliovirus_1__EGY1218585" : [ - "KJ155499" - ], - "Human_polyomavirus_6__627a" : [ - "HM011563" - ], - "Mycobacterium_phage_Fruitloop" : [ - "NC_011288" - ], - "Hepatitis_B_virus__Vac05_C_m618" : [ - "KJ173390" - ], - "Enterovirus_A71_0964_SYD_98" : [ - "JN992283", - "JN992285" - ], - "Avian_sapelovirus__TW90A" : [ - "NC_006553" - ], - "Hepatitis_B_virus__P42" : [ - "EU859900" - ], - "Tomato_yellow_vein_streak_virus__T06" : [ - "GQ387369" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FLU5625_2007" : [ - "KJ627317" - ], - "Staphylococcus_phage_IME_SA1" : [ - "KP687431" - ], - "Ruminococcus_champanellensis_18P13" : [ - "NC_021039" - ], - "Mycobacterium_phage_Trike" : [ - "NC_026591" - ], - "Cowpox_virus_HumPad07_1" : [ - "KC813496" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD250_2013" : [ - "KM229887" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_81_86" : [ - "DQ989306" - ], - "Bovine_circovirus" : [ - "AF109397" - ], - "White_tailed_deer_coronavirus_US_OH_WD470_1994" : [ - "FJ425187" - ], - "Human_immunodeficiency_virus_1__C_96BW05_02" : [ - "AF110967" - ], - "Human_immunodeficiency_virus_1_98CN009" : [ - "AF286230" - ], - "Tomato_spotted_wilt_virus__TSWV_7" : [ - "KC261958", - "KC261957", - "KC261956" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GBR_2014_Makona_UK1" : [ - "KP120616" - ], - "Porcine_parvovirus_HN_2011" : [ - "JX992846" - ], - "Human_immunodeficiency_virus_1__5157_86" : [ - "AY835756" - ], - "Human_papillomavirus_type_35__IN221713" : [ - "HQ537717" - ], - "Feline_immunodeficiency_virus__SR631B" : [ - "EF455614" - ], - "Bacillus_phage_Waukesha92" : [ - "NC_025424" - ], - "Human_immunodeficiency_virus_1__LTNP" : [ - "JN571034" - ], - "JC_polyomavirus__AN_13" : [ - "AB092587" - ], - "Human_immunodeficiency_virus_1__98CMABB141" : [ - "AY169807" - ], - "Mycobacterium_phage_Drago_Drago" : [ - "NC_023721" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0045" : [ - "KP759714" - ], - "Norovirus_Hu_GII_4_CGMH25_2010_TW" : [ - "JN400623" - ], - "Propionibacterium_phage_Solid" : [ - "NC_027627" - ], - "Dengue_virus_1_KD92_080" : [ - "JN638338" - ], - "Dragonfly_cyclovirus_1__TO_DFpB1_2010" : [ - "JX185419" - ], - "Clostridium_acetobutylicum_ATCC_824" : [ - "NC_003030", - "NC_001988" - ], - "Dengue_virus_1__DENV_1_US_BID_V2097_1986" : [ - "FJ562106" - ], - "Hepatitis_B_virus__blz2113" : [ - "KC774365" - ], - "Squash_leaf_curl_virus__JO3_227" : [ - "KM595209" - ], - "Sweet_potato_leaf_curl_virus___Greece_Crete_638_1_2013" : [ - "KF697070" - ], - "Cyanoramphus_nest_associated_circular_X_DNA_virus__CynNCXV" : [ - "NC_023883" - ], - "Cotia_virus_SPAn232_SPAn232" : [ - "NC_016924" - ], - "Clostridium_botulinum_A2_Kyoto" : [ - "NC_012563" - ], - "Torque_teno_felis_virus__SH_F1" : [ - "HM142588" - ], - "JC_polyomavirus__PE_21" : [ - "AB081027" - ], - "Hepatitis_B_virus__08UC" : [ - "AB493839" - ], - "Verbena_virus_Y__Michigan" : [ - "NC_010735" - ], - "Ageratum_yellow_vein_China_virus____Hn2_19___Hn2_19" : [ - "AJ564744" - ], - "Calicivirus_isolate_TCG__TCG_14" : [ - "NC_006875" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_07HEN" : [ - "FJ393457" - ], - "Hepatitis_B_virus__HBV_Vi29" : [ - "AB073835" - ], - "Feline_coronavirus_UU21_UU21" : [ - "HQ012369" - ], - "Circoviridae_10_LDMD_2013" : [ - "NC_025715" - ], - "Torque_teno_virus__TTV_HD21__rheu111" : [ - "FR751498" - ], - "Human_immunodeficiency_virus_1__04ZAPS216B1" : [ - "DQ093600" - ], - "Macaca_fascicularis_papillomavirus_type_11__Mac1637" : [ - "GQ227670" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9263_2010" : [ - "KJ627309" - ], - "Human_immunodeficiency_virus_1__97ZA009" : [ - "AY118166" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V136_1992" : [ - "EU155335" - ], - "Crimean_Congo_hemorrhagic_fever_virus_10200" : [ - "NC_005302" - ], - "Grapevine_Pinot_gris_virus" : [ - "NC_015782" - ], - "Porcine_parvovirus_5__ND564" : [ - "JX896322" - ], - "Dengue_virus_3__DENV_3_VE_BID_V905_2001" : [ - "EU660420" - ], - "Tembusu_virus_JS_2010" : [ - "JX273153" - ], - "Infectious_bursal_disease_virus_P2_1977__from_Schobries_et_al__1977" : [ - "X84034" - ], - "BK_polyomavirus__SHA_19" : [ - "AB365163" - ], - "Norovirus_Hu_GII_4_Miyazaki6_2008_JP_Hu_GII_4_Miyazaki6_2008_JP" : [ - "AB541297" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7606_2008" : [ - "KJ189337" - ], - "SFTS_virus_HNXY_278_HNXY_278" : [ - "KC292295", - "KC292322", - "KC292348" - ], - "Apple_green_crinkle_associated_virus__Aurora_1" : [ - "NC_018714" - ], - "Acinetobacter_phage_ZZ1" : [ - "NC_018087" - ], - "Buchnera_aphidicola__Cinara_tujafilina" : [ - "NC_015662" - ], - "Human_endogenous_retrovirus_K113" : [ - "NC_022518" - ], - "Cactus_virus_X" : [ - "NC_002815" - ], - "Hepatitis_A_virus__PN_IND" : [ - "EU011791" - ], - "Honeysuckle_yellow_vein_betasatellite" : [ - "AJ543430", - "NC_005052" - ], - "Human_immunodeficiency_virus_1__99ZALT45" : [ - "EU293449" - ], - "alpha_proteobacterium_HIMB5" : [ - "NC_018643" - ], - "Streptococcus_agalactiae_A909" : [ - "NC_007432" - ], - "Hepatitis_B_virus__C164" : [ - "EU939598" - ], - "Hepatitis_B_virus__H138" : [ - "FJ349219" - ], - "South_African_cassava_mosaic_virus__MG_MG593A1_11" : [ - "KJ887737" - ], - "Dengue_virus_2__3311_BR_PE_95" : [ - "JX669481" - ], - "Cucumber_mosaic_virus__CMV_D8" : [ - "AB179764", - "AB179765" - ], - "Mopeia_virus_AN20410_AN20410" : [ - "NC_006575", - "NC_006574" - ], - "Prochlorococcus_phage_P_SSM5_P_SSM5" : [ - "HQ632825" - ], - "Tomato_severe_rugose_virus__BR_Vic12_09" : [ - "JX865626" - ], - "BK_polyomavirus_MON_1" : [ - "AB269846" - ], - "Hepatitis_B_virus__I_T34" : [ - "GU456651" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3673_2007" : [ - "GU131964" - ], - "Cucumber_mosaic_virus__CMV_MT" : [ - "AB189917" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1954_2008" : [ - "FJ410272" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2788_2007" : [ - "GQ199808" - ], - "Lettuce_mosaic_virus_E" : [ - "NC_003605" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9521_2013" : [ - "KJ643568" - ], - "Chaoyang_virus__HLD115" : [ - "NC_017086" - ], - "Acheta_domestica_densovirus__SgCa12" : [ - "KF015280" - ], - "JC_polyomavirus__IN_7" : [ - "AB126991" - ], - "West_Nile_virus__WNV_1_US_BID_V6496_2001" : [ - "KJ501486" - ], - "Hepatitis_B_virus__CX028M_e245n" : [ - "KJ173288" - ], - "Turnip_mosaic_virus__NSW1" : [ - "KJ936087" - ], - "Hepatitis_B_virus__CM4" : [ - "KM359442" - ], - "Periplaneta_fuliginosa_densovirus" : [ - "NC_000936" - ], - "Chickpea_chlorosis_virus_E__3459L" : [ - "KC172696" - ], - "West_Nile_virus__WNV_1_US_BID_V4215_2004" : [ - "HM488143" - ], - "Human_immunodeficiency_virus_1__CH042_TF" : [ - "KC156123" - ], - "Measles_virus_strain_Edmonston_Zagreb__EZD22" : [ - "AY486083" - ], - "Hepatitis_delta_virus__IR_1" : [ - "AY633627" - ], - "Tomato_leaf_curl_Sulawesi_virus__FI013No1_2" : [ - "FJ237619" - ], - "Tomato_leaf_curl_Palampur_virus__Varanasi" : [ - "FJ931537" - ], - "Human_adenovirus_23__Aids32_Manchester_1993" : [ - "KF279629" - ], - "Hepatitis_B_virus__Ran33" : [ - "EF103277" - ], - "Mungbean_yellow_mosaic_India_virus_Indonesia__Rembang" : [ - "JN368445", - "JN368437" - ], - "Barley_mild_mosaic_virus_common_UK_F" : [ - "NC_003483", - "NC_003482" - ], - "Bovine_herpesvirus_type_1_2_strain_SP1777_SP1777" : [ - "KM258883" - ], - "Hepatitis_B_virus__cxa1062" : [ - "KC774283" - ], - "Dragonfly_larvae_associated_circular_virus_5__DflaCV_5_NZ_PG7_LS" : [ - "KF738879" - ], - "Wheat_streak_mosaic_virus__H95S" : [ - "AF511614" - ], - "Hepatitis_B_virus__NIR_4" : [ - "KM577666" - ], - "Staphylococcus_phage_phiETA" : [ - "NC_003288" - ], - "Human_adenovirus_64_3" : [ - "JQ326207" - ], - "Norovirus_Hu_GII_4_Nagano1_2007_JP_Hu_GII_4_Nagano1_2007_JP" : [ - "AB541301" - ], - "Mycobacterium_phage_Soto" : [ - "NC_025438" - ], - "Hepatitis_B_virus__CHI9" : [ - "FJ709465" - ], - "Vesicular_stomatitis_Alagoas_virus__Indiana_3" : [ - "NC_025353" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO17AL2_2009" : [ - "JF909142" - ], - "Cowpox_virus_MonKre08_4" : [ - "KC813500" - ], - "Human_immunodeficiency_virus_1__260_50" : [ - "KP718936" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1883_2007" : [ - "FJ547065" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V507_2001" : [ - "EU595697" - ], - "SARS_coronavirus_Sin3408" : [ - "AY559083" - ], - "Cotton_leaf_curl_Multan_betasatellite__FG" : [ - "HQ455354" - ], - "Hepatitis_B_virus__C141" : [ - "EU939592" - ], - "Human_herpesvirus_5_BE_26_2011" : [ - "KP745703" - ], - "Chicken_picornavirus_5__27C" : [ - "NC_024769" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXM60" : [ - "GQ499195" - ], - "Hepatitis_B_virus_1263_17" : [ - "KR014025" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5452_2009" : [ - "JF920394" - ], - "Hepatitis_B_virus__PG_86" : [ - "KF471640" - ], - "Cucurbit_chlorotic_yellows_virus__Beijing" : [ - "JQ904629", - "JQ904628" - ], - "Bean_golden_mosaic_virus__BR_Vis8_11" : [ - "KJ939730" - ], - "Halovirus_HRTV_5" : [ - "NC_021320" - ], - "Macrobrachium_rosenbergii_Taihu_virus_cn_taihu100401" : [ - "NC_018570" - ], - "Arabis_mosaic_virus__Lv" : [ - "EU617326", - "EU617327" - ], - "Hepatitis_B_virus_1385_9" : [ - "KR013862" - ], - "Human_immunodeficiency_virus_1__CH80" : [ - "FJ358521" - ], - "Porcine_circovirus_2_10JS" : [ - "HQ395057" - ], - "Usutu_virus_V41" : [ - "KJ438743" - ], - "Dengue_virus_4__DENV_4_US_BID_V2448_1999" : [ - "FJ882601" - ], - "Chlamydia_trachomatis_L2b_Ams2" : [ - "NC_020948", - "NC_020934" - ], - "Barley_yellow_dwarf_virus_GAV__05YL6" : [ - "EU402386" - ], - "Tomato_leaf_deformation_virus__PA98_2_TM8" : [ - "JX501507" - ], - "Wheat_dwarf_virus__Enkoping2" : [ - "AM491490" - ], - "Southern_rice_black_streaked_dwarf_virus__HuNyy" : [ - "JQ034352", - "JQ034356", - "JQ034348", - "JQ034351", - "JQ034357", - "JQ034355", - "JQ034354", - "JQ034349", - "JQ034353", - "JQ034350" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3955_2008" : [ - "JF937606" - ], - "Tacaribe_mammarenavirus__Florida" : [ - "KF923400", - "KF923401" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD169_2013" : [ - "KM229831" - ], - "Human_herpesvirus_5_BE_2_2010" : [ - "KP745717" - ], - "Merkel_cell_polyomavirus__915F_06_007_FD3" : [ - "JQ479319" - ], - "South_African_cassava_mosaic_virus__MG_MG129A4_09" : [ - "KJ887922" - ], - "Porcine_parvovirus__HN_K" : [ - "KF429255" - ], - "Wheat_dwarf_virus__SXHC07_31" : [ - "KJ536115" - ], - "Hepatitis_B_virus__LDA386" : [ - "KF849722" - ], - "Norovirus_Hu_GI_1_8CKIIIc_1974_USA_Hu_GI_1_8CKIIIc_1974_USA" : [ - "KF429773" - ], - "Squirrel_monkey_foamy_virus_ATCC_VR_643_1224" : [ - "GU356394" - ], - "Chicken_anemia_virus" : [ - "NC_001427", - "AF475908" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V182_1990" : [ - "EU234064" - ], - "Tomato_leaf_curl_Vietnam_virus_satellite_DNA_beta_VR2__Vien_Rau_Qua__VR2" : [ - "EU189147" - ], - "Dengue_virus_1__DENV_1_VN_BID_V989_2006" : [ - "EU482533" - ], - "JC_polyomavirus__CN_1" : [ - "AB081007" - ], - "Mengo_virus_medium_plague_M" : [ - "MNGPOLY" - ], - "Dengue_virus_3__DENV_3_VE_BID_V911_2001" : [ - "EU529691" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2011_030311_1" : [ - "KC862577" - ], - "Hepatitis_delta_virus__D15" : [ - "KJ744230" - ], - "Hepatitis_B_virus__11_D1_5_11" : [ - "GU815656" - ], - "Monkeypox_virus__DRC_06_1070" : [ - "JX878410" - ], - "Porcine_kobuvirus_JS_01_CHN_2013_China_JS_01_CHN_2013_China" : [ - "KP144318" - ], - "Citrus_tristeza_virus__T36" : [ - "AY170468" - ], - "Human_papillomavirus_type_52__Qv32479" : [ - "HQ537734" - ], - "Streptococcus_suis_D9" : [ - "NC_017620" - ], - "Hepatitis_B_virus_1368_48" : [ - "KR014053" - ], - "Marinitoga_piezophila_KA3" : [ - "NC_016751", - "NC_016748" - ], - "Newcastle_disease_virus_mallard_US_OH__86_233_1986" : [ - "GQ288380" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3713_3" : [ - "KM233051" - ], - "Hepatitis_B_virus__D106" : [ - "EU939678" - ], - "Porcine_epidemic_diarrhea_virus_USA_Missouri92_2013" : [ - "KJ645684" - ], - "Tomato_leaf_curl_Taiwan_virus__H9_1" : [ - "GU723725" - ], - "Ralstonia_phage_p12J" : [ - "NC_005131" - ], - "Human_poliovirus_1_NIE1118369" : [ - "KJ170447" - ], - "Tobacco_mosaic_virus__Fumeng" : [ - "HE818416" - ], - "Lily_symptomless_virus_LSV_DL" : [ - "HM222522" - ], - "Dengue_virus_3__DENV_3_GD_BID_V3930_2002" : [ - "KF955505" - ], - "Mesorhizobium_ciceri_biovar_biserrulae_WSM1271" : [ - "NC_014923", - "NC_014918" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3735_2007" : [ - "GQ868526" - ], - "Human_immunodeficiency_virus_1__D_ZA_86_R482" : [ - "AY773341" - ], - "Potato_virus_Y__M3" : [ - "KF850513" - ], - "Small_begomovirus_associated_satellite__Sa20_S218" : [ - "KJ859145" - ], - "Cache_Valley_virus" : [ - "X73465" - ], - "Taro_bacilliform_CH_virus__TaBCHV_2" : [ - "KP710177" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V411_2003" : [ - "EU155311" - ], - "Merremia_mosaic_Puerto_Rico_virus_PR89" : [ - "NC_015490", - "NC_015491" - ], - "Hepatitis_B_virus__D146_1" : [ - "FJ899792" - ], - "BK_polyomavirus__ETH_4" : [ - "AB263917" - ], - "Maize_streak_virus__MSV_SBoo" : [ - "EU152258" - ], - "Spiroplasma_chrysopicola_DF_1" : [ - "NC_021280" - ], - "Vibrio_phage_VPMS1" : [ - "NC_021776" - ], - "Hepatitis_C_virus_LTD3_2_XF223" : [ - "AF511949" - ], - "Macroptilium_yellow_spot_virus__BR_Sti9_11" : [ - "KJ939867" - ], - "Tomato_yellow_leaf_curl_virus__8_4_2004" : [ - "DQ144621" - ], - "Human_parainfluenza_virus_3__VIROAF11" : [ - "KM190938" - ], - "Lumpy_skin_disease_virus__Neethling_vaccine_LW_1959" : [ - "AF409138" - ], - "Hepatitis_B_virus__G1_8" : [ - "GU815758" - ], - "Human_adenovirus_37__1991" : [ - "AB448776" - ], - "Streptococcus_pyogenes_A20" : [ - "NC_018936" - ], - "Human_poliovirus_3_NIE1018504" : [ - "KJ170598" - ], - "Enterobacter_asburiae_LF7a" : [ - "NC_015963", - "NC_015968", - "NC_015969" - ], - "Thiomonas_intermedia_K12" : [ - "NC_014155", - "NC_014153", - "NC_014154" - ], - "Zucchini_yellow_mosaic_virus__ZYMV_PA_2006" : [ - "JQ716413" - ], - "Japanese_encephalitis_virus__057434" : [ - "EF623988" - ], - "Cucumber_mosaic_virus_satellite_RNA_T59" : [ - "X86423" - ], - "Encephalomyocarditis_virus_ATCC_VR_129B" : [ - "KM269482" - ], - "Newcastle_disease_virus__I_2progenitor" : [ - "AY935500" - ], - "Phlebovirus_JS2010_018_JS2010_018" : [ - "JQ317176", - "JQ317175", - "JQ317177" - ], - "Porcine_circovirus_2_09GDLB" : [ - "HQ395027" - ], - "Porcine_circovirus_2__k43C" : [ - "DQ629118" - ], - "West_Nile_virus__WNV_1_US_BID_V6634_2002" : [ - "KJ501383" - ], - "Human_immunodeficiency_virus_1__97CDKP58e" : [ - "AF316544" - ], - "Human_immunodeficiency_virus_1__HP_9_03KDE11" : [ - "JQ316128" - ], - "Dengue_virus_1__MKS_2216" : [ - "KC762633" - ], - "Human_immunodeficiency_virus_1__A027" : [ - "AF332867" - ], - "Cucumber_mosaic_virus_satellite_RNA__P1_1" : [ - "AJ457163" - ], - "Bacillus_licheniformis_ATCC_14580" : [ - "NC_006270" - ], - "Maize_streak_virus__MSV_A_NG_Iba1_N4_2006" : [ - "HQ693375" - ], - "Hepatitis_C_virus__QC302" : [ - "JF735118" - ], - "Wheat_dwarf_virus__SXTY10_32" : [ - "JQ647503" - ], - "Crimean_Congo_hemorrhagic_fever_virus__SPU_18_88" : [ - "KJ682818", - "KJ682810", - "KJ682803" - ], - "Human_immunodeficiency_virus_1__04ZAPS165MB1" : [ - "DQ351221" - ], - "Rabies_virus_H_1413_09" : [ - "AB635373" - ], - "Mus_dunni_endogenous_virus" : [ - "AF053745" - ], - "Hepatitis_B_virus_99_27" : [ - "KR013884" - ], - "Hepatitis_B_virus__B3_8" : [ - "GU815613", - "HQ231883" - ], - "JC_polyomavirus__MT_15" : [ - "AB077857" - ], - "Porcine_circovirus_2_No_33" : [ - "AB072301" - ], - "Bovine_viral_diarrhea_virus_VEDEVAC_VEDEVAC" : [ - "AJ585412" - ], - "Gluconobacter_oxydans_621H" : [ - "NC_006675", - "NC_006673", - "NC_006677", - "NC_006672", - "NC_006674", - "NC_006676" - ], - "Human_mastadenovirus_D_human_USA_UFL_Adv22_2005_53_P53_H53_F53" : [ - "KF268197" - ], - "JC_polyomavirus__Luz_5" : [ - "AB113136" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_249_2011" : [ - "KJ686143" - ], - "Torque_teno_sus_virus_1a__PTTV1b_VA" : [ - "GU456384" - ], - "Myxoma_virus_Aust_OB3_Hall_2_96" : [ - "KC660082" - ], - "Bhendi_yellow_vein_betasatellite__Muthuppatti" : [ - "NC_003405" - ], - "Hepatitis_B_virus__AIDS39" : [ - "JQ801492" - ], - "Hepatitis_B_virus__M87" : [ - "GQ924650" - ], - "Hepatitis_B_virus__025_EA_Yir" : [ - "KF873520" - ], - "BK_polyomavirus__MT_clone_108" : [ - "AB485711" - ], - "Dragonfly_associated_circular_virus_1__FL1_2X_2010" : [ - "NC_023872" - ], - "Grapevine_leafroll_associated_virus_3__WA_MR" : [ - "GU983863" - ], - "Tick_borne_encephalitis_virus_Vlasaty" : [ - "KJ922516" - ], - "Duck_hepatitis_A_virus_1_FFZ05" : [ - "FJ496340" - ], - "BK_polyomavirus__KOM_6" : [ - "AB211375" - ], - "Dengue_virus_3_D3_SG_05K4647DK1_2005" : [ - "EU081224" - ], - "Soybean_chlorotic_spot_virus__BR_Flt16_11" : [ - "KJ939918" - ], - "Hepatitis_B_virus__J105" : [ - "GQ377569" - ], - "Hepatitis_B_virus__Leb12" : [ - "JN642129" - ], - "Foot_and_mouth_disease_virus___type_A_A10_Holland_a10holland_iso82" : [ - "AY593751" - ], - "Mycobacterium_canettii_CIPT_140070008" : [ - "NC_019965" - ], - "Zymomonas_mobilis_ZM4" : [ - "NC_006526" - ], - "Human_papillomavirus_type_18__Qv16306" : [ - "EF202146" - ], - "Human_mastadenovirus_D_human_USA_Pitts_00131_1992_8_P8H8F8" : [ - "KF429749" - ], - "West_Nile_virus__WNV_1_US_BID_V6396_2001" : [ - "KJ501278" - ], - "Olive_viral_satellite_RNA__Caltabellotta1" : [ - "NC_022962" - ], - "Stork_hepatitis_B_virus__STHBV_1" : [ - "AJ251934" - ], - "Hepatitis_delta_virus__D37_B" : [ - "KJ744244" - ], - "Bean_common_mosaic_virus__HZZB007" : [ - "KJ807814" - ], - "Hepatitis_B_virus__P118" : [ - "GQ477457" - ], - "Hepatitis_B_virus__MLT0796" : [ - "KF779294" - ], - "Hepatitis_B_virus__SHB721" : [ - "KJ598753" - ], - "Porcine_circovirus_2_SC07" : [ - "FJ608538" - ], - "Marburg_marburgvirus_Uganda_188Bat2007_811275" : [ - "FJ750955" - ], - "Hepatitis_B_virus__BR3_NORTHEAST" : [ - "KC494403" - ], - "Hepatitis_B_virus__patient1" : [ - "AB300359" - ], - "Hepatitis_delta_virus_dFr2544_dFr2544" : [ - "AM779576" - ], - "West_Nile_virus__WNV_1_US_BID_V6700_2006" : [ - "KJ501428" - ], - "Human_immunodeficiency_virus_1__1130_39" : [ - "KP718917" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_H_sapiens_VEN_INH_9813_1995_IC" : [ - "KP282671" - ], - "Hepatitis_B_virus__bww1121" : [ - "KC774389" - ], - "West_Nile_virus__WNV_USA_BID_G15508" : [ - "JX503099" - ], - "Potato_virus_Y__IUNG_2" : [ - "JF927750" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_3133WC_2009_G12P_4" : [ - "HQ657144", - "HQ657147", - "HQ657151", - "HQ657145", - "HQ657149", - "HQ657153", - "HQ657150", - "HQ657146", - "HQ657148", - "HQ657154", - "HQ657152" - ], - "Hepatitis_B_virus__Cuba9" : [ - "KM606744" - ], - "Dengue_virus_3__KDH0010A" : [ - "HG316483" - ], - "Infectious_bursal_disease_virus_B_SD_LY" : [ - "GQ166970" - ], - "Human_immunodeficiency_virus_1__06KECst_009" : [ - "FJ623480" - ], - "Sphingobium_SYK_6" : [ - "NC_015974", - "NC_015976" - ], - "Norovirus_Hu_GII_4_Beecroft_NSW305P_2009_AUS_Hu_GII_4_NSW305P_2009_AU" : [ - "HM748971" - ], - "Cucumber_mosaic_virus_satellite_RNA_NG71" : [ - "X86424" - ], - "Hepatitis_C_virus_subtype_1a__03_51" : [ - "EU781774" - ], - "Human_poliovirus_1_NIE0918388" : [ - "KJ170502" - ], - "Tomato_yellow_leaf_curl_virus__Tochigi" : [ - "AB439841" - ], - "Enterobacteria_phage_phiX174__SC2" : [ - "AF176029" - ], - "Human_immunodeficiency_virus_1__WITO_flE3" : [ - "FJ496180" - ], - "Rubella_virus_Wistar_RA_27_3" : [ - "FJ211587", - "FJ211588" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1572_2007" : [ - "FJ024432" - ], - "Human_papillomavirus_type_11__LP13" : [ - "FN907964" - ], - "Human_papillomavirus_type_35__Rw128" : [ - "HQ537727" - ], - "Candidatus_Korarchaeum_cryptofilum_OPF8" : [ - "NC_010482" - ], - "SARS_coronavirus_TWC" : [ - "AY321118" - ], - "Canine_circovirus__UCD2_32162" : [ - "KC241984" - ], - "Simian_immunodeficiency_virus_SIVmac239_93057" : [ - "AY611492" - ], - "Norovirus_Hu_GII_4_Osaka6_2008_JP_Hu_GII_4_Osaka6_2008_JP" : [ - "AB541329" - ], - "Myxoma_virus_Aust_OB3_Hall_2_94" : [ - "KC660083" - ], - "Pyrobaculum_1860" : [ - "NC_016645" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT69B17_2008" : [ - "JF909199" - ], - "Lactococcus_Phage_ASCC460" : [ - "JQ740803" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US94" : [ - "KJ019130" - ], - "Rift_Valley_fever_virus_SA_51__Van_Wyck" : [ - "DQ380195", - "DQ375433", - "DQ380158" - ], - "Porcine_circovirus_2_FJNP0512" : [ - "GU247992" - ], - "Cereal_yellow_dwarf_virus_RPV__005RPV" : [ - "EF521827" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3850_2008" : [ - "GU131686" - ], - "Pepino_mosaic_virus_Ch2_SAR01" : [ - "HQ663893" - ], - "Norovirus_Hu_GII_4_Jingzhou_2013403_CHN_Hu_GII_4_Jingzhou_2013403_CHN" : [ - "KF306214" - ], - "Staphylococcus_aureus_ST228_15532" : [ - "NC_020565", - "NC_020532" - ], - "Porcine_circovirus_2__PMWS_PCV_P2" : [ - "AY099496" - ], - "Dengue_virus_1__HNRG13188" : [ - "KC692500" - ], - "Dengue_virus_1__DH_S1_05_04" : [ - "JN697056" - ], - "Pennisetum_mosaic_virus__CD5" : [ - "JX070153" - ], - "Peste_des_petits_ruminants_virus__SnDk11I13" : [ - "KM212177" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3907_2008" : [ - "GU131728" - ], - "Hepatitis_B_virus_FMU011" : [ - "AY206382" - ], - "Foot_and_mouth_disease_virus___type_O__BAN_NA_Ha_156_2013" : [ - "KF985189" - ], - "Tomato_severe_rugose_virus__BR_Car227_08" : [ - "KC004081" - ], - "Chiltepin_yellow_mosaic_virus__20_8" : [ - "FN563124" - ], - "Urochloa_streak_virus__USV_NIwo" : [ - "EU445693" - ], - "Maize_streak_virus__MSV_A_CM_Yau_M12_1998" : [ - "HQ693328" - ], - "Maize_streak_virus___A_KA__MSV_A_MSV_MtKA" : [ - "AF329885" - ], - "East_African_cassava_mosaic_virus_KE2__EACMV_KE2_K27" : [ - "AJ704951", - "AJ717537" - ], - "Bacillus_anthracis_CDC_684" : [ - "NC_012581", - "NC_012577", - "NC_012579" - ], - "Dengue_virus_2_DR23_01" : [ - "AB122020" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1665_2007" : [ - "FJ024451" - ], - "Dengue_virus_2__DC766Y12" : [ - "KM279563" - ], - "Hepatitis_A_virus__IND_HAV_95F" : [ - "FJ360733" - ], - "Hepatitis_B_virus__GU1021" : [ - "GQ161813" - ], - "Coxsackievirus_A6__4645_SH_CHN_2012" : [ - "KJ541157" - ], - "Hepatitis_B_virus__A1_8" : [ - "GU815555" - ], - "Bluetongue_virus_5011_60E" : [ - "GQ506526", - "GQ506533", - "GQ506527", - "GQ506534", - "GQ506535", - "GQ506532", - "GQ506529", - "GQ506530", - "GQ506531", - "GQ506528" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_375_2012" : [ - "KP308440" - ], - "Hepatitis_B_virus_GIII_17" : [ - "AY781182" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7613_2009" : [ - "KJ189344" - ], - "Human_poliovirus_1_NIE1118370" : [ - "KJ170521" - ], - "Coastal_Plains_virus_DPP53" : [ - "NC_025397" - ], - "Macroptilium_yellow_spot_virus__BR_Sti8_11" : [ - "KJ939866" - ], - "West_Nile_virus__WNV_1_US_BID_V4214_2004" : [ - "HM488142" - ], - "Human_coronavirus_NL63_NL63_human_USA_905_25_1990" : [ - "KF530113" - ], - "Potato_virus_Y__IUNG_5" : [ - "JF927753" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5119_1" : [ - "KR105300" - ], - "Xanthomonas_campestris_raphani_756C" : [ - "NC_017271" - ], - "Dengue_virus_3__DENV_3_US_BID_V1452_1999" : [ - "EU781137" - ], - "SARS_coronavirus_Sin2748__SIN2748" : [ - "AY283797" - ], - "Drosophila_subobscura_Nora_virus" : [ - "NC_024487" - ], - "Hepatitis_B_virus__D_NZL_TA229_1984" : [ - "HQ700484" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140174" : [ - "KR653294" - ], - "Wheat_dwarf_virus__NXYC07_5" : [ - "KJ536099" - ], - "Human_calicivirus_strain_Mc37_Mc37" : [ - "AY237415" - ], - "Foot_and_mouth_disease_virus___type_O_O5_India_o5india_iso34" : [ - "AY593828" - ], - "West_Nile_virus_LSU_AR01" : [ - "FJ527738" - ], - "Porcine_circovirus_2__SDld03" : [ - "JF272499" - ], - "Rahnella_aquatilis_CIP_78_65___ATCC_33071" : [ - "NC_017092", - "NC_016818", - "NC_016835", - "NC_016819" - ], - "Human_immunodeficiency_virus_1__DR0492" : [ - "AB253682", - "AB253423", - "AB253688", - "AB253691", - "AB253683", - "AB253684", - "AB253687", - "AB253689", - "AB253686", - "AB253685", - "AB253690", - "AB253681" - ], - "Salmonella_phage_SS3e" : [ - "NC_006940" - ], - "JC_polyomavirus__JCV183FLC_17" : [ - "JF425504" - ], - "West_Nile_virus__AVA1202606" : [ - "KC736488" - ], - "Sulfolobus_spindle_shaped_virus_2" : [ - "NC_005265" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4190_1" : [ - "KR105216" - ], - "Echovirus_E6_Echo6_Hokkaido_JPN_19724_2011" : [ - "AB705311" - ], - "Hardenbergia_mosaic_virus__HarMV_57_1" : [ - "HQ161080" - ], - "Grapevine_berry_inner_necrosis_virus" : [ - "NC_015220" - ], - "Hepatitis_A_virus__JemberA07_SBY07" : [ - "AB839693" - ], - "Human_immunodeficiency_virus_1__J11223" : [ - "EU697904" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c1_1P20_2010_c1_1P20" : [ - "KF514399" - ], - "Japanese_encephalitis_virus_CJN_L1" : [ - "AY303794" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V421_2005" : [ - "EU155318" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2798_2007" : [ - "GQ199817" - ], - "Human_respiratory_syncytial_virus__09_000457" : [ - "JX015481" - ], - "Potato_virus_A__Her" : [ - "AJ131400" - ], - "Rift_Valley_fever_virus_Sudan_86_2010" : [ - "JQ820484", - "JQ820489", - "JQ820477" - ], - "Hepatitis_B_virus__V129" : [ - "HM363584" - ], - "Dolphin_polyomavirus_1__DPyV_1_Trachea_2010" : [ - "NC_025899" - ], - "Japanese_encephalitis_virus_NJ_2008" : [ - "GQ918133" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Henan_A4" : [ - "KJ534539" - ], - "Sacbrood_virus_II_9" : [ - "JX270800" - ], - "Human_coronavirus_NL63_Amsterdam_I" : [ - "NC_005831" - ], - "Hepatitis_B_virus__HK454" : [ - "DQ089760" - ], - "Hepatitis_B_virus__F2_2" : [ - "GU815727" - ], - "Tomato_leaf_curl_Taiwan_virus__H4_2" : [ - "GU723726" - ], - "Hepatitis_B_virus__ECO51212CWP6" : [ - "JQ664507" - ], - "North_American_arenavirus_AV_D1240007" : [ - "EU123329" - ], - "Human_immunodeficiency_virus_1__JRC65B" : [ - "AB565502", - "AB565501" - ], - "Foot_and_mouth_disease_virus___type_O_China_1_99_Tibet" : [ - "AF506822" - ], - "Chlamydia_trachomatis_G_SotonG1" : [ - "NC_020961", - "NC_020941" - ], - "East_African_cassava_mosaic_virus__EACMV__K322" : [ - "AJ717556" - ], - "Alteromonas_macleodii__English_Channel_615" : [ - "NC_021709", - "NC_021716" - ], - "Canine_distemper_virus_5804" : [ - "AY386315" - ], - "Hepatitis_E_virus__HEV_RKI" : [ - "FJ956757" - ], - "Cylindrospermum_stagnale_PCC_7417" : [ - "NC_019757", - "NC_020050", - "NC_019758", - "NC_019744" - ], - "Hepatitis_B_virus__B30a" : [ - "FJ904437" - ], - "Human_immunodeficiency_virus_1__DR6190" : [ - "AB480300", - "AB480301" - ], - "Ryegrass_mosaic_virus__Denmark" : [ - "KR061300" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7340_2002" : [ - "KF973324" - ], - "Tomato_yellow_leaf_curl_Thailand_virus_Sakon_Nakhon" : [ - "AY514635", - "AY514632" - ], - "Maize_streak_virus__MSV_A_ZA_Blu2_Ta29_2008" : [ - "HQ693401" - ], - "Ureaplasma_parvum_serovar_3_ATCC_700970" : [ - "NC_002162" - ], - "Citrobacter_phage_Miller" : [ - "NC_025414" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V98_2004" : [ - "EU256037" - ], - "Hepatitis_delta_virus__D9_A" : [ - "KJ744225" - ], - "Cellulophaga_phage_phi12a_1_phi12a_1" : [ - "NC_021805" - ], - "Human_immunodeficiency_virus_1__SE6165" : [ - "AF061642" - ], - "Usutu_virus_V36" : [ - "KJ438726" - ], - "Rabbit_hemorrhagic_disease_virus_RHDV_Ramsay_Island" : [ - "EF363035" - ], - "Candidatus_Saccharobacterium_alaburgensis" : [ - "NC_021219" - ], - "Tobacco_rattle_virus_SYM_SYM" : [ - "FR854197" - ], - "Vibrio_phage_ICP2_2013_A_Haiti" : [ - "NC_024791" - ], - "Human_papillomavirus_type_6__123" : [ - "HG793931" - ], - "Rotavirus_A_RVA_Human_wt_COD_KisB565_2010_G8P_6" : [ - "KJ870882", - "KJ870879", - "KJ870883", - "KJ870885", - "KJ870880", - "KJ870886", - "KJ870887", - "KJ870881", - "KJ870878" - ], - "Hepatitis_B_virus_HB246" : [ - "HM011471" - ], - "Lactobacillus_reuteri_I5007" : [ - "NC_021497", - "NC_021494", - "NC_021496", - "NC_021504", - "NC_021498", - "NC_021495", - "NC_021503" - ], - "Coxsackievirus_A17_G12" : [ - "AF499639" - ], - "Simian_enterovirus_46_RNM5" : [ - "EF667343" - ], - "Rinderpest_virus_LA96" : [ - "JN234010" - ], - "Bacillus_anthracis__Ames_Ancestor" : [ - "NC_007322", - "NC_007323", - "NC_007530" - ], - "Tomato_yellow_leaf_curl_virus__KYCTo18" : [ - "JX456639" - ], - "Rice_yellow_mottle_virus__Tz202" : [ - "AM883057" - ], - "Soybean_mosaic_virus__HGT009" : [ - "KP710864" - ], - "Flavobacterium_johnsoniae_UW101" : [ - "NC_009441" - ], - "La_Crosse_virus_LACV_human_1978" : [ - "EF485033", - "EF485035", - "EF485034" - ], - "Human_immunodeficiency_virus_1__CH58E_flC5" : [ - "FJ495943" - ], - "Bean_golden_mosaic_virus__BR_Ata1_05" : [ - "KJ939719" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_216_2011" : [ - "KJ686304" - ], - "Hepatitis_B_virus__No15" : [ - "AB697498" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Po_Okra4" : [ - "FN554534" - ], - "Porcine_circovirus_2__AUT5" : [ - "AY424405" - ], - "Human_bocavirus__2012GZ1185" : [ - "KJ684070" - ], - "Mycobacterium_phage_Quink" : [ - "NC_022330" - ], - "Human_immunodeficiency_virus_1__ES_P2021_3__B" : [ - "FJ853620" - ], - "Hepatitis_B_virus_FMU008" : [ - "AY206379" - ], - "Human_parainfluenza_virus_3_HPIV3_FRA_27045070_2007" : [ - "KF687350" - ], - "Dengue_virus_2__DENV_2_VN_BID_V716_2006" : [ - "EU482653" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota76_2013" : [ - "KJ645671" - ], - "Hepatitis_B_virus__LT9" : [ - "DQ486024" - ], - "Tomato_leaf_curl_New_Delhi_virus____Potato___Meerut" : [ - "EF043231", - "EF043232" - ], - "Cymbidium_mosaic_virus_Taiwan" : [ - "AY571289" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V188_1991" : [ - "EU255978" - ], - "Rotavirus_A_RVA_Human_wt_AUS_CK00069_2007_G1P_8" : [ - "KC769404", - "KC769405" - ], - "Potato_yellow_vein_virus" : [ - "NC_006062", - "NC_006063", - "NC_006061" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD262_2014" : [ - "KM229778" - ], - "Hepatitis_B_virus_MEXICO32" : [ - "AB375161" - ], - "Porcine_circovirus_2_SXXYA_02" : [ - "KC800637" - ], - "Poinsettia_mosaic_virus" : [ - "NC_002164" - ], - "Jaagsiekte_sheep_retrovirus__sheep_C1_China_2013_G1" : [ - "KP691837" - ], - "Clostridium_botulinum_A_ATCC_19397" : [ - "NC_009697" - ], - "African_cassava_mosaic_virus__S5J3" : [ - "JN053429" - ], - "Ross_s_goose_hepatitis_B_virus" : [ - "NC_005888", - "AY494849", - "AY494848" - ], - "Porcine_circovirus_2_FMV05_7386" : [ - "DQ220732" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3745_2008" : [ - "GU131982" - ], - "Bovine_leukemia_virus" : [ - "AB934282", - "BLVCG", - "NC_001414", - "AB934283", - "EF600696" - ], - "Squash_leaf_curl_China_virus____Pumpkin_Varanasi___Varanasi" : [ - "EU573715" - ], - "Human_immunodeficiency_virus_1__03ZAPS030MB1" : [ - "DQ369996" - ], - "Norovirus_Hu_GII_4_Saga4_2007_JP_Hu_GII_4_Saga4_2007_JP" : [ - "AB541335" - ], - "Torque_teno_sus_virus_1b__TTV2Bj6_2" : [ - "HM633217" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c5_6P20_2010_c5_6P20" : [ - "KF514402" - ], - "Simian_adenovirus_A1173_A1173" : [ - "JN880450" - ], - "Tomato_leaf_curl_Taiwan_virus__J1_8" : [ - "GU723712" - ], - "Tomato_leaf_curl_New_Delhi_virus___Bitter_Gourd" : [ - "DQ020490" - ], - "African_cassava_mosaic_virus__CF_CF21AB_07" : [ - "KJ887766" - ], - "Aciduliprofundum_boonei_T469" : [ - "NC_013926" - ], - "Hepatitis_B_virus_99_44" : [ - "KR013891" - ], - "Soybean_chlorotic_blotch_virus__Sb19" : [ - "NC_014141", - "NC_014142" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0090" : [ - "KP759649" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_20" : [ - "EU384622" - ], - "Porcine_circovirus_2__IAF_614" : [ - "AF118095" - ], - "Human_immunodeficiency_virus_1__04ZASK131B1" : [ - "DQ056412" - ], - "O_nyong_nyong_virus_SG650" : [ - "AF079456" - ], - "West_Nile_virus__WNV_1_US_BID_V7281_2012" : [ - "KJ501530" - ], - "Cellulophaga_phage_phi12_1_phi12_1" : [ - "NC_021791" - ], - "Tobacco_mosaic_virus__Jianshi_2" : [ - "HE818432" - ], - "Halomonas_phage_phiHAP_1" : [ - "NC_010342" - ], - "Tomato_spotted_wilt_virus__KM_T" : [ - "HQ402595" - ], - "Hepatitis_C_virus_subtype_3a__ILBSRAS8" : [ - "JQ717259" - ], - "Rupicapra_rupicapra_papillomavirus_1" : [ - "NC_023895" - ], - "Hepatitis_B_virus_B0714202_BMA_F" : [ - "AP011091" - ], - "Onion_yellows_phytoplasma_OY_M" : [ - "NC_005303" - ], - "JC_polyomavirus__AN_4" : [ - "AB092580" - ], - "Feline_infectious_peritonitis_virus__FCoVWSU791146_P50" : [ - "KC461237" - ], - "Santeuil_nodavirus__JU1264" : [ - "NC_015070", - "NC_015069" - ], - "Hepatitis_C_virus" : [ - "D89815", - "AJ851228", - "HPCPP", - "AJ278830", - "KF700370", - "AB016785", - "AB435162", - "JQ745651", - "JX014307", - "X76918" - ], - "Impatiens_necrotic_spot_virus_J" : [ - "AB109100" - ], - "Panicum_streak_virus_Karino" : [ - "NC_001647" - ], - "Human_herpesvirus_5_PAV21" : [ - "KJ872542" - ], - "Canine_distemper_virus_50Con_H" : [ - "AB490676" - ], - "Tomato_leaf_curl_China_betasatellite__Y296" : [ - "AM260731" - ], - "Streptococcus_pyogenes_MGAS10394" : [ - "NC_006086" - ], - "West_Nile_virus__WNV_USA_BID_G15498" : [ - "JX503089" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_MA1602_1984" : [ - "KJ469624" - ], - "Mycobacterium_phage_Estave1" : [ - "NC_026585" - ], - "Guar_leaf_curl_alphasatellite" : [ - "HE979547", - "HE599396", - "HE599397" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19088_G75809_2007" : [ - "KR135316" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3427_2006" : [ - "GU131847" - ], - "Tomato_severe_rugose_virus__BR_Vic35_10" : [ - "JX865648" - ], - "Dengue_virus_1__DENV_1_VN_BID_V828_2006" : [ - "EU482822" - ], - "Caldicellulosiruptor_owensensis_OL" : [ - "NC_014657" - ], - "Human_respiratory_syncytial_virus_09_053157" : [ - "JX576740" - ], - "Paspalum_dilatatum_striate_mosaic_virus__AU_QG44_2011" : [ - "JQ948085" - ], - "Hepatitis_B_virus__C215_3" : [ - "FJ899784" - ], - "Porcine_epidemic_diarrhea_virus__CH_ZJCX_1_2012" : [ - "KF840537" - ], - "Human_herpesvirus_5_BE_1_2012" : [ - "KP745699" - ], - "Yersinia_pestis_D182038" : [ - "NC_017158", - "NC_017157", - "NC_017160", - "NC_017159" - ], - "Coxsackievirus_A24_CA24v_Ishigaki_29_2011" : [ - "AB769164" - ], - "Bluetongue_virus_9_IND2005_02" : [ - "AM900385" - ], - "Hepatitis_B_virus__NIR_1" : [ - "KM577663" - ], - "Dengue_virus_3__283_BR_PE_05" : [ - "JX669502" - ], - "Hepatitis_B_virus__FMD95" : [ - "GU332699" - ], - "Tomato_leaf_curl_Karnataka_alphasatellite__NBRI" : [ - "NC_019546" - ], - "South_African_cassava_mosaic_virus__MG_MG337A1_10" : [ - "KJ887988" - ], - "Enterovirus_A71_BJ67" : [ - "HM002484" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_Galah_04_093B" : [ - "KF385433" - ], - "Xylella_phage_Prado" : [ - "NC_022987" - ], - "Pyrobaculum_islandicum_DSM_4184" : [ - "NC_008701" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_5" : [ - "JQ647458" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K275" : [ - "AJ704948", - "AJ717564" - ], - "Porcine_circovirus_2__HZ" : [ - "KM360051" - ], - "Human_papillomavirus_type_16__Qv16936E" : [ - "AY686580" - ], - "Hepatitis_B_virus__MOD_4587" : [ - "GQ183458" - ], - "Hepatitis_B_virus__252A_8" : [ - "EU872008" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V67_2003" : [ - "EU256023" - ], - "Theiler_s_encephalomyelitis_virus__TOB15" : [ - "EU718732" - ], - "Corynebacterium_urealyticum_DSM_7111" : [ - "NC_020230" - ], - "Tursiops_truncatus_papillomavirus_4_Tt08_09_4" : [ - "JN709469" - ], - "Maize_streak_virus__MSV_A_GH_gh141_Nam_2010" : [ - "KJ699328" - ], - "Yersinia_phage_YpP_Y" : [ - "JQ965700" - ], - "HBV_genotype_D__GRS08457" : [ - "AB554023" - ], - "Tobacco_streak_virus__TSVAPGA" : [ - "FJ417082" - ], - "Tomato_leaf_curl_virus_satellite__Indonesia_02" : [ - "AB113651" - ], - "Human_immunodeficiency_virus_1__MERLBDTRC10" : [ - "JN860769" - ], - "Dragonfly_cyclovirus_1__TO_DFpB5_2010" : [ - "JX185421" - ], - "Tomato_yellow_leaf_curl_virus_Mild__Japan_Yaizu__SzY" : [ - "AB116632" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1857_2007" : [ - "FJ410219" - ], - "Salmonella_phage_7_11" : [ - "NC_015938" - ], - "GB_virus_C_K1737" : [ - "D87709" - ], - "Hepatitis_B_virus__C226" : [ - "EU939615" - ], - "PoSCV_Kor_J481__J481" : [ - "NC_024119" - ], - "Cauliflower_mosaic_virus__IRNWV10" : [ - "JX912261" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_803" : [ - "KP998415" - ], - "Hepatitis_B_virus__LAMr_Pt__26" : [ - "AB367417" - ], - "Hepatitis_C_virus_subtype_1b__No__2" : [ - "AB154177" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_354_01" : [ - "DQ989314" - ], - "Papaya_leaf_crumple_virus_Nirulas__India_New_Delhi_Papaya_2007___Nirulas__IN_ND_Pap_07" : [ - "HM140368" - ], - "Hepatitis_B_virus__MY789421" : [ - "KJ803795" - ], - "Echovirus_E11__ROU_9191" : [ - "AJ577594" - ], - "Snakehead_virus" : [ - "NC_000903" - ], - "West_Nile_virus__Ast04_2_824A" : [ - "DQ374652" - ], - "Bean_golden_mosaic_virus__BR_Cri3_12" : [ - "KJ939839" - ], - "Citrus_yellow_vein_clearing_virus__PK" : [ - "KP313241" - ], - "Human_papillomavirus_type_39__Rw15" : [ - "KC470246" - ], - "West_Nile_virus_JPW080813_01" : [ - "GQ379159" - ], - "Vibrio_phage_ICP3_2009_B" : [ - "HQ641341" - ], - "Human_immunodeficiency_virus_1__CAP256_6w" : [ - "GQ999989" - ], - "Porcine_circovirus_2__Henan" : [ - "AY969004" - ], - "Tropheryma_whipplei_Twist" : [ - "NC_004572" - ], - "Hepatitis_C_virus_genotype_3_NCVI_PK1" : [ - "JN588558" - ], - "JC_polyomavirus__JCV173FLC_03" : [ - "JF424958" - ], - "Zucchini_yellow_mosaic_virus__Z5_1" : [ - "AB188115" - ], - "Pyrobaculum_neutrophilum_V24Sta" : [ - "NC_010525" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_R303_2004_G3P_8__R303" : [ - "KF371968", - "KF371967", - "KF371971", - "KF371966", - "KF371975", - "KF371970", - "KF371974", - "KF371972", - "KF371969" - ], - "Alternanthera_yellow_vein_virus__G8" : [ - "DQ375456" - ], - "West_Nile_virus_RO97_50" : [ - "AF260969" - ], - "BK_polyomavirus__BKV_D" : [ - "JF894228" - ], - "Mycobacterium_phage_Reprobate" : [ - "NC_022064" - ], - "Avian_adeno_associated_virus_strain_DA_1_DA_1" : [ - "NC_006263" - ], - "Hepatitis_B_virus_UZNVC6M_UZNVC6M" : [ - "AB222710" - ], - "Hepatitis_B_virus_P1" : [ - "KJ586810" - ], - "Tomato_yellow_leaf_curl_virus__Jeju" : [ - "GU325633", - "HM130914" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1668_2007" : [ - "FJ182035" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7609_2008" : [ - "KJ189340" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3828_2007" : [ - "GU131914" - ], - "West_Nile_virus__WNV_1_US_BID_V4587_2003" : [ - "HM756652" - ], - "Dengue_virus_2__DENV_2_Harvard_BID_V2990_2009" : [ - "FJ906966" - ], - "Cellulophaga_phage_phi48_1_phi48_1" : [ - "KC821631" - ], - "Hepatitis_B_virus__SHB621" : [ - "KJ598734" - ], - "Staphylococcus_phage_StauST398_5" : [ - "NC_023500" - ], - "East_African_cassava_mosaic_Kenya_virus__Seychelles_Mahe_SC17AR2_2005" : [ - "JF909228" - ], - "Japanese_yam_mosaic_virus__WX3" : [ - "KJ789139" - ], - "Hepatitis_B_virus__DEN6173" : [ - "KF779249" - ], - "Dengue_virus_2__DENV_2_US_BID_V4824_2009" : [ - "HQ541798" - ], - "Columbid_circovirus__PL40" : [ - "KF738855" - ], - "Streptococcus_phage_Sfi21" : [ - "NC_000872" - ], - "Newcastle_disease_virus__2007_Mali_ML029_07" : [ - "JF966386" - ], - "Infectious_bursal_disease_virus__SD10LY01" : [ - "KF569803", - "KF569804" - ], - "Human_poliovirus_2_NIE1118428" : [ - "KJ170536" - ], - "Chicken_anemia_virus_CIA_1" : [ - "CAEPOLYPEP" - ], - "PreXMRV_1" : [ - "NC_007815" - ], - "Human_papillomavirus_type_18" : [ - "AY262282" - ], - "Chikungunya_virus_SD08Pan" : [ - "GU199351" - ], - "Ageratum_yellow_vein_China_virus__Tomato" : [ - "KC172826" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141012" : [ - "KR653244" - ], - "Arthrobacter_aurescens_TC1" : [ - "NC_008712", - "NC_008713", - "NC_008711" - ], - "Chikungunya_virus_RGCB05_KL06" : [ - "GQ428211" - ], - "Thalassobaculum_L2" : [ - "NC_019566" - ], - "Tomato_yellow_leaf_curl_virus__NS" : [ - "AB613209" - ], - "West_Nile_virus__WNV_1_US_BID_V6469_2001" : [ - "KJ501473" - ], - "Foot_and_mouth_disease_virus___type_C_C_C_s8c1" : [ - "AJ133357" - ], - "Porcine_circovirus_2_NIVS_C" : [ - "HQ378158" - ], - "Human_mastadenovirus_D_human_USA_CL_47_1989_37_P37_H37_F37" : [ - "KF268122" - ], - "Human_papillomavirus_type_142__GH1302" : [ - "HM999994" - ], - "West_Nile_virus__WNV_1_US_BID_V6589_2012" : [ - "KJ501214" - ], - "Enterobacteria_phage_HK140" : [ - "NC_019710" - ], - "Human_adenovirus_20" : [ - "JN226749" - ], - "Hepatitis_B_virus__H40" : [ - "FJ349223" - ], - "Hepatitis_B_virus__RS3" : [ - "HQ236016" - ], - "West_Nile_virus__WNV_1_US_BID_V6440_2005" : [ - "KJ501461" - ], - "Infectious_bursal_disease_virus_02015_1" : [ - "AJ879932", - "AJ880090" - ], - "Finegoldia_magna_ATCC_29328" : [ - "NC_010376", - "NC_010371" - ], - "Mycobacterium_phage_ShiVal" : [ - "KC576784" - ], - "HBV_genotype_B__AH_2" : [ - "AB602818" - ], - "Infectious_bronchitis_virus_ck_CH_LJL_110302" : [ - "KC136209" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V1748_2007" : [ - "FJ390396" - ], - "Enterobacteria_phage_T7_T7" : [ - "GU071091" - ], - "Hepatitis_B_virus__B1_6" : [ - "GU815587" - ], - "Hepatitis_B_virus__IstambulB24" : [ - "AB674435" - ], - "Infectious_bronchitis_virus_P115" : [ - "JX195178" - ], - "Hepatitis_C_virus_subtype_1a__F781" : [ - "EU781762" - ], - "Dengue_virus_3__DENV_3_CO_BID_V2984_2003" : [ - "FJ898443" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8972_2010" : [ - "KJ627308" - ], - "Maize_streak_virus__MSV_A_ZM_Lus2_Z4_2008" : [ - "HQ693466" - ], - "Hepatitis_B_virus__PRC6034" : [ - "KF779377" - ], - "West_Nile_virus__WNV_1_US_BID_V5196_2006" : [ - "JF920729" - ], - "Cucumber_green_mottle_mosaic_virus_Watermelon" : [ - "AB369274" - ], - "SARS_coronavirus__A001" : [ - "FJ959407" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_3143_2009" : [ - "KJ469604" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1528_2007" : [ - "EU677156" - ], - "BK_polyomavirus_NEC_14" : [ - "AB269852" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_16__AHEaCV_16_NZ_3310C1_2012" : [ - "KM874340" - ], - "Haemophilus_influenzae_10810" : [ - "NC_016809" - ], - "Wheat_dwarf_virus__Spelt8" : [ - "KJ473695" - ], - "Eastern_equine_encephalitis_virus_PE_0_0155" : [ - "DQ241304" - ], - "Cucumber_green_mottle_mosaic_virus__SD_Cucumber" : [ - "KJ754195" - ], - "Hepatitis_B_virus__I121" : [ - "FJ562268" - ], - "Enterobacteria_phage_933W" : [ - "NC_000924" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2088_2005" : [ - "FJ639728" - ], - "Japanese_encephalitis_virus__JEV_SW_GD_01_2009" : [ - "KF297915" - ], - "Caprine_arthritis_encephalitis_virus_Ov496__496" : [ - "FJ195346" - ], - "Luna_mammarenavirus_NMW_1" : [ - "AB586647", - "AB586646" - ], - "Hepatitis_B_virus__LAMr_Pt__1" : [ - "AB367392" - ], - "Peste_des_petits_ruminants_virus_China_Tibet_Geg_07_30" : [ - "FJ905304" - ], - "Papio_hamadryas_papillomavirus_type_1__Mac2085" : [ - "NC_017716" - ], - "Dengue_virus_1__DENV_1_VN_BID_V820_2006" : [ - "EU482814" - ], - "Human_immunodeficiency_virus_1__JRC05B" : [ - "AB565498", - "AB565497" - ], - "Coxsackievirus_A16__Wuhan0127_HuB_CHN_2011" : [ - "JX986742" - ], - "Hepatitis_B_virus__TK41" : [ - "JF754590" - ], - "Papaya_leaf_curl_betasatellite__PRM" : [ - "GU370715" - ], - "Dengue_virus_2__DENV_2_US_BID_V688_1989" : [ - "EU482745" - ], - "Cotton_leaf_curl_virus_betasatellite__Naruana_Punjab" : [ - "HQ343201" - ], - "Hepatitis_B_virus__1887" : [ - "FJ386596" - ], - "Human_immunodeficiency_virus_1__04WK7_HIV_1_wk" : [ - "DQ295194" - ], - "Melon_chlorotic_mosaic_virus__VE10_215" : [ - "KF670645", - "KF670644" - ], - "Eel_River_basin_pequenovirus__c905" : [ - "KP087937" - ], - "Human_immunodeficiency_virus_1__CH293_w8a" : [ - "KC156216" - ], - "Human_immunodeficiency_virus_1__99ZACM9" : [ - "AF411967" - ], - "Cucurbit_yellow_stunting_disorder_virus" : [ - "AJ439690" - ], - "Indian_cassava_mosaic_virus__Mah_2__Maharastra_2" : [ - "AY730036", - "AY730035" - ], - "Porcine_circovirus_2_10FJ_1" : [ - "HQ395052" - ], - "Canine_distemper_virus__Hebei" : [ - "KC427278" - ], - "Acinetobacter_phage_Ac42_Ac42" : [ - "NC_014660" - ], - "Feline_calicivirus__HRB_SS" : [ - "KM016908" - ], - "Hepatitis_B_virus__bne367" : [ - "FN594770" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US114" : [ - "KJ019078" - ], - "Human_immunodeficiency_virus_1__04JPDR6075B" : [ - "AB221126", - "AB221125" - ], - "Avian_leukosis_virus_PDRC_3246" : [ - "EU070901" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4382_1" : [ - "KR105244" - ], - "Mycobacterium_phage_20ES" : [ - "NC_023597" - ], - "Porcine_circovirus_2__Tsh2004" : [ - "KM604666" - ], - "Dengue_virus_4__rDENV4" : [ - "KJ160504" - ], - "Halorubrum_phage_HF2" : [ - "NC_003345" - ], - "Porcine_circovirus_2__SH0902" : [ - "KF850469" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2006_2007" : [ - "FJ639689" - ], - "Enterovirus_A71_H8_1" : [ - "JQ681218" - ], - "Chlamydia_trachomatis_E_Bour" : [ - "NC_020947", - "NC_020971" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1918_2008" : [ - "FJ410251" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LFJ" : [ - "JF828983" - ], - "Cotton_leaf_curl_Multan_betasatellite__GX11" : [ - "HQ455359" - ], - "Hepatitis_B_virus__SK1_7" : [ - "AY721611" - ], - "Youcai_mosaic_virus__722" : [ - "AB261175" - ], - "Hepatitis_B_virus__C120_6" : [ - "FJ899775" - ], - "Norovirus_GII_Hu_JP_2001_GII_P12_GII_12_Saitama_T15__Saitama_T15" : [ - "KJ196282" - ], - "Clostridium_BNL1100" : [ - "NC_016791" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1326_2006" : [ - "EU660407" - ], - "Corynebacterium_ulcerans_809" : [ - "NC_017317" - ], - "Hepatitis_B_virus__HK870" : [ - "DQ089792" - ], - "Torque_teno_sus_virus_1b__TTV2Jx1" : [ - "HM633233" - ], - "Infectious_bronchitis_virus__SNU8067" : [ - "JQ977697" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Congo_3010" : [ - "DQ099335" - ], - "Chicken_anemia_virus_GD_M_12" : [ - "KF224937" - ], - "Dengue_virus_3__MKS_0098" : [ - "KC762684" - ], - "Theiler_s_encephalomyelitis_virus_DA" : [ - "JX443418" - ], - "Echovirus_E16_Harrington" : [ - "AY302542" - ], - "Enterovirus_C96__AFP809_GD_CHN_2011" : [ - "KF495604" - ], - "Dengue_virus_2__DENV_2_NI_BID_V645_2005" : [ - "KF955362" - ], - "Burkholderia_pseudomallei_MSHR305" : [ - "NC_021884", - "NC_021877" - ], - "Plantago_asiatica_mosaic_virus_Pr" : [ - "AB360796" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_653" : [ - "KR534514" - ], - "African_cassava_mosaic_virus__MG_MG48A1_06" : [ - "KJ887866" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4300_2007" : [ - "GU131942" - ], - "Brucella_canis_HSK_A52141" : [ - "NC_016796", - "NC_016778" - ], - "Canine_distemper_virus_CDV_ZC" : [ - "KJ994343" - ], - "Hepatitis_B_virus__SWT1_1" : [ - "EU916233" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4698_1" : [ - "KR105263" - ], - "BK_polyomavirus__OKN_22" : [ - "AB365150" - ], - "Rice_yellow_mottle_virus__Mg2" : [ - "AM883055", - "AJ608211" - ], - "Thermobispora_bispora_DSM_43833" : [ - "NC_014165" - ], - "Thermoplasmatales_archaeon_BRNA1" : [ - "NC_020892" - ], - "JC_polyomavirus__YA_2" : [ - "AB262402" - ], - "Hepatitis_B_virus__GU1501" : [ - "GQ161774" - ], - "Oat_chlorotic_stunt_virus" : [ - "NC_003633" - ], - "Bovine_viral_diarrhea_virus_2_New_York_93_New_York_93_NY_93_C" : [ - "AF502399" - ], - "Burkholderia_phage_BEK" : [ - "CP008753" - ], - "North_American_arenavirus_AV_M0040017" : [ - "JX560799" - ], - "Hepatitis_B_virus__HBV_PH1" : [ - "AB116091" - ], - "Human_adenovirus_39" : [ - "JN226760" - ], - "Pepper_yellow_leaf_curl_China_virus__YN57_18" : [ - "KC149941" - ], - "Broad_bean_wilt_virus_2__SG1" : [ - "KJ789136", - "KJ789137" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C10" : [ - "KJ019141" - ], - "Human_papillomavirus_type_6__82" : [ - "HG793890" - ], - "Dengue_virus_2__MKS_2198" : [ - "KC762672" - ], - "Rabies_virus__CNM1103C" : [ - "KC252633" - ], - "Abutilon_mosaic_virus_IN_Udg_JIK5_2010" : [ - "HQ588900" - ], - "Lactococcus_Phage_ASCC310" : [ - "JQ740792" - ], - "Dengue_virus_2__DENV_2_US_BID_V1388_1998" : [ - "EU660400" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1773_2007" : [ - "FJ410193" - ], - "Himetobi_P_virus__Izumo" : [ - "AB183472" - ], - "Maize_streak_virus___A_Kom___Komatipoort" : [ - "AF003952" - ], - "Dengue_virus_4__DENV_4_CO_BID_V3411_2004" : [ - "GQ868584" - ], - "Barley_yellow_dwarf_virus_PAV__047" : [ - "EF521838" - ], - "Human_immunodeficiency_virus_1__83CD003" : [ - "AF286236" - ], - "Human_poliovirus_2_NIE1118436" : [ - "KJ170542" - ], - "Avian_paramyxovirus_6_APMV_6_duck_HongKong_18_199_77" : [ - "EU622637" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1991_4_1" : [ - "Z75871" - ], - "Bean_golden_mosaic_virus__BR_Vis1_11" : [ - "KJ939725" - ], - "Hepatitis_B_virus__I164" : [ - "FJ562292" - ], - "Maize_streak_virus__MSV_A_ZW_Mas1_Bet43_2006" : [ - "FJ882142" - ], - "Tomato_mosaic_virus_N5" : [ - "GQ280794" - ], - "Yellow_fever_virus__YF_AVD2791_93F_04" : [ - "DQ118157" - ], - "Dengue_virus_1__DENV_1_VN_BID_V815_2006" : [ - "EU482809" - ], - "Malvastrum_yellow_vein_betasatellite__Y250" : [ - "AJ971704" - ], - "Klebsiella_pneumoniae_342" : [ - "NC_011283", - "NC_011281", - "NC_011282" - ], - "Porcine_circovirus_2__GER3" : [ - "AF201307" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_21_2013" : [ - "KJ672443" - ], - "Bluetongue_virus_5__RSArrrr_05" : [ - "AJ586700" - ], - "Human_rhinovirus_A66_ATCC_VR_1176" : [ - "FJ445148" - ], - "Hepatitis_B_virus__MY333850" : [ - "KJ803757" - ], - "Hepatitis_B_virus__Tibet_1925" : [ - "KP276256" - ], - "Hepatitis_B_virus_Ehi_YY_lam_4_1" : [ - "AB195939" - ], - "Israeli_acute_paralysis_virus_OZ6_AUSTRALIA_2007" : [ - "EU436456" - ], - "Acinetobacter_phage_vB_AbaP_Acibel007" : [ - "NC_025457" - ], - "Usutu_virus_V20" : [ - "KJ438769" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__HKEU16" : [ - "EU076704" - ], - "Human_immunodeficiency_virus_1__03RU20_06_13" : [ - "AY500393" - ], - "Bean_golden_mosaic_virus__BR_Vis9_11" : [ - "KJ939731" - ], - "South_African_cassava_mosaic_virus__MG_MG129A5_09" : [ - "KJ887662" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9867_2010" : [ - "KJ627307" - ], - "Human_papillomavirus_type_58__HPV58sc185" : [ - "FJ385267" - ], - "Norovirus_Hu_GII_30113_2009_VNM_Hu_GII_30113_2009_VNM" : [ - "KC409309" - ], - "Mycobacterium_phage_Minerva" : [ - "NC_026584" - ], - "Porcine_circovirus_2__CQBB10" : [ - "KF742540" - ], - "Hollyhock_yellow_vein_mosaic_Islamabad_virus__3AK" : [ - "NC_027129" - ], - "Simian_immunodeficiency_virus_SIVdebCM40" : [ - "AY523865" - ], - "Hepatitis_B_virus__S462_5" : [ - "FJ032337" - ], - "Hepatitis_B_virus__D_NZL_KA40_1984" : [ - "HQ700464" - ], - "Porcine_circovirus_2_Zhengzhou" : [ - "HQ693093" - ], - "Pelodictyon_phaeoclathratiforme_BU_1" : [ - "NC_011060" - ], - "Hepatitis_B_virus__W29" : [ - "GU357844" - ], - "Epizootic_hemorrhagic_disease_virus_Alberta" : [ - "X59000" - ], - "Bovine_herpesvirus_type_1_2_strain_K22_K22" : [ - "KM258880" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2709_2006" : [ - "FJ882534" - ], - "BK_polyomavirus__KEN_4" : [ - "AB263928" - ], - "Hepatitis_B_virus__C153" : [ - "EU859941" - ], - "Maize_streak_virus__MSV_A_NG_Lal_N1_2006" : [ - "HQ693386" - ], - "Human_papillomavirus_type_67" : [ - "D21208" - ], - "Hepatitis_B_virus_subtype_adw_IWK146" : [ - "AB033557" - ], - "Porcine_circovirus_2__A4321" : [ - "JF317583" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_220_2001" : [ - "DQ404173" - ], - "Canine_distemper_virus_Ac96I_VDS" : [ - "AB753775" - ], - "Watermelon_chlorotic_stunt_virus__JO2_48" : [ - "KM820203" - ], - "Dengue_virus_1_D1_SG_05K4622DK1_2005" : [ - "EU081277" - ], - "Beak_and_feather_disease_virus__CS08_425_OBP_TAS_19140" : [ - "KF188685" - ], - "Dengue_virus_2__DENV_2_CO_BID_V1603_2004" : [ - "FJ024477" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2002_2006" : [ - "FJ639686" - ], - "Malvastrum_yellow_vein_Yunnan_virus_satellite_DNA_beta_SC44_19" : [ - "KC427275" - ], - "African_cassava_mosaic_virus__MG_MG632A2_11" : [ - "KJ888067" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1994_2003" : [ - "FJ850069" - ], - "Fusarium_oxysporum_f__sp__dianthi_mycovirus_1__Fod116" : [ - "NC_027566", - "NC_027563", - "NC_027564", - "NC_027565" - ], - "Vibrio_EJY3" : [ - "NC_016614", - "NC_016613" - ], - "Alteromonas_phage_vB_AmaP_AD45_P2" : [ - "KF005320" - ], - "Cotton_leaf_curl_Multan_virus__FG" : [ - "HQ455353" - ], - "Potato_virus_X__SA_CIP" : [ - "KJ534601" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3932_2008" : [ - "JF937602" - ], - "Beet_black_scorch_virus__Xinjiang_variant_m294" : [ - "JN635330" - ], - "Infectious_bronchitis_virus" : [ - "GU393337", - "GU393335", - "GU393332", - "GU393334", - "GU393331", - "GU393338", - "GU393333", - "GU393336" - ], - "Bovine_coronavirus_R_AH187_R_AH187" : [ - "EF424620" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3992_2008" : [ - "GU131764" - ], - "Heartland_virus__Patient1" : [ - "NC_024494", - "NC_024496", - "NC_024495" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V438_2006" : [ - "EU482845" - ], - "Asparagus_virus_3" : [ - "NC_003400" - ], - "Staphylococcus_phage_71" : [ - "NC_007059" - ], - "Deformed_wing_virus_Korea_2" : [ - "JX878305" - ], - "West_Nile_virus_15217" : [ - "FJ483548" - ], - "Hepatitis_B_virus_29137" : [ - "FN545825" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_69U315_1969_IE" : [ - "KC344448" - ], - "West_Nile_virus__WNV_1_US_BID_V4094_2007" : [ - "HM488202" - ], - "Hepatitis_B_virus__T1181" : [ - "GQ205378" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite__India_Patna_Chilli_2008___India_Patna_Chilli_2008" : [ - "HM007118" - ], - "Hepatitis_B_virus__I107" : [ - "FJ562260" - ], - "Hepatitis_B_virus__380" : [ - "DQ020002" - ], - "Enterovirus_A71_BJ97" : [ - "HM002485" - ], - "Human_rotavirus_A__neo7" : [ - "AJ427313" - ], - "Mammalian_orthoreovirus_3__jin_3" : [ - "KJ806994", - "KJ806993" - ], - "Hepatitis_B_virus_1134_1b" : [ - "KR014009" - ], - "SARS_coronavirus_GD01__GD01" : [ - "AY278489" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2157_2001" : [ - "FJ639832" - ], - "African_cassava_mosaic_virus_Ghana__ACMV" : [ - "JN165086", - "JN165088" - ], - "Bundibugyo_virus__Bundibugyo_virus_H_sapiens_tc_UGA_2007_Butalya_811250" : [ - "NC_014373", - "KR063673" - ], - "Astrovirus_MLB2__MLB2_human_Stl_WD0559_2008" : [ - "NC_016155" - ], - "Tembusu_virus_Du_CH_LSD_110128_P30" : [ - "KJ782377" - ], - "Porcine_circovirus_2__INDON01_P009_10_01" : [ - "EU302139" - ], - "Hepatitis_B_virus__P48" : [ - "AB493831", - "GQ477483" - ], - "Mesta_yellow_vein_mosaic_Bahraich_virus__India_Bahraich_2007" : [ - "NC_010818" - ], - "Human_bocavirus__2012GZ1219" : [ - "KJ684071" - ], - "Hepatitis_B_virus__C55" : [ - "EU859953", - "EU939550" - ], - "Dengue_virus_2__DENV_2_VN_BID_V734_2006" : [ - "EU482671" - ], - "Catharanthus_mosaic_virus__Mandevilla_US" : [ - "NC_027210" - ], - "Human_herpesvirus_5_TB40_E" : [ - "EF999921", - "KF297339" - ], - "Hepatitis_B_virus__MY070852" : [ - "KJ803815" - ], - "Hepatitis_B_virus__P001_C2_001b" : [ - "KJ173323" - ], - "Porcine_circovirus_2_MN_NP160" : [ - "EF452352" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_FD7829_1983" : [ - "KJ469639" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO20BS1_2009" : [ - "JF909147" - ], - "Porcine_epidemic_diarrhea_virus__SM98" : [ - "GU937797" - ], - "Wheat_dwarf_virus__GSTS07_4" : [ - "KJ536082" - ], - "African_cassava_mosaic_virus__CF_CF299BN_08" : [ - "KJ887627" - ], - "Canine_parvovirus_2c__UY261" : [ - "KM457123" - ], - "East_African_cassava_mosaic_virus_KE2__EACMV_KE2_K53" : [ - "AJ717536" - ], - "Human_papillomavirus_type_11__LP221" : [ - "HE611266" - ], - "Okra_enation_leaf_curl_virus__India_Sonipat_EL10_2006___EL10" : [ - "GU111996" - ], - "Sindbis_like_virus_YN87448_YN87448" : [ - "AF103734" - ], - "Hepatitis_B_virus__PES1" : [ - "AJ132335" - ], - "Hepatitis_B_virus__I1" : [ - "FJ562218" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_22_2012" : [ - "KJ672440" - ], - "Bovine_viral_diarrhea_virus_2_C413" : [ - "NC_002032" - ], - "Eastern_equine_encephalitis_virus_EEEV_Cyanocitta_USA_TX1634_2003" : [ - "KJ469621" - ], - "African_cassava_mosaic_virus__CF_CF15AB_07" : [ - "KJ887762" - ], - "Hepatitis_C_virus_subtype_4a__HCVgenotype4a_KM" : [ - "AB795432" - ], - "Murine_norovirus_GV_CR15_2005_USA__Mu_NoV_GV_CR15_2005_USA" : [ - "EU004681" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K307" : [ - "AJ717576" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_12041_2004" : [ - "KJ469606" - ], - "Hepatitis_B_virus__KWgib8" : [ - "AB823660" - ], - "Hepatitis_B_virus__HBV_IND18" : [ - "AB116086" - ], - "Cucumber_mosaic_virus_As" : [ - "AF033667" - ], - "Human_immunodeficiency_virus_1__DR5913" : [ - "AB480697", - "AB480696" - ], - "HIV_1_M_02CD_KS069__02CD_KS069" : [ - "FM877780" - ], - "Hepatitis_B_virus__MY540630" : [ - "KJ803816" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT58A27_2008" : [ - "JF909252" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8601_2010" : [ - "KJ627365" - ], - "Hepatitis_B_virus_UZTBV102_UZTBV102" : [ - "AB222707" - ], - "Lactococcus_Phage_ASCC287" : [ - "JQ740791" - ], - "Synechococcus_phage_S_RIM2_R21_2007_RIM2_R21_907" : [ - "HQ317290" - ], - "Human_adenovirus_16_E26" : [ - "JN860680" - ], - "Porcine_circovirus_2_ZS0401" : [ - "AY678532" - ], - "Asparagus_virus_3_J" : [ - "NC_010416" - ], - "Azoarcus_KH32C" : [ - "NC_020516", - "NC_020548" - ], - "Hepatitis_A_virus_SLF88" : [ - "AY644670" - ], - "Hepatitis_B_virus__C25" : [ - "EU939541" - ], - "Hepatitis_B_virus__HK1629" : [ - "DQ089771" - ], - "Asticcacaulis_excentricus_CB_48" : [ - "NC_014819", - "NC_014816", - "NC_014817", - "NC_014818" - ], - "Staphylococcus_phage_66" : [ - "NC_007046" - ], - "Hepatitis_B_virus__A2_1" : [ - "GU815560" - ], - "Hepatitis_B_virus__CHN_H155" : [ - "DQ478901" - ], - "Faba_bean_necrotic_yellows_virus__Egyptian_EV1_93" : [ - "NC_003563", - "NC_003564", - "NC_003559", - "NC_003560", - "NC_003561", - "NC_003562", - "NC_003566" - ], - "White_eye_coronavirus_HKU16_HKU16_6847" : [ - "NC_016991" - ], - "Human_papillomavirus_type_45__Qv34178" : [ - "EF202159" - ], - "Beet_mild_curly_top_virus____Worland__Worland" : [ - "BCU56975" - ], - "Hepatitis_B_virus__JFA3946" : [ - "KF779265" - ], - "Maize_streak_virus__MSV_A_ZA_Por5_Ta19_2008" : [ - "HQ693435" - ], - "Hepatitis_B_virus_1240_4b" : [ - "KR014023" - ], - "Mongoose_feces_associated_gemycircularvirus_d_478d" : [ - "NC_026810" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P3pp13" : [ - "FJ882946" - ], - "Bifidobacterium_longum_infantis_157F" : [ - "NC_015066", - "NC_015052", - "NC_015053" - ], - "Helicobacter_pylori_UM037" : [ - "NC_021217" - ], - "JC_polyomavirus__FL_12" : [ - "AB127352" - ], - "West_Nile_virus__WNV_1_US_BID_V4194_2000" : [ - "HM488132" - ], - "Human_immunodeficiency_virus_1__99BW4642_4" : [ - "AF443084" - ], - "Hepatitis_B_virus__CONTROL8" : [ - "JQ801501" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0007" : [ - "KP759631" - ], - "Tembusu_virus__zc_1" : [ - "KF557894" - ], - "Torque_teno_virus__JT33F" : [ - "AB064606" - ], - "Human_immunodeficiency_virus_1__07MYKT021" : [ - "GQ175883" - ], - "Human_papillomavirus_type_167__KC10" : [ - "NC_022892" - ], - "Hepatitis_B_virus__217" : [ - "JQ040136" - ], - "Newcastle_disease_virus__9a5b" : [ - "AB524406" - ], - "Human_rhinovirus_A65_ATCC_VR_1175" : [ - "FJ445147" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9376_2013" : [ - "KJ643465" - ], - "East_African_cassava_mosaic_Cameroon_virus__TZ1" : [ - "AY795983", - "AY795989" - ], - "Enterovirus_A71__02_0_049" : [ - "KP691663" - ], - "Ljungan_virus_145SL_145SL_145SLG__cell_culture_adapted_variant_of_Ljungan_virus_strain_145SL" : [ - "FJ384560" - ], - "Porcine_circovirus_2__NL_Control_6" : [ - "AY484412" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT44A51_2008" : [ - "JF909245" - ], - "Hepatitis_B_virus__J110" : [ - "GQ377570" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2243_2007" : [ - "FJ639806" - ], - "Dengue_virus_2__DENV_2_NI_BID_V660_2005" : [ - "EU596484" - ], - "Alteromonas_macleodii__Ionian_Sea_U4" : [ - "NC_021710", - "NC_021711" - ], - "Hepatitis_B_virus__18158_SE_BRA" : [ - "KJ854696" - ], - "Hepatitis_B_virus__HCUCH13" : [ - "HM590471" - ], - "Dengue_virus_1__DENV_1_NI_BID_V1073_2005" : [ - "EU482619" - ], - "Porcine_circovirus_2__hk102" : [ - "DQ870484" - ], - "Bovine_enterovirus_type_2_BHM26" : [ - "HQ917060" - ], - "Porcine_epidemic_diarrhea_virus_USA_Iowa107_2013" : [ - "KJ645696" - ], - "Dengue_virus_1__DENV_1_VN_BID_V791_2007" : [ - "EU482717" - ], - "Foot_and_mouth_disease_virus___type_O_China_5_99_Fujian" : [ - "HQ009509" - ], - "Squash_leaf_curl_virus__LB2_2_12" : [ - "KM595131" - ], - "Hepatitis_B_virus__919088" : [ - "JN040774" - ], - "JC_polyomavirus__JCV176FLC_10" : [ - "JF424910" - ], - "Human_poliovirus_1_NIE1018323" : [ - "KJ170517" - ], - "Taro_vein_chlorosis_virus" : [ - "NC_006942" - ], - "Rabbit_vesivirus" : [ - "NC_008580" - ], - "Hepatitis_B_virus__HBV_Ry48" : [ - "AB073857" - ], - "Hepatitis_C_virus_subtype_1a__01_39" : [ - "EU781799" - ], - "Turnip_mosaic_virus__AUST6" : [ - "AB989633" - ], - "Hepatitis_B_virus__BA116" : [ - "FJ657522" - ], - "Lynx_rufus_papillomavirus_type_1" : [ - "AY904722" - ], - "Maize_streak_virus__MSV_A_ZA_Pot2_O26_1979" : [ - "FJ882130" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2394_2005" : [ - "FJ850086" - ], - "Malvastrum_yellow_vein_betasatellite__Y301" : [ - "AJ971708" - ], - "Desulfotomaculum_gibsoniae_DSM_7213" : [ - "NC_021184" - ], - "Porcine_circovirus_2_Henan_1" : [ - "EU346945" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Pandarahalli_OY174_2006___OY174" : [ - "GU111972" - ], - "Border_disease_virus__Coos_Bay_5_nc" : [ - "KJ463422" - ], - "Porcine_epidemic_diarrhea_virus_SD_M" : [ - "JX560761" - ], - "Maize_streak_virus__MSV_A_ZA_Kwa_Riz25_2007" : [ - "HQ693418" - ], - "Marburg_marburgvirus__MARV_R_aegyptiacus_tc_UGA_2009_914_Qbat" : [ - "JX458856" - ], - "Carrot_thin_leaf_virus__CTLV_Dc" : [ - "JX156435" - ], - "Human_respiratory_syncytial_virus__RSV572" : [ - "JX015484" - ], - "Middle_East_respiratory_syndrome_coronavirus__Riyadh_2_2012" : [ - "KF600652" - ], - "Simian_immunodeficiency_virus_SIVmac239" : [ - "AY588945", - "AY588946" - ], - "Mycobacterium_phage_Newman" : [ - "NC_021310" - ], - "Porcine_circovirus_2_MN_NP162" : [ - "EF452353" - ], - "Cucumber_mosaic_virus__Palampur" : [ - "HE650150", - "HG917909", - "HE583224", - "AJ879490", - "HG917911", - "AJ865382", - "HG917910" - ], - "Porcine_circovirus_2__871" : [ - "EU420015" - ], - "Methanosarcina_acetivorans_C2A" : [ - "NC_003552" - ], - "West_Nile_virus__WNV_1_US_BID_V6528_2001" : [ - "KJ501494" - ], - "Escherichia_phage_PBECO_4" : [ - "NC_027364" - ], - "Enterobacteria_phage_Qbeta_Enterobacteria_phage_MX1" : [ - "NC_001890" - ], - "Human_immunodeficiency_virus_1_12_69" : [ - "AF490973" - ], - "Pseudomonas_fluorescens_F113" : [ - "NC_016830" - ], - "Peste_des_petits_ruminants_virus__Oman_1983" : [ - "KJ867544" - ], - "Human_poliovirus_1__HAI01002" : [ - "AF405667" - ], - "Human_poliovirus_3_NIE1018490" : [ - "KJ170660" - ], - "Khujand_virus" : [ - "NC_025385" - ], - "Rabies_virus__FL1078" : [ - "JQ685921" - ], - "Porcine_circovirus_2__142b_Cremona_7_05_06_2009" : [ - "KP231155" - ], - "Hepatitis_B_virus__P76" : [ - "GQ477492" - ], - "Chlamydia_trachomatis_RC_J_971" : [ - "NC_021899" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0084" : [ - "KP759753" - ], - "Kashmir_bee_virus" : [ - "NC_004807" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C102" : [ - "NC_026923" - ], - "Plum_pox_virus_PPV_D_Od1" : [ - "AB576076" - ], - "Cherry_leaf_roll_virus__737" : [ - "KC937030", - "KC937024" - ], - "Hepatitis_B_virus__Cuba14" : [ - "KM606746" - ], - "Bluetongue_virus_23__ISA1991_02" : [ - "AJ586729" - ], - "Beak_and_feather_disease_virus__BFDV_I_PL_13_2003" : [ - "JX221013" - ], - "Hepatitis_B_virus_C0610316_JYP_F" : [ - "AP011103" - ], - "Citrus_tristeza_virus__CT14A" : [ - "JQ911663" - ], - "Hepatitis_B_virus__N10_C_3953B" : [ - "KJ173404" - ], - "Micavibrio_EPB" : [ - "NC_020812" - ], - "SARS_coronavirus_HGZ8L2__HGZ8L2" : [ - "AY394993" - ], - "Human_parechovirus_1__152478" : [ - "GQ183018" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SD_09" : [ - "HQ843180" - ], - "Pepino_mosaic_virus_US1_CAHN8" : [ - "JQ314458" - ], - "Dengue_virus_2_ThNH36_93" : [ - "AF169679" - ], - "Hepatitis_B_virus__bww1081" : [ - "KC774383" - ], - "Cucumber_mosaic_virus_m1" : [ - "AB920779", - "AB920561", - "AB920778" - ], - "Avian_encephalomyelitis_virus__204C" : [ - "KF979338" - ], - "Porcine_rotavirus_MA_68" : [ - "EU169873" - ], - "JC_polyomavirus__323A" : [ - "AY376829" - ], - "Cotton_leaf_curl_virus_betasatellite__Sirsa_Haryana" : [ - "HM146308" - ], - "Hepatitis_B_virus__A9_2" : [ - "AY217356" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V307_2005" : [ - "EU155373" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_ER_78a_2008" : [ - "HM748926" - ], - "Bluetongue_virus_NET2008_05" : [ - "GQ506472", - "GQ506478", - "GQ506474", - "GQ506473", - "GQ506479", - "GQ506481", - "GQ506480", - "GQ506477", - "GQ506476", - "GQ506475" - ], - "West_Nile_virus__WNV_1_US_BID_V7822_2011" : [ - "KJ501538" - ], - "Equine_arteritis_virus_F63" : [ - "JN211320" - ], - "Monkeypox_virus__DRC_07_0450" : [ - "JX878426" - ], - "Ignavibacterium_album_JCM_16511" : [ - "NC_017464" - ], - "Ageratum_leaf_curl_betasatellite" : [ - "KJ948106" - ], - "BK_polyomavirus__NEA_27" : [ - "AB365139" - ], - "Classical_swine_fever_virus_JJ9811" : [ - "KF669877" - ], - "West_Nile_virus__WNV_1_US_BID_V6631_2002" : [ - "KJ501380" - ], - "Leucas_zeylanica_yellow_vein_virus_satellite_DNA_beta" : [ - "NC_013424" - ], - "Enterovirus_A71__VR1432" : [ - "KC954664" - ], - "Ageratum_yellow_vein_China_betasatellite__G48" : [ - "HF569260" - ], - "Hepatitis_B_virus__MY797212" : [ - "KJ803780" - ], - "SARS_coronavirus_SinP1" : [ - "AY559088" - ], - "Hepatitis_B_virus__HBV27" : [ - "KC875256" - ], - "Enterovirus_A" : [ - "NC_001612" - ], - "Banana_bunchy_top_virus__MT2" : [ - "FJ859743", - "FJ859730" - ], - "Rubella_virus_RVi_BarHarbor_ME_USA_43_08_1E" : [ - "JN635286" - ], - "Hepatitis_B_virus__SHB710" : [ - "KJ598746" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC49BO2_2009" : [ - "JF909124" - ], - "Porcine_parvovirus_5__MI216" : [ - "JX896318" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Grande_Comore_GC36BI2_2009" : [ - "JF909115" - ], - "Porcine_kobuvirus_WUH1" : [ - "JQ692069" - ], - "Human_bocavirus__HZ1103" : [ - "KP710204" - ], - "Dengue_virus_1_D1_SG_05K3904DK1_2005" : [ - "EU081243" - ], - "Porcine_circovirus_2_CL" : [ - "HM038033" - ], - "Human_papillomavirus_type_45__Qv33330" : [ - "EF202158" - ], - "Hepatitis_B_virus__HBV_Na102" : [ - "AB073850" - ], - "Thermotoga_naphthophila_RKU_10" : [ - "NC_013642" - ], - "Sapelovirus_A_csh" : [ - "HQ875059" - ], - "Sugarcane_yellow_leaf_virus__Haw73_6110" : [ - "GU570008" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZP09_2011" : [ - "JQ693012" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_293_2012" : [ - "KP308437" - ], - "Simian_adenovirus_A1285_A1285" : [ - "JN880452" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL084A" : [ - "AB985307", - "AB985539" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2003_2_3" : [ - "KC862584" - ], - "Hepatitis_B_virus__GU763" : [ - "GQ161806" - ], - "Potato_virus_Y__CF_YL21" : [ - "KJ801915" - ], - "BK_polyomavirus_UT" : [ - "DQ305492" - ], - "Dengue_virus_1__DENV_1_PR_BID_V8185_2010" : [ - "KJ189365" - ], - "Hepatitis_B_virus__2018" : [ - "FJ386611" - ], - "Tomato_spotted_wilt_virus__ZO" : [ - "FM163372" - ], - "Hepatitis_B_virus_C_1858_ea8" : [ - "AF223961" - ], - "Hepatitis_B_virus__GU1410" : [ - "GQ161805" - ], - "Hepatitis_B_virus__B35" : [ - "FJ904440" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1004_2006" : [ - "EU482449" - ], - "Tiger_puffer_nervous_necrosis_virus__TPKag93" : [ - "NC_013460", - "NC_013461" - ], - "Enterovirus_A71_B5_03172_TW_2011" : [ - "KF154354" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1779_2007" : [ - "FJ432725" - ], - "Hepatitis_B_virus_1240_1b" : [ - "KR013836" - ], - "Phaius_virus_X" : [ - "NC_010295" - ], - "African_cassava_mosaic_virus__Cameroon_DO2__ACMV_CM_D02" : [ - "AF366902" - ], - "Dengue_virus_1__DENV_1_PR_BID_V8184_2010" : [ - "KJ189364" - ], - "Torque_teno_virus_25__Mf_TTV9" : [ - "NC_014083" - ], - "Dengue_virus_2__DENV_2_NI_BID_V533_2005" : [ - "EU482756" - ], - "Cowpox_virus_HumAac09_1" : [ - "KC813508" - ], - "West_Nile_virus_Italy_2011_Livenza" : [ - "JQ928174" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_BJ0706" : [ - "GQ351601" - ], - "Human_immunodeficiency_virus_1__WITO_flE1" : [ - "FJ496176" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_127_2012" : [ - "KJ686248" - ], - "Hepatitis_B_virus_GYF634" : [ - "AY220697" - ], - "Streptococcus_phage_Dp_1" : [ - "NC_015274" - ], - "Rabies_virus_SAD_VA1__original" : [ - "EF206716" - ], - "Propionibacterium_phage_PHL064M02__PHL064M02" : [ - "KJ578764" - ], - "Coxsackievirus_B3_B3" : [ - "CXU57056" - ], - "Hepatitis_B_virus__IRL_2009" : [ - "HQ378247" - ], - "Porcine_circovirus_2_ZJ0882" : [ - "GQ359011" - ], - "West_Nile_virus_strain_385_99_385_99_hamster_passage_strain_9317B" : [ - "DQ066423" - ], - "Listonella_phage_phiHSIC" : [ - "NC_006953" - ], - "Hepatitis_B_virus__C9_4" : [ - "FJ899763" - ], - "Porcine_circovirus_2_PT_15152_03" : [ - "HQ831530" - ], - "Tomato_yellow_leaf_curl_virus___KISR__KISR" : [ - "JF451352" - ], - "West_Nile_virus__WNV_1_US_BID_V4102_2002" : [ - "HM488114" - ], - "Tomato_yellow_leaf_curl_virus___Il_Sz" : [ - "AB110218" - ], - "Dengue_virus_2_D2_SG_05K3295DK1_2005" : [ - "EU081177" - ], - "Staphylococcus_aureus_08BA02176" : [ - "NC_018608" - ], - "Walleye_dermal_sarcoma_virus" : [ - "NC_001867" - ], - "GB_virus_C__62_11" : [ - "KP710600" - ], - "Japanese_encephalitis_virus__Fj0276" : [ - "JN381867" - ], - "Oak_Vale_virus_CSIRO_1342" : [ - "NC_025399" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C67" : [ - "KJ019042" - ], - "Lactobacillus_amylovorus_GRL1118" : [ - "NC_017471", - "NC_017470", - "NC_017472" - ], - "Eupatorium_vein_clearing_virus" : [ - "NC_010738" - ], - "Tomato_yellow_leaf_curl_virus___Il_IL_6_1" : [ - "LN846617" - ], - "Ross_River_virus_3078" : [ - "GQ433356" - ], - "Hepatitis_B_virus__Vac04_M_m611" : [ - "KJ173393" - ], - "Ageratum_yellow_vein_virus__AFSP3a" : [ - "JN809815" - ], - "BK_polyomavirus_FUJ_18" : [ - "AB269827" - ], - "Turnip_mosaic_virus__AUST3" : [ - "AB989631" - ], - "Hepatitis_B_virus_580_4" : [ - "KR013814" - ], - "Hepatitis_B_virus__490_03_3" : [ - "EU871989" - ], - "Hepatitis_B_virus_subtype_adw2" : [ - "AM282986" - ], - "Marburg_marburgvirus_Uganda_44Bat2007_811274" : [ - "FJ750954" - ], - "Siegesbeckia_yellow_vein_virus_associated_DNA_beta" : [ - "JF682839" - ], - "Bean_common_mosaic_virus_strain_Blackeye_Taiwan" : [ - "AY575773" - ], - "Dengue_virus_4__DENV_4_VE_BID_V1158_2007" : [ - "FJ182016" - ], - "Hepatitis_E_virus__HE_JA12_0725" : [ - "AB850879" - ], - "Chlamydia_trachomatis_L3_404_LN" : [ - "NC_020957", - "NC_020974" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__HL_Larvae_G2" : [ - "KF791955", - "KF791960", - "KF791950" - ], - "Hepatitis_B_virus__bne385" : [ - "FN594761" - ], - "Pepper_yellow_leaf_curl_Indonesia_virus__Bogor_tomato" : [ - "DQ083765" - ], - "Classical_swine_fever_virus__CSFV_IND_UK_LAL_290" : [ - "KC851953" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2774_2007" : [ - "GQ199797" - ], - "Squash_leaf_curl_China_virus__HA3" : [ - "KF184993" - ], - "Citrus_leaf_blotch_virus_V1_M3_A" : [ - "JN983454" - ], - "Dechlorosoma_suillum_PS" : [ - "NC_016616" - ], - "Hepatitis_B_virus_28028" : [ - "EU414132" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA29" : [ - "KF670651" - ], - "Hepatitis_B_virus__P12" : [ - "GQ477466" - ], - "Salmonella_phage_vB_SemP_Emek" : [ - "NC_018275" - ], - "Paspalum_dilatatum_striate_mosaic_virus__AU_QG24_2011" : [ - "JQ948077" - ], - "Enterobacteria_phage_VT2_Sakai" : [ - "NC_000902" - ], - "Feline_coronavirus_UU24_UU24" : [ - "HQ012370" - ], - "Simian_T_lymphotropic_virus_1__MarB43" : [ - "AY590142" - ], - "Synechococcus_phage_S_RIP1" : [ - "NC_020867" - ], - "Chlamydia_trachomatis_G_9301" : [ - "NC_017432" - ], - "Tembusu_virus__GX2013E" : [ - "KM275940" - ], - "Rabbit_coronavirus_HKU14_HKU14_8" : [ - "JN874561" - ], - "Human_papillomavirus_type_133__28_52" : [ - "GU117633" - ], - "Watermelon_mosaic_virus__TURK91" : [ - "EU660579" - ], - "Wheat_dwarf_virus__SCCD07_1" : [ - "KJ536125" - ], - "Human_rotavirus_A_CAU12_2_51" : [ - "KJ187603", - "KJ187604", - "KJ187597", - "KJ187596", - "KJ187598", - "KJ187600", - "KJ187601", - "KJ187595", - "KJ187602", - "KJ187599" - ], - "Bovine_viral_diarrhea_virus_1__10JJ_SKR" : [ - "KC757383" - ], - "Hepatitis_B_virus__LAMr_Pt__39_Adefovir_treated_Pt__5" : [ - "AB367430" - ], - "Beak_and_feather_disease_virus__CS08_423_OBP_TAS_19076" : [ - "KF188683" - ], - "Ambystoma_tigrinum_virus_Ambystoma_tigrinum_stebbensi_virus" : [ - "NC_005832" - ], - "Staphylococcus_aureus_ST228_16035" : [ - "NC_020534", - "NC_020533" - ], - "Hepatitis_B_virus__WY_NNJ_17" : [ - "JX504542" - ], - "Milk_vetch_dwarf_virus__N" : [ - "NC_003648" - ], - "Hepatitis_C_virus_subtype_1b__No__30" : [ - "AB154205" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_LA2_24_2012" : [ - "KJ672473" - ], - "Beet_chlorosis_virus__BChV_CR" : [ - "AF352025" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V62_2003" : [ - "EU256020" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_RNP_B15_1996" : [ - "KF688550" - ], - "Dengue_virus_1_98901518_DHF_DV_1" : [ - "AB189120" - ], - "Porcine_circovirus_2__Uy99" : [ - "KP867050" - ], - "Maize_streak_virus__MSV_A_ZW_Har1_g186_2006" : [ - "HQ693469" - ], - "Streptococcus_phage_M102" : [ - "NC_012884" - ], - "Bat_SARS_CoV_Rp3_2004__Rp3" : [ - "DQ071615" - ], - "Human_metapneumovirus_HMPV_USA_Lab_101256729_2010_B" : [ - "KF530185" - ], - "Dengue_virus_3_D3_SG_05K797DK1_2005" : [ - "EU081183" - ], - "Hepatitis_B_virus__FMD86" : [ - "GU332697" - ], - "Hepatitis_B_virus__Y580" : [ - "GU357843" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2920_2007" : [ - "FJ898434" - ], - "Zaliv_Terpenia_virus_LEIV_279Az" : [ - "KF767460", - "KF767461" - ], - "Rotavirus_A_MRC_DPRU4677_RVA_Human_wt_ZAF_MRC_DPRU4677_2010_G9P_8" : [ - "JN605428", - "JN605427", - "JN605434", - "JN605433", - "JN605436", - "JN605435", - "JN605429", - "JN605431", - "JN605430", - "JN605426" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4019_2008" : [ - "GU131781" - ], - "Bacillus_clausii_KSM_K16" : [ - "NC_006582" - ], - "Dengue_virus_1_D1_SG_05K2928DK1_2005" : [ - "EU081235" - ], - "Cauliflower_mosaic_virus__IRN12" : [ - "AB863147" - ], - "Human_respiratory_syncytial_virus_ATCC_VR_26__Long" : [ - "AY911262" - ], - "Porcine_circovirus_2__GRE_2" : [ - "DQ915586" - ], - "Chickpea_chlorosis_Australia_virus__CpCV_D_AU_3494I_2002" : [ - "NC_022131" - ], - "Potato_virus_Y_1104" : [ - "KC296436" - ], - "Coleus_vein_necrosis_virus" : [ - "NC_009764" - ], - "Human_rotavirus_A_256_stool" : [ - "AJ236781" - ], - "JC_polyomavirus__KO_2" : [ - "AB074585" - ], - "Duck_circovirus_MH06" : [ - "EU344804" - ], - "Dengue_virus_1__SG_EHI_D1227Y03" : [ - "FJ469909" - ], - "Hepatitis_C_virus_subtype_1a__DN11" : [ - "EU781807" - ], - "Hepatitis_B_virus__clz2040" : [ - "KC774199" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5244_1" : [ - "KR105301" - ], - "Japanese_encephalitis_virus__LFM" : [ - "JN381863" - ], - "South_African_cassava_mosaic_virus__MG_MG694A4_11" : [ - "KJ888089" - ], - "Tomato_leaf_curl_New_Delhi_virus_Papaya__India_New_Delhi_Papaya_2005___PD" : [ - "DQ989325" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2193_2001" : [ - "FJ639763" - ], - "Foot_and_mouth_disease_virus___type_O__O_S13KOR_2002" : [ - "KF694743" - ], - "West_Nile_virus__WNV_1_US_BID_V7438_2011" : [ - "KJ501148" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir7_T11P_Cuc_07" : [ - "FJ660426" - ], - "SARS_coronavirus_MA15_MA15_d2ym5" : [ - "JF292910" - ], - "Human_immunodeficiency_virus_1__00BW5031_1" : [ - "AF443115" - ], - "Feline_immunodeficiency_virus__Mc121" : [ - "EF455606" - ], - "Watermelon_chlorotic_stunt_virus__JO1_18" : [ - "KM820196" - ], - "Klebsiella_phage_0507_KN2_1_0507_KN2_1" : [ - "NC_022343" - ], - "Zucchini_yellow_mosaic_virus__2002" : [ - "AB188116" - ], - "Human_adenovirus_54__Kobe_H" : [ - "AB448770" - ], - "Hepatitis_B_virus__CONTROL1" : [ - "JQ801494" - ], - "Turkey_astrovirus_TAstV_MO_01" : [ - "EU143848" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3871_2008" : [ - "GU131706" - ], - "Hepatitis_B_virus__NIR_5" : [ - "KM577667" - ], - "Bluetongue_virus_23__5268_5" : [ - "JX272408" - ], - "Tomato_leaf_curl_China_betasatellite__G16" : [ - "AJ704610" - ], - "Lambdina_fiscellaria_nucleopolyhedrovirus__GR15" : [ - "NC_026922" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7343_2002" : [ - "KF973326" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2787_2007" : [ - "GQ199807" - ], - "Rabies_virus_BR_Pfx1" : [ - "AB362483" - ], - "Pseudoplusia_includens_densovirus__IAF" : [ - "NC_019492" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD208_2013" : [ - "KM229772" - ], - "Potato_virus_Y_Ordinary_OAO22" : [ - "AB711148" - ], - "Hepatitis_B_virus__S157_4" : [ - "FJ787439" - ], - "Human_herpesvirus_3_49" : [ - "DQ479959" - ], - "Porcine_epidemic_diarrhea_virus" : [ - "KR610992", - "KJ960180", - "KJ960179", - "KJ960178", - "KR610993", - "KR610994", - "KC189944", - "KR610991" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3776_2006" : [ - "GU131888" - ], - "Hepatitis_B_virus__S943_1" : [ - "FJ032350" - ], - "Toscana_virus_TOSV_Siena_ITA_1994" : [ - "KM275776" - ], - "African_swine_fever_virus__Kenya_1950" : [ - "AY261360" - ], - "Latino_mammarenavirus_MARU_10924" : [ - "NC_010758", - "NC_010760" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_BJsy06" : [ - "EU097707" - ], - "Human_parechovirus_1__K129_93" : [ - "GQ183022" - ], - "Hop_trefoil_cryptic_virus_2__IPP_GelbSK" : [ - "NC_021099", - "NC_021098" - ], - "Zucchini_tigre_mosaic_virus__E11045" : [ - "KC345608" - ], - "Hepatitis_B_virus__G79" : [ - "JQ040151" - ], - "JC_polyomavirus_Mad1" : [ - "NC_001699" - ], - "Chickpea_chlorotic_dwarf_virus" : [ - "AM933135", - "AM849096", - "AM933134", - "AM900416", - "AM849097", - "NC_011058" - ], - "Human_papillomavirus_type_11__LP126" : [ - "HE611264" - ], - "Streptococcus_agalactiae_2603V_R" : [ - "NC_004116" - ], - "Sulfurihydrogenibium_YO3AOP1" : [ - "NC_010730" - ], - "Advenella_kashmirensis_WT001" : [ - "NC_017965", - "NC_017964" - ], - "Human_immunodeficiency_virus_1__C_ZA_1225MB" : [ - "AY463227" - ], - "Hepatitis_B_virus__232_1125_Nature1_1_unSero" : [ - "DQ993693" - ], - "Hepatitis_B_virus__GU719" : [ - "GQ161829" - ], - "Hepatitis_C_virus__QC103" : [ - "KJ439768" - ], - "Dengue_virus_3_D3_SG_05K863DK1_2005" : [ - "EU081190" - ], - "Ipomoea_begomovirus_satellite_DNA_beta__SBG56" : [ - "FJ914396" - ], - "HIV_1_M_97CD_KFE267__97CD_KFE267" : [ - "FM877778" - ], - "Cotton_leaf_curl_virus_betasatellite__Sirsa_DC" : [ - "NC_017829" - ], - "Canis_familiaris_papillomavirus_6__Zurich" : [ - "NC_013237" - ], - "Human_parechovirus_3_A308_99" : [ - "AB084913" - ], - "Chikungunya_virus_PM2951" : [ - "HM045785" - ], - "Pseudomonas_aeruginosa_LES431" : [ - "NC_023066" - ], - "Lettuce_mosaic_virus__Tn516" : [ - "KJ161190" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7590_2007" : [ - "KJ189324" - ], - "Bhanja_virus_IG690" : [ - "JX961621", - "KC521442", - "JX961620", - "JX961619" - ], - "Newcastle_disease_virus__NDV04" : [ - "FJ386395" - ], - "Hepatitis_B_virus__2123" : [ - "FJ386621" - ], - "Hepatitis_B_virus__H135" : [ - "FJ349218" - ], - "Leopards_Hill_virus_11SB23" : [ - "AB842091", - "AB842093" - ], - "Porcine_circovirus_2__CG08" : [ - "FJ644931" - ], - "Macroptilium_yellow_spot_virus__BR_Crb11_11" : [ - "KC004094" - ], - "Torque_teno_virus__tth26" : [ - "AJ620223" - ], - "Infectious_salmon_anemia_virus__810_9_99" : [ - "NC_006505" - ], - "Dengue_virus_1__DF1203" : [ - "KC759167" - ], - "Hepatitis_B_virus__M_3" : [ - "KF425555" - ], - "Hepatitis_B_virus__N203M_e405" : [ - "KJ173420" - ], - "Hepatitis_B_virus__DN171" : [ - "GU177079" - ], - "Broad_bean_wilt_virus_2__GP5" : [ - "KC625497", - "KC625511" - ], - "Human_papillomavirus_type_38__S418" : [ - "JN211196" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GBC_11_391" : [ - "KF385411" - ], - "Human_coronavirus_HKU1_N18" : [ - "DQ415914" - ], - "Hepatitis_B_virus__dww1073" : [ - "KC774450" - ], - "Bean_golden_mosaic_virus__BR_Una10_12" : [ - "KJ939830" - ], - "Dengue_virus_3__HN_2013_92" : [ - "KJ622196" - ], - "Adeno_associated_virus___5" : [ - "NC_006152", - "Y18065" - ], - "Getah_virus_HB0234" : [ - "EU015062" - ], - "Human_immunodeficiency_virus_1__5127_86" : [ - "AY835774" - ], - "Tomato_leaf_curl_Sulawesi_virus__FI09No1" : [ - "FJ237618" - ], - "Cyanophage_Syn2_Syn2" : [ - "HQ634190" - ], - "Lassa_mammarenavirus_GA391" : [ - "X52400" - ], - "Tomato_spotted_wilt_virus__10HK96" : [ - "AJ418778" - ], - "Potato_yellow_mosaic_virus" : [ - "AY965897", - "AY965898" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_XH_GD" : [ - "EU624117" - ], - "Mesorhizobium_loti_MAFF303099" : [ - "NC_002679", - "NC_002682", - "NC_002678" - ], - "Human_immunodeficiency_virus_1_SG3_BC" : [ - "HIV1SG3X" - ], - "Tomato_yellow_leaf_curl_virus_Israel_IL_CR_5241_14_2012" : [ - "KF533857" - ], - "Turnip_mosaic_virus__PRT1" : [ - "AB701729" - ], - "Human_bocavirus_GZ2010_1" : [ - "JN128956" - ], - "Hepatitis_C_virus_subtype_3g__HCV_3g_GB_BID_G1243" : [ - "JX227954" - ], - "Bluetongue_virus_BN96_16" : [ - "JN671908", - "JN671911", - "JN671914", - "JN671909", - "JN671907", - "JN671910", - "JN671912", - "JN671906", - "JN671913", - "JN671915" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9429_2013" : [ - "KJ643506" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C61" : [ - "KJ019040" - ], - "Heliothis_virescens_ascovirus_3e" : [ - "NC_009233" - ], - "Dengue_virus_1__DENV_1_NI_BID_V610_2005" : [ - "FJ024481" - ], - "Psittacine_adenovirus_3__HKU_Parrot19" : [ - "NC_025962" - ], - "Tomato_leaf_curl_China_betasatellite__G35" : [ - "AJ704605" - ], - "Borrelia_duttonii_Ly" : [ - "NC_011249", - "NC_011256", - "NC_011248", - "NC_011259", - "NC_011262", - "NC_011245", - "NC_011265", - "NC_011229", - "NC_011257", - "NC_011251", - "NC_011250", - "NC_011264", - "NC_011226", - "NC_011254", - "NC_011261", - "NC_011247", - "NC_011224" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__0203" : [ - "KF444091" - ], - "Duck_circovirus__DuCV_Fujian_2011" : [ - "KF726087" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_L53_2010" : [ - "JF519618" - ], - "Amycolicicoccus_subflavus_DQS3_9A1" : [ - "NC_015561", - "NC_015564", - "NC_015560" - ], - "Hepatitis_C_virus_JT" : [ - "HPCJTA" - ], - "Chlamydia_trachomatis_G_9768" : [ - "NC_017429" - ], - "Human_bocavirus__GZ4785" : [ - "JN794565" - ], - "Capsicum_chlorosis_virus__AIT" : [ - "NC_008302", - "NC_008301", - "NC_008303" - ], - "Rickettsia_rickettsii_Hauke" : [ - "NC_016911" - ], - "Parrot_hepatitis_B_virus__PL" : [ - "NC_016561" - ], - "Human_papillomavirus_type_68b" : [ - "FR751039" - ], - "Yellow_fever_virus_BeH463676" : [ - "JF912184" - ], - "African_horse_sickness_virus__RSArrah_03" : [ - "KF446258", - "KF446267" - ], - "Enterococcus_faecalis_D32" : [ - "NC_018221", - "NC_018223", - "NC_018222" - ], - "Echovirus_E11__HUN_1108" : [ - "AJ577589" - ], - "Foot_and_mouth_disease_virus___type_O__IRN_073_2001" : [ - "JF749851" - ], - "Hepatitis_B_virus__QH_79" : [ - "JF491454" - ], - "Hepatitis_B_virus__P41" : [ - "AB493830", - "GQ477480" - ], - "Usutu_virus_V23" : [ - "KJ438732" - ], - "Columbid_circovirus__US_002180" : [ - "DQ915962" - ], - "Tomato_leaf_curl_New_Delhi_virus__potato___GWA_5" : [ - "KC874496", - "KC874504" - ], - "Tobacco_mosaic_virus__Xiongfan_2" : [ - "HE818419" - ], - "Hepatitis_B_virus__Z3_1" : [ - "GQ227692" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Octa_alpha_21" : [ - "EU384643" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C80" : [ - "KJ019053" - ], - "Human_immunodeficiency_virus_1__03ZAPS021MB1" : [ - "DQ369978" - ], - "Hepatitis_B_virus__HBV2" : [ - "KC875314" - ], - "Duck_egg_drop_syndrome_virus_JXSP" : [ - "JQ920423" - ], - "Porcine_circovirus_2_GD012" : [ - "KM880086" - ], - "Human_rotavirus_A_1151_stool" : [ - "AJ236770" - ], - "Variola_virus_Bangladesh_1974__Solaiman" : [ - "DQ441422" - ], - "Human_poliovirus_1_NIE1018361" : [ - "KJ170444" - ], - "Dengue_virus_3__DENV_3_WS_BID_V2973_1995" : [ - "FJ898456" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0087" : [ - "KP759647" - ], - "Kyzylagach_virus_LEIV_65A" : [ - "KF981618" - ], - "Newcastle_disease_virus" : [ - "AX008510", - "Y18898", - "BD218398" - ], - "Dengue_virus_3__DENV_3_NI_BID_V3057_2008" : [ - "GQ199861" - ], - "Porcine_circovirus_2__HN5_1_401" : [ - "KC473167" - ], - "Torque_teno_sus_virus_1a__471819" : [ - "GU188045" - ], - "Hepatitis_B_virus__S737" : [ - "FJ386644" - ], - "Human_herpesvirus_5_BE_1_2011" : [ - "KP745650" - ], - "Hepatitis_B_virus__GaziantepLCC7" : [ - "AB674418" - ], - "Hepatitis_B_virus__14D14HCC" : [ - "AB014373" - ], - "Tomato_golden_mottle_virus__Rioverde_SLP2" : [ - "EF501976" - ], - "Hepatitis_delta_virus_dFr48" : [ - "AJ584847" - ], - "Rotavirus_G9_KC268" : [ - "AJ491175" - ], - "Porcine_circovirus_2__P902NH" : [ - "JX099785" - ], - "Cucumber_mosaic_virus__CMV_St" : [ - "KM047510", - "KM047509" - ], - "Human_papillomavirus_type_23" : [ - "HPU31781" - ], - "Pseudomonas_stutzeri_RCH2" : [ - "NC_019939", - "NC_019936", - "NC_019937", - "NC_019938" - ], - "Dengue_virus_2__DKD811" : [ - "FJ467493" - ], - "Hepatitis_B_virus__490A_3" : [ - "EU871994" - ], - "Porcine_circovirus_2__HL2" : [ - "HQ202973" - ], - "Pectobacterium_phage_PM1" : [ - "NC_023865" - ], - "Norovirus_Hu_GII_20064_2009_VNM_Hu_GII_20064_2009_VNM" : [ - "KC409246" - ], - "Hepatitis_B_virus__D117" : [ - "EU939656" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_CFI1669_2012_A" : [ - "KJ627413" - ], - "Bacillus_amyloliquefaciens_IT_45" : [ - "NC_020273", - "NC_020272" - ], - "Vibrio_phage_ICP3_2008_A" : [ - "HQ641343" - ], - "Lactococcus_phage_P092" : [ - "NC_024203" - ], - "Hendra_virus_HeV_Australia_Horse_2007_Peachester" : [ - "HM044319" - ], - "Acinetobacter_baumannii_1656_2" : [ - "NC_017163", - "NC_017162", - "NC_017164" - ], - "Hepatitis_B_virus__2476" : [ - "FJ386651" - ], - "Apple_mosaic_virus__Trapez_4" : [ - "HG328283" - ], - "Human_parainfluenza_virus_3_HPIV3_MEX_1077_2004" : [ - "KF687319" - ], - "Grapevine_rupestris_stem_pitting_associated_virus" : [ - "NC_001948", - "AF026278" - ], - "Murine_coronavirus_MHV_BHKR_lab_USA_infA59_H126A_2012_H126A" : [ - "KF268336" - ], - "Zaire_ebolavirus__H_sapiens_tc_GIN_14_WPG_C15" : [ - "KP096422" - ], - "Ustilaginoidea_virens_RNA_virus_M__GX_1" : [ - "NC_025367" - ], - "Pigeonpea_sterility_mosaic_virus_II_Patancheru__HYD__Chevela" : [ - "NC_026471" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1192_2007" : [ - "EU569692" - ], - "Tomato_yellow_leaf_curl_virus___Mild__DO_Azua_TY5_01_2011" : [ - "KJ913682" - ], - "Porcine_circovirus_2_09FJ" : [ - "HQ395025" - ], - "Porcine_circovirus_2__SC_10" : [ - "HM776449" - ], - "Encephalomyocarditis_virus_GXLC" : [ - "FJ897755" - ], - "Hepatitis_B_virus__CX063M_e308" : [ - "KJ173294" - ], - "Norovirus_Hu_GII_4_Osaka2_2008_JP_Hu_GII_4_Osaka2_2008_JP" : [ - "AB541322" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA116" : [ - "KF670676" - ], - "Human_herpesvirus_1__HSV_1_0116209_India_2011" : [ - "KJ847330" - ], - "Hepatitis_B_virus__I44" : [ - "FJ562231" - ], - "Hepatitis_E_virus__JSS_Oka04L" : [ - "AB291954" - ], - "Porcine_circovirus_2_PT_42034_05" : [ - "HQ831529" - ], - "Dehalococcoides_BAV1" : [ - "NC_009455" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__JS2011_013_1" : [ - "KC505128", - "KC505127", - "KC505126" - ], - "Brucella_melitensis_NI" : [ - "NC_017248", - "NC_017283" - ], - "Wheat_streak_mosaic_virus__MON96" : [ - "AF511630" - ], - "Chikungunya_virus_HB78" : [ - "HM045822" - ], - "Bluetongue_virus_9__2766" : [ - "JX272538" - ], - "Human_papillomavirus_type_35__Qv19086" : [ - "HQ537710" - ], - "Dengue_virus_1__DENV_1_VN_BID_V972_2007" : [ - "EU482516" - ], - "Human_papillomavirus_type_35__Z147" : [ - "HQ537728" - ], - "Soybean_mosaic_virus__413" : [ - "GU015011" - ], - "Beet_mild_yellowing_virus__EK" : [ - "KC121026" - ], - "Hepatitis_B_virus__1969_SE_BRA" : [ - "KJ854697" - ], - "JC_polyomavirus__FL_7" : [ - "AB127349" - ], - "Rehmannia_mosaic_virus__Japanese" : [ - "AB628188" - ], - "Sandfly_fever_Sicilian_virus_Sabin_Oct_85" : [ - "AJ811547" - ], - "Hepatitis_B_virus__M42" : [ - "GQ924624" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10FS_GD" : [ - "JX192634" - ], - "Hepatitis_B_virus__CONTROL32" : [ - "JQ801524" - ], - "Hepatitis_B_virus__Ag14" : [ - "KJ843176" - ], - "Mycobacterium_phage_Whirlwind" : [ - "NC_022052" - ], - "Wheat_yellow_mosaic_virus__Yangzhou" : [ - "AJ131982", - "AJ131981" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_222_2011" : [ - "KJ686257" - ], - "Human_rhinovirus_A9__F01" : [ - "FJ445114" - ], - "Rhinovirus_C__2536" : [ - "KF958311" - ], - "Mycobacterium_phage_BPs" : [ - "NC_010762" - ], - "Astrovirus_VA3__VA3_human_Vellore_28054_2005" : [ - "NC_019026" - ], - "Wheat_dwarf_India_virus__Wellington" : [ - "JQ361911" - ], - "Human_immunodeficiency_virus_1__VI961" : [ - "AF076998" - ], - "Coxsackievirus_A12_QD_HDH507_SD_CHN_2011" : [ - "KF422143" - ], - "European_mountain_ash_ringspot_associated_virus__E53117" : [ - "HG799726" - ], - "Sweet_potato_leaf_curl_virus__F_p3" : [ - "FJ515898" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4850_2009" : [ - "HQ705623" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLA4571_2008" : [ - "KJ672529" - ], - "Foot_and_mouth_disease_virus___type_A_A4_West_Germany_a4_W_Germany_iso42" : [ - "AY593777" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5097_2009" : [ - "JF920399" - ], - "Tomato_yellow_leaf_curl_virus__Fz01" : [ - "KP685598" - ], - "Streptococcus_sanguinis_SK36" : [ - "NC_009009" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2747_2007" : [ - "GQ199775" - ], - "Subterranean_clover_mottle_virus_p23" : [ - "NC_004346" - ], - "Human_poliovirus_1__DOR01001C2" : [ - "AF405673" - ], - "Dengue_virus_1_HawO3663" : [ - "DQ672564" - ], - "Burkholderia_phage_BcepMigl" : [ - "NC_019917" - ], - "Chicken_picornavirus_3__45C" : [ - "NC_024767" - ], - "Pepper_yellow_vein_Mali_virus_Mali_Burkina_Faso_Bazega_sweet_pepper_2007" : [ - "FM876847" - ], - "West_Nile_virus__WNV_1_US_BID_V4687_2003" : [ - "HM756659" - ], - "Hepatitis_B_virus__M57" : [ - "GQ924634" - ], - "Dengue_virus_4__Br246RR_10" : [ - "JN983813" - ], - "East_African_cassava_mosaic_virus_KE2__EACMV_KE2_K197" : [ - "AJ704973", - "AJ717555" - ], - "Hepatitis_B_virus__PNF4950" : [ - "KF779347" - ], - "Potato_virus_Y__IUNG_1" : [ - "JF927749" - ], - "Banana_bunchy_top_virus_V_1" : [ - "EF095164", - "EF095166", - "EF095163", - "EF095162", - "EF095161", - "EF095165" - ], - "Corynebacterium_diphtheriae_CDCE_8392" : [ - "NC_016785" - ], - "Hepatitis_B_virus__cww1012" : [ - "KC774244" - ], - "Wheat_dwarf_virus__YNKM07_38" : [ - "KJ536144" - ], - "Tomato_yellow_leaf_curl_virus__HB_WH2" : [ - "KC312660" - ], - "Sweet_potato_golden_vein_associated_virus_Rondonia_SPGVaV_RO_BR_OPO_08" : [ - "HQ393454" - ], - "Papaya_leaf_curl_betasatellite__Palampur" : [ - "LN831955" - ], - "Squash_leaf_curl_China_virus__SLCCNV__Pum_IARI" : [ - "JN587811", - "JN624306" - ], - "Duck_hepatitis_A_virus_1__Du_CH_JS2013" : [ - "KP721458" - ], - "Human_metapneumovirus_HMPV_USA_TN_97_235_1997_B" : [ - "KC562228" - ], - "Squash_leaf_curl_virus__IL1_8" : [ - "KM595095" - ], - "Human_bocavirus__TW141_07" : [ - "EU984242" - ], - "Avian_orthoreovirus_G_98" : [ - "EF030497", - "DQ643975" - ], - "Infectious_bronchitis_virus_ck_CH_LHLJ_090908" : [ - "KJ425503" - ], - "Haemophilus_phage_HP1_HP1c1" : [ - "NC_001697" - ], - "Okra_mottle_virus_BR_Sag8_Soy_08" : [ - "FJ686695", - "FJ686696" - ], - "Waterbuck_coronavirus_US_OH_WD358_TC_1994" : [ - "FJ425184" - ], - "Dengue_virus_2_44" : [ - "AF204177" - ], - "Hepatitis_B_virus__280" : [ - "JQ040147" - ], - "Helicoverpa_armigera_stunt_virus__black_mountain" : [ - "NC_001982" - ], - "Hepatitis_B_virus__D32" : [ - "EU939643" - ], - "Wheat_dwarf_virus__GSTS07_2" : [ - "KJ536081" - ], - "Human_bocavirus__HZ1202" : [ - "KP710206" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_GGC_11_1213" : [ - "KF385405" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_189_2011" : [ - "KJ686232" - ], - "Haliangium_ochraceum_DSM_14365" : [ - "NC_013440" - ], - "La_Crosse_virus" : [ - "BLCNCNP", - "BLCSRNA", - "BLCG2NSM" - ], - "Hepatitis_B_virus__Vac01_M_m601" : [ - "KJ173391" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FPP00438_2011" : [ - "KJ627374" - ], - "Japanese_encephalitis_virus_JaOS75833" : [ - "AB569985" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0028" : [ - "KP759683" - ], - "West_Nile_virus__WNV_1_US_BID_V4568_2003" : [ - "JF920728" - ], - "Spirochaeta_thermophila_DSM_6578" : [ - "NC_017583" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ03B11_2004" : [ - "JF909067" - ], - "Broad_bean_wilt_virus_2__Ty" : [ - "AB746939", - "AB746938" - ], - "Rotavirus_G4__Rota_551" : [ - "AB012073" - ], - "Mycobacterium_phage_SiSi" : [ - "NC_021301" - ], - "Dengue_virus_2__DENV2_CN_GZ32_2010" : [ - "KP723479" - ], - "Porcine_circovirus_2__BSC_PCV2" : [ - "KF695388" - ], - "Porcine_circovirus_2_YZ1011" : [ - "JX982228" - ], - "Porcine_circovirus_2__NB06" : [ - "FJ644923" - ], - "Human_herpesvirus_5_BE_11_2011" : [ - "KP745684" - ], - "JC_polyomavirus__JCV135_44" : [ - "JF424869" - ], - "Hepatitis_B_virus__MC02" : [ - "EU547559" - ], - "Human_poliovirus_1_CHN8233c_GZ_CHN_2004" : [ - "FJ769382" - ], - "Human_immunodeficiency_virus_1__X1670" : [ - "DQ979024" - ], - "Japanese_encephalitis_virus__Vellore_P20778" : [ - "AF080251" - ], - "Cucumber_green_mottle_mosaic_virus_watermelon" : [ - "AB015146" - ], - "Hepatitis_B_virus_WZJ942" : [ - "AY220704" - ], - "Oligotropha_carboxidovorans_OM5" : [ - "NC_011386" - ], - "Mycobacterium_phage_Bxb1" : [ - "NC_002656" - ], - "Human_immunodeficiency_virus_1__99ZALT46" : [ - "EU293450" - ], - "Human_immunodeficiency_virus_1___285" : [ - "AB428558" - ], - "Eubacterium_eligens_ATCC_27750" : [ - "NC_012782", - "NC_012780", - "NC_012778" - ], - "Hepatitis_B_virus__PRC6268" : [ - "KF779381" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_21__AHEaCV_21_NZ_2050TU_2012" : [ - "NC_026648" - ], - "Mumps_virus_Leningrad_3" : [ - "JF727652", - "JF727651" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1001_2006" : [ - "EU482446" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota15" : [ - "KP283405" - ], - "Human_poliovirus_1_NIE1118399" : [ - "KJ170499" - ], - "Human_adenovirus_41_SaP3_3F" : [ - "AB728839" - ], - "Cucumber_green_mottle_mosaic_virus_SP_Alm08" : [ - "GQ411361" - ], - "Dengue_virus_2__MD1279" : [ - "FM210242" - ], - "Pseudomonas_phage_NH_4" : [ - "NC_019451" - ], - "BK_polyomavirus__J2B_9" : [ - "AB301100" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_108_2012" : [ - "KJ686214" - ], - "Hepatitis_C_virus_subtype_6a_6a66" : [ - "DQ480519" - ], - "Jatropha_mosaic_virus__DO_Clavellina_Cl_10_2010" : [ - "KJ174335", - "KJ174331" - ], - "Hepatitis_B_virus__490_01_1" : [ - "EU871987" - ], - "Wheat_dwarf_virus__HNZZ08_1" : [ - "KJ536092" - ], - "Mycobacterium_phage_island3_island3" : [ - "HM152765" - ], - "Vibrio_phage_nt_1" : [ - "NC_021529" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_16_DRC" : [ - "JX458839" - ], - "Macroptilium_yellow_spot_virus__BR_Sti26_11" : [ - "KJ939883" - ], - "Murine_norovirus_GV_NIH_A114_2006_USA_GV_NIH_A114_2006_USA" : [ - "JF320652" - ], - "Dengue_virus_1_D1_SG_05K3297DK1_2005" : [ - "EU081236" - ], - "Muscovy_duck_circovirus__Zhejiang" : [ - "GQ334371" - ], - "South_African_cassava_mosaic_virus__MG_MG379A6_11" : [ - "KJ888001" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1849_2007" : [ - "FJ410216" - ], - "Newcastle_disease_virus_NDV2K17_Quail_Chennai_India_1998" : [ - "HQ902590" - ], - "Zymomonas_mobilis_CP4___NRRL_B_14023" : [ - "NC_022913", - "NC_022910", - "NC_022901", - "NC_022900", - "NC_022903", - "NC_022902" - ], - "Hepatitis_delta_virus_Miyako_JA_M4" : [ - "AB118820" - ], - "Tomato_spotted_wilt_virus__p202_3WT" : [ - "HQ830188", - "KJ575619", - "HQ830187" - ], - "Staphylococcus_pseudintermedius_HKU10_03" : [ - "NC_014925" - ], - "Cotton_leaf_curl_Multan_betasatellite__Lat_beta_11" : [ - "EU384591" - ], - "Norovirus_Hu_GII_4_Aichi5_2008_JP_Hu_GII_4_Aichi5_2008_JP" : [ - "AB541210" - ], - "Newcastle_disease_virus__ndv40_sarsa_04_2013" : [ - "KM056348" - ], - "Dengue_virus_3__DENV_3_US_BID_V1480_2003" : [ - "EU687197" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4037_2008" : [ - "GU131794" - ], - "Hepatitis_B_virus__HBV69" : [ - "KC875293" - ], - "Variola_virus_Ethiopia_1972__Eth17_R14_1X_72_Addis" : [ - "DQ441425" - ], - "Hepatitis_B_virus__C45" : [ - "EU939547" - ], - "Cotton_leaf_curl_Multan_betasatellite__GD01" : [ - "KP762787" - ], - "Mokola_virus__RV1035" : [ - "KF155006" - ], - "Duck_hepatitis_B_virus__D1" : [ - "AY294029" - ], - "Porcine_circovirus_2_09CQ" : [ - "HQ395024" - ], - "Human_immunodeficiency_virus_1__04ZASK169B1" : [ - "DQ396381" - ], - "Human_immunodeficiency_virus_1__F7174" : [ - "DQ886032" - ], - "Hepatitis_B_virus__06115" : [ - "AJ627215" - ], - "Maize_streak_virus__UMasin_138" : [ - "EF547094" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1547_2007" : [ - "EU677171" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140436" : [ - "KR653287" - ], - "Hepatitis_B_virus__cur1052" : [ - "KC774238" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5691_1" : [ - "KR105318" - ], - "Hepatitis_B_virus__I_T12" : [ - "GU456640" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1578_2007" : [ - "FJ024472" - ], - "Hepatitis_B_virus__cxa1586" : [ - "KC774298" - ], - "Encephalomyocarditis_virus_PV2" : [ - "X87335" - ], - "Human_adenovirus_19__AV_587" : [ - "AB448771" - ], - "Human_immunodeficiency_virus_1__ZM247F_flA2" : [ - "FJ496197" - ], - "Hepatitis_B_virus__MMA_5" : [ - "AM421533" - ], - "Dengue_virus_2__DENV_2_NI_BID_V663_2007" : [ - "EU482601" - ], - "SARS_coronavirus_ZJ01" : [ - "AY297028" - ], - "Dengue_virus_2__DENV_2_NI_BID_V673_2006" : [ - "EU482639" - ], - "Human_metapneumovirus_HMPV_AUS_141196482_2003_A" : [ - "KC562225" - ], - "Newcastle_disease_virus_go_CH_LHLJ_1_06" : [ - "KJ607169" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_LW1_13" : [ - "JQ663557" - ], - "African_cassava_mosaic_virus__MG_MG59A2_06" : [ - "KJ887878" - ], - "Tomato_yellow_leaf_curl_China_virus_satellite_DNA_beta_Dali198__Dali198" : [ - "EU365687" - ], - "Hepatitis_B_virus__T1469" : [ - "GQ205385" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00058_1999_G1P_8" : [ - "JN651779", - "JN651778", - "JN651773", - "JN651777", - "JN651772", - "JN651776", - "JN651771", - "JN651775", - "JN651774", - "JN651770", - "JN651780" - ], - "Human_papillomavirus_type_6__96" : [ - "HG793904" - ], - "Hantaan_virus__CBAa11_26" : [ - "KC576786" - ], - "Foot_and_mouth_disease_virus___type_O_O10_Philippines_o10phil76_iso76" : [ - "AY593812" - ], - "Potato_virus_Y_O_PVY_Oz" : [ - "EF026074" - ], - "Dengue_virus_1__DENV_1_IND_826883_1982" : [ - "JQ922545" - ], - "Tomato_yellow_leaf_curl_Thailand_virus_Chiang_Mai" : [ - "AY514633", - "AY514630" - ], - "Porcine_epidemic_diarrhea_virus__ISU13_22038_IA_passage3" : [ - "KF650374" - ], - "Bean_golden_mosaic_virus__BR_Cri11_12" : [ - "KJ939842" - ], - "Gossypium_punctatum_mild_leaf_curl_virus__Dav_15_B" : [ - "EU384577" - ], - "Ageratum_yellow_vein_China_betasatellite__G66" : [ - "NC_007067" - ], - "Pepino_mosaic_virus__SAR09" : [ - "HQ663890" - ], - "Hepatitis_B_virus__C152" : [ - "EU859949" - ], - "African_cassava_mosaic_virus__CF_CF100AB_07" : [ - "KJ887789" - ], - "Hepatitis_B_virus__dxn1018" : [ - "KC774471" - ], - "Human_papillomavirus_type_33__RW702" : [ - "HQ537692" - ], - "Cowpea_mottle_virus" : [ - "NC_003535" - ], - "Human_papillomavirus_type_41" : [ - "NC_001354" - ], - "Human_herpesvirus_8" : [ - "KF588566" - ], - "Rotavirus_A_RVA_Human_wt_USA_DC1127_1977_G1P_8" : [ - "KC580291", - "KC580284" - ], - "Streptomyces_collinus_Tu_365" : [ - "NC_022001", - "NC_021986", - "NC_021985" - ], - "Hepatitis_B_virus__WY_HZ_44" : [ - "JX504536" - ], - "Dengue_virus_2__ACS380" : [ - "JX286526" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD17_2013" : [ - "KM229832" - ], - "Human_immunodeficiency_virus_1__ML1974" : [ - "EU110090" - ], - "Bitter_gourd_leaf_curl_betasatellite" : [ - "NC_007655" - ], - "Simian_virus_40_B_1" : [ - "AF155359" - ], - "African_cassava_mosaic_virus__CF_CF54BE_07" : [ - "KJ887600" - ], - "Wheat_dwarf_virus__QHXN08_17" : [ - "KJ536149" - ], - "Human_poliovirus_2_USA9810768" : [ - "DQ890387" - ], - "Sweet_potato_chlorotic_stunt_virus_West_African_Sichuan_12_12" : [ - "KC888965" - ], - "Circoviridae_3_LDMD_2013" : [ - "NC_025708" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0049" : [ - "KP759717" - ], - "Dengue_virus_2_DEN2_H_IMTSSA_MART_98_703" : [ - "AF208496" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7756_2009" : [ - "KJ627315" - ], - "Sida_mosaic_Bolivia_virus_2_SM1" : [ - "KJ742421" - ], - "Human_coronavirus_OC43_OC43_human_USA_9712_31_1997" : [ - "KF530080" - ], - "Jatropha_mosaic_virus__DO_Aguacatico_Ag_2_2013" : [ - "KJ174333", - "KJ174337" - ], - "Hepatitis_C_virus_subtype_1a__BR554_P16_6_24_04" : [ - "EF032889" - ], - "Tomato_chino_La_Paz_virus__cherryUABCS" : [ - "NC_005843" - ], - "African_horse_sickness_virus_4" : [ - "AHVOCPVP2A", - "A27209" - ], - "South_African_cassava_mosaic_virus__MG_MG467A2_11" : [ - "KJ887720" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Dabwali1_2010" : [ - "JF502393" - ], - "Porcine_stool_associated_circular_virus_3__4L5" : [ - "KC545229" - ], - "Human_papillomavirus_type_6__61" : [ - "HG793869" - ], - "Hepatitis_B_virus_B0503102_DIL_F" : [ - "AP011094" - ], - "Coxsackievirus_A24_China_GD01_2010" : [ - "JF742577" - ], - "Helicobacter_mustelae_12198" : [ - "NC_013949" - ], - "Human_bocavirus__HK19" : [ - "EF450735" - ], - "Wheat_dwarf_virus____Sanxi_Yangling___SXYL05_6" : [ - "EF536882" - ], - "Dengue_virus_3_den3_98" : [ - "AY858039" - ], - "Feline_coronavirus_UU8_UU8" : [ - "FJ938055" - ], - "Bhendi_yellow_vein_India_virus__India_Kolkata_OY66_2005___OY66" : [ - "GU112025" - ], - "Human_papillomavirus_type_16__JP1556" : [ - "AB818691" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LGD_100916" : [ - "JF828986" - ], - "Rubella_virus_RVi_Shandong_CHN_15_00_1_1F" : [ - "JQ624625" - ], - "Sandfly_fever_Naples_virus" : [ - "HM566170", - "HM566172", - "HM566171" - ], - "Human_papillomavirus_type_68__Qv30698" : [ - "KC470278" - ], - "Vaccinia_virus_Acambis" : [ - "AY313847", - "AY313848" - ], - "Hepatitis_B_virus__P20" : [ - "GQ477470", - "JX898693", - "EU859914" - ], - "Hepatitis_B_virus__TK64" : [ - "JF754592" - ], - "Human_papillomavirus_type_16_CU13" : [ - "JQ004097" - ], - "Roundleaf_bat_hepatitis_B_virus__RBHBV_GB09_256_Hip_rub_GAB_2009" : [ - "NC_024443" - ], - "African_horse_sickness_virus_serotype_4_South_African" : [ - "AJ007305" - ], - "Cucumber_green_mottle_mosaic_virus__BG" : [ - "FJ654659" - ], - "Rachiplusia_ou_MNPV" : [ - "NC_004323" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLU7204_2007" : [ - "KJ672565" - ], - "Enterovirus_C_Human_poliovirus_1_Mahoney" : [ - "NC_002058" - ], - "Chikungunya_virus_RGCB356_KL08" : [ - "GQ428215" - ], - "Okra_enation_leaf_curl_alphasatellite" : [ - "NC_019944" - ], - "Human_immunodeficiency_virus_1__02ZMJC" : [ - "AB254155" - ], - "Candidatus_Caldiarchaeum_subterraneum" : [ - "NC_022786" - ], - "Simian_adenovirus_45" : [ - "FJ025901" - ], - "Mycobacterium_phage_Cooper" : [ - "NC_008195" - ], - "Xanthomonas_oryzae_PXO99A" : [ - "NC_010717" - ], - "Human_immunodeficiency_virus_1___398" : [ - "AB428560" - ], - "Hepatitis_B_virus__N207M_e413" : [ - "KJ173443" - ], - "Lagos_bat_virus__KE131" : [ - "EU259198" - ], - "BK_polyomavirus__BKV_CAP_m18" : [ - "AY628224" - ], - "Newcastle_disease_virus__mixed_species_U_S__Largo_71" : [ - "AY562990" - ], - "Dengue_virus_2__DENV_2_US_BID_V1427_1999" : [ - "EU677144" - ], - "Norovirus_Hu_GII_20448_2010_VNM_Hu_GII_20448_2010_VNM" : [ - "KC409298" - ], - "Ralstonia_phage_RSB2_RSB2" : [ - "NC_023736" - ], - "Human_papillomavirus_type_6__20" : [ - "HG793828" - ], - "Hepatitis_B_virus__6_2646" : [ - "JX096957" - ], - "Melon_chlorotic_mosaic_virus__VE10_191" : [ - "KF670641", - "KF670640" - ], - "Dengue_virus_1__DENV_1_NI_BID_V621_2005" : [ - "FJ410290" - ], - "Crinalium_epipsammum_PCC_9333" : [ - "NC_019734", - "NC_019754", - "NC_019735", - "NC_019755", - "NC_019756", - "NC_019736", - "NC_019737", - "NC_019753", - "NC_019733" - ], - "Hepatitis_E_virus__JTF_Yamagu11" : [ - "AB698654" - ], - "Hepatitis_B_virus__DEN5770" : [ - "KF779216" - ], - "Vibrio_phage_CTX" : [ - "NC_015209" - ], - "Bat_polyomavirus_5a__5a" : [ - "NC_026768" - ], - "Streptomyces_phage_VWB" : [ - "NC_005345" - ], - "Synechococcus_phage_S_CBP3" : [ - "NC_025461" - ], - "Plum_pox_virus__BY101" : [ - "HQ840517" - ], - "Human_papillomavirus_type_16_CU5" : [ - "FJ610150" - ], - "Lymphocystis_disease_virus_1" : [ - "NC_001824" - ], - "Klebsiella_pneumoniae_HS11286" : [ - "NC_016841", - "NC_016846", - "NC_016839", - "NC_016845", - "NC_016840", - "NC_016847", - "NC_016838" - ], - "Enterobacteria_phage_phiX174__CGGhi" : [ - "AF299304" - ], - "Foot_and_mouth_disease_virus_O_UKG_5681_2001_UKG_5681_2001" : [ - "EF552697" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD240_2013" : [ - "KM229881" - ], - "Human_bocavirus__HK9" : [ - "EF450725" - ], - "Hepatitis_B_virus__HCUCH15" : [ - "HM585200" - ], - "Cauliflower_mosaic_virus__TUR239" : [ - "AB863182" - ], - "Hepatitis_B_virus__307000449" : [ - "JN792912" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD206_2013" : [ - "KM229857" - ], - "Human_papillomavirus_type_18__Qv28978" : [ - "KC470211" - ], - "Hepatitis_B_virus__I211" : [ - "FJ562318" - ], - "Hepatitis_B_virus_274_16" : [ - "KR013900" - ], - "Ralstonia_phage_PE226__PE226" : [ - "NC_015297" - ], - "Chamaesiphon_minutus_PCC_6605" : [ - "NC_019698", - "NC_020053", - "NC_019697" - ], - "Shewanella_baltica_OS678" : [ - "NC_016905", - "NC_016901" - ], - "Hepatitis_B_virus_MEXICO8_G" : [ - "AB375165" - ], - "Human_papillomavirus_type_11__JO_RRP_1" : [ - "HE574701" - ], - "Guanarito_mammarenavirus_CVH_950801" : [ - "AY572557" - ], - "Feldmannia_species_virus__FsV_158" : [ - "NC_011183" - ], - "Porcine_circovirus_2_NIVS_5" : [ - "HQ378160" - ], - "West_Nile_virus_NY99_flamingo382_99" : [ - "AF196835" - ], - "Cotton_leaf_curl_Burewala_virus____India_Vehari_2006" : [ - "AM774303", - "AM774300", - "AM774298", - "AM774301", - "AM774302", - "AM774294", - "AM774295", - "AM774304", - "AM774299", - "AM774305", - "AM774297", - "AM774296" - ], - "Human_enterovirus_C99__KSSC_ALXHH01F_XJ_CHN_2011" : [ - "KF129412" - ], - "Bovine_foamy_virus" : [ - "NC_001831" - ], - "BK_polyomavirus__SJH_LG_308" : [ - "JN192438" - ], - "Hepatitis_B_virus__patient30" : [ - "EU919172", - "EU919173" - ], - "Deinococcus_peraridilitoris_DSM_19664" : [ - "NC_019790", - "NC_019793", - "NC_019789" - ], - "Turnip_mosaic_virus__DEU7" : [ - "AB701695" - ], - "Human_cyclovirus_VS5700009__VS5700009" : [ - "NC_021568" - ], - "Human_poliovirus_1_NIE0918313" : [ - "KJ170528" - ], - "Bluetongue_virus_16__8054" : [ - "DQ191260" - ], - "Hepatitis_C_virus__QC361" : [ - "JF735136" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_MLI_2014_Makona_Mali_DPR1" : [ - "KP260799" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_218_2011" : [ - "KJ686218" - ], - "Streptomyces_venezuelae_ATCC_10712" : [ - "NC_018750" - ], - "Alcelaphine_herpesvirus_2__topi_AlHV_2" : [ - "NC_024382" - ], - "Hepatitis_B_virus_1491_19" : [ - "KR014090" - ], - "Turnip_yellow_mosaic_virus__Blue_Lake" : [ - "AF035403" - ], - "Hepatitis_B_virus__cxn1006" : [ - "KC774333" - ], - "Hepatitis_B_virus__cww2155" : [ - "KC774278" - ], - "Simian_hemorrhagic_fever_virus_LVR_42_0_M6941_A095_d7" : [ - "KM371106" - ], - "Plum_pox_virus_PPV_An_Marcus_ancestor_AL11pl" : [ - "HF674399" - ], - "WU_Polyomavirus__B8649" : [ - "GU296386" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pakistan_Multan_2007" : [ - "HF568784" - ], - "Bat_hepatitis_virus__M086" : [ - "JX941468" - ], - "Synechococcus_phage_S_MbCM25" : [ - "KF156339" - ], - "Duck_circovirus__D12_MR_021" : [ - "KC851823" - ], - "Hepatitis_B_virus__LAMr_Pt__13_Adefovir_treated_Pt__22" : [ - "AB367404" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0071" : [ - "KP759736" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V389_2006" : [ - "EU482842" - ], - "West_Nile_virus__WNV_USA_BID_G15499" : [ - "JX503090" - ], - "JC_polyomavirus__KF" : [ - "AB103422" - ], - "Maize_streak_virus__MSV_A_NG_Job_N20a_2007" : [ - "HQ693385" - ], - "Dengue_virus_3__HN_2013_21" : [ - "KJ622193" - ], - "Rhodopseudomonas_palustris_TIE_1" : [ - "NC_011004" - ], - "Porcine_circovirus_2_HN08" : [ - "FJ608546" - ], - "Myxoma_virus_Aust_Woodstock_6_11_95_WS6_1071" : [ - "JX565580" - ], - "Hepatitis_B_virus__Saboo" : [ - "HQ603066" - ], - "Rabies_virus__MEXSK3636" : [ - "JQ685975" - ], - "Rotavirus_C_Bristol_4077_89" : [ - "NC_007570", - "NC_007569" - ], - "Pseudomonas_monteilii_SB3078" : [ - "NC_023075" - ], - "Porcine_circovirus_2__SHC" : [ - "DQ104421" - ], - "SFTS_virus_HNXY_157_HNXY157" : [ - "KC292331" - ], - "Mycobacterium_phage_Dumbo" : [ - "NC_021306" - ], - "Human_bocavirus__RUS_NSC_11_N2655" : [ - "KJ649741" - ], - "Tembusu_virus_ZJ_407" : [ - "JQ314464" - ], - "Obuda_pepper_virus_Ob" : [ - "MTVNGHYPER", - "NC_003852" - ], - "Listeria_phage_LMTA_34" : [ - "KJ586794" - ], - "Human_poliovirus_1_NIE1018381" : [ - "KJ170522" - ], - "Dengue_virus_2__MAR_Nov_05" : [ - "EU920843" - ], - "Caprine_rotavirus_A__XL" : [ - "JQ004974", - "JQ004970", - "JQ004971", - "JQ004975", - "JQ004973", - "JQ004977", - "JQ004980", - "JQ004978", - "JQ004979", - "JQ004972" - ], - "Gramella_forsetii_KT0803" : [ - "NC_008571" - ], - "Hepatitis_B_virus__D_NZL_CH02_1999" : [ - "HQ700448" - ], - "Cryphonectria_hypovirus_1__Euro7" : [ - "AF082191" - ], - "Okra_leaf_curl_disease_associated_sequence" : [ - "AJ316029", - "AJ316031", - "AJ316030" - ], - "Beak_and_feather_disease_virus__TW_NCHU1" : [ - "KC980909" - ], - "Grapevine_fanleaf_virus__3138_07" : [ - "JX559643" - ], - "Classical_swine_fever_virus__RUCSFPLUM" : [ - "AY578688" - ], - "Duck_circovirus__LY0701" : [ - "EU022374" - ], - "Acidimicrobium_ferrooxidans_DSM_10331" : [ - "NC_013124" - ], - "Gossypium_mustilinum_symptomless_alphasatellite" : [ - "KF471042", - "KF471041" - ], - "Foot_and_mouth_disease_virus___type_C__C_S8p260p3d" : [ - "DQ409185" - ], - "Hepatitis_B_virus__I1_M04_3718" : [ - "FJ023662" - ], - "Human_papillomavirus_type_11__LP146" : [ - "HE611265" - ], - "Tomato_leaf_curl_Philippines_virus__P41" : [ - "EU487030" - ], - "Norovirus_Hu_GII_4_Hiroshima4_2008_JP_Hu_GII_4_Hiroshima4_2008_JP" : [ - "AB541258" - ], - "Classical_swine_fever_virus_KPP_93" : [ - "LC016722" - ], - "Pseudomonas_fulva_12_X" : [ - "NC_015556" - ], - "Simian_T_lymphotropic_virus_3_CTO_NG409" : [ - "AY222339" - ], - "Hepatitis_B_virus__NB023M_M23" : [ - "KJ173306" - ], - "Culex_flavivirus_Toyama1849" : [ - "AB701769" - ], - "Pseudomonas_aeruginosa_PA7" : [ - "NC_009656" - ], - "Hepatitis_B_virus__C200" : [ - "EU939605" - ], - "Malvastrum_yellow_vein_betasatellite__Y189" : [ - "AJ971459" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2195_2001" : [ - "FJ639765" - ], - "Norovirus_Hu_GII_4_Hiroshima2_2007_JP_Hu_GII_4_Hiroshima2_2007_JP" : [ - "AB541253" - ], - "Hepatitis_B_virus__WY_HZ_58" : [ - "JX429908" - ], - "Hepatitis_B_virus__dlz2091" : [ - "KC774426" - ], - "Mycobacterium_phage_Qyrzula" : [ - "NC_008204" - ], - "Classical_swine_fever_virus_JL1_06" : [ - "EU497410" - ], - "Bean_golden_mosaic_virus__BR_Flt1_11" : [ - "KJ939766" - ], - "Rabies_virus__R2013_01" : [ - "KF620489" - ], - "Papaya_leaf_crumple_virus_Panipat_8__India_Panipat_Papaya_2008___Panipat_8__IN_Pani_Pap_08" : [ - "NC_014707" - ], - "Avian_leukosis_virus_GDKP1202" : [ - "JX453210" - ], - "Hepatitis_B_virus__209_1" : [ - "GU434373" - ], - "Hepatitis_B_virus__No16" : [ - "AB697499" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2721_2006" : [ - "FJ882544" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9492_2013" : [ - "KJ643550" - ], - "JC_polyomavirus__FC_3" : [ - "AB103409" - ], - "Turnip_mosaic_virus__Eru1D" : [ - "AB701705" - ], - "Bluetongue_virus_2__Chittoor_2_1995" : [ - "DQ399837" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__S1J12" : [ - "JN053454" - ], - "Tomato_yellow_leaf_curl_China_virus__Y194___Y194" : [ - "AJ971265" - ], - "Dengue_virus_2__DENV_2_PE_FPI01851_2011" : [ - "KC294213" - ], - "Avian_adeno_associated_virus_ATCC_VR_865_VR_865" : [ - "AY629582" - ], - "Zucchini_yellow_mosaic_virus__G71" : [ - "JN192416" - ], - "Plum_pox_virus_Sweet_Cherry" : [ - "Y09851" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_90I_229A_01_1990" : [ - "KJ723473" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140590" : [ - "KR653278" - ], - "South_African_cassava_mosaic_virus__MG_MG123B3_09" : [ - "KJ887917" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d3om5" : [ - "JF292906" - ], - "Hepatitis_B_virus_IG29227" : [ - "AF160501" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_11_2012" : [ - "KJ672444" - ], - "JC_polyomavirus__GL_5" : [ - "AB195640" - ], - "Porcine_epidemic_diarrhea_virus__AVCT12" : [ - "LC053455" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1846_2008" : [ - "FJ461310" - ], - "Mammalian_orthoreovirus_3_Abney" : [ - "GU589578", - "GU589581", - "GU589582", - "GU589584", - "GU589580", - "GU589577", - "GU589579", - "GU589583", - "GU589586", - "GU589585" - ], - "Dengue_virus_4_H778504_DENV_4_BEL83804" : [ - "JQ513336" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Hodzha" : [ - "AY223475", - "AY223476" - ], - "Human_herpesvirus_3_YC01" : [ - "KJ767491" - ], - "Human_immunodeficiency_virus_1__09YNLC499sg" : [ - "KC898993" - ], - "Hepatitis_B_virus_06_51" : [ - "AB480041" - ], - "West_Nile_virus__WNV_1_US_BID_V4374_2005" : [ - "HM488194" - ], - "Cucumber_mosaic_virus__Xb" : [ - "AF268598" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9226_2010" : [ - "KJ627292" - ], - "West_Nile_virus__M20140" : [ - "JF415926" - ], - "Tomato_severe_rugose_virus__MG_BR_Ind2857_04" : [ - "JF803262" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe" : [ - "NC_004674" - ], - "Simian_immunodeficiency_virus__SIVcpzMB897" : [ - "EF535994" - ], - "Australian_bat_lyssavirus__H2" : [ - "KJ685548" - ], - "Hepatitis_B_virus__MTB004" : [ - "AY902777" - ], - "African_cassava_mosaic_virus" : [ - "AM502339", - "GQ204106", - "GQ204108", - "AM502338", - "GQ204109", - "GQ169505", - "GQ204107", - "AM502340" - ], - "Swine_hepatitis_E_virus__SWP6" : [ - "EU723514" - ], - "Mycovirus_FusoV" : [ - "NC_003885", - "NC_003886" - ], - "Bat_coronavirus_1B_AFCD307" : [ - "NC_010436" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__BB0907" : [ - "HQ315835" - ], - "Tomato_leaf_curl_New_Delhi_virus__AVT1" : [ - "AY438563" - ], - "Hepatitis_B_virus__EICI_63" : [ - "KF679998" - ], - "Dengue_virus_1__DENV_1_VN_BID_V814_2006" : [ - "EU482808" - ], - "Human_metapneumovirus_HMPV_AUS_133878351_2003_A" : [ - "KC562233" - ], - "Dengue_virus_1__DENV_1_VN_BID_V988_2006" : [ - "EU482532" - ], - "WU_Polyomavirus_S2" : [ - "EF444551" - ], - "Fowl_aviadenovirus_C__MX_SHP95" : [ - "KP295475" - ], - "Porcine_circovirus_2_PT_10810_10" : [ - "HQ831540" - ], - "Gemycircularvirus_SL3_SL3" : [ - "KP133077" - ], - "Enterovirus_A71__HUN_1978" : [ - "HQ189392" - ], - "Helicobacter_pylori_2017" : [ - "NC_017374" - ], - "Hepatitis_B_virus__H293_16" : [ - "DQ995802" - ], - "Newcastle_disease_virus__2008_Mali_ML007_08" : [ - "JF966385" - ], - "Rabies_virus_FJDRV" : [ - "JN609295" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL161A" : [ - "AB985572" - ], - "Human_immunodeficiency_virus_1__CANB6FULL" : [ - "AY779556" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_FR11_2008" : [ - "KM229793" - ], - "Canine_distemper_virus__98_2646" : [ - "AY542312" - ], - "SARS_coronavirus_TWK__TWK" : [ - "AP006559" - ], - "Infectious_bursal_disease_virus_88180" : [ - "AM111353", - "AM111354" - ], - "Saguaro_cactus_virus" : [ - "NC_001780" - ], - "Goose_hemorrhagic_polyomavirus_106" : [ - "JF304775" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2497_2007" : [ - "FJ882588" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culiseta_USA_3763_1998" : [ - "KJ469612" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10FS1_GD" : [ - "JX192635" - ], - "Dengue_virus_2__DENV_2_VN_BID_V753_2004" : [ - "EU482775" - ], - "Propionibacterium_phage_Kubed" : [ - "NC_027625" - ], - "Watermelon_mosaic_virus__C05_465" : [ - "JF273460" - ], - "Zucchini_yellow_mosaic_virus_B" : [ - "AY188994" - ], - "Hepatitis_B_virus__WHHRS1" : [ - "JN257153" - ], - "Human_immunodeficiency_virus_1__84zr085" : [ - "U88822" - ], - "Human_immunodeficiency_virus_1__04ZASK134B1" : [ - "AY703909" - ], - "Hepatitis_B_virus__185" : [ - "AY233296" - ], - "Maize_streak_virus__MSV_B1_Za_BakA_M10_1999" : [ - "EU628579" - ], - "Onion_yellow_dwarf_virus__Yuhang" : [ - "NC_005029" - ], - "West_Nile_virus__WNV_1_US_BID_V6458_2001" : [ - "KJ501468" - ], - "Peanut_stunt_virus_satellite_RNA" : [ - "NC_003855", - "Z98197" - ], - "Malvastrum_yellow_vein_Yunnan_virus__SC224_3" : [ - "JX679249" - ], - "Potato_virus_Y__N_O_Mb112" : [ - "AY745491" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2225_2004" : [ - "FJ639792" - ], - "Hepatitis_B_virus__32Y14HCC" : [ - "AB014391" - ], - "Rice_yellow_mottle_virus__Tz1102" : [ - "JX966248" - ], - "Photobacterium_profundum_SS9" : [ - "NC_006370", - "NC_005871", - "NC_006371" - ], - "Machupo_mammarenavirus_Carvallo" : [ - "NC_005079", - "KM198592", - "NC_005078", - "KM198593" - ], - "Human_papillomavirus_type_16__INJP0168" : [ - "HQ644251" - ], - "Lactococcus_Phage_ASCC358" : [ - "JQ740796" - ], - "Hepatitis_B_virus__CH_Mat_Ko" : [ - "AB182589" - ], - "Tomato_yellow_leaf_curl_virus__Al_Batinah" : [ - "DQ644565" - ], - "Tanay_virus__11_5" : [ - "KF425264" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P3pp12" : [ - "FJ882931" - ], - "Wheat_dwarf_virus__HNZD08_3" : [ - "KJ536127" - ], - "Nostoc_PCC_7120" : [ - "NC_003267", - "NC_003240", - "NC_003273", - "NC_003241", - "NC_003276", - "NC_003272", - "NC_003270" - ], - "Tomato_mosaic_virus_K2__Kazakhstan_strain" : [ - "Z92909" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Thadagan_OY158_2006___OY158" : [ - "GU111971" - ], - "Vibrio_cholerae_O1_2010EL_1786" : [ - "NC_016445", - "NC_016446" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y8" : [ - "NC_005058", - "AJ888446" - ], - "Human_papillomavirus_type_75" : [ - "Y15173" - ], - "Hepatitis_B_virus__cyc1031" : [ - "KC774351" - ], - "West_Nile_virus__WNV_1_US_BID_V4567_2003" : [ - "HM488212" - ], - "Bean_golden_mosaic_virus__BR_Una2_12" : [ - "KJ939822" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_28_5" : [ - "KC106643" - ], - "Hepatitis_B_virus__P004_M_014" : [ - "KJ173326" - ], - "Banana_bunchy_top_virus__bP26" : [ - "AB250958", - "AB250955" - ], - "Hepatitis_B_virus__KOR49HCC" : [ - "GQ475353" - ], - "Hepatitis_B_virus_P18" : [ - "KJ586809" - ], - "Ralstonia_solanacearum_GMI1000" : [ - "NC_003296", - "NC_003295" - ], - "Human_poliovirus_2_EGY93_034" : [ - "AF448783" - ], - "African_cassava_mosaic_virus__MG_MG656A1_11" : [ - "KJ888086" - ], - "Vibrio_phage_VBP32_VBP32" : [ - "NC_020868" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_CH_1a" : [ - "AY032626" - ], - "SARS_coronavirus_B039__B039" : [ - "AY686864" - ], - "Porcine_circovirus_2__ZJ_38" : [ - "HM776453" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2226_2004" : [ - "FJ639793" - ], - "Tobacco_bushy_top_virus_satellite_like_RNA_Dali_WSh" : [ - "FN821690" - ], - "Potato_virus_Y__IUNG_15" : [ - "JF927763" - ], - "Hepatitis_B_virus__SHB213" : [ - "KJ598660" - ], - "Hepatitis_B_virus__1762" : [ - "FJ386579" - ], - "Staphylococcus_phage_P4W" : [ - "JX080305" - ], - "Cowpox_virus_Germany_91_3" : [ - "DQ437593" - ], - "Acinetobacter_baumannii_TCDC_AB0715" : [ - "NC_017165", - "NC_017387", - "NC_017166" - ], - "Wheat_dwarf_virus__SDJN07_5" : [ - "KJ536105" - ], - "Escherichia_phage_Eps7" : [ - "NC_010583" - ], - "African_horse_sickness_virus__SPArrah_04" : [ - "KF446259", - "KF446268" - ], - "Hepatitis_B_virus__317" : [ - "JX869998" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140933" : [ - "KR653280" - ], - "Human_metapneumovirus_HMPV_ARG_95_2002" : [ - "KF530166" - ], - "BK_polyomavirus" : [ - "FR720317", - "FR720311", - "FR720320", - "FR720310", - "FR720323", - "FR720319", - "FR720322", - "FR720316", - "FR720321", - "FR720312", - "FR720313", - "FR720309", - "FR720315", - "FR720318", - "FR720308", - "NC_001538", - "FR720314", - "V01109" - ], - "Porcine_circovirus_2__QIA_1BM" : [ - "KC188796" - ], - "Tomato_leaf_curl_Guangxi_virus__GX_3" : [ - "AM236786" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2326_2001" : [ - "FJ744737" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C24" : [ - "KJ019151" - ], - "Paspalum_striate_mosaic_virus__AU_QG33_2011" : [ - "JQ948079" - ], - "Human_papillomavirus_type_6__72" : [ - "HG793880" - ], - "Alkhumra_hemorrhagic_fever_virus_Zaki__1" : [ - "JF416956" - ], - "Wheat_dwarf_virus__McP20" : [ - "AM296020" - ], - "Human_immunodeficiency_virus_1__ZM247F_flE3" : [ - "FJ496202" - ], - "Beak_and_feather_disease_virus__BFDV13" : [ - "FJ685985" - ], - "Alfalfa_mosaic_virus_425_Madison" : [ - "NC_002025" - ], - "Tobacco_curly_shoot_betasatellite__Y317" : [ - "AM260736" - ], - "Rift_Valley_fever_virus_2007000234" : [ - "JF326191", - "JF326186", - "JF326198" - ], - "Rabies_virus__BJ2011E" : [ - "JQ423952" - ], - "Small_begomovirus_associated_satellite__Sa27_S105" : [ - "KJ859149" - ], - "Hepatitis_B_virus__WHMYD1" : [ - "JN257172" - ], - "Hepatitis_B_virus__RA1_10" : [ - "AY796031" - ], - "Hepatitis_B_virus__SHB714" : [ - "KJ598748" - ], - "Cauliflower_mosaic_virus__IRN9" : [ - "AB863144" - ], - "Streptococcus_pneumoniae_G54" : [ - "NC_011072" - ], - "Hepatitis_B_virus__M77" : [ - "GQ924642" - ], - "Middle_East_respiratory_syndrome_coronavirus__Al_Hasa_17_2013" : [ - "KF600647" - ], - "Rift_Valley_fever_virus_T1" : [ - "DQ380201", - "DQ375407", - "DQ380150" - ], - "Sweet_potato_golden_vein_associated_virus__PA__BR_Bel1" : [ - "FJ969829" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Culex_opisthopus_MEX_64U87_1964_IE" : [ - "KC344445" - ], - "Prune_dwarf_virus_ch_137" : [ - "NC_008038" - ], - "Tomato_severe_rugose_virus_Sumare" : [ - "GU358449", - "EU086591" - ], - "Hepatitis_E_virus__wbJGF_08_1" : [ - "AB602440" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1781_2007" : [ - "JF730049" - ], - "South_African_cassava_mosaic_virus__MG_MG248A1_10" : [ - "KJ887685" - ], - "European_mountain_ash_ringspot_associated_virus__E52165" : [ - "HG799708" - ], - "Hepatitis_B_virus__J57" : [ - "GQ377540" - ], - "Chikungunya_virus__BHI3734_H804698" : [ - "KP164568" - ], - "Hepatitis_A_virus__LY6" : [ - "AF485328" - ], - "Hepatitis_B_virus_HB285" : [ - "HM011490" - ], - "JC_polyomavirus__JCV135_33" : [ - "JF424858" - ], - "Hyperthermus_butylicus_DSM_5456" : [ - "NC_008818" - ], - "African_horse_sickness_virus__1180" : [ - "KP009714", - "KP009715", - "KP009711", - "KP009719", - "KP009720", - "KP009713", - "KP009716", - "KP009718", - "KP009717" - ], - "Hepatitis_B_virus__1B3552" : [ - "GQ922000" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_O78A_2005" : [ - "JQ319172", - "JQ319162" - ], - "Sewage_associated_circular_DNA_molecule__SaCM_11_NZ_BS3394_2012" : [ - "KM877833" - ], - "Dragonfly_cyclovirus_2__FL3_8E_2010" : [ - "JX185423" - ], - "Melon_necrotic_spot_virus__MNSV_ISR" : [ - "DQ922807" - ], - "Buchnera_aphidicola_Cc__Cinara_cedri" : [ - "NC_011878", - "NC_008513" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Moheli_MO16BF1_2009" : [ - "JF909141" - ], - "Emiliania_huxleyi_virus_86__EhV86" : [ - "NC_007346" - ], - "Hepatitis_B_virus__S157_7" : [ - "FJ787479" - ], - "Tomato_yellow_leaf_curl_virus__Qasim" : [ - "KF561125" - ], - "Okra_yellow_crinkle_Cameroon_alphasatellite__CM_Njo5sp3_09___Njo5sp3" : [ - "FN675288" - ], - "Rift_Valley_fever_virus_Smithburn" : [ - "DQ380157", - "DQ380193", - "DQ375430" - ], - "Hepatitis_B_virus_GI_19" : [ - "AY781185" - ], - "Tobacco_curly_shoot_betasatellite__Y2" : [ - "AJ421485" - ], - "Echovirus_E9_MSH_KM812_2010" : [ - "JN596587" - ], - "Bombyx_mori_cypovirus_1" : [ - "AF433659", - "AF433660" - ], - "Porcine_circovirus_2_HL" : [ - "HM038020" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLI3288_2010" : [ - "KJ672586" - ], - "Hepatitis_B_virus__MGL200F" : [ - "AB270539" - ], - "Tomato_yellow_leaf_curl_virus_Mild__Japan_Daito__SzD" : [ - "AB116635" - ], - "Porcine_circovirus_2_412" : [ - "AF085695" - ], - "Feline_coronavirus__65F" : [ - "KP143509" - ], - "JC_polyomavirus__JCV176FLC_18" : [ - "JF424895" - ], - "Human_poliovirus_1_NIE1118377" : [ - "KJ170518" - ], - "Porcine_epidemic_diarrhea_virus__HLJBY" : [ - "KP403802" - ], - "Human_immunodeficiency_virus_1__BCF_KITA" : [ - "AB485665", - "AB485664" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3701_2007" : [ - "GQ868512" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Flagship_Before" : [ - "EF532805" - ], - "Tick_borne_encephalitis_virus__MDJ01" : [ - "JQ650522" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_131132" : [ - "KJ425500" - ], - "Enterovirus_C_Cambodia_02" : [ - "AB205395" - ], - "SARS_coronavirus_TW8__TW8" : [ - "AY502931" - ], - "Hepatitis_B_virus__88" : [ - "JQ040129" - ], - "Tomato_leaf_curl_New_Delhi_virus____PkT5_6" : [ - "AF448058", - "AY150305" - ], - "Lactococcus_lactis_cremoris_SK11" : [ - "NC_008505", - "NC_008507", - "NC_008527", - "NC_008504", - "NC_008503", - "NC_008506" - ], - "Mumps_virus_attenuated_RS_12" : [ - "JQ388691" - ], - "Simian_foamy_virus_orangutan_SFVora_bella" : [ - "AJ544579" - ], - "Archaeoglobus_sulfaticallidus_PM70_1" : [ - "NC_021169" - ], - "Human_immunodeficiency_virus_1__ZM247F_flB9" : [ - "FJ496199" - ], - "Y73_sarcoma_virus_PR2257_16" : [ - "NC_008094" - ], - "Hepatitis_B_virus__cxn1005" : [ - "KC774332" - ], - "Hepatitis_B_virus__HBV_O55" : [ - "AB115418" - ], - "Coxsackievirus_A2_430895" : [ - "JX867330" - ], - "Human_rhinovirus_A24" : [ - "EF173416" - ], - "Hepatitis_B_virus__cxn1046" : [ - "KC774343" - ], - "Crimean_Congo_hemorrhagic_fever_virus__NIV_112143" : [ - "JN572091", - "JN572089", - "JN572085" - ], - "Bluetongue_virus_11__RSArrrr_11" : [ - "AJ586710" - ], - "Hepatitis_B_virus__FMD142" : [ - "GU332707" - ], - "African_cassava_mosaic_virus__KE_mtw_CMD_MI73_12" : [ - "HG530117" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C46" : [ - "KJ019029" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2361_2001" : [ - "FJ744704" - ], - "Foot_and_mouth_disease_virus___type_O__SKR_5_2010" : [ - "KF112887" - ], - "Dehalococcoides_CBDB1" : [ - "NC_007356" - ], - "Hepatitis_B_virus__7" : [ - "EU562218", - "EU595031", - "EU787438" - ], - "Merkel_cell_polyomavirus__15a" : [ - "HM011546" - ], - "Hepatitis_B_virus__H2813" : [ - "KP322601" - ], - "Human_immunodeficiency_virus_1__CTL_033" : [ - "EF514709" - ], - "Porcine_epidemic_diarrhea_virus_AH2012" : [ - "KC210145" - ], - "Dengue_virus_2__DENV_2_VN_BID_V740_2006" : [ - "EU482677" - ], - "Tomato_golden_mosaic_virus__csTGMV_92_11" : [ - "JF694489", - "JF694488" - ], - "Barley_yellow_dwarf_virus_PAV__045" : [ - "EF521845" - ], - "Vibrio_phage_martha_12B12_martha_12B12" : [ - "NC_021070" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6714_2009" : [ - "KJ627350" - ], - "Avian_orthoreovirus_C78" : [ - "KF741716", - "KF741718", - "KF741723", - "KF741725", - "KF741719", - "KF741720", - "KF741717", - "KF741721", - "KF741724" - ], - "Porcine_circovirus_2_Yamagata" : [ - "AB426905" - ], - "Shewanella_woodyi_ATCC_51908" : [ - "NC_010506" - ], - "Human_papillomavirus_type_6__45" : [ - "HG793853" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V217_1989" : [ - "EU482852" - ], - "JC_polyomavirus__JCV144_43" : [ - "JF424891" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_K_SD_SD276_2013" : [ - "KM229907" - ], - "Paracoccus_phage_vB_PmaS_IMEP1" : [ - "NC_026608" - ], - "Dengue_virus_2__DENV_2_VN_BID_V758_2003" : [ - "EU482780" - ], - "Tomato_common_mosaic_virus__BR_Coi20_07" : [ - "KC706574" - ], - "Streptococcus_phage_SPQS1" : [ - "NC_021868" - ], - "Banana_bunchy_top_virus__MY02" : [ - "AB252643", - "AB252640" - ], - "Chrysanthemum_virus_B__Uttarakhand" : [ - "AM765838" - ], - "Hepatitis_B_virus__AIDS37" : [ - "JQ801490" - ], - "Middle_East_respiratory_syndrome_coronavirus_Abu_Dhabi_UAE_8_2014" : [ - "KP209306" - ], - "Groundnut_ringspot_and_Tomato_chlorotic_spot_virus_reassortant__LGMTSG" : [ - "NC_015467", - "NC_015468", - "NC_015469" - ], - "Mycobacterium_canettii_CIPT_140060008" : [ - "NC_019950" - ], - "JC_polyomavirus_type_3___311_African_American_individual" : [ - "JVU73501" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8352_2003" : [ - "KJ627656" - ], - "Carrot_mottle_mimic_virus" : [ - "NC_001726" - ], - "Hepatitis_B_virus_HB213" : [ - "HM011469" - ], - "Porcine_circovirus_2__JM2" : [ - "KC514972" - ], - "Hepatitis_B_virus__LAMr_Pt__32_Adefovir_treated_Pt__28" : [ - "AB367423" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4251_1" : [ - "KR105223" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1798_2007" : [ - "FJ432737" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_07V063" : [ - "GU737264" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143458" : [ - "KR653245" - ], - "Hepatitis_B_virus__Hope" : [ - "HBU46935" - ], - "Hepatitis_B_virus__S7_1" : [ - "EU916226" - ], - "Borrelia_crocidurae_Achema" : [ - "NC_017816", - "NC_017799", - "NC_017801", - "NC_017783", - "NC_017819", - "NC_017795", - "NC_017794", - "NC_017812", - "NC_017788", - "NC_017818", - "NC_017797", - "NC_017774", - "NC_017775", - "NC_017785", - "NC_017808", - "NC_017789", - "NC_017796", - "NC_017780", - "NC_017813", - "NC_017787", - "NC_017777", - "NC_017809", - "NC_017802", - "NC_017810", - "NC_017782", - "NC_017817", - "NC_017784", - "NC_017798", - "NC_017821", - "NC_017815", - "NC_017786", - "NC_017776", - "NC_017811", - "NC_017800", - "NC_017822", - "NC_017778", - "NC_017781", - "NC_017820", - "NC_017779", - "NC_017814" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4761_2009" : [ - "HM181972" - ], - "WU_Polyomavirus__MN2726" : [ - "GU296405" - ], - "Plum_pox_virus__Penn5" : [ - "EF640933" - ], - "Foot_and_mouth_disease_virus___type_A_A_Iran_airan_iso105" : [ - "AY593791" - ], - "Tomato_yellow_leaf_curl_virus__JS1_2" : [ - "KF906542" - ], - "Human_papillomavirus_type_35__Z049" : [ - "HQ537713" - ], - "Vesicular_exanthema_of_swine_virus__B1_34" : [ - "KM269481" - ], - "Rabies_virus__OR05506" : [ - "JQ685918" - ], - "Malvastrum_yellow_mosaic_Cameroon_alphasatellite__UMU1D2" : [ - "FN675298" - ], - "Cucumber_green_mottle_mosaic_virus" : [ - "DQ767631" - ], - "Human_immunodeficiency_virus_1__14183_1" : [ - "DQ853444" - ], - "Candidatus_Carsonella_ruddii_CS_isolate_Thao2000" : [ - "NC_018415" - ], - "Dengue_virus_4__DHF_patient" : [ - "JN638571" - ], - "East_African_cassava_mosaic_Cameroon_virus_Cameroon__Comoros_Grande_Comore_GC41AI3_2009" : [ - "JF909117" - ], - "Sulfolobus_islandicus_Y_G_57_14" : [ - "NC_012622" - ], - "Lymantria_dispar_multiple_nucleopolyhedrovirus__LdMNPV_27" : [ - "KP027546" - ], - "Enterobacteria_phage_FL68_Tallahassee_FL_2012" : [ - "KF044309" - ], - "Sagiyama_virus" : [ - "AB032553" - ], - "Simian_immunodeficiency_virus__155" : [ - "SIVAGM155" - ], - "Human_papillomavirus_type_109" : [ - "NC_012485" - ], - "Grass_carp_reovirus_HZ08" : [ - "GU350743", - "GQ896337", - "GU350745", - "GU350748", - "GU350747", - "GQ896336", - "GQ896335", - "GU350746", - "GU350744", - "GQ896334", - "GU350742" - ], - "Dengue_virus_3__129_BR_PE_04" : [ - "JX669498" - ], - "Hepatitis_B_virus__039_WA_Oen" : [ - "KF873524" - ], - "Porcine_circovirus_2__A5293" : [ - "JF317584" - ], - "Escherichia_coli_UMNK88" : [ - "NC_017639", - "NC_017643", - "NC_017642", - "NC_017640", - "NC_017645", - "NC_017641" - ], - "French_bean_severe_leaf_curl_virus__FbSLCV_2" : [ - "JX094281" - ], - "Watermelon_chlorotic_stunt_virus__H" : [ - "KJ854918" - ], - "Dengue_virus_1__DENV_1_VN_BID_V947_2007" : [ - "EU482492" - ], - "Human_papillomavirus_type_18__Z100" : [ - "KC470222" - ], - "Human_herpesvirus_5_BE_32_2011" : [ - "KP745704" - ], - "Moroccan_watermelon_mosaic_virus_MWMV_Tn_TN05_76" : [ - "NC_009995" - ], - "Rabies_virus__SM6709" : [ - "JQ685945" - ], - "Candidatus_Amoebophilus_asiaticus_5a2" : [ - "NC_010830" - ], - "Dengue_virus_2__DENV_2_CO_BID_V7294_2000" : [ - "KJ189305" - ], - "Sabia_mammarenavirus_SPH114202" : [ - "JN801475", - "NC_006313", - "JN801474", - "AY216506", - "NC_006317" - ], - "Tomato_common_mosaic_virus__BR_Pda56_05" : [ - "KC706588" - ], - "BK_polyomavirus__NGY_38" : [ - "AB298943" - ], - "Enterovirus_A71__GZ_08_01" : [ - "FJ360544" - ], - "Listeria_welshimeri_serovar_6b_SLCC5334" : [ - "NC_008555" - ], - "Human_rhinovirus_B27_ATCC_VR_1137" : [ - "FJ445186" - ], - "Tomato_leaf_curl_New_Delhi_virus__Palampur" : [ - "JN663871" - ], - "Beet_curly_top_Iran_virus__IR_Oru_7Beet_Sug_10" : [ - "JX945571" - ], - "Enterobacteria_phage_MS2" : [ - "NC_001417" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US39" : [ - "KJ019098" - ], - "Dengue_virus_2__DC415Y11" : [ - "KM279524" - ], - "Bean_golden_mosaic_virus__BR_Pai5_11" : [ - "KJ939741" - ], - "Hepatitis_B_virus__CHH76" : [ - "JX560519" - ], - "Human_poliovirus_2_NIE0611452_KTS06_01" : [ - "JX275008" - ], - "Porcine_circovirus_2_FMV05_7390" : [ - "DQ220735" - ], - "Ludwigia_yellow_vein_virus_associated_DNA_beta__G37" : [ - "NC_007212" - ], - "Botrytis_porri_RNA_virus_1_GarlicBc_72" : [ - "NC_017990", - "NC_017991" - ], - "Bluetongue_virus_4__IAH_SPA2003_02" : [ - "AJ783909", - "AJ783911" - ], - "Rhesus_papillomavirus_type_1b__Mac170" : [ - "EF591300" - ], - "Beak_and_feather_disease_virus__NC109" : [ - "JX049198" - ], - "Hepatitis_B_virus__HE26_IC" : [ - "JN664916" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_3176WC_2009_G12P_6" : [ - "HQ657161", - "HQ657158", - "HQ657156", - "HQ657162", - "HQ657155", - "HQ657159", - "HQ657157", - "HQ657163", - "HQ657165", - "HQ657160", - "HQ657164" - ], - "Hepatitis_B_virus__patient_Z1" : [ - "AJ748098" - ], - "Hepatitis_B_virus__J16" : [ - "GQ377519" - ], - "Newcastle_disease_virus_JS_1_97_Ch" : [ - "FJ436305" - ], - "Myxoma_virus_Aust_Gungahlin_1_91_Gungahlin" : [ - "JX565568" - ], - "Epizootic_hemorrhagic_disease_virus__serotype_6___strain_318__318_BAR1983_01" : [ - "AM745073", - "AM745067", - "AM745074", - "AM745068", - "AM745070", - "AM745072", - "AM745075", - "AM745076", - "AM745071", - "AM745069" - ], - "Hepatitis_B_virus__EN47_IC" : [ - "JN664921" - ], - "Simian_adenovirus_42_2" : [ - "FJ025902" - ], - "Hepatitis_B_virus__J52" : [ - "GQ377538" - ], - "Hepatitis_B_virus__S265_10" : [ - "FJ032332" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4993_brain" : [ - "HQ891011" - ], - "Pseudomonas_phage_phi176" : [ - "KM411960" - ], - "Candidatus_Portiera_aleyrodidarum_TV" : [ - "NC_020831" - ], - "West_Nile_virus_Italy_2013_Rovigo_34_1" : [ - "KF647248" - ], - "Human_immunodeficiency_virus_1__5019_86" : [ - "AY835780" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1706_2007" : [ - "FJ181999" - ], - "JC_polyomavirus__LZ_12" : [ - "AB113217" - ], - "Rickettsia_prowazekii_Dachau" : [ - "NC_017051" - ], - "West_Nile_virus__WN_MD_2000_crow265" : [ - "AF404753" - ], - "Chikungunya_virus_Wuerzburg_1__Wuerzburg" : [ - "EU037962" - ], - "Helicoverpa_armigera_multiple_nucleopolyhedrovirus" : [ - "NC_011615" - ], - "Salmonella_enterica_Serovar_Heidelberg_CFSAN002069" : [ - "NC_021813", - "NC_021812", - "NC_021842" - ], - "Human_immunodeficiency_virus_1__1018_10" : [ - "AY331290" - ], - "Watermelon_mosaic_virus__A08_160" : [ - "JF273465" - ], - "BK_polyomavirus__A_66H" : [ - "AB369093" - ], - "Rift_Valley_fever_virus_200803168" : [ - "JF311383", - "JF311392", - "JF311374" - ], - "Circoviridae_1_LDMD_2013" : [ - "NC_025705" - ], - "Porcine_circovirus_2_KSRY1103" : [ - "JX982219" - ], - "Dengue_virus_2__DENV_2_VN_BID_V739_2006" : [ - "EU482676" - ], - "Wheat_dwarf_virus__NXYN07_3" : [ - "KJ536101" - ], - "Human_immunodeficiency_virus_1__03ZASK078B1" : [ - "AY901971" - ], - "Hepatitis_B_virus_genotype_F_VNZ8248_1" : [ - "AB036905" - ], - "Enterobacteria_phage_phiX174__10C90" : [ - "EF380015" - ], - "Pariacoto_virus" : [ - "NC_003691", - "NC_003692" - ], - "Cotton_leaf_curl_betasatellite__IARI_30" : [ - "KJ959627" - ], - "Chikungunya_virus__DH130003" : [ - "KM673291" - ], - "Enterobacteria_phage_BZ13_T72" : [ - "FJ483838" - ], - "Potato_virus_A__143_PVA" : [ - "GU144321" - ], - "Human_respiratory_syncytial_virus_A_GZ_12_110" : [ - "KM578843" - ], - "Dengue_virus_3__DENV_3_US_BID_V1450_1998" : [ - "FJ182013" - ], - "South_African_cassava_mosaic_virus__MG_MG352A2_11" : [ - "KJ887998" - ], - "Broome_virus" : [ - "NC_014245", - "NC_014244", - "NC_014238", - "NC_014239", - "NC_014242", - "NC_014241", - "NC_014236", - "NC_014240", - "NC_014237", - "NC_014243" - ], - "Beak_and_feather_disease_virus__CS08_416_OBP_TAS_19144" : [ - "KF188681" - ], - "Red_clover_mottle_virus_S" : [ - "NC_003741" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6912_2009" : [ - "KJ627319" - ], - "Chlamydia_trachomatis_IU888" : [ - "NC_020513", - "NC_020512" - ], - "Hepatitis_B_virus__LAMr_Pt__23_Adefovir_treated_Pt__3" : [ - "AB367414" - ], - "Hepatitis_B_virus__HBV92" : [ - "KC875303" - ], - "Malvastrum_yellow_vein_betasatellite__Y251" : [ - "AJ971705" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2727_2007" : [ - "FJ898375" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0006" : [ - "KP759630" - ], - "Bean_golden_mosaic_virus__BR_Par8_12" : [ - "KJ939804" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1809_2007" : [ - "FJ410204" - ], - "Dengue_virus_2__DC759Y12" : [ - "KM279593" - ], - "Avian_leukosis_virus__DPRE32" : [ - "KM434201" - ], - "Maize_dwarf_mosaic_virus__Italy" : [ - "JX185302" - ], - "Hepatitis_B_virus__CAR154" : [ - "AM494713" - ], - "Porcine_circovirus_2__Pinar_del_Rio" : [ - "FN398026" - ], - "Potato_virus_Y_O_strain_SASA_110" : [ - "AJ585195" - ], - "Sida_yellow_vein_China_alphasatellite__K30" : [ - "KJ466049" - ], - "Rotavirus_A_RVA_Human_wt_USA_DC4312_1988_G1P_8" : [ - "KC579935", - "KC579930", - "KC579932", - "KC579924" - ], - "Human_bocavirus__GZ9081" : [ - "JN794566" - ], - "Changuinola_virus_Xaraira_BE_AR_490492" : [ - "JQ610655", - "JQ610662", - "JQ610661", - "JQ610658", - "JQ610664", - "JQ610663", - "JQ610657", - "JQ610660" - ], - "Cotton_leaf_curl_Multan_betasatellite__Hy" : [ - "KF766946" - ], - "Hepatitis_B_virus__BOL584" : [ - "AB365453" - ], - "Human_adenovirus_37__2004" : [ - "AB448778" - ], - "Torque_teno_virus__TTV_HD14i__gbDfDg33_49" : [ - "FR751471" - ], - "Japanese_encephalitis_virus__GSBY0861" : [ - "JN381833" - ], - "Norovirus_GI_Hu_JP_2007_GI_P3_GI_3_Shimizu_KK2866__Shimizu_KK2866" : [ - "KJ196292" - ], - "Porcine_circovirus_2__DE007_14" : [ - "KP698403" - ], - "Cauliflower_mosaic_virus__TUR1" : [ - "AB863166" - ], - "Zucchini_green_mottle_mosaic_virus_ZT_1" : [ - "AJ252189" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2001_2005" : [ - "FJ639685" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4200_1" : [ - "KR105217" - ], - "Pseudomonas_putida_F1" : [ - "NC_009512" - ], - "Staphylococcus_phage_tp310_1" : [ - "NC_009761" - ], - "Adeno_associated_virus_3B" : [ - "AF028705" - ], - "Human_immunodeficiency_virus_1__L8146" : [ - "DQ886034" - ], - "Human_immunodeficiency_virus_1__280_10" : [ - "KP718919" - ], - "Dengue_virus_1__DV1_SL_2009e" : [ - "JN054256" - ], - "Yellow_fever_virus_17D_RKI" : [ - "JN628279" - ], - "BK_polyomavirus__OKN_58" : [ - "AB365156" - ], - "Lagenorhynchus_acutus_papillomavirus" : [ - "GU117624" - ], - "Equid_herpesvirus_1_94_137" : [ - "KF644575" - ], - "Bluetongue_virus_2__5036" : [ - "JX272608" - ], - "Squash_leaf_curl_virus__Ismailia" : [ - "KC895398" - ], - "Mouse_kobuvirus_M_5_USA_2010_M_5" : [ - "NC_015936" - ], - "Circoviridae_11_LDMD_2013" : [ - "NC_025716" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus__Portugal_Algarve_2_2001" : [ - "JN859134" - ], - "Human_papillomavirus_type_39__As093" : [ - "KC470244" - ], - "Bat_SARS_coronavirus_HKU3_10_HKU3_10" : [ - "GQ153545" - ], - "Hepatitis_B_virus__IND_2008_9" : [ - "KF214660" - ], - "Tomato_chlorosis_virus__SDSG" : [ - "KC709510", - "KC709509" - ], - "Hepatitis_A_virus__FH2" : [ - "AB020568" - ], - "Porcine_astrovirus_2__AstV2_US_IA122" : [ - "JX556690" - ], - "Gluconacetobacter_xylinus_NBRC_3288" : [ - "NC_016028", - "NC_016027", - "NC_016900", - "NC_016022", - "NC_016037", - "NC_016030", - "NC_016021", - "NC_016029" - ], - "Methanobrevibacter_AbM4" : [ - "NC_021355" - ], - "Propionibacterium_phage_PAD20" : [ - "NC_015454" - ], - "Dengue_virus_2_DENV_2_ID_1046DN_1976" : [ - "GQ398264" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5145_brain" : [ - "JF899536" - ], - "Hamster_polyomavirus__2973" : [ - "JX416850" - ], - "Human_immunodeficiency_virus_1__02CM_A1394" : [ - "DQ845388" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3809_2003" : [ - "GU131906" - ], - "Bombyx_mori_nucleopolyhedrovirus__C2" : [ - "KF306216" - ], - "Hepatitis_B_virus__PNF5185" : [ - "KF779356" - ], - "Beak_and_feather_disease_virus__PT05" : [ - "EU810208" - ], - "Oropouche_virus__BeH759529" : [ - "KP691619", - "KP691618" - ], - "Hepatitis_B_virus__H147" : [ - "FJ349227" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V220_2005" : [ - "EU256059" - ], - "Lactobacillus_helveticus_DPC_4571" : [ - "NC_010080" - ], - "Candidatus_Azobacteroides_pseudotrichonymphae_genomovar__CFP2" : [ - "NC_011565", - "NC_011563", - "NC_011562", - "NC_011564", - "NC_011561" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_14524_2001" : [ - "DQ404160" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__NT5_4" : [ - "GU723737" - ], - "Hepatitis_B_virus_1263_14" : [ - "KR013843" - ], - "Cricket_paralysis_virus" : [ - "NC_003924" - ], - "North_American_arenavirus_AV_96010024" : [ - "EU123331" - ], - "Human_astrovirus_2__Rus_Nsc06_1029" : [ - "KF039911" - ], - "Abutilon_mosaic_virus" : [ - "AM886130", - "NC_001929", - "NC_001928" - ], - "Human_rhinovirus_A49" : [ - "DQ473496" - ], - "Snake_adenovirus_1_145_88" : [ - "NC_009989" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1826_2007" : [ - "FJ410210" - ], - "Mus_musculus_papillomavirus_1" : [ - "NC_024892" - ], - "Anaconda_paramyxovirus__1110RN047" : [ - "KJ956404" - ], - "Alteromonas_macleodii_ATCC_27126" : [ - "NC_018632" - ], - "Classical_swine_fever_virus_CSFV_2_1_dp_CSF1048_2009_LT_Penevezys" : [ - "HQ148063" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P3pp14" : [ - "FJ882932" - ], - "Dengue_virus_2__DENV_2_PG_BID_V2618_2008" : [ - "FJ906959" - ], - "Enterovirus_A71_BJ366" : [ - "HM002488" - ], - "Human_immunodeficiency_virus_1__ZM249M_flA1" : [ - "FJ496208" - ], - "Chickpea_chlorotic_dwarf_virus_D__4K1" : [ - "KF176552" - ], - "Corynebacterium_resistens_DSM_45100" : [ - "NC_015673" - ], - "Escherichia_phage_vB_EcoM_VpaE1__VpaE1" : [ - "NC_027337" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG273A1_10" : [ - "KJ887689" - ], - "Corynebacterium_pseudotuberculosis_PAT10" : [ - "NC_017305" - ], - "Hepatitis_B_virus__cxn1007" : [ - "KC774334" - ], - "Canine_parvovirus_2c__UY318" : [ - "KM457126" - ], - "Acidianus_filamentous_virus_1" : [ - "NC_005830" - ], - "Ralstonia_phage_RSK1" : [ - "NC_022915" - ], - "Hepatitis_B_virus__patient_290" : [ - "DQ993681" - ], - "Borrelia_burgdorferi_CA382" : [ - "NC_022048" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K301" : [ - "AJ717573" - ], - "Cotton_leaf_curl_Rajasthan_virus____India_Abohar_2003___Abohar" : [ - "AY795606" - ], - "Mungbean_yellow_mosaic_India_virus____Mungbean_Pakistan" : [ - "AY269992" - ], - "Bovine_viral_diarrhea_virus_type_1b__3156" : [ - "JN704144" - ], - "Human_immunodeficiency_virus_1__03GH184AG" : [ - "AB286860", - "AB286859" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1915_2008" : [ - "FJ410249" - ], - "Macroptilium_yellow_spot_virus__BR_Sti32_11" : [ - "KJ939889" - ], - "Hepatitis_C_virus__QC64" : [ - "JF735120" - ], - "Simian_immunodeficiency_virus_SIVmac239_97074" : [ - "AY599198" - ], - "Blainvillea_yellow_spot_virus__BgV05B_1_C51" : [ - "JF694467" - ], - "Tomato_yellow_leaf_curl_virus__JS_AA_06" : [ - "JX910534" - ], - "Hepatitis_B_virus_pre_core_variant__ayw__patient_3" : [ - "X97849" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3456_2006" : [ - "GU131856" - ], - "Wheat_dwarf_virus__YNKM07_39" : [ - "KJ536145" - ], - "Listeria_monocytogenes_serotype_7_SLCC2482" : [ - "NC_018888", - "NC_018591" - ], - "Porcine_circovirus_2__PCV_42" : [ - "KC514987" - ], - "Enterovirus_A71_SDLY1_A" : [ - "JX244182" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5765_1" : [ - "KR105326" - ], - "Hepatitis_B_virus__MOD_4604" : [ - "GQ183477" - ], - "Hepatitis_C_virus_subtype_1b_MD8_2" : [ - "AF165060" - ], - "Tomato_leaf_curl_Gujarat_virus__Frb_Knp" : [ - "KF440686" - ], - "Human_respiratory_syncytial_virus_HRSV_A_GZ08_18" : [ - "KP119747" - ], - "Lactobacillus_plantarum_WCFS1" : [ - "NC_006377", - "NC_004567", - "NC_006375", - "NC_006376" - ], - "Hydrangea_chlorotic_mottle_virus__NZ" : [ - "NC_012869" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2762_2007" : [ - "GQ199786" - ], - "Cowpea_mosaic_virus" : [ - "NC_003550", - "NC_003549" - ], - "Hepatitis_B_virus__J34" : [ - "GQ377529" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Fazilka2_2010" : [ - "JF502387" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP00592_2011" : [ - "KJ627247" - ], - "Persicivirga_dokdonensis_DSW_6" : [ - "NC_020156" - ], - "Human_immunodeficiency_virus_1__A1575" : [ - "KP718934" - ], - "Human_poliovirus_3_NIE1118499" : [ - "KJ170583" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P100" : [ - "KC422725" - ], - "Newcastle_disease_virus__APMV1_Pigeon_PA_USA_0805_2008" : [ - "KC013037" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0158" : [ - "KP759700" - ], - "Hepatitis_B_virus__M85_10" : [ - "EU330994" - ], - "Boolarra_virus" : [ - "NC_004145", - "NC_004142" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP00548_2011" : [ - "KJ627277" - ], - "JC_polyomavirus__JCV161FLC_40" : [ - "JF424947" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0037" : [ - "KP759615" - ], - "Staphylococcus_phage_P68" : [ - "NC_004679" - ], - "Puumala_virus_Baltic_49Cg_00" : [ - "AJ314598" - ], - "Dengue_virus_3__DENV_3_BR_BID_V2387_2003" : [ - "FJ850079" - ], - "Human_immunodeficiency_virus_1__C_ZA_1170MB" : [ - "AY463225" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Semunya" : [ - "DQ076413", - "DQ094832" - ], - "Coxsackievirus_A15_G9" : [ - "AF499638" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P150" : [ - "KC422730" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG637A6_11" : [ - "KJ887742" - ], - "Dengue_virus_1__HNRG12560" : [ - "KC692497" - ], - "Acidianus_bottle_shaped_virus" : [ - "NC_009452" - ], - "Hepatitis_B_virus__J88" : [ - "GQ377557" - ], - "Foot_and_mouth_disease_virus___type_SAT_2__UGA_002_2002" : [ - "JF749862" - ], - "SFTS_virus_HN6_HN6" : [ - "HQ141595", - "HQ141596", - "HQ141597" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3679_2007" : [ - "GU131966" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2284_2001" : [ - "FJ687440" - ], - "Rice_gall_dwarf_virus__Guang_Dong" : [ - "EF177263" - ], - "Cellulophaga_phage_phi18_1_phi18_1" : [ - "NC_021790" - ], - "Tomato_leaf_curl_Ranchi_virus__Ranchi" : [ - "NC_016965" - ], - "Parainfluenza_virus_5_78524" : [ - "JQ743319" - ], - "Hepatitis_delta_virus_Miyako_JA_M23" : [ - "AB118837" - ], - "Dengue_virus_2__DENV_2_VN_BID_V729_2006" : [ - "EU482666" - ], - "Norovirus_Hu_GII_4_Fukui1_2008_JP_Hu_GII_4_Fukui1_2008_JP" : [ - "AB541244" - ], - "Vibrio_fischeri_MJ11" : [ - "NC_011185", - "NC_011186", - "NC_011184" - ], - "Human_adenovirus_7_H18_JM_CHN_2013" : [ - "KJ019886" - ], - "Luffa_yellow_mosaic_virus" : [ - "NC_004824", - "NC_004825" - ], - "Sewage_associated_circular_DNA_molecule__SaCM_10_NZ_BS3301_2012" : [ - "KM877832" - ], - "Hepatitis_B_virus_Kokusai_Iryo_2_OS" : [ - "AB210822" - ], - "Ageratum_leaf_curl_Cameroon_betasatellite__AL2B3" : [ - "FN298809" - ], - "Hepatitis_B_virus__C93" : [ - "EU939568" - ], - "Dengue_virus_2__DENV_2_NI_BID_V743_2005" : [ - "EU482695" - ], - "West_Nile_virus__WNV_1_US_BID_V6681_2006" : [ - "KJ501415" - ], - "Hepatitis_B_virus__P005_M_327" : [ - "KJ173328" - ], - "Equine_papillomavirus_2__Zurich_2009" : [ - "HM461973" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_505" : [ - "KR534507" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2812_2007" : [ - "GQ199822" - ], - "Mouse_parvovirus_1e" : [ - "DQ898166" - ], - "Sulfolobus_spindle_shaped_virus_7" : [ - "NC_013588" - ], - "Turnip_mosaic_virus__AUST13" : [ - "AB989635" - ], - "Sweet_potato_chlorotic_fleck_virus__SC20" : [ - "KP115606" - ], - "West_Nile_virus_Greece_2012_Kavala_39_1" : [ - "KF179639" - ], - "Chikungunya_virus_MADOPY1" : [ - "KP003808" - ], - "Ugandan_cassava_brown_streak_virus__Ma_43" : [ - "FN433933" - ], - "Kudzu_mosaic_virus__Vietnam_Hanoi_soybean_2010" : [ - "HQ162272", - "HQ162271" - ], - "Human_papillomavirus_type_11__JO_RRP_2" : [ - "HE574702" - ], - "Tobacco_curly_shoot_alphasatellite__Y146" : [ - "AJ579352" - ], - "Nile_crocodilepox_virus" : [ - "NC_008030" - ], - "Duck_hepatitis_B_virus__CH6" : [ - "EU429326" - ], - "Hepatitis_B_virus__GD22" : [ - "HQ603063" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1677_2007" : [ - "FJ024456" - ], - "Melon_necrotic_spot_virus__Kochi" : [ - "AB232926" - ], - "Human_immunodeficiency_virus_1_HIV_1wk" : [ - "AF224507" - ], - "Enterobacteria_phage_RB16" : [ - "NC_014467" - ], - "Papaya_leaf_crumple_virus__A_87" : [ - "KM359408" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD93_2013" : [ - "KM229899" - ], - "Porcine_epidemic_diarrhea_virus_AH_M" : [ - "KJ158152" - ], - "Torque_teno_virus__JT03F" : [ - "AB064599" - ], - "Hepatitis_B_virus__HBV143" : [ - "JN688709" - ], - "Maize_streak_virus__MSV_A_GH_gh113_Eju_2010" : [ - "KJ699310" - ], - "Coxsackievirus_A16__BJ10_01" : [ - "KF193630" - ], - "Hepatitis_B_virus__712005001256" : [ - "HM153811" - ], - "Thermogladius_1633" : [ - "NC_017954" - ], - "Bluetongue_virus_GER2008_05" : [ - "GQ506466", - "GQ506464", - "GQ506462", - "GQ506467", - "GQ506465", - "GQ506463", - "GQ506461" - ], - "Chlamydia_phage_2" : [ - "NC_002194" - ], - "Chlamydia_phage_3" : [ - "NC_008355" - ], - "Neisseria_meningitidis_NZ_05_33" : [ - "NC_017518" - ], - "Hepatitis_B_virus__Ag25" : [ - "KJ843186" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_90I_283A_01_1990" : [ - "KJ723489" - ], - "Cleome_leaf_crumple_virus" : [ - "FN436000", - "FN435999" - ], - "Rabies_virus__NNV_RAB_H" : [ - "EF437215" - ], - "Avian_gyrovirus_2_China" : [ - "JQ690763" - ], - "Human_respiratory_syncytial_virus__RSV_4" : [ - "GU591761" - ], - "MSSI2_225_virus__MSSI2_225__ms23_49" : [ - "NC_024691" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6891_2009" : [ - "KJ627276" - ], - "Bovine_coronavirus_Mebus" : [ - "BCU00735" - ], - "Simian_immunodeficiency_virus__SIVcpzMT145" : [ - "DQ373066" - ], - "Hepatitis_B_virus__C_NC_179928_2001" : [ - "HQ700507" - ], - "Human_rotavirus_A_ST3" : [ - "X81436" - ], - "Wallerfield_virus_TR7904" : [ - "NC_023440" - ], - "Ngari_virus_SUD_HKV141" : [ - "JX857322", - "JX857324" - ], - "Hepatitis_B_virus_1456_25a" : [ - "KR013865" - ], - "Rotavirus_A_RVA_Human_wt_HUN_BP1879_2003_G6P_14" : [ - "FN665677", - "FN665687", - "FN665681", - "FN665683", - "FN665679", - "FN665685", - "FN665680", - "FN665682", - "FN665684", - "FN665678", - "FN665686" - ], - "Tupaia_virus" : [ - "NC_007020" - ], - "Japanese_encephalitis_virus__GSBY0827" : [ - "JN381845" - ], - "Human_poliovirus_1_CHN8229_1_GZ_CHN_2004" : [ - "FJ769379" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLU5529_2007" : [ - "KJ627361" - ], - "Tomato_yellow_leaf_curl_virus__LNAS" : [ - "KJ754186" - ], - "Staphylococcus_phage_Phi12" : [ - "NC_004616" - ], - "West_Nile_virus__WNV_1_US_BID_V6480_2002" : [ - "KJ501318" - ], - "Hepatitis_B_virus_Ehime_21_NM" : [ - "AB210818" - ], - "Tomato_leaf_curl_Mindanao_virus__P162" : [ - "NC_010440" - ], - "Torque_teno_virus__TTV_HD24e__rheu238" : [ - "FR751510" - ], - "WU_Polyomavirus__B3571" : [ - "GU296372" - ], - "Salmonella_phage_SSU5" : [ - "NC_018843" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1129" : [ - "KR534581" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD260_2014" : [ - "KM229889" - ], - "SARS_coronavirus_GZ_C__GZ_C" : [ - "AY394979" - ], - "Soybean_mosaic_virus__WS135" : [ - "FJ640965" - ], - "Porcine_epidemic_diarrhea_virus_TC_PE103_PC21A__P4" : [ - "KM392225" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143938" : [ - "KR653264" - ], - "Enterobacteria_phage_J8_65" : [ - "NC_025445" - ], - "Human_poliovirus_2__CHN16003_Sichuan_CHN_2012" : [ - "KJ419275" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2842_2005" : [ - "FJ898386" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG619B1_11" : [ - "KJ888060" - ], - "McMurdo_Ice_Shelf_pond_associated_circular_DNA_virus_3__alg49_39" : [ - "NC_024479" - ], - "Bluetongue_virus_4_GRE1999_15_Greece_1999" : [ - "AM778440" - ], - "SARS_coronavirus_wtic_MB_wtic_MB_P3pp6" : [ - "FJ882933" - ], - "Cucumber_green_mottle_mosaic_virus_SH" : [ - "NC_001801" - ], - "Neisseria_meningitidis_G2136" : [ - "NC_017513" - ], - "Toscana_virus_TOSV_Siena_ITA_1982_3" : [ - "KM275787" - ], - "Enterovirus_A71_EV71_JN200804" : [ - "HQ825317" - ], - "Malvastrum_yellow_vein_virus__Y47" : [ - "NC_004634" - ], - "South_African_cassava_mosaic_virus__MG_MG333A1_10" : [ - "KJ887984" - ], - "Hepatitis_B_virus__Tibet_53" : [ - "JF491456" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_96_2012" : [ - "KJ686202" - ], - "GB_virus_C__Hu_6" : [ - "KC618399" - ], - "Mycoplasma_agalactiae_PG2" : [ - "NC_009497" - ], - "Human_coronavirus_OC43" : [ - "AY585229" - ], - "Cercopithecine_herpesvirus_9_Delta" : [ - "NC_002686" - ], - "Horseradish_curly_top_virus" : [ - "NC_002543" - ], - "Ateles_paniscus_polyomavirus_1__1960" : [ - "NC_019853" - ], - "Dengue_virus_2__DC694Y12" : [ - "KM279555" - ], - "Hepatitis_B_virus_42048" : [ - "FN545832" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3842_2008" : [ - "GU131680" - ], - "West_Nile_virus__WNV_1_US_BID_V4207_2003" : [ - "HM488138" - ], - "Equus_asinus_papillomavirus_AA_2014__Asinara" : [ - "NC_023882" - ], - "STL_polyomavirus__11ww" : [ - "KF525270" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_BJSD" : [ - "FJ950747" - ], - "Squash_leaf_curl_virus__EG1_3" : [ - "KM595142" - ], - "Beak_and_feather_disease_virus__2NC41B" : [ - "JX049208" - ], - "SARS_coronavirus_Rs_672_2006__Rs672" : [ - "FJ588686" - ], - "Human_papillomavirus_type_18__Qv17052" : [ - "EF202145" - ], - "Human_poliovirus_3_NIE1218547" : [ - "KJ170585" - ], - "Lactobacillus_ruminis_ATCC_27782" : [ - "NC_015975" - ], - "Tursiops_truncatus_papillomavirus_2" : [ - "NC_008184" - ], - "Hepatitis_B_virus__PG_2" : [ - "KF471660" - ], - "Human_herpesvirus_5_BE_31_2010" : [ - "KP745644" - ], - "East_African_cassava_mosaic_virus_Kenya__Seychelles_Mahe_SC16B20_2005" : [ - "JF909159" - ], - "Dengue_virus_2__57135_BR_PE_99" : [ - "JX669486" - ], - "JC_polyomavirus__GR_3" : [ - "AB048563" - ], - "Enterobacteria_phage_NC28" : [ - "DQ079875" - ], - "Dengue_virus_4__D4_Pakistan_150_2009" : [ - "KF041260" - ], - "Human_parechovirus_1__K63_94" : [ - "GQ183025" - ], - "Mycobacterium_phage_Fishburne" : [ - "NC_021302" - ], - "Tobacco_mosaic_virus__Bijie_2" : [ - "HE818414" - ], - "Pan_troglodytes_troglodytes_polyomavirus_1__F514_1" : [ - "NC_027532" - ], - "Staphylococcus_phage_IME_SA2" : [ - "KP687432" - ], - "Tomato_yellow_leaf_curl_virus__TYLCV_Sh10" : [ - "EU031444" - ], - "Bundibugyo_virus__EboBund_122_2012" : [ - "KC545395" - ], - "Tomato_severe_rugose_virus__ToSRV__BR_GO_Goi1646_03" : [ - "JX415188" - ], - "Dengue_virus_2__DENV_2_VN_BID_V726_2006" : [ - "EU482663" - ], - "Solanum_mosaic_Bolivia_virus_SoMBoV" : [ - "NC_024305", - "NC_024304" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3966_2008" : [ - "JN093516" - ], - "BK_polyomavirus__CAF_15" : [ - "AB263912" - ], - "Tomato_mild_mosaic_virus__BR_Vic17_1_10" : [ - "KC706606" - ], - "Gallid_herpesvirus_1_Composite_of_6_strains" : [ - "NC_006623" - ], - "Francisella_tularensis_SCHU_S4" : [ - "NC_006570" - ], - "Nitrosococcus_oceani_ATCC_19707" : [ - "NC_007483", - "NC_007484" - ], - "Hepatitis_B_virus__cur1028" : [ - "KC774231" - ], - "Enterobacteria_phage_Mu" : [ - "NC_000929" - ], - "Chikungunya_virus_Thailand_2009_CK650" : [ - "KJ796847" - ], - "Potato_virus_Y_Ordinary_OAO21" : [ - "AB711147" - ], - "Pseudomonas_phage_vB_PaeM_C2_10_Ab08_Ab08" : [ - "LN610575" - ], - "Monkeypox_virus__DRC_06_1075" : [ - "JX878411" - ], - "Duck_hepatitis_A_virus_1_Du_CH_LGD_100915" : [ - "JF828985" - ], - "Houston_virus_V3872" : [ - "KC807175" - ], - "Cotton_leaf_curl_Multan_virus__Okra1" : [ - "GU574208" - ], - "Cupriavidus_necator_N_1" : [ - "NC_015724", - "NC_015727", - "NC_015723", - "NC_015726" - ], - "South_African_cassava_mosaic_virus__MG_MG331A1_10" : [ - "KJ887983" - ], - "Porcine_circovirus_2_ZJ0401" : [ - "EF524521" - ], - "Chikungunya_virus__BHI3741_H804705" : [ - "KP164569" - ], - "Human_immunodeficiency_virus_1__CH200_TFa" : [ - "KC156117" - ], - "Plantago_asiatica_mosaic_virus_Li1" : [ - "AB360790" - ], - "Hepatitis_B_virus__1812" : [ - "FJ386587" - ], - "Porcine_circovirus_type_2_B_NMB" : [ - "GU799576" - ], - "Equine_arteritis_virus__S3685" : [ - "GQ903794" - ], - "Mumps_virus_JL5_JL_CK2" : [ - "JQ946551" - ], - "Hepatitis_B_virus__FLT032" : [ - "GQ358139" - ], - "Porcine_circovirus_2_BJ0602" : [ - "EF524540" - ], - "Porcine_circovirus_2__147_07_7" : [ - "HQ591369" - ], - "JC_polyomavirus__JCV161FLC_43" : [ - "JF424950" - ], - "Hepatitis_B_virus__B14" : [ - "FJ904432" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V298_2005" : [ - "EU256082" - ], - "Blainvillea_yellow_spot_virus__BR_Vic13_10" : [ - "KC706521" - ], - "Dengue_virus_2__DENV_2_PR_BID_V856_1986" : [ - "KF955363" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V4294_2007" : [ - "GU131939" - ], - "Dengue_virus_2__DENV_2_US_BID_V1469_2001" : [ - "EU687229" - ], - "Tetraselmis_viridis_virus_S20_S20" : [ - "NC_020840" - ], - "Chilli_veinal_mottle_virus__ChiVMV_Ch_War" : [ - "GU170808" - ], - "Hepatitis_B_virus__P89" : [ - "GQ477495" - ], - "Human_papillomavirus_type_45__RW46" : [ - "KC470258" - ], - "Hepatitis_B_virus__HBV_Chi51" : [ - "AB073825" - ], - "Porcine_circovirus_2__Villa_Clara_V1" : [ - "FN398023" - ], - "Enterococcus_phage_IME_EF3" : [ - "NC_023595" - ], - "Rickettsia_akari_Hartford" : [ - "NC_009881" - ], - "Sandfly_fever_Naples_virus_Sabin" : [ - "EF201829" - ], - "Dengue_virus_2__DENV_2_NI_BID_V573_2006" : [ - "EU482686" - ], - "Roseiflexus_castenholzii_DSM_13941" : [ - "NC_009767" - ], - "Enterobacteria_phage_HK106" : [ - "NC_019768" - ], - "Hepatitis_B_virus__DEN6026" : [ - "KF779224" - ], - "Human_immunodeficiency_virus_1__BREPM1070" : [ - "FJ195086" - ], - "Enterovirus_A71_Taipei_C2_Y100_2011" : [ - "KP274876" - ], - "Listeria_phage_P40" : [ - "NC_011308" - ], - "Plum_pox_virus_PPV_D_Ha3" : [ - "AB576050" - ], - "Ageratum_yellow_vein_virus__AFSP6d" : [ - "JN809821" - ], - "Hepatitis_B_virus__I114" : [ - "FJ562264" - ], - "Hepatitis_B_virus__N199v4" : [ - "KF922413" - ], - "Coxsackievirus_B4" : [ - "S76772" - ], - "Foot_and_mouth_disease_virus___type_C_C_rp146" : [ - "AJ133359" - ], - "Hepatitis_B_virus__G1_10" : [ - "GU815747" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL105A" : [ - "AB985315", - "AB985547" - ], - "Cauliflower_mosaic_virus__IRN19" : [ - "AB863154" - ], - "Mycobacterium_phage_Adawi" : [ - "NC_022328" - ], - "Potato_virus_S__Vltava" : [ - "AJ863510" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_KWT03_2011" : [ - "KM188460" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__TC2" : [ - "GU723750" - ], - "Dengue_virus_2__DENV_2_VN_BID_V761_2003" : [ - "EU482783" - ], - "Cellulophaga_phage_phi18_3_phi18_3" : [ - "NC_021794" - ], - "Cotton_leaf_curl_Multan_virus__Multan___33af" : [ - "AJ496461" - ], - "JC_polyomavirus__JCV135_35" : [ - "JF424860" - ], - "Human_immunodeficiency_virus_1__04ZAPS161B1" : [ - "DQ164115" - ], - "Hepatitis_B_virus__WJT32" : [ - "DQ377163" - ], - "Human_herpesvirus_5_BE_22_2011" : [ - "KP745653" - ], - "Bean_golden_mosaic_virus__BR_Una11_12" : [ - "KJ939831" - ], - "Human_papillomavirus_type_16__JPD085" : [ - "AB889491" - ], - "Borna_disease_virus_Bo_04w" : [ - "AB246670" - ], - "Human_immunodeficiency_virus_1__ZM247F_flA1" : [ - "FJ496195" - ], - "Piliocolobus_rufomitratus_polyomavirus_1__4601" : [ - "NC_019850" - ], - "North_American_arenavirus_AV_I0130006" : [ - "JX560798" - ], - "Spirochaeta_caldaria_DSM_7334" : [ - "NC_015732" - ], - "Hepatitis_C_virus_subtype_1b_MD30" : [ - "AF207771" - ], - "Dengue_virus_1__DENV_1_VN_BID_V980_2006" : [ - "EU482524" - ], - "Norovirus_Hu_GII_20217_2009_VNM_Hu_GII_20217_2009_VNM" : [ - "KC409280" - ], - "Dengue_virus_1_Mochizuki" : [ - "AB074760" - ], - "Candidatus_Kinetoplastibacterium_galatii_TCC219" : [ - "NC_020284" - ], - "Avian_leukosis_virus__SDO5O1" : [ - "EF467236" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00404_2011" : [ - "KJ672554" - ], - "Dengue_virus_2__DENV_2_US_BID_V1041_2006" : [ - "EU482553" - ], - "Narcissus_yellow_stripe_virus__Zhangzhou" : [ - "NC_011541" - ], - "Bean_chlorosis_virus__Venezuela_La_Barinesa_459_2006" : [ - "NC_019568", - "NC_019569" - ], - "Human_immunodeficiency_virus_1__MS2004_37_060" : [ - "EF178358" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE8228_2010" : [ - "KJ627355" - ], - "Human_papillomavirus_type_108" : [ - "NC_012213" - ], - "Human_rhinovirus_A32_ATCC_VR_1142" : [ - "FJ445127" - ], - "Human_mastadenovirus_B_human_USA_UFL_Adv11_2005_11_P11H11F11" : [ - "KF268121" - ], - "Erwinia_pyrifoliae_Ep1_96" : [ - "NC_013264", - "NC_013263", - "NC_012214", - "NC_013954", - "NC_013265" - ], - "Human_papillomavirus_type_45__BF134" : [ - "KC470256" - ], - "Hepatitis_B_virus__HBV_HK37" : [ - "AB073828" - ], - "Hepatitis_B_virus__IND_2009_18" : [ - "KF214672" - ], - "Sweet_potato_leaf_curl_virus_USA_SPLCV_US_BR_CA1_08" : [ - "HQ393443" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10GX_3" : [ - "JQ663560" - ], - "Rabies_virus__SM5079" : [ - "JQ685893" - ], - "Vibrio_fischeri_ES114" : [ - "NC_006842", - "NC_006840", - "NC_006841" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1196_2007" : [ - "EU660404" - ], - "Hepatitis_B_virus__MGL12F" : [ - "AB270542" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_28_DRC" : [ - "JX458846" - ], - "Foot_and_mouth_disease_virus___type_SAT_1_SAT1_1bech_sat1_1bech_iso30" : [ - "AY593838" - ], - "Human_herpesvirus_5_UKNEQAS1" : [ - "KJ361971" - ], - "Aeromonas_phage_phiAS7" : [ - "NC_019528" - ], - "Simian_immunodeficiency_virus_SIVmac239_85013" : [ - "AY611490" - ], - "Cauliflower_mosaic_virus__IRN4" : [ - "AB863139" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V102_2004" : [ - "EU255993" - ], - "Staphylococcus_aureus_CN1" : [ - "NC_022228", - "NC_022226", - "NC_022227" - ], - "Hepatitis_B_virus_HBV_P26" : [ - "KC510650" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3994_2008" : [ - "GU131765" - ], - "Ruminococcus" : [ - "NC_021014" - ], - "Caulobacter_phage_rogue" : [ - "NC_019408" - ], - "Feline_foamy_virus__FFVpc_X103" : [ - "KC292055" - ], - "Infectious_bronchitis_virus_YX10" : [ - "JX840411" - ], - "Human_poliovirus_1_USA10784" : [ - "EF682356" - ], - "Human_parainfluenza_virus_3_HPIV3_AUS_7_2007" : [ - "KF530230" - ], - "Synechococcus_phage_S_CBP2" : [ - "NC_025455" - ], - "SARS_coronavirus_GZ_D__GZ_D" : [ - "AY394980" - ], - "Staphylothermus_hellenicus_DSM_12710" : [ - "NC_014205" - ], - "Cotton_leaf_curl_Multan_betasatellite__GD37" : [ - "JN968574" - ], - "Eastern_equine_encephalitis_virus_Georgia_97" : [ - "AY705240" - ], - "Dengue_virus_1__HNRG14076" : [ - "KC692507" - ], - "Dengue_virus_3_D3_SG_05K3928DK1_2005" : [ - "EU081213" - ], - "Anatid_herpesvirus_1__C_KCE" : [ - "KF263690" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_86I_029A_01_1986" : [ - "KJ723461" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3733_2007" : [ - "HQ166036" - ], - "Vaccinia_virus_Copenhagen_Copenhagen" : [ - "VACCG" - ], - "Hepatitis_B_virus__HBV_16T_del2" : [ - "EU660231" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9486_2013" : [ - "KJ643546" - ], - "Human_papillomavirus_type_68__Qv30759" : [ - "KC470271" - ], - "Hepatitis_B_virus__MY303852" : [ - "KJ803789" - ], - "Croton_yellow_vein_mosaic_betasatellite__CroYVMB_Bang_Cr2" : [ - "JN831447" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4838_2009" : [ - "HQ705619" - ], - "Equine_arteritis_virus_Bucyrus" : [ - "NC_002532" - ], - "Human_immunodeficiency_virus_1__02HNsc11" : [ - "DQ007903" - ], - "Hepatitis_B_virus_56" : [ - "AF100309" - ], - "Paspalum_dilatatum_striate_mosaic_virus__AU_1652_2004" : [ - "JQ948062" - ], - "Human_papillomavirus_type_6__31" : [ - "HG793839" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__As1_Shamir_89" : [ - "JF739177" - ], - "Mycobacterium_phage_Eagle_Eagle" : [ - "HM152766" - ], - "Japanese_encephalitis_virus_Sw_Tokyo_602_2005" : [ - "AB698908" - ], - "Dactylococcopsis_salina_PCC_8305" : [ - "NC_019780" - ], - "Hepatitis_B_virus__JFA3894" : [ - "KF779260" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__LJ3_5" : [ - "GU208520", - "GU208516" - ], - "Bovine_papillomavirus_type_13_Hainan" : [ - "KM258443" - ], - "Sida_micrantha_mosaic_virus__BR_Pda8_05" : [ - "KC706537" - ], - "Bluetongue_virus_20__RSArrrr_20" : [ - "AJ586723" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_28_2" : [ - "KC106644" - ], - "Potato_virus_Y_N_Mont" : [ - "AY884983" - ], - "Hepatitis_B_virus__15D15HCC" : [ - "AB014374" - ], - "Hepatitis_B_virus__Ag33" : [ - "KJ843194" - ], - "Turkey_siadenovirus_A" : [ - "NC_001958" - ], - "Beak_and_feather_disease_virus__BFDV_DL02B" : [ - "KF768550" - ], - "Porcine_endogenous_retrovirus" : [ - "AX175461", - "A66553", - "A66552", - "EU523109", - "AX052638" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V75_2004" : [ - "EU482870" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_CFI1377_2011" : [ - "KJ672591" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLU7236_2007" : [ - "KJ672596" - ], - "Candidatus_Midichloria_mitochondrii_IricVA" : [ - "NC_015722" - ], - "Vibrio_phage_VPUSM_8" : [ - "NC_022747" - ], - "South_African_cassava_mosaic_virus__MG_MG39A7_06" : [ - "KJ887645" - ], - "West_Nile_virus_IS_98_STD1" : [ - "AF481864" - ], - "JC_polyomavirus__JCV135_14" : [ - "JF424845" - ], - "Hepatitis_B_virus__SHB627" : [ - "KJ598739" - ], - "Human_immunodeficiency_virus_1__CANC6FULL" : [ - "AY779562" - ], - "Dengue_virus_2__DGV91" : [ - "JX286523" - ], - "Hepatitis_B_virus_42349" : [ - "FN545841" - ], - "Chilli_leaf_curl_virus_DU__India_New_Delhi_Papaya_2009___DU" : [ - "HM140364" - ], - "East_African_cassava_mosaic_Cameroon_virus__EACMCV_CM_NG_So_03" : [ - "EU685323" - ], - "Pyrococcus_furiosus_COM1" : [ - "NC_018092" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1970_2008" : [ - "FJ410283" - ], - "Tomato_leaf_curl_Yemen_betasatellite__Had_tob64_89" : [ - "JF919720" - ], - "Hepatitis_B_virus_593_7" : [ - "KR013819" - ], - "African_cassava_mosaic_virus__MG_MG8A36_05" : [ - "KJ887828" - ], - "Human_bocavirus__HK21" : [ - "EF450737" - ], - "Riemerella_anatipestifer_RA_GD" : [ - "NC_017569" - ], - "Hepatitis_B_virus__BFJT2000_2" : [ - "AB642096" - ], - "Hepatitis_B_virus__Leb21" : [ - "JN642133" - ], - "Streptococcus_suis_D12" : [ - "NC_017621" - ], - "BK_polyomavirus__TW_1" : [ - "AB211381" - ], - "BK_polyomavirus__LAB_11" : [ - "AB301088" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9490_2010" : [ - "KJ627320" - ], - "Hepatitis_B_virus__patient_A4" : [ - "HPBADRM" - ], - "Human_poliovirus_3_23127" : [ - "X04468" - ], - "Burkholderia_phage_KL3" : [ - "NC_015266" - ], - "Paracoccus_denitrificans_PD1222" : [ - "NC_008686", - "NC_008687", - "NC_008688" - ], - "Bombyx_mori_densovirus_5__Shinshu" : [ - "NC_004287" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_85I_063A_01_1985" : [ - "KJ723481" - ], - "Hepatitis_B_virus__12D12HCC" : [ - "AB014371" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota85_2013" : [ - "KJ645678" - ], - "Bean_golden_mosaic_virus__BR_Mur4_11" : [ - "KJ939757" - ], - "Hepatitis_B_virus__HBV_IF714_1" : [ - "AB205126" - ], - "Chilli_leaf_curl_virus__Pakistan___Shorkot" : [ - "DQ114477" - ], - "Infectious_bronchitis_virus_ck_CH_LDL_120557" : [ - "KJ425486" - ], - "Sida_golden_mottle_virus" : [ - "NC_014130", - "NC_014128" - ], - "Rice_yellow_mottle_virus__Tz11" : [ - "AJ608215" - ], - "Dengue_virus_2__DENV_2_US_BID_V1462_2000" : [ - "EU687223" - ], - "Rotavirus_G4__Rota_544" : [ - "AB012072" - ], - "Bean_chlorotic_mosaic_virus__Venezuela_Rubio_932_2007" : [ - "NC_022003", - "NC_022005" - ], - "Squash_leaf_curl_virus__PA3_T3" : [ - "KM595235" - ], - "Hepatitis_B_virus_HB365" : [ - "JQ027318" - ], - "Coxsackievirus_A16_CC163" : [ - "KF055245" - ], - "Hepatitis_B_virus__G211" : [ - "JQ040160" - ], - "Coxsackievirus_A8__CVA8_SZ39_CHN_2013" : [ - "KM609480" - ], - "Synechococcus_JA_2_3B_a_2_13" : [ - "NC_007776" - ], - "Enterovirus_A71_Rostov" : [ - "KJ400360" - ], - "Porcine_circovirus_2__A4131" : [ - "JF317567" - ], - "Duck_hepatitis_A_virus_3_C_GY_Guangdong" : [ - "EU352805" - ], - "Human_immunodeficiency_virus_1__97VNHCM314" : [ - "FJ185241" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_CH_BID_V287_2005" : [ - "EU482874" - ], - "Rotavirus_A_RVA_Human_wt_HUN_BP1062_2004_G8P_14" : [ - "FN665696", - "FN665695", - "FN665689", - "FN665697", - "FN665698", - "FN665690", - "FN665691", - "FN665693", - "FN665688", - "FN665692", - "FN665694" - ], - "Dengue_virus_3_98901437_DSS_DV_3" : [ - "AB189126" - ], - "Acidianus_filamentous_virus_3" : [ - "NC_010155" - ], - "Corynebacterium_diphtheriae_HC03" : [ - "NC_016787" - ], - "Rotavirus_A_RVA_Human_wt_Bel_BE00106_2001_G1P_8" : [ - "JN651859", - "JN651863", - "JN651867", - "JN651857", - "JN651866", - "JN651864", - "JN651858", - "JN651861", - "JN651860", - "JN651865", - "JN651862" - ], - "Coxsackievirus_B5_CVB5_CC10_10" : [ - "JN580070" - ], - "Methanosalsum_zhilinae_DSM_4017" : [ - "NC_015676" - ], - "Rabbit_hemorrhagic_disease_virus__Italy_90" : [ - "EU003579" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT10A46_2005" : [ - "JF909233" - ], - "Human_poliovirus_3_NIE1018523" : [ - "KJ170616" - ], - "Lactococcus_phage_P118" : [ - "NC_024208" - ], - "Spodoptera_exigua_multiple_nucleopolyhedrovirus__HT_SeG25" : [ - "HG425347" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1NA9" : [ - "FJ744148" - ], - "Rabies_virus_CTN181" : [ - "EF564174" - ], - "Tonto_creek_virus_AV_D0150144" : [ - "EF619033" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD205_2013" : [ - "KM229856" - ], - "Dengue_virus_1__DENV_1_VN_BID_V955_2007" : [ - "EU482500" - ], - "Hepatitis_B_virus__HBV_16N_del1" : [ - "EU660232" - ], - "Chicken_anemia_virus__2" : [ - "KJ728815" - ], - "Grapevine_leafroll_associated_virus_1__1050" : [ - "NC_016509" - ], - "Hepatitis_B_virus__Cr04" : [ - "KJ843221" - ], - "Hepatitis_B_virus_1485_4a" : [ - "KR014082" - ], - "Enterovirus_A71_Shanghai_27_2009" : [ - "HQ891923" - ], - "Apple_stem_pitting_virus__Hannover" : [ - "KF321967" - ], - "Enterobacteria_phage_C_1_INW_2012" : [ - "NC_019920" - ], - "Hepatitis_B_virus__C76_5" : [ - "FJ899771" - ], - "Lettuce_mosaic_virus__Tn515" : [ - "KJ161188" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2784_2007" : [ - "GQ199804" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC306" : [ - "KF551592", - "KF577603" - ], - "Human_papillomavirus_type_6__1" : [ - "HG793809" - ], - "Hepatitis_B_virus__GU3397" : [ - "GQ161823" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V84_2001" : [ - "EU256028" - ], - "Bluetongue_virus_21_RSArrrr_21" : [ - "AM900390" - ], - "South_African_cassava_mosaic_virus__MG_MG133A45_09" : [ - "KJ887665" - ], - "WU_Polyomavirus_S3" : [ - "EF444552" - ], - "Enterovirus_A71_FY17_08_5_AH_CHN_2008" : [ - "JX678876" - ], - "Human_coronavirus_NL63__CBJ123" : [ - "JX524171" - ], - "Acinetobacter_baumannii_BJAB0868" : [ - "NC_021730", - "NC_021729", - "NC_021732", - "NC_021731" - ], - "Dengue_virus_3__13GDZDVS30D" : [ - "KF954948" - ], - "Mycobacterium_phage_Troll4" : [ - "NC_011285" - ], - "Yellow_fever_virus__ArD149214" : [ - "JX898873" - ], - "Human_adenovirus_7_K57_JM_CHN_2012" : [ - "KJ019882" - ], - "Tomato_severe_rugose_virus__BR_Vic27_09" : [ - "JX865640" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_47_2012" : [ - "KJ686269" - ], - "Venezuelan_equine_encephalitis_virus_Cabassou_CaAr_508" : [ - "AF075259" - ], - "Pseudomonas_phage_JBD88a" : [ - "NC_020200" - ], - "Tobacco_streak_virus__FL13_07" : [ - "KM504248", - "KM504247", - "KM504246" - ], - "Duck_hepatitis_A_virus_3__LS" : [ - "KP233203" - ], - "Tomato_leaf_curl_Palampur_virus__TC238" : [ - "KF663700" - ], - "Human_papillomavirus_type_33__INJP06456" : [ - "HQ537700" - ], - "Wheat_dwarf_virus__HNZZ08_6" : [ - "KJ536094" - ], - "Hepatitis_B_virus__A1_Wild_SA" : [ - "KM519453" - ], - "Norovirus_Hu_GII_4_Kumamoto2_2006_JP_Hu_GII_4_Kumamoto2_2006_JP" : [ - "AB447460" - ], - "Hepatitis_B_virus__BA96" : [ - "EU366133" - ], - "Porcine_circovirus_2_HB0802" : [ - "FJ608549" - ], - "Human_bocavirus__TW2888_06" : [ - "EU984237" - ], - "Hepatitis_B_virus_genotype_F_VNZ8381" : [ - "AB036919" - ], - "Tick_borne_encephalitis_virus_MDJ_02" : [ - "JF316707" - ], - "Legionella_pneumophila_ATCC_43290" : [ - "NC_016811" - ], - "JC_polyomavirus__ME_8" : [ - "AB081022" - ], - "Hepatitis_B_virus_274_16a" : [ - "KR013901" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y38" : [ - "AJ579355" - ], - "Hepatitis_B_virus_adr_subtype_NSS_1" : [ - "AB042282" - ], - "Hepatitis_B_virus__HEN9_CHB" : [ - "JN664930" - ], - "Hepatitis_B_virus__CAR082" : [ - "AM494699" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1690_2007" : [ - "FJ205880" - ], - "Japanese_encephalitis_virus__YN0967" : [ - "JF706268" - ], - "Spodoptera_exigua_multiple_nucleopolyhedrovirus__HT_SeG26" : [ - "HG425348" - ], - "BK_polyomavirus__NAR_41" : [ - "AB365137" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2166_1998" : [ - "FJ639739" - ], - "West_Nile_virus__WNV_1_US_BID_V6622_2001" : [ - "KJ501374" - ], - "West_Nile_virus__WNV_1_US_BID_V4359_2007" : [ - "HM488163" - ], - "Hepatitis_B_virus__I20" : [ - "FJ562226" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9427_2013" : [ - "KJ643504" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Iran_56" : [ - "DQ446214" - ], - "Bean_common_mosaic_virus__PV_0915" : [ - "HG792064" - ], - "Candidatus_Moranella_endobia_PCIT" : [ - "NC_015735" - ], - "Scrophularia_mottle_virus" : [ - "NC_011537" - ], - "Squirrelpox_virus_Red_squirrel_UK" : [ - "NC_022563" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PAN_213391_2003_ID" : [ - "KC344476" - ], - "Rabies_virus__SM5441" : [ - "JQ685962" - ], - "Ketogulonicigenium_vulgare_WSH_001" : [ - "NC_017385", - "NC_017384", - "NC_017386" - ], - "Human_immunodeficiency_virus_1__04JPDR5782C" : [ - "AB286849", - "AB286850" - ], - "Human_adenovirus_64_human_USA_C_1993_64_P22H19F37__Carrel" : [ - "EF121005" - ], - "Suid_herpesvirus_1_Composite_of_6_strains" : [ - "NC_006151" - ], - "JC_polyomavirus__MN_11" : [ - "AB077871" - ], - "Hepatitis_B_virus__MLT0869" : [ - "KF779296" - ], - "Potato_yellow_mosaic_virus__Guadeloupe__Guadeloupe" : [ - "AY120883", - "AY120882" - ], - "Murine_coronavirus_MHV_BHKR_lab_USA_icA59_L94P_2012_L94P" : [ - "KF268338" - ], - "Dengue_virus_2__DENV_2_IPC_BID_V3795_2008" : [ - "GU131898" - ], - "Dengue_virus_1__DENV_1_IPC_BID_V3925_2006" : [ - "GQ868639" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_Asia1Leb83_asia1leb83_iso28" : [ - "AY593800" - ], - "Norovirus_Hu_GII_20469_2010_VNM_Hu_GII_20469_2010_VNM" : [ - "KC409301" - ], - "Siegesbeckia_yellow_vein_virus_associated_DNA_beta__GD13" : [ - "NC_008237" - ], - "Coxsackievirus_A24__DSO_26_2005" : [ - "DQ443002" - ], - "Physalis_mottle_virus" : [ - "NC_003634" - ], - "JC_polyomavirus__ET_3" : [ - "AB048547" - ], - "Duck_reovirus_ZJ00M" : [ - "KF154117", - "KF154113", - "KF154118", - "KF154119", - "KF154112", - "KF154115", - "KF154114", - "KF154110", - "KF154111" - ], - "JC_polyomavirus__MU_9" : [ - "AB048559" - ], - "Human_immunodeficiency_virus_1__BREPM11948" : [ - "DQ085871" - ], - "Human_papillomavirus_type_33__Qv22751" : [ - "HQ537689" - ], - "Potato_leafroll_virus__VIRUBRA_1_046" : [ - "EU717546" - ], - "Citrus_tristeza_virus__FS577" : [ - "KC517488" - ], - "Apple_stem_grooving_virus__T47" : [ - "KF434636" - ], - "Porcine_circovirus_2__SZ2" : [ - "KC514978" - ], - "Cauliflower_mosaic_virus__JPNN" : [ - "AB863160" - ], - "Bat_adeno_associated_virus_YNM_YNM" : [ - "NC_014468" - ], - "Hamster_polyomavirus__2772" : [ - "JX416849" - ], - "BK_polyomavirus__MT_clone_44" : [ - "AB485701" - ], - "Tomato_mosaic_virus" : [ - "AF155507" - ], - "Lolium_latent_virus__US1" : [ - "NC_010434" - ], - "Human_coronavirus_OC43_OC43_human_USA_9211_43_1992" : [ - "KF530097" - ], - "Foot_and_mouth_disease_virus_HKN_2002_HKN_2002" : [ - "AY317098" - ], - "Human_adenovirus_21_NHRC_44288" : [ - "KJ364576" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD27_2012" : [ - "KM229780" - ], - "Hepatitis_B_virus__D4_50077" : [ - "FJ692536" - ], - "African_cassava_mosaic_virus__TD_TD3B_08" : [ - "KJ887751" - ], - "Oscivirus_A2_00742" : [ - "GU182411" - ], - "Equine_infectious_anemia_virus_DLV_DLV3_A" : [ - "HM141913" - ], - "Beet_black_scorch_virus__Xinjiang" : [ - "AY626780" - ], - "Human_bocavirus__HZ0901" : [ - "KP710199" - ], - "Porcine_circovirus_2_GXLC" : [ - "EF675240" - ], - "Mammalian_orthoreovirus_3__GD_1" : [ - "JX486060", - "JX486062", - "JX486058", - "JX486059", - "JX486061", - "JX486057", - "JX486063", - "JX486066", - "JX486065", - "JX486064" - ], - "Hepatitis_B_virus__EG64" : [ - "AB104709" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_Am_83e_2008" : [ - "HM748924" - ], - "Oropouche_virus_GML_444479" : [ - "KC759128", - "KC759129" - ], - "Lagos_bat_virus__8619NGA" : [ - "EU293110" - ], - "Geobacter_bemidjiensis_Bem" : [ - "NC_011146" - ], - "Torque_teno_sus_virus_1a__TTV1Bj4_1" : [ - "HM633246" - ], - "Rice_stripe_virus__LiaoN08" : [ - "JQ927436", - "JQ927430", - "JQ927418", - "JQ927424" - ], - "Brugmansia_mild_mottle_virus__2373" : [ - "NC_010944" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_1" : [ - "EU384606" - ], - "Feline_immunodeficiency_virus__YF16" : [ - "EF455608" - ], - "Hepatitis_B_virus_Whutj_37" : [ - "AY293309" - ], - "Sorangium_cellulosum_So0157_2" : [ - "NC_021658" - ], - "Avian_orthoreovirus_Reo_PA_Broiler_05682_12" : [ - "KM877331", - "KM877334", - "KM877325", - "KM877326", - "KM877332", - "KM877327", - "KM877333", - "KM877329", - "KM877328", - "KM877330" - ], - "Hepatitis_B_virus__C77" : [ - "EU939564" - ], - "Human_respiratory_syncytial_virus_S2_S2" : [ - "HRU39662" - ], - "Human_poliovirus_3_FIN84_2493" : [ - "FJ842159" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ04B16_2004" : [ - "JF909068" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Minnesota16" : [ - "KP283404" - ], - "Human_papillomavirus_type_6__93" : [ - "HG793901" - ], - "Plum_pox_virus_C_Volk143" : [ - "KJ787006" - ], - "African_swine_fever_virus__Tengani_62" : [ - "AY261364" - ], - "Duck_circovirus__PX08_2011" : [ - "KC460533" - ], - "Dengue_virus_3_D3BR_RP1_2003" : [ - "EF643017" - ], - "Hepatitis_B_virus__SHB67" : [ - "KJ598724" - ], - "Pseudomonas_phage_vB_PaeS_PAO1_Ab30_Ab30" : [ - "NC_026601" - ], - "Hepatitis_B_virus__2000" : [ - "FJ386610" - ], - "Staphylococcus_phage_676Z" : [ - "JX080302" - ], - "Tomato_yellow_leaf_curl_China_alphasatellite__Y87" : [ - "AJ888445", - "AJ579357" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1591_2004" : [ - "EU854291" - ], - "JC_polyomavirus__PE_11" : [ - "AB081024" - ], - "Dengue_virus_2_DENV_2_PR_1DN_1994" : [ - "GQ398309" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_116_2012" : [ - "KJ686168" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kampala_Okra4" : [ - "FN554524" - ], - "Porcine_circovirus_2_DBN_SX07_2" : [ - "HM641752" - ], - "Rickettsia_massiliae_MTU5" : [ - "NC_009900", - "NC_009897" - ], - "Hepatitis_B_virus__JFA3857" : [ - "KF779257" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2749_2007" : [ - "FJ882546" - ], - "Parietaria_mottle_virus" : [ - "NC_005849", - "NC_005848", - "NC_005854" - ], - "Canine_parvovirus_2c__UY368" : [ - "KM457131" - ], - "Murine_pneumonia_virus_15__ATCC_VR_25" : [ - "AY729016" - ], - "Simian_retrovirus_4_SR415" : [ - "AB920339" - ], - "Hepatitis_B_virus__LBY041" : [ - "GQ358138" - ], - "European_mountain_ash_ringspot_associated_virus__E52284" : [ - "HG799717" - ], - "Tomato_leaf_curl_Sudan_virus__G11" : [ - "HG530541" - ], - "Dengue_virus_3__DENV_3_LK_BID_V2413_1993" : [ - "FJ882573" - ], - "Human_papillomavirus_type_27" : [ - "X74473" - ], - "Pseudomonas_phage_PaP2" : [ - "NC_005884" - ], - "African_cassava_mosaic_virus__CF_CF127AB_07" : [ - "KJ887802" - ], - "Rose_spring_dwarf_associated_virus__California" : [ - "NC_010806" - ], - "Cherry_mottle_leaf_virus_SA1162_21" : [ - "NC_002500" - ], - "Hepatitis_B_virus__Ag21" : [ - "KJ843182" - ], - "Human_herpesvirus_5_CZ_1_2013" : [ - "KP745691" - ], - "Hepatitis_B_virus_1240_9b" : [ - "KR013841" - ], - "Dengue_virus_4__EHI310A129SY10" : [ - "JX024758" - ], - "Human_immunodeficiency_virus_1__EE0359" : [ - "AY535659" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1832_2007" : [ - "FJ432747" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2327_2001" : [ - "FJ744738" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3670_1" : [ - "KM034553" - ], - "Yellow_fever_virus_Uganda48a" : [ - "AY968065" - ], - "Streptomyces_phage_R4" : [ - "NC_019414" - ], - "Temperate_fruit_decay_associated_virus__MFBpe5" : [ - "KR134329" - ], - "Rabbit_hemorrhagic_disease_virus_Wika" : [ - "EF558574" - ], - "Cotton_leaf_curl_Multan_alphasatellite__Wellington" : [ - "KC305093" - ], - "Human_immunodeficiency_virus_1___134" : [ - "AB428552" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2047_2005" : [ - "GQ868623" - ], - "Rice_tungro_bacilliform_virus_RTBV_G1" : [ - "AF113830" - ], - "Dengue_virus_2__DC654Y12" : [ - "KM279546" - ], - "Ictalurid_herpesvirus_1_Auburn_1" : [ - "NC_001493" - ], - "Hepatitis_B_virus__S157_9" : [ - "FJ787441" - ], - "Leptospira_biflexa_serovar_Patoc__Patoc_1__Ames" : [ - "NC_010846", - "NC_010845", - "NC_010842" - ], - "Lettuce_mosaic_virus__AF199_2013" : [ - "KF268954" - ], - "Tomato_leaf_curl_China_virus__G63" : [ - "AJ704603" - ], - "Dengue_virus_3__DENV_3_NI_BID_V2644_2008" : [ - "FJ850052" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1298_2007" : [ - "FJ390390" - ], - "Foot_and_mouth_disease_virus___type_O__WFL" : [ - "EF175732" - ], - "Lactobacillus_johnsonii_FI9785" : [ - "NC_013505", - "NC_012552", - "NC_013504" - ], - "Coxsackievirus_A14__PZ05Y_JS_2012" : [ - "KP036482" - ], - "Gaillardia_latent_virus__5_18_05_2010" : [ - "NC_023892" - ], - "Cucumber_mosaic_virus__Ca" : [ - "AY429434", - "AY429433", - "AY429432" - ], - "Hepatitis_B_virus__cur1009" : [ - "KC774227" - ], - "Huaiyangshan_virus__M_WSQ" : [ - "JF951394" - ], - "JC_polyomavirus__SL_2" : [ - "AB048553" - ], - "Maize_streak_virus__MSV_UKab48" : [ - "EF015782" - ], - "BK_polyomavirus__NEA_28" : [ - "AB365140" - ], - "Dengue_virus_1__DENV_1_VN_BID_V770_2003" : [ - "EU482792" - ], - "Hepatitis_B_virus__N060v2" : [ - "KF922436" - ], - "Norovirus_GI_Hu_JP_2007_GI_P8_GII_8_Nagoya_KY531__Nagoya_KY531" : [ - "KJ196298" - ], - "Plum_pox_virus_D_Cdn_4" : [ - "AY953263" - ], - "JC_polyomavirus__FL_11" : [ - "AB127351" - ], - "Dengue_virus_1_DGVgz01" : [ - "EU280167" - ], - "Duck_circovirus__GX1105" : [ - "JX241045" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V176_1992" : [ - "EU255970" - ], - "Maize_streak_virus__MSV_A1_Mz_Bob_g204_2007" : [ - "EU628564" - ], - "Human_papillomavirus_type_6__11" : [ - "HG793819" - ], - "Tomato_spotted_wilt_virus__CG_1" : [ - "JN664253", - "JN664252", - "JN664254" - ], - "Infectious_bursal_disease_virus_GX_NN_L" : [ - "JX134485", - "JX134486" - ], - "African_swine_fever_virus_Benin_97_1__Benin_97_1" : [ - "AM712239" - ], - "Streptococcus_thermophilus_LMG_18311" : [ - "NC_006448" - ], - "Asparagus_virus_2__Mexican" : [ - "NC_011807" - ], - "Listeria_phage_B025" : [ - "NC_009812" - ], - "Hepatitis_B_virus__AIDS33" : [ - "JQ801486" - ], - "Tomato_leaf_curl_Hanoi_virus__Vietnam_Hanoi_tomato_2010" : [ - "NC_015124" - ], - "Porcine_circovirus_2_PDS_1" : [ - "JF928003" - ], - "Cotton_leaf_curl_Multan_betasatellite__GX01" : [ - "JQ317604" - ], - "Hepatitis_B_virus__EI02456" : [ - "DQ315780" - ], - "Hepatitis_B_virus__C208" : [ - "EU939608" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1638_2007" : [ - "FJ024445" - ], - "Staphylococcus_phage_MSA6" : [ - "JX080304" - ], - "Bovine_foamy_virus_3026" : [ - "AY134750" - ], - "Pandoraea_pnomenusa_3kgm" : [ - "NC_022904" - ], - "Maize_streak_virus__MSV_A_GH_gh143_Ase_2010" : [ - "KJ699330" - ], - "Porcine_circovirus_2__1314_09_1" : [ - "HQ591381" - ], - "Hepatitis_B_virus__NH25M1_e39" : [ - "KJ173318" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V457_2006" : [ - "EU155237" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4239_2006" : [ - "HM181941" - ], - "Streptomyce_phage_TG1" : [ - "NC_018853" - ], - "Hepatitis_B_virus__S1634_2" : [ - "FJ032360" - ], - "Human_immunodeficiency_virus_1__LTNP1" : [ - "KC935959" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0098" : [ - "KP759763" - ], - "Newcastle_disease_virus__chicken_N__Ireland_Ulster_67" : [ - "AY562991" - ], - "Deformed_wing_virus__Varroa_infested_colony_DJE202" : [ - "KJ437447" - ], - "Duck_circovirus__11_1" : [ - "KF941310" - ], - "Human_immunodeficiency_virus_1__00BW1773_2" : [ - "AF443095" - ], - "Tomato_yellow_leaf_curl_virus__SX_XA1" : [ - "KC312669" - ], - "Mycobacterium_bovis_BCG_Korea_1168P" : [ - "NC_020245" - ], - "Newcastle_disease_virus_pf_CH_LHLJ_131047" : [ - "KJ607171" - ], - "JC_polyomavirus__SA84_00" : [ - "AY536240" - ], - "Foot_and_mouth_disease_virus___type_A_A32_Venezuela_a32ven_iso36" : [ - "AY593775" - ], - "Cleome_leaf_crumple_virus__BR_AL_Ata1_07" : [ - "JN103433" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V248_2006" : [ - "EU255953" - ], - "Enterovirus_A71__THA_EV71_044" : [ - "JF738002" - ], - "Tistrella_mobilis_KA081020_065" : [ - "NC_017956", - "NC_017957", - "NC_017966", - "NC_017959", - "NC_017958" - ], - "Bean_golden_mosaic_virus__BR_Mrb_05" : [ - "KJ939715" - ], - "Human_herpesvirus_6A_GS" : [ - "KC465951" - ], - "Hepatitis_B_virus__gib153" : [ - "AJ131573" - ], - "Squash_leaf_curl_virus__LB3_6_41" : [ - "KM595136" - ], - "Bluetongue_virus_4_BTV_4IT_L" : [ - "JN255890", - "JN255884", - "JN255889", - "JN255887", - "JN255882", - "JN255885", - "JN255883", - "JN255888", - "JN255886", - "JN255891" - ], - "Human_immunodeficiency_virus_1__04013226_2_flD7" : [ - "FJ496077" - ], - "Hepatitis_B_virus_WLAID" : [ - "AF182805" - ], - "Human_metapneumovirus_HMPV_AUS_150229278_2003_A" : [ - "KC562226" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143036" : [ - "KR653285" - ], - "Acidianus_spindle_shaped_virus_1" : [ - "NC_013585" - ], - "Dengue_virus_2__DENV_2_MX_BID_V3717_2007" : [ - "GU131975" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_8__AHEaCV_8_NZ_4738GA_2012" : [ - "KM874313" - ], - "Human_papillomavirus_type_6__PV1774" : [ - "JN252318" - ], - "Norovirus_Hu_GII_20146_2009_VNM_Hu_GII_20146_2009_VNM" : [ - "KC409251" - ], - "Serratia_symbiotica__Cinara_cedri" : [ - "NC_016632" - ], - "Pea_seed_borne_mosaic_virus_pathotype_P_4_NY" : [ - "X89997" - ], - "Hepatitis_delta_virus_dTk2_dTk2" : [ - "AM779597" - ], - "Coxsackievirus_A24_CA24v_Okinawa_23_2011" : [ - "AB769161" - ], - "Dengue_virus_2__DC589Y12" : [ - "KM279528" - ], - "Streptococcus_pneumoniae_gamPNI0373" : [ - "NC_018630" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1797_2007" : [ - "FJ410198" - ], - "Junin_mammarenavirus_Candid_1" : [ - "AY746354", - "AY746353" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_A1_2D_V" : [ - "JX570638" - ], - "Cotton_leaf_curl_Multan_virus__JM" : [ - "HQ455363" - ], - "Dengue_virus_4__P73_1120" : [ - "JF262780" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2710_2006" : [ - "FJ882535" - ], - "Bean_common_mosaic_virus__DXH016" : [ - "KJ807806" - ], - "Hepatitis_B_virus__D_NZL_BU12_1999" : [ - "HQ700446" - ], - "Pepino_mosaic_virus_Ch2_CAM1_IT" : [ - "HG976946" - ], - "Mungbean_yellow_mosaic_virus_Soybean_Madurai__Madurai" : [ - "AJ867554" - ], - "Maize_streak_virus__MSV_A_GH_gh153_Top_2010" : [ - "KJ699335" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3978_2008" : [ - "GU131751" - ], - "Human_respiratory_syncytial_virus__RSV_13" : [ - "GU591770" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_4_2005" : [ - "KF430196" - ], - "African_cassava_mosaic_virus__CF_CF362BN_07" : [ - "KJ887632" - ], - "Hepatitis_B_virus__EN57_CHB" : [ - "JN664925" - ], - "Hepatitis_B_virus__MMA_9" : [ - "AM421537" - ], - "Fusarium_graminearum_hypovirus_1__HN10" : [ - "NC_023680" - ], - "Hepatitis_B_virus__3Mg" : [ - "JN811655" - ], - "Chlorobaculum_parvum_NCIB_8327" : [ - "NC_011027" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1812_2007" : [ - "FJ410205" - ], - "Hepatitis_B_virus__SLC129" : [ - "KJ598760" - ], - "West_Nile_virus__WNV_1_US_BID_V4906_2001" : [ - "HQ671714" - ], - "Dengue_virus_1__DENV_1_US_BID_V1741_1998" : [ - "FJ390379" - ], - "Rattus_norvegicus_polyomavirus_1__3687" : [ - "KR065724" - ], - "Human_immunodeficiency_virus_1__X475" : [ - "AF423758" - ], - "Tobacco_streak_virus__TSVAPMG" : [ - "FJ417083" - ], - "Simian_immunodeficiency_virus" : [ - "AJ580407", - "JN835460", - "SIVMNE", - "SIVAGMAA", - "SIVSTM", - "DQ201172", - "DQ201174", - "DQ201173", - "SIV1A11AA", - "SIVSMMPBJA", - "X52154", - "DQ374657", - "SIVSMMPBJB", - "JN835461", - "DQ374658", - "JN835462" - ], - "Hepatitis_B_virus__G1_7" : [ - "GU815757" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d2om1" : [ - "HQ890534" - ], - "Tobacco_leaf_chlorosis_betasatellite__01" : [ - "JX025223" - ], - "Dengue_virus_2_ThNH_p16_93" : [ - "AF022440" - ], - "FTLS_virus__YSH39" : [ - "KF356529", - "KF356517", - "KF356541" - ], - "Tursiops_truncatus_papillomavirus_5_Tt08_09_5" : [ - "JN709470" - ], - "Squash_leaf_curl_virus__PA1_J245" : [ - "KM595218" - ], - "Dengue_virus_2__DC716Y12" : [ - "KM279591" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP4C_subpopulation_1" : [ - "JN013996" - ], - "Porcine_circovirus_2_TianChang0603" : [ - "EU503038" - ], - "Norovirus_Hu_GI_1_CHA5A010_2009_USA_Hu_GI_1_CHA5A010_2009_USA" : [ - "KF039732" - ], - "Hepatitis_B_virus__S659_5" : [ - "FJ032344" - ], - "Hepatitis_B_virus__S5_1" : [ - "EU916219" - ], - "Macroptilium_yellow_spot_virus__BR_Sti4_11" : [ - "KJ939862" - ], - "Hepatitis_B_virus__I87" : [ - "FJ562254" - ], - "HBV_genotype_C__TRF08111" : [ - "AB554015" - ], - "Hepatitis_B_virus__dww1028" : [ - "KC774440" - ], - "Wheat_dwarf_virus__HNJZ07_1" : [ - "KJ536090" - ], - "Hepatitis_C_virus__Eg12" : [ - "DQ988079" - ], - "Hepatitis_B_virus__P116" : [ - "GQ477501" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__CH2002" : [ - "EU880438" - ], - "Streptococcus_pneumoniae_JJA" : [ - "NC_012466" - ], - "Rotavirus_subgroup_1" : [ - "RO1VP7" - ], - "Dengue_virus_1__GZ27" : [ - "KJ438296" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1566" : [ - "KM573776" - ], - "Porcine_circovirus_2__168_08_6" : [ - "HQ591371" - ], - "Tula_virus_Tula_23Ma_87" : [ - "Z30945" - ], - "Mycobacterium_phage_Murphy" : [ - "NC_021305" - ], - "Human_papillomavirus_type_18__BF226" : [ - "KC470230" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLI1921_2010_A" : [ - "KJ627381" - ], - "Chilli_veinal_mottle_virus__Yp8" : [ - "KC711055" - ], - "JC_polyomavirus__PH_5" : [ - "AB113139" - ], - "Avian_orthoreovirus_T_98" : [ - "EF030499" - ], - "Raspberry_ringspot_virus" : [ - "S46011" - ], - "Cotton_leaf_curl_Kokhran_virus_Pakistan_Multan_2008_stocksii1" : [ - "HM468427" - ], - "Corynebacterium_pseudotuberculosis_P54B96" : [ - "NC_017031" - ], - "Sweet_potato_leaf_curl_Georgia_virus__China_Hubei_2013" : [ - "KF769447" - ], - "Norovirus_GII_Hu_JP_2002_GII_P16_GII_17_Saitama_T87__Saitama_T87" : [ - "KJ196286" - ], - "Dengue_virus_2_DENV_2_PR_27DN_1994" : [ - "GQ398281" - ], - "Tomato_leaf_curl_Yemen_betasatellite__Had_tob62_89" : [ - "JF919718" - ], - "Madariaga_virus_MADV_X_ECU_75V1496_1974" : [ - "KJ469601" - ], - "Maize_streak_virus__MSV_B1_Za_ThoD_g134_2006" : [ - "EU628608" - ], - "Dengue_virus_2__DENV_2_US_BID_V855_1992" : [ - "EU482594" - ], - "Maize_streak_virus__MSV_G_Ng_Bow_g224_2007" : [ - "EU628632" - ], - "Hepatitis_B_virus__Jacko" : [ - "HQ603074" - ], - "Barley_yellow_mosaic_virus_BaYMV_I" : [ - "AB430766", - "AB430765" - ], - "Arcobacter_butzleri_ED_1" : [ - "NC_017187" - ], - "Macaca_fascicularis_papillomavirus_type_6__Mac39" : [ - "EF558840" - ], - "Salmonella_phage_RE_2010" : [ - "NC_019488" - ], - "Hepatitis_C_virus__QC218" : [ - "JF735133" - ], - "Tobacco_mild_green_mosaic_virus" : [ - "NC_001556" - ], - "Mungbean_yellow_mosaic_virus_Vigna_Maharashtra__soybean" : [ - "AF314530" - ], - "Nocardiopsis_alba_ATCC_BAA_2165" : [ - "NC_018524" - ], - "Human_herpesvirus_3_32" : [ - "DQ479963", - "DQ479961", - "DQ479962" - ], - "Spodoptera_exigua_multiple_nucleopolyhedrovirus" : [ - "NC_002169" - ], - "Pseudomonas_putida_GB_1" : [ - "NC_010322" - ], - "Dengue_virus_2_DENV_2_PR_44DN_1994" : [ - "GQ398296" - ], - "Hepatitis_B_virus__66_CW_BRA" : [ - "KJ854704" - ], - "Rickettsia_rickettsii_Brazil" : [ - "NC_016913" - ], - "Dengue_virus_3_D3_SG_05K4168DK1_2005" : [ - "EU081218" - ], - "Barley_dwarf_virus__DE45BDV" : [ - "HF968650" - ], - "West_Nile_virus__WNV_1_US_BID_V4378_2005" : [ - "HM488198" - ], - "Infectious_bronchitis_virus_ck_CH_LSD_121228" : [ - "KJ435285" - ], - "Avian_leukosis_virus_TW_3593" : [ - "HM582658" - ], - "Turnip_mosaic_virus__AUST4" : [ - "AB989632" - ], - "Dengue_virus_2_DENV_2_PR_17DN_1995" : [ - "GQ398301" - ], - "Hepatitis_B_virus__S1538_6" : [ - "FJ787471" - ], - "Wheat_dwarf_virus__WDV_Uk_g" : [ - "FN806783" - ], - "Foot_and_mouth_disease_virus___type_A__IND_249_2004" : [ - "HQ832582" - ], - "Human_parvovirus_B19__KU8" : [ - "KM393167" - ], - "Escherichia_coli_K_12_substr__MDS42" : [ - "NC_020518" - ], - "Human_papillomavirus_type_31__HQV00693" : [ - "HQ537685" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL075A" : [ - "AB985303", - "AB985535" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1643_2007" : [ - "FJ024447" - ], - "Zaire_ebolavirus_Zaire_1995" : [ - "AY354458" - ], - "Hepatitis_B_virus__TP56" : [ - "KF192840" - ], - "Hepatitis_B_virus__ES69_2" : [ - "JF828906" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G19072_D30613_2007" : [ - "KR135300" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3946_2008" : [ - "JF937603" - ], - "Human_immunodeficiency_virus_1__BCF06" : [ - "AB485666", - "AB485667" - ], - "Hepatitis_B_virus__II_2" : [ - "AY596110" - ], - "Wheat_dwarf_virus__YNKM08_13" : [ - "KJ536141" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP4B_subpopulation_1" : [ - "JN013982" - ], - "Newcastle_disease_virus__Chicken_China_Shandong_01_2009" : [ - "KC542904" - ], - "Hepatitis_B_virus__C_F155C_2004" : [ - "HQ700496" - ], - "Cocksfoot_streak_virus" : [ - "NC_003742" - ], - "Dengue_virus_2__CAM7786" : [ - "GU369819" - ], - "Hepatitis_E_virus__SH_SW_zs1" : [ - "EF570133" - ], - "Hepatitis_B_virus__MMA_6" : [ - "AM421534" - ], - "Ehrlichia_ruminantium_Welgevonden" : [ - "NC_005295" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Ker_T8X_Cuc_07" : [ - "FJ660433" - ], - "Hepatitis_B_virus__C_Tonga_To293_2006" : [ - "HQ700577" - ], - "Dengue_virus_2__MKS_0082" : [ - "KC762658" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V194_1990" : [ - "EU255982" - ], - "Mycobacterium_phage_RhynO" : [ - "NC_023609" - ], - "Human_immunodeficiency_virus_1__10MYPR87" : [ - "KF425293" - ], - "SFTS_virus_AH15_AH15" : [ - "HQ141594", - "HQ141593", - "HQ141592" - ], - "Squash_leaf_curl_virus__PA3_T2" : [ - "KM595234" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7058_2007" : [ - "KJ189274" - ], - "Enterobacteria_phage_FI_sensu_lato_Enterobacteria_phage_SP" : [ - "NC_004301" - ], - "Eastern_equine_encephalitis_virus_EEEV_H_sapiens_USA_V105_00210_2005" : [ - "KP282670" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_660" : [ - "KP998414" - ], - "West_Nile_virus__WNV_1_US_BID_V4885_2005" : [ - "HQ671725" - ], - "Tomato_spotted_wilt_virus_BR_01__CNPH1" : [ - "NC_002052" - ], - "Feline_leukemia_virus_FeLV_FAIDS" : [ - "FCVF6A" - ], - "Hepatitis_B_virus__A1_48090" : [ - "FJ692566" - ], - "Bean_yellow_mosaic_virus__SP1" : [ - "HG970851" - ], - "JC_polyomavirus__JCV135_08" : [ - "JF424841" - ], - "Foot_and_mouth_disease_virus___type_O_O_Rey_Iran_orey_iran_iso53" : [ - "AY593834" - ], - "Beak_and_feather_disease_virus__BFDV_T_PL_1032_2010" : [ - "JX221001" - ], - "Human_immunodeficiency_virus_1__2007CNGX_HK" : [ - "JF719819" - ], - "Southern_rice_black_streaked_dwarf_virus__JNi4" : [ - "HM998852", - "HM998850", - "HM998851" - ], - "Porcine_circovirus_2__ISUVDL_98_15237" : [ - "AF147751" - ], - "Hepatitis_C_virus_subtype_1b__No__16" : [ - "AB154191" - ], - "Tobacco_yellow_dwarf_virus_A__TYDV_A_AU_3492M_2002" : [ - "JN989444", - "JN989446" - ], - "Human_papillomavirus_type_119__CL3647" : [ - "GQ845441" - ], - "Sweet_potato_leaf_curl_virus_USA_SPLCV_US_BR_AM4_09" : [ - "HQ393475" - ], - "BK_polyomavirus__KOM_1" : [ - "AB211373" - ], - "Porcine_circovirus_1__TZ70717" : [ - "FJ159692" - ], - "Hepatitis_B_virus__HBV_C4" : [ - "Y18855" - ], - "Monkeypox_virus_Zaire_1979_005" : [ - "HM172544", - "DQ011155" - ], - "Shamonda_virus__Ib_An_5550" : [ - "NC_018467", - "NC_018463", - "NC_018464" - ], - "Peste_des_petits_ruminants_virus__Turkey_2000" : [ - "NC_006383" - ], - "Human_immunodeficiency_virus_1__06KECst_028" : [ - "FJ623479" - ], - "Nipah_virus__NIVBGD2008RAJBARI" : [ - "JN808863" - ], - "West_Nile_virus__WNV_1_US_BID_V6485_2002" : [ - "KJ501322" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V360_2006" : [ - "EU256060" - ], - "Marinobacter_adhaerens_HP15" : [ - "NC_017508", - "NC_017506", - "NC_017507" - ], - "Grapevine_leafroll_associated_virus_3__LN" : [ - "JQ423939" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT67B08_2009" : [ - "JF909198" - ], - "Porcine_epidemic_diarrhea_virus_USA_Oklahoma38_2013" : [ - "KJ645644" - ], - "Salmonella_enterica_serovar_Typhimurium_DT2" : [ - "NC_022544" - ], - "Enterovirus_A71_Guangdong_2009" : [ - "JF799986" - ], - "Faba_bean_necrotic_yellows_virus__EV1_93" : [ - "NC_024457" - ], - "Hepatitis_B_virus__SHB39" : [ - "KJ598671" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0139" : [ - "KP759687" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_164_2012" : [ - "KJ686219" - ], - "Tobacco_vein_mottling_virus_S_strain" : [ - "TVU38621" - ], - "JC_polyomavirus__SA_6" : [ - "AB127009" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2680_2006" : [ - "GQ199896" - ], - "SFTS_virus_HNXY_207_HNXY_207" : [ - "KC292288", - "KC292341", - "KC292315" - ], - "Bovine_papillomavirus_type_1__EqSarc1" : [ - "JX678969" - ], - "Candidatus_Accumulibacter_phosphatis_clade_IIA_UW_1" : [ - "NC_013193", - "NC_013190", - "NC_013191", - "NC_013194" - ], - "Rhinovirus_C__LZ508" : [ - "JF317015" - ], - "Watermelon_mosaic_virus__C05_337" : [ - "EU660589" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_310" : [ - "KP998413" - ], - "Swine_vesicular_disease_virus" : [ - "X54521" - ], - "Human_poliovirus_2_NIE1018409" : [ - "KJ170572" - ], - "Gallid_herpesvirus_1_ACC78" : [ - "JN804826" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Octa_alpha_15" : [ - "EU384642" - ], - "Sapovirus_pig_sav1_2008_CHN__Ch_sw_sav1" : [ - "FJ387164" - ], - "Dengue_virus_2__DENV_2_US_BID_V1176_1988" : [ - "EU482579" - ], - "Hepatitis_B_virus_Ehime8__Iyo_8288043" : [ - "AB109476" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9486_2010" : [ - "KJ627258" - ], - "Porcine_epidemic_diarrhea_virus_CV777" : [ - "NC_003436" - ], - "Foot_and_mouth_disease_virus___type_A_A17_Aguarulbos_a17_Aguarulbos_iso83" : [ - "AY593757" - ], - "Chloris_striate_mosaic_virus__AU_2935_2011" : [ - "JQ948053" - ], - "Human_herpesvirus_4_HN16" : [ - "AB850656" - ], - "Dengue_virus_1_D1_SG_05K4154DK1_2005" : [ - "EU081260" - ], - "West_Nile_virus__OH_2002" : [ - "DQ164202" - ], - "Rosa_multiflora_cryptic_virus__California" : [ - "EU024677", - "EU024675", - "EU024676" - ], - "Hepatitis_B_virus__318_95_3" : [ - "EU871981" - ], - "Human_immunodeficiency_virus_1__03ZASK084B1" : [ - "AY901981" - ], - "Cucumber_mosaic_virus" : [ - "DQ409209", - "X02733", - "S72187", - "X00985", - "EU665000", - "A41825", - "EU665002", - "MCVRNA3", - "AJ831578", - "E02481", - "EU665001", - "HQ343232" - ], - "Human_papillomavirus_type_31__QV17700" : [ - "HQ537680" - ], - "Tobacco_rattle_virus__MI_1" : [ - "GQ903772", - "GQ903771" - ], - "West_Nile_virus_ArB3573_82" : [ - "DQ318020" - ], - "Maize_streak_virus__UMub_89" : [ - "EF547082" - ], - "Maize_streak_virus__MSV_A1_Ng_Abe_g239_2007" : [ - "EU628566" - ], - "Hepatitis_B_virus__THB43_IC" : [ - "JN664910" - ], - "Bat_CoV_279_2005_BtCoV_279_2005" : [ - "DQ648857" - ], - "Human_herpesvirus_5_BE_33_2010" : [ - "KP745661" - ], - "Sida_golden_yellow_vein_virus__Jamaica_Liguanea2_2008" : [ - "NC_004635", - "NC_014799" - ], - "Gibbon_ape_leukemia_virus_X" : [ - "GLU60065" - ], - "Hepatitis_B_virus__LDA423" : [ - "KF849728" - ], - "Actinoplanes_N902_109" : [ - "NC_021191" - ], - "Simian_immunodeficiency_virus_US" : [ - "AF103818" - ], - "Mouse_mammary_tumor_virus" : [ - "NC_001503" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d3om3" : [ - "JF292904" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLA4579_2008_A" : [ - "KJ627392" - ], - "Hepatitis_B_virus_327_12" : [ - "KR013771" - ], - "Simian_immunodeficiency_virus_SIVlhoest" : [ - "AF075269" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4787_2009" : [ - "KF921916" - ], - "Hepatitis_B_virus__HBV43" : [ - "KC875309" - ], - "Tomato_leaf_curl_Hainan_virus__FQ12" : [ - "KF150142" - ], - "Hepatitis_B_virus__MOD_4603" : [ - "GQ183476" - ], - "Hepatitis_B_virus__B8r_4" : [ - "AY217358" - ], - "Parainfluenza_virus_5_LN" : [ - "JQ743324" - ], - "Shigella_dysenteriae_Sd197" : [ - "NC_007607", - "NC_009344", - "NC_007606" - ], - "Homalodisca_vitripennis_reovirus__Riverside17" : [ - "GU437843" - ], - "Human_coronavirus_OC43_LY342" : [ - "KJ958219" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4731_spleen" : [ - "HQ671670" - ], - "Borrelia_burgdorferi_B31" : [ - "NC_001318", - "NC_000953", - "NC_000957", - "NC_000955", - "NC_001904", - "NC_000948", - "NC_000956", - "NC_001903", - "NC_000951", - "NC_000949", - "NC_000954", - "NC_001849", - "NC_001852", - "NC_000952", - "NC_001856", - "NC_000950", - "NC_001850", - "NC_001855", - "NC_001857", - "NC_001851", - "NC_001854", - "NC_001853" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dar_Beta_5" : [ - "EU384601" - ], - "Dengue_virus_3__DENV_3_CO_BID_V2988_2007" : [ - "FJ898445" - ], - "Dengue_virus_2__DENV_2_US_BID_V1493_2003" : [ - "EU687241" - ], - "Yersinia_pestis_Nepal516" : [ - "NC_008119", - "NC_008118", - "NC_008149" - ], - "African_horse_sickness_virus__PAKrrah_09" : [ - "KF446264", - "KF446273" - ], - "Hepatitis_B_virus__ALO36" : [ - "GQ358148" - ], - "Norovirus_Hu_GII_4_Kumamoto4_2006_JP_Hu_GII_4_Kumamoto4_2006_JP" : [ - "AB447462" - ], - "West_Nile_virus__WNV_1_US_BID_V4341_2002" : [ - "HM488182" - ], - "Thermoanaerobacter_mathranii_A3" : [ - "NC_014209" - ], - "JC_polyomavirus__SL_15" : [ - "AB262401" - ], - "Porcine_adenovirus_3" : [ - "AB026117" - ], - "Dengue_virus_3_D3_SG_05K2406DK1_2005" : [ - "EU081194" - ], - "Porcine_epidemic_diarrhea_virus_Hawaii_39249_2014" : [ - "KP688354" - ], - "Apple_chlorotic_leaf_spot_virus__P_205" : [ - "APCCOMS" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2328_2001" : [ - "FJ744739" - ], - "Blueberry_virus_A" : [ - "NC_018519" - ], - "Dengue_virus_2__MKS_0084" : [ - "KC762660" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_319" : [ - "KP998417" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_11__AHEaCV_11_NZ_3371C1_2012" : [ - "KM874323" - ], - "Cotton_leaf_curl_virus_associated_DNA_1_isolate_Lucknow__Lucknow" : [ - "NC_015327" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_VEN_251641_1976_ID" : [ - "KC344509" - ], - "Staphylococcus_phage_tp310_2" : [ - "NC_009762" - ], - "Human_immunodeficiency_virus_1__Cu74" : [ - "AY586547" - ], - "Human_coronavirus_229E_229E_human_USA_933_50_1993" : [ - "KF514430" - ], - "Hepatitis_B_virus_258_4" : [ - "KR013764" - ], - "Porcine_circovirus_2__NL_PMWS_3" : [ - "AY484415" - ], - "Bean_golden_mosaic_virus__BgV03B_1_C47" : [ - "JF694459" - ], - "Porcine_circovirus_2_HB0701" : [ - "FJ608539" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V316_2001" : [ - "EU239713" - ], - "Bovine_viral_diarrhea_virus_1_strain_ZM_95_ZM_95" : [ - "AF526381" - ], - "Hepatitis_B_virus_genotype_F_VNZ8339_1" : [ - "AB036909" - ], - "Leuconostoc_phage_phiLN6B" : [ - "NC_024380" - ], - "Enterobacteria_phage_SfMu" : [ - "NC_027382" - ], - "Rabies_virus__SM5950" : [ - "JQ685933" - ], - "Murine_norovirus_3" : [ - "KC792553" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__BJ_4" : [ - "AF331831" - ], - "Enterovirus_A71_SK_EV006_LPS1" : [ - "AB550335" - ], - "JC_polyomavirus__JCV144_04" : [ - "JF424875" - ], - "Rabies_virus__EPHVAC" : [ - "JQ944709" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20142260" : [ - "KR653262" - ], - "Human_immunodeficiency_virus_1__C_96BW04_10" : [ - "AF110966" - ], - "Newcastle_disease_virus_B1_B1_Takaaki" : [ - "AF375823" - ], - "Hepatitis_B_virus__A53" : [ - "FJ904408" - ], - "Human_immunodeficiency_virus_1__99UGD23550" : [ - "AF484485" - ], - "Torque_teno_sus_virus_1b__lung1" : [ - "HM633240" - ], - "Mongoose_feces_associated_gemycircularvirus_c_541c" : [ - "NC_026809" - ], - "Thermofilum_1910b" : [ - "NC_022093" - ], - "Hepatitis_delta_virus_dFr2411_dFr2411" : [ - "AM902176" - ], - "Hyphantria_cunea_nucleopolyhedrovirus" : [ - "NC_007767" - ], - "Simian_immunodeficiency_virus__SIVgorCP2139_2con" : [ - "FJ424865" - ], - "Riemerella_anatipestifer_ATCC_11845___DSM_15868" : [ - "NC_014738" - ], - "Human_immunodeficiency_virus_1__BREPM11931" : [ - "DQ085869" - ], - "SARS_coronavirus_wtic_MB_SARS_VeroE6_lab_USA_WTic_c2P1_2009_c2P1" : [ - "KF514408" - ], - "Rabbit_hemorrhagic_disease_virus_Frankfurt12" : [ - "EF558572" - ], - "African_cassava_mosaic_virus__CF_CF143AN_07" : [ - "KJ887803" - ], - "Beak_and_feather_disease_virus__BFDV_T_PL_410_2007" : [ - "JX221023" - ], - "Human_immunodeficiency_virus_1__F7204" : [ - "DQ886033" - ], - "Torque_teno_sus_virus_1b__TTV2Gx4" : [ - "HM633232" - ], - "Neisseria_meningitidis_M01_240149" : [ - "NC_017514" - ], - "Hepatitis_B_virus_1116Sal" : [ - "AY090461" - ], - "Porcine_circovirus_2__CS12" : [ - "KJ680357" - ], - "BK_polyomavirus__NEB_26" : [ - "AB365142" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_34_DRC" : [ - "JX458829" - ], - "Rift_Valley_fever_virus_2007000250" : [ - "JF326200" - ], - "Simian_retrovirus_2" : [ - "SIV2DCG" - ], - "Circovirus_like_genome_SAR_B_SAR_B" : [ - "NC_013018" - ], - "Human_papillomavirus_type_32" : [ - "NC_001586" - ], - "Shigella_dysenteriae_1617" : [ - "NC_022899", - "NC_022912" - ], - "Streptococcus_salivarius_57_I" : [ - "NC_018285", - "NC_017594" - ], - "Chikungunya_virus__LK_PB_CH5808" : [ - "FJ513637" - ], - "Human_immunodeficiency_virus_1__MA" : [ - "DQ912823" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4078_2008" : [ - "GU131826" - ], - "Hepatitis_B_virus__G77" : [ - "JQ040150" - ], - "Toscana_virus__SI_40463" : [ - "EU003176" - ], - "SFTS_virus_LN2_LN2" : [ - "HQ141609", - "HQ141608", - "HQ141607" - ], - "Sewage_associated_circular_DNA_virus_25__SaCV_25_NZ_BS4281_2012" : [ - "NC_026269" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT11A51_2005" : [ - "JF909234" - ], - "Lactococcus_lactis_KF147" : [ - "NC_013656", - "NC_013657" - ], - "Hepatitis_B_virus__A44" : [ - "FJ904405" - ], - "Bluetongue_virus_21_DPP86" : [ - "JQ086265", - "JQ086269", - "JQ086268", - "JQ086270", - "JQ086263", - "JQ086267", - "JQ086266", - "JQ086261", - "JQ086264", - "JQ086262" - ], - "Hepatitis_B_virus__CU400" : [ - "DQ078791" - ], - "Porcine_circovirus_2_PCV2_herd_A" : [ - "EU136717" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_3__AHEaCV_3_NZ_3030C2_2012" : [ - "NC_026625" - ], - "Hepatitis_B_virus__GU1684" : [ - "GQ161756" - ], - "Japanese_encephalitis_virus_JaOAr73062" : [ - "AB569989" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_90E_181_01_1990" : [ - "KP258720" - ], - "Zucchini_yellow_mosaic_virus__F72" : [ - "JN192410" - ], - "Hepatitis_B_virus__CONTROL26" : [ - "JQ801518" - ], - "JC_polyomavirus__ZA_1" : [ - "AB127026" - ], - "Porcine_circovirus_2_JX0602" : [ - "EF524541" - ], - "Porcine_circovirus_2_PM176" : [ - "KJ094605" - ], - "West_Nile_virus__WNV_1_US_BID_V4224_2005" : [ - "HM488150" - ], - "Tahyna_virus_92" : [ - "Z68497" - ], - "Dragonfly_cyclovirus_5__PR_NZ47_2010" : [ - "JX185427" - ], - "Brugmansia_suaveolens_mottle_virus_Bs_Campinas" : [ - "NC_014536" - ], - "Hepatitis_B_virus__FMD93" : [ - "GU332698" - ], - "Rice_stripe_virus__DLi04" : [ - "AJ871750" - ], - "Hepatitis_B_virus__A1_11" : [ - "GU815558" - ], - "Aedes_flavivirus_Bangkok" : [ - "KJ741266" - ], - "Torque_teno_canis_virus__Cf_TTV10" : [ - "NC_014071" - ], - "Chrysanthemum_virus_B__Tamil_Nadu" : [ - "AM765839" - ], - "Hepatitis_B_virus__LDA154" : [ - "KF849719" - ], - "Hepatitis_B_virus__Cr09" : [ - "KJ843226" - ], - "Rubella_virus_BRD_II" : [ - "AY258323" - ], - "Hepatitis_B_virus__I144" : [ - "FJ562282" - ], - "Cowpox_virus_MarLei07_1" : [ - "KC813499" - ], - "Dengue_virus_3__PF90_3056" : [ - "AY744680" - ], - "Human_parainfluenza_virus_1_HPIV1_MEX_1521_2005" : [ - "KF530217" - ], - "Hepatitis_B_virus__D_F062PM_2004" : [ - "HQ700494" - ], - "Synechococcus_phage_S_CAM1_S_CAM1" : [ - "NC_020837" - ], - "Propionibacterium_phage_PHL071N05" : [ - "NC_022337" - ], - "Hepatitis_B_virus_274_19a" : [ - "KR013770" - ], - "South_African_cassava_mosaic_virus__MG_MG175A3_09" : [ - "KJ887941" - ], - "Porcine_circovirus_2_FD1101" : [ - "JX406423" - ], - "Hepatitis_B_virus__I2_M04_1907" : [ - "FJ023666" - ], - "Dengue_virus_2__DENV_2_PE_IQA_2042_2010" : [ - "KC294220" - ], - "Human_papillomavirus_type_16__Qv35943" : [ - "HQ644287" - ], - "Laodelphax_striatellus_picorna_like_virus_2__LsPV2" : [ - "NC_025788" - ], - "Hepatitis_B_virus__BV_90" : [ - "GU563558" - ], - "Human_herpesvirus_2__HSV_2_JP_BID_G32593_JA9" : [ - "KR135329" - ], - "Human_bocavirus_JPOC08_022" : [ - "AB481083" - ], - "Mycobacterium_tuberculosis_H37Rv" : [ - "NC_000962" - ], - "Tomato_leaf_curl_China_betasatellite__G60" : [ - "AJ704615" - ], - "Echovirus_E6_FJLY2010327" : [ - "JQ729993" - ], - "Human_parvovirus_4__T609" : [ - "KM390024" - ], - "Saffold_virus__Pak_3290" : [ - "AB747252" - ], - "Southern_rice_black_streaked_dwarf_virus__YJ1" : [ - "KJ493784", - "KJ513445" - ], - "Mumps_virus_SP" : [ - "EU884413", - "DQ649478" - ], - "Human_immunodeficiency_virus_1__1156_26" : [ - "KP718930" - ], - "Staphylococcus_phage_3A" : [ - "NC_007053" - ], - "Hepatitis_B_virus__ES71_3" : [ - "JF828923" - ], - "Human_papillomavirus_type_7" : [ - "NC_001595" - ], - "Human_group_1_coronavirus_associated_with_pneumonia" : [ - "AY518894" - ], - "Hepatitis_B_virus__D_NZL_HI43_1984" : [ - "HQ700463" - ], - "Hepatitis_B_virus__HBV89" : [ - "KC875301" - ], - "Haemophilus_somnus_2336" : [ - "NC_010519" - ], - "Soybean_mosaic_virus_G7" : [ - "AY216010" - ], - "Hepatitis_B_virus__Japreira75" : [ - "DQ899144" - ], - "Streptococcus_pyogenes_MGAS1882" : [ - "NC_017053" - ], - "Rickettsia_slovaca_D_CWPP" : [ - "NC_017065" - ], - "Banana_bunchy_top_virus__Kanpur" : [ - "DQ656118" - ], - "Foot_and_mouth_disease_virus___type_O__MAY_7_2007" : [ - "HQ632772" - ], - "Norovirus_Hu_GII_4_Niigata1_2008_JP_Hu_GII_4_Niigata1_2008_JP" : [ - "AB541310" - ], - "West_Nile_virus__WNV_1_US_BID_V4553_2006" : [ - "HM488253" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda17_05" : [ - "KC706632" - ], - "Rotavirus_A__RVA_Human_wt_DEN_Hv5323649_2010_G1P_8" : [ - "KP013449" - ], - "Listeria_phage_LMTA_57" : [ - "KJ591605" - ], - "Foot_and_mouth_disease_virus___type_SAT_1_SAT1_7isrl4_62_sat1_7isrl_iso12" : [ - "AY593844" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4768_2009" : [ - "HM631863" - ], - "Torque_teno_virus__TTV_2013" : [ - "KP036971" - ], - "Raphanus_sativus_cryptic_virus_1" : [ - "NC_008190", - "NC_008191" - ], - "Malvastrum_yellow_vein_betasatellite__Y303" : [ - "AJ971710" - ], - "Dengue_virus_1_D1_SG_05K4480DK1_2005" : [ - "EU081270" - ], - "Norovirus_Hu_GII_30017_2009_VNM_Hu_GII_30017_2009_VNM" : [ - "KC409304" - ], - "Human_herpesvirus_2_SD90e" : [ - "KF781518" - ], - "Hepatitis_delta_virus__D18" : [ - "KJ744232" - ], - "Bacteroides_uniformis" : [ - "NC_006373" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus_Spain_5a" : [ - "LN846598" - ], - "Turkey_coronavirus__TCoV_540" : [ - "EU022525" - ], - "Beet_yellows_virus" : [ - "NC_001598" - ], - "Muscovy_duck_circovirus__WS_GD01" : [ - "FJ554673" - ], - "Pepper_veinal_mottle_virus_P" : [ - "FM202327" - ], - "West_Nile_virus__WNV_1_US_BID_V4714_2003" : [ - "HQ705660" - ], - "Leptospira_interrogans_serovar_Copenhageni_Fiocruz_L1_130" : [ - "NC_005823", - "NC_005824" - ], - "HBV_genotype_D4__Mart_B36" : [ - "HE974372" - ], - "Parainfluenza_virus_5_H221" : [ - "JQ743323" - ], - "Hepatitis_B_virus__FF3" : [ - "KM359440" - ], - "Synechococcus_phage_S_CBS4" : [ - "NC_016766" - ], - "Human_herpesvirus_5_CZ_1_2011" : [ - "KP745718" - ], - "Methylobacterium_nodulans_ORS_2060" : [ - "NC_011889", - "NC_011888", - "NC_011887", - "NC_011895", - "NC_011894", - "NC_011893", - "NC_011892", - "NC_011890" - ], - "Human_immunodeficiency_virus_1__TRJO_flA1" : [ - "FJ496151" - ], - "Viral_hemorrhagic_septicemia_virus_07_71_07_71" : [ - "AJ233396" - ], - "Getah_virus_YN0540" : [ - "EU015063" - ], - "Hepatitis_B_virus_1491_24" : [ - "KR014092" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V462_2007" : [ - "EU255935" - ], - "Tomato_leaf_curl_Patna_betasatellite" : [ - "NC_012493" - ], - "Classical_swine_fever_virus_CSFV_2_3_dp_CSF0821_2002_HR_Novska" : [ - "HQ148061" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Mayotte_YT42A41_2008" : [ - "JF909241" - ], - "West_Nile_virus__WNV_1_US_BID_V6492_2002" : [ - "KJ501483" - ], - "Acinetobacter_phage_Petty" : [ - "NC_023570" - ], - "Rhodococcus_equi_103S" : [ - "NC_014659" - ], - "Human_herpesvirus_5_BE_23_2011" : [ - "KP745675" - ], - "Hepatitis_B_virus__SHB43" : [ - "KJ598681" - ], - "Posavirus_2" : [ - "NC_023638" - ], - "Banana_streak_CA_virus" : [ - "NC_015506" - ], - "HBV_genotype_C__P1_090725" : [ - "AB981580" - ], - "Echovirus_E21_Farina" : [ - "AY302547" - ], - "Mycobacterium_phage_Conspiracy" : [ - "NC_022973" - ], - "Faecal_associated_gemycircularvirus_9__P22" : [ - "NC_025731" - ], - "Southern_bean_mosaic_virus_SBMV_S_Arkansas" : [ - "AF055888" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_154_2012" : [ - "KJ686224" - ], - "Respiratory_syncytial_virus_B_WI_629_DC1_08_09" : [ - "JN032119" - ], - "Human_adenovirus_21_NHRC_20007" : [ - "KJ364580" - ], - "West_Nile_virus__WN_NY_2000_grouse3282" : [ - "AF404755" - ], - "Xenotropic_MuLV_related_virus_VP42__VP42" : [ - "DQ241302" - ], - "Echovirus_E6_Echo6_Henan_127_2008" : [ - "HM185056" - ], - "Tobacco_necrosis_satellite_virus" : [ - "NC_001557", - "TNSUTR" - ], - "Porcine_circovirus_2__JX4" : [ - "KP824718" - ], - "Dengue_virus_1__DENV_1_VN_BID_V811_2006" : [ - "EU482805" - ], - "Porcine_epidemic_diarrhea_virus__NPL_PEDv_2013_P10" : [ - "KJ778616" - ], - "Enterobacteria_phage_phiX174__10F90" : [ - "EF380027" - ], - "Pseudomonas_phage_LIT1" : [ - "NC_013692" - ], - "Hepatitis_E_virus__HE_JI4" : [ - "AB080575" - ], - "Canine_distemper_virus__LN_10_1" : [ - "KP765764" - ], - "Human_rhinovirus_QCE_HRV_QCE" : [ - "GQ323774" - ], - "Human_immunodeficiency_virus_1__WC10P_7" : [ - "AY314049" - ], - "Escherichia_phage_TL_2011b" : [ - "NC_019445" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Henan_A5" : [ - "KJ534540" - ], - "Garlic_virus_D__GarVD_SW10" : [ - "NC_022961" - ], - "Thermobifida_fusca_YX" : [ - "NC_007333" - ], - "Dengue_virus_3__420_BR_PE_06" : [ - "JX669506" - ], - "Spodoptera_frugiperda_multiple_nucleopolyhedrovirus__19" : [ - "EU258200" - ], - "West_Nile_virus__WNV_1_CTFS_BID_V4113_2006" : [ - "HM488124" - ], - "Chikungunya_virus__Yem_11" : [ - "KC614648" - ], - "Hepatitis_B_virus__N13_M_6650A" : [ - "KJ173407" - ], - "Human_immunodeficiency_virus_1__WC10P_11" : [ - "AY314053" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG226A1_10" : [ - "KJ887957" - ], - "SARS_coronavirus__Tor2" : [ - "NC_004718" - ], - "Duck_hepatitis_A_virus_1_F" : [ - "EU264072" - ], - "Hepatitis_B_virus__HBV_Tw30" : [ - "AB073841" - ], - "Rabbit_hemorrhagic_disease_virus_Triptis" : [ - "EF558583" - ], - "Human_papillomavirus_type_16__PV_234_11" : [ - "KF880690" - ], - "Leishmania_aethiopica_RNA_virus__LRV2_Lae_L494" : [ - "NC_024115" - ], - "Beet_black_scorch_virus__Ir_Msh1" : [ - "FN565520" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_91I_116A_01_1991" : [ - "KJ723470" - ], - "Newcastle_disease_virus_Chimalhuacan" : [ - "KJ577136" - ], - "Human_immunodeficiency_virus_1__02ZM108" : [ - "AB254141" - ], - "Brucella_abortus_bv__1_9_941" : [ - "NC_006933", - "NC_006932" - ], - "Hepatitis_delta_virus__4" : [ - "HQ005369" - ], - "Squash_leaf_curl_China_virus__Hn61" : [ - "AM260207", - "AM260205" - ], - "Maize_streak_virus__UIga_224" : [ - "EF547112" - ], - "Human_immunodeficiency_virus_1__TZBFL0210_1_8" : [ - "AY237165" - ], - "Human_immunodeficiency_virus_1__CTL_017" : [ - "EF514705" - ], - "Coxsackievirus_A5_CVA5_SD_CHN_09" : [ - "HQ728261" - ], - "Classical_swine_fever_virus_GXWZ02_AF760229" : [ - "AY367767" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCVP2A" : [ - "JN013989" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2090_2006" : [ - "FJ639730" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141429" : [ - "KR653260" - ], - "Enterococcus_phage_EFRM31" : [ - "NC_015270" - ], - "Human_immunodeficiency_virus_1__97VNAG201" : [ - "FJ185245" - ], - "Hepatitis_C_virus_subtype_6a_6a72" : [ - "DQ480522" - ], - "Zucchini_yellow_mosaic_virus__G61" : [ - "JN192414" - ], - "Hepatitis_B_virus__A70" : [ - "FJ904419" - ], - "Hepatitis_B_virus__P09" : [ - "EU859922" - ], - "Hepatitis_B_virus__MY131767" : [ - "KJ803819" - ], - "Adeno_associated_virus___7" : [ - "NC_006260" - ], - "Cleome_leaf_crumple_virus__BgV05B_1_C50" : [ - "JF694466" - ], - "Dengue_virus_3__DENV_3_BR_BID_V3417_2006" : [ - "GU131844" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_PER_75D143_1975_ID" : [ - "KC344525" - ], - "Caldivirga_maquilingensis_IC_167" : [ - "NC_009954" - ], - "Porcine_circovirus_2__WB_H_2" : [ - "AY874164" - ], - "West_Nile_virus_strain_385_99_385_99_hamster_passage_strain_9317E" : [ - "AY848696" - ], - "Kalanchoe_latent_virus__1452" : [ - "FJ531635" - ], - "Bovine_herpesvirus_type_1_2_strain_B589_B589" : [ - "KM258881" - ], - "Capsicum_chlorosis_virus__CaCV_Ch_Pan" : [ - "FJ011450" - ], - "Hepatitis_B_virus__IND_1963_4" : [ - "KF214649" - ], - "Human_respiratory_syncytial_virus_10_053640" : [ - "JX576737" - ], - "Flexal_mammarenavirus_Pinheiro" : [ - "AF485257" - ], - "Capsicum_chlorosis_virus__Ph" : [ - "KC953853", - "KC953854" - ], - "Canine_papillomavirus_14" : [ - "NC_019852" - ], - "Simian_virus_40_T302" : [ - "AF168994" - ], - "Bovine_coronavirus_E_AH65_TC_E_AH65_TC" : [ - "EF424616" - ], - "Rotavirus_subgroup_2" : [ - "RO2SEG6", - "X57943", - "X57944", - "RO210", - "RO29" - ], - "Hepatitis_B_virus__F1_10" : [ - "GU815711" - ], - "Usutu_virus_V44" : [ - "KJ438780" - ], - "Rhizobium_IRBG74" : [ - "NC_022536", - "NC_022545", - "NC_022535" - ], - "Human_smacovirus_1__France_3_2009_4191" : [ - "KP264968" - ], - "Haloferax_volcanii_DS2" : [ - "NC_013965", - "NC_013964", - "NC_013968", - "NC_013967", - "NC_013966" - ], - "Pseudomonas_aeruginosa_B136_33" : [ - "NC_020912" - ], - "Paenibacillus_larvae_04_309" : [ - "NC_023134", - "NC_023147" - ], - "Garlic_virus_C__SW3_3A" : [ - "JQ899447" - ], - "West_Nile_virus__AVA1204250" : [ - "KC736494" - ], - "Squash_leaf_curl_virus__EG1_15" : [ - "KM595154" - ], - "Burkholderia_phage_phiE12_2" : [ - "NC_009236" - ], - "Myotis_polyomavirus_VM_2008__14" : [ - "NC_011310" - ], - "Human_herpesvirus_5_BE_4_2011" : [ - "KP745700" - ], - "Enterobacteria_phage_vB_EcoS_Rogue1" : [ - "NC_019718" - ], - "Helicobacter_pylori_Lithuania75" : [ - "NC_017362", - "NC_017363" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_135_2012" : [ - "KJ686152" - ], - "Convict_Creek_107_virus__Convict_Creek_74" : [ - "HPSCC74SS", - "HPSCC74MS" - ], - "Human_papillomavirus_type_6__56" : [ - "HG793864" - ], - "Chickpea_chlorotic_dwarf_virus__A_IC_152_99" : [ - "KC172660" - ], - "Human_papillomavirus_type_58__Rw841" : [ - "HQ537769" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kampala_Okra3" : [ - "FN554523" - ], - "Bear_Canyon_mammarenavirus_A0060209" : [ - "AY216503" - ], - "West_Nile_virus__WNV_USA_BID_G15505" : [ - "JX503096" - ], - "Equine_infectious_anemia_virus" : [ - "NC_001450", - "AF028232", - "AF028231", - "AF327878", - "AF016316", - "AF247394", - "EIAVCG", - "EIU01866" - ], - "Middle_East_respiratory_syndrome_coronavirus_Florida_USA_2_Saudi_Arabia_2014" : [ - "KJ829365" - ], - "Bluetongue_virus_9_TUR2000_03" : [ - "AM900376" - ], - "Western_equine_encephalitis_virus_R02PV001807A" : [ - "KJ554989" - ], - "Taterapox_virus_Dahomey_1968" : [ - "NC_008291" - ], - "Japanese_encephalitis_virus_JX61" : [ - "GU556217" - ], - "JC_polyomavirus__MN_7" : [ - "AB077867" - ], - "Malvastrum_leaf_curl_Guangdong_virus__FJ3" : [ - "AM503104" - ], - "Hepatitis_B_virus__clz2058" : [ - "KC774205" - ], - "Dengue_virus_3_TB16" : [ - "AY858047" - ], - "Fibrobacter_succinogenes_S85" : [ - "NC_017448" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1718_2007" : [ - "FJ024281" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2914_2006" : [ - "FJ898427" - ], - "Porcine_circovirus_2_yantai_3" : [ - "KP313253" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10JL" : [ - "JQ663554" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1860_B4_9D_V" : [ - "JX570654" - ], - "Enterovirus_A71_TW_2824_04" : [ - "GQ231931" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C68" : [ - "KJ019043" - ], - "West_Nile_virus__V11_03" : [ - "JX123030" - ], - "Bean_golden_mosaic_virus__BR_Par30_12" : [ - "KJ939818" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Raichur_OY56B_2005___OY56B" : [ - "GU111968" - ], - "Human_papillomavirus_type_58__Rw697" : [ - "HQ537770" - ], - "Hepatitis_B_virus__Q67K_1" : [ - "EU717215" - ], - "Maize_streak_virus___Reunion__SP1R10___SP1" : [ - "AJ225007" - ], - "Bluetongue_virus_9_BTV_9IT_H" : [ - "JN255917", - "JN255920", - "JN255915", - "JN255914", - "JN255913", - "JN255919", - "JN255918", - "JN255916", - "JN255921", - "JN255912" - ], - "South_African_cassava_mosaic_virus__MG_MG120A3_09" : [ - "KJ887915" - ], - "Hepatitis_C_virus_subtype_1b__HD_1" : [ - "HCU45476" - ], - "Enterovirus_A71__HQ09231463" : [ - "JQ316638" - ], - "Staphylococcus_phage_phiETA3_TY32" : [ - "NC_008799" - ], - "Hepatitis_B_virus__S157_6" : [ - "FJ787440" - ], - "Human_poliovirus_2__PV2_Rus" : [ - "FJ517649" - ], - "Hepatitis_B_virus__HBV_1303" : [ - "AF121239" - ], - "Hepatitis_B_virus__C54" : [ - "FJ349233" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9428_2013" : [ - "KJ643505" - ], - "Human_immunodeficiency_virus_1__TV721" : [ - "HM215249" - ], - "Dengue_virus_2__DENV_2_US_BID_V1189_1990" : [ - "EU482588" - ], - "MW_polyomavirus_QLDMW11" : [ - "KC549592" - ], - "Wild_tomato_mosaic_virus__XC_1" : [ - "KM401435" - ], - "West_Nile_virus__WNV_1_US_BID_V7393_2003" : [ - "KJ501105" - ], - "Human_bocavirus__HZ1001" : [ - "KP710200" - ], - "Thiomicrospira_crunogena_XCL_2" : [ - "NC_007520" - ], - "Gossypium_punctatum_mild_leaf_curl_virus__Gossypium_mustelinum___Must_B_2_7" : [ - "FJ218489" - ], - "Hepatitis_B_virus__dlz2021" : [ - "KC774424" - ], - "South_African_cassava_mosaic_virus__MG_MG147A1_09" : [ - "KJ887937" - ], - "Tomato_yellow_leaf_curl_virus__KSCPe7" : [ - "JX456642" - ], - "Coriobacterium_glomerans_PW2" : [ - "NC_015389" - ], - "Tobacco_leaf_curl_betasatellite" : [ - "NC_013800" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_LBC_W45610" : [ - "KF385428" - ], - "Human_immunodeficiency_virus_1__1006_10" : [ - "AY332236" - ], - "Hepatitis_delta_virus_dTk3_dTk3" : [ - "AM779589" - ], - "Hepatitis_B_virus__dyc1018" : [ - "KC774499" - ], - "Cucumber_mosaic_virus_RNA3_Kin" : [ - "Z12818" - ], - "JC_polyomavirus__JCV135_05" : [ - "JF424838" - ], - "Orf_virus_NA1_11" : [ - "KF234407" - ], - "Japanese_yam_mosaic_virus__WX1" : [ - "KJ789138" - ], - "Tomato_leaf_curl_betasatellite" : [ - "NC_004715", - "FR819710", - "AJ316036", - "AJ542496", - "AY438560", - "AJ542490", - "AJ542494", - "AY438558", - "EF068245", - "AJ542489", - "AY438557", - "AJ542495", - "AJ542492", - "AY438559", - "AJ542491", - "EF095958", - "AJ542493" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1960_2008" : [ - "FJ410276" - ], - "SARS_coronavirus_BJ04__BJ04" : [ - "AY279354" - ], - "Tortoise_picornavirus_9_05" : [ - "KM873613" - ], - "Porcine_epidemic_diarrhea_virus__CHM2013" : [ - "KM887144" - ], - "Cell_fusing_agent_virus" : [ - "NC_001564" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V1716_2007" : [ - "FJ182001" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_3_2009" : [ - "KF686339" - ], - "Human_poliovirus_2__E12_E12221_SD_CHN_sewage" : [ - "KF656732" - ], - "Hepatitis_B_virus_1263_9" : [ - "KR013849" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_STUT01_2011" : [ - "KM188465" - ], - "Plum_pox_virus__Penn8" : [ - "EF640936" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_87I_042A_01_1987" : [ - "KJ723469" - ], - "Hepatitis_B_virus__C_PNG_T107_1994" : [ - "HQ700531" - ], - "Newcastle_disease_virus__G_JS_09_08" : [ - "JN688865" - ], - "Coxsackievirus_A6__4368_SH_CHN_2012" : [ - "KJ541169" - ], - "Infectious_bronchitis_virus_Mass41_1985" : [ - "FJ904723" - ], - "Torque_teno_virus__JA1" : [ - "AF122916" - ], - "JC_polyomavirus__JCV161FLC_22" : [ - "JF424930" - ], - "Human_immunodeficiency_virus_1__02ZM114" : [ - "AB254147", - "AB254146" - ], - "Propionibacterium_phage_P104A" : [ - "NC_018845" - ], - "Hepatitis_B_virus__6136_1228_Naive" : [ - "DQ993708" - ], - "Porphyromonas_asaccharolytica_DSM_20707" : [ - "NC_015501" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_7675_2001" : [ - "DQ404170" - ], - "Norovirus_Hu_GII_20215_2009_VNM_Hu_GII_20215_2009_VNM" : [ - "KC409279" - ], - "Porcine_circovirus_2__Vos_3415_17_07" : [ - "EU545542" - ], - "Mycobacterium_phage_Cerasum" : [ - "NC_026604" - ], - "Classical_swine_fever_virus_39_39" : [ - "AF407339" - ], - "Norovirus_Hu_GII_4_HS194_2009_US_Hu_GII_4_HS194_2009_US" : [ - "GU325839" - ], - "East_African_cassava_mosaic_virus_Uganda_Uganda_Central_African_Republic_Ippy_CF36_2007" : [ - "HE814063" - ], - "Porcine_circovirus_2_HaiNan" : [ - "AY556476" - ], - "Porcine_circovirus_2_SXYLA_02" : [ - "KC800640" - ], - "Mycobacterium_phage_Pleione_Pleione" : [ - "NC_023737" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_1_2005" : [ - "KF686338" - ], - "Ralstonia_phage_RSMSuper" : [ - "AB981170" - ], - "Human_papillomavirus_type_16_ZG05_249" : [ - "JQ067944" - ], - "Rabies_virus__CA04148" : [ - "JQ685903" - ], - "Hepatitis_B_virus__1877" : [ - "FJ386593" - ], - "Dengue_virus_3__D3BR_BV4_02" : [ - "JF808118" - ], - "Hepatitis_B_virus__dxn1077" : [ - "KC774488" - ], - "Human_immunodeficiency_virus_1__U_NL_95_H10986_D1" : [ - "EF029066" - ], - "_Clostridium__sticklandii" : [ - "NC_014614" - ], - "Cyanophage_Syn10_Syn10" : [ - "HQ634191" - ], - "Hepatitis_B_virus__HBV115" : [ - "JN688689" - ], - "Vibrio_splendidus_LGP32" : [ - "NC_011744", - "NC_011753" - ], - "Porcine_circovirus_2__MLTW98" : [ - "AF154679" - ], - "Staphylococcus_phage_52A" : [ - "NC_007062" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1573_2007" : [ - "FJ024433" - ], - "Thermoanaerobacterium_phage_THSA_485A" : [ - "NC_018264" - ], - "Watermelon_chlorotic_stunt_virus__IL3_73" : [ - "KM820263" - ], - "Maize_streak_virus__ULuw_110" : [ - "EF547087" - ], - "Coxsackievirus_B5__20CSF" : [ - "JX017380" - ], - "West_Nile_virus_Novi_Sad_2010" : [ - "KC496016" - ], - "West_Nile_virus__Ast02_2_298" : [ - "DQ377179" - ], - "Infectious_bursal_disease_virus__HLJ_7" : [ - "GQ452269" - ], - "Beak_and_feather_disease_virus__BFDV_NC13_30" : [ - "KF768547" - ], - "Human_immunodeficiency_virus_1__03ZAPS136MB1" : [ - "DQ351231" - ], - "Porcine_circovirus_2__Han0_3" : [ - "JQ181589" - ], - "JC_polyomavirus__IN_1" : [ - "AB126988" - ], - "Porcine_circovirus_2__XS090305" : [ - "GU325756" - ], - "Hepatitis_B_virus__LAMr_Pt__5" : [ - "AB367396" - ], - "Rice_stripe_virus__CX" : [ - "AY186790", - "AY185501", - "AY186787" - ], - "Hepatitis_B_virus__serum_11_95" : [ - "DQ788727" - ], - "Hepatitis_B_virus__A5_50098" : [ - "FJ692609" - ], - "Hepatitis_B_virus__LAMr_Pt__41" : [ - "AB367432" - ], - "Waterbuck_coronavirus_US_OH_WD358_GnC_1994" : [ - "FJ425185" - ], - "Human_herpesvirus_5_BE_40_2011" : [ - "KP745722" - ], - "Hepatitis_C_virus_subtype_1a__L823PT" : [ - "EU781756" - ], - "TTV_like_mini_virus__TTMV_LY1" : [ - "NC_020498" - ], - "Dengue_virus_2__DENV_2_VN_BID_V714_2006" : [ - "EU482651" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG11A3_06" : [ - "KJ887831" - ], - "Bean_golden_mosaic_virus__BR_Cri10_12" : [ - "KJ939841" - ], - "Hepatitis_B_virus__TK175" : [ - "JF754630" - ], - "Enterovirus_A71__02_0_071" : [ - "KP691647" - ], - "Thermodesulfatator_indicus_DSM_15286" : [ - "NC_015681" - ], - "Hepatitis_B_virus__C58" : [ - "HM363605" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1967_2008" : [ - "FJ410281" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4992_brain" : [ - "JF899532" - ], - "Human_immunodeficiency_virus_1__ML1901PCR2" : [ - "EU110095" - ], - "Bluetongue_virus_17__S7668" : [ - "JX272458" - ], - "West_Nile_virus__WNV_1_US_BID_V4365_2008" : [ - "HM488169" - ], - "Dengue_virus_2__DENV_2_CO_BID_V3374_2007" : [ - "GU131947" - ], - "Tomato_common_mosaic_virus__BR_Coi10_07" : [ - "KC706569" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2010_10_10_3" : [ - "KC862568" - ], - "Bean_yellow_mosaic_virus__ES11A" : [ - "HG970859" - ], - "Dengue_virus_3__YN01" : [ - "KF824902" - ], - "Bacillus_infantis_NRRL_B_14911" : [ - "NC_022524" - ], - "Japanese_encephalitis_virus__GS07TS11" : [ - "JN381843" - ], - "Cotton_leaf_curl_Gezira_betasatellite____okra_Niger" : [ - "FJ469629", - "FJ469628" - ], - "Mycobacterium_phage_MichelleMyBell" : [ - "NC_023572" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3815_2006" : [ - "GU131907" - ], - "Hepatitis_B_virus__S1371_3" : [ - "FJ787464" - ], - "Human_immunodeficiency_virus_2__08JP_NMC842" : [ - "AB499695" - ], - "Sierra_Nevada_virus" : [ - "NC_024376" - ], - "Erwinia_phage_vB_EamP_L1" : [ - "NC_019510" - ], - "Honeysuckle_yellow_vein_virus__HYVVNZ1" : [ - "FJ817425" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0125" : [ - "KP759674" - ], - "Human_herpesvirus_2__HSV_2_UG_BID_G44423_L22861_2007" : [ - "KR135303" - ], - "Cotton_leaf_curl_betasatellite__Abohar_2010" : [ - "KJ614434" - ], - "Rabbit_hemorrhagic_disease_virus_V351_Czech_strain_V351" : [ - "RHU54983" - ], - "Human_papillomavirus_type_112" : [ - "NC_012486" - ], - "Rotavirus_A_RVA_Human_wt_ZAF_2371WC_2008_G9P_8__2371WCNSP4C" : [ - "JN013984" - ], - "Hepatitis_B_virus__G221" : [ - "JQ040164" - ], - "West_Nile_virus__WNV_1_US_BID_V6450_2001" : [ - "KJ501465" - ], - "Malvastrum_leaf_curl_Philippines_betasatellite__Mc1" : [ - "NC_021929" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V96_2004" : [ - "EU256035" - ], - "Human_immunodeficiency_virus_1__PS3002_Day199" : [ - "DQ676884" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8354_2003" : [ - "KJ627657" - ], - "Enterovirus_A71_SZ_HK08_6" : [ - "GQ279370" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0175" : [ - "KP759709" - ], - "Streptococcus_pneumoniae_INV200" : [ - "NC_017593" - ], - "Hepatitis_B_virus__Z31_1" : [ - "GQ227693" - ], - "Canine_picornavirus_325F_325" : [ - "NC_016964" - ], - "Rubella_virus_C4_RUS67" : [ - "DQ388279" - ], - "Norovirus_Hu_GII_20185_2009_VNM_Hu_GII_20185_2009_VNM" : [ - "KC409268" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2805_2007" : [ - "FJ882554" - ], - "Escherichia_coli_O104_H4_2009EL_2050" : [ - "NC_018651", - "NC_018654", - "NC_018652", - "NC_018650" - ], - "Rabies_virus_SAD_Bern_original_var_4" : [ - "EF206713" - ], - "Ursus_maritimus_papillomavirus_1" : [ - "NC_010739" - ], - "Hepatitis_B_virus__S541_13" : [ - "EU554537" - ], - "Hepatitis_B_virus_MEXICO32_G" : [ - "AB375167" - ], - "Hepatitis_A_virus__DL3" : [ - "AF512536" - ], - "Chikungunya_virus__IND_GJ52" : [ - "FJ000062" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2775_2007" : [ - "GQ199798" - ], - "Newcastle_disease_virus__D3" : [ - "HM063422" - ], - "West_Nile_virus__WNV_1_US_BID_V6663_2005" : [ - "KJ501403" - ], - "Porcine_circovirus_2__CP5544_2" : [ - "FJ905461" - ], - "Bean_golden_mosaic_virus__BR_Cri4_12" : [ - "KJ939844" - ], - "Bean_golden_mosaic_virus__BR_Vis11_11" : [ - "KJ939733" - ], - "East_African_cassava_mosaic_virus__CF_CF140BE_07" : [ - "KM886005" - ], - "West_Nile_virus_DB080718_14" : [ - "GQ379157" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3865_2008" : [ - "GU131700" - ], - "Scallion_mosaic_virus" : [ - "NC_003399" - ], - "Myxoma_virus_Aust_Bulloo_Downs_12_99_BD44" : [ - "KC660079" - ], - "Hepatitis_B_virus__GaziantepLCC16" : [ - "AB674419" - ], - "Beak_and_feather_disease_virus__BFDV_AUS_MMC_1997" : [ - "KF385407" - ], - "Porcine_circovirus_2__DK444case" : [ - "EF565355" - ], - "McMurdo_Ice_Shelf_pond_associated_circular_DNA_virus_5__alg49_117" : [ - "NC_024481" - ], - "Hepatitis_B_virus__160" : [ - "JQ040133" - ], - "Lettuce_mosaic_virus__Tn515_ev" : [ - "KJ161189" - ], - "Porcine_circovirus_2__SH1102" : [ - "KF850464" - ], - "Norovirus_Hu_GII_4_JB_15_KOR_2008_Hu_GII_4_JB_15_KOR_2008" : [ - "HQ009513" - ], - "Porcine_circovirus_2__HN4_1_400" : [ - "KC907703" - ], - "Hepatitis_E_virus_CH_YT_sHEV01" : [ - "KC692453" - ], - "Nora_virus__SAF04" : [ - "KP970083" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9539_2013" : [ - "KJ643581" - ], - "Hepatitis_B_virus__HBV_Th65" : [ - "AB073832" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD26_2013" : [ - "KM229777" - ], - "Lactococcus_phage_phi7" : [ - "NC_021855" - ], - "Bacillus_phage_CAM003" : [ - "NC_024216" - ], - "Synechococcus_phage_ACG_2014b__Syn7803US56" : [ - "KJ019110" - ], - "Hepatitis_B_virus__FH001C_e44" : [ - "KJ173295" - ], - "Vibrio_phage_J3" : [ - "KM612265" - ], - "JC_polyomavirus__JCV135_23" : [ - "JF424853" - ], - "Adoxophyes_orana_nucleopolyhedrovirus__English" : [ - "NC_011423" - ], - "Hepatitis_B_virus__WHOTH2" : [ - "JN257175" - ], - "Wild_potato_mosaic_virus__Type_Isolate" : [ - "NC_004426" - ], - "Enterobacteria_phage_P88" : [ - "NC_026014" - ], - "Human_metapneumovirus_HMPV_AUS_172820414_2004_B" : [ - "KF530167" - ], - "Staphylococcus_aureus_COL" : [ - "NC_006629", - "NC_002951" - ], - "Macroptilium_yellow_vein_virus__BR_Pai26_11" : [ - "KJ939906" - ], - "Norovirus_Hu_GII_4_Osaka1_2007_JP_Hu_GII_4_Osaka1_2007_JP" : [ - "AB541319" - ], - "Enterococcus_faecium_Aus0085" : [ - "NC_021994", - "NC_021989", - "NC_021987", - "NC_021996", - "NC_021995", - "NC_021988", - "NC_021990" - ], - "Faecal_associated_gemycircularvirus_6__P24a" : [ - "NC_025734" - ], - "Hepatitis_B_virus_1368_5" : [ - "KR014054" - ], - "Equid_herpesvirus_1_89c105" : [ - "KF644577" - ], - "Hepatitis_B_virus__bww2158" : [ - "KC774390" - ], - "Human_rhinovirus_A54__F05" : [ - "FJ445139" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1875_2007" : [ - "FJ410225" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_07BJ" : [ - "FJ393459" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1323_2006" : [ - "EU660393" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C9" : [ - "KJ019066" - ], - "Tomato_yellow_leaf_curl_virus__HNHX" : [ - "JQ034613" - ], - "Maize_streak_virus__MSV_G_Ng_EleA_g227_2007" : [ - "EU628635" - ], - "Apple_stem_grooving_virus" : [ - "NC_001749", - "HE978837" - ], - "Simian_virus_40__SV40_Ad_191" : [ - "EF579658" - ], - "Honeysuckle_yellow_vein_beta__Japan_Masuda_2003___Msd" : [ - "AB236326" - ], - "Hepatitis_B_virus__C1_9" : [ - "GU815626" - ], - "Porcine_circovirus_2_YR1012" : [ - "KC823058" - ], - "Hepatitis_B_virus__YY002M_e102" : [ - "KJ173332" - ], - "Tick_borne_encephalitis_virus__Xinjiang_01" : [ - "JX534167" - ], - "Sindbis_like_virus__S_A_AR86" : [ - "ACU38305" - ], - "Hepatitis_B_virus__YY019C_e121" : [ - "KJ173379" - ], - "Avian_metapneumovirus_LAH_A" : [ - "AY640317" - ], - "Hepatitis_B_virus__67_CW_BRA" : [ - "KJ854705" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_18__AHEaCV_18_NZ_4778GA_2012" : [ - "KM874346" - ], - "Chickpea_chlorosis_virus_C__CpCV_C_AU_3494Ia_2002" : [ - "JN989416" - ], - "WU_Polyomavirus__B4796" : [ - "GU296375" - ], - "BK_polyomavirus_SEC_6" : [ - "AB269861" - ], - "Hepatitis_B_virus__7703_00047" : [ - "JN792916" - ], - "Usutu_virus_V312" : [ - "KJ438771" - ], - "Dengue_virus_3_D3_SG_05K2933DK1_2005" : [ - "EU081198" - ], - "Brucella_phage_F1" : [ - "HG428758" - ], - "Hepatitis_B_virus__Cuba13a" : [ - "KM606737" - ], - "Hepatitis_C_virus_subtype_1b_MD4_1" : [ - "AF165051" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__HW2_2" : [ - "GU208522", - "GU208518" - ], - "Roseobacter_phage_SIO1_mb" : [ - "FJ867914" - ], - "Hepatitis_B_virus_1485_11a" : [ - "KR014078" - ], - "Sweet_potato_leaf_curl_virus__Haenam_1" : [ - "HM754641" - ], - "West_Nile_virus__WNV_1_Culex_BID_V4163_legs" : [ - "HQ705670" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3982_2008" : [ - "GU131755" - ], - "West_Nile_virus__WNV_1_US_BID_V6432_2002" : [ - "KJ501458" - ], - "Ageratum_yellow_vein_virus_Guam_13_86" : [ - "KR094067" - ], - "Treponema_paraluiscuniculi_Cuniculi_A" : [ - "NC_015714" - ], - "Chickpea_chlorotic_dwarf_virus__J_ErC351_05" : [ - "KC172678" - ], - "Rabies_virus__AZ10_140" : [ - "JQ685961" - ], - "Akkermansia_muciniphila_ATCC_BAA_835" : [ - "NC_010655" - ], - "Calicivirus_strain_NB_NB" : [ - "NC_004064" - ], - "Hepatitis_B_virus__PNF4673" : [ - "KF779334" - ], - "Goose_circovirus__CPA14012" : [ - "KP229374" - ], - "Chikungunya_virus__LK_PB_CH1608" : [ - "FJ513629" - ], - "Mulberry_mosaic_dwarf_associated_virus__AK1_8" : [ - "NC_026771" - ], - "Prochlorococcus_phage_P_SSP6_P_SSP6" : [ - "HQ634152" - ], - "Human_rotavirus_A_IS2" : [ - "X76645" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_16__AHEaCV_16_NZ_2991SG_2012" : [ - "NC_026643" - ], - "Porcine_circovirus_2_SH0740" : [ - "GQ358999" - ], - "Escherichia_phage_e11_2" : [ - "NC_024125" - ], - "Cucurbit_aphid_borne_yellows_virus__CABYV_C_TW20" : [ - "JQ700305" - ], - "Peste_des_petits_ruminants_virus__China_Tib_07" : [ - "JF939201" - ], - "Human_bocavirus_CQ201003" : [ - "JN387084" - ], - "Serratia_liquefaciens_ATCC_27592" : [ - "NC_021741", - "NC_021742" - ], - "Hepatitis_delta_virus__D27" : [ - "KJ744237" - ], - "Hepatitis_B_virus__ES72_1" : [ - "JF828932" - ], - "Parrot_hepatitis_B_virus__P1232" : [ - "JX274029" - ], - "Tomato_yellow_leaf_curl_virus__SJZ2" : [ - "JF817218" - ], - "JC_polyomavirus__KB_27" : [ - "AB362358" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C21" : [ - "KJ019149" - ], - "Human_respiratory_syncytial_virus_RSVA_human_USA_A1998_12_21_1998_A1998_12_21" : [ - "JX069802" - ], - "Lactococcus_lactis_IO_1" : [ - "NC_020450" - ], - "Hepatitis_B_virus__ES71_1" : [ - "JF828921" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143164" : [ - "KR653277" - ], - "Hepatitis_E_virus_Kernow_C1" : [ - "HQ389544", - "HQ389543", - "HQ709170" - ], - "Middle_East_respiratory_syndrome_coronavirus_Hu_Riyadh_KSA_2343_2015" : [ - "KR011264" - ], - "Hepatitis_B_virus__Ag32" : [ - "KJ843193" - ], - "West_Nile_virus__WNV_1_BID_V5044" : [ - "JN819317" - ], - "Plum_bark_necrosis_stem_pitting_associated_virus__PR258_2" : [ - "KC590346" - ], - "SARS_Coronavirus_CDC_200301157" : [ - "AY714217" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1903_2008" : [ - "KF955459" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_786" : [ - "KR534521" - ], - "African_cassava_mosaic_virus__CF_CF316BE_08" : [ - "KJ887628" - ], - "BK_polyomavirus__THK_9a" : [ - "AB217921" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9753_2010" : [ - "KJ627279" - ], - "Torque_teno_sus_virus_1b__TTV2Bj11" : [ - "HM633227" - ], - "Hepatitis_B_virus_genotype_F_VNZ8248_2" : [ - "AB036906" - ], - "Enterobacter_638" : [ - "NC_009425", - "NC_009436" - ], - "Hepatitis_B_virus__JFA4390" : [ - "KF779281" - ], - "Hepatitis_B_virus__HBV_PG_Yohko" : [ - "AB037928" - ], - "Hepatitis_B_virus__1999" : [ - "FJ386609" - ], - "Echovirus_E27_Bacon" : [ - "AY302551" - ], - "Hepatitis_B_virus__G26" : [ - "AY077736" - ], - "Hepatitis_B_virus__Srb_210" : [ - "JQ687533" - ], - "Porcine_circovirus_2_24657_NL" : [ - "AF201897" - ], - "Sclerotinia_sclerotiorum_hypovirulence_associated_DNA_virus_1__SsHADV_1_US_549LB_12" : [ - "KM598382" - ], - "Canna_yellow_streak_virus__NC3" : [ - "KM882646" - ], - "African_cassava_mosaic_virus__CF_CF14AB_07" : [ - "KJ887761" - ], - "Hepatitis_B_virus_1491_1" : [ - "KR014084" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_LA2_16_2012" : [ - "KM042393" - ], - "South_African_cassava_mosaic_virus__MG_MG178A2_09" : [ - "KJ887674" - ], - "Dolichos_yellow_mosaic_virus__Bangalore_2" : [ - "AM157413" - ], - "Human_papillomavirus_type_43" : [ - "AJ620205" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1202_2007" : [ - "EU596497" - ], - "Papaya_ringspot_virus" : [ - "AY162218", - "S46722", - "NC_001785" - ], - "Hepatitis_B_virus__CHN_QH2" : [ - "DQ478881" - ], - "Middle_East_respiratory_syndrome_coronavirus__Hafr_Al_Batin_2_2013" : [ - "KJ156910" - ], - "Riemerella_phage_RAP44" : [ - "NC_019490" - ], - "Hepatitis_B_virus__cxa1627" : [ - "KC774301" - ], - "Dengue_virus_2__DENV_2_US_BID_V5414_2009" : [ - "JF730055" - ], - "Dengue_virus_3_D3_SG_SS710_2004" : [ - "EU081181" - ], - "Shewanella_pealeana_ATCC_700345" : [ - "NC_009901" - ], - "Pouzolzia_golden_mosaic_virus__ML13W1" : [ - "KF927128" - ], - "Edwardsiella_phage_eiAU" : [ - "KF772233" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD190_2013" : [ - "KM229846" - ], - "Human_poliovirus_2_NIE0711199_SOS07_01" : [ - "JX275032" - ], - "Torque_teno_virus__tth20" : [ - "AJ620216" - ], - "Human_coronavirus_NL63_NL63_human_USA_012_31_2001" : [ - "KF530105" - ], - "Human_rhinovirus_A89__F08" : [ - "FJ445166" - ], - "Newcastle_disease_virus_chicken_Banjarmasin_010_10" : [ - "HQ697254" - ], - "Staphylococcus_phage_X2" : [ - "NC_007065" - ], - "Hepatitis_B_virus_1303_32" : [ - "KR013852" - ], - "Hepatitis_B_virus__C57" : [ - "EU939552" - ], - "Rotavirus_A_RVA_Human_wt_USA_DC3779_1989_G1P_8" : [ - "KC580044", - "KC580041" - ], - "Pseudomonas_phage_vB_PaeP_C2_10_Ab09" : [ - "NC_024140" - ], - "West_Nile_virus__LEIV_Krnd88_190" : [ - "AY277251" - ], - "Hepatitis_B_virus__022_EA_Gap" : [ - "KF873515" - ], - "Cauliflower_mosaic_virus__GRC86D" : [ - "AB863196" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_G15482" : [ - "JX503083" - ], - "Dengue_virus_4_B5" : [ - "AF289029" - ], - "Pepino_mosaic_virus__VFTX12_19" : [ - "JX866667" - ], - "Feline_coronavirus_UU23_UU23_TCVSP_ROTTIER_00023" : [ - "GU553362" - ], - "Hepatitis_B_virus__2121" : [ - "FJ386620" - ], - "Hepatitis_B_virus_HB404" : [ - "JQ027319" - ], - "Alfalfa_mosaic_virus__Tec1" : [ - "FR715040", - "FR715041", - "FR715042" - ], - "Hepatitis_B_virus__919063" : [ - "JN040759" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5445_2009" : [ - "JF920403" - ], - "Pseudomonas_phage_MPK7" : [ - "NC_022091" - ], - "Porcine_circovirus_2__WB_H_5" : [ - "AY874167" - ], - "Dengue_virus_2__DENV_2_VN_BID_V759_2003" : [ - "EU482781" - ], - "Mycobacterium_phage_Milly" : [ - "NC_026598" - ], - "Dengue_virus_1__MKS_2200" : [ - "KC762622" - ], - "Gooseberry_vein_banding_associated_virus__RIB9001" : [ - "HQ852251" - ], - "Bos_taurus_papillomavirus_7_IT_215" : [ - "KM096428" - ], - "Hepatitis_B_virus__LAMr_Pt__11" : [ - "AB367402" - ], - "Hepatitis_B_virus__HK_1329" : [ - "KJ410490" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V133_1989" : [ - "EU155333" - ], - "Bhendi_yellow_vein_India_virus__India_Phalaghat_OY01_2005___OY01" : [ - "GU112051" - ], - "Yellow_fever_virus_88_1999" : [ - "KF907504" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_FR12_2008" : [ - "KM229794" - ], - "Middle_East_respiratory_syndrome_coronavirus__KFU_HKU_13" : [ - "KJ650295" - ], - "Hepatitis_E_virus__swCH31" : [ - "DQ450072" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_JS2012_goat01" : [ - "KC473537", - "KC473539", - "KC473538" - ], - "Porcine_coronavirus_HKU15_OH1987" : [ - "KJ462462" - ], - "Porcine_circovirus_2__NL_Control_3" : [ - "AY484409" - ], - "Enterovirus_A71_TW_71595_04" : [ - "GQ231939" - ], - "Respiratory_syncytial_virus_19" : [ - "FJ614813" - ], - "Classical_swine_fever_virus_CAP" : [ - "X96550" - ], - "Norovirus_Hu_GII_4_Aomori5_2008_JP_Hu_GII_4_Aomori5_2008_JP" : [ - "AB541227" - ], - "Riemerella_anatipestifer_RA_CH_2" : [ - "NC_020125" - ], - "Hepatitis_B_virus_327_7" : [ - "KR013776" - ], - "Human_polyomavirus_7__715b" : [ - "HM011568" - ], - "Francisella_philomiragia_ATCC_25017" : [ - "NC_010331", - "NC_010336" - ], - "Francisella_cf__novicida_3523" : [ - "NC_017449" - ], - "Tomato_mild_mosaic_virus__BR_Vic6_10" : [ - "JX871374" - ], - "Hepatitis_B_virus_F0885" : [ - "DQ975274" - ], - "Gallid_herpesvirus_1_live_attenuated_Serva" : [ - "HQ630064" - ], - "Wheat_dwarf_virus__SA1EcoFL2" : [ - "AM921992" - ], - "African_elephant_polyomavirus_1__DK_1_2011" : [ - "NC_022519" - ], - "Hepatitis_B_virus__IND_1963_8" : [ - "KF214653" - ], - "Human_mastadenovirus_D_human_USA_MEEI_0076_X_64_P64H64F64" : [ - "KF268213" - ], - "Raccoonpox_virus_Herman" : [ - "NC_027213" - ], - "Human_immunodeficiency_virus_1__03ZASK212B" : [ - "DQ978981" - ], - "Radish_leaf_curl_betasatellite__India_Varanasi_2010" : [ - "JF513201" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5296_1" : [ - "KR105303" - ], - "West_Nile_virus__WNV_1_US_BID_V4686_2003" : [ - "HM756658" - ], - "Dengue_virus_3__DENV_3_US_BID_V2122_2002" : [ - "FJ547084" - ], - "Enterovirus_A71_subgenotype_B5_PAR024102_FRA13" : [ - "LK985324" - ], - "Macaca_fascicularis_papillomavirus_type_3__Mac26" : [ - "EF558839" - ], - "Bacillus_thuringiensis_YBT_1518" : [ - "NC_020124", - "NC_022874", - "NC_022873", - "NC_022882", - "NC_022875", - "NC_022876", - "NC_022877" - ], - "Tobacco_curly_shoot_virus____Y35___Y35" : [ - "AJ420318" - ], - "Crimean_Congo_hemorrhagic_fever_virus__SPU_556_87" : [ - "KJ682811", - "KJ682798", - "KJ682817" - ], - "Laodelphax_striatella_honeydew_virus_1__Nanjing" : [ - "NC_023627" - ], - "Hantaan_virus_Q32" : [ - "DQ371905", - "DQ371906" - ], - "Asian_prunus_virus_1__tatao5" : [ - "NC_025388" - ], - "Porcine_circovirus_2__CAN_imp_05" : [ - "HQ148879" - ], - "Pseudomonas_phage_PT2_PT2" : [ - "NC_011107" - ], - "Enterobacteria_phage_phiX174__3B90" : [ - "EF380011" - ], - "Simian_immunodeficiency_virus__SIVrcmGAB1" : [ - "AF382829" - ], - "Human_papillomavirus_type_5" : [ - "PPHDELCG", - "NC_001531" - ], - "Hepatitis_E_virus__IND_SW_00_01" : [ - "AY723745" - ], - "Pig_stool_associated_circular_ssDNA_virus__ANH1" : [ - "JX305997" - ], - "Beet_black_scorch_virus_satellite_RNA__Xinjiang" : [ - "JN635326" - ], - "Hepatitis_B_virus__DEN6163" : [ - "KF779246" - ], - "Hepatitis_B_virus_HB137" : [ - "HM011466" - ], - "Human_papillomavirus_type_16__African_1_type" : [ - "AF536180" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GX1001" : [ - "JQ955657" - ], - "Human_immunodeficiency_virus_1__09YNYJ217016sg" : [ - "KC899014" - ], - "Tobacco_mosaic_virus__Xifeng" : [ - "HE818448" - ], - "Macroptilium_yellow_spot_virus__BR_Sti33_11" : [ - "KJ939890" - ], - "JC_polyomavirus__YI" : [ - "AB081030" - ], - "Human_papillomavirus_type_6__16" : [ - "HG793824" - ], - "Dengue_virus_1__ARG0048" : [ - "AY277666" - ], - "Leek_yellow_stripe_virus__AG1" : [ - "JX429967" - ], - "Human_bocavirus__HZ1203" : [ - "KP710207" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL130A" : [ - "AB985560" - ], - "Hepatitis_B_virus_genotype_F_VNZ8337" : [ - "AB036908" - ], - "Hepatitis_B_virus__A5_48093" : [ - "FJ692595" - ], - "Hepatitis_B_virus__C2_CLP_3" : [ - "KJ173426" - ], - "Hepatitis_B_virus__HK820" : [ - "DQ089788" - ], - "Foot_and_mouth_disease_virus___type_SAT_3__ZIM_6_91" : [ - "KM268901" - ], - "Human_immunodeficiency_virus_1__P1942" : [ - "GQ372987" - ], - "Transmissible_gastroenteritis_virus_H16" : [ - "FJ755618" - ], - "Human_poliovirus_3_USOL_D_bac_lot_2_66_01_12" : [ - "AJ293918" - ], - "Dengue_virus_1__DENV_1_TH_BID_V2271_2001" : [ - "FJ687428" - ], - "Maize_streak_virus__MSV_A_ZA_Pot1_Riz48_2007" : [ - "FJ882128" - ], - "Newcastle_disease_virus_pigeon_China_SDS_2011" : [ - "JQ993431" - ], - "Dragonfly_larvae_associated_circular_virus_5__DflaCV_5_NZ_PG2_LG" : [ - "NC_023431" - ], - "Human_papillomavirus_type_11__CS20" : [ - "FN907963" - ], - "Human_T_lymphotropic_virus_1__B1033_2009" : [ - "AB513134" - ], - "Junin_mammarenavirus_MC2" : [ - "AY216507" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8423_2001" : [ - "KJ627679" - ], - "Staphylococcus_aureus_VC40" : [ - "NC_016912" - ], - "Hepatitis_B_virus__S1026_4" : [ - "FJ032353" - ], - "Dengue_virus_2__DENV_2_VN_BID_V756_2003" : [ - "EU482778" - ], - "Aggregatibacter_actinomycetemcomitans_ANH9381" : [ - "NC_016513" - ], - "Rickettsia_canadensis_CA410" : [ - "NC_016929" - ], - "Porcine_mastadenovirus_C" : [ - "NC_002702" - ], - "Hepatitis_B_virus__1157" : [ - "JQ023666" - ], - "Porcine_circovirus_2__K46" : [ - "EU450591" - ], - "Trifolium_associated_circular_DNA_virus_1__TasCV_1_FR34_34_Cam" : [ - "NC_026272" - ], - "Streptococcus_phage_Alq132" : [ - "NC_013598" - ], - "JC_polyomavirus__HR_5" : [ - "AB048572" - ], - "Gossypium_darwinii_symptomless_virus__Dar1" : [ - "NC_011804" - ], - "Cacao_swollen_shoot_virus" : [ - "NC_001574", - "AJ534983", - "AJ608931" - ], - "Barley_yellow_dwarf_virus_GAV__AK2" : [ - "KF523378" - ], - "Lindernia_anagallis_yellow_vein_virus_satellite_DNA_beta" : [ - "NC_009561" - ], - "Avian_endogenous_retrovirus_EAV_HP" : [ - "AJ623290", - "NC_005947", - "AJ623289", - "AJ292966", - "AJ623292", - "AJ238125", - "AJ623291" - ], - "Saffold_virus_JPN08_404" : [ - "HQ902242" - ], - "Barley_stripe_mosaic_virus" : [ - "NC_003469", - "X52774", - "NC_003478" - ], - "Hepatitis_C_virus_subtype_3a__ILBSRAS9" : [ - "JQ717260" - ], - "Coccinia_mosaic_Tamil_Nadu_virus__TN_TDV_Coc_1" : [ - "NC_024810", - "KM887129", - "NC_024809" - ], - "Mastomys_polyomavirus__NR55" : [ - "NC_025895" - ], - "Okra_yellow_crinkle_Cameroon_alphasatellite__CM_Lys1sp4_09___Lys1sp4" : [ - "FN675286" - ], - "Bluetongue_virus_1__IAH_IND2003_02" : [ - "AJ783905" - ], - "butyrate_producing_bacterium_SSC_2" : [ - "NC_021016" - ], - "Human_TMEV_like_cardiovirus" : [ - "NC_010810" - ], - "Human_papillomavirus_RTRX7_RTRX7" : [ - "HPU85660" - ], - "Cucumber_mosaic_virus_Twa" : [ - "AJ585522" - ], - "Simian_immunodeficiency_virus_SIVmac239_87801" : [ - "AY587015" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US65" : [ - "KJ019119" - ], - "Hepatitis_B_virus__I_WA1031A" : [ - "HQ700548" - ], - "Ageratum_leaf_curl_Cameroon_alphasatellite__CM_ODL1D1_Ok_09___ODL1D1" : [ - "FN675292" - ], - "Norovirus_Hu_GII_4_Aichi5_2007_JP_Hu_GII_4_Aichi5_2007_JP" : [ - "AB541209" - ], - "Hepatitis_B_virus__SHB2S2" : [ - "KJ598659" - ], - "Norovirus_Hu_Chiba_04_1050_2005_JP_Hu_Chiba_04_1050_2005_JP" : [ - "AB220921" - ], - "African_cassava_mosaic_virus__MG_MG12B10_06" : [ - "KJ887636" - ], - "Potato_virus_Y__IUNG_12" : [ - "JF927760" - ], - "Hepatitis_B_virus__JFA4394" : [ - "KF779283" - ], - "Duck_circovirus__DU101" : [ - "HM162350" - ], - "Human_poliovirus_2__P2S_Mog65_2__20077" : [ - "AY278552" - ], - "Feline_coronavirus_UU10_UU10" : [ - "FJ938059" - ], - "Squash_leaf_curl_virus__PA3_T4" : [ - "KM595236" - ], - "Tomato_leaf_curl_Sulawesi_virus__FI05No1_3" : [ - "FJ237616" - ], - "Bat_Paramyxovirus_Eid_hel_GH_M74a_GHA_2009__BatPV_Eid_hel_GH_M74a_GHA_2009" : [ - "NC_025256" - ], - "Hepatitis_B_virus_544_14a" : [ - "KR013962" - ], - "_Ruminococcus__obeum" : [ - "NC_021022" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3707_2007" : [ - "GU131971" - ], - "Dengue_virus_2__DENV_2_VN_BID_V919_2006" : [ - "EU482465" - ], - "Bluetongue_virus_16__TUR2000_02" : [ - "AJ586692" - ], - "Human_papillomavirus_type_71__Qv22945" : [ - "AY330622" - ], - "Acinetobacter_bacteriophage_AP22" : [ - "NC_017984" - ], - "Tobacco_mosaic_virus__Chuxiong_1" : [ - "HE818417" - ], - "Macroptilium_yellow_vein_virus__BR_Pai23_11" : [ - "KJ939903" - ], - "Norovirus_Hu_GII_4_Hokkaido1_2008_JP_Hu_GII_4_Hokkaido1_2008_JP" : [ - "AB541261" - ], - "Gossypium_mustilinum_symptomless_alphasatellite__Mus_alphaB_3B" : [ - "NC_013012" - ], - "Hepatitis_B_virus__SZ7" : [ - "JF436921" - ], - "Human_respiratory_syncytial_virus_08_046532" : [ - "JX576744" - ], - "Enterobacteria_phage_P7" : [ - "AF503408" - ], - "Human_poliovirus_2_NIE1118437" : [ - "KJ170565" - ], - "African_cassava_mosaic_virus__MG_MG74A3_06" : [ - "KJ887893" - ], - "Canine_distemper_virus_007Lm_B" : [ - "AB490680" - ], - "Maize_streak_virus__MSV_E_Mz_ChiB_g201_2007" : [ - "EU628623" - ], - "South_African_cassava_mosaic_virus__MG_MG343A7_11" : [ - "KJ887994" - ], - "Middle_East_respiratory_syndrome_coronavirus__FRA_UAE" : [ - "KF745068" - ], - "Human_metapneumovirus_HMPV_USA_TN_01_28_2001_B" : [ - "KC562232" - ], - "Streptococcus_phage_SMP__SMP" : [ - "NC_008721" - ], - "Potato_virus_Y_N_O_Alt" : [ - "AY884985" - ], - "Tick_borne_encephalitis_virus_IR99_22f7" : [ - "LC017691" - ], - "Hepatitis_B_virus_580_2" : [ - "KR013812" - ], - "Hepatitis_B_virus__LAR070" : [ - "GQ358142" - ], - "Salmonella_phage_FSL_SP_076" : [ - "NC_021782" - ], - "Human_immunodeficiency_virus_2__07JP_NMC716" : [ - "AB499694" - ], - "Human_immunodeficiency_virus_1__01_BR_RGS69" : [ - "GQ365652" - ], - "Bhendi_yellow_vein_mosaic_betasatellite__India_Karnal_OY80_2006___OY81" : [ - "GU111980" - ], - "Simian_adenovirus_37_2" : [ - "FJ025919" - ], - "Hibiscus_latent_Singapore_virus__Singapore" : [ - "NC_008310" - ], - "JC_polyomavirus__327A" : [ - "AY378086" - ], - "Human_herpesvirus_5_Toledo" : [ - "GU937742" - ], - "Mesotoga_prima_MesG1_Ag_4_2" : [ - "NC_017935", - "NC_017934" - ], - "Grapevine_virus_B__GVB_H1" : [ - "GU733707" - ], - "Hepatitis_B_virus_Ehime14_BD_No7_20020820" : [ - "AB119252" - ], - "Hepatitis_B_virus__MMA_11" : [ - "AM421539" - ], - "Hepatitis_B_virus__AH22" : [ - "KC836879" - ], - "Enterovirus_A71__5511_SIN_00" : [ - "DQ341364" - ], - "Bhendi_yellow_vein_India_virus__India_Sonipat_OY96_2005___OY96" : [ - "GU112050" - ], - "Human_mastadenovirus_B_human_USA_ak35_AdV7d2_2006_7_P7H7F7" : [ - "JX423383" - ], - "Fox_circovirus__VS7100005" : [ - "KP260927" - ], - "Hepatitis_delta_virus_dFr_910" : [ - "AJ584848" - ], - "South_African_cassava_mosaic_virus__MG_MG176A3_09" : [ - "KJ887942" - ], - "Human_papillomavirus_type_52__Qv15145" : [ - "HQ537739" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V434_2003" : [ - "EU155277" - ], - "Human_respiratory_syncytial_virus_B_N2" : [ - "KF893260" - ], - "Hepatitis_B_virus__ES69_8" : [ - "JF828910" - ], - "HBV_genotype_F2__Mart_B18" : [ - "HE974366" - ], - "Fox_circovirus__VS7100003" : [ - "KP260926" - ], - "Rat_cytomegalovirus_ALL_03_ALL_03_Malaysian" : [ - "NC_027200" - ], - "Newcastle_disease_virus__Chicken_China_Hebei_01_2011" : [ - "KC542910" - ], - "Dengue_virus_3__D3_H_IMTSSA_MART_1999_1243" : [ - "AY099337" - ], - "Bean_common_mosaic_virus__Habin1" : [ - "KJ508092" - ], - "Dengue_virus_2__D2_Pakistan_209_2009" : [ - "KF041235" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota77_2013" : [ - "KJ645672" - ], - "Ocozocoautla_de_Espinosa_virus_AV_B1030026" : [ - "JN897398" - ], - "Hepatitis_B_virus__C67" : [ - "EU939559", - "EU859933" - ], - "Porcine_circovirus_2__PCV_1_2" : [ - "KC515028" - ], - "Human_papillomavirus_type_11__LP220" : [ - "HE611263" - ], - "Dengue_virus_3__DENV_3_NI_BID_V7646_2012" : [ - "KF973478" - ], - "Tomato_severe_rugose_virus__BR_Vic11_10" : [ - "JX865625" - ], - "Salmonella_enterica_serovar_Enteritidis_P125109" : [ - "NC_011294" - ], - "Hepatitis_B_virus__bne446" : [ - "FN594763" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_10_10GX_2" : [ - "JQ663559" - ], - "Human_immunodeficiency_virus_1__ZM246F_flC7" : [ - "FJ496193" - ], - "Tomato_leaf_curl_virus_satellite" : [ - "NC_002743" - ], - "West_Nile_virus__WNV_1_US_BID_V6445_2002" : [ - "KJ501302" - ], - "Chikungunya_virus_99659" : [ - "KJ451624" - ], - "Francisella_tularensis_holarctica_OSU18" : [ - "NC_008369" - ], - "Hepatitis_B_virus_0477" : [ - "EU796066" - ], - "Candidatus_Puniceispirillum_marinum_IMCC1322" : [ - "NC_014010" - ], - "Squash_leaf_curl_Philippines_virus__PA1" : [ - "DQ866135" - ], - "Newcastle_disease_virus_Du_CH_LJS_215_2011" : [ - "KM885151" - ], - "Porcine_circovirus_2__Huanan_8" : [ - "EF421973" - ], - "Chromobacterium_violaceum_ATCC_12472" : [ - "NC_005085" - ], - "Dengue_virus_2__MKS_0068" : [ - "KC762665" - ], - "Hepatitis_B_virus__C179" : [ - "EU939602" - ], - "Porcine_circovirus_2__La_Habana_28" : [ - "FN687843" - ], - "Helicobacter_pylori_B8" : [ - "NC_014257", - "NC_014256" - ], - "Bacteroides_CF50" : [ - "NC_022526" - ], - "Deinococcus_geothermalis_DSM_11300" : [ - "NC_008025", - "NC_009939", - "NC_008010" - ], - "Canine_distemper_virus_009L_H" : [ - "AB490672" - ], - "Synechococcus_elongatus_PCC_7942" : [ - "NC_007595", - "NC_007604" - ], - "Bluetongue_virus_7_v6963" : [ - "JQ086291", - "JQ086299", - "JQ086295", - "JQ086293", - "JQ086300", - "JQ086298", - "JQ086297", - "JQ086294", - "JQ086292", - "JQ086296" - ], - "Radish_leaf_curl_virus__Pusa_Bihar" : [ - "EU194914" - ], - "Human_papillomavirus_type_6__12" : [ - "HG793820" - ], - "St_Croix_River_virus" : [ - "NC_006005", - "NC_006000", - "NC_005999", - "NC_005998", - "NC_006006", - "NC_006002", - "NC_006003", - "NC_006004", - "NC_006001", - "NC_005997" - ], - "Tomato_leaf_curl_China_betasatellite__Y264" : [ - "AM260722" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B5J3" : [ - "JN053442" - ], - "Malvastrum_yellow_vein_Cambodia_virus__08" : [ - "NC_026763" - ], - "Human_bocavirus__2010GZ7691" : [ - "KJ684075" - ], - "Torque_teno_virus__TTV_HD18a__uro703" : [ - "FR751489" - ], - "Enterobacteria_phage_NC19" : [ - "DQ079902" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00088_1985_72_P72H30F72" : [ - "KF268335" - ], - "Dengue_virus_2_D2_TO_UH04_1974" : [ - "HM582117" - ], - "Cycas_necrotic_stunt_virus__Lily1" : [ - "JN127337" - ], - "Human_papillomavirus_type_53__Qv17356" : [ - "EF546476" - ], - "Hepatitis_B_virus__6144_0226_ETCvs3TC_Break" : [ - "DQ993699" - ], - "Pepper_mild_mottle_virus_S" : [ - "NC_003630" - ], - "Hepatitis_B_virus__H25" : [ - "FJ349208" - ], - "Hepatitis_B_virus__LDA72" : [ - "KF849718" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0127" : [ - "KP759676" - ], - "Human_immunodeficiency_virus_1__CU_98_26" : [ - "EF192591", - "EF192592" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1570_2007" : [ - "FJ024430" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_15_2011" : [ - "KJ686179" - ], - "African_cassava_mosaic_virus__MG_MG12A8_06" : [ - "KJ887832" - ], - "Porcine_circovirus_2_10CQ" : [ - "HQ395050" - ], - "West_Nile_virus__WNV_USA_BID_G15501" : [ - "JX503092" - ], - "Duck_Tembusu_virus_FX_2012" : [ - "KC990541" - ], - "Tomato_leaf_curl_Taiwan_virus__Ch1" : [ - "DQ866125" - ], - "BK_polyomavirus__FIN_2" : [ - "AB260033" - ], - "Ageratum_yellow_vein_virus__F2" : [ - "EF527823" - ], - "Human_papillomavirus_type_68__LZod68_68" : [ - "EU918769" - ], - "SARS_coronavirus_BJ202" : [ - "AY864806" - ], - "Hepatitis_B_virus__HK858" : [ - "DQ089774" - ], - "Plum_pox_virus__PPV_NAT" : [ - "NC_001445" - ], - "Tobacco_mosaic_virus__Pingtan_1" : [ - "HE818438" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_G12" : [ - "LN831187" - ], - "Porcine_circovirus_2__FS2" : [ - "KC514986" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4985_spleen" : [ - "HQ671681" - ], - "Mumps_virus_9218_Zg98" : [ - "EU370206" - ], - "Hepatitis_B_virus__TA112" : [ - "AB246317" - ], - "Erwinia_phage_phiEt88" : [ - "NC_015295" - ], - "Ageratum_yellow_vein_China_betasatellite__Hn2" : [ - "AM048834" - ], - "Hepatitis_B_virus__dxa1577" : [ - "KC774461" - ], - "Listeria_phage_A511" : [ - "NC_009811" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_85E_170_01_1985" : [ - "KP258699" - ], - "Hepatitis_B_virus__PhHCC03" : [ - "AB241116" - ], - "Tomato_leaf_curl_Karnataka_virus___Bangalore__India_Punjab_Mentha_2007" : [ - "FJ514798" - ], - "Human_immunodeficiency_virus_1__98CMABB212" : [ - "AY169804" - ], - "Human_poliovirus_2_NIE1116152_KBS11_01" : [ - "JX275352" - ], - "Porcine_circovirus_2_GXFS1112_2" : [ - "JX948773" - ], - "Turnip_mosaic_virus__OS" : [ - "AB701693" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4926_spleen" : [ - "HQ671675" - ], - "Enterobacteria_phage_NC29" : [ - "DQ079879" - ], - "Porcine_circovirus_2_Argentina_Salto" : [ - "EF458306" - ], - "GB_virus_C__Hu_20" : [ - "KC618400" - ], - "Human_herpesvirus_4_HN14" : [ - "AB850651" - ], - "Hepatitis_B_virus__SSC133" : [ - "KJ598702" - ], - "Simian_virus_40__sv_imb" : [ - "DQ660375" - ], - "Human_papillomavirus_type_18__CU11" : [ - "GQ180787" - ], - "Rotavirus_G9_US1111" : [ - "AJ250269" - ], - "Hepatitis_B_virus__P54" : [ - "GQ477484" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3723_2007" : [ - "GQ868518" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2261_2006" : [ - "FJ639821" - ], - "Murine_norovirus_S7_PP3" : [ - "AB435515" - ], - "Japanese_encephalitis_virus__04940_4" : [ - "EF623989" - ], - "Pergamino_virus_14403" : [ - "AF482717" - ], - "Tomato_leaf_curl_New_Delhi_virus__Pakistan_Solanum_1997___Rahim_Yar_Khan_2" : [ - "DQ116885" - ], - "Hepatitis_B_virus__cxa1175" : [ - "KC774288" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M14" : [ - "KM110943" - ], - "Tobacco_mosaic_virus__Hechi" : [ - "HE818426" - ], - "Budgerigar_fledgling_disease_polyomavirus_APV6" : [ - "AB453164" - ], - "Chicken_anemia_virus__SD22" : [ - "DQ141673" - ], - "Dengue_virus_1__DENV_1_KH_BID_V1988_2003" : [ - "FJ639676" - ], - "Parainfluenza_virus_5_W3A" : [ - "JQ743318", - "NC_006430" - ], - "Possum_enterovirus_W6__W6" : [ - "AY462107" - ], - "Turkey_coronavirus_TCoV_TX_1038_98" : [ - "GQ427176" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2045_2005" : [ - "FJ639711" - ], - "Hepatitis_B_virus__VT1026" : [ - "AB212625" - ], - "Acheta_domestica_densovirus__Eu06" : [ - "KF015275" - ], - "Turnip_mosaic_virus__DEU5" : [ - "AB701702" - ], - "Hepatitis_B_virus__C186" : [ - "EU939680" - ], - "JC_polyomavirus__MA_1" : [ - "AB126998" - ], - "Mycoplasma_crocodyli_MP145" : [ - "NC_014014" - ], - "Human_immunodeficiency_virus_1__Fj052" : [ - "EF036528" - ], - "Hepatitis_B_virus__HB_JBDH1" : [ - "AB179747" - ], - "Hepatitis_B_virus__P26" : [ - "EU859911" - ], - "Hepatitis_B_virus__C1_1" : [ - "GU815618" - ], - "Enterobacteria_phage_phiX174__JACSK" : [ - "GU385905" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2455_2001" : [ - "FJ850098" - ], - "Dengue_virus_2_DENV_2_PR_26DN_1994" : [ - "GQ398276" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_N_SD_SD233_2013" : [ - "KM229910" - ], - "Simkania_negevensis_Z" : [ - "NC_015713", - "NC_015710" - ], - "Infectious_salmon_anemia_virus__Sotra_92_93" : [ - "AJ002475" - ], - "Leuconostoc_phage_phiLN12" : [ - "NC_024385" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_37_2011" : [ - "KJ686184" - ], - "Human_parechovirus_1_Harris" : [ - "ECHPICORN" - ], - "Rabies_virus__SXBJ15" : [ - "KR230089" - ], - "Goose_hemorrhagic_polyomavirus__Germany_2001" : [ - "NC_004800" - ], - "Rice_yellow_mottle_virus__Ni2" : [ - "AJ608213" - ], - "Hepatitis_B_virus__S1147" : [ - "FJ386678" - ], - "Papaya_leaf_curl_China_virus____G10___G10" : [ - "AJ558125" - ], - "Pseudomonad_phage_gh_1" : [ - "NC_004665" - ], - "Small_begomovirus_associated_satellite__wf_S42" : [ - "KJ859199" - ], - "Pedilanthus_leaf_curl_virus_Pedilanthus__Pakistan_Multan_2004" : [ - "NC_012118" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC01B01_2005" : [ - "JF909078" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_71_2012" : [ - "KJ686194" - ], - "Human_bocavirus_isolate_SH1__SH1" : [ - "FJ375127" - ], - "Newcastle_disease_virus__SD09" : [ - "HQ317395" - ], - "Hepatitis_B_virus_1385_1" : [ - "KR013859" - ], - "West_Nile_virus__Italy_2008_M_203204" : [ - "JF719066" - ], - "Human_respiratory_syncytial_virus_A_WI_629_9_2_07" : [ - "JF920048" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4423_1" : [ - "KR105251" - ], - "Hepatitis_B_virus__HBV_YA" : [ - "KP036970" - ], - "Dengue_virus_2__DENV_2_NI_BID_V578_2006" : [ - "EU482690" - ], - "Norovirus_Hu_GII_4_Toyama2_2008_JP_Hu_GII_4_Toyama2_2008_JP" : [ - "AB541356" - ], - "JC_polyomavirus__Sam_15" : [ - "AB127346" - ], - "Human_immunodeficiency_virus_1__PS3002_Day0" : [ - "DQ676883" - ], - "Tomato_leaf_curl_China_betasatellite__G33" : [ - "AJ704608" - ], - "HBV_genotype_A2__Mart_B22" : [ - "HE974367" - ], - "Human_immunodeficiency_virus_1__Cambridge" : [ - "HIVCAM1" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_37_02" : [ - "DQ989311" - ], - "Dengue_virus_1__71_02GZ" : [ - "EF025110" - ], - "Human_respiratory_syncytial_virus__02_017863" : [ - "JQ901455" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_36_2013" : [ - "KJ672426" - ], - "BK_polyomavirus__BKV_CAP_m5" : [ - "AY628232" - ], - "Human_papillomavirus_type_11__LP16" : [ - "HE611268" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_277_2012" : [ - "KP308414" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_7__AHEaCV_7_NZ_3107C3_2012" : [ - "NC_026633" - ], - "Dengue_virus_3__DENV_3_US_BID_V1476_2002" : [ - "EU687196" - ], - "Dengue_virus_2__DENV_2_TH_BID_V1498_1994" : [ - "EU687246" - ], - "Grapevine_fanleaf_virus__SACH44" : [ - "KC900162", - "KC900163" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2236_2004" : [ - "KF955471" - ], - "Rift_Valley_fever_virus_2007000003" : [ - "JF326196" - ], - "Newcastle_disease_virus__QH1" : [ - "FJ751918" - ], - "Small_begomovirus_associated_satellite__wf_S32" : [ - "KJ859189" - ], - "Transmissible_gastroenteritis_virus__TGEV_HX" : [ - "KC962433" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V410_2006" : [ - "EU482882" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA65_29" : [ - "KF670666" - ], - "Hepatitis_B_virus__cyc1099" : [ - "KC774359" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Homo_sapiens_PER_IQT1098_1994_ID" : [ - "KC344526" - ], - "Listeria_monocytogenes_J0161" : [ - "NC_017545" - ], - "Morelia_spilota_papillomavirus_1__Zurich_2009" : [ - "NC_016013" - ], - "Potato_virus_X" : [ - "PVXCGA", - "PVXGEN", - "PVXCG", - "EU571480" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7338_2002" : [ - "KF973322" - ], - "Human_immunodeficiency_virus_1__98USHVTN1925c1" : [ - "AY560107" - ], - "Torque_teno_virus__TTVsan_S039" : [ - "AB038620" - ], - "Goose_circovirus__GB27_20" : [ - "KP203872" - ], - "Human_rhinovirus_A34" : [ - "DQ473501" - ], - "Southern_rice_black_streaked_dwarf_virus__ZT1" : [ - "KJ513446", - "KJ493785" - ], - "Norwalk_virus_Vietnam_026" : [ - "AF504671" - ], - "Marine_birnavirus__AY_98" : [ - "NC_008026" - ], - "Rabbit_hemorrhagic_disease_virus__Iowa2000" : [ - "AF258618" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_127_2001" : [ - "DQ404178" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1371" : [ - "KR534555" - ], - "Hepatitis_B_virus__cxa2069" : [ - "KC774327" - ], - "BK_polyomavirus_MON_6" : [ - "AB269850" - ], - "Potato_virus_Y_strain_NTN_NTN_12_94" : [ - "AJ889866" - ], - "Shewanella_W3_18_1" : [ - "NC_008750" - ], - "Tomato_yellow_leaf_curl_virus__Almeria" : [ - "NC_004005" - ], - "Bacillus_virus_1" : [ - "NC_009737" - ], - "Pepper_yellow_leaf_curl_Indonesia_virus__Tomato1" : [ - "AB267837", - "AB267836" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLI1311_2010_A" : [ - "KJ627411" - ], - "Dengue_virus_1_D1_SG_05K4152DK1_2005" : [ - "EU081259" - ], - "Human_respiratory_syncytial_virus_08_045604" : [ - "JX576746" - ], - "Merkel_cell_polyomavirus__25b" : [ - "HM011552" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4868_1" : [ - "KR105275" - ], - "Potato_virus_Y__FrKV15" : [ - "HM991454" - ], - "JC_polyomavirus__JCV135_07" : [ - "JF424840" - ], - "Human_herpesvirus_5_Towne" : [ - "FJ616285", - "AY315197" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3989_2008" : [ - "GU131761" - ], - "Watermelon_chlorotic_stunt_virus__IL" : [ - "EF201810", - "EF201809" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7574_2009_A" : [ - "KJ627379" - ], - "Hepatitis_B_virus__MY541105" : [ - "KJ803788" - ], - "Bovine_viral_diarrhea_virus_2__Potsdam_1600" : [ - "HG426491" - ], - "Dengue_virus_3__DENV_3_US_BID_V1605_2004" : [ - "FJ850055" - ], - "Dengue_virus_2__DENV_2_US_BID_V1394_1998" : [ - "EU596487" - ], - "Croton_yellow_vein_mosaic_betasatellite__Pataudi" : [ - "FJ593630" - ], - "South_African_cassava_mosaic_virus__MG_MG321A2_10" : [ - "KJ887693" - ], - "Hepatitis_B_virus__GZ_ZFL" : [ - "DQ448627" - ], - "Infectious_bronchitis_virus__Peafowl_GD_KQ6_2003" : [ - "AY641576" - ], - "Leuconostoc_kimchii_IMSNU_11154" : [ - "NC_014136", - "NC_014131", - "NC_014134", - "NC_014132", - "NC_014133", - "NC_014135" - ], - "Hepatitis_delta_virus__U18" : [ - "KF660602" - ], - "Maize_streak_virus__MSV_A_ZA_Let4_O16_1989" : [ - "FJ882123" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2167_1998" : [ - "JN819409" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__QLD_127M1b" : [ - "KM655816" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V224_2003" : [ - "EU255944" - ], - "Sweet_potato_mild_mottle_virus" : [ - "NC_003797" - ], - "Gordonia_phage_GTE5" : [ - "NC_016434" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda13_05" : [ - "KC706655", - "KC706630" - ], - "Helicoverpa_armigera_nucleopolyhedrovirus_LB1" : [ - "KJ701029" - ], - "Human_coronavirus_HKU1_HKU1_human_USA_HKU1_13_2010" : [ - "KF686343" - ], - "Middle_East_respiratory_syndrome_coronavirus__KFU_HKU_1" : [ - "KJ650297" - ], - "Hepatitis_B_virus__ES70_2" : [ - "JF828914" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dar_alpha_2" : [ - "EU384609" - ], - "Lake_Victoria_marburgvirus___Angola2005_Ang1379c" : [ - "DQ447653" - ], - "Hepatitis_B_virus__DMY_6" : [ - "FJ787489" - ], - "Dengue_virus_4__DENV_4_CO_BID_V3406_2001" : [ - "GQ868579" - ], - "Soybean_dwarf_virus_YS_M93_1" : [ - "NC_003056" - ], - "Hepatitis_delta_virus_dFr2627" : [ - "AM183329" - ], - "Dengue_virus_3__DENV_3_US_BID_V1043_2006" : [ - "EU482555" - ], - "Halorubrum_lacusprofundi_ATCC_49239" : [ - "NC_012028", - "NC_012029", - "NC_012030" - ], - "Human_mastadenovirus_D_human_USA_CL_50_1992_56_P56_H56_F56" : [ - "KF268333" - ], - "Sin_Nombre_virus_NM_H10_case_H10" : [ - "NC_005216" - ], - "Tomato_ringspot_virus_raspberry" : [ - "NC_003840" - ], - "Alternanthera_yellow_vein_virus__PT1" : [ - "EF544602" - ], - "Psychrobacter_arcticus_273_4" : [ - "NC_007204" - ], - "Enterobacteria_phage_M" : [ - "NC_019707" - ], - "Enterobacteria_phage_vB_KleM_RaK2" : [ - "NC_019526" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3489A_2002" : [ - "JN989429" - ], - "Hepatitis_C_virus_subtype_1b_Pt1_98_Q2" : [ - "AB828701" - ], - "Human_immunodeficiency_virus_1__H61" : [ - "DQ854715" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_272_2012" : [ - "KP308432" - ], - "West_Nile_virus__WNV_1_BID_V5030" : [ - "JN819305" - ], - "Hepatitis_B_virus_362_39" : [ - "KR013920" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V145_2005" : [ - "EU155218" - ], - "Whataroa_virus" : [ - "NC_016961" - ], - "Vibrio_phage_phiVC8" : [ - "NC_027118" - ], - "Hepatitis_B_virus__A84" : [ - "HM363581" - ], - "Hepatitis_B_virus__HB12_0626" : [ - "AB828708" - ], - "Hepatitis_B_virus__patient4" : [ - "AB300362" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__DK_2008_10_5_2" : [ - "KC862573" - ], - "Tomato_mild_mosaic_virus__BR_Pda59_05" : [ - "KC706612", - "KC706610" - ], - "Mycobacterium_phage_BigNuz_BigNuz" : [ - "NC_023692" - ], - "Duck_hepatitis_A_virus_H" : [ - "JQ301467" - ], - "Japanese_encephalitis_virus__HLJ02_134" : [ - "JF706276" - ], - "Maize_streak_virus__MSV_A_ZA_Hec1_O4_1989" : [ - "FJ882109" - ], - "Human_immunodeficiency_virus_1__CH185_mo6" : [ - "KC156116" - ], - "Sweet_potato_leaf_curl_virus__Chungju_263" : [ - "HM754634" - ], - "Hepatitis_B_virus__S4" : [ - "EU678473" - ], - "Tomato_yellow_leaf_curl_virus_TYLCV_CJ_cgh" : [ - "AB636410" - ], - "Newcastle_disease_virus__NDV_chicken_Togo_AKO18_2009" : [ - "JX390609" - ], - "Tobacco_bushy_top_virus_satellite_like_RNA_KunMing_YJi" : [ - "FN821691" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_28_2012" : [ - "KJ672449" - ], - "Dendrolimus_punctatus_tetravirus" : [ - "NC_005898", - "NC_005899" - ], - "Hepatitis_B_virus__HBV_PG_Makiko" : [ - "AB037927" - ], - "Hepatitis_B_virus__I191" : [ - "FJ562305" - ], - "Porcine_circovirus_2_DY1101" : [ - "JX406425" - ], - "Hepatitis_B_virus__109001205" : [ - "JN792910" - ], - "Human_papillomavirus_type_58__Z023" : [ - "HQ537763" - ], - "Hepatitis_B_virus_FMU002" : [ - "AY206373" - ], - "Hepatitis_B_virus_FMU021" : [ - "AY206392" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLA5834_2009_A" : [ - "KJ627424" - ], - "Eel_River_basin_pequenovirus__c19758" : [ - "KP087952" - ], - "Peste_des_petits_ruminants_virus__UAE_1986" : [ - "KJ867545" - ], - "Enterobacteria_phage_vB_EcoP_ACG_C91_vB_EcoP_C91" : [ - "NC_019403" - ], - "HBV_genotype_D4__Mart_B70" : [ - "HE974382" - ], - "Dengue_virus_2__DENV_2_US_BID_V678_1998" : [ - "EU482735" - ], - "Enterovirus_A71_BJ08_Z011_4" : [ - "FJ606448" - ], - "Maize_streak_virus__MSV_A_MZ_Lib2_Moz31_2007" : [ - "HQ693348" - ], - "Tursiops_truncatus_papillomavirus_type_3" : [ - "EU240895" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Aurangabad_OY164_2006___OY164" : [ - "NC_014846" - ], - "Bacillus_cereus_F837_76" : [ - "NC_016780", - "NC_016794", - "NC_016779" - ], - "Bean_golden_mosaic_virus__BR_Pai2_11" : [ - "KJ939738" - ], - "Potato_mop_top_virus__T" : [ - "PXMRNA3" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_FF3_Before" : [ - "EF532808" - ], - "SARS_coronavirus_TWS__TWS" : [ - "AP006560" - ], - "Thermovibrio_ammonificans_HB_1" : [ - "NC_014926", - "NC_014917" - ], - "Human_immunodeficiency_virus_1__5048_87" : [ - "AY835760" - ], - "Tomato_leaf_curl_Philippines_virus__P7" : [ - "EU487027" - ], - "JC_polyomavirus__CW_10" : [ - "AB077872" - ], - "Maize_streak_virus__MSV_A_MZ_Bil6_Bet25_2007" : [ - "HQ693340" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_90P_147_01_1990" : [ - "KP258729" - ], - "Cauliflower_mosaic_virus__IRNShC" : [ - "JX912268" - ], - "Dengue_virus_3__DENV_3_VE_BID_V1593_2005" : [ - "EU854292" - ], - "Bacillus_phage_phBC6A52" : [ - "NC_004821" - ], - "Goatpox_virus_G20_LKV_G20_LKV" : [ - "AY077836" - ], - "Human_herpesvirus_2__HSV_2_US_BID_G19094_89_390_1989" : [ - "KR135321" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP00530_2011" : [ - "KJ627364" - ], - "Simian_immunodeficiency_virus__SIVmus01CM1246" : [ - "EF070329" - ], - "Human_T_lymphotropic_virus_2__pygmy2" : [ - "Y14365" - ], - "Grapevine_fleck_virus__MT48" : [ - "NC_003347" - ], - "Penaeid_shrimp_infectious_myonecrosis_virus__IMNV_ID_LP_11" : [ - "KJ636782" - ], - "Burkholderia_pseudomallei_668" : [ - "NC_009074", - "NC_009075" - ], - "Human_immunodeficiency_virus_1__14181_1" : [ - "DQ853443" - ], - "Aspergillus_foetidus_dsRNA_mycovirus" : [ - "NC_020102", - "NC_020103", - "NC_020100", - "NC_020101" - ], - "Human_rhinovirus_A34_ATCC_VR_1144" : [ - "FJ445189" - ], - "Human_parechovirus_1__CAU10_NN" : [ - "JX575746" - ], - "Dengue_virus_2__DENV_2_US_BID_V1042_1998" : [ - "EU482554" - ], - "Hepatitis_B_virus__99" : [ - "JX507214" - ], - "Tomato_chlorotic_mottle_virus__BR_Car219_3_08" : [ - "KC706540" - ], - "Beak_and_feather_disease_virus__10IT11" : [ - "KF723392" - ], - "West_Nile_virus_Greece_2013_Xanthi_4" : [ - "KJ883341" - ], - "Plum_pox_virus_strain_Dideron_Dideron_SK_272pe" : [ - "HF585098" - ], - "Tomato_leaf_curl_Arusha_virus" : [ - "DQ519575" - ], - "Dengue_virus_2__DENV_2_VN_BID_V763_2003" : [ - "EU482785" - ], - "Faecal_associated_gemycircularvirus_12__as3" : [ - "NC_025728" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1793_2007" : [ - "FJ432735" - ], - "Staphylococcus_phage_Sb_1" : [ - "NC_023009" - ], - "Pepper_yellow_leaf_curl_China_virus__YN65_10" : [ - "KC149939" - ], - "Human_papillomavirus_type_91" : [ - "AF419318" - ], - "Propionibacterium_phage_PHL030N00__PHL030N00" : [ - "NC_027373" - ], - "Escherichia_coli__BL21_Gold_DE3_pLysS_AG" : [ - "NC_012947" - ], - "Porcine_circovirus_2_Huanan_10" : [ - "EF493839" - ], - "Malvastrum_yellow_vein_betasatellite__Y216" : [ - "AJ971699" - ], - "Duck_hepatitis_A_virus_1__JL11" : [ - "KJ577601" - ], - "Hepatitis_B_virus__C39" : [ - "EU939544", - "EU859955" - ], - "Helicobacter_pylori_Shi112" : [ - "NC_017741" - ], - "Dengue_virus_4__DENV_4_CO_BID_V3408_2001" : [ - "GQ868581" - ], - "West_Nile_virus__WNV_1_US_BID_V4366_2008" : [ - "HM488170" - ], - "Human_poliovirus_1_NIE1118318" : [ - "KJ170487" - ], - "Sunflower_chlorotic_mottle_virus_Chlorotic_ringspots__CRS" : [ - "GU181200" - ], - "Transmissible_gastroenteritis_virus_Purdue_PUR46_MAD" : [ - "AJ271965" - ], - "Homalodisca_vitripennis_reovirus__Tifton4" : [ - "GU437833", - "GU437837", - "GU437830", - "GU437836", - "GU437835", - "GU437831", - "GU437828", - "GU437834", - "GU437832", - "GU437838", - "GU437829", - "GU437827" - ], - "Japanese_encephalitis_virus_JEV_sw_Mie_41_2002" : [ - "AB241119" - ], - "Murine_norovirus_GV_CR3_2005_USA__Mu_NoV_GV_CR3_2005_USA" : [ - "EU004673" - ], - "South_African_cassava_mosaic_virus__MG_MG730A4_11" : [ - "KJ888097" - ], - "Neodiprion_lecontei_nucleopolyhedrovirus" : [ - "NC_005906" - ], - "Tomato_yellow_leaf_curl_virus__LNhud1" : [ - "KJ140787" - ], - "Murine_norovirus_GV_NIH_D220_2007_USA_GV_NIH_D220_2007_USA" : [ - "JF320653" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V261_2004" : [ - "EU482872" - ], - "West_Nile_virus_2_GA_2002_2" : [ - "DQ164197" - ], - "Hepatitis_B_virus__HBV097" : [ - "JN688685" - ], - "Borrelia_recurrentis_A1" : [ - "NC_011246", - "NC_011258", - "NC_011260", - "NC_011255", - "NC_011253", - "NC_011244", - "NC_011263", - "NC_011252" - ], - "Small_begomovirus_associated_satellite__wf_S50" : [ - "KJ859205" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2691_2006" : [ - "FJ882518" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V379_2005" : [ - "EU155261" - ], - "Porcine_kobuvirus__GS_2_2012_CH" : [ - "KC424640" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V384_2005" : [ - "EU155263" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Lewis_After" : [ - "EF532817" - ], - "Porcine_circovirus_2_GD_Guangdong" : [ - "AY613854" - ], - "Hepatitis_B_virus_4635_97" : [ - "EU594425" - ], - "Human_adenovirus_14__Ad14_303600" : [ - "FJ822614" - ], - "Eastern_equine_encephalitis_virus_EEEV_Meleagris_gallopavo_USA_cc158_03_2003" : [ - "KJ469555" - ], - "Hepatitis_B_virus__D_NZL_BU12_1984" : [ - "HQ700445" - ], - "Crimean_Congo_hemorrhagic_fever_virus_Baghdad_12" : [ - "AY947890" - ], - "Bovine_viral_diarrhea_virus_1_ILLNC" : [ - "PTU86600" - ], - "Wheat_dwarf_virus__SXHC10_17" : [ - "JQ647499" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_L1066_2009_G3P_8__L1066" : [ - "KF371920", - "KF371914", - "KF371913", - "KF371911", - "KF371912", - "KF371917", - "KF371915", - "KF371916", - "KF371919" - ], - "Crimean_Congo_hemorrhagic_fever_virus_66019" : [ - "AJ010648" - ], - "Porcine_circovirus_2_Luohe" : [ - "EU521707" - ], - "Sulfolobus_islandicus_HVE10_4" : [ - "NC_017275" - ], - "Human_poliovirus_3_NIE1118509" : [ - "KJ170656" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3770_2" : [ - "KM233070" - ], - "Human_immunodeficiency_virus_1__04ZASK148B1" : [ - "DQ093590" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1212_2007" : [ - "EU569698" - ], - "Hepatitis_B_virus__69" : [ - "JQ040128" - ], - "Hepatitis_B_virus__HBV_Iw11" : [ - "AB073842" - ], - "Propionibacterium_phage_PHL095N00__PHL095N00" : [ - "NC_027401" - ], - "Porcine_circovirus_2_TJ1205" : [ - "JX204386" - ], - "Aotine_herpesvirus_1_S34E" : [ - "NC_016447" - ], - "Ovine_enzootic_nasal_tumor_virus__ENTV_1NA6" : [ - "FJ744149" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_PER_FPP00589_2011" : [ - "KJ627348" - ], - "Dengue_virus_2_DENV_2_PR_40DN_1994" : [ - "GQ398278" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_384_2012" : [ - "KP308407" - ], - "Maize_streak_virus___B_Mom__MSV_B_MSV_Mom" : [ - "AF329886" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_170_2012" : [ - "KJ686252" - ], - "Hepatitis_B_virus__G3_1" : [ - "GU815775" - ], - "Hepatitis_B_virus__MLT0765" : [ - "KF779291" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3754_2008" : [ - "GQ868535" - ], - "Tomato_yellow_leaf_curl_virus__Shiraz_Iran___TYLCV_IL_IR_Sh47_07" : [ - "GU076447" - ], - "Feline_calicivirus__12Q087_1" : [ - "KJ572400" - ], - "Acetobacter_pasteurianus_IFO_3283_01_42C" : [ - "NC_017104", - "NC_017150", - "NC_017152", - "NC_017107", - "NC_017106", - "NC_017151", - "NC_017105" - ], - "Foot_and_mouth_disease_virus___type_O_O7_Poland_o7poland_iso49" : [ - "AY593830" - ], - "Human_respiratory_syncytial_virus_B_GZ_13_730" : [ - "KM517573" - ], - "Halocynthia_phage_JM_2012" : [ - "NC_017975" - ], - "Human_parechovirus_3_BONN_2" : [ - "JX826607" - ], - "Camponotus_yamaokai_virus_TH_2013a" : [ - "NC_027212" - ], - "Ageratum_yellow_vein_China_betasatellite__G96" : [ - "AJ971261" - ], - "Duck_hepatitis_A_virus_1_HDHV1_JX" : [ - "FJ157173" - ], - "Dengue_virus_3_D3_SG_05K3897DK1_2005" : [ - "EU081207" - ], - "Clostridium_thermocellum_DSM_1313" : [ - "NC_017304" - ], - "Infectious_salmon_anemia_virus__SF83_04" : [ - "AY744395", - "AY744391", - "AY744388" - ], - "Hepatitis_B_virus__E_Mad_030" : [ - "HQ700552" - ], - "Porcine_circovirus_2__HN01" : [ - "JF272498" - ], - "WU_Polyomavirus_GD_WU1268" : [ - "GQ926976" - ], - "Murine_astrovirus_STL_2" : [ - "JX544744" - ], - "Staphylococcus_pseudintermedius_ED99" : [ - "NC_017568" - ], - "Rubella_virus__RVi_Hiroshima_JPN_01_03_1J" : [ - "AB860305" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_TP_P60" : [ - "GU232736" - ], - "Onion_yellow_dwarf_virus__OYDV_Se" : [ - "JX433019" - ], - "Hepatitis_B_virus__FMD124" : [ - "GU332701" - ], - "Hepatitis_B_virus__11_S142" : [ - "EU570075" - ], - "Hepatitis_B_virus__PNF4406" : [ - "KF779322" - ], - "Brucella_phage_S708" : [ - "KC556896" - ], - "Human_immunodeficiency_virus_1__ZM246F_flC5" : [ - "FJ496192" - ], - "Human_papillomavirus_type_67__Qv33023" : [ - "HQ537781" - ], - "Duck_circovirus__D11_JW_025" : [ - "KC851812" - ], - "Human_immunodeficiency_virus_1__740_14" : [ - "KP718915" - ], - "Human_immunodeficiency_virus_1__89072" : [ - "GU595153" - ], - "West_Nile_virus__WNV_1_Culex_BID_V5776_midgut" : [ - "JN183896" - ], - "Human_immunodeficiency_virus_1__CH58E_flA9" : [ - "FJ495941" - ], - "Urochloa_streak_virus__USV_NLag2" : [ - "EU445694" - ], - "Cotton_leaf_curl_Multan_betasatellite_CLCuMVB_Punc_10_Pun_beta_10" : [ - "EU384586" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3679_1" : [ - "KM034558" - ], - "East_African_cassava_mosaic_virus__Uganda_variant___EACMV_UG_K108" : [ - "AJ717528" - ], - "Porcine_circovirus_2__e320_1" : [ - "FJ905467" - ], - "Tomato_leaf_curl_Barka_virus__Tom_73" : [ - "KF260967" - ], - "Chloris_striate_mosaic_virus__AU_1610_2003" : [ - "JQ948056" - ], - "Equus_caballus_papillomavirus_1" : [ - "NC_003748" - ], - "Usutu_virus__Budapest" : [ - "EF206350" - ], - "Human_herpesvirus_2__HSV_2_ZA_BID_G19093_SD66_1995" : [ - "KR135320" - ], - "Enterobacteria_phage_JS10" : [ - "NC_012741" - ], - "Torque_teno_virus_4__Pt_TTV6" : [ - "NC_014069" - ], - "SARS_coronavirus_Sin2774__SIN2774" : [ - "AY283798" - ], - "Human_rhinovirus_A73" : [ - "DQ473492" - ], - "Hepatitis_B_virus__SHB77" : [ - "KJ598743" - ], - "Norovirus_Hu_GII_4_Osaka3_2007_JP_Hu_GII_4_Osaka3_2007_JP" : [ - "AB541323" - ], - "Cauliflower_mosaic_virus__TUR81" : [ - "AB863175" - ], - "Human_immunodeficiency_virus_1___436" : [ - "AB428557" - ], - "Salmonella_phage_Marshall" : [ - "NC_022772" - ], - "Hepatitis_delta_virus__2621_56" : [ - "AY648953" - ], - "Pseudomonas_phage_PAK_P4" : [ - "NC_022986" - ], - "Dengue_virus_2_DENV_2_PR_15DN_1994" : [ - "GQ398271" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1663_2007" : [ - "FJ182031" - ], - "Duck_reovirus_SD_12_SD_12" : [ - "KJ879925", - "KJ879924", - "KJ879933", - "KJ879926", - "KJ879932", - "KJ879929", - "KJ879927", - "KJ879931", - "KJ879928" - ], - "Bluetongue_virus_1_GRE2001_07_Greece_2001" : [ - "AM778438" - ], - "Human_respiratory_syncytial_virus_RSVA_Hep2_lab_USA_629_Q0030_RSV60_2009" : [ - "KF530269" - ], - "Foot_and_mouth_disease_virus___type_SAT_1_SAT1_20_RV_11_37_sat1_20_iso11" : [ - "AY593839" - ], - "Hepatitis_B_virus__C3_8" : [ - "GU815644" - ], - "FTLS_virus__YSC19" : [ - "KF356536", - "KF356524", - "KF356548" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_30_DRC" : [ - "JX458832" - ], - "Human_rhinovirus_A7" : [ - "DQ473503" - ], - "Cucumber_mosaic_virus_satellite_RNA__Sb_WI" : [ - "KC415034" - ], - "Porcine_circovirus_2__ZH" : [ - "KC514980" - ], - "Hepatitis_B_virus__dww1009" : [ - "KC774437" - ], - "Mycobacterium_phage_Ardmore" : [ - "NC_013936" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_93P_095_01_1993" : [ - "KP258713" - ], - "Porcine_circovirus_2__SH1003" : [ - "KF850461" - ], - "Tick_borne_encephalitis_virus_MDJ_03" : [ - "JF316708" - ], - "Bean_common_mosaic_virus__PStV_JX014" : [ - "KJ807813" - ], - "Hepatitis_B_virus__WHJHM1" : [ - "JN257155" - ], - "Malvastrum_yellow_vein_betasatellite__Y197" : [ - "AJ971695" - ], - "Hepatitis_B_virus__MGL22F" : [ - "AB270537" - ], - "Hepatitis_B_virus__1748" : [ - "FJ386578" - ], - "Southern_rice_black_streaked_dwarf_virus__Hue_1" : [ - "KM576872", - "KM576884" - ], - "Spring_viraemia_of_carp_virus__A2" : [ - "DQ491000" - ], - "Porcine_circovirus_2_FJMH0508" : [ - "GU247990" - ], - "Canine_distemper_virus_55L_H" : [ - "AB490670" - ], - "Torque_teno_virus__TTV_HD16j__gbDhDi43_6" : [ - "FR751485" - ], - "Pigeon_paramyxovirus_1_pi_CH_LHLJ_131011" : [ - "KJ607166" - ], - "Tomato_yellow_leaf_curl_Mali_virus_Mali_Cameroon_Gashiga_Pepper1_2007" : [ - "FM212660" - ], - "Hepatitis_B_virus__dxn1087" : [ - "KC774492" - ], - "South_African_cassava_mosaic_virus____ZW" : [ - "AJ575560" - ], - "Hepatitis_B_virus__HB14_0483" : [ - "AB937799" - ], - "Micavibrio_aeruginosavorus_ARL_13" : [ - "NC_016026" - ], - "Duck_circovirus__CD13086" : [ - "KP229376" - ], - "Hepatitis_B_virus__GU927" : [ - "GQ161770" - ], - "Human_poliovirus_2_NIE1118425" : [ - "KJ170551" - ], - "Bacillus_subtilis_RO_NN_1" : [ - "NC_017195" - ], - "Pepper_mottle_virus__248" : [ - "EU586125" - ], - "Mycobacterium_phage_Llij" : [ - "NC_008196" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20140091" : [ - "KR653239" - ], - "Hepatitis_B_virus__DEN5536" : [ - "KF779209" - ], - "Turnip_mosaic_virus__GBR8" : [ - "AB701710" - ], - "Turnip_mosaic_virus__NZ415" : [ - "AB989659" - ], - "Dengue_virus_2__MD1533" : [ - "FM210205" - ], - "Hepatitis_B_virus__WHMNM" : [ - "JN257200" - ], - "Okra_enation_leaf_curl_virus__India_Munthal_EL39_2006___EL39" : [ - "GU112001" - ], - "Hepatitis_B_virus__033_TI_Ngu" : [ - "KF873539" - ], - "Enterococcus_faecalis_V583" : [ - "NC_004670", - "NC_004669", - "NC_004668", - "NC_004671" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5002_brain" : [ - "JF899534" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3953_2008" : [ - "JF937605" - ], - "Escherichia_phage_T5" : [ - "NC_005859" - ], - "Enterovirus_A71__EV71_Hun11_32_2011" : [ - "KJ004552" - ], - "Tomato_leaf_curl_Cameroon_alphasatellite__CM_TOS2D2_To_09___TOS2D2" : [ - "FN675300" - ], - "Hepatitis_E_virus__W2_5" : [ - "JQ655736" - ], - "African_cassava_mosaic_virus__CF_CF185AB_08" : [ - "KJ887811" - ], - "Turnip_mosaic_virus__NSW5" : [ - "KJ936091" - ], - "Hepatitis_B_virus__WHJKF" : [ - "JN257203" - ], - "Usutu_virus_V234" : [ - "KJ438749" - ], - "Small_begomovirus_associated_satellite__Sa39_S301" : [ - "KJ859155" - ], - "Dengue_virus_2__MD1284" : [ - "FM210244" - ], - "Human_adenovirus_21a__LRTI_2" : [ - "KF802426" - ], - "Hepatitis_B_virus__CAR175" : [ - "AM494716" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1989_16_1" : [ - "Z75870" - ], - "Hepatitis_B_virus__F2_6" : [ - "GU815731" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V382_2003" : [ - "EU256066" - ], - "Coxsackievirus_A6_HN421" : [ - "JQ964234" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2912_2006" : [ - "FJ898426" - ], - "Enterococcus_phage_phiFL3B_phiFL3B" : [ - "GQ478087" - ], - "Hepatitis_B_virus__1828" : [ - "FJ386588" - ], - "African_cassava_mosaic_virus__MG_MG624B3_11" : [ - "KJ887741" - ], - "Dengue_virus_3__DENV_3_US_BID_V2100_2000" : [ - "FJ562107" - ], - "Malvastrum_yellow_mosaic_virus_satellite_DNA_beta__Hn38" : [ - "AM236762" - ], - "Hepatitis_B_virus__I48" : [ - "FJ562233" - ], - "Dengue_virus_3__DENV_3_US_BID_V1089_2003" : [ - "EU529702" - ], - "Hepatitis_B_virus__J127" : [ - "GQ377580" - ], - "Tick_borne_encephalitis_virus_IrkutskBR_99_08" : [ - "KP331441" - ], - "Equine_arteritis_virus__S4417" : [ - "GQ903798" - ], - "Potato_virus_Y_NTN_423_3" : [ - "AY884982" - ], - "Cowpox_virus_RatAac09_1" : [ - "KC813501" - ], - "Porcine_circovirus_2_HN" : [ - "EF675244", - "HM038021" - ], - "JC_polyomavirus__AN_1" : [ - "AB092578" - ], - "Human_immunodeficiency_virus_1__06YNRL106sg" : [ - "KC898981" - ], - "Desulfurococcus_kamchatkensis_1221n" : [ - "NC_011766" - ], - "Hepatitis_B_virus__GU893" : [ - "GQ161824" - ], - "Hepatitis_B_virus__I_T52" : [ - "GU456643" - ], - "Junin_mammarenavirus_Candid__1" : [ - "AY819707", - "FJ969442" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US59" : [ - "KJ019112" - ], - "Bovine_leukemia_virus__Australian_isolate" : [ - "BLVGPE" - ], - "Maize_streak_virus__MSV_A_GH_gh57_Pes_2010" : [ - "KJ699351" - ], - "Hepatitis_A_virus_NOR_21" : [ - "AJ299464" - ], - "SARS_coronavirus_ExoN1_SARS_VeroE6_lab_USA_ExoN1_c13P20_2009_c13P20" : [ - "KF514412" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_COL_335733_1978_ID" : [ - "KC344514" - ], - "Human_papillomavirus_type_52__Qv26382" : [ - "HQ537732" - ], - "Maize_streak_virus__MSV_A_ZA_Joz_Riz33_2007" : [ - "HQ693416" - ], - "Human_immunodeficiency_virus_1__PS1044_Day0" : [ - "DQ676872" - ], - "Hepatitis_E_virus_type_3__JE03_1760F_p10_B" : [ - "AB593690" - ], - "Dengue_virus_1__HNRG28226" : [ - "KC692515" - ], - "Hepatitis_B_virus_024" : [ - "AB900104" - ], - "MW_polyomavirus__HB017C" : [ - "KC571700" - ], - "Hepatitis_B_virus_513_2" : [ - "KR013955" - ], - "Hepatitis_B_virus__M13" : [ - "GQ924607" - ], - "GB_virus_C__CHU2727" : [ - "KP710605" - ], - "Escherichia_coli_O7_K1_CE10" : [ - "NC_017650", - "NC_017648", - "NC_017649", - "NC_017647", - "NC_017646" - ], - "Echovirus_E6_Echo6_Henan_116_2008" : [ - "HM185055" - ], - "HBV_genotype_C_C0901190_NT16" : [ - "AB540584" - ], - "Human_mastadenovirus_D_human_DEU_HEIM_00081_1982_56_P56H56F56" : [ - "KF268329" - ], - "Chikungunya_virus_IND_06_AP3" : [ - "EF027134" - ], - "Tomato_yellow_leaf_curl_virus__Jiroft_Iran___TYLCV_OM_IR_Ji31_06" : [ - "GU076441" - ], - "Hamster_polyomavirus__2716" : [ - "JX416852" - ], - "Hepatitis_B_virus__D_NZL_MO59_1984" : [ - "HQ700469" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V65_2003" : [ - "EU256022" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_9__AHEaCV_9_NZ_3131SG_2012" : [ - "NC_026635" - ], - "Cryphonectria_hypovirus_1__EP721" : [ - "DQ861913" - ], - "Hepatitis_B_virus__C_Tonga_T015A" : [ - "HQ700545" - ], - "Hepatitis_B_virus__LDA278" : [ - "KF849716" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_86I_044A_01_1986" : [ - "KJ723467" - ], - "Hepatitis_B_virus__919002" : [ - "JN040761" - ], - "Newcastle_disease_virus__GD09_1" : [ - "HQ717357" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_tc_GBR_2014_Makona_UK1_1" : [ - "KP184503" - ], - "Bluetongue_virus_16__ISA1991_01" : [ - "AJ586690" - ], - "Cucumber_mosaic_virus__LY" : [ - "AF198101", - "AF198103", - "AF198102" - ], - "Cotton_leaf_curl_Gezira_alphasatellite__KSA27_DNA1_2" : [ - "HG530545" - ], - "Enterobacteria_phage_phiX174__SCSC1" : [ - "AF176032" - ], - "Sida_yellow_mosaic_Alagoas_virus__BR_Vsa3_10" : [ - "NC_020255" - ], - "West_Nile_virus__Ast02_2_26" : [ - "DQ377178" - ], - "Cucumber_mosaic_virus_I17F" : [ - "HE793683", - "Y18137", - "HE793684" - ], - "Hepatitis_B_virus__0300" : [ - "JN827417" - ], - "Hepatitis_B_virus_LSH" : [ - "HPBVCG" - ], - "Porcine_circovirus_2__LN_3" : [ - "HM776447" - ], - "Hepatitis_E_virus__JBOAR1_Hyo04" : [ - "AB189070" - ], - "Hepatitis_C_virus_subtype_6j__Th553" : [ - "DQ835769" - ], - "Hepatitis_B_virus__LDA504" : [ - "KF849717" - ], - "Tomato_yellow_leaf_curl_betasatellite__Al_Batinah_2" : [ - "DQ644567" - ], - "Bluetongue_virus_GRE2001_01" : [ - "GQ506450" - ], - "Enterovirus_A120_MAD_2741_11" : [ - "LK021688" - ], - "West_Nile_virus__WNV_1_US_BID_V4604_2003" : [ - "HM488224" - ], - "Human_immunodeficiency_virus_1__99ZALT39" : [ - "EU293447" - ], - "Mumps_virus_Urabe_AM_9_B" : [ - "AB000387" - ], - "Broad_bean_mottle_virus" : [ - "NC_004006", - "NC_004007", - "NC_004008" - ], - "West_Nile_virus_Greece_2013_Kavala_2" : [ - "KJ883348" - ], - "Nilaparvata_lugens_honeydew_virus_2__Izumo" : [ - "NC_021566" - ], - "Human_immunodeficiency_virus_1__CANC5FULL" : [ - "AY779561" - ], - "Brachyspira_pilosicoli_WesB" : [ - "NC_018604" - ], - "Human_parainfluenza_virus_3_HPIV3_AUS_5_2007" : [ - "KF530251" - ], - "Solanum_mosaic_Bolivia_virus__AR_Cba_Monte_Cristo_Tom92_05" : [ - "KJ592721" - ], - "Powassan_virus_NFS001_DTVMa96" : [ - "HM440559" - ], - "Beak_and_feather_disease_virus__AFG4_ZA" : [ - "AY450435" - ], - "Human_papillomavirus_type_6__26" : [ - "HG793834" - ], - "JC_polyomavirus__IT_5" : [ - "AB048568" - ], - "Grapevine_leafroll_associated_virus_3__GH24" : [ - "KM058745" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir_T1X_Cuc_07" : [ - "FJ660440" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4068_2008" : [ - "GU131817" - ], - "Flexal_mammarenavirus_BeAn_293022" : [ - "NC_010757", - "NC_010759" - ], - "Simian_virus_40__SV40_Ad_211" : [ - "EF579660" - ], - "Hepatitis_B_virus__F2NK_F" : [ - "AB471851" - ], - "Torque_teno_virus_16__TUS01" : [ - "NC_014091" - ], - "African_cassava_mosaic_virus__CF_CF345BE_08" : [ - "KJ887629" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3734_2007" : [ - "GQ868525" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0161" : [ - "KP759701" - ], - "Human_coronavirus_OC43_OC43_human_USA_9612_29_1996" : [ - "KF530078" - ], - "Human_poliovirus_2_W_2" : [ - "POL2CG1" - ], - "Rice_black_streaked_dwarf_virus__zhjr" : [ - "AY050487", - "AY050489" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3749_2008" : [ - "GQ868532" - ], - "Tomato_severe_rugose_virus__Pi_1" : [ - "HQ606467", - "HQ606468" - ], - "Classical_swine_fever_virus_Paderborn" : [ - "GQ902941" - ], - "Hepatitis_B_virus_497_11" : [ - "KR013945" - ], - "SARS_coronavirus_PC4_136" : [ - "AY613949" - ], - "Tobacco_necrosis_virus_D_D_Rothamsted__U_K" : [ - "TNSDNSC" - ], - "Human_immunodeficiency_virus_1__2139" : [ - "KC156210" - ], - "Sweet_potato_leaf_curl_Spain_virus__SPLCESV_BA_BR_Uti_08" : [ - "HQ393448" - ], - "Bacillus_phage_0305phi8_36" : [ - "NC_009760" - ], - "Hepatitis_B_virus__dxn1051" : [ - "KC774484" - ], - "Digitaria_ciliaris_striate_mosaic_virus__AU_QG6_2011" : [ - "JQ948089" - ], - "BK_polyomavirus__SHA_23" : [ - "AB365165" - ], - "Shigella_phage_Shf125875" : [ - "NC_025437" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GD" : [ - "EU825724", - "EU109503", - "GU143913" - ], - "Hepatitis_B_virus__M_4" : [ - "KF425556" - ], - "Hepatitis_E_virus__47832c" : [ - "KC618403" - ], - "Bat_hepatitis_virus__776" : [ - "NC_020881" - ], - "Lactoccocus_phage_WP_2__WP_2" : [ - "NC_024149" - ], - "Escherichia_phage_PhaxI" : [ - "NC_019452" - ], - "Porcine_kobuvirus_SH_W_CHN_2010_China__SH_W_CHN_2010_China" : [ - "NC_016769" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0023" : [ - "KP759652" - ], - "SARS_coronavirus_Sin845" : [ - "AY559093" - ], - "Porcine_circovirus_2_09HaiN1" : [ - "HQ395030" - ], - "East_African_cassava_mosaic_virus__CF_CF1223B_07" : [ - "KM886003" - ], - "Hepatitis_B_virus__Ag11" : [ - "KJ843173" - ], - "Porcine_circovirus_2_10GD" : [ - "HQ395054" - ], - "West_Nile_virus__WNV_1_Mus_BID_V4730_spleen" : [ - "HQ671669" - ], - "Maize_streak_virus__MSV_A_MZ_Pem6_Moz42_2007" : [ - "FJ882100" - ], - "Hepatitis_B_virus__H6" : [ - "FJ349226" - ], - "Human_immunodeficiency_virus_1__WEAU_flE1" : [ - "FJ496159" - ], - "Hepatitis_B_virus__A79a" : [ - "FJ904424" - ], - "Passionfruit_severe_leaf_distortion_virus__BR_LNS2_Pas_01" : [ - "NC_012786", - "NC_012787" - ], - "Hepatitis_B_virus__HBV83" : [ - "KC875328" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD210_2013" : [ - "KM229860" - ], - "Apple_chlorotic_leaf_spot_virus" : [ - "NC_001409" - ], - "Norovirus_Hu_GII_4_Miyazaki2_2008_JP_Hu_GII_4_Miyazaki2_2008_JP" : [ - "AB541291" - ], - "Coxsackievirus_A6__12743_GZ_CHN_2013" : [ - "KR815992" - ], - "Hepatitis_B_virus_UZNVC7_UZNVC7" : [ - "AB222714" - ], - "Campoletis_sonorensis_ichnovirus_Texas_A_M" : [ - "NC_007987", - "NC_007998", - "NC_007993", - "NC_007996", - "NC_007989", - "NC_008008", - "NC_007986", - "NC_008000", - "NC_008005", - "NC_008003", - "NC_008002", - "NC_007991", - "NC_007994", - "NC_007997", - "NC_007999", - "NC_008004", - "NC_007995", - "NC_007985", - "NC_008006", - "NC_007988", - "NC_008001", - "NC_007990", - "NC_007992" - ], - "Bat_SARS_coronavirus_HKU3_11_HKU3_11" : [ - "GQ153546" - ], - "Cucumber_mosaic_virus_satellite_RNA_CA8" : [ - "AF172648" - ], - "Chicken_anemia_virus__SH11" : [ - "DQ141670" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2917_2006" : [ - "FJ898430" - ], - "Human_metapneumovirus_HMPV_USA_C2_175_2005_B" : [ - "KC562219" - ], - "Human_papillomavirus_type_6__98" : [ - "HG793906" - ], - "Dengue_virus_3__DENV_3_US_BID_V1604_2004" : [ - "FJ182004" - ], - "Tursiops_truncatus_papillomavirus_6_Tt08_305" : [ - "JN709471" - ], - "Hepatitis_B_virus_4625_97" : [ - "EU594390" - ], - "Cauliflower_mosaic_virus__JPNUV1" : [ - "AB863164" - ], - "Macacine_herpesvirus_3__CMV_180_92" : [ - "DQ120516" - ], - "Human_poliovirus_1_NIE1018326" : [ - "KJ170504" - ], - "Human_immunodeficiency_virus_1__11MY1EP794" : [ - "KC522034" - ], - "Caulobacter_phage_phiCb5_phiCb5" : [ - "NC_019453" - ], - "Melon_necrotic_spot_virus__N" : [ - "KF060715" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C42" : [ - "KJ019026" - ], - "Chicken_picornavirus_2__44C" : [ - "NC_024766" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLI1310_2010" : [ - "KJ627328" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__GS2003" : [ - "EU880442" - ], - "Porcine_circovirus_2_Yuanyang" : [ - "EU521709" - ], - "Hepatitis_B_virus__NH29C_e40" : [ - "KJ173319" - ], - "Junin_mammarenavirus_Cba_IV4454" : [ - "DQ272266" - ], - "Strawberry_lethal_yellows_phytoplasma__CPA__NZSb11" : [ - "NC_021236" - ], - "Jatropha_leaf_crumple_India_virus__J__curcas__Jodhpur___SKJ3" : [ - "KM189819" - ], - "Human_rhinovirus_B35" : [ - "DQ473487" - ], - "BK_polyomavirus__SJH_LG_304" : [ - "JN192435" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2868_2006" : [ - "FJ898404" - ], - "Squash_leaf_curl_virus__JO2_213" : [ - "KM595190" - ], - "Human_rhinovirus_A20_ATCC_VR_1130" : [ - "FJ445120" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V228_2006" : [ - "EU255947" - ], - "Hepatitis_B_virus__S65_2" : [ - "FJ787478" - ], - "JC_polyomavirus__SA_8" : [ - "AB127011" - ], - "Small_begomovirus_associated_satellite__wf_S53" : [ - "KJ859208" - ], - "Porcine_circovirus_2__DK1996PMWSfree" : [ - "EU148507" - ], - "Hepatitis_B_virus__MY836190" : [ - "KJ803770" - ], - "Maize_streak_virus___Reunion__N2AR8___N2A" : [ - "AJ225006" - ], - "Simian_pegivirus__VGA00020" : [ - "KP296858" - ], - "Human_papillomavirus_type_114" : [ - "GQ244463" - ], - "JC_polyomavirus__JCV149URNFL_13" : [ - "JF424834" - ], - "Human_herpesvirus_3_YC02" : [ - "KJ767492" - ], - "Merkel_cell_polyomavirus_OcepolW1" : [ - "KF266964" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_MEX_MX03_H1_2003_IE" : [ - "KC344482" - ], - "Squash_leaf_curl_virus__IL3_103" : [ - "KM595126" - ], - "BK_polyomavirus__SHA_72" : [ - "AB365177" - ], - "Hepatitis_B_virus__753_CW_BRA" : [ - "KJ854706" - ], - "Circovirus_like_genome_CB_B_CB_B" : [ - "NC_013029" - ], - "Dengue_virus_1__DENV_1_VN_BID_V826_2006" : [ - "EU482820" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7073_2008" : [ - "KJ189288" - ], - "Hepatitis_B_virus__EN45_LC" : [ - "JN664937" - ], - "Staphylococcus_aureus_6850" : [ - "NC_022222" - ], - "Hepatitis_B_virus__C122" : [ - "EU939630", - "EU859940" - ], - "Cronobacter_phage_vB_CsaM_GAP31" : [ - "NC_019400" - ], - "Roseiflexus_RS_1" : [ - "NC_009523" - ], - "Eastern_equine_encephalitis_virus_EEEV_Anopheles_USA_90_31786_1994" : [ - "KJ469616" - ], - "Youcai_mosaic_virus__Impatiens" : [ - "DQ223770" - ], - "Vibrio_phage_VFJ" : [ - "NC_021562" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3838_2" : [ - "KR105200" - ], - "Hepatitis_B_virus__JPN_Bj_A44" : [ - "AB287326" - ], - "Fenneropenaeus_chinensis_hepandensovirus_HB" : [ - "NC_014357" - ], - "Enterovirus_A71__Hubei_WH_CHN_2012" : [ - "KP198623" - ], - "Hepatitis_C_virus_subtype_1a__DN12" : [ - "EU781814" - ], - "SFTS_virus_HNXY_115_HNXY_115" : [ - "KC292338", - "KC292285", - "KC292312" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLU8889_2007" : [ - "KJ672604" - ], - "Hepatitis_B_virus__T2320_IC" : [ - "JN664919" - ], - "Hepatitis_B_virus__Srb_200" : [ - "JQ687530" - ], - "Human_immunodeficiency_virus_1__A32879" : [ - "AF408629" - ], - "Human_papillomavirus_type_31__QV03136" : [ - "HQ537682" - ], - "Porcine_circovirus_2_ZJ0955b" : [ - "GU450329" - ], - "Hepatitis_B_virus__M88" : [ - "GQ924651" - ], - "Sugarcane_mosaic_virus__SCMV_SD" : [ - "AY149118" - ], - "Duck_Tembusu_virus__xz_2012" : [ - "KM188953" - ], - "Actinomyces_phage_Av_1" : [ - "NC_009643" - ], - "Tomato_yellow_leaf_curl_virus_HNZM" : [ - "JN990926" - ], - "Squash_leaf_curl_virus__IL2_50" : [ - "KM595108" - ], - "Hepatitis_B_virus__H2072_03" : [ - "FJ882611" - ], - "Sorghum_mosaic_virus__Xiaoshan" : [ - "NC_004035" - ], - "Dengue_virus_2__VNHCM18_C_02" : [ - "AB479041" - ], - "Dengue_virus_1_D1_SG_05K3300DK1_2005" : [ - "EU081237" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0054" : [ - "KP759722" - ], - "Enterobacteria_phage_phiX174_beta1" : [ - "HM775308" - ], - "Avian_leukosis_virus_subgroup_J__PDRC_59831" : [ - "KP284572" - ], - "SARS_coronavirus_HSZ_Bb__HSZ_Bb" : [ - "AY394985" - ], - "Human_poliovirus_1_NIE1018356" : [ - "KJ170529" - ], - "Pepper_huasteco_yellow_vein_virus__Guanajuato2" : [ - "GU128151" - ], - "Human_immunodeficiency_virus_1__Fj061" : [ - "EF036536" - ], - "Human_adenovirus_52__T03_2244" : [ - "DQ923122" - ], - "Enhydra_lutris_papillomavirus_1__6898_13" : [ - "NC_023873" - ], - "Hepatitis_B_virus__ECO50003LIP3" : [ - "JQ664502" - ], - "Hepatitis_delta_virus_Taiwan" : [ - "HPDHDAG" - ], - "JC_polyomavirus_type_3___312_African_American_individual" : [ - "JVU73502" - ], - "Tobacco_curly_shoot_virus__Y41" : [ - "NC_003722" - ], - "Bromus_associated_circular_DNA_virus_1__BasCV_1_NZ_NZG03_Wel_2012" : [ - "KM510190" - ], - "Porcine_circovirus_2__C7189" : [ - "FJ905471" - ], - "Porcine_deltacoronavirus__CHN_AH_2004" : [ - "KP757890" - ], - "Human_immunodeficiency_virus_1__UG275" : [ - "AB485632" - ], - "Corynebacterium_diphtheriae_HC02" : [ - "NC_016802" - ], - "Enterovirus_A71_Shanghai_036_2009" : [ - "FJ713137" - ], - "Hepatitis_B_virus__cxa1060" : [ - "KC774282" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_90_2012" : [ - "KM042383" - ], - "Burkholderia_pseudomallei_MSHR346" : [ - "NC_012695" - ], - "Turnip_mosaic_virus__OMA" : [ - "AB701691" - ], - "Southern_bean_mosaic_virus_SBMV_B_ARK__Arkansas" : [ - "AF055887" - ], - "Maize_streak_virus__MSV_A_ZA_Let5_M46K_1989" : [ - "HQ693419" - ], - "Salmonella_phage_FSL_SP_031" : [ - "NC_021775" - ], - "Human_parvovirus_B19__J35" : [ - "NC_000883" - ], - "Bean_common_mosaic_virus__HZZB012" : [ - "KJ807816" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FPP00726_2011_A" : [ - "KJ627437" - ], - "Small_begomovirus_associated_satellite__Sa27_S101" : [ - "KJ859148" - ], - "Hepatitis_B_virus__SHB47" : [ - "KJ598685" - ], - "Measles_virus_MVi_Tokyo_JPN_37_99_Y___MV99Y" : [ - "GQ376026" - ], - "Hepatitis_B_virus_2928Nic" : [ - "AY090457" - ], - "Wheat_yellow_mosaic_virus__Zhumadian" : [ - "FJ361769", - "FJ361766" - ], - "Dengue_virus_2__DENV_2_US_BID_V4825_2010" : [ - "HQ541799" - ], - "Hepatitis_B_virus_PttHBV_PttHBV_ChBassi" : [ - "AB046525" - ], - "Vibrio_phage_pVp_1" : [ - "NC_019529" - ], - "Human_immunodeficiency_virus_1__SE7812" : [ - "AF107770" - ], - "Rabies_virus__SM5440" : [ - "JQ685969" - ], - "Hepatitis_B_virus__BA45" : [ - "DQ823095" - ], - "Hepatitis_B_virus__patient_8T" : [ - "EU522073", - "EU522075", - "EU522074" - ], - "Beak_and_feather_disease_virus__BFDV3" : [ - "GU015014" - ], - "Torque_teno_mini_virus_4__Pt_TTV8_II" : [ - "NC_014090" - ], - "Grapevine_leafroll_associated_virus_3__GH30" : [ - "JQ655296" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2897_2006" : [ - "GQ199853" - ], - "Hepatitis_B_virus_C0715697_TNT_F" : [ - "AP011101" - ], - "Hepatitis_B_virus__A6_2" : [ - "AY217355" - ], - "Papaya_leaf_curl_China_virus__G7" : [ - "AJ811439" - ], - "Tobacco_leaf_curl_Yunnan_virus_satellite_DNA_beta__Y143_33" : [ - "AJ536622" - ], - "West_Nile_virus__Ast02_2_25" : [ - "DQ374653" - ], - "Banana_streak_UI_virus" : [ - "NC_015503" - ], - "Hepatitis_E_virus_FR_SHEV3f" : [ - "JQ953666" - ], - "Cronobacter_sakazakii_Sp291" : [ - "NC_020261", - "NC_020263", - "NC_020262", - "NC_020260" - ], - "Hepatitis_B_virus__N09_C_3733B" : [ - "KJ173402" - ], - "Dengue_virus_2_S16803" : [ - "GU289914" - ], - "Porcine_circovirus_2__DZ1" : [ - "KC514983" - ], - "Acidianus_filamentous_virus_9" : [ - "NC_010537" - ], - "Human_herpesvirus_5_BE_11_2012" : [ - "KP745680" - ], - "Foot_and_mouth_disease_virus___type_A_A24_Argentina_a24_argentina_iso9" : [ - "AY593767" - ], - "Hepatitis_B_virus__595" : [ - "AY217374" - ], - "East_African_cassava_mosaic_virus__EACMV_UG_UG_Nam_CMD_MI13_12" : [ - "HE979769" - ], - "Porcine_circovirus_2__PMWS_PCV_P3" : [ - "AY099497" - ], - "Hepatitis_B_virus_362_1" : [ - "KR013911", - "KR013777" - ], - "Tick_borne_encephalitis_virus" : [ - "NC_001672" - ], - "Bifidobacterium_longum_KACC_91563" : [ - "NC_017220", - "NC_017221", - "NC_017222" - ], - "Porcine_circovirus_2_GX0847" : [ - "GQ359005" - ], - "Human_metapneumovirus_TN99_419" : [ - "JN184402" - ], - "Dengue_virus_2_DENV_2_PR_29DN_1994" : [ - "GQ398291" - ], - "Ageratum_enation_virus__TC357" : [ - "JX436472" - ], - "Hepatitis_B_virus__C_Tonga_JN1142_2004" : [ - "HQ700566" - ], - "Edwardsiella_phage_KF_1" : [ - "NC_019420" - ], - "Rabies_virus__A10_0514" : [ - "JQ685938" - ], - "Maize_streak_virus__MSV_A_ZA_Hec5_O17_1989" : [ - "FJ882113" - ], - "Newcastle_disease_virus__CBU2249" : [ - "JX401403" - ], - "Cell_fusing_agent_virus_Galveston" : [ - "KJ741267" - ], - "Cucumber_mosaic_virus_satellite_RNA__N1_03_satRNA" : [ - "JF918973" - ], - "Mannheimia_haemolytica_D153" : [ - "NC_021743" - ], - "Cauliflower_mosaic_virus__IRNRE15" : [ - "JX912265" - ], - "Hepatitis_B_virus__HBV20" : [ - "KC875280" - ], - "Human_immunodeficiency_virus_1__04CA7750" : [ - "EU220698" - ], - "Tobacco_vein_banding_mosaic_virus__PY" : [ - "JN630469" - ], - "Dengue_virus_3__DENV_3_US_BID_V1620_2005" : [ - "FJ182010" - ], - "Hepatitis_B_virus_951_1a" : [ - "KR013823" - ], - "Tomato_leaf_curl_Sudan_virus__Tih_tom1_05" : [ - "JF919731" - ], - "Hepatitis_B_virus__HK_1324" : [ - "KJ410495" - ], - "Prochlorococcus_phage_P_SSP10_P_SSP10" : [ - "NC_020835" - ], - "Tortoise_picornavirus_2013_T4" : [ - "KM873615" - ], - "Cotton_leaf_curl_Burewala_virus__C_32" : [ - "HF549181" - ], - "Cucumber_mosaic_virus_KO" : [ - "KM272275", - "KM272278", - "KM272277" - ], - "Porcine_circovirus_2__SLS12" : [ - "KJ680365" - ], - "Norovirus_Hu_GII_4_Kumamoto3_2007_JP_Hu_GII_4_Kumamoto3_2007_JP" : [ - "AB541279" - ], - "Rotavirus_A__RVA_Human_wt_DEN_L22827681_2011_G9P_8" : [ - "KP013459" - ], - "Beet_black_scorch_virus__Xinjiang_variant_m163" : [ - "JN635328" - ], - "Porcine_circovirus_2__S08_1638_2_1" : [ - "JX512858" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2873_2006" : [ - "FJ898406" - ], - "JC_polyomavirus__JCV161FLC_30" : [ - "JF424937" - ], - "Hepatitis_C_virus_subtype_1b__No__24" : [ - "AB154199" - ], - "Hepatitis_B_virus__CONTROL2" : [ - "JQ801495" - ], - "Hepatitis_B_virus__Cuba34" : [ - "KM606747" - ], - "Hepatitis_B_virus__163" : [ - "AY233275" - ], - "Dengue_virus_3__98TW390" : [ - "DQ675527" - ], - "Rose_leaf_curl_betasatellite__AS23" : [ - "NC_024695" - ], - "Tomato_leaf_curl_Yemen_betasatellite__Had_tob63_89" : [ - "JF919719" - ], - "Roseobacter_phage_SIO1_os" : [ - "FJ867913" - ], - "Pea_early_browning_virus_British__SP5_isolate" : [ - "NC_001368" - ], - "Rabies_virus__SM4871" : [ - "JQ685923" - ], - "Beak_and_feather_disease_virus__BFDV_I_PL_149_2005" : [ - "JX221014" - ], - "Helicobacter_acinonychis_Sheeba" : [ - "NC_008229", - "NC_008230" - ], - "Porcine_circovirus_2__15_23R" : [ - "DQ923524" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7059_2007" : [ - "KJ189275" - ], - "Bacillus_amyloliquefaciens_plantarum_NAU_B3" : [ - "NC_022531", - "NC_022530" - ], - "Human_immunodeficiency_virus_1__Fj066" : [ - "EF036535" - ], - "Human_metapneumovirus_HMPV_USA_C1_334_2004_B" : [ - "KC562242" - ], - "Hepatitis_A_virus__BaliA03_H29" : [ - "AB839692" - ], - "Hepatitis_B_virus__bne127" : [ - "FN594767" - ], - "Okra_enation_leaf_curl_virus__Pakistan_cotton_Burewala_2011" : [ - "HF567945" - ], - "Human_bocavirus_JPOC06_007" : [ - "AB481071" - ], - "Staphylococcus_phage_CNPH82_CNPH82" : [ - "NC_008722" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9454_2013" : [ - "KJ643524" - ], - "Tomato_chlorosis_virus__Florida" : [ - "NC_007340", - "NC_007341" - ], - "Chikungunya_virus_Com25" : [ - "HQ456251" - ], - "Hepatitis_B_virus__SLC1A2" : [ - "KJ598764" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_45_2013" : [ - "KJ672442" - ], - "Lactococcus_Phage_ASCC502" : [ - "JQ740809" - ], - "Streptomyces_phage_Zemlya" : [ - "NC_021339" - ], - "Barley_dwarf_virus__ES2BDV" : [ - "HF968642", - "HF968643", - "HF968641" - ], - "Hepatitis_C_virus__6_VN214" : [ - "KJ567647" - ], - "Dengue_virus_2__DENV_2_VN_BID_V998_2006" : [ - "EU482542" - ], - "Hepatitis_B_virus__MY571290" : [ - "KJ803808" - ], - "Measles_virus__MVs_Zagreb_CRO_47_02__D6__SSPE" : [ - "DQ227318" - ], - "Mulberry_mosaic_dwarf_associated_virus__AK1_4" : [ - "KP699129" - ], - "Dengue_virus_1__DENV_1_NI_BID_V7659_2011" : [ - "KF973459" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__1008" : [ - "KF444097" - ], - "Murray_Valley_encephalitis_virus_OR156_OR156_CD8" : [ - "KC852196" - ], - "Hepatitis_B_virus__HBV_BL597" : [ - "AB214516" - ], - "Beak_and_feather_disease_virus__BFDV_B_B_PL_1248_2011" : [ - "JX221010" - ], - "West_Nile_virus__WNV_1_US_BID_V4230_2006" : [ - "HM488156" - ], - "Salmonella_enterica_serovar_Typhimurium_SL1344" : [ - "NC_017719", - "NC_017720", - "NC_017718", - "NC_016810" - ], - "Hepatitis_B_virus__Ag03" : [ - "KJ843165" - ], - "Porcine_circovirus_2__Mal005_11_Penang" : [ - "JF690914" - ], - "Enterovirus_A71_Luoyang_2011" : [ - "JN020147" - ], - "Aurantiochytrium_single_stranded_RNA_virus_01" : [ - "NC_007522" - ], - "Listeria_monocytogenes_J1_220" : [ - "NC_021830" - ], - "Enterobacteria_phage_phiX174__30B90" : [ - "EF380017" - ], - "Salmonella_phage_Jersey" : [ - "NC_021777" - ], - "Israel_turkey_meningoencephalomyelitis_virus__Israel_107458_2010" : [ - "KC734551" - ], - "Staphylococcus_aureus_MW2" : [ - "NC_003923" - ], - "Tick_borne_encephalitis_virus_Buzuuchuk" : [ - "KJ626343" - ], - "Okra_enation_leaf_curl_virus__India_Munthal_EL38_2006___EL38" : [ - "GU112002" - ], - "Dengue_virus_2__DENV_2_US_BID_V1467_2001" : [ - "EU687227" - ], - "Hepatitis_B_virus__FEN42" : [ - "JF440001" - ], - "Tobacco_ringspot_virus" : [ - "JQ670669", - "NC_005096" - ], - "Maize_streak_virus__MSV_A_ZM_Chi11_Z20_2008" : [ - "HQ693452" - ], - "Dendrolimus_punctatus_cypovirus_1" : [ - "AY163247", - "AY211092", - "AY147187", - "AF542082", - "AY211091", - "AY163249", - "AY211093", - "AY167578", - "AY211094", - "AY185594", - "AY310312", - "AY265416", - "AY163248", - "AY248699", - "AY210893" - ], - "Wheat_dwarf_virus__Winter_wheat_121" : [ - "KJ473705" - ], - "African_cassava_mosaic_virus__MG_MG40A2_06" : [ - "KJ887856" - ], - "African_horse_sickness_virus__HS_73_08" : [ - "KP009641", - "KP009649", - "KP009645", - "KP009646", - "KP009648", - "KP009644", - "KP009643", - "KP009650", - "KP009647" - ], - "JC_polyomavirus__332A" : [ - "AY382186" - ], - "Cucumber_mosaic_virus_satellite_RNA_PoSA2" : [ - "AB448700" - ], - "TTV_like_mini_virus__TLMV_CLC138" : [ - "AB038626" - ], - "Rift_Valley_fever_virus_2269_74" : [ - "DQ380173", - "DQ375434", - "DQ380222" - ], - "Watermelon_chlorotic_stunt_virus__IL2_115" : [ - "KM820255" - ], - "Rice_stripe_virus__FMi04" : [ - "AJ875057", - "AJ871752" - ], - "Sweet_potato_badnavirus_A__Huachano1" : [ - "NC_015655" - ], - "Staphylococcus_carnosus_TM300" : [ - "NC_012121" - ], - "Human_immunodeficiency_virus_1__1189MB" : [ - "AY838565" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mosquito_VEN_204381_1973_ID" : [ - "KC344512" - ], - "Bacillus_subtilis_spizizenii_W23" : [ - "NC_014479" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1786_2007" : [ - "FJ432731" - ], - "Hepatitis_B_virus__HK931" : [ - "DQ089803" - ], - "Hepatitis_B_virus__D4_50053" : [ - "FJ692532" - ], - "Tomato_leaf_curl_Palampur_virus__IR_Jir8_T58P_Cuc_08" : [ - "FJ660431" - ], - "Norovirus_Hu_GII_4_Toyama1_2006_JP_Hu_GII_4_Toyama1_2006_JP" : [ - "AB447443" - ], - "Dengue_virus_2__DC641Y12" : [ - "KM279539" - ], - "Pea_early_browning_virus_British_SP5" : [ - "NC_002036" - ], - "Human_herpesvirus_5_BE_44_2011" : [ - "KP745715" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL035A" : [ - "AB817986", - "AB817994", - "AB818002" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7586_2007" : [ - "KJ189320" - ], - "Tomato_mild_mosaic_virus__BR_Vic7_10" : [ - "JX871375" - ], - "Thermoanaerobacter_italicus_Ab9" : [ - "NC_013921" - ], - "Human_rotavirus_A_1265_stool" : [ - "AJ236785" - ], - "Beet_curly_top_Iran_virus__IR_Toro_1B_Sug_10" : [ - "JX945569" - ], - "Foot_and_mouth_disease_virus___type_O__TUR_27_2011" : [ - "JX040500" - ], - "Siegesbeckia_yellow_vein_virus__GD13" : [ - "NC_008236" - ], - "Bluetongue_virus_24__South_Africa_ref" : [ - "AJ585145" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2687_2006" : [ - "GQ199771" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3984_2008" : [ - "GU131757" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3750_3" : [ - "KM233060" - ], - "Squash_leaf_curl_virus__JO2_26" : [ - "KM595179" - ], - "Tomato_yellow_leaf_curl_virus_HBRY" : [ - "JQ004047" - ], - "Hepatitis_B_virus__T1234" : [ - "GQ205379" - ], - "Hepatitis_B_virus__919048" : [ - "JN040811" - ], - "Beet_soil_borne_mosaic_virus__MRM06" : [ - "EU410955", - "JF513082", - "JF513083", - "FJ424610" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2734_2007" : [ - "JF937596" - ], - "African_cassava_mosaic_virus__MG_MG60A2_06" : [ - "KJ887879" - ], - "Tobacco_curly_shoot_virus__Y_T8" : [ - "HG003650" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1789_2007" : [ - "FJ410196" - ], - "Eastern_equine_encephalitis_virus_EEEV_Equus_ferus_caballus_USA_EasternNJ1933_1933" : [ - "KJ469600" - ], - "Sapelovirus_A_YC2011" : [ - "JX286666" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V152_2003" : [ - "EU155224" - ], - "Chikungunya_virus__025" : [ - "KP164869" - ], - "Ralstonia_phage_RS603" : [ - "NC_025454" - ], - "Simian_immunodeficiency_virus_SIVsun" : [ - "AF131870" - ], - "West_Nile_virus__AVA1204580" : [ - "KC736499" - ], - "Lettuce_chlorosis_virus__California" : [ - "NC_012910", - "NC_012909" - ], - "Porcine_circovirus_2_MN_R13" : [ - "EF452351" - ], - "Dengue_virus_1_Singapore_8114_93" : [ - "AY762084" - ], - "Euphorbia_yellow_mosaic_virus__BR_Flo166_08" : [ - "KC706530" - ], - "Mycobacterium_leprae_Br4923" : [ - "NC_011896" - ], - "Porcine_circovirus_2__DF06" : [ - "FJ644924" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_120403" : [ - "KJ425492" - ], - "Rabbit_hemorrhagic_disease_virus_AST89__AST_89" : [ - "Z49271" - ], - "Pyrococcus_horikoshii_OT3" : [ - "NC_000961" - ], - "East_African_cassava_mosaic_Kenya_virus__Comoros_Grande_Comore_GC11B32_2008" : [ - "JF909088" - ], - "Hepatitis_B_virus__S1055" : [ - "FJ386676" - ], - "Mycobacterium_phage_Wile_Wile" : [ - "NC_023709" - ], - "Chlamydia_trachomatis_A_363" : [ - "NC_019272", - "NC_020966" - ], - "Hepatitis_delta_virus__6" : [ - "HQ005366" - ], - "Verminephrobacter_eiseniae_EF01_2" : [ - "NC_008786", - "NC_008771" - ], - "Rabies_virus__BR_Pfx3" : [ - "AB517660" - ], - "Beak_and_feather_disease_virus__BFDV_NZ_CN_B84b_2008" : [ - "GQ396652" - ], - "Lactococcus_phage_phismq86" : [ - "DQ394810" - ], - "Norovirus_Hu_GII_4_CGMH12_2007_TW" : [ - "JN400610" - ], - "East_African_cassava_mosaic_virus__CF_CF150BE_07" : [ - "KM886002" - ], - "Human_papillomavirus_type_45__Z79" : [ - "KC470250" - ], - "Cotton_leaf_curl_Multan_betasatellite__Dar_Beta_1" : [ - "EU384605" - ], - "West_Nile_virus__WNV_1_US_BID_V6426_2003" : [ - "KJ501456" - ], - "Pseudomonas_phage_LBL3" : [ - "NC_011165" - ], - "Rotavirus_A_RVA_Human_wt_USA_VU05_06_66_2005_G2P_4" : [ - "KC442988" - ], - "Hepatitis_B_virus__PNF4350" : [ - "KF779320" - ], - "Pea_enation_mosaic_virus_satellite_RNA_WSG" : [ - "NC_003854" - ], - "Candidatus_Blochmannia_chromaiodes_640" : [ - "NC_020075" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2461_2007" : [ - "FJ850100" - ], - "West_Nile_virus__WNV_1_US_BID_V7428_2011" : [ - "KJ501138" - ], - "Hepatitis_B_virus__dxn1023" : [ - "KC774473" - ], - "Echovirus_E6_Echo6_Hokkaido_JPN_19722_2011" : [ - "AB705309" - ], - "Norovirus_Hu_GII_4_Miyazaki5_2007_JP_Hu_GII_4_Miyazaki5_2007_JP" : [ - "AB541296" - ], - "Newcastle_disease_virus_NDV08_046" : [ - "HQ412767" - ], - "Fragaria_chiloensis_latent_virus" : [ - "NC_006566" - ], - "Bluetongue_virus_3__8231" : [ - "JX272598" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20143716" : [ - "KR653292" - ], - "Hepatitis_C_virus_subtype_1b__DN16" : [ - "EU781830" - ], - "Garlic_virus_A__SW3_1A" : [ - "JQ899444" - ], - "Human_immunodeficiency_virus_1__SUMA_flC7" : [ - "FJ496146" - ], - "Hepatitis_B_virus__WHRJB" : [ - "JN257152" - ], - "Feline_kobuvirus__12D240" : [ - "KJ958930" - ], - "West_Nile_virus__WNV_1_US_BID_V6477_2002" : [ - "KJ501479" - ], - "Human_papillomavirus_type_97__624" : [ - "EF436229" - ], - "Human_immunodeficiency_virus_1__R140" : [ - "AY536237" - ], - "Hepatitis_B_virus__SamsunD83" : [ - "AB674408" - ], - "Dengue_virus_2__DENV_2_VE_BID_V3366_1987" : [ - "GQ868599" - ], - "Enterovirus_A71__EV71_Hun12_14_2012" : [ - "KJ004554" - ], - "Equine_infectious_anemia_virus_DLV_DLV2_6" : [ - "HM141920" - ], - "JC_polyomavirus__MO_11" : [ - "AB048582" - ], - "Canine_papillomavirus_11" : [ - "JF800658" - ], - "Porcine_circovirus_2_QZ0401" : [ - "AY691169" - ], - "Cauliflower_mosaic_virus__GRC92A" : [ - "AB863200" - ], - "Maize_streak_virus__UKib_179" : [ - "EF547096" - ], - "Dengue_virus_1_Singapore_S275_90" : [ - "DENT1SEQ" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V28_2003" : [ - "EU482873" - ], - "Anatid_herpesvirus_1_2085" : [ - "JF999965" - ], - "Dengue_virus_3__DENV_3_PE_BID_V6159_2004" : [ - "KJ189257" - ], - "South_African_cassava_mosaic_virus__MG_MG138B1_09" : [ - "KJ887931" - ], - "Human_parainfluenza_virus_3_JS" : [ - "HPU51116", - "Z11575" - ], - "SARS_coronavirus_civet010__civet010" : [ - "AY572035" - ], - "Human_immunodeficiency_virus_1__02ZM110" : [ - "AB254142" - ], - "Hepatitis_C_virus_subtype_1a__L8133" : [ - "EU781766" - ], - "Synechococcus_phage_ACG_2014d__Syn7803US78" : [ - "KJ019121" - ], - "Thermoanaerobacter_wiegelii_Rt8_B1" : [ - "NC_015958" - ], - "Legionella_pneumophila_Lens" : [ - "NC_006366", - "NC_006369" - ], - "Middle_East_respiratory_syndrome_coronavirus__Hu_France__UAE____FRA1_1627_2013_BAL_Sanger" : [ - "KJ361500" - ], - "Human_papillomavirus_type_120__CL3805" : [ - "JQ963485" - ], - "Rocio_virus_SPH_34675" : [ - "AY632542" - ], - "Human_poliovirus_3" : [ - "POL3L37", - "X00925", - "X00596" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_07_2012" : [ - "KJ672468" - ], - "Tai_Forest_ebolavirus__Tai_Forest_virus_H_sapiens_tc_CIV_1994_Pauleoula_CI" : [ - "NC_014372" - ], - "Hepatitis_B_virus__J256" : [ - "GQ377642" - ], - "South_African_cassava_mosaic_virus__MG_MG491A1_11" : [ - "KJ887726" - ], - "Porcine_circovirus_2__ly5" : [ - "EU274312" - ], - "Hepatitis_B_virus__IB1_4" : [ - "AY721608" - ], - "Enterobacteria_phage_RB59" : [ - "KM607003" - ], - "Porcine_astrovirus_2__KNU14_07" : [ - "KP759770" - ], - "Tomato_leaf_curl_China_betasatellite__Y284" : [ - "AJ971334" - ], - "Maize_streak_virus__MSV_A_ZA_Cat1_D6_2006" : [ - "HQ693406" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1228_2007" : [ - "EU569702" - ], - "Tomato_rugose_yellow_leaf_curl_virus_B_U4" : [ - "JN381823" - ], - "Norwalk_like_virus__Saitama_U25" : [ - "AB039780" - ], - "Chicken_anemia_virus__17" : [ - "KJ728826" - ], - "Potato_virus_Y_N_O_PB209" : [ - "EF026076" - ], - "Human_poliovirus_3_NIE1118527" : [ - "KJ170650" - ], - "Zaire_ebolavirus__H_sapiens_wt_GIN_2014_Makona_Gueckedou_C05" : [ - "KJ660348" - ], - "Mycobacterium_phage_Ramsey" : [ - "NC_011289" - ], - "Hepatitis_B_virus__S696_4" : [ - "EU554542" - ], - "Salmonella_enterica_serovar_Typhimurium_UK_1" : [ - "NC_016863", - "NC_016864" - ], - "Mycobacterium_phage_Konstantine" : [ - "NC_011292" - ], - "Shigella_boydii_CDC_3083_94" : [ - "NC_010660", - "NC_010672", - "NC_010657", - "NC_010656", - "NC_010659", - "NC_010658" - ], - "Enterobacteria_phage_phiX174__100B90" : [ - "EF380020" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1648_2007" : [ - "FJ024448" - ], - "Mesta_yellow_vein_mosaic_Bahraich_virus__India_Bhanga_2008___Amadalavalasa_South_India" : [ - "FJ159268" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141271" : [ - "KR653261" - ], - "Dengue_virus_3_D3_Hu_TL029NIID_2005" : [ - "AB214880" - ], - "Hepatitis_B_virus_G683_2" : [ - "AF363962" - ], - "Small_begomovirus_associated_satellite__wf_S55" : [ - "KJ859210" - ], - "Hepatitis_B_virus_HB531" : [ - "JQ027312" - ], - "Turnip_mosaic_virus__NLD2" : [ - "AB701727" - ], - "Tomato_leaf_curl_New_Delhi_virus____Potato___Pot_Mer1_2002" : [ - "AY286316" - ], - "Dengue_virus_2__DENV_2_KH_BID_V4267_2008" : [ - "JF730045" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0089" : [ - "KP759758" - ], - "Beak_and_feather_disease_virus__BFDV_I_PL_711_2008" : [ - "JX221038" - ], - "Variola_virus_United_Kingdom_1947_Higgins__Staffordshire" : [ - "DQ441446" - ], - "Dengue_virus_3__D3PY_AS10_03" : [ - "JF808129" - ], - "TT_virus_sle2061" : [ - "AM712033" - ], - "HBV_genotype_C__pBS_HBVC2_0500005_1_3G_mu_mu" : [ - "AB819615" - ], - "Dengue_virus_1__MKS_0080" : [ - "KC762636" - ], - "African_horse_sickness_virus__RSArrah_05" : [ - "KF446260", - "KF446269" - ], - "Simian_immunodeficiency_virus_SIVsmE543" : [ - "SIU72748" - ], - "Tobacco_bushy_top_virus__MD_II" : [ - "KM067277" - ], - "HBV_genotype_H__HBV_ST0404" : [ - "AB298362" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_FS" : [ - "JF796180" - ], - "Human_immunodeficiency_virus_1__89ES061" : [ - "AJ006287" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3798" : [ - "KM233079" - ], - "Simian_rotavirus_A_SA11" : [ - "X00355", - "Y00336" - ], - "Spring_viraemia_of_carp_virus__BJ0505_2" : [ - "EU177782" - ], - "Hepatitis_E_virus_FR_SHEV3e" : [ - "JQ953665" - ], - "East_African_cassava_mosaic_virus__MG_MG242A3_10" : [ - "KJ887964" - ], - "Zucchini_yellow_mosaic_virus__G62" : [ - "JN192415" - ], - "Hepatitis_B_virus__S1092_3" : [ - "FJ787455" - ], - "Finch_polyomavirus__1_2012" : [ - "KC660158" - ], - "Filifactor_alocis_ATCC_35896" : [ - "NC_016630" - ], - "Shigella_phage_SP18" : [ - "NC_014595" - ], - "Potato_yellow_mosaic_virus__Tulua_Valle_del_Cauca_2008" : [ - "JQ045705" - ], - "Hepatitis_B_virus__MOD_4589" : [ - "GQ183450" - ], - "Newcastle_disease_virus__R75_98" : [ - "KJ736742" - ], - "Velvet_tobacco_mottle_virus_Satellite_RNA" : [ - "NC_003906" - ], - "Rice_yellow_mottle_virus__Tz5" : [ - "AJ608217" - ], - "Hepatitis_B_virus__A51" : [ - "HM363569" - ], - "Porcine_circovirus_2__161_08_2" : [ - "HQ591370" - ], - "Porcine_circovirus_2__SSH090102" : [ - "GU325762" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2051_2007" : [ - "FJ639713" - ], - "Beak_and_feather_disease_virus__BCL1_ZA" : [ - "AY450442" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4081_2008" : [ - "JF937618" - ], - "Cyclovirus_VN__hcf2" : [ - "KF031466" - ], - "BK_polyomavirus__FUJ_31" : [ - "AB369099" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_E1861_2009_G3P_8__E1861" : [ - "KF371807", - "KF371809", - "KF371804", - "KF371812", - "KF371803", - "KF371805", - "KF371806", - "KF371808", - "KF371811" - ], - "Dengue_virus_4__DENV_4_US_BID_V1082_1998" : [ - "FJ024424" - ], - "Chlamydia_trachomatis_E_SotonE4" : [ - "NC_020969", - "NC_020987" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8411_2001" : [ - "KJ627672" - ], - "Human_papillomavirus_type_11_CU19" : [ - "JQ773411" - ], - "Tomato_leaf_curl_Bangladesh_betasatellite_India_PUSA_5_2010" : [ - "HQ180397" - ], - "Infectious_pancreatic_necrosis_virus_20G1d" : [ - "AY780924", - "AY780931" - ], - "Wheat_dwarf_virus____Hebei_Shijiazhuang___HBSJZ06_12" : [ - "EF536871" - ], - "Dengue_virus_2__DENV_2_VN_BID_V706_2006" : [ - "EU482643" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7085_2006" : [ - "KJ189296" - ], - "South_African_cassava_mosaic_virus__MG_MG537A1_11" : [ - "KJ888034" - ], - "Norovirus_Hu_GII_20205_2009_VNM_Hu_GII_20205_2009_VNM" : [ - "KC409276" - ], - "JC_polyomavirus__ES_3" : [ - "AB074579" - ], - "Hepatitis_B_virus__C230" : [ - "EU939618" - ], - "Tobacco_mosaic_virus__Longlin_2" : [ - "HE818434" - ], - "Beak_and_feather_disease_virus__2NC91B" : [ - "JX049219" - ], - "Hepatitis_B_virus__F_2" : [ - "KF373034" - ], - "Junin_mammarenavirus_P3778" : [ - "DQ854734" - ], - "Enterovirus_A71__Puyang_451_2012" : [ - "KM211579" - ], - "Gloeobacter_violaceus_PCC_7421" : [ - "NC_005125" - ], - "Hepatitis_B_virus_genotype_F_VNZ8371" : [ - "AB036916" - ], - "European_bat_lyssavirus_2__9018HOL" : [ - "EU293114" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_d4ym5" : [ - "JF292903" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG635A6_11" : [ - "KJ887581" - ], - "Lambdapapillomavirus_2__Y62" : [ - "NC_001619" - ], - "Hepatitis_C_virus_SA2" : [ - "KJ925147" - ], - "West_Nile_virus__WNV_1_US_BID_V6615_2003" : [ - "KJ501372" - ], - "Japanese_encephalitis_virus_TC" : [ - "AF098736" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG181A1_09" : [ - "KJ887946" - ], - "Hepatitis_C_virus_subtype_1a__BR111_P5_4_30_03" : [ - "EF032900" - ], - "Newcastle_disease_virus__ndv64_VH" : [ - "KM056358" - ], - "Hepatitis_B_virus__HBVJSTZ4" : [ - "JN630463" - ], - "Human_adenovirus_3_11p_OvAd2" : [ - "EF564601" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_28__AHEaCV_28_NZ_2208TU_2012" : [ - "NC_026630" - ], - "Dengue_virus_3_PI64" : [ - "AY858046" - ], - "Tomato_leaf_curl_Philippines_virus__Laguna1" : [ - "AB377111" - ], - "Maize_streak_virus__UIga_231" : [ - "EF547113" - ], - "Dengue_virus_2__DENV_2_US_BID_V1163_1986" : [ - "EU569704" - ], - "West_Nile_virus__WNV_1_US_BID_V4336_2002" : [ - "HM488177" - ], - "Cotton_leaf_curl_Multan_virus_satellite_U36_1" : [ - "NC_007721" - ], - "Human_polyomavirus_6__601a" : [ - "HM011558" - ], - "Hepatitis_B_virus__M51" : [ - "GQ924629" - ], - "Mycobacterium_phage_LHTSCC_LHTSCC" : [ - "NC_023745" - ], - "Bean_golden_mosaic_virus__BR_Pai7_11" : [ - "KJ939743" - ], - "Guanarito_mammarenavirus_CVH_960101" : [ - "AY497548" - ], - "Hepatitis_B_virus__HCUCH1" : [ - "HM585198" - ], - "Tomato_yellow_leaf_curl_China_virus_Tb_Y38___Y38" : [ - "AJ420317" - ], - "Chlamydia_trachomatis_L2b_UCH_2" : [ - "NC_020931", - "NC_020956" - ], - "Maize_streak_virus__MSV_UWak56" : [ - "EF015778" - ], - "Human_mastadenovirus_D__890357C_Hiroshima_1989" : [ - "AB605242" - ], - "Human_immunodeficiency_virus_1__1057_01" : [ - "AY331292" - ], - "American_hop_latent_virus__Bittergold" : [ - "NC_017859" - ], - "Hepatitis_B_virus_1491_26" : [ - "KR014093" - ], - "Hepatitis_B_virus__HBV_PH20" : [ - "AB116092" - ], - "Maize_streak_virus__MSV_A_ZA_Emp1_T5_2007" : [ - "HQ693408" - ], - "Tobacco_mosaic_virus__Xiongfan_1" : [ - "HE818418" - ], - "Human_immunodeficiency_virus_1__03ZAPS054MB2" : [ - "DQ369988" - ], - "Spodoptera_frugiperda_granulovirus__VG008" : [ - "NC_026511" - ], - "Hepatitis_B_virus__C_NC_TA32_2003" : [ - "HQ700506" - ], - "Rabies_virus__QS_05" : [ - "JN786877" - ], - "Porcine_epidemic_diarrhea_virus_USA_KS_2013" : [ - "KJ184549" - ], - "Hepatitis_B_virus__TK32" : [ - "JF754628" - ], - "Staphylococcus_phage_PT1028" : [ - "NC_007045" - ], - "Tomato_marchitez_virus__PRI_TMarV0601" : [ - "NC_010987", - "NC_010988" - ], - "Hepatitis_B_virus__P22" : [ - "EU859925" - ], - "East_African_cassava_mosaic_virus__TD_TD5BE_08" : [ - "KM885995" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_202_2011" : [ - "KJ686208" - ], - "JC_polyomavirus__JCV161FLC_19" : [ - "JF424927" - ], - "Hepatitis_B_virus_1303_29" : [ - "KR014030" - ], - "Staphylothermus_marinus_F1" : [ - "NC_009033" - ], - "HBV_genotype_C__pBS_HBVC2_0500005_1_3G_wt_mu" : [ - "AB819617" - ], - "Mycobacterium_phage_BellusTerra" : [ - "NC_023562" - ], - "Wheat_dwarf_virus__HUNGARY_KP10_16" : [ - "JQ647466" - ], - "Dengue_virus_1_D1_SG_05K4139DK1_2005" : [ - "EU081255" - ], - "Tomato_black_ring_virus_ED" : [ - "X80831" - ], - "Hepatitis_B_virus__I97" : [ - "FJ562258" - ], - "Hepatitis_B_virus__D_NZL_ST21_1996" : [ - "HQ700491" - ], - "Passerivirus_A1_00805" : [ - "GU182407" - ], - "Tomato_yellow_leaf_curl_virus_Israel__Japan_Miyazaki__Miy" : [ - "AB116629" - ], - "Clavibacter_phage_CMP1" : [ - "NC_013698" - ], - "Feline_immunodeficiency_virus_FIV_Oma" : [ - "FIU56928" - ], - "Planaria_asexual_strain_specific_virus_like_element_type_1" : [ - "NC_003220", - "NC_003219" - ], - "Human_immunodeficiency_virus_1__BREPM16704" : [ - "DQ085876" - ], - "Dengue_virus_2__SUR_Aug_05" : [ - "EU920838" - ], - "Hepatitis_B_virus__HBNAT040" : [ - "KJ638662" - ], - "Bacillus_phage_vB_BanS_Tsamsa" : [ - "NC_023007" - ], - "Vibrio_phage_pYD21_A_pYD21_A" : [ - "NC_020846" - ], - "Human_immunodeficiency_virus_1__110PA" : [ - "EF091932" - ], - "Murid_herpesvirus_1_N1" : [ - "HE610454" - ], - "Rice_black_streaked_dwarf_virus__Ly_m2" : [ - "EU267106" - ], - "Hepatitis_B_virus__JPN_CH3" : [ - "AB453981" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0025" : [ - "KP759666" - ], - "Infectious_bronchitis_virus_Ck_CH_LGD_120724" : [ - "KC119407" - ], - "Dengue_virus_3__MKS_2006" : [ - "KC762688" - ], - "Human_adenovirus_17" : [ - "AF108105" - ], - "Dengue_virus_2_New_Guinea_C_derivative" : [ - "FJ390389" - ], - "Bacillus_phage_phiCM3" : [ - "NC_023599" - ], - "Simian_immunodeficiency_virus__93062" : [ - "AY607704" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_VR2332" : [ - "EF536003" - ], - "Banana_streak_UM_virus" : [ - "NC_015505" - ], - "Goose_parvovirus_06_0329" : [ - "EU583391" - ], - "Hepatitis_B_virus__0904" : [ - "JN827418" - ], - "Hepatitis_B_virus__S6_3" : [ - "EU916225" - ], - "Hepatitis_B_virus__LT4" : [ - "DQ304550", - "DQ304548", - "DQ304547", - "DQ304549", - "DQ304551" - ], - "Porcine_circovirus_2__HbTs2011" : [ - "KM624037" - ], - "Human_poliovirus_3_NIE1218537" : [ - "KJ170589" - ], - "Human_poliovirus_1__TKM37184" : [ - "KC880374" - ], - "Porcine_rotavirus_4F" : [ - "PRVVAR4FA", - "PRVVAR4FB", - "PRVVP6B" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V440_2001" : [ - "EU256053" - ], - "Human_immunodeficiency_virus_1__TRJO_flD3" : [ - "FJ496157" - ], - "Foot_and_mouth_disease_virus___type_O_Akesu_58" : [ - "AF511039" - ], - "Thermus_phage_P2345" : [ - "NC_009803" - ], - "Helleborus_net_necrosis_virus_G5" : [ - "NC_012038" - ], - "St__Louis_encephalitis_virus_Palenque_A770" : [ - "JQ957869" - ], - "Chikungunya_virus__AMA2798_H804298" : [ - "KP164567" - ], - "Human_immunodeficiency_virus_1__5160_84" : [ - "AY835762" - ], - "Maize_streak_virus__MSV_B1_Za_RawF_g17_2006" : [ - "EU628598" - ], - "Human_poliovirus_3_NIE1018491" : [ - "KJ170632" - ], - "Hepatitis_B_virus__HBV_TA65" : [ - "AB555501" - ], - "Wheat_dwarf_virus__SXTY10_39" : [ - "JQ647506" - ], - "Hepatitis_C_virus_subtype_1b__No__12" : [ - "AB154187" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLE9271_2010" : [ - "KJ672599" - ], - "Dengue_virus_1__DENV_1_VE_BID_V2263_2006" : [ - "FJ639823" - ], - "Dengue_virus_1__DENV_1_VN_BID_V831_2006" : [ - "EU482825" - ], - "Sweet_potato_leaf_curl_virus__SPLCV_US_PER_AM1_10" : [ - "KC253233" - ], - "Tomato_leaf_curl_Taiwan_virus__HT7" : [ - "DQ866129" - ], - "Clanis_bilineata_nucleopolyhedrovirus__DZ1" : [ - "NC_008293" - ], - "Enterobacteria_phage_JS98" : [ - "NC_010105" - ], - "Swine_hepatitis_E_virus_hb_3" : [ - "GU361892" - ], - "Hepatitis_B_virus__C_Tonga_To422_2007" : [ - "HQ700572" - ], - "Human_immunodeficiency_virus_1__04ZASK196B1" : [ - "DQ056413" - ], - "Rabies_virus__D02" : [ - "FJ712194" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda29_05" : [ - "KC706640" - ], - "Okra_leaf_curl_Cameroon_virus_Cameroon_Njo5_TOC10" : [ - "HE793428" - ], - "Human_immunodeficiency_virus_1__02BR013" : [ - "DQ358810" - ], - "Porcine_circovirus_2__ZB" : [ - "HM142898" - ], - "Norovirus_Hu_GII_4_Iwate5_2008_JP_Hu_GII_4_Iwate5_2008_JP" : [ - "AB541276" - ], - "Parrot_hepatitis_B_virus__755" : [ - "JX274023" - ], - "Norovirus_Hu_GII_4_Aichi4_2008_JP_Hu_GII_4_Aichi4_2008_JP" : [ - "AB541208" - ], - "Human_herpesvirus_5_BE_35_2011" : [ - "KP745713" - ], - "Hepatitis_C_virus__HCV_A" : [ - "AJ000009" - ], - "Sida_micrantha_mosaic_virus__snap_bean_Brazil_2003___GO60" : [ - "HM357459" - ], - "Toscana_virus_TOSV_Firenze_ITA_2009_5" : [ - "KM275782" - ], - "Hepatitis_B_virus__8136" : [ - "KJ470885" - ], - "Porcine_circovirus_2_MN_R4" : [ - "EF452350" - ], - "St__Louis_encephalitis_virus__BeH355964" : [ - "KM267635" - ], - "Human_immunodeficiency_virus_1__06KECst_027" : [ - "FJ623492" - ], - "Goose_circovirus" : [ - "AF418552", - "NC_003054" - ], - "Cherry_necrotic_rusty_mottle_virus__FC5" : [ - "EU188439" - ], - "Rabies_virus__CNM1101C" : [ - "KC193267" - ], - "South_African_cassava_mosaic_virus__MG_MG273A8_10" : [ - "KJ887970" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3795" : [ - "KM233077" - ], - "Hepatitis_B_virus__J152" : [ - "GQ377594" - ], - "Hepatitis_E_virus__JKO_ChiSai98C" : [ - "AB197673" - ], - "Lactobacillus_phage_c5" : [ - "NC_019449" - ], - "Porcine_stool_associated_circular_virus_1__DP2" : [ - "KJ577810" - ], - "Hepatitis_B_virus__8_S698" : [ - "EU570073" - ], - "Dengue_virus_2_D2_FJ_UH22_1971" : [ - "HM582101" - ], - "Hepatitis_B_virus__Occult_HK323" : [ - "KJ410510" - ], - "Ageratum_leaf_curl_Cameroon_alphasatellite__SatA7" : [ - "NC_014744" - ], - "Maize_streak_virus__MSV_A_ZA_War7_Ta7_2008" : [ - "HQ693447" - ], - "Potato_virus_Y_common_strain" : [ - "PVU09509" - ], - "Caviid_herpesvirus_2_str__CIDMTR_CIDMTR" : [ - "HG531783" - ], - "Variola_virus_Somalia_1977__V77_1252" : [ - "DQ441438" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7066_2007" : [ - "KJ189282" - ], - "Hepatitis_B_virus__C_PNG_H058_2004" : [ - "HQ700521" - ], - "West_Nile_virus__WNV_1_US_BID_V6680_2006" : [ - "KJ501523" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_A16_2000_G3P_8__A16" : [ - "KF371729", - "KF371728", - "KF371727", - "KF371731", - "KF371735", - "KF371732", - "KF371730", - "KF371726", - "KF371734" - ], - "Tomato_yellow_leaf_curl_virus__Alb26" : [ - "FJ956704" - ], - "Hepatitis_B_virus_4600_97" : [ - "EU594392" - ], - "Bovine_viral_diarrhea_virus_2_KZ_91_CP" : [ - "LC006970" - ], - "Norovirus_Hu_GII_4_Hokkaido3_2006_JP_Hu_GII_4_Hokkaido3_2006_JP" : [ - "AB447429" - ], - "Hepatitis_B_virus__S472_20" : [ - "EU554535" - ], - "Shigella_boydii_Sb227" : [ - "NC_007608", - "NC_007613" - ], - "Bacillus_amyloliquefaciens_TA208" : [ - "NC_017188" - ], - "Bat_hepatitis_virus__PEPR6" : [ - "KF939648" - ], - "Hepatitis_B_virus__cxa1058" : [ - "KC774281" - ], - "Poinsettia_mosaic_virus__JO5" : [ - "AB550792" - ], - "Porcine_circovirus_2__GD_HJ6" : [ - "KM035760" - ], - "Porcine_epidemic_diarrhea_virus_USA_Indiana34_2013" : [ - "KJ645641" - ], - "Human_rotavirus_A_RVA_Human_wt_CHN_Y106_2004_G3P_8__Y106" : [ - "KF371997", - "KF371990", - "KF371991", - "KF371993", - "KF371989", - "KF371996", - "KF371992", - "KF371994", - "KF371988" - ], - "Tomato_yellow_leaf_curl_virus_TYLCV_CC" : [ - "AB669434" - ], - "Influenza_C_virus__C_Ann_Arbor_1_50___C_Ann_Arbor_1_50" : [ - "NC_006306" - ], - "Pepper_golden_mosaic_virus__SLP1" : [ - "GU564595", - "GU564594" - ], - "Newcastle_disease_virus_pigeon_Anhui_2365_2012" : [ - "KM374057" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_LBR_2014_Makona_10054" : [ - "KR006964" - ], - "Porcine_coronavirus_HKU15_IL2768" : [ - "KJ584355" - ], - "Tomato_yellow_leaf_curl_virus__SDZi" : [ - "KC852151" - ], - "Tomato_yellow_leaf_curl_China_virus__Y64___Y64" : [ - "AJ457823" - ], - "Infectious_bronchitis_virus_CK_CH_LHLJ_140901" : [ - "KP790146" - ], - "Dengue_virus_2__DENV_2_MX_BID_V8199_2011" : [ - "KJ189370" - ], - "West_Nile_virus__WNV_1_US_BID_V7416_2008" : [ - "KJ501127" - ], - "Hepatitis_B_virus__UdeA_024" : [ - "FJ589065" - ], - "Human_herpesvirus_7_JI" : [ - "HHU43400" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3750_1" : [ - "KM233058" - ], - "Puumala_virus_Umea_hu" : [ - "AY526218", - "AY526219", - "AY526217" - ], - "Porcine_circovirus_1__YZ70721" : [ - "FJ159690" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2835_2003" : [ - "FJ882568" - ], - "Hepatitis_B_virus_4550_97" : [ - "EU594436" - ], - "Canine_distemper_virus_CYN07_hV" : [ - "AB687721" - ], - "Rickettsia_heilongjiangensis_054" : [ - "NC_015866" - ], - "Human_papillomavirus_type_52__Qv02124" : [ - "HQ537749" - ], - "Gordonia_polyisoprenivorans_VH2" : [ - "NC_016907", - "NC_016906" - ], - "Macaca_fuscata_rhadinovirus" : [ - "AY528864" - ], - "Hepatitis_B_virus_1149_13" : [ - "KR013830" - ], - "Human_papillomavirus_type_16__JP0074" : [ - "AB818692" - ], - "Enterobacteria_phage_phiX174__CMMlo" : [ - "AF299305" - ], - "Human_papillomavirus_type_6__LP130" : [ - "FR751323" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3958_2008" : [ - "JF937608" - ], - "Zymomonas_mobilis_ATCC_29191" : [ - "NC_018147", - "NC_018148", - "NC_018146", - "NC_018145" - ], - "Human_mastadenovirus_B_human_USA_ak39_AdV7d2_1997_7_P7H7F7" : [ - "JX423387" - ], - "JC_polyomavirus__FE_2" : [ - "AB103418" - ], - "Hepatitis_delta_virus_Miyako_JA_M14" : [ - "AB118829" - ], - "Cowpox_virus_JagKre08_1" : [ - "KC813497" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2700_2006" : [ - "FJ882526" - ], - "Foot_and_mouth_disease_virus___type_Asia_1_vaccine_IND_63_72" : [ - "AY304994" - ], - "Hepatitis_B_virus__F_9" : [ - "KF373041" - ], - "Human_papillomavirus_type_35__BF313" : [ - "HQ537722" - ], - "Human_immunodeficiency_virus_1__1579A" : [ - "DQ083238" - ], - "Hepatitis_B_virus__cww1007" : [ - "KC774243" - ], - "Hepatitis_B_virus__C2_5" : [ - "GU815631" - ], - "Papiine_herpesvirus_2_A951" : [ - "KF908242" - ], - "Duck_circovirus__42_1" : [ - "KF941314" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1015_2006" : [ - "EU482459" - ], - "La_Crosse_virus_Human_78" : [ - "NC_004110", - "NC_004109", - "NC_004108" - ], - "Gallid_herpesvirus_1_TCO_low_passage" : [ - "JN580315" - ], - "Macroptilium_yellow_spot_virus__BR_Crb20_11" : [ - "KJ939854" - ], - "Hepatitis_B_virus__M95" : [ - "GQ924658" - ], - "Olive_latent_virus_1__CM1" : [ - "GU326337" - ], - "Black_medic_leafroll_virus__Lerik_Xalifa_47" : [ - "KC978956", - "KC978954", - "KC978955" - ], - "Hepatitis_B_virus__Cuba120" : [ - "KM606754" - ], - "Tomato_yellow_leaf_curl_virus___Mild__Japan_Takatsuki" : [ - "AB921568" - ], - "Acinetobacter_phage_Acj61" : [ - "NC_014661" - ], - "Hepatitis_B_virus__HBV_21" : [ - "HPBHBVAA" - ], - "Dengue_virus_4__DENV_4_VE_BID_V2206_2001" : [ - "FJ639773" - ], - "Dengue_virus_1__DENV_1_VN_BID_V958_2007" : [ - "EU482503" - ], - "West_Nile_virus__WNV_1_US_BID_V6668_2006" : [ - "KJ501408" - ], - "Human_papillomavirus_type_132__27_50" : [ - "NC_014955" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_EM124_4" : [ - "KM233048" - ], - "Hepatitis_C_virus_subtype_1b_MD18" : [ - "AF207759" - ], - "Pigeon_picornavirus_B_GAL_7_2010_Hungary" : [ - "KC560801" - ], - "Hepatitis_B_virus__M0507" : [ - "KC315399" - ], - "Salmonella_phage_epsilon34" : [ - "NC_011976" - ], - "Hepatitis_B_virus__90" : [ - "JX870001" - ], - "Staphylococcus_phage_A3R" : [ - "JX080301" - ], - "Porcine_circovirus_2__Bd2010" : [ - "KM624036" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P3pp37" : [ - "FJ882940" - ], - "Human_immunodeficiency_virus_1__ES_P1423__CRF02_AG" : [ - "EU884501" - ], - "Hepatitis_B_virus__I_T64" : [ - "GU456660" - ], - "Hepatitis_B_virus__HBV_Tw36" : [ - "AB073840" - ], - "Tomato_leaf_curl_New_Delhi_virus__TC305" : [ - "KP195262" - ], - "Thermosipho_africanus_TCF52B" : [ - "NC_011653" - ], - "Hepatitis_B_virus__NB023C_m24" : [ - "KJ173305" - ], - "Dengue_virus_2__DENV_2_VN_BID_V757_2003" : [ - "EU482779" - ], - "Human_parainfluenza_virus_4a_M_25" : [ - "NC_021928" - ], - "Norovirus_Hu_GI_2_Jingzhou_2013401_CHN_Hu_GI_2_Jingzhou_2013401_CHN" : [ - "KF306212" - ], - "Stachytarpheta_leaf_curl_virus____Hn30___Hn30" : [ - "AJ810156" - ], - "Norovirus_Hu_GII_14_8533_Maizuru_2008_JPN__Hu_GII_14_8553_Maizuru_2008_JPN" : [ - "GU017903" - ], - "Human_papillomavirus_type_11__JO_RRP_5" : [ - "HE574705" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2822_2007" : [ - "GQ199828" - ], - "Human_papillomavirus_type_16_CU3" : [ - "FJ610148" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_40_2011" : [ - "KJ686186" - ], - "Rice_yellow_mottle_virus__Ug148" : [ - "KM487711" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Dav_alpha_8" : [ - "EU384624" - ], - "Japanese_encephalitis_virus__HN0626" : [ - "JN381837" - ], - "Staphylococcus_phage_SA13" : [ - "NC_021863" - ], - "Sweet_potato_virus_C__CW135" : [ - "KP115620" - ], - "Porcine_circovirus_2__WB_H_1" : [ - "AY874163" - ], - "Hepatitis_B_virus__G2_3" : [ - "GU815765" - ], - "Tomato_yellow_vein_streak_virus__BR_Pda52_05" : [ - "KC706663", - "KC706651" - ], - "Hepatitis_B_virus__9401_03301" : [ - "JN792922" - ], - "Human_immunodeficiency_virus_1__228_10" : [ - "KP718924" - ], - "Human_adenovirus_68_Arg_827_04" : [ - "JN860678" - ], - "Murine_coronavirus_MHV_BHKR_lab_USA_icA59_ns2M_2012_ns2M" : [ - "KF268339" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Mesocricetus_auratus_COL_00SMH264_2000_ID" : [ - "KC344459" - ], - "Human_immunodeficiency_virus_1__PS1044_Day177" : [ - "DQ676873" - ], - "Human_metapneumovirus_HMPV_AUS_172437891_2004_B" : [ - "KC562231" - ], - "Human_T_cell_lymphotropic_virus_type_2b" : [ - "Y13051" - ], - "Dengue_virus_2_ThNH69_93" : [ - "AF169685" - ], - "Southern_tomato_virus__MS_7" : [ - "EU413670" - ], - "Candidatus_Sulcia_muelleri_Sulcia_ALF" : [ - "NC_021916" - ], - "Simian_hemorrhagic_fever_virus_LVR_42_0_M6941_RJ_03_26_10" : [ - "KM371111" - ], - "Pseudomonas_phage_PP7" : [ - "NC_001628" - ], - "Porcine_circovirus_2__A4173" : [ - "JF317572" - ], - "Mycobacterium_phage_Lilac_Lilac" : [ - "NC_023689" - ], - "Clerodendron_golden_mosaic_virus" : [ - "NC_010713", - "NC_010714" - ], - "Hepatitis_B_virus_A0712" : [ - "DQ980551" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V431_2002" : [ - "EU239716" - ], - "Hepatitis_B_virus_P3283" : [ - "KJ586803" - ], - "Hepatitis_B_virus__P5" : [ - "GQ477463" - ], - "Bacillus_thuringiensis_serovar_IS5056" : [ - "NC_020390", - "NC_020393", - "NC_020391", - "NC_020381", - "NC_020384", - "NC_020385", - "NC_020376", - "NC_020377", - "NC_020383", - "NC_020392", - "NC_020378", - "NC_020380", - "NC_020379", - "NC_020382", - "NC_020394" - ], - "Hepatitis_C_virus_subtype_1a__02_26" : [ - "EU781787" - ], - "Cotton_leaf_curl_Gezira_virus__Okra_Shambat___CLCuV_SD_okra" : [ - "AY036008" - ], - "Puumala_virus_PUUV_Konnevesi_Mg_O15B_2005" : [ - "JQ319167" - ], - "Hepatitis_B_virus__C_Tonga_To16_2004" : [ - "HQ700578" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US43" : [ - "KJ019102" - ], - "Coxsackievirus_A2_431135" : [ - "JX867332" - ], - "Porcine_circovirus_2_CC_09" : [ - "FJ623185" - ], - "Norovirus_Hu_GII_20153_2009_VNM_Hu_GII_20153_2009_VNM" : [ - "KC409254" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2358_2007" : [ - "FJ639837" - ], - "Diuris_virus_A__SW3_3" : [ - "NC_019029" - ], - "Dengue_virus_2__MKS_0099" : [ - "KC762676" - ], - "Human_papillomavirus_type_58__Qv03841" : [ - "HQ537768" - ], - "Norovirus_Hu_GII_4_CGMH28_2010_TW" : [ - "JN400626" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_228H6__228H6" : [ - "JN819493" - ], - "Middle_East_respiratory_syndrome_coronavirus__Jeddah_C7149_KSA_2014_04_05" : [ - "KM027255" - ], - "Hepatitis_B_virus__GU952" : [ - "GQ161765" - ], - "Hepatitis_B_virus__JPN_CH8" : [ - "AB453986" - ], - "Human_papillomavirus_type_6__103" : [ - "HG793911" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1629_2006" : [ - "FJ373296" - ], - "Hepatitis_B_virus_MEXICO33_H" : [ - "AB375162" - ], - "West_Nile_virus_Greece_2013_Serres_1" : [ - "KJ883347" - ], - "Beak_and_feather_disease_virus__MU_JP6P" : [ - "AB277751" - ], - "Tembusu_virus_Du_CH_LSD_110128_P90" : [ - "KJ782380" - ], - "Western_equine_encephalitis_virus_R0PV00384A" : [ - "KJ554991" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M51" : [ - "KM110937" - ], - "Bean_common_mosaic_virus__DXH008" : [ - "KJ807804" - ], - "Barley_yellow_dwarf_virus_PAV__0102" : [ - "EF521849" - ], - "Thogoto_virus" : [ - "NC_006495", - "NC_006496" - ], - "Hepatitis_B_virus__Ran60" : [ - "EF103278" - ], - "Hepatitis_B_virus__N208M_e415" : [ - "KJ173445" - ], - "Foot_and_mouth_disease_virus___type_O__IND26_54__2014" : [ - "KJ825807" - ], - "JC_polyomavirus__CH_7" : [ - "AB077875" - ], - "Human_immunodeficiency_virus_1__0744SV" : [ - "JF804814" - ], - "Hantaanvirus_CGAa75_CGAa75" : [ - "EU092224", - "EU092220" - ], - "Pantoea_ananatis" : [ - "NC_016817", - "NC_016816" - ], - "Human_immunodeficiency_virus_1__BREPM1038" : [ - "EF637048" - ], - "Cotton_leaf_curl_Multan_virus__GX11" : [ - "HQ455356" - ], - "Human_immunodeficiency_virus_1__IIIB" : [ - "KJ925006" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1575_2007" : [ - "FJ024435" - ], - "Porcine_circovirus_2__PCV_Y23" : [ - "KC515015" - ], - "Beet_soil_borne_virus__PL" : [ - "FJ971718", - "FJ971717", - "FJ971719" - ], - "Tomato_chlorosis_virus__ToC_Br2" : [ - "JQ952601", - "JQ952600" - ], - "Porcine_epidemic_diarrhea_virus_USA_Illinois97_2013" : [ - "KJ645689" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_GX09_29" : [ - "HM214914" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_92I_068A_01_1992" : [ - "KJ723462" - ], - "Human_adenovirus_25" : [ - "JN226752" - ], - "Subterranean_clover_mottle_virus__AL" : [ - "AY376451" - ], - "Porcine_circovirus_2__Uy91" : [ - "KP867047" - ], - "Human_respiratory_syncytial_virus_05_004042" : [ - "JX576757" - ], - "Torque_teno_virus__TTV_HD14f__gbDhDi32_36" : [ - "FR751468" - ], - "Dinoroseobacter_shibae_DFL_12" : [ - "NC_009952", - "NC_009956", - "NC_009955", - "NC_009958", - "NC_009959", - "NC_009957" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_17a" : [ - "LN846606" - ], - "Bluetongue_virus_23_IND2004_08" : [ - "AM900387" - ], - "Yellow_fever_virus_case__1" : [ - "GQ379162" - ], - "Hepatitis_B_virus__WHYHY" : [ - "JN257190" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_119_2012" : [ - "KJ686267" - ], - "Bean_golden_mosaic_virus__BR_Vic_05" : [ - "KJ939709" - ], - "Small_begomovirus_associated_satellite__wf_S5" : [ - "KJ859204" - ], - "Southern_rice_black_streaked_dwarf_virus__Son_La_2" : [ - "KM576894" - ], - "Porcine_circovirus_2__2542_16_Treviso_19_25_10_2010" : [ - "KP231160" - ], - "Papaya_ringspot_virus__E2" : [ - "KC345609" - ], - "Infectious_bursal_disease_virus__YS07" : [ - "FJ695138", - "FJ695139" - ], - "Hepatitis_C_virus__HC_J8" : [ - "HPCJ8G" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD28_2013" : [ - "KM229897" - ], - "BK_polyomavirus__OKN_18" : [ - "AB298947" - ], - "Chino_del_tomate_virus__RK___RK_variant" : [ - "DQ885456" - ], - "Tomato_leaf_curl_Philippines_virus__P77" : [ - "EU487032" - ], - "Foot_and_mouth_disease_virus___type_O__UKG_2526_2001" : [ - "FJ542371" - ], - "Grapevine_virus_A" : [ - "AY244516" - ], - "Hepatitis_B_virus__MMA_7" : [ - "AM421535" - ], - "Aciduliprofundum_MAR08_339" : [ - "NC_019942" - ], - "Hepatitis_C_virus_subtype_2c__HCV_2c_GB_BID_G1294" : [ - "JX227966" - ], - "Newcastle_disease_virus_Du_CH_LFJ_073_2013" : [ - "KM885163" - ], - "Hepatitis_B_virus__JFA4237" : [ - "KF779273" - ], - "TT_virus_sle2058" : [ - "AM712031" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0058" : [ - "KP759724" - ], - "Drosophila_melanogaster_totivirus_SW_2009a_DTV" : [ - "NC_013499" - ], - "Tobacco_leaf_curl_Kochi_virus__KK" : [ - "NC_004641" - ], - "Human_immunodeficiency_virus_1__05YNRL08sg" : [ - "KC898976" - ], - "Simian_retrovirus_4_SRV4_TEX_2009_V2" : [ - "FJ979638" - ], - "Human_papillomavirus_type_16__Qv33364" : [ - "HQ644285" - ], - "Dengue_virus_4__DENV_4_VE_BID_V1156_2007" : [ - "GQ868645" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9390_2013" : [ - "KJ643478" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1634_2006" : [ - "FJ410287" - ], - "Theilovirus_GDVII" : [ - "NC_001366" - ], - "Bean_golden_mosaic_virus__BgV03A_1_C79" : [ - "JF694454" - ], - "Enterobacteria_phage_NC3" : [ - "DQ079878" - ], - "Helicobacter_pylori_J99" : [ - "NC_000921" - ], - "Hepatitis_B_virus__SHB3C2" : [ - "KJ598678" - ], - "Alternaria_brassicicola_endornavirus__1" : [ - "NC_026136" - ], - "Chickpea_chlorotic_dwarf_virus_L_TM2" : [ - "HE864164" - ], - "African_cassava_mosaic_virus__MG_MG53A1_06" : [ - "KJ887872" - ], - "Sewage_associated_gemycircularvirus_11__BS4117" : [ - "NC_026166" - ], - "Hepatitis_B_virus__HBV_O47" : [ - "AB115417" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6900_2009" : [ - "KJ627344" - ], - "Porcine_circovirus_2__DK419case" : [ - "EF565346" - ], - "Human_immunodeficiency_virus_1__PT2695" : [ - "AY612637" - ], - "Bean_golden_mosaic_virus__BgV03B_1_C45" : [ - "JF694457" - ], - "Coxsackievirus_B6_Schmitt" : [ - "AF105342", - "AF114384" - ], - "Clostridium_phage_phiCTP1" : [ - "NC_014457" - ], - "SARS_coronavirus_A022" : [ - "AY686863" - ], - "Hepatitis_B_virus__WHAKF2" : [ - "JN257207" - ], - "Sugarcane_streak_mosaic_virus__MYA_Formosa" : [ - "KJ187049" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__0304" : [ - "KF444092" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2905_2006" : [ - "FJ898420" - ], - "Newcastle_disease_virus_chicken_Sweden_97" : [ - "GU585905" - ], - "Simian_adenovirus_25_2" : [ - "FJ025918" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1839_2007" : [ - "FJ410212" - ], - "Thin_paspalum_asymptomatic_virus_2010" : [ - "JX848616" - ], - "Leuconostoc_phage_phiLN25" : [ - "NC_024386" - ], - "Maize_streak_virus__UMba_41" : [ - "EF547074" - ], - "Japanese_encephalitis_virus__SC0412" : [ - "JN381839" - ], - "Watermelon_chlorotic_stunt_virus__JO2_41" : [ - "KM820200" - ], - "Chlamydia_trachomatis_L2b_Canada2" : [ - "NC_020954", - "NC_020932" - ], - "Infectious_bronchitis_virus_ck_CH_LHN_090909" : [ - "KJ425508" - ], - "Hepatitis_B_virus__HS005M_e23" : [ - "KJ173300" - ], - "East_African_cassava_mosaic_virus__AO7" : [ - "JN941177" - ], - "Hepatitis_B_virus__TK91" : [ - "JF754600" - ], - "Rhinovirus_C_026" : [ - "EF582387" - ], - "Tomato_leaf_curl_Vietnam_virus_satellite_DNA_beta_DX2__Dang_Xa_2__DX2" : [ - "EU189146" - ], - "Dengue_virus_3__BDH02_3" : [ - "AY496873" - ], - "Human_immunodeficiency_virus_1__03GH195AG_06" : [ - "AB286853", - "AB286854" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_228H3__228H3" : [ - "JN819491" - ], - "West_Nile_virus__WNV_1_US_BID_V4105_2005" : [ - "HM488117" - ], - "Hepatitis_B_virus__D139" : [ - "EU939657" - ], - "Chickpea_chlorosis_virus__F_3487J" : [ - "KC172700" - ], - "Synechococcus_phage_ACG_2014a__Syn7803C101" : [ - "KJ019135" - ], - "Tomato_spotted_wilt_virus__TSWV_18" : [ - "KC261976", - "KC261975", - "KC261974" - ], - "Dengue_virus_2__DENV_2_US_BID_V686_1989" : [ - "EU482743" - ], - "Human_bocavirus__RUS_NSC_11_N2657" : [ - "KJ649742" - ], - "Middle_East_respiratory_syndrome_coronavirus__Buraidah_1_2013" : [ - "KF600630" - ], - "Pseudomonas_phage_PaMx13" : [ - "JQ067083" - ], - "Dengue_virus_2__DENV_2_VN_BID_V721_2006" : [ - "EU482658" - ], - "Micromonas_sp__RCC1109_virus_MpV1" : [ - "NC_014767" - ], - "Human_papillomavirus_type_16__Qv23890" : [ - "HQ644279" - ], - "Anabaena_phage_A_4L" : [ - "NC_024358" - ], - "Human_immunodeficiency_virus_1__567_16" : [ - "KP718921" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5016_1" : [ - "KR105293" - ], - "Hepatitis_B_virus__patient_940b1" : [ - "DQ993697" - ], - "Dengue_virus_3__DENV_3_US_BID_V2099_1998" : [ - "FJ547070" - ], - "Porcine_circovirus_2_FX0901" : [ - "GU252369" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD139_2013" : [ - "KM229812" - ], - "Hepatitis_B_virus__UK1" : [ - "AB219529" - ], - "Sweet_potato_leaf_curl_Georgia_virus__China__Hebei__2011__China__Hebei__2011" : [ - "JX448368" - ], - "Human_papillomavirus_type_35__QV24067" : [ - "HQ537709" - ], - "Cyclovirus_PKgoat11_PAK_2009__PKgoat11" : [ - "NC_014928" - ], - "Streptococcus_pneumoniae_INV104" : [ - "NC_017591" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA114" : [ - "KF670675" - ], - "Cellulophaga_phage_phiST_phiST" : [ - "NC_020842", - "KC821604" - ], - "Hepatitis_B_virus__MY035746" : [ - "KJ803801" - ], - "Enterobacteria_phage_WA6" : [ - "DQ079904" - ], - "Candidatus_Tremblaya_princeps_PCIT" : [ - "NC_015736" - ], - "Hepatitis_B_virus__PNF4540" : [ - "KF779329" - ], - "Clostridium_botulinum_E3_Alaska_E43" : [ - "NC_010723" - ], - "Hepatitis_B_virus__P131" : [ - "GQ477504" - ], - "Tomato_leaf_curl_Gujarat_virus" : [ - "FR819708" - ], - "African_cassava_mosaic_virus__CF_CF94AN_07" : [ - "KJ887788" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_46_2013" : [ - "KJ672450" - ], - "Prochlorococcus_marinus_NATL2A" : [ - "NC_007335" - ], - "Human_immunodeficiency_virus_1__DR7065" : [ - "AB287368" - ], - "Chickpea_chlorotic_dwarf_virus__PK43" : [ - "KM377671" - ], - "Mycobacterium_phage_Che9c" : [ - "NC_004683" - ], - "Bacillus_thuringiensis_Al_Hakam" : [ - "NC_008600", - "NC_008598" - ], - "Human_immunodeficiency_virus_1__97VNAG204" : [ - "FJ185247" - ], - "Coxiella_burnetii_CbuG_Q212" : [ - "NC_011527" - ], - "Aster_yellows_witches_broom_phytoplasma_AYWB" : [ - "NC_007720", - "NC_007717", - "NC_007718", - "NC_007719", - "NC_007716" - ], - "Torque_teno_virus__TTV_HD22__rheu112" : [ - "FR751499" - ], - "Hepatitis_B_virus__He82" : [ - "AY641562" - ], - "Dengue_virus_2_ThD2_0498_84" : [ - "DQ181804" - ], - "Hepatitis_B_virus__CHN_QH14" : [ - "DQ478889" - ], - "Sida_mottle_Alagoas_virus__BR_Mar1_10" : [ - "JX871386" - ], - "Simian_virus_40__SV40_PV_241" : [ - "EF579664" - ], - "Beak_and_feather_disease_virus__YCP23" : [ - "JQ782204" - ], - "Dengue_virus_2__ACS46_II" : [ - "JX286517" - ], - "Hepatitis_B_virus__SHB311" : [ - "KJ598663" - ], - "Dengue_virus_3__DENV_3_NI_BID_V2935_2008" : [ - "FJ898475" - ], - "Newcastle_disease_virus__JS_07_03_Pi" : [ - "FJ766531" - ], - "Human_bocavirus_3_CU2139UK" : [ - "GU048665" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_56_2013" : [ - "KM042392" - ], - "Brevibacillus_brevis_NBRC_100599" : [ - "NC_012491" - ], - "Human_papillomavirus_type_16__UPB20" : [ - "HQ644295" - ], - "Hepatitis_GB_virus_B" : [ - "HGU22304", - "NC_001655", - "AJ277947" - ], - "Human_papillomavirus_type_147__GH659" : [ - "HM999999" - ], - "Tomato_yellow_leaf_curl_Sardinia_virus_Morocco_8_1" : [ - "LN846596" - ], - "Hepatitis_B_virus__HBV135" : [ - "JN688701" - ], - "Dengue_virus_3__DENV_3_US_BID_V1625_2005" : [ - "FJ182040" - ], - "Arumowot_virus" : [ - "NC_023634", - "NC_023633", - "NC_023635" - ], - "Hepatitis_B_virus__HBV144" : [ - "JN688710" - ], - "Cydia_pomonella_granulovirus__CpGV_S" : [ - "KM217573" - ], - "SARS_coronavirus_SoD__SoD" : [ - "AY461660" - ], - "Arabis_mosaic_virus_small_satellite_RNA" : [ - "NC_001546" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SDLZP07_2011" : [ - "JQ693010" - ], - "Hepatitis_B_virus__HBV24" : [ - "KC875255" - ], - "Human_immunodeficiency_virus_1__DR6082" : [ - "AB480299", - "AB480298" - ], - "Human_immunodeficiency_virus_1__92rw009" : [ - "U88823" - ], - "Gordonia_KTR9" : [ - "NC_018580", - "NC_018581", - "NC_018582", - "NC_018583" - ], - "Lactococcus_Phage_ASCC368" : [ - "JQ740798" - ], - "Norovirus_Hu_GII_4_CGMH18_2008_TW" : [ - "JN400616" - ], - "Listeria_monocytogenes_EGD" : [ - "NC_022568" - ], - "Lactobacillus_casei_BL23" : [ - "NC_010999" - ], - "Hepatitis_E_virus__JIO_Sai97L" : [ - "AB291951" - ], - "Human_rhinovirus_B5_ATCC_VR_485" : [ - "FJ445112" - ], - "Leptotrichia_buccalis_C_1013_b" : [ - "NC_013192" - ], - "African_cassava_mosaic_virus__MG_MG43A3_06" : [ - "KJ887858" - ], - "JC_polyomavirus__G2" : [ - "AB038251" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_CH_BID_V222_2003" : [ - "EU255927" - ], - "Thermococcus_onnurineus_NA1" : [ - "NC_011529" - ], - "Aeromonas_phage_44RR2_8t" : [ - "NC_005135" - ], - "Chicken_anemia_virus_TJBD40" : [ - "AY846844" - ], - "Mungbean_yellow_mosaic_India_virus__Bangladesh" : [ - "AF314145" - ], - "Macroptilium_yellow_spot_virus__BR_Sti22_11" : [ - "KJ939879" - ], - "Salinibacter_ruber_DSM_13855" : [ - "NC_007678", - "NC_007677" - ], - "Sokoluk_virus_LEIV_400K" : [ - "NC_026624" - ], - "Xanthomonas_phage_Cf1c" : [ - "NC_001396" - ], - "West_Nile_virus__ID21bird_07" : [ - "JF957171" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V4_2005" : [ - "EU256051" - ], - "Rice_grassy_stunt_virus__South_Cotabato" : [ - "AB032180", - "AB029894", - "AB023777", - "AB023779", - "AB023780", - "AB023778" - ], - "Porcine_circovirus_2__TN4_M2" : [ - "JQ181606" - ], - "Hepatitis_B_virus__KOR8CHB" : [ - "GQ475312" - ], - "Human_papillomavirus_type_6__121" : [ - "HG793929" - ], - "Sulfurovum_NBC37_1" : [ - "NC_009663" - ], - "Small_begomovirus_associated_satellite__Sa46_S1" : [ - "KJ859157" - ], - "Enterovirus_A71_28_SHENZHEN_08_China_HFMD_2008" : [ - "FJ607336" - ], - "Malvastrum_yellow_vein_Yunnan_virus__SC327" : [ - "KC189892" - ], - "Hepatitis_B_virus__DEN5763" : [ - "KF779215" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20142417" : [ - "KR653254" - ], - "Hepatitis_B_virus__D_NZL_MO77_1997" : [ - "HQ700472" - ], - "Sida_mosaic_Alagoas_virus__BgV02B_1_C34" : [ - "NC_016579" - ], - "Synechococcus_phage_ACG_2014f__Syn7803C17" : [ - "KJ019147" - ], - "Human_immunodeficiency_virus_1__04CM_1015_04" : [ - "DQ017382" - ], - "Infectious_bursal_disease_virus__UK_661" : [ - "AJ318896" - ], - "Dengue_virus_2__DENV_2_US_BID_V682_1994" : [ - "EU482739" - ], - "Tomato_leaf_curl_Java_virus__Ageratum" : [ - "AB162141" - ], - "Hepatitis_B_virus__Pkst8134" : [ - "AB583679" - ], - "Dengue_virus_2__DENV_2_US_BID_V1087_1991" : [ - "EU529701" - ], - "Bluetongue_virus_8_NET2006_01_12" : [ - "AM900389" - ], - "Hepatitis_B_virus__J48" : [ - "GQ377537" - ], - "Siegesbeckia_yellow_vein_virus__Fz11" : [ - "JF682838" - ], - "Human_papillomavirus_type_6__25" : [ - "HG793833" - ], - "Foot_and_mouth_disease_virus___type_O__O_S09KOR_2002" : [ - "KF694739" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2480_2007" : [ - "FJ850109" - ], - "Staphylococcus_prophage_phiPV83_P83___ATCC_31890" : [ - "NC_002486" - ], - "Avian_encephalomyelitis_virus_van_Reokel" : [ - "AY517471" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V105_2004" : [ - "EU155215" - ], - "Human_papillomavirus_type_6__111" : [ - "HG793919" - ], - "Bluetongue_virus_16__7766" : [ - "JX272468" - ], - "Sphingomonas_phage_PAU" : [ - "NC_019521" - ], - "Achromobacter_xylosoxidans_NBRC_15126" : [ - "NC_023061" - ], - "Rosellinia_necatrix_quadrivirus_1__W1075" : [ - "NC_016760", - "NC_016758", - "NC_016757", - "NC_016759" - ], - "Eastern_equine_encephalitis_virus_PE6" : [ - "AY722102" - ], - "Human_papillomavirus_type_39__Qv29778" : [ - "KC470234" - ], - "Dengue_virus_2__SUR_Oct_05" : [ - "EU920842" - ], - "Tomato_leaf_curl_New_Delhi_virus__AFSP2c" : [ - "JN809814" - ], - "Potato_virus_Y__IUNG_8" : [ - "JF927756" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4960_1" : [ - "KR105283" - ], - "Ageratum_yellow_leaf_curl_betasatellite____Pakistan_Lahore_2005" : [ - "AM412239" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__YN2008" : [ - "EU880435" - ], - "Neisseria_gonorrhoeae_NCCP11945" : [ - "NC_011034", - "NC_011035" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5743_1" : [ - "KR105323" - ], - "Hepatitis_B_virus__CONTROL23" : [ - "JQ801515" - ], - "Haloarcula_hispanica_N601" : [ - "NC_023013", - "NC_023012", - "NC_023011", - "NC_023010" - ], - "Hepatitis_B_virus__IND_2007_10" : [ - "KF214671" - ], - "Miscanthus_streak_virus__91" : [ - "NC_003379" - ], - "Classical_swine_fever_virus_Brescia" : [ - "AF091661" - ], - "Cyanophage_S_SSM6a_S_SSM6a" : [ - "HQ317391" - ], - "Hepatitis_B_virus_045" : [ - "AB900106" - ], - "Pepper_mottle_virus__743" : [ - "EU586127" - ], - "Human_immunodeficiency_virus_1__TRJO_flA2" : [ - "FJ496152" - ], - "Chlamydophila_psittaci_02DC15" : [ - "NC_017292" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__SY0909" : [ - "HQ315837" - ], - "Porcine_circovirus_2__KM" : [ - "KJ679445" - ], - "Canine_distemper_virus_5804P" : [ - "AY386316" - ], - "Papaya_leaf_distortion_mosaic_virus_P_Taiwan_CZ" : [ - "JX416282" - ], - "Human_immunodeficiency_virus_1___472" : [ - "AB428561" - ], - "Human_papillomavirus_type_11__A260" : [ - "FN907958" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1866_2007" : [ - "FJ410222" - ], - "Sida_yellow_vein_Vietnam_virus_satellite_DNA_beta__GD" : [ - "KF990602" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4261_2007" : [ - "HM181958" - ], - "Toscana_virus__SI_76082" : [ - "EU003180" - ], - "Giraffe_coronavirus_US_OH3_TC_2006_US_OH3_TC_2006" : [ - "EF424622" - ], - "Myxoma_virus_Aust_Woodstock_1_3_94_WS1_234" : [ - "JX565578" - ], - "Bovine_rotavirus_UK" : [ - "X52589" - ], - "Beak_and_feather_disease_virus__2NC39B" : [ - "JX049206" - ], - "Duck_hepatitis_A_virus_1__YZ" : [ - "EF427900" - ], - "Japanese_encephalitis_virus__YN83_Meng83_54" : [ - "JF706282" - ], - "Broad_bean_wilt_virus_2__XJP1_1" : [ - "HQ283390", - "KC790225" - ], - "Human_papillomavirus_type_38b" : [ - "DQ090005" - ], - "Chikungunya_virus_Vereeniging" : [ - "HM045792" - ], - "Hepatitis_B_virus__G177" : [ - "JQ040153" - ], - "Hepatitis_B_virus__S208_1" : [ - "FJ787444" - ], - "Hepatitis_B_virus__NIR_3" : [ - "KM577665" - ], - "Maize_streak_virus__MSV_A_ZA_Koe1_O15_1989" : [ - "FJ882118" - ], - "Human_immunodeficiency_virus_1__DR3730" : [ - "AB253680", - "AB253676", - "AB253670", - "AB253672", - "AB253679", - "AB253673", - "AB253675", - "AB253669", - "AB253677", - "AB253674", - "AB253671", - "AB253678" - ], - "Monkeypox_virus__DRC_07_0046" : [ - "JX878414" - ], - "Bluetongue_virus_15__RSArrrr_15" : [ - "AJ586716" - ], - "Mungbean_yellow_mosaic_virus__VN1" : [ - "JX244172", - "JX244177" - ], - "Macroptilium_yellow_mosaic_Florida_virus" : [ - "NC_004099", - "NC_004100" - ], - "Sugarcane_white_streak_virus__SD_D0005_2013" : [ - "KJ187747" - ], - "Hepatitis_B_virus__BOL1" : [ - "AB365445" - ], - "Ferroglobus_placidus_DSM_10642" : [ - "NC_013849" - ], - "Human_immunodeficiency_virus_1__06KECst_006" : [ - "FJ623475" - ], - "Human_immunodeficiency_virus_1__09YNLX133sg" : [ - "KC898996" - ], - "Dengue_virus_1__DENV_1_VN_BID_V950_2007" : [ - "EU482495" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_LA2_25_2013" : [ - "KJ672425" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_424N1__424N1" : [ - "JN819508" - ], - "Hepatitis_B_virus__ADVT_Pt__13" : [ - "AB367803" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V147_2004" : [ - "EU155220" - ], - "Dengue_virus_3__PF92_2956" : [ - "AY744682" - ], - "West_Nile_virus__WNV_1_US_BID_V4097_2008" : [ - "HM756660" - ], - "Hepatitis_B_virus__C4371" : [ - "GU357842" - ], - "Newcastle_disease_virus__MM19" : [ - "JX532092" - ], - "Human_immunodeficiency_virus_1__00BWMO35_1" : [ - "AY074891" - ], - "Rattus_norvegicus_papillomavirus_1_EES_2009" : [ - "GQ180114" - ], - "Hepatitis_B_virus__SZ19" : [ - "JF436923" - ], - "Hepatitis_B_virus__D_NC_16600_2001" : [ - "HQ700513" - ], - "Hepatitis_B_virus_99_11" : [ - "KR013879" - ], - "Hepatitis_B_virus__B5_HBVKO1" : [ - "HPBB5HKO1" - ], - "Hepatitis_B_virus__F3_4" : [ - "GU815741" - ], - "Hepatitis_B_virus__Ag10" : [ - "KJ843172" - ], - "Enterovirus_D68__NZ_2010_541" : [ - "JX070222" - ], - "Cotton_leaf_curl_Multan_virus__S_11" : [ - "KM096466" - ], - "Torque_teno_virus_2__s_TTV_CH71" : [ - "NC_014480" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c954" : [ - "NC_025959" - ], - "Human_papillomavirus_type_16__Qv00124" : [ - "HQ644254" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_Henan_A8" : [ - "KJ534543" - ], - "Soybean_mosaic_virus_N" : [ - "NC_002634" - ], - "Hepatitis_B_virus__H61" : [ - "FJ349214" - ], - "Hepatitis_B_virus__F2_8" : [ - "GU815733" - ], - "Newcastle_disease_virus__duck_China_Guangxi19_2009" : [ - "JX193080" - ], - "Staphylococcus_phage_StauST398_2" : [ - "NC_021323" - ], - "Sida_yellow_net_virus__BR_Vic2_10" : [ - "NC_020253" - ], - "Maize_streak_virus__MSV_A_MZ_Pem3_Moz39_2007" : [ - "HQ693364" - ], - "Hepatitis_B_virus__PNF3845" : [ - "KF779310" - ], - "Parrot_hepatitis_B_virus__P902" : [ - "JX274018" - ], - "Night_heron_coronavirus_HKU19_HKU19_6918" : [ - "NC_016994" - ], - "Murine_cytomegalovirus__strain_K181__K181___PERTH" : [ - "AM886412" - ], - "Hepatitis_B_virus__pLL_EGFP" : [ - "GU451682" - ], - "Borna_disease_virus_V_FR" : [ - "AJ311521" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1316" : [ - "KR534546" - ], - "Beak_and_feather_disease_virus__RP1_ZA" : [ - "AY450439" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V325_2001" : [ - "EU155290" - ], - "Hepatitis_B_virus_258_8a" : [ - "KR013769" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V448_2006" : [ - "EU482885" - ], - "Variola_virus_India_1953__Kali_Muthu_M50_Madras" : [ - "DQ441427" - ], - "Squash_leaf_curl_virus__IL2_49" : [ - "KM595107" - ], - "Hepatitis_B_virus__HBV10" : [ - "KC875311" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__TSV_Br" : [ - "KM007161" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C55" : [ - "KJ019035" - ], - "Human_coronavirus_OC43_OC43_human_USA_991_5_1999" : [ - "KF530081" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA6366_2009" : [ - "KJ627290" - ], - "Southern_rice_black_streaked_dwarf_virus__Jni4" : [ - "GQ472845" - ], - "Dengue_virus_2__DGV34" : [ - "JX286522" - ], - "Hepatitis_B_virus__NH30C_e43" : [ - "KJ173321" - ], - "Bacillus_phage_CampHawk" : [ - "NC_022761" - ], - "Rabies_virus_RV_97" : [ - "EF542830" - ], - "Bean_common_mosaic_virus__DXH006" : [ - "KM051431" - ], - "Dengue_virus_2__DENV_2_NI_BID_V2574_2005" : [ - "FJ850053" - ], - "Staphylococcus_phage_42E" : [ - "NC_007052" - ], - "Paspalum_striate_mosaic_virus__AU_QG15_2011" : [ - "JQ948072" - ], - "Japanese_encephalitis_virus__YN98A151" : [ - "JN381861" - ], - "Hepatitis_B_virus__A3_4" : [ - "GU815575" - ], - "Sleeping_disease_virus" : [ - "NC_003433" - ], - "Staphylococcus_phage_Ipla35" : [ - "NC_011612" - ], - "Rabies_virus_SAD_B19_10th" : [ - "EU877071" - ], - "Eel_River_basin_pequenovirus__c10494" : [ - "KP087941" - ], - "Japanese_encephalitis_virus__TC2009_1" : [ - "JF499790" - ], - "Enterovirus_A71__C2_FY08_C30" : [ - "GU198370" - ], - "Mycoplasma_bovis_PG45" : [ - "NC_014760" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G5570_1" : [ - "KR105310" - ], - "Faecalibacterium_prausnitzii_L2_6" : [ - "NC_021042" - ], - "Mikumi_yellow_baboon_virus_1__MYBV_M58" : [ - "NC_025112" - ], - "Dengue_virus_2__DC644Y12" : [ - "KM279542" - ], - "Mycobacterium_phage_Avani" : [ - "NC_023698" - ], - "Hepatitis_B_virus__LDA417" : [ - "KF849726" - ], - "Hepatitis_B_virus__HBV_13N" : [ - "EU660226" - ], - "Bean_golden_mosaic_virus__BR_Sag4_12" : [ - "KJ939782" - ], - "Eastern_equine_encephalitis_virus_EEEV_Culex_USA_T_2061_2003" : [ - "KJ469627" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2848_2005" : [ - "FJ898388" - ], - "Chicken_anemia_virus__13" : [ - "KJ728823" - ], - "Acinetobacter_baumannii_MDR_ZJ06" : [ - "NC_017172", - "NC_017171" - ], - "Watermelon_chlorotic_stunt_virus__JO1_126" : [ - "KM820183" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0092" : [ - "KP759650" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2292_2001" : [ - "FJ687446" - ], - "Foot_and_mouth_disease_virus___type_Asia_1__IND_182_02" : [ - "DQ989320" - ], - "Hepatitis_B_virus__MOD_4590" : [ - "GQ183452" - ], - "Cricetid_herpesvirus_2" : [ - "NC_015049", - "HQ698924" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4235_2006" : [ - "HM181937" - ], - "Hepatitis_B_virus__919043" : [ - "JN040776" - ], - "SARS_coronavirus_HKU_39849_HKU_39849_TCVSP_HARROD_00003" : [ - "GU553365" - ], - "Banana_bunchy_top_virus_Malaysian_strain" : [ - "AF102148" - ], - "Norovirus_Hu_GII_4_Orange_NSW001P_2008_AU_Hu_GII_4_Orange_NSW001P_2008_AU" : [ - "GQ845367" - ], - "Hepatitis_C_virus_JFH_1" : [ - "AB047639" - ], - "HBV_genotype_A1__Mart_B06" : [ - "HE974363" - ], - "Bluetongue_virus_21__CSIRO_154" : [ - "JX272418" - ], - "Culex_flavivirus_Toyama740" : [ - "AB701772" - ], - "Dengue_virus_1__DENV_1_MX_BID_V7605_2008" : [ - "KJ189336" - ], - "Cauliflower_mosaic_virus__IRNWKB15" : [ - "KF357598" - ], - "Norovirus_Hu_GII_3_Jingzhou_2013402_CHN_Hu_GII_3_Jingzhou_2013402_CHN" : [ - "KF306213" - ], - "Newcastle_disease_virus__Chicken_China_Hebei_01_2012" : [ - "KC542914" - ], - "Maize_streak_virus__UIga_243" : [ - "EF547116" - ], - "Hepatitis_B_virus__I64" : [ - "FJ562239" - ], - "Usutu_virus_V93" : [ - "KJ438746" - ], - "Suid_herpesvirus_1_TJ" : [ - "KJ789182" - ], - "Cryphonectria_hypovirus_4_SR2" : [ - "NC_006431" - ], - "Culex_flavivirus__DG1068" : [ - "JQ308189" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V356_2003" : [ - "EU155309" - ], - "Prevotella_denticola_F0289" : [ - "NC_015311" - ], - "Coxsackievirus_A16__FJ09_01" : [ - "KF193628" - ], - "Vesicular_exanthema_of_swine_virus" : [ - "NC_002551" - ], - "Bacillus_thuringiensis_Bt407" : [ - "NC_018879", - "NC_018877", - "NC_018882", - "NC_018886", - "NC_018884", - "NC_018878", - "NC_018881", - "NC_018885", - "NC_018883", - "NC_018880" - ], - "Foot_and_mouth_disease_virus___type_A__IND_437_2008" : [ - "HQ832591" - ], - "Maize_streak_virus__MSV_A_ZA_MitC_g129_2006" : [ - "FJ882125" - ], - "Human_herpesvirus_5_HAN3" : [ - "JX512201" - ], - "Southern_rice_black_streaked_dwarf_virus__Son_La2" : [ - "KM454853" - ], - "Salmonid_alphavirus_subtype_3__SAV3_9_R_10" : [ - "KC122919" - ], - "Tomato_yellow_leaf_curl_virus__HNZZ158" : [ - "JQ004028" - ], - "Human_papillomavirus_type_18__Qv29226" : [ - "KC470208" - ], - "Arenavirus_H0380005_AV_H0380005" : [ - "EU910959" - ], - "Japanese_encephalitis_virus_K94P05" : [ - "AF045551" - ], - "Norovirus_Hu_GII_14_8610_Saga_2008_JPN_Hu_GII_14_8610_Saga_2008_JPN" : [ - "GU594162" - ], - "Bat_SARS_coronavirus_HKU3_9_HKU3_9" : [ - "GQ153544" - ], - "Tobacco_curly_shoot_betasatellite__Y291" : [ - "AM260735" - ], - "Human_rhinovirus_A36" : [ - "DQ473505" - ], - "Sweet_potato_leaf_curl_virus_Pernambuco_SPLCV_PE_BR_Cau1_09" : [ - "HQ393462" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9554_2013" : [ - "KJ643586" - ], - "Hepatitis_B_virus__I_T88" : [ - "GU456680" - ], - "Alkhumra_hemorrhagic_fever_virus_200201032" : [ - "JF416949" - ], - "Hepatitis_B_virus__B140" : [ - "EU939620" - ], - "Human_bocavirus_2b_NI_HBoV2B_NI_213" : [ - "FJ973560" - ], - "Plum_pox_virus_PPV_D_Ou17" : [ - "AB576071" - ], - "Bean_common_mosaic_virus__DXH015" : [ - "KJ807805" - ], - "Cucumber_mosaic_virus_satellite_RNA_PoSA5" : [ - "AB448703" - ], - "Tomato_yellow_leaf_curl_Kanchanaburi_virus_Kanchanaburi" : [ - "DQ169054" - ], - "Hepatitis_B_virus__I108" : [ - "FJ562335" - ], - "Newcastle_disease_virus_NDV08_004" : [ - "FJ794269" - ], - "Human_papillomavirus_type_16__Rw677" : [ - "HQ644289" - ], - "Hepatitis_B_virus__dxn1094" : [ - "KC774496" - ], - "Cowpea_severe_leaf_curl_associated_DNA_beta" : [ - "NC_006952" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V422_2002" : [ - "EU482834" - ], - "Human_parechovirus_1__550163" : [ - "GQ183021" - ], - "Tomato_leaf_curl_Palampur_virus__Punjab" : [ - "KC456161", - "KC456162" - ], - "Burkholderia_xenovorans_LB400" : [ - "NC_007953", - "NC_007951", - "NC_007952" - ], - "Hepatitis_B_virus_Ehi_IK_lam_5_1" : [ - "AB195942" - ], - "Hepatitis_B_virus__CHI8" : [ - "FJ709464" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo195_08" : [ - "KC706558" - ], - "Francisella_tularensis_holarctica_FSC200" : [ - "NC_019551" - ], - "Entebbe_bat_virus_UgIL_30" : [ - "NC_008718" - ], - "West_Nile_virus__WNV_1_US_BID_V6380_2001" : [ - "KJ501269" - ], - "Porcine_epidemic_diarrhea_virus_USA_Minnesota71_2013" : [ - "KJ645706" - ], - "Japanese_encephalitis_virus_JEV_sw_Okinawa_372_2008" : [ - "AB471668" - ], - "Rabbit_calicivirus_Australia_1_MIC_07__MIC_07" : [ - "NC_011704" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3498K_2002" : [ - "JN989437" - ], - "Ageratum_yellow_leaf_curl_betasatellite__Wellington" : [ - "KC305084", - "KC305087" - ], - "Potato_mop_top_virus__Swedish___Sw" : [ - "NC_003725" - ], - "Maize_streak_virus__MSV_A_GH_gh120_Kum_2010" : [ - "KJ699314" - ], - "Wheat_dwarf_India_virus__Mohali" : [ - "KJ028209" - ], - "Hepatitis_delta_virus_Lebanon_1" : [ - "HPDCIAA" - ], - "Tobacco_leaf_curl_Yunnan_virus__Y136" : [ - "NC_004356" - ], - "SARS_coronavirus_HSZ_Cc__HSZ_Cc" : [ - "AY394995" - ], - "Hepatitis_E_virus__HE_JK4" : [ - "AB099347" - ], - "Human_immunodeficiency_virus_1__WC10P_8" : [ - "AY314050" - ], - "Dengue_virus_2__DF401" : [ - "FM210216" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__Myanmar___TLCV_MM" : [ - "AF206674" - ], - "Hepatitis_B_virus__HBV_10TA" : [ - "EU564822" - ], - "Human_poliovirus_1_NIE1218341" : [ - "KJ170482" - ], - "Hepatitis_E_virus__HEVNE8L" : [ - "HPEHEV" - ], - "Beet_black_scorch_virus__Ir_Ksh6" : [ - "FN543468" - ], - "Hepatitis_C_virus__NK46" : [ - "EU158186" - ], - "Chickpea_chlorosis_virus_E__CpCV_E_AU_3498Ea_2002" : [ - "JN989435" - ], - "Hepatitis_B_virus__Ran22" : [ - "EF103276" - ], - "Leptothrix_cholodnii_SP_6" : [ - "NC_010524" - ], - "Hepatitis_B_virus__Vac04_C_m612" : [ - "KJ173394" - ], - "Human_mastadenovirus_C_human_USA_UFL_Adv6_2005_6_P6H6F6" : [ - "KF268129" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SX_09" : [ - "HQ843181" - ], - "Nhumirim_virus_BrMS_MQ10" : [ - "NC_024017" - ], - "Human_immunodeficiency_virus_1__04ZAPS202B1" : [ - "DQ093598" - ], - "Plum_pox_virus_PPV_D_Ak1" : [ - "AB576045" - ], - "Dengue_virus_2__DC596Y12" : [ - "KM279587" - ], - "Hepatitis_B_virus__P127" : [ - "GQ477459" - ], - "Mycobacterium_phage_Daenerys" : [ - "NC_022068" - ], - "Rotavirus_A_RVA_Human_wt_COD_KisB554_2010_G8P_6" : [ - "KJ870898", - "KJ870890", - "KJ870889", - "KJ870894", - "KJ870893", - "KJ870897", - "KJ870896", - "KJ870891" - ], - "Hepatitis_B_virus_037" : [ - "AB900113" - ], - "Human_immunodeficiency_virus_1__05MYKL007_1" : [ - "DQ366659" - ], - "Sewage_associated_circular_DNA_virus_20__SaCV_20_NZ_BS3900_2012" : [ - "NC_026263" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1662_2007" : [ - "FJ182030" - ], - "Hepatitis_B_virus__cww1074" : [ - "KC774265" - ], - "Chloroflexus_aurantiacus_J_10_fl" : [ - "NC_010175" - ], - "Soybean_dwarf_virus_DS_HS97_8" : [ - "AB038149" - ], - "Tobacco_mosaic_virus__Yongren_1" : [ - "HE818457" - ], - "Norovirus_Hu_GI_1_CHA6A003_20091104_2009_USA_Hu_GI_1_CHA6A003_20091104_2009_USA" : [ - "KF039737" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_GT02_2011" : [ - "KM188454" - ], - "Newcastle_disease_virus_APMV_1_chicken_Brazil_SJM_75" : [ - "KJ123642" - ], - "Hepatitis_B_virus__Leb31" : [ - "JN642141" - ], - "Blackberry_chlorotic_ringspot_virus" : [ - "NC_011553", - "NC_011555", - "NC_011554" - ], - "Papiine_herpesvirus_2_OU2_5" : [ - "KF908241" - ], - "Hepatitis_C_virus_subtype_6l__537796" : [ - "EF424628" - ], - "Methanococcoides_burtonii_DSM_6242" : [ - "NC_007955" - ], - "Newcastle_disease_virus_LaSota_VRDC_Clone_LWS8_P3" : [ - "KJ563938" - ], - "Burkholderia_phage_KS10" : [ - "NC_011216" - ], - "Human_poliovirus_1__RUS39270" : [ - "KC880370" - ], - "Hepatitis_B_virus_494_22" : [ - "KR013939" - ], - "Dengue_virus_2__DENV_2_US_BID_V1464_2000" : [ - "EU687225" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1312_2007" : [ - "EU482630" - ], - "Prochlorococcus_phage_MED4_213_MED4_213" : [ - "NC_020845" - ], - "African_cassava_mosaic_virus__K1J16" : [ - "JN053424" - ], - "Hepatitis_B_virus__TK67" : [ - "JF754607" - ], - "Mamestra_brassicae_multiple_nucleopolyhedrovirus_CHb1" : [ - "JX138237" - ], - "Kyasanur_forest_disease_virus_W_377" : [ - "JF416960" - ], - "Hepatitis_B_virus__MY790800" : [ - "KJ803763" - ], - "BK_polyomavirus__FIN_13" : [ - "AB260028" - ], - "Measles_virus_strain_MVi_New_York_USA_26_09_3_MVi_New_York_USA_26_09_3" : [ - "JN635402" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3808_2008" : [ - "GU131905" - ], - "Hepatitis_B_virus__AD2009" : [ - "JN792901" - ], - "Cotton_leaf_curl_Burewala_alphasatellite__Mohali" : [ - "KC305094" - ], - "Monkeypox_virus__DRC_07_0662" : [ - "JX878429" - ], - "Human_immunodeficiency_virus_1__mIDU106" : [ - "AB097869" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_62_2013" : [ - "KJ672480" - ], - "Measles_virus_genotype_D8_MVi_BritishColumbia_CAN_13_10_1_D8" : [ - "KJ018971" - ], - "Arabis_mosaic_virus_small_satellite_RNA_barley_CHE_1991__ba" : [ - "NC_018451" - ], - "Human_papillomavirus_type_125_SIBX9" : [ - "FN547152" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1884_2008" : [ - "FJ410230" - ], - "Cucumber_mosaic_virus__Mb" : [ - "GU002299", - "GU002300" - ], - "Chikungunya_virus__LKEHCH13908" : [ - "FJ445426" - ], - "Bacillus_phage_Pony" : [ - "NC_022770" - ], - "Sacbrood_virus_K5B" : [ - "JX270797" - ], - "Tobacco_streak_virus__1973" : [ - "JX463334", - "JX463336", - "JX463335" - ], - "West_Nile_virus__WNV_1_Mus_BID_V5142_brain" : [ - "JF899535" - ], - "Tomato_yellow_leaf_curl_Mali_virus_Mali_Cameroon_Gashiga_Pepper2_2007" : [ - "FM212661" - ], - "Houston_virus_16740" : [ - "KC807177" - ], - "Simian_immunodeficiency_virus_SIVwrc_97CM14" : [ - "AM745105" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NVDC_GD2_2011" : [ - "JQ715697" - ], - "Hepatitis_C_virus_genotype_4__ED43" : [ - "NC_009825" - ], - "Rice_yellow_mottle_virus__Tz16" : [ - "JX961551" - ], - "Dengue_virus_2__E1379Y12" : [ - "KM279598" - ], - "Porcine_circovirus_2__Vos_26890_06" : [ - "EU545551" - ], - "Clostridium_botulinum_A_Hall" : [ - "NC_009698" - ], - "Dengue_virus_2__DENV_2_MX_BID_V2953_2002" : [ - "FJ898438" - ], - "Hepatitis_B_virus__B2_7" : [ - "GU815600" - ], - "Pseudomonas_aeruginosa_PAO581" : [ - "NC_022361" - ], - "Rhodococcus_phage_REQ2" : [ - "NC_016652" - ], - "Schlumbergera_virus_X_K11" : [ - "NC_011659" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD243_2013" : [ - "KM229882" - ], - "Bluetongue_virus__KOL_2" : [ - "AM261981" - ], - "Squash_mild_leaf_curl_virus__Imperial_Valley" : [ - "NC_004645", - "NC_004646" - ], - "Wolbachia_endosymbiont_TRS_of_Brugia_malayi" : [ - "NC_006833" - ], - "Maize_streak_virus__MSV_A_CM_Baf5_Cam22_2008" : [ - "HQ693323" - ], - "South_African_cassava_mosaic_virus__MG_MG574A1_11" : [ - "KJ888046" - ], - "Hepatitis_B_virus__w40" : [ - "EU787443" - ], - "Tobacco_yellow_dwarf_virus" : [ - "NC_003822" - ], - "Pennisetum_mosaic_virus__CD4" : [ - "JX070155" - ], - "West_Nile_virus__WNV_1_US_BID_V4629_2008" : [ - "JN183886" - ], - "West_Nile_virus__WNV_1_US_BID_V6173_2001" : [ - "KJ501233" - ], - "Streptococcus_pneumoniae_Hungary19A_6" : [ - "NC_010380" - ], - "Serratia_odorifera_4Rx13" : [ - "NC_021594", - "NC_021591" - ], - "Hepatitis_B_virus__No29" : [ - "AB697507" - ], - "Maize_streak_virus__UKas_71" : [ - "EF547078" - ], - "Hepatitis_C_virus_recombinant_2_5" : [ - "AM408911" - ], - "Hepatitis_B_virus__Ag05" : [ - "KJ843167" - ], - "Hepatitis_B_virus__A212" : [ - "HM363608" - ], - "Owenweeksia_hongkongensis_DSM_17368" : [ - "NC_016599" - ], - "Macroptilium_yellow_spot_virus__BR_Pdi1_10" : [ - "JN419020" - ], - "Echovirus_E25_JV_4" : [ - "AY302549" - ], - "Wheat_dwarf_virus__Winter_wheat_111" : [ - "KJ473701" - ], - "Tomato_leaf_curl_Philippines_virus__P102" : [ - "EU487037" - ], - "Enterovirus_A71_BJ110" : [ - "HM002486" - ], - "Enterovirus_C__V2_Tsi_3" : [ - "HQ738294" - ], - "Porcine_circovirus_2__PE" : [ - "FJ483938" - ], - "Cucumber_mosaic_virus_FT" : [ - "MCVCMVB" - ], - "Porcine_circovirus_2__DBS11" : [ - "KJ680359" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_LA2_103_2012" : [ - "KJ672451" - ], - "Porcine_circovirus_2__SPA1" : [ - "AF201308" - ], - "Foot_and_mouth_disease_virus___type_O_UKG_7038_2001" : [ - "DQ404169" - ], - "Norovirus_Hu_GII_4_Saga5_2008_JP_Hu_GII_4_Saga5_2008_JP" : [ - "AB541338" - ], - "East_African_cassava_mosaic_virus__CF_CF105BE_07" : [ - "KM885999" - ], - "Human_immunodeficiency_virus_1__CH440_w4" : [ - "KC156219" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE0586_2009_A" : [ - "KJ627410" - ], - "Weissella_koreensis_KACC_15510" : [ - "NC_015756", - "NC_015759" - ], - "Geobacillus_virus_E2" : [ - "NC_009552" - ], - "Measles_virus_IMB_1" : [ - "FJ161211" - ], - "Tomato_yellow_leaf_curl_virus__SDDZ" : [ - "HM627880" - ], - "Porcine_circovirus_2_05_32650" : [ - "EF394779" - ], - "Rubella_virus_RVi_Dangshan_Anhui_CHN_39_00_3_1F" : [ - "JQ624624" - ], - "Tepidanaerobacter_acetatoxydans_Re1" : [ - "NC_019954" - ], - "Eragrostis_minor_streak_virus" : [ - "NC_015553" - ], - "Tomato_leaf_curl_Joydebpur_betasatellite" : [ - "NC_010236", - "AJ966244" - ], - "Lactobacillus_phage_Ldl1__Ldl1" : [ - "NC_026609" - ], - "Human_immunodeficiency_virus_1__05_BR_NSP24" : [ - "GQ365650" - ], - "Measles_virus__97_45881" : [ - "DQ227319" - ], - "Hepatitis_B_virus__EICI_57" : [ - "KF679990" - ], - "Hepatitis_A_virus__AH2" : [ - "AB020565" - ], - "African_cassava_mosaic_virus__CF_CF104BE_07" : [ - "KJ887614" - ], - "African_cassava_mosaic_virus__MG_MG306A2_10" : [ - "KJ887974" - ], - "Solenopsis_invicta_virus_3__DM" : [ - "NC_012531" - ], - "Tobacco_bushy_top_virus__YYXi" : [ - "FN597051" - ], - "Duck_reovirus_091" : [ - "JX478255", - "JX478259", - "JX478251", - "JX478254", - "JX478253", - "JX478252", - "JX478250", - "JX478258", - "JX478257" - ], - "Norovirus_Hu_GII_4_Chiba5_2007_JP_Hu_GII_4_Chiba5_2007_JP" : [ - "AB541234" - ], - "Porcine_circovirus_2_CZ1005" : [ - "JX948769" - ], - "Dengue_virus_2__DENV_2_NI_BID_V4636_2005" : [ - "HQ541793" - ], - "Bean_yellow_mosaic_virus_IbG" : [ - "AB079887" - ], - "Hepatitis_B_virus__Ag57" : [ - "KJ843216" - ], - "Tobacco_leaf_curl_Yunnan_virus_associated_DNA_1__Y276" : [ - "AJ888455" - ], - "Merremia_mosaic_virus__PR80_H3" : [ - "DQ644557" - ], - "Porcine_circovirus_2_Fh15" : [ - "AY321992" - ], - "Porcine_circovirus_2_Porcine_circovirus_Type_II" : [ - "AF055394", - "AF055392", - "AF055393", - "AF055391" - ], - "Bovine_herpesvirus_4" : [ - "NC_002665" - ], - "Dengue_virus_1__BR_01_MR" : [ - "AF513110" - ], - "Maize_streak_virus__MSV_A_ZA_Mal2_T4_2007" : [ - "HQ693423" - ], - "Malvastrum_yellow_vein_betasatellite__Y217" : [ - "AJ971700" - ], - "African_cassava_mosaic_virus__ACMV__NG_Sb_07" : [ - "EU685325" - ], - "Hepatitis_B_virus_1130_13a" : [ - "KR013998" - ], - "Human_papillomavirus_type_58__Rw792" : [ - "HQ537775" - ], - "Hepatitis_B_virus__S943_5" : [ - "FJ032351" - ], - "Tomato_yellow_leaf_curl_virus__SD_LCXX" : [ - "KM435320" - ], - "Lamium_mild_mosaic_virus__DSMZ_PV_0454" : [ - "NC_023016", - "NC_023017" - ], - "Acidiphilium_multivorum_AIU301" : [ - "NC_015188", - "NC_015186", - "NC_015180", - "NC_015189", - "NC_015178", - "NC_015179", - "NC_015182", - "NC_015181", - "NC_015187" - ], - "Aedes_albopictus_densovirus_2" : [ - "NC_004285" - ], - "Listeria_phage_A118" : [ - "NC_003216" - ], - "Hepatitis_B_virus_JH4_1896_G" : [ - "EF137802" - ], - "Acyrthosiphon_pisum_virus" : [ - "NC_003780" - ], - "Human_respiratory_syncytial_virus__Kilifi_9465_11_RSVB_2010" : [ - "KP317941" - ], - "Bovine_enterovirus_strain_SL305__SL305" : [ - "AF123433" - ], - "Western_equine_encephalitis_virus_93A30" : [ - "KJ554982" - ], - "Barley_yellow_mosaic_virus_BaYMV_III" : [ - "AB430768", - "AB430767" - ], - "Porcine_circovirus_2_GXFS1112_1" : [ - "JX948772" - ], - "Cellulophaga_phage_phi38_1_phi38_1" : [ - "NC_021796" - ], - "Peste_des_petits_ruminants_virus__CH_HNNY_2014" : [ - "KM089830" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V697_2006" : [ - "EU255941" - ], - "Porcine_circovirus_2_PT_4221_08" : [ - "HQ831534" - ], - "Feline_foamy_virus__FFVpc_X102" : [ - "KC292054" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7768_2009" : [ - "KJ627293" - ], - "African_horse_sickness_virus__RSArrah_02" : [ - "KF446257", - "KF446266" - ], - "Human_coronavirus_OC43_1783A_10" : [ - "KP198611" - ], - "JC_polyomavirus__ME_5" : [ - "AB081021" - ], - "Methanospirillum_hungatei_JF_1" : [ - "NC_007796" - ], - "European_mountain_ash_ringspot_associated_virus__E52279" : [ - "HG799714" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLU8917_2007" : [ - "KJ672546" - ], - "Brachyspira_hyodysenteriae_WA1" : [ - "NC_012225", - "NC_012226" - ], - "Bovine_viral_diarrhea_virus_1_ILLC" : [ - "PTU86599" - ], - "Porcine_circovirus_2__XQ212" : [ - "KJ680358" - ], - "European_bat_lyssavirus_1__RV9__9395GER" : [ - "NC_009527" - ], - "Human_immunodeficiency_virus_1__ML1990PCR" : [ - "EU110097" - ], - "Porcine_circovirus_2__HN1204" : [ - "KJ680360" - ], - "Raspberry_bushy_dwarf_virus__GR_2" : [ - "EU796087" - ], - "Crow_polyomavirus" : [ - "NC_007922" - ], - "Human_immunodeficiency_virus_1__BREPM275" : [ - "AY771592" - ], - "Measles_virus__D_V_S" : [ - "EU293548" - ], - "Trichodysplasia_spinulosa_associated_polyomavirus__1211" : [ - "KF444099" - ], - "Venezuelan_equine_encephalitis_virus_83U434" : [ - "VEU55362" - ], - "Human_immunodeficiency_virus_1__00GBAC4001" : [ - "FJ711703" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V93_2003" : [ - "EU155246" - ], - "Hepatitis_B_virus_C_1858_sa16" : [ - "AF223965" - ], - "Norovirus_GII_17__GII_Hu_HKG_2014_GII_17_CUHK_NS_463" : [ - "KP998539" - ], - "Sambar_deer_coronavirus_US_OH_WD388_1994" : [ - "FJ425189" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V392_2006" : [ - "EU256046" - ], - "Bean_golden_mosaic_virus__BR_Sag7_12" : [ - "KJ939785" - ], - "Luffa_begomovirus_associated_DNA_beta" : [ - "NC_008031" - ], - "Louping_ill_virus_369_T2" : [ - "NC_001809" - ], - "Bovine_leukemia_virus__469_deficient_type" : [ - "LC005616" - ], - "Actinobacillus_pleuropneumoniae_serovar_3_JL03" : [ - "NC_010278" - ], - "Human_papillomavirus_type_9" : [ - "NC_001596" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P1pp1" : [ - "FJ882928" - ], - "Sweet_potato_feathery_mottle_virus_S" : [ - "NC_001841" - ], - "Newcastle_disease_virus_NA_1M" : [ - "KJ528559" - ], - "Carp_picornavirus_1__F37_06" : [ - "NC_023162" - ], - "Human_enterovirus_C104_Pavia68_10804B" : [ - "JX982258" - ], - "Adeno_associated_virus___1" : [ - "NC_002077" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG239A13_10" : [ - "KJ887962" - ], - "Palyam_virus" : [ - "NC_005987", - "NC_005995", - "NC_005991", - "NC_005989", - "NC_005990", - "NC_005993", - "NC_005994", - "NC_005988", - "NC_005992", - "NC_005986" - ], - "Tomato_severe_rugose_virus__BR_Car221_08" : [ - "KC706618" - ], - "New_World_begomovirus_associated_satellite_DNA_isolate_177H3__177H3" : [ - "NC_016963" - ], - "Rotavirus_A_RVA_Cow_wt_ZAF_1605_2007_G6P_5" : [ - "JN831231", - "JN831227", - "JN831230", - "JN831228", - "JN831235", - "JN831232", - "JN831234", - "JN831236", - "JN831233", - "JN831229" - ], - "Cauliflower_mosaic_virus__IRN21" : [ - "AB863156" - ], - "West_Nile_virus__WNV_1_US_BID_V6389_2003" : [ - "KJ501273" - ], - "Sclerotinia_sclerotiorum_hypovirus_2__SX247" : [ - "KJ561218" - ], - "Fusobacterium_3_1_36A2" : [ - "NC_022196" - ], - "Faecal_associated_gemycircularvirus_10__P14" : [ - "NC_025730" - ], - "Hepatitis_B_virus__26_S541" : [ - "EU570068" - ], - "Tomato_rugose_yellow_leaf_curl_virus_A_U5" : [ - "JN381827", - "JN381825" - ], - "Hepatitis_B_virus_580_8a" : [ - "KR013816" - ], - "Tick_borne_encephalitis_virus_Lesopark_11" : [ - "KJ701416" - ], - "Simian_virus_40_PML_1EK" : [ - "AY271816" - ], - "Dengue_virus_2__DENV_2_PE_FPI1049_2011" : [ - "KC294206" - ], - "Norovirus_Hu_GII_20189_2009_VNM_Hu_GII_20189_2009_VNM" : [ - "KC409270" - ], - "Encephalomyocarditis_virus_Ruckert" : [ - "NC_001479" - ], - "Hepatitis_B_virus_1303_33" : [ - "KR013853" - ], - "Neorickettsia_sennetsu_Miyayama" : [ - "NC_007798" - ], - "Pseudomonas_fluorescens_Pf0_1" : [ - "NC_007492" - ], - "Hepatitis_B_virus_HBV_P29" : [ - "KC510651" - ], - "Japanese_encephalitis_virus__SD0810" : [ - "JF706286" - ], - "Hepatitis_B_virus__2" : [ - "EU579443", - "AY233280", - "AY661793" - ], - "Hepatitis_E_virus__HE_JA19" : [ - "AB220975" - ], - "South_African_cassava_mosaic_virus__MG_MG136A3_09" : [ - "KJ887928" - ], - "Newcastle_disease_virus_pigeon_Anhui_2369_2012" : [ - "KM374058" - ], - "Hepatitis_B_virus__S461_2" : [ - "FJ787447" - ], - "Dengue_virus_3__D3_H_IMTSSA_SRI_2000_1266" : [ - "NC_001475" - ], - "Hepatitis_B_virus__I_T77" : [ - "GU456646" - ], - "Hepatitis_B_virus__IND_2010_20" : [ - "KF214670" - ], - "Hepatitis_B_virus__patient_7N" : [ - "EU522070" - ], - "Human_bocavirus_GZ2011_04" : [ - "JN128955" - ], - "Campylobacter_lari_RM2100" : [ - "NC_012040", - "NC_012039" - ], - "Hepatitis_B_virus_wild_type__ayw__patient_2" : [ - "X97848" - ], - "Kalanchoe_latent_virus__PV_0290B" : [ - "NC_013006" - ], - "Aroa_virus_Macaray_01809" : [ - "KF917535" - ], - "Hepatitis_B_virus__J87" : [ - "GQ377556" - ], - "Honeysuckle_yellow_vein_virus__DJ" : [ - "HQ189431" - ], - "Japanese_encephalitis_virus__JEV_eq_India_H225_2009" : [ - "JX131374" - ], - "Tomato_yellow_leaf_curl_virus__SDHZ" : [ - "HM627882" - ], - "Human_herpesvirus_5_BE_5_2010" : [ - "KP745663" - ], - "Grapevine_leafroll_associated_virus_4_9_Man086" : [ - "KJ810572" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_16__AHEaCV_16_NZ_3310C3_2012" : [ - "KM874341" - ], - "Enterovirus_A71_EV71_Homo_sapiens_KHM_378_2012" : [ - "KP308449" - ], - "JC_polyomavirus__ID_2" : [ - "AB198949" - ], - "Porcine_circovirus_2__K349" : [ - "EU450584" - ], - "Enterobacteria_phage_ST104" : [ - "NC_005841" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1012_2006" : [ - "EU482456" - ], - "Ralstonia_phage_RSA1" : [ - "NC_009382" - ], - "Hepatitis_B_virus__PNF5350" : [ - "KF779363" - ], - "Usutu_virus_V84" : [ - "KJ438720" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5514_2010" : [ - "JF937623" - ], - "Hepatitis_C_virus__QC429" : [ - "JF735137" - ], - "Wheat_streak_mosaic_virus" : [ - "NC_001886" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLE9956_2010" : [ - "KJ627297" - ], - "West_Nile_virus__CA_03_IMPR116" : [ - "JF703164" - ], - "SARS_coronavirus_MA15_ExoN1_MA15_ExoN1_mutant_P3pp10" : [ - "FJ882962" - ], - "Corchorus_yellow_vein_mosaic_virus__Maharashtra" : [ - "KC196077" - ], - "Infectious_salmon_anemia_virus__RPC_NB_02_0775_14" : [ - "DQ673253" - ], - "Bartonella_clarridgeiae_73" : [ - "NC_014932" - ], - "Hepatitis_B_virus__C122_2" : [ - "FJ899793" - ], - "Hepatitis_B_virus_99_24" : [ - "KR013883" - ], - "Listeria_monocytogenes_ATCC_19117" : [ - "NC_018584" - ], - "Equine_arteritis_virus__S3712" : [ - "GQ903799" - ], - "European_bat_lyssavirus_1__03002FRA" : [ - "EU293109" - ], - "Porcine_epidemic_diarrhea_virus_TC_PC180_P2" : [ - "KM392230" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_USA_86I_139A_01_1986" : [ - "KJ723475" - ], - "Human_poliovirus_2_NIE1118416" : [ - "KJ170544" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__Ingelvac_ATP" : [ - "DQ988080" - ], - "Human_immunodeficiency_virus_1__04ZASK152MB1" : [ - "DQ445631" - ], - "Dengue_virus_2__DENV_2_US_BID_V1373_1995" : [ - "EU569708" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4776_2009" : [ - "HM631858" - ], - "Tomato_yellow_leaf_curl_Thailand_virus_associated_DNA_1__Y70" : [ - "NC_005059" - ], - "Hepatitis_C_virus__QC58" : [ - "JF735138" - ], - "Enterobacteria_phage_ID45" : [ - "DQ079883" - ], - "East_African_cassava_mosaic_virus__YV" : [ - "AY795987" - ], - "Horsegram_yellow_mosaic_virus__french_bean" : [ - "AM932425", - "AM932426" - ], - "Chlamydophila_caviae_GPIC" : [ - "NC_004720", - "NC_003361" - ], - "Apricot_vein_clearing_associated_virus__VC" : [ - "NC_023295" - ], - "Tomato_yellow_leaf_curl_virus__Uiseong_41" : [ - "HM856919" - ], - "Human_bocavirus_3_HBoV3B_TU_A_210_07" : [ - "FJ973562" - ], - "Porcine_circovirus_2_HNyy_6b" : [ - "FJ870974" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2696_2006" : [ - "FJ882522" - ], - "Hirame_rhabdovirus_CA_9703" : [ - "NC_005093" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9529_2013" : [ - "KJ643573" - ], - "Soybean_mosaic_virus__WS132" : [ - "FJ640964" - ], - "Dengue_virus_1__DENV_1_PR_BID_V7704_2012" : [ - "KJ189350" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_96E_113_01_1996" : [ - "KP258708" - ], - "Hepatitis_B_virus__H2812" : [ - "KP322600" - ], - "Hepatitis_B_virus__0350_03" : [ - "DQ060829" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE7210_2009_A" : [ - "KJ627409" - ], - "Circoviridae_15_LDMD_2013" : [ - "NC_025719" - ], - "Staphylococcus_phage_55_3" : [ - "KR709303" - ], - "Snow_goose_hepatitis_B_virus__SGHBV1_15" : [ - "AF110997" - ], - "Echovirus_9_strain_Hill_prototype__Hill" : [ - "X84981" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V433_2006" : [ - "EU255940" - ], - "Newcastle_disease_virus__ndv52_Sarsa" : [ - "KM056350" - ], - "West_Nile_virus__M6019" : [ - "JF415930" - ], - "Foot_and_mouth_disease_virus___type_O__O_S06KOR_2002" : [ - "KF694736" - ], - "Duck_hepatitis_B_virus__ST10" : [ - "AY294028" - ], - "Duck_hepatitis_A_virus_1_GZ" : [ - "EU888310" - ], - "Synechococcus_phage_ACG_2014f__Syn7803US2" : [ - "KJ019092" - ], - "Hepatitis_C_virus_subtype_1a__99_28" : [ - "EU781767" - ], - "Hepatitis_B_virus__MY381508" : [ - "KJ803825" - ], - "Pan_troglodytes_verus_polyomavirus_1b__6520" : [ - "HQ385747" - ], - "gamma_proteobacterium_HdN1" : [ - "NC_014366" - ], - "Canine_parvovirus_2c__UY235" : [ - "KM457119" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL070A" : [ - "AB985301", - "AB985532" - ], - "Hepatitis_B_virus__SSC121" : [ - "KJ598696" - ], - "Newcastle_disease_virus_ND_03_044" : [ - "GQ338310" - ], - "Lisianthus_necrosis_virus__L" : [ - "DQ011234" - ], - "West_Nile_virus__WNV_1_US_BID_V6686_2004" : [ - "KJ501419" - ], - "Mycoplasma_hyopneumoniae_J" : [ - "NC_007295" - ], - "Human_coronavirus_NL63" : [ - "CS124012" - ], - "Cotton_leaf_curl_Multan_betasatellite__Pakistan_16_2_08" : [ - "FJ861372" - ], - "Avian_paramyxovirus_12__Wigeon_Italy_3920_1_2005" : [ - "NC_025363" - ], - "Tomato_common_mosaic_virus__BR_Coi23_07" : [ - "KC706576" - ], - "Hepatitis_B_virus__EICI_41" : [ - "KF679988" - ], - "Porcine_epidemic_diarrhea_virus_PEDV_7C" : [ - "KM609204" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9482_2013" : [ - "KJ643542" - ], - "Temperate_fruit_decay_associated_virus__MFBap2" : [ - "KR134325" - ], - "African_cassava_mosaic_virus__K4C1" : [ - "JN053430" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1063" : [ - "KR534530" - ], - "Blainvillea_yellow_spot_virus__BR_Vic21_10" : [ - "KC706527" - ], - "Propionibacterium_phage_PHL141N00__PHL141N00" : [ - "NC_027389" - ], - "Hepatitis_B_virus__HCUCH20" : [ - "HM585197" - ], - "Thermotoga_petrophila_RKU_1" : [ - "NC_009486" - ], - "Hazara_virus_JC280" : [ - "DQ076419", - "DQ813514" - ], - "Simian_enterovirus_46_OM22__P15" : [ - "AF326764" - ], - "Human_immunodeficiency_virus_1__X492" : [ - "AY227107" - ], - "Microviridae_Fen7895_21__Fen7895_21" : [ - "NC_027646" - ], - "Hepatitis_B_virus__dxn1020" : [ - "KC774472" - ], - "Tomato_leaf_curl_Taiwan_virus__H8_5" : [ - "GU723724" - ], - "Tomato_severe_rugose_virus__BR_Vic17_10" : [ - "JX865630" - ], - "Chum_salmon_reovirus_CS" : [ - "NC_007587", - "NC_007590", - "NC_007591", - "NC_007584", - "NC_007583", - "NC_007585", - "NC_007582", - "NC_007586", - "NC_007589", - "NC_007588", - "NC_007592" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Mayotte_YT26B24_2004" : [ - "JF909176" - ], - "Human_rotavirus_A_Wa_variant_TC_ParWa" : [ - "FJ423133", - "FJ423129", - "FJ423130", - "FJ423134", - "FJ423132", - "FJ423127", - "FJ423128", - "FJ423126", - "FJ423125", - "FJ423124", - "FJ423131" - ], - "Watermelon_mosaic_virus__C07_349" : [ - "JF273461" - ], - "Porcine_circovirus_2_BJ0401" : [ - "EF524515" - ], - "Human_immunodeficiency_virus_1__5048_91" : [ - "AY835761" - ], - "Panicum_streak_virus__I_KE_Nra2_g375" : [ - "GQ415400" - ], - "Maize_streak_virus__MSV_Sasri_G" : [ - "EU152255" - ], - "Watermelon_mosaic_virus__C06_666" : [ - "EU660588" - ], - "Hepatitis_B_virus__S1568" : [ - "FJ386685" - ], - "Fusarium_graminearum_hypovirus_2__FgHV2_JS16" : [ - "NC_026813" - ], - "Geobacillus_Y412MC52" : [ - "NC_014916", - "NC_014915" - ], - "Human_smacovirus_1__Virginia_2_2012_Chesapeake_J23" : [ - "KP233186" - ], - "Human_bocavirus__HK3" : [ - "EF450719" - ], - "Human_immunodeficiency_virus_1__93TH051" : [ - "AB220944" - ], - "Beet_black_scorch_virus__Ir_Sh1" : [ - "FN543471" - ], - "WU_Polyomavirus__B3655" : [ - "GU296373" - ], - "Pseudoalteromonas_phage_RIO_1" : [ - "NC_021300" - ], - "Hepatitis_B_virus__919011" : [ - "JN040808" - ], - "Hepatitis_E_virus__IND_HEV_AVH5_2010" : [ - "JF443721" - ], - "Torque_teno_sus_virus_1a__TTV1Fj3" : [ - "HM633252" - ], - "Human_metapneumovirus__TW05_00125" : [ - "EF535506" - ], - "Human_herpesvirus_8_JSC_1" : [ - "GQ994935" - ], - "WU_Polyomavirus__HN007" : [ - "KC571698" - ], - "Hepatitis_B_virus__4_S869" : [ - "EU560441" - ], - "Human_papillomavirus_type_16_ZG01_258" : [ - "JN565303" - ], - "Mumps_virus_Urabe_AM_9__parental_strain" : [ - "AB000388" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_63_68" : [ - "JX869185" - ], - "Dengue_virus_2__DENV_2_NI_BID_V1214_2007" : [ - "FJ478459" - ], - "Mamastrovirus_13__provided_by_Dr__D_R__Snodgrass__Moredun_Research_Institute__Edinburgh" : [ - "NC_002469" - ], - "Newcastle_disease_virus__ndv60_Avinew" : [ - "KM056356" - ], - "JC_polyomavirus__Han_1" : [ - "AB198944" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3397_2003" : [ - "GQ868573" - ], - "Newcastle_disease_virus_pigeon_Guangxi_1015_2013" : [ - "KM374059" - ], - "Human_papillomavirus_type_33__Qv32431" : [ - "HQ537701" - ], - "Chicken_anemia_virus_CUX_1" : [ - "A48606" - ], - "East_African_cassava_mosaic_Kenya_virus__EACMKV__K310" : [ - "AJ717575" - ], - "Zaire_ebolavirus__Ebolavirus_H_sapiens_wt_SLE_2014_Makona_J0088" : [ - "KP759648" - ], - "Bean_golden_mosaic_virus__BR_Mur12_11" : [ - "KJ939765" - ], - "Banana_streak_virus__GD" : [ - "DQ451009" - ], - "Myxoma_virus_Aust_Woodstock_1_3_94_WS1_328" : [ - "JX565579" - ], - "Papaya_ringspot_virus_P_P_DEL" : [ - "EF017707" - ], - "Cotton_leaf_curl_Burewala_alphasatellite__Bihar" : [ - "HM004548" - ], - "Hepatitis_B_virus__CHN_QH38" : [ - "DQ478898" - ], - "Hepatitis_B_virus__P23" : [ - "JX898695", - "EU859912", - "GQ477471" - ], - "Porcine_circovirus_2__BJ05" : [ - "FJ644557" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FLI3275_2010" : [ - "KJ672568" - ], - "Burkholderia_phage_BcepNY3" : [ - "NC_009604" - ], - "Saccharomonospora_viridis_DSM_43017" : [ - "NC_013159" - ], - "African_cassava_mosaic_virus__Nigeria_Ogo___Ogoroco" : [ - "AJ427910", - "AJ427911" - ], - "Hepatitis_B_virus__D_NZL_MO70_1984" : [ - "HQ700471" - ], - "Cyanophage_MED4_117_MED4_117" : [ - "NC_020857" - ], - "Human_papillomavirus_type_71__Qv23143" : [ - "AY330623" - ], - "Tahyna_virus_181" : [ - "KF361878" - ], - "Hepatitis_B_virus__919075" : [ - "JN040794" - ], - "Tobacco_streak_virus__WC" : [ - "NC_003842", - "NC_003845" - ], - "Human_immunodeficiency_virus_1__04ZAPS206B1" : [ - "DQ164126" - ], - "West_Nile_virus__WNV_1_US_BID_V7820_2011" : [ - "KJ501536" - ], - "Human_papillomavirus_type_45__Qv31035" : [ - "EF202166" - ], - "Tomato_leaf_curl_China_betasatellite__Y297" : [ - "AM260732" - ], - "Borrelia_burgdorferi_N40" : [ - "NC_017418", - "NC_013130", - "NC_017400", - "NC_017420", - "NC_017399", - "NC_017421", - "NC_017419", - "NC_017422", - "NC_017424", - "NC_017416", - "NC_017423", - "NC_017401", - "NC_017417", - "NC_017402", - "NC_017415", - "NC_017414", - "NC_017398" - ], - "South_African_cassava_mosaic_virus__MG_MG712A6_11" : [ - "KJ888093" - ], - "Tomato_spotted_wilt_virus__YNgp" : [ - "KM657116", - "KM657119", - "KM657122" - ], - "Mycobacterium_phage_Solon" : [ - "NC_011267" - ], - "Hepatitis_B_virus__MGL110F" : [ - "AB270534" - ], - "SARS_coronavirus_ExoN1_ExoN1_mutant_P3pp46" : [ - "FJ882954" - ], - "Human_metapneumovirus_HMPV_AUS_143003542_2003_A" : [ - "KC403982" - ], - "Foot_and_mouth_disease_virus___type_O__SKR_4_2010" : [ - "KF112886" - ], - "Hepatitis_B_virus__I_WA1098A" : [ - "HQ700549" - ], - "Maize_streak_virus__MSV_A_CF_Ban2_Car37_2008" : [ - "HQ693293" - ], - "Tomato_leaf_curl_Vietnam_virus_satellite_DNA_beta_VRQ__Vien_Rau_Qua__VRQ" : [ - "EU189148" - ], - "Porcine_circovirus_2_JXI" : [ - "AY686762" - ], - "Porcine_epidemic_diarrhea_virus_GER_L00719_2014" : [ - "LM645058" - ], - "Escherichia_phage_D108" : [ - "NC_013594" - ], - "Beet_necrotic_yellow_vein_virus_C_Huhhot" : [ - "AJ236895" - ], - "Hepatitis_B_virus_468_2" : [ - "KR013933" - ], - "Dengue_virus_2__DF380" : [ - "FM210215" - ], - "Squash_leaf_curl_China_virus__GZ01" : [ - "KC171648", - "KC171649" - ], - "Human_herpesvirus_3_VZVi_Erfurt_GER_44_07_V_5__1805_2007" : [ - "JN704708" - ], - "SARS_coronavirus_BJ01__BJ01" : [ - "AY278488" - ], - "Mycobacterium_phage_Goku" : [ - "NC_022085" - ], - "East_African_cassava_mosaic_Cameroon_virus__MG_MG694B2_11" : [ - "KJ888091" - ], - "Dengue_virus_3__DENV_3_CO_BID_V3404_2006" : [ - "GU131954" - ], - "Bluetongue_virus_4__TURvvvv_04" : [ - "AJ586680" - ], - "Cyclovirus_VN__hcf4" : [ - "KF031468" - ], - "Porcine_circovirus_2__PT6" : [ - "HQ202944" - ], - "Pigeon_paramyxovirus_1_pi_CH_LGD_110208" : [ - "JX486550" - ], - "Bluetongue_virus_1__TUN2011" : [ - "KJ577108", - "KJ577106", - "KJ577109", - "KJ577112", - "KJ577113", - "KJ577110", - "KJ577107", - "KJ577111", - "KJ577104" - ], - "Pig_stool_associated_circular_ssDNA_virus__JIANGX1" : [ - "JX305994" - ], - "Euphorbia_yellow_mosaic_virus__EuYMV__BR_3539AB1_09" : [ - "JX415200" - ], - "Equine_infectious_anemia_virus_DV_DV31_2" : [ - "HM141919" - ], - "Canine_parvovirus_2c__UY52" : [ - "KM457105" - ], - "Francisella_noatunensis_orientalis_LADL_07_285A" : [ - "NC_023029" - ], - "Monkeypox_virus_V79_I_005" : [ - "HQ857562" - ], - "South_African_cassava_mosaic_virus__MG_MG251A8_10" : [ - "KJ887686" - ], - "Human_papillomavirus_type_39__Tw562" : [ - "KC470243" - ], - "Dengue_virus_2_ThNH45_93" : [ - "AF169680" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4790_2009" : [ - "HM631864" - ], - "Lactococcus_Phage_ASCC324" : [ - "JQ740793" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4088_2008" : [ - "GU131831" - ], - "West_Nile_virus_Cz_13_502" : [ - "KM203863" - ], - "Hepatitis_C_virus_subtype_1b__04_23" : [ - "EU781829" - ], - "Coxsackievirus_A24_INDNIV1044161LV530" : [ - "KF667360" - ], - "Human_immunodeficiency_virus_1__03ZAPS043MB1" : [ - "DQ351227" - ], - "Beet_western_yellows_virus_USA" : [ - "NC_004756" - ], - "Sudan_ebolavirus___Nakisamata_Sudan" : [ - "JN638998" - ], - "Porcine_stool_associated_circular_virus_3__L2T" : [ - "KC545230" - ], - "Bean_common_mosaic_virus__CDXQ003" : [ - "KJ807821" - ], - "Human_poliovirus_2_NIE0611450_BAS06_01" : [ - "JX275015" - ], - "Macaca_fascicularis_papillomavirus_type_9__Mac592" : [ - "EU490516" - ], - "Sri_Lankan_cassava_mosaic_virus___India__India_Kerala_C4___Kerala_C4" : [ - "AJ890226" - ], - "Human_immunodeficiency_virus_1__DR7060" : [ - "AB287367", - "AB287366" - ], - "Canine_coronavirus_CCoV_NTU336_F_2008" : [ - "GQ477367" - ], - "Chrysanthemum_virus_B__S" : [ - "AB245142" - ], - "Avian_metapneumovirus" : [ - "AY579780" - ], - "Hepatitis_B_virus__IND_DIB112" : [ - "EU835240" - ], - "Hepatitis_B_virus__D_NZL_GE09_1984" : [ - "HQ700450" - ], - "Venezuelan_equine_encephalitis_virus_VEEV_Culex_taeniopus_PAN_BT_2607_1961_IE" : [ - "KC344432" - ], - "Dengue_virus_3__DENV_3_NI_BID_V4795_2009" : [ - "HM631859" - ], - "Hepatitis_E_virus_Xinjiang" : [ - "NC_001434" - ], - "Hepatitis_B_virus__ZY041026" : [ - "AY800391" - ], - "Enterovirus_A71__EV124_07" : [ - "HQ647170" - ], - "Barley_yellow_dwarf_virus__ISOLATE_P_PAV___P_PAV" : [ - "BYDPAV" - ], - "Hepatitis_B_virus_419_8" : [ - "KR013785" - ], - "Escherichia_phage_TL_2011c" : [ - "NC_019442" - ], - "Erwinia_phage_Ea35_70" : [ - "NC_023557" - ], - "Hepatitis_B_virus__pt10N" : [ - "KM875418" - ], - "Chikungunya_virus__LK_PB_CH3008" : [ - "FJ513632" - ], - "Pepper_mottle_virus__205187" : [ - "EU586133" - ], - "Rinderpest_virus_LA77" : [ - "JN234009" - ], - "Hepatitis_B_virus__S541_15" : [ - "EU554538" - ], - "Bean_golden_mosaic_virus__BR_Par1_12" : [ - "KJ939792" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD21_2013" : [ - "KM229859" - ], - "Maize_streak_virus__MSV_B1_Za_Som_g218_2007" : [ - "EU628604" - ], - "Infectious_bronchitis_virus_ck_CH_LGX_130530" : [ - "KP343691" - ], - "West_Nile_virus__WNV_1_US_BID_V4204_2002" : [ - "HM488208" - ], - "Lactococcus_phage_phi145" : [ - "KM091444" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_123_2012" : [ - "KJ686131" - ], - "Infectious_bronchitis_virus_ck_CH_LHB_130575" : [ - "KP118889" - ], - "Changuinola_virus__CGLV_BE_AR_478620" : [ - "KF690629", - "KF690627", - "KF690626", - "KF690628", - "KF690621", - "KF690624", - "KF690630", - "KF690623" - ], - "Hepatitis_B_virus__KOR11CHB" : [ - "GQ475315" - ], - "Hepatitis_B_virus_adrq__Cha" : [ - "X75656" - ], - "Porcine_circovirus_1_NMB" : [ - "GU799575" - ], - "Hepatitis_B_virus_1149_3" : [ - "KR014020" - ], - "Euphorbia_mosaic_virus___A__Mexico_Yucatan_2004" : [ - "NC_008304" - ], - "WU_Polyomavirus__B38" : [ - "GU296380" - ], - "Human_poliovirus_3_NIE1118494" : [ - "KJ170613" - ], - "Hepatitis_B_virus__GU716" : [ - "GQ161762" - ], - "Ageratum_yellow_vein_China_betasatellite__G69" : [ - "AJ971258" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C28" : [ - "KJ019154" - ], - "Quail_picornavirus_QPV1_HUN_2010_QPV1_HUN_2010" : [ - "NC_016403" - ], - "Sweet_potato_golden_vein_associated_virus__Yeoju_1" : [ - "KF803170" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V8434_2001" : [ - "KJ627684" - ], - "Hepatitis_B_virus__Ag47" : [ - "KJ843207" - ], - "Human_papillomavirus_type_68__Rw826" : [ - "KC470281" - ], - "Zaliv_Terpenia_virus" : [ - "HM566191", - "HM566193", - "HM566192" - ], - "Tick_borne_encephalitis_virus_A104" : [ - "KF151173" - ], - "Canine_parvovirus_2c__UY346" : [ - "KM457128" - ], - "Human_immunodeficiency_virus_1__15385_1" : [ - "DQ853464" - ], - "Cauliflower_mosaic_virus__JPNHGB340" : [ - "AB863157" - ], - "Human_astrovirus_6__192_BJ07_CHN" : [ - "GQ495608" - ], - "Mesta_yellow_vein_mosaic_virus____India_Barackpore2_2006___Barrackpore1_Eastern_India" : [ - "EF428256" - ], - "Goose_parvovirus_YZ99_6" : [ - "KC996730" - ], - "Watermelon_mosaic_virus__Cg09_640" : [ - "JF273467" - ], - "Dengue_virus_1_ThD1_0097_94" : [ - "AY732480" - ], - "Dengue_virus_2__MD1619" : [ - "FM210207" - ], - "Norovirus_Hu_GII_10127_2009_VNM_Hu_GII_10127_2009_VNM" : [ - "KC409239" - ], - "Enterobacteria_phage_phiX174__250C55" : [ - "EF380030" - ], - "Colorado_tick_fever_virus_Florio_strain__ATCC_reference_is_VR90" : [ - "NC_004190" - ], - "Furcraea_necrotic_streak_virus__Cauca" : [ - "NC_020469" - ], - "Torque_teno_sus_virus_1b__TTV2_G61" : [ - "GU570207" - ], - "East_African_cassava_mosaic_Kenya_virus__MG_MG619A1_11" : [ - "KJ888058" - ], - "Hepatitis_B_virus__0032" : [ - "JN827415" - ], - "Bluetongue_virus_10__RSArrrr_10" : [ - "AJ586709" - ], - "Hepatitis_B_virus__234_6_2004" : [ - "DQ463802" - ], - "Marburg_marburgvirus__Marburg_virus_H_sapiens_tc_KEN_1980_Mt__Elgon_Musoke" : [ - "NC_001608" - ], - "Ageratum_enation_virus__Gorakhpur" : [ - "GQ268327" - ], - "Chicken_anemia_virus_GD_F_12" : [ - "KF224930" - ], - "Dengue_virus_4__DENV_4_US_BID_V2437_1996" : [ - "GQ199883" - ], - "Hepatitis_B_virus__pt12T" : [ - "KM875423" - ], - "Hepatitis_B_virus__G67_190" : [ - "EU305541" - ], - "Porcine_circovirus_2__DE006_14" : [ - "KP698402" - ], - "Spodoptera_frugiperda_multiple_nucleopolyhedrovirus__3AP2" : [ - "NC_009011" - ], - "Hepatitis_B_virus_P9" : [ - "KJ586807" - ], - "Hepatitis_B_virus__MY515920" : [ - "KJ803753" - ], - "Hepatitis_B_virus__TK170" : [ - "JF754593" - ], - "Japanese_encephalitis_virus_CC27_S6" : [ - "AY303797" - ], - "Raspberry_bushy_dwarf_virus__SE3" : [ - "FR687353", - "FR687358" - ], - "Hepatitis_B_virus__F3_12" : [ - "GU815737" - ], - "Human_immunodeficiency_virus_1__ZM249M_flC1" : [ - "FJ496209" - ], - "SFTS_virus_JS3_JS3" : [ - "HQ141602", - "HQ141601", - "HQ141603" - ], - "Theiler_s_encephalomyelitis_virus" : [ - "TMEGDVCG", - "TMEPP", - "TMECG" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FLA7779_2009" : [ - "KJ627284" - ], - "African_cassava_mosaic_virus__MG_MG56A1_06" : [ - "KJ887875" - ], - "Helicobacter_pylori_Cuz20" : [ - "NC_017358" - ], - "Vibrio_phage_VCO139" : [ - "KC438283" - ], - "Asparagus_virus_3__SW12" : [ - "KJ544560" - ], - "Potato_virus_Y_NA_N_NTN_RRA_1" : [ - "AY884984" - ], - "European_mountain_ash_ringspot_associated_virus__E52293" : [ - "HG799731" - ], - "Thunberg_fritillary_virus__Panan_2" : [ - "AJ885005" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1006_2006" : [ - "EU569721" - ], - "Apoi_virus_ApMAR" : [ - "NC_003676" - ], - "Hepatitis_B_virus__AH3" : [ - "KC836878" - ], - "JC_polyomavirus__TU_18" : [ - "AB127021" - ], - "Rickettsia_prowazekii_Chernikova" : [ - "NC_017049" - ], - "Artibeus_jamaicensis_parvovirus_1" : [ - "NC_016752" - ], - "Human_immunodeficiency_virus_1__WC10C_3" : [ - "AY314055" - ], - "Cotton_leaf_curl_Gezira_virus__okra_BFA___BF_Kampala_Okra9" : [ - "FN554529" - ], - "Mimosa_yellow_leaf_curl_virus_satellite_DNA_beta" : [ - "NC_009556" - ], - "Enterobacteria_phage_SP6" : [ - "AY370673", - "NC_004831" - ], - "JC_polyomavirus__J3_13a" : [ - "AB081603" - ], - "Listeria_monocytogenes_FSL_R2_561" : [ - "NC_017546" - ], - "Variola_minor_virus_Garcia_1966" : [ - "Y16780" - ], - "Human_poliovirus_3_NIE1218542" : [ - "KJ170631" - ], - "Hepatitis_C_virus_subtype_1b__No__19" : [ - "AB154194" - ], - "Hepatitis_B_virus__J132" : [ - "GQ377583" - ], - "West_Nile_virus__WNV_1_US_BID_V4368_2004" : [ - "HM488190" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus_SPL010A" : [ - "AB817991", - "AB817999", - "AB817983" - ], - "Papaya_leaf_curl_betasatellite" : [ - "KC959935", - "KC959933", - "KC959934", - "NC_004706" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_25_DRC" : [ - "JX458849" - ], - "SARS_coronavirus_Sin852" : [ - "AY559082" - ], - "Bhendi_yellow_vein_India_betasatellite__India_Jalgov_OY126_2006___OY126" : [ - "GU111985" - ], - "Human_rotavirus_A_CAU09_371" : [ - "JF766594", - "JF766590", - "JF766593", - "JF766585", - "JF766589", - "JF766592", - "JF766584", - "JF766587", - "JF766586", - "JF766588", - "JF766591" - ], - "Streptococcus_agalactiae_09mas018883" : [ - "NC_021485" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_75_2012" : [ - "KJ686135" - ], - "Human_papillomavirus_type_6__14" : [ - "HG793822" - ], - "Hepatitis_B_virus__BOL577" : [ - "AB365452" - ], - "Hepatitis_B_virus__S359_7" : [ - "FJ032333" - ], - "Porcine_circovirus_2__GXYQ12" : [ - "KJ680367" - ], - "Porcine_circovirus_2_SD_QH" : [ - "KJ511872" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_C_SD_SD16_2013" : [ - "KM229770" - ], - "Dengue_virus_2__DENV_2_TH_BID_V2299_2001" : [ - "FJ810412" - ], - "Human_papillomavirus_type_6__33" : [ - "HG793841" - ], - "Hepatitis_B_virus__DEN6107" : [ - "KF779236" - ], - "Turnip_mosaic_virus__NSW4" : [ - "KJ936090" - ], - "Streptococcus_phage_P9" : [ - "NC_009819" - ], - "Pepino_mosaic_virus" : [ - "NC_027006", - "KF734961", - "AJ438767", - "FJ212288" - ], - "Human_respiratory_syncytial_virus_RSVA_human_USA_A2001_03_12_2001_GA2_A2001_3_12" : [ - "JX069799" - ], - "Epizootic_hemorrhagic_disease_of_deer_virus" : [ - "S68010" - ], - "Dengue_virus_3__DENV_3_LK_BID_V2414_1985" : [ - "FJ882574" - ], - "Bacillus_cereus_AH187" : [ - "NC_011654", - "NC_011656", - "NC_011658", - "NC_011655", - "NC_011657" - ], - "BK_polyomavirus__NEA_2" : [ - "AB365138" - ], - "Dengue_virus_1__DENV_1_VN_BID_V964_2007" : [ - "EU482509" - ], - "Rabies_virus_RC_HL" : [ - "AB009663" - ], - "Porcine_circovirus_2_04_35009" : [ - "EF394774" - ], - "Culex_flavivirus_Toyama2627" : [ - "AB701776" - ], - "Watermelon_chlorotic_stunt_virus__JO1_112" : [ - "KM820192" - ], - "Malvastrum_yellow_vein_betasatellite__Y252" : [ - "AJ971706" - ], - "St__Louis_encephalitis_virus_Hubbard" : [ - "EU566860" - ], - "Hepatitis_B_virus__F2_7" : [ - "GU815732" - ], - "BK_polyomavirus_WT" : [ - "JQ713822" - ], - "Cronobacter_phage_CR5" : [ - "NC_021531" - ], - "Hepatitis_B_virus__pt8T" : [ - "KM875415" - ], - "Hepatitis_B_virus__KOR34LC" : [ - "GQ475338" - ], - "Mycoplasma_mycoides_SC_PG1" : [ - "NC_005364" - ], - "Norovirus_Hu_GII_4_CGMH26_2010_TW" : [ - "JN400624" - ], - "Pepino_mosaic_virus__PepMV_Pa" : [ - "FJ612601" - ], - "Escherichia_coli_JJ1886" : [ - "NC_022651", - "NC_022662", - "NC_022661", - "NC_022649", - "NC_022648", - "NC_022650" - ], - "Tick_borne_encephalitis_virus_Primorye_1153" : [ - "HQ901366" - ], - "Cricket_paralysis_virus__CrPV_2" : [ - "KP974706" - ], - "Hepatitis_B_virus__32UC" : [ - "AB493843" - ], - "Dengue_virus_1__DENV_1_VE_BID_V3573_2007" : [ - "GU131840" - ], - "Haemophilus_parainfluenzae_T3T1" : [ - "NC_015964" - ], - "Human_papillomavirus_type_59__Qv00231" : [ - "KC470262" - ], - "Fowl_aviadenovirus_C__KR5" : [ - "HE608152" - ], - "Tomato_yellow_leaf_curl_virus__ZJ8" : [ - "AM698119" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_NVDC_NM2" : [ - "KC492504" - ], - "Hepatitis_B_virus__F1_7" : [ - "GU815720" - ], - "Avian_leukosis_virus__CLB908M" : [ - "JX855935" - ], - "Human_immunodeficiency_virus_1__05CSR3" : [ - "DQ837381" - ], - "Hepatitis_B_virus__HBV_G166" : [ - "AB205191" - ], - "African_cassava_mosaic_virus__CF_CF84BN_07" : [ - "KJ887609" - ], - "Porcine_circovirus_2__CQKX13_D3" : [ - "KF742552" - ], - "JC_polyomavirus__HWM" : [ - "DQ875211" - ], - "Bhendi_yellow_vein_Delhi_virus__2004_New_Delhi___OY131" : [ - "NC_011919" - ], - "Human_adenovirus_5_NHRC_Ad5FS_7151" : [ - "AY601635" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7349_2002" : [ - "KF973332" - ], - "Hepatitis_B_virus__MOD_4569" : [ - "GQ183481" - ], - "Norovirus_Hu_GII_4_Nagano2_2008_JP_Hu_GII_4_Nagano2_2008_JP" : [ - "AB541304" - ], - "Watermelon_chlorotic_stunt_virus__JO2_417" : [ - "KM820212" - ], - "Dengue_virus_2__P23085_INDI_60" : [ - "KJ918750" - ], - "Mycoplasma_gallisepticum_NC96_1596_4_2P" : [ - "NC_018408" - ], - "Synechococcus_phage_S_RIP2" : [ - "NC_020838" - ], - "West_Nile_virus_OK03" : [ - "EU155484" - ], - "Alcanivorax_borkumensis_SK2" : [ - "NC_008260" - ], - "Human_poliovirus_2_NIE1018411" : [ - "KJ170538" - ], - "Human_respiratory_syncytial_virus__08_046972" : [ - "JX015498" - ], - "Southern_rice_black_streaked_dwarf_virus__Hue_2" : [ - "KM576885", - "KM576873" - ], - "Porcine_parainfluenza_virus_1_S206N" : [ - "NC_025402" - ], - "Human_herpesvirus_3_NH29_3" : [ - "DQ674250" - ], - "Crimean_Congo_hemorrhagic_fever_virus__NIVA_118595" : [ - "JN572083", - "JN572088", - "JN572090" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3809" : [ - "KM233086" - ], - "Cotton_leaf_curl_Gezira_virus__Sida___CLCuV_SD_Sida" : [ - "AY036007" - ], - "Bluetongue_virus_16__NIG1982_10" : [ - "AJ586694" - ], - "Dengue_virus_2__DENV_2_VN_BID_V760_2003" : [ - "EU482782" - ], - "Hepatitis_C_virus_subtype_4m__HCV_4m_GB_BID_G1657" : [ - "JX227972" - ], - "Enterovirus_A71_SHZH03" : [ - "AY465356" - ], - "Hepatitis_B_virus__1912" : [ - "FJ386601" - ], - "Human_papillomavirus_type_72b" : [ - "KJ145795" - ], - "Hepatitis_B_virus__D142" : [ - "EU939658" - ], - "Human_immunodeficiency_virus_1__1230_24" : [ - "KP718938" - ], - "Hepatitis_B_virus__E1_9" : [ - "GU815690" - ], - "Shrimp_white_spot_syndrome_virus__Taiwan" : [ - "AF440570" - ], - "Hepatitis_B_virus__HBV84" : [ - "KC875297" - ], - "Human_immunodeficiency_virus_1__02CAMLT72" : [ - "EU743963" - ], - "Human_immunodeficiency_virus_1__02BR170" : [ - "FJ771007" - ], - "San_Miguel_sea_lion_virus_8__274" : [ - "KP137550" - ], - "Louping_ill_virus__Primorye_185_91" : [ - "KJ495985" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_QY2010" : [ - "JQ743666" - ], - "Methanobacterium_phage_psiM2" : [ - "NC_001902" - ], - "Foot_and_mouth_disease_virus_O_SKR_2000" : [ - "AF377945" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V206_1995" : [ - "EU255988" - ], - "Mycobacterium_phage_Job42" : [ - "NC_021538" - ], - "Hepatitis_B_virus__HBV82" : [ - "KC875296" - ], - "WU_Polyomavirus__v144" : [ - "GU296394" - ], - "Porcine_circovirus_2__JSDT0706" : [ - "GQ227412" - ], - "Plum_pox_virus_PPV_D_Ou5" : [ - "AB576061" - ], - "Chlamydia_trachomatis_F_SWFPminus" : [ - "NC_022548" - ], - "Pseudomonas_aeruginosa_PAO1_VE13" : [ - "NC_022594" - ], - "Hepatitis_B_virus__SHB1C5" : [ - "KJ598637" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_DE_BID_V36_2004" : [ - "EU256107" - ], - "Chimpanzee_adenovirus_Y25" : [ - "NC_017825" - ], - "Dengue_virus_1_D1_SG_05K3916DK1_2005" : [ - "EU081249" - ], - "Chlamydia_trachomatis_E_SotonE8" : [ - "NC_020942", - "NC_020960" - ], - "Wheat_dwarf_virus__SxA36" : [ - "AM942045" - ], - "Foot_and_mouth_disease_virus___type_SAT_3_SAT3_3bech_20_61_sat3_3bech_iso29" : [ - "AY593851" - ], - "Human_immunodeficiency_virus_1__97SE1078" : [ - "AJ288981" - ], - "Wheat_dwarf_virus_wheat_strain_Alsleben_9" : [ - "HG422318" - ], - "Synechococcus_phage_ACG_2014d__Syn7803C40" : [ - "KJ019165" - ], - "Hepatitis_B_virus__IIIb" : [ - "AY167097" - ], - "Hepatitis_B_virus__C127_10" : [ - "FJ899777" - ], - "Squash_leaf_curl_virus__JO1_168" : [ - "KM595162" - ], - "Human_metapneumovirus_HMPV_Homo_sapiens_PER_FLE6360_2009_A" : [ - "KJ627385" - ], - "Moroccan_pepper_virus__MPV_PG83" : [ - "JX197070" - ], - "Streptomyces_PAMC26508" : [ - "NC_021056", - "NC_021055" - ], - "Beet_curly_top_Iran_virus__IR_Neg_B25P_Sug_08" : [ - "JQ707944" - ], - "Hepatitis_C_virus_subtype_1b__HCV_1b_US_BID_V134_1990" : [ - "EU155334" - ], - "Human_poliovirus_3_NIE1118468" : [ - "KJ170593" - ], - "Hepatitis_C_virus__QC381" : [ - "FJ462436" - ], - "Torque_teno_virus__TTV_HD19__rheu242" : [ - "FR751491" - ], - "Norovirus_Hu_GII_4_Sakai3_2008_JP_Hu_GII_4_Sakai3_2008_JP" : [ - "AB541343" - ], - "Hepatitis_B_virus_42063" : [ - "FN545833" - ], - "Hepatitis_B_virus__GU1506" : [ - "GQ161758" - ], - "Erwinia_phage_phiEa2809" : [ - "NC_027340" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_236_2011" : [ - "KJ686261" - ], - "Squash_leaf_curl_China_virus____Pumpkin__Lucknow" : [ - "DQ026296" - ], - "FTLS_virus__YNY1" : [ - "KF356526", - "KF356552", - "KF356538" - ], - "Porcine_enteric_sapovirus_Cowden" : [ - "NC_000940" - ], - "Barley_yellow_dwarf_virus_PAV__0109" : [ - "EF521828" - ], - "Hepatitis_B_virus__MY836508" : [ - "KJ803800" - ], - "Hepatitis_B_virus__cxa2033" : [ - "KC774314" - ], - "Japanese_holly_fern_mottle_virus__DI" : [ - "NC_013134", - "NC_013133" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1858_2007" : [ - "FJ461314" - ], - "Cleome_leaf_crumple_virus__BR_SE_Nps3_09" : [ - "JN103432" - ], - "Dengue_virus_2_DENV_2_PR_33DN_1994" : [ - "GQ398275" - ], - "Sewage_associated_circular_DNA_molecule_2__NZ_BS3901b_2012" : [ - "NC_026142" - ], - "Sugarcane_yellow_leaf_virus" : [ - "AJ249447", - "NC_000874", - "AY236971" - ], - "African_cassava_mosaic_virus__CF_CF4AB_07" : [ - "KJ887756" - ], - "Bluetongue_virus_9__RSArrrr_09" : [ - "AJ586708" - ], - "Norovirus_Hu_GI_1_8K_1979_USA_Hu_GI_1_8K_1979_USA" : [ - "KF429783" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1879_2007" : [ - "FJ410227" - ], - "Bat_coronavirus_HKU4_2_B05f" : [ - "EF065506" - ], - "Donkey_orchid_symptomless_virus__Capel" : [ - "KP760463" - ], - "Hepatitis_B_virus__D_NZL_RA11_1984" : [ - "HQ700479" - ], - "Enterovirus_A71_TW_2815_04" : [ - "GQ231930" - ], - "Papaya_ringspot_virus_P_P" : [ - "EF183499" - ], - "Hepatitis_B_virus__MTB012" : [ - "AY902770" - ], - "Porcine_circovirus_2__NT3" : [ - "HQ202966" - ], - "Onion_yellow_dwarf_virus__SG1" : [ - "JX429964" - ], - "Saimiriine_herpesvirus_2" : [ - "NC_001350" - ], - "Human_T_lymphotropic_virus_3_Lobak18" : [ - "EU649782" - ], - "Oropouche_virus__BeH759040" : [ - "KP691616", - "KP691615" - ], - "Merremia_mosaic_virus__PR80_N5" : [ - "DQ644560" - ], - "Columbid_circovirus__PL197" : [ - "KF738853" - ], - "Watermelon_silver_mottle_virus" : [ - "Z46419", - "NC_003832" - ], - "Human_papillomavirus_type_11__LP6" : [ - "HE611260" - ], - "Japanese_encephalitis_virus_KPP82_39_214CT" : [ - "GQ902063" - ], - "BK_polyomavirus__ANY_29" : [ - "AB464957" - ], - "Mycobacterium_phage_GUmbie_GUmbie" : [ - "NC_023746" - ], - "Hepatitis_B_virus__Alaska2" : [ - "AB287318" - ], - "Methanocorpusculum_labreanum_Z" : [ - "NC_008942" - ], - "Tobacco_curly_shoot_virus__YN20" : [ - "GU199583" - ], - "Corchorus_golden_mosaic_virus__India_Barrackpore_2008" : [ - "FJ455448", - "EU636712" - ], - "Hepatitis_B_virus__A5_50104" : [ - "FJ692610" - ], - "Cotton_leaf_curl_Multan_betasatellite__India_Ludhiana_Mentha_2007" : [ - "EU862816", - "EU862815" - ], - "Rabies_virus__9001FRA" : [ - "EU293113" - ], - "Simian_immunodeficiency_virus__96081" : [ - "AY597209" - ], - "Human_poliovirus_1__DOR01002" : [ - "AF405672" - ], - "Human_immunodeficiency_virus_1__P1146" : [ - "DQ979023" - ], - "Human_papillomavirus_type_18__Rw687" : [ - "KC470218" - ], - "Plum_pox_virus_D_Cdn_12" : [ - "AY953266" - ], - "Sulfolobus_solfataricus_P2" : [ - "NC_002754" - ], - "Tomato_yellow_leaf_curl_China_virus__SC327" : [ - "KC189894" - ], - "South_African_cassava_mosaic_virus__MG_MG549A1_11" : [ - "KJ888037" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V168_1990" : [ - "EU255965" - ], - "Escherichia_coli_SMS_3_5" : [ - "NC_010488", - "NC_010487", - "NC_010485", - "NC_010486", - "NC_010498" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1193" : [ - "KR534537" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3839_2008" : [ - "GU131678" - ], - "Hepatitis_B_virus__I1_M04_3979" : [ - "FJ023663" - ], - "Bovine_viral_diarrhea_virus_2__11F011" : [ - "KC963968" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FPP00421_2011" : [ - "KJ627351" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_199_2011" : [ - "KJ686187" - ], - "African_cassava_mosaic_virus__MG_MG652A9_11" : [ - "KJ888082" - ], - "Escherichia_phage_HK75" : [ - "NC_016160" - ], - "Human_poliovirus_3_NIE1018482" : [ - "KJ170607" - ], - "Hyphomicrobium_denitrificans_1NES1" : [ - "NC_021172" - ], - "JC_polyomavirus__SK_5" : [ - "AB118653" - ], - "Stachytarpheta_leaf_curl_virus____Hn34___Hn34" : [ - "AJ810157" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_163_2012" : [ - "KJ686266" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_KWT01_2011" : [ - "KM188458" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_1__AHEaCV_1_NZ_2981C2_2012" : [ - "KM874291" - ], - "Cotton_leaf_curl_Multan_betasatellite__In_Abohar1_2010" : [ - "JF502381" - ], - "Invertebrate_iridescent_virus_3_Aedes_taeniorhynchus_iridescent_virus" : [ - "NC_008187" - ], - "African_cassava_mosaic_virus__MG_MG688A3_11" : [ - "KJ888088" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1277" : [ - "KR534543" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__B3J13" : [ - "JN053434" - ], - "Clover_yellow_vein_virus" : [ - "E55465" - ], - "Ecotropic_murine_leukemia_virus" : [ - "KJ668270" - ], - "Vibrio_phage_phi_2" : [ - "KJ545483" - ], - "Tembusu_virus__ZJ_6" : [ - "JF459991" - ], - "Norovirus_GII_Hu_JP_2002_GII_P5_GII_5_Saitama_T52__Saitama_T52" : [ - "KJ196288" - ], - "Bluetongue_virus_1__BTV_1_SAD2013" : [ - "KJ019214" - ], - "Tomato_yellow_leaf_curl_Thailand_virus__NT3_5" : [ - "GU723735" - ], - "Lactococcus_phage_BK5_T" : [ - "NC_002796", - "AJ245616" - ], - "Hepatitis_C_virus_subtype_2a_MD2a_4" : [ - "AF238483" - ], - "Bat_polyomavirus_6a__6a" : [ - "NC_026762" - ], - "Measles_virus_strain_MVi_New_Jersey_USA_45_05_MVi_New_Jersey_USA_45_05" : [ - "JN635408" - ], - "Hepatitis_B_virus_WJQ650" : [ - "AY220702" - ], - "Simian_immunodeficiency_virus_SIVcolCGU1" : [ - "AF301156" - ], - "Human_immunodeficiency_virus_1_ES_X772_8" : [ - "FJ670528" - ], - "Norovirus_GII_Hu_JP_2007_GII_P21_GII_21_Kawasaki_YO284__Kawasaki_YO284" : [ - "KJ196284" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Coyah_1689" : [ - "KR534573" - ], - "Hepatitis_B_virus__ES71_6" : [ - "JF828926" - ], - "Hepatitis_B_virus__C_NZL_HA121_1984" : [ - "HQ700456" - ], - "Olive_latent_virus_1_citrus" : [ - "NC_001721" - ], - "Porcine_circovirus_2_Shenzhen05" : [ - "HQ113119" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_149_2012" : [ - "KJ686254" - ], - "JC_polyomavirus__UZ_8" : [ - "AB262407" - ], - "BK_polyomavirus__LAB_22" : [ - "AB301093" - ], - "Curvularia_thermal_tolerance_virus" : [ - "NC_010985", - "NC_010986" - ], - "Porcine_circovirus_2__ZZf310" : [ - "KJ680355" - ], - "Pepper_huasteco_yellow_vein_virus" : [ - "NC_001359", - "NC_001369" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PK_76f_2008" : [ - "HM748927" - ], - "Staphylococcus_aureus_RF122" : [ - "NC_007622" - ], - "Human_rhinovirus_A94_ATCC_VR_1295" : [ - "FJ445185" - ], - "African_cassava_mosaic_virus__MG_MG177A1_09" : [ - "KJ887943" - ], - "Dengue_virus_2__DENV_2_US_BID_V1439_2005" : [ - "EU687216" - ], - "Bacillus_phage_BMBtp2" : [ - "NC_019912" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_4__AHEaCV_4_NZ_3049C1_2012" : [ - "NC_026628" - ], - "Human_papillomavirus_type_58__HPV58sc147" : [ - "FJ385263" - ], - "Hepatitis_delta_virus_dTk21_dTk21" : [ - "AM779596" - ], - "Tomato_yellow_leaf_curl_virus__SDDY" : [ - "HM627881" - ], - "Paramecium_bursaria_Chlorella_virus_FR483_FR483" : [ - "NC_008603" - ], - "Indian_cassava_mosaic_virus__Ker3___Muvattupuzzha" : [ - "AJ575820" - ], - "West_Nile_virus__TX_AR12_1486" : [ - "KC711057" - ], - "Dengue_virus_3__DENV_3_NI_BID_V5491_2010" : [ - "JN000938" - ], - "Pea_enation_mosaic_virus_2" : [ - "NC_003853" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2021_2002" : [ - "FJ639698" - ], - "Tomato_spotted_wilt_virus__Pepper2_CY_CN" : [ - "HM581941", - "HM581942", - "HM581940" - ], - "Dengue_virus_1_BR_97_111" : [ - "AF311956" - ], - "Human_papillomavirus_type_33__Z84" : [ - "HQ537693" - ], - "Tomato_yellow_leaf_curl_virus___Poamoho__Poamoho" : [ - "GU322423" - ], - "Rice_black_streaked_dwarf_virus__SDJNiR15" : [ - "HM209069" - ], - "Invertebrate_iridovirus_25" : [ - "NC_023613" - ], - "Tobacco_rattle_virus__TRV_PallM_3" : [ - "DQ448617" - ], - "Venezuelan_equine_encephalitis_virus_TC_83" : [ - "EEVNSPEPB" - ], - "Human_papillomavirus_type_16_CU4" : [ - "FJ610149" - ], - "Dengue_virus_1__70523_BR_PE_00" : [ - "JX669472" - ], - "Border_disease_virus__Coos_Bay_5_c" : [ - "KJ463423" - ], - "Torque_teno_virus__TTVsan_IR1031" : [ - "AB038619" - ], - "Torque_teno_virus_7__PMV" : [ - "NC_014080" - ], - "Mycobacterium_phage_LittleCherry" : [ - "NC_022086" - ], - "Dengue_virus_1_D1_SG_05K2901DK1_2005" : [ - "EU081233" - ], - "Tobacco_curly_shoot_alphasatellite__WSFA1" : [ - "HQ407396" - ], - "Western_equine_encephalitis_virus_S8_122" : [ - "KJ554970" - ], - "Hepatitis_B_virus__SWT2_1" : [ - "EU916236" - ], - "Hepatitis_B_virus_FMU010" : [ - "AY206381" - ], - "Dengue_virus_3_D3_SG_05K3314DK1_2005" : [ - "EU081201" - ], - "Hepatitis_B_virus__HB12_0925" : [ - "AB775200" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_186_2011" : [ - "KJ686189" - ], - "Grapevine_Pinot_gris_virus__SK13" : [ - "KF134125" - ], - "Hepatitis_B_virus_MEXICO33_G" : [ - "AB375168" - ], - "Hepatitis_B_virus__GU1051" : [ - "GQ161836" - ], - "Hepatitis_B_virus__No10" : [ - "AB697495" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V7337_2002" : [ - "KF973321" - ], - "Torque_teno_Tadarida_brasiliensis_virus" : [ - "NC_024908" - ], - "Human_rotavirus_A_strain_MW23" : [ - "AJ278252" - ], - "Porcine_circovirus_2_SC" : [ - "AF465211" - ], - "Dromedary_stool_associated_circular_ssDNA_virus__DcSCV_c1054" : [ - "KM573766" - ], - "Hepatitis_B_virus__bxa1070" : [ - "KC774394" - ], - "Gossypium_darwinii_symptomless_alphasatellite__Octa_alpha_11" : [ - "EU384640" - ], - "Hepatitis_B_virus__M89" : [ - "GQ924652" - ], - "Human_rhinovirus_A98_ATCC_VR_1298" : [ - "FJ445173" - ], - "Chlamydia_trachomatis_F_SW5" : [ - "NC_012626", - "NC_017953" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD14_2013" : [ - "KM229813" - ], - "Torque_teno_virus__tth23" : [ - "AJ620235" - ], - "West_Nile_virus__WNV_1_US_BID_V4361_2007" : [ - "HM488165" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1321_2006" : [ - "EU660391" - ], - "Hepatitis_B_virus_42064" : [ - "FN545834" - ], - "East_African_cassava_mosaic_Zanzibar_virus__EACMZV__K270" : [ - "AJ704947", - "AJ717563" - ], - "Macaca_fascicularis_papillomavirus_type_4__Mac54" : [ - "EF558841" - ], - "Human_immunodeficiency_virus_1__WITO_flG7" : [ - "FJ496183" - ], - "Eel_River_basin_pequenovirus__c15138" : [ - "KP087945" - ], - "Bacillus_coagulans_36D1" : [ - "NC_016023" - ], - "Duck_circovirus__MH02_07" : [ - "EU499309" - ], - "Feline_coronavirus_UU40_UU40" : [ - "HQ392469" - ], - "Human_immunodeficiency_virus_2__CRIK_147" : [ - "DQ307022" - ], - "Hepatitis_B_virus__EICI_75" : [ - "KF679992" - ], - "Porcine_circovirus_2__P473BY" : [ - "JX099780" - ], - "West_Nile_virus__WNV_1_US_BID_V6659_2001" : [ - "KJ501401" - ], - "Human_smacovirus_1__Oregon_6_2011_GottageGrove_B3" : [ - "KP233181" - ], - "Hepatitis_B_virus__BA108" : [ - "FJ657528" - ], - "Mesta_yellow_vein_mosaic_virus__India_Srikakulam_2008___Srikakulam_South_India" : [ - "FJ159271" - ], - "Human_metapneumovirus_HMPV_AUS_187777723_2004_B" : [ - "KF530165" - ], - "Hepatitis_B_virus__Ag27" : [ - "KJ843188" - ], - "Human_parainfluenza_virus_3_HPIV3_USA_629_2_2006" : [ - "KF530239" - ], - "Hepatitis_C_virus_subtype_1b_MD5_1" : [ - "AF165053" - ], - "Macroptilium_yellow_spot_virus__BR_Sti15_11" : [ - "KJ939873" - ], - "Melon_chlorotic_mosaic_virus_associated_alphasatellite__MeCMA63" : [ - "KF670665" - ], - "Lactobacillus_fermentum_IFO_3956" : [ - "NC_010610" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_FPI01734_2011" : [ - "KJ627259" - ], - "Bovine_papillomavirus_BAA5_Japan" : [ - "EU360723" - ], - "Sepik_virus_MK7148" : [ - "NC_008719" - ], - "Ageratum_leaf_curl_betasatellite__AC_ASNBRI_1" : [ - "JQ710745" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD177_2013" : [ - "KM229839" - ], - "Human_immunodeficiency_virus_1__C_96BW17B05" : [ - "AF110981" - ], - "Bluetongue_virus_1_RSArrrr_01" : [ - "AM900384" - ], - "Dengue_virus_2__DENV_2_VN_BID_V1515_2007" : [ - "EU660417" - ], - "Circoviridae_19_LDMD_2013" : [ - "NC_025723" - ], - "Porcine_circovirus_2_LA1101" : [ - "JX406421" - ], - "Human_immunodeficiency_virus_1__03ZASK211B1" : [ - "DQ093601" - ], - "Maize_streak_virus__MSV_B3_Re_BasE_R7_2006" : [ - "EU628619" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_20141582" : [ - "KR653230" - ], - "STL_polyomavirus_MA138" : [ - "NC_020106" - ], - "Hantaanvirus_CGHu1_CGHu1" : [ - "EU092218", - "EU092222" - ], - "Human_papillomavirus_type_45__Qv20214" : [ - "EF202156" - ], - "Equine_papillomavirus_2" : [ - "NC_012123" - ], - "Vibrio_phage_ND1_fs1_ND1_fs1" : [ - "AB572858" - ], - "BK_polyomavirus__LAB_20" : [ - "AB301091" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_DEU_114_2008" : [ - "KF826853" - ], - "Porcine_circovirus_2__Holguin_246" : [ - "FN687856" - ], - "Foot_and_mouth_disease_virus___type_A__A_Pocheon_001_KOR_2010" : [ - "KC588943" - ], - "Hantavirus_Z10" : [ - "NC_006437", - "EF533944" - ], - "Porcine_circovirus_2__DK592control" : [ - "EF565368" - ], - "Hepatitis_B_virus__CHIMP_BAT" : [ - "AM117396" - ], - "Dengue_virus_2__DENV_2_KH_BID_V2043_2005" : [ - "FJ639709" - ], - "Pepino_mosaic_virus_US1_EF09_60" : [ - "JQ314462" - ], - "Human_respiratory_syncytial_virus_RSVB_Homo_sapiens_USA_LA2_42_2013" : [ - "KJ672476" - ], - "Hepatitis_C_virus_subtype_3a" : [ - "GQ275355" - ], - "Beak_and_feather_disease_virus__BFDV_ZA_PR_41a_2008" : [ - "HM748938" - ], - "Sandfly_fever_Naples_virus_Toscana" : [ - "NC_006318", - "NC_006320" - ], - "Feline_coronavirus_Felis_catus_NLD_UU88_2010" : [ - "KF530123" - ], - "Dengue_virus_3_D3_SG_05K827DK1_2005" : [ - "EU081186" - ], - "uncultured_Termite_group_1_bacterium_phylotype_Rs_D17" : [ - "NS_000193", - "NC_020421", - "NC_020420", - "NS_000192", - "NS_000191", - "NC_020422", - "NS_000194", - "NC_020419" - ], - "Acheta_domestica_densovirus__AdJP12" : [ - "KF015279" - ], - "Maize_streak_virus__MSV_A_ZA_Jou2_O32_1989" : [ - "FJ882117" - ], - "Human_papillomavirus_type_31__BF363" : [ - "HQ537683" - ], - "GB_virus_C__GSI93" : [ - "D87263" - ], - "Hepatitis_B_virus__B1_12" : [ - "GU815581" - ], - "Human_coronavirus_OC43_19572_Belgium_2004" : [ - "AY903460" - ], - "Norovirus_Hu_GII_4_Hiroshima5_2008_JP_Hu_GII_4_Hiroshima5_2008_JP" : [ - "AB541259" - ], - "Newcastle_disease_virus_poultry_Peru_1918_03_2008" : [ - "JN800306" - ], - "Human_respiratory_syncytial_virus_07_008482" : [ - "JX576750" - ], - "Hepatitis_B_virus_593_12" : [ - "KR013988" - ], - "Human_immunodeficiency_virus_1__03ZAPS094MB1" : [ - "DQ396377" - ], - "Bovine_papillomavirus_type_10__MYP55" : [ - "KF017607" - ], - "Human_papillomavirus_type_16_CU8" : [ - "JQ004092" - ], - "Dengue_virus_2__DF726" : [ - "FM210209" - ], - "Chatanga_virus__Mohko_S07_2" : [ - "KF719234", - "KF719233", - "KF719235" - ], - "TYLCAxV_Sic1__IT_Sic2_2_04___IT_R_2_2" : [ - "NC_011024" - ], - "Torque_teno_felis_virus__183" : [ - "KM229764" - ], - "Chilli_leaf_curl_betasatellite__Pataudi" : [ - "EU582020" - ], - "Human_immunodeficiency_virus_1__HIV_1_USA_BID_G15481" : [ - "JX503082" - ], - "Hepatitis_B_virus__J242" : [ - "GQ377634" - ], - "Grapevine_rootstock_stem_lesion_associated_virus" : [ - "NC_004724" - ], - "Hepatitis_B_virus__cxn1093" : [ - "KC774348" - ], - "Macroptilium_yellow_vein_virus__BR_Pai20_11" : [ - "KJ939900" - ], - "Hepatitis_B_virus__SamsunD89" : [ - "AB674429" - ], - "Hepatitis_B_virus_017" : [ - "AB900101" - ], - "Feline_coronavirus_Felis_catus_NLD_UU43_2007" : [ - "KF530121" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2324_2001" : [ - "FJ744735" - ], - "Torque_teno_midi_virus_1__MD1_032" : [ - "NC_009225" - ], - "Lactococcus_Phage_ASCC356" : [ - "JQ740795" - ], - "Mycobacterium_phage_Winky" : [ - "KC661276" - ], - "Mungbean_yellow_mosaic_India_virus__106" : [ - "AJ512498" - ], - "Hepatitis_C_virus__6_TV566" : [ - "KJ567652" - ], - "Hepatitis_B_virus__I229" : [ - "FJ562328" - ], - "Dengue_virus_3__DENV_3_KH_BID_V2091_2007" : [ - "KF955464" - ], - "Mammalian_orthoreovirus_3_Dearing_T3D_Dearing" : [ - "HM159621", - "HM159616", - "HM159613", - "HM159618", - "HM159614", - "HM159620", - "HM159622", - "HM159617", - "HM159615", - "HM159619" - ], - "Hepatitis_B_virus__EI03101" : [ - "DQ315784" - ], - "Hepatitis_B_virus__ZY041024" : [ - "AY800389" - ], - "Eel_River_basin_pequenovirus__c13156" : [ - "KP087942" - ], - "Reindeer_papillomavirus" : [ - "AF443292" - ], - "Enterovirus_A71_HeN09_1_HeN_CHN_2009" : [ - "JX678880" - ], - "Tomato_severe_leaf_curl_virus__Rioverde_SLP1" : [ - "DQ347946" - ], - "Piscine_myocarditis_virus_AL_V_708__AL_V_708" : [ - "NC_015639" - ], - "Porcine_circovirus_2__TY2" : [ - "HQ202956" - ], - "Dengue_virus_2_FJ_10" : [ - "AF276619" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V165_1992" : [ - "EU862838" - ], - "Hepatitis_B_virus__HBV_75_Baby" : [ - "JN400086" - ], - "Dengue_virus_3__mutant_InJ_I6_82" : [ - "DQ401694" - ], - "Circovirus_NGchicken38_NGA_2009__NGchicken38" : [ - "HQ738642" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_JXA1_P15" : [ - "FJ548855" - ], - "Newcastle_disease_virus__chicken_U_S__CA__1083_Fontana__72" : [ - "AY562988" - ], - "Beak_and_feather_disease_virus__NCL9" : [ - "JX049203" - ], - "Porcine_circovirus_2__Uy93" : [ - "KP867048" - ], - "Avon_Heathcote_Estuary_associated_circular_virus_4__AHEaCV_4_NZ_3049C2_2012" : [ - "KM874299" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus__NMEU09_1" : [ - "GU047345" - ], - "Hepatitis_B_virus__A1_50115" : [ - "FJ692587" - ], - "Tobacco_bushy_top_virus__Ch" : [ - "NC_004366" - ], - "Bovine_kobuvirus_U_1" : [ - "NC_004421" - ], - "Human_respiratory_syncytial_virus__08_042544" : [ - "JX015495" - ], - "Hepatitis_B_virus_ayw2" : [ - "AF151735" - ], - "Severe_fever_with_thrombocytopenia_syndrome_virus__JS2011_062" : [ - "KC505135", - "KC505136" - ], - "Foot_and_mouth_disease_virus___type_A__IND_26_2006" : [ - "HQ832585" - ], - "Tomato_chlorotic_mottle_virus__BR_Flo197_08" : [ - "KC706563" - ], - "Human_parainfluenza_virus_3_HPIV3_ZAF_1145978_2007" : [ - "KF687336" - ], - "Viral_hemorrhagic_septicemia_virus_KJ2008" : [ - "JF792424" - ], - "Chloris_striate_mosaic_virus__AU_1650_2004" : [ - "JQ948058" - ], - "Hepatitis_B_virus__C_Tonga_To29_2004" : [ - "HQ700579" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus_SRV07" : [ - "JX512910" - ], - "Eel_picornavirus_1_F15_05" : [ - "NC_022332" - ], - "Enterococcus_phage_EFAP_1" : [ - "NC_012419" - ], - "Dengue_virus_3__DENV_3_IPC_BID_V3831_2007" : [ - "GU131916" - ], - "Cauliflower_mosaic_virus__IRNCaK66" : [ - "JX912256" - ], - "Hepatitis_B_virus__026_K_Laj" : [ - "KF873528" - ], - "Sweet_potato_virus_2__SC6" : [ - "KP115618" - ], - "Wenzhou_virus__Rn_366" : [ - "KM386660", - "KM386661" - ], - "Dengue_virus_3__DENV_3_VN_BID_V1821_2007" : [ - "KF955457" - ], - "Sweet_potato_leaf_curl_Canary_virus__ES_CI_BG21_02" : [ - "EU856365" - ], - "Dengue_virus_1__DENV_1_KH_BID_V2373_2001" : [ - "KF955406" - ], - "Enterovirus_A71__HN1360_HN_CHN_2011" : [ - "JQ639383" - ], - "Dengue_virus_1_FP0203" : [ - "DQ672556" - ], - "Hepatitis_B_virus__LDA399" : [ - "KF849725" - ], - "Simian_immunodeficiency_virus__96016" : [ - "AY607701" - ], - "Norovirus_Hu_GII_4_CGMH07_2006_TW" : [ - "JN400605" - ], - "Hepatitis_B_virus__HBV36" : [ - "KC875262" - ], - "Porcine_circovirus_2__FS3" : [ - "KC514965" - ], - "Newcastle_disease_virus__Chicken_China_Beijing_01_2012" : [ - "KC542911" - ], - "Dengue_virus_1__DENV_1_VN_BID_V2757_2007" : [ - "GQ199781" - ], - "Soybean_mosaic_virus__SC3" : [ - "JF833013" - ], - "Dengue_virus_1__DENV_1_NI_BID_V669_2004" : [ - "GQ199875" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1940_2008" : [ - "FJ410263" - ], - "Hepatitis_B_virus__C2_4" : [ - "GU815630" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G4907_1" : [ - "KR105277" - ], - "Hepatitis_C_virus__QC105" : [ - "JF735122" - ], - "Human_immunodeficiency_virus_1__03ZASK062B1" : [ - "DQ164113" - ], - "Hepatitis_B_virus__dxn1031" : [ - "KC774477" - ], - "Porcine_circovirus_2__PCV_Y25" : [ - "KC515017" - ], - "Frog_adenovirus_1" : [ - "NC_002501" - ], - "Human_mastadenovirus_C_human_USA_UFL_Adv1_2005_1_P1H1F1" : [ - "KF268331" - ], - "WU_Polyomavirus__B8805" : [ - "GU296387" - ], - "Streptococcus_constellatus_pharyngis_C1050" : [ - "NC_022238" - ], - "Hepatitis_B_virus__cww1050" : [ - "KC774255" - ], - "Tomato_common_mosaic_virus__BR_Pda31_05" : [ - "KC706581" - ], - "Enterovirus_A71_Fuyang_0805" : [ - "FJ439769" - ], - "Human_papillomavirus_type_39__BF375" : [ - "KC470249" - ], - "Dengue_virus_3__Cairns_2008" : [ - "JN406515" - ], - "African_horse_sickness_virus__HS_30_62" : [ - "KM886352", - "KM886350", - "KM886349", - "KM886351", - "KM886353", - "KM886344", - "KM886347", - "KM886346", - "KM886348" - ], - "Eastern_equine_encephalitis_virus_EEEV_X_USA_4366_2009" : [ - "KJ469625" - ], - "Infectious_bronchitis_virus__TW2575_98" : [ - "DQ646405" - ], - "Eel_River_basin_pequenovirus__c8810" : [ - "KP087940" - ], - "Maize_dwarf_mosaic_virus__OH_1" : [ - "JQ403608" - ], - "Hepatitis_B_virus__01D01HCC" : [ - "AB014360" - ], - "Respiratory_syncytial_virus_type_A__RSV_A_US_BID_V9434_2013" : [ - "KJ643511" - ], - "Usutu_virus_V382" : [ - "KJ438758" - ], - "Human_immunodeficiency_virus_1__02ZAPS015MB1" : [ - "DQ369995" - ], - "Porcine_circovirus_2_JH0401" : [ - "AY641542" - ], - "Hepatitis_C_virus_subtype_1a__02_44" : [ - "EU781782" - ], - "Dengue_virus_1__DENV_1_VN_BID_V4021_2008" : [ - "GU131783" - ], - "Soybean_mosaic_virus__SC6_N" : [ - "KP710867" - ], - "Hepatitis_B_virus__C_NZL_WH23_1993" : [ - "HQ700490" - ], - "Dengue_virus_3__DENV_3_IND_58760_2005" : [ - "JQ922556" - ], - "Cowpox_virus_EleGri07_1" : [ - "KC813507" - ], - "Okra_yellow_mosaic_Mexico_virus__Iguala_13_14" : [ - "HQ020409" - ], - "East_African_cassava_mosaic_virus_Kenya__Comoros_Anjouan_AJ01B07_2004" : [ - "JF909063" - ], - "Watermelon_chlorotic_stunt_virus__PA1_J45" : [ - "KM820272" - ], - "Squash_leaf_curl_virus__IL2_73" : [ - "KM595114" - ], - "Meles_meles_polyomavirus_1__French" : [ - "NC_026473" - ], - "Rottboellia_yellow_mottle_virus" : [ - "NC_027198" - ], - "Cotton_leaf_curl_betasatellite__Abohar_2012" : [ - "KJ614436" - ], - "Hepatitis_B_virus__KOR9CHB" : [ - "GQ475313" - ], - "Human_respiratory_syncytial_virus_06_036027" : [ - "JX576753" - ], - "Hepatitis_B_virus_FMU022" : [ - "AY206393" - ], - "Human_polyomavirus_7__713a" : [ - "NC_014407" - ], - "Chlamydia_trachomatis_G_11222" : [ - "NC_017430" - ], - "Marburg_marburgvirus__MARV_H_sapiens_tc_COD_2000_27_DRC" : [ - "JX458837" - ], - "Dengue_virus_1__DENV_1_US_BID_V2095_1994" : [ - "FJ410175" - ], - "Synechococcus_phage_ACG_2014b__Syn7803C78" : [ - "KJ019051" - ], - "Streptococcus_phage_phiBHN167" : [ - "NC_022791" - ], - "Beak_and_feather_disease_virus__BFDV_J_PL_688_2008" : [ - "JX221037" - ], - "Corchorus_golden_mosaic_virus__Bangladesh_Kurigram_2013___Bangladesh_Kurigram_2013" : [ - "AB971850", - "AB971851" - ], - "Rous_sarcoma_virus" : [ - "V01197", - "NC_001407" - ], - "Porcine_circovirus_2_GD017" : [ - "KP637021" - ], - "Porcine_stool_associated_circular_virus_7__EP3_D" : [ - "KJ577815" - ], - "Solenopsis_invicta_densovirus__SiDNV_Arg" : [ - "NC_022748" - ], - "Enterovirus_A71__1M_AUS_12_00" : [ - "DQ341361" - ], - "Human_immunodeficiency_virus_1__ZM249M_flF1" : [ - "FJ496214" - ], - "Bean_golden_mosaic_virus__BgV03B_1_C46" : [ - "JF694458" - ], - "Human_papillomavirus_type_58__JP1352" : [ - "AB819278" - ], - "African_cassava_mosaic_virus__MG_MG16A28_06" : [ - "KJ887836" - ], - "Hepatitis_B_virus_Ehi_MH_lam_3_1" : [ - "AB195936" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3823" : [ - "KM233097" - ], - "Human_immunodeficiency_virus_1__104045" : [ - "GU595159" - ], - "Human_herpesvirus_6A_U1102" : [ - "NC_001664" - ], - "Hepatitis_B_virus_P1_27239" : [ - "AF090838" - ], - "Human_immunodeficiency_virus_1__93TH054" : [ - "AB220945" - ], - "Tomato_common_mosaic_virus__BR_Coi18_07" : [ - "KC706600", - "KC706573" - ], - "Hepatitis_C_virus__QC127" : [ - "JF735129" - ], - "Rice_ragged_stunt_virus__SX" : [ - "HM125562", - "HM125567", - "HM125564", - "HM125565", - "HM125561", - "HM125568", - "HM125566", - "HM125559", - "HM125563", - "HM125560" - ], - "Goose_circovirus__GB20_13" : [ - "KP203868" - ], - "Paspalum_striate_mosaic_virus__AU_1656_2004" : [ - "JQ948064" - ], - "Streptomyces_albus_J1074" : [ - "NC_020990" - ], - "Human_immunodeficiency_virus_1__MBCD36" : [ - "AF042105" - ], - "Dengue_virus_3__DENV_3_TH_BID_V2320_2001" : [ - "FJ744732" - ], - "Human_immunodeficiency_virus_1__03ZAPS048MB1" : [ - "DQ396364" - ], - "Hepatitis_B_virus__SFN0098" : [ - "KF779385" - ], - "Escherichia_coli_UM146" : [ - "NC_017630", - "NC_017632" - ], - "Discula_destructiva_virus_2__331" : [ - "NC_003711", - "NC_003710" - ], - "Hepatitis_B_virus__BV_114" : [ - "GU563559" - ], - "Human_papillomavirus_type_58__Rw63" : [ - "HQ537771" - ], - "Mycobacterium_phage_LRRHood" : [ - "GQ303262" - ], - "Tobacco_leaf_curl_Zimbabwe_virus" : [ - "NC_002817", - "AM701756" - ], - "Dengue_virus_1__DENV_1_KH_BID_V4249_2007" : [ - "HM181948" - ], - "Dengue_virus_1_D1_SG_05K4620DK1_2005" : [ - "EU081275" - ], - "Vibrio_cholerae_MJ_1236" : [ - "NC_012668", - "NC_012667" - ], - "Dengue_virus_1__DENV_1_VN_BID_V1576_2007" : [ - "FJ024436" - ], - "Razdan_virus_LEIV_Arm2741" : [ - "NC_022631", - "NC_022630", - "NC_022632" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_SLE_2014_Makona_G3846" : [ - "KM233109" - ], - "Human_parainfluenza_virus_3_HPIV3_Homo_sapiens_PER_FPP00367_2011" : [ - "KJ672587" - ], - "Human_bocavirus__HK16" : [ - "EF450732" - ], - "Enterobacteria_phage_fiAA91_ss" : [ - "NC_022750" - ], - "Tomato_leaf_curl_Gujarat_virus__India_Valsad_2012___Valsad" : [ - "KF515618" - ], - "Human_immunodeficiency_virus_1__98VNHD9" : [ - "FJ185232" - ], - "West_Nile_virus__WNV_1_US_BID_V6623_2002" : [ - "KJ501375" - ], - "Human_poliovirus_1__TJK37339" : [ - "KC880381" - ], - "Porcine_circovirus_2_Y_1" : [ - "KF027491" - ], - "JC_polyomavirus__ET_1" : [ - "AB126983" - ], - "Madariaga_virus_MADV_Equus_ferus_caballus_PAN_GML900188_1962" : [ - "KJ469565" - ], - "Infectious_bronchitis_virus_ck_CH_LHLJ_111050" : [ - "KJ425506" - ], - "Porcine_circovirus_2__SD" : [ - "HM776450" - ], - "Clerodendrum_golden_mosaic_China_virus__Fz8" : [ - "FJ011671" - ], - "Marburg_marburgvirus__RAVV_R_aegyptiacus_tc_UGA_2009_1304_Qbat" : [ - "JX458857" - ], - "Golden_Gate_virus__BC" : [ - "NC_018482", - "NC_018483" - ], - "African_cassava_mosaic_virus__ACMV_Ybi2_Cm" : [ - "FN435276" - ], - "Tula_virus_Tula_175Ma_87" : [ - "Z30943" - ], - "Gloeocapsa_PCC_7428" : [ - "NC_019747", - "NC_019746", - "NC_019745", - "NC_019759", - "NC_020051" - ], - "Hepatitis_B_virus__034_K_Kat" : [ - "KF873525" - ], - "BK_polyomavirus__BKV_CAP_m9" : [ - "AY628233" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V402_2006" : [ - "EU256067" - ], - "Hepatitis_C_virus_subtype_1a__HCV_1a_US_BID_V9_2005" : [ - "EU482848" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_151_2012" : [ - "KJ686300" - ], - "SFTS_virus_HNXY_262_HNXY_262" : [ - "KC292309", - "KC292282", - "KC292335" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD232_2013" : [ - "KM229873" - ], - "Enterobacteria_phage_Sf101" : [ - "NC_027398" - ], - "Human_papillomavirus_type_39__Qv18075" : [ - "KC470232" - ], - "Foot_and_mouth_disease_virus___type_O__BFS_1848" : [ - "JX869179" - ], - "Citrus_tristeza_virus__CT11A" : [ - "JQ911664" - ], - "Human_respiratory_syncytial_virus_RSVA_Homo_sapiens_PER_IPE01270_2012" : [ - "KJ627264" - ], - "Dengue_virus_1_ThD1_0008_81" : [ - "AY732483" - ], - "Hepatitis_B_virus__919047" : [ - "JN040751" - ], - "Simian_immunodeficiency_virus__SIVdrl1FAO" : [ - "AY159321" - ], - "Porcine_reproductive_and_respiratory_syndrome_virus" : [ - "EF488048", - "NC_001961", - "DQ176021" - ], - "Cucumber_mosaic_virus_satellite_RNA__To_1989_24_1" : [ - "Z75874" - ], - "Newcastle_disease_virus__MHK_1" : [ - "KM408752" - ], - "Human_immunodeficiency_virus_1_TV001" : [ - "AY162223" - ], - "Human_immunodeficiency_virus_1_ZAM184" : [ - "HIVU86780" - ], - "Tomato_leaf_deformation_virus__PA98_2_1" : [ - "JX501503" - ], - "Tamana_bat_virus" : [ - "NC_003996", - "AF346759" - ], - "Human_coronavirus_NL63__Amsterdam_057" : [ - "DQ445911" - ], - "Tomato_yellow_leaf_curl_virus___Il_recombinant_IS76_G65" : [ - "LN846603" - ], - "Porcine_circovirus_2_TJ1407" : [ - "KP670419" - ], - "Porcine_circovirus_2__WY20141218" : [ - "KP824725" - ], - "SARS_coronavirus_TW10__TW10" : [ - "AY502923" - ], - "BK_polyomavirus__GBR_8" : [ - "AB263923" - ], - "Hepatitis_B_virus__KOR27LC" : [ - "GQ475331" - ], - "Dengue_virus_2_Bangkok_1974" : [ - "AJ487271" - ], - "Coxsackievirus_A13_BAN99_10419" : [ - "DQ995640" - ], - "Dengue_virus_2__DENV_2_VE_BID_V2161_2001" : [ - "JN819408" - ], - "Tomato_yellow_leaf_curl_virus_TYLCV_CJ_Kdo" : [ - "AB636412" - ], - "Human_respiratory_syncytial_virus_09_052617" : [ - "JX576741" - ], - "Human_bocavirus_LZFB086" : [ - "KM624027" - ], - "Zaire_ebolavirus__Ebola_virus_H_sapiens_wt_GIN_2014_Makona_Conakry_1215" : [ - "KR534584" - ], - "Lactococcus_phage_CaseusJM1" : [ - "KC522412" - ], - "Hepatitis_B_virus__S1607_10" : [ - "FJ032358" - ], - "Tomato_yellow_leaf_curl_virus___Il__TYLCV_IL_IR_Boj_132_13" : [ - "KC106647" - ], - "Isoptericola_variabilis_225" : [ - "NC_015588" - ], - "Caladenia_virus_A__KP1" : [ - "NC_018572" - ], - "Norovirus_Hu_GII_4_Osaka1_2008_JP_Hu_GII_4_Osaka1_2008_JP" : [ - "AB541320" - ], - "Coxsackievirus_A16__YN10_02" : [ - "KF193622" - ], - "Bovine_viral_diarrhea_virus_2__D37_13_2_Dup" : [ - "HG426479", - "HG426480" - ], - "Hepatitis_B_virus__Ag63" : [ - "KJ843218" - ], - "Rickettsia_australis_Cutlack" : [ - "NC_017041", - "NC_017058" - ], - "Flavobacterium_branchiophilum_FL_15" : [ - "NC_018751", - "NC_016001" - ], - "Hepatitis_B_virus__I111" : [ - "FJ562262" - ], - "Chickpea_chlorotic_dwarf_virus__CpCDV_H_SD_SD269_2013" : [ - "KM229892" - ], - "JC_polyomavirus__PML013URNFLC_06" : [ - "JF425556" - ], - "Dengue_virus_2__MKS_2108" : [ - "KC762671" - ], - "Duck_hepatitis_A_virus_3_FS_foshan" : [ - "EU877916" - ], - "West_Nile_virus_Italy_2014_Verona_35_2" : [ - "KP789956" - ], - "Wheat_dwarf_virus__SXHC10_9" : [ - "JQ647492" - ], - "Human_papillomavirus_type_6__3" : [ - "HG793811" - ], - "Tomato_yellow_spot_virus" : [ - "FJ538207" - ], - "Blattabacterium__Nauphoeta_cinerea" : [ - "NC_022550", - "NC_022551" - ], - "Maize_streak_virus__UIga_235" : [ - "EF547114" - ], - "Propionibacterium_acnes_TypeIA2_P_acn17" : [ - "NC_016512" - ], - "Hepatitis_B_virus__919067" : [ - "JN040819" - ], - "Beak_and_feather_disease_virus__NCL7" : [ - "JX049202" - ], - "Acidimicrobidae_bacterium_YM16_304" : [ - "NC_020520" - ], - "Bean_common_mosaic_virus__NY15p" : [ - "KT175568" - ], - "Porcine_circovirus_2_GX" : [ - "AY556475" - ], - "South_African_cassava_mosaic_virus__MG_MG489A1_11" : [ - "KJ887725" - ], - "Human_coronavirus_229E__J0304" : [ - "JX503061" - ], - "Human_immunodeficiency_virus_1__04ZASK143B1" : [ - "AY703910" - ], - "Dengue_virus_3__DENV_3_VE_BID_V2482_2007" : [ - "FJ850110" - ], - "Dengue_virus_1__DENV_1_MX_BID_V3759_2008" : [ - "GQ868538" - ], - "Enterovirus_A71_EV71_Homo_sapiens_VNM_16_2011" : [ - "KJ686275" - ], - "Dengue_virus_3__DENV_3_PE_BID_V7078_2008" : [ - "KJ189290" - ], - "Dengue_virus_2__DENV_2_US_BID_V1055_1996" : [ - "EU569703" - ], - "Porcine_circovirus_2_BJ_HB" : [ - "AF538325" - ], - "Homalodisca_vitripennis_reovirus__NC15" : [ - "GU437848" - ], - "Human_immunodeficiency_virus_1__03ZAPS089MB1" : [ - "DQ351216" - ], - "Human_respiratory_syncytial_virus__RSV_10" : [ - "GU591767" - ], - "Hepatitis_B_virus__WY_SD_37" : [ - "JX504545" - ], - "Dengue_virus_1__DENV_1_VN_BID_V3886_2008" : [ - "GU131716" - ], - "West_Nile_virus__WNV_1_US_BID_V4693_2001" : [ - "HM756662" - ], - "Sudan_ebolavirus__EboSud_609_2012" : [ - "KC545391" - ], - "Canine_circovirus_Ha13" : [ - "KF887949" - ], - "Tomato_yellow_leaf_curl_virus__SDGp" : [ - "KC852147" - ], - "Porcine_circovirus_2__HLJ_7" : [ - "HM776439" - ], - "East_African_cassava_mosaic_virus_Uganda2_Severe__K2J4" : [ - "JN053437" - ], - "Japanese_iris_necrotic_ring_virus" : [ - "NC_002187" - ], - "Okahandja_virus_N73_OkhMi_n4" : [ - "NC_027137" - ], - "West_Nile_virus__WNV_1_US_BID_V4597_2003" : [ - "JF920306" - ], - "Maize_streak_virus__MSV_A_CF_Boss1_Car34_2008" : [ - "HQ693314" - ], - "West_Nile_virus__WNV_1_US_BID_V4718_2003" : [ - "HM756669" - ], - "Hepatitis_B_virus__YOGHhbv94" : [ - "AB713530" - ], - "West_Nile_virus__WNV_1_US_BID_V4896_2006" : [ - "JN183888" - ], - "Maguari_virus__ts8" : [ - "AY286444" - ], - "Avian_myelocytomatosis_virus" : [ - "NC_001866" - ], - "Bartonella_tribocorum_CIP_105476" : [ - "NC_010161", - "NC_010160" - ], - "Human_respiratory_syncytial_virus_08_045952" : [ - "JX576745" - ] -} diff --git a/edge_ui/images/pe_orientation.png b/edge_ui/images/pe_orientation.png new file mode 100644 index 00000000..22c583b3 Binary files /dev/null and b/edge_ui/images/pe_orientation.png differ diff --git a/edge_ui/images/sWorkflow.jpg b/edge_ui/images/sWorkflow.jpg new file mode 100644 index 00000000..d8eb3769 Binary files /dev/null and b/edge_ui/images/sWorkflow.jpg differ diff --git a/edge_ui/images/sWorkflow_small.jpg b/edge_ui/images/sWorkflow_small.jpg new file mode 100644 index 00000000..be2438be Binary files /dev/null and b/edge_ui/images/sWorkflow_small.jpg differ diff --git a/edge_ui/images/sort_asc.png b/edge_ui/images/sort_asc.png new file mode 100644 index 00000000..e1ba61a8 Binary files /dev/null and b/edge_ui/images/sort_asc.png differ diff --git a/edge_ui/images/sort_both.png b/edge_ui/images/sort_both.png new file mode 100644 index 00000000..af5bc7c5 Binary files /dev/null and b/edge_ui/images/sort_both.png differ diff --git a/edge_ui/images/sort_desc.png b/edge_ui/images/sort_desc.png new file mode 100644 index 00000000..0e156deb Binary files /dev/null and b/edge_ui/images/sort_desc.png differ diff --git a/edge_ui/images/workflow.jpg b/edge_ui/images/workflow.jpg old mode 100755 new mode 100644 index 36375bf3..fabf586b Binary files a/edge_ui/images/workflow.jpg and b/edge_ui/images/workflow.jpg differ diff --git a/edge_ui/images/workflow_small.jpg b/edge_ui/images/workflow_small.jpg index 60887988..7998d280 100644 Binary files a/edge_ui/images/workflow_small.jpg and b/edge_ui/images/workflow_small.jpg differ diff --git a/edge_ui/index.html b/edge_ui/index.html index 53ff28d3..e0635117 100755 --- a/edge_ui/index.html +++ b/edge_ui/index.html @@ -10,6 +10,8 @@ + + @@ -19,6 +21,7 @@ + @@ -30,6 +33,12 @@ + + + + + + @@ -49,6 +58,9 @@

EDGE bioinformatics

+
+

+
Menu User Action @@ -61,6 +73,7 @@
  • Home
  • Upload Files
  • Run EDGE
  • +
  • Run Qiime
  • @@ -100,16 +113,37 @@

    + + + +

  • @@ -125,12 +159,21 @@

    Empowering the Development of Genomics Expertise -

    EDGE bioinformatics is intended to help truly democratize the use of Next Generation Sequencing for exploring genomes and metagenomes. Given that bioinformatic analysis is now the rate limiting factor in genomics, we developed EDGE bioinformatics with a user-friendly interface that allows scientists to perform a number of tailored analyses using many cutting-edge tools. This website is available for use with publicly available data, while local stand-alone implementations can accommodate data generated on-site for immediate analysis, eliminating the need to move large datasets.

    EDGE Workflow

    -
    +
    + EDGE_sWorkflow + + EDGE_workflow +
    +

    Features of EDGE

    -

    -

      -
    • No need for high-level bioinformaticists
    • -
    • Allow users to address a wide range of use cases including the assembly/annotation and comparison of novel genomes, and the characterization of complex clinical or environmental samples
    • -
    • Can present the results of several taxonomy classification tools for easy comparison
    • -
    • Focus on accurate and rapid analysis
    • -
    • Enables sequencing as a solution in facilities where human-resources, space, bandwidth, and time are limited
    • -
    -

    +

    +

      +
    • No need for high-level bioinformaticists
    • +
    • Allow users to address a wide range of use cases including the assembly/annotation and comparison of novel genomes, and the characterization of complex clinical or environmental samples
    • +
    • Can present the results of several taxonomy classification tools for easy comparison
    • +
    • Focus on accurate and rapid analysis
    • +
    • Enables sequencing as a solution in facilities where human-resources, space, bandwidth, and time are limited
    • +
    +

    Implementation

      @@ -163,7 +206,7 @@

      Download & Updates

      Tutorial & Help

      - The tutorial and guide are hosted in edge.readthedocs.org in (click here for PDF version). User discussion group can be found here. + The tutorial and guide are hosted in edge.readthedocs.org in (click here for PDF version). User discussion group can be found here.

      @@ -173,21 +216,36 @@

      Tutorial & Help

      -
      +

      Input Your Sample

      -

      EDGE requires sequence data files in FASTQ format. EDGE allows both paired-end and single-end sequences.

      +

      EDGE requires sequence data files in FASTQ format. EDGE allows both paired-end and single-end sequences.

      +

      The Qiime pipeline requires sequence data files in FASTQ format and a mapping file. The sequence file is either paired-end or single-end sequences.

      + +
      -

      Input Raw Reads

      +

      Input Raw Reads

      - +
      + +
      +
      + Amplicon Type + + + + + + +
      +
      Input from NCBI Sequence Reads Archive(SRA) @@ -198,28 +256,48 @@

      Input Raw Reads

      -

      Paired-end reads:

      +
      + Reads Type + + + + + + +
      + +
      + Paired Reads Orientation + + + + +
      + +

      Sequencing Reads:

      + +
      - +
      - +
      -

      and/or

      +

      and/or

      - - + +
      @@ -230,16 +308,36 @@

      Input Raw Reads

      (Internet requried) Input SRA accessions support studies (SRP*/ERP*/DRP*), experiments (SRX*/ERX*/DRX*), samples (SRS*/ERS*/DRS*), runs (SRR*/ERR*/DRR*), or submissions (SRA*/ERA*/DRA*). ex: SRR1553609

      - +
      +
      + + + +
      +
      +
      +

      Mapping File:

      +
      + + + +
      +
      + + - +
      + + + +
      +
      +

      +
      + + +
      +

      +
      + +
      + +
      + +
      +
      + + +
      +
      +
      + + + + + + + +
      +
      +
      + +
      +
      + + +
      +
      +
      + + + + + +
      +
      +
      + + +
      +
      + + +
      +
      + +
      + +
      + +
      +
      + +
      +
      + +
      + + +
      + +
      + + +
      + + + + +
      +
      + + +
      + +
      + + +
      + + +
      + + +
      + +
      + + +
      + + +
      + + +
      + +
      + + +
      + + + + +
      + +
      + +
      +
      + +
      + +
      +
      + +
      +
      + +
      +
      + +
      +
      +
      + + +
      +
      +

      +
      + + + +

      -

      Choose Processes / Analyses

      -

      EDGE provides many modules to do various analyses. You can choose to run or skip a specific process. Parameters/options are provided for most of the analyses. +

      Choose Processes / Analyses

      +

      EDGE provides many modules to do various analyses. You can choose to run or skip a specific process. Parameters/options are provided for most of the analyses. You can click here to turn all on, expand all sections or close all sections.

      +

      @@ -297,9 +594,14 @@

      - -
        -
      1. Quality Trim and Filter +
        + +
        Run Quality Trim and Filter @@ -352,8 +654,8 @@

        -
      2. -
      3. Host Removal +
      +
      Run Host Removal @@ -371,7 +673,7 @@

      and/or

      - +
      @@ -385,9 +687,8 @@

      --> - - - +
      +

      @@ -398,9 +699,17 @@

      +
      + +
      - Bypass assembly and use pre-assembled contigs + Bypass Assembly And Use Pre-assembled Contigs @@ -414,13 +723,15 @@

      -
      - Assembler - - - - -
      +
      + Assembler + + + + + + +

      IDBA_UD performs well on isolates as well as metagenomes but it may not work well on very large genomes.

      @@ -429,7 +740,16 @@

      -

      SPAdes performs well on isolates as well as single cell data but it may not work on larger genome, and it takes more computational resource. PacBio CLR and Oxford Nanopore reads are used for gap closure and repeat resolution.

      +

      SPAdes performs well on isolates as well as single cell data but it may not work on larger genomes, and it takes more computational resource. PacBio CLR and Oxford Nanopore reads are used for gap closure and repeat resolution.

      +
      +
      + Metagenome Data + + + + +
      +
      Single Cell Data @@ -450,8 +770,49 @@

      +
      +

      MEGAHIT is an ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph which achieves low memory assembly.

      +
      + + +
      +
      +
      +
      + Validation Aligner + + + + +
      +
      + + +
      +
      + + +
      +
      +
      + Extract Unmapped/Unassembled Reads + + + + +
      +
      +
      +
      +
      Annotation @@ -495,6 +856,8 @@

      Please provide the reference/source annotation (Genbank file), EDGE will use RATT to transfer the annotation from the reference genome. The reference genome must be close relative to the sample.

      +
      +
      @@ -515,36 +878,69 @@

      and/or

      - - -
      - file - Add -
      -
      - -
      -
      - Identify Unmapped Reads - - - - -
      + + +
      + file + Add +
      -
      +
      - Identify Unmapped Contigs - - - - + Reads Aligner + + + +
      -

      EDGE will try to classify reads and contigs that are unmapped to references by mapping them to NCBI RefSeq database.

      + +
      +
      + + +
      +
      +
      + Identify Unmapped Reads + + + + +
      +
      - - +
      +-->
      @@ -590,18 +987,18 @@

      EDGE will use all reads by default. You can change the behavior to use reads that are unmapped to the reference if Reference-based Analysis is on.

      - Always use all reads + Always Use All Reads
      -

      EDGE uses multiple tools for taxonomy classification including GOTTCHA (bacterial & viral databases), MetaPhlAn, MetaPhyler (short read version), Kraken, MetaScope and reads mapping to NCBI RefSeq using BWA.

      +

      EDGE uses multiple tools for taxonomy classification including GOTTCHA (bacterial & viral databases), MetaPhlAn, Kraken and reads mapping to NCBI RefSeq using BWA.

      Classification Tools - +
      + +
      +
      + Bootstrap + + + + +
      +
      + +

      +
      +

      +
      + + +
      +

      +
        +
      1. Read-based Specialty Gene Analysis
      2. +

        EDGE will use ShortBRED to search the reads for Antibiotic Resistance genes from ARDB and Resfams and for Virulence genes from VFDB.

        +
        +
        + Reads Specialty Genes Profiling + + + + +
        +
        +
      3. Contig-based (ORF) Specialty Gene Analysis
      4. +

        EDGE will use ShortBRED to search the ORFs on the contigs for Virulence genes from VFDB.

        +

        EDGE will use RGI (Resistance Gene Identifier) to search the ORFs on the contigs for Antibiotic Resistance genes from CARD.

        +
        +
        + ORF Specialty Genes Profiling + + + + +
        +
        +
          + +
          +
          + + +
          +
          + + +
          +
          +

      @@ -720,9 +1186,15 @@

      - -
        -
      1. Primer Validation +
        + + +
        Run Primer Validation @@ -739,22 +1211,22 @@

        -
        - Maximum Mismatch - - - - - - - - - - -
        +
        + Maximum Mismatch + + + + + + + + + + +
        -
      2. -
      3. Primer Design +
      +
      Run Primer Design @@ -796,14 +1268,80 @@

      - - +
      + + + +
      +
      +

      Parameters

      +
        +
      1. Barcode Options
      2. +
        + + +
        file + Add +
        + +
        +
        + + +
        +
      3. Reads Filters
      4. +
        + + +
        +
        + + +
        +
        + + +
        +
      5. OTU Clustering Options/Filters
      6. + +
        + + +
        +
        + + +
        +
        + + +
        + +
        + + +
        +
        + + +
        +
      +
      +
        @@ -946,7 +1484,7 @@

        User Profile

        Upload files

        -

        Max file size is 5gb. Allowed File types are fastq, fasta and genbank and can be in gzip format. Files will be kept for 7 days.

        +

        Max file size is 5gb. Allowed File types are fastq, fasta, genbank and text (txt,config,ini) and can be in gzip format. Files will be kept for 7 days.

        You are not logged in or your browser doesn't have Flash, Silverlight or HTML5 support.

        @@ -956,7 +1494,8 @@

        Upload files