一级标题
二级标题
三级标题
四级标题
- 第一天
- 第二天
- 第三天
- 第四天
- 第五天
- 第六天
插入图片
chrome 浏览器,电脑文件搜索,快捷截图软件 snipaste(快捷键F1)
#!/usr/bin/perl
my ($file, $result, $message);
$file = "Weerasinghe_6L-Int.gbf";
my $ua = LWP::UserAgent->new;
my $req = $ua->request(POST 'http://www.pathogenomics.sfu.ca/islandviewer/rest/submit/',
(Content_Type => 'form-data',
'x-authtoken' => '32b371d7-7831-e6cb-b35d-6edc3bad6322' ),
Content => [
email_addr => 'yzhzhu@hotmail.com',
format_type => "GENBANK",
genome_name => "my sample genome",
genome_file => ["$file"],
# For incomplete genomes include a reference accession
# ref_accnum => "NC_004342.2"
]
);
}`