$fastq_quality_filter -q 29 -p 80 -i inputfile -o outfile -v -Q 33/64 [-q N] = 最小的需要留下的质量值[-p N] = 每个reads中最少有百分之多少的碱基需要有-q的质量值 [-z] =压缩输出 [-v] =详细-报告 ...
分类:
其他好文 时间:
2017-06-24 23:38:04
阅读次数:
560
文本处理三剑客之sed(流编辑器) 把当前处理的行存储在临时缓冲区,称为模式空间,然后把模式空间的内容送往屏幕,一行一行的处理,主要用来编辑一个或者多个文件。 sed [option]... 'script' inputfile... -n:不输出模式空间内容到屏幕,即不自动打印 默认会打印模式空间 ...
分类:
其他好文 时间:
2017-05-01 22:10:29
阅读次数:
274
iconv是linux下的编码转换的工具,它提供命令行的使用和函数接口支持 命令行的使用iconv命令用法如下: iconv -f encoding -t encoding inputfile有如下选项可用:输入/输出格式规范:-f, --from-code=名称 原始文本编码-t, --to-co ...
分类:
其他好文 时间:
2017-03-11 13:09:34
阅读次数:
194
一:inputfile打开系统文件时过滤,给input添加属性accept:"image/*"。 二:当点击触发swiper图片预览插件时,必须将插件的初始化放在点击事件内部,不然无法正常运行。 三:有时input高度是一样的,显示的高不一致,border有的显示在height里面,显高=heigh ...
分类:
其他好文 时间:
2017-02-28 23:02:49
阅读次数:
188
linux系统中,利用grep打印匹配的上下几行 如果在只是想匹配模式的上下几行,grep可以实现。 $grep -5 'parttern' inputfile //打印匹配行的前后5行 $grep -C 5 'parttern' inputfile //打印匹配行的前后5行 $grep -A 5 ...
分类:
系统相关 时间:
2017-01-25 12:38:25
阅读次数:
208
1 global flag sed 's/xxx/xxx/' inputfile,如果没有带global flag g的话,匹配替换的只是inputfile中的每一行的第一个匹配项。如果带了g的话,才会全部都替换。\ 例子:MBA_students.txt102,Jason Smith,IT Man ...
分类:
其他好文 时间:
2017-01-22 16:38:09
阅读次数:
230
1 Const 2 SourcePath:string='incantation'; 3 InputFile:string='incantation.in'; 4 OutputFile:string='incantation.out'; 5 type 6 PROCESSENTRY32=record ... ...
分类:
其他好文 时间:
2017-01-21 17:23:11
阅读次数:
252
<div class="inputFileWrapper"> <label for="inputFile"> <input type="file" id="inputFile"/> <span class="custorm-style"> <span class="left-button">上传头像 ...
分类:
其他好文 时间:
2017-01-09 11:04:13
阅读次数:
178
sed工具:sed是文本流编辑器,逐行对文件的内容进行处理用法:sed[option]...‘script‘inputfile...选项:-n:静默模式,不输出模式空间的内容至屏幕-e:实现多点的功能编辑-f/path/from/script_file:从指定的文件读取编辑脚本-r:支持使用扩展的正则表达式地址界面方法:(1)不给地..
分类:
其他好文 时间:
2016-12-16 12:22:14
阅读次数:
225
Stringpath="d:\\success.xlsx";
StringsheetName="sheetlist";
XSSFWorkbookwb=null;
XSSFSheetsheetlist=null;
FileinputFile=newFile(path);
if(inputFile.exists()){
wb=newXSSFWorkbook(newFileInputStream(path));
}else{
wb=newXSSFWorkbook();//excel文件对象
}
if(..
分类:
编程语言 时间:
2016-11-29 00:00:08
阅读次数:
938