Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eric committed Mar 10, 2024
1 parent 1f27e8d commit 67c4ec7
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions ncbi/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,16 @@ use std::path::PathBuf;
use tokio::runtime::Builder;

const NCBI_LIBRARY: &'static [&str] = &[
"archaea", "bacteria", "viral", "fungi", "plant", "human", "protozoa",
"archaea",
"bacteria",
"viral",
"fungi",
"plant",
"human",
"protozoa",
"vertebrate_mammalian",
"vertebrate_other",
"invertebrate",
];

lazy_static! {
Expand Down Expand Up @@ -116,7 +125,7 @@ enum Commands {
#[arg(long, default_value = "basic")]
asm_level: String,

/// 从 NCBI 站点上下载某个种类的数据信息,可以是逗号分隔的多个, archaea,bacteria,viral,fungi,plant,human,protozoa
/// 从 NCBI 站点上下载某个种类的数据信息,可以是逗号分隔的多个, archaea,bacteria,viral,fungi,plant,human,protozoa,vertebrate_mammalian,vertebrate_other,invertebrate
#[arg(short, long, value_parser = validate_group)]
group: String,

Expand Down

0 comments on commit 67c4ec7

Please sign in to comment.