diff --git "a/2023/08/02/GSEA\347\232\204\345\256\236\347\216\260/index.html" "b/2023/08/02/GSEA\347\232\204\345\256\236\347\216\260/index.html" index 37001e4..2675935 100644 --- "a/2023/08/02/GSEA\347\232\204\345\256\236\347\216\260/index.html" +++ "b/2023/08/02/GSEA\347\232\204\345\256\236\347\216\260/index.html" @@ -1,9 +1,9 @@ -first try | first blog +first try | first blog - + @@ -15,7 +15,7 @@

first try

GESA 脚本

GSEA分析(具体参数参考:https://mp.weixin.qq.com/s/p-n5jq5Rx2TqDBStS2nzoQ)

+ })(window)

first try

文章作者: Lvzhaopeng
文章链接: http://example.com/2023/08/02/GSEA%E7%9A%84%E5%AE%9E%E7%8E%B0/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 first blog
\ No newline at end of file +
文章作者: Lvzhaopeng
文章链接: http://example.com/2023/08/02/GSEA%E7%9A%84%E5%AE%9E%E7%8E%B0/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 first blog
\ No newline at end of file diff --git a/2023/08/02/hello-world/index.html b/2023/08/02/hello-world/index.html index fb7ffb2..fb04ccc 100644 --- a/2023/08/02/hello-world/index.html +++ b/2023/08/02/hello-world/index.html @@ -13,7 +13,7 @@

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

+ })(window)

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

@@ -174,4 +174,4 @@

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

-
文章作者: Lvzhaopeng
文章链接: http://example.com/2023/08/02/hello-world/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 first blog
\ No newline at end of file +
文章作者: Lvzhaopeng
文章链接: http://example.com/2023/08/02/hello-world/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 first blog
\ No newline at end of file diff --git "a/2023/08/02/python\344\274\240\345\217\202/index.html" "b/2023/08/02/python\344\274\240\345\217\202/index.html" index 84ffdcd..a258fc3 100644 --- "a/2023/08/02/python\344\274\240\345\217\202/index.html" +++ "b/2023/08/02/python\344\274\240\345\217\202/index.html" @@ -16,7 +16,7 @@

sleep

传参sys1

import sys
IN_xml, OUT_csv = sys.argv[1],sys.argv[2]
a=sys.argv[0]

+ })(window)

sleep

传参sys1

import sys
IN_xml, OUT_csv = sys.argv[1],sys.argv[2]
a=sys.argv[0]

传参2 ## argparse

ArgumentParser.add_argument([][],[],[])

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

- type - 参数类型,如int,str。
- choices - 用来选择输入参数的范围。例如choice = [1, 5, 10], 表示输入参数只能为1,5 或10。
- default - (不指定参数时的默认值)
- action - 命令行遇到参数时的动作,默认值是 store,store_const,表示赋值为const。【action='store_true',指触发action时为真,不触发为假;也就是说,只要运行时该变量有传参就将该变量设为True】

- nargs - 应该读取的命令行参数个数,可以是具体的数字,或者是?号,当不指定值时对于 Positional argument 使用 default,对于 Optional argument 使用 const;
nargs=’*’    表示参数可设置零个或多个
nargs=’ ‘+’   表示参数可设置一个或多个
nargs=’?’   表示参数可设置零个或一个..
- nargs=2 参数个数

required-可选参数是否可以省略 (仅针对可选参数)。
- metavar-在 usage 说明中的参数名称,对于必选参数默认就是参数名称,对于可选参数默认是全大写的参数名称。
- dest - 用来指定参数的位置。
@@ -176,4 +176,4 @@

示例3多级分类

1
2
3
4
5
6
7
    parser=argparse.ArgumentParser(description="")
    subparser=parser.add_subparsers()
  one=subparser.add_parser('ONE') #添加大类
   one.add_argument('--list') #添加大类中的小类
    one.set_defaults(func=one_lncRNA)
    args=parser.parser_args() #解析
    args.fun(args)
-
文章作者: Lvzhaopeng
文章链接: http://example.com/2023/08/02/python%E4%BC%A0%E5%8F%82/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 first blog
\ No newline at end of file +
文章作者: Lvzhaopeng
文章链接: http://example.com/2023/08/02/python%E4%BC%A0%E5%8F%82/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 first blog
\ No newline at end of file diff --git a/about/index.html b/about/index.html new file mode 100644 index 0000000..1b8bc8a --- /dev/null +++ b/about/index.html @@ -0,0 +1,169 @@ +about | first blog + + + + + + + + + +
公告
This is my Blog
最新文章
Hello World
sleep
first try
+ + 分类 + +
+
网站资讯
文章数目 :
3
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file diff --git a/archives/2023/08/index.html b/archives/2023/08/index.html index b5ea2a0..668ba23 100644 --- a/archives/2023/08/index.html +++ b/archives/2023/08/index.html @@ -9,7 +9,7 @@