当前位置: 首页 > news >正文

运河网站制作google推广seo

运河网站制作,google推广seo,wordpress 修改端口号,dede 网站模板01 Skewer 介绍 Skewer(来自于 SourceForge)实现了一种基于位掩码的 k-差异匹配算法,专门用于接头修剪,特别设计用于处理下一代测序(NGS)双端序列。 fastp安装及使用-fastp v0.23.4(bioinfoma…
01 Skewer 介绍

Skewer(来自于 SourceForge)实现了一种基于位掩码的 k-差异匹配算法,专门用于接头修剪,特别设计用于处理下一代测序(NGS)双端序列。

fastp安装及使用-fastp v0.23.4(bioinfomatics tools-002)-CSDN博客

特性

  • 检测并去除接头序列
  • 支持模式匹配中的插入和删除
  • 适用于单端、双端(PE)和长配对(LMP)读取
  • 对带条形码的测序结果进行去重
  • 支持多线程
  • 基于 Phred 质量分数进行修剪
  • 支持条形码和接头中的 IUPAC 字符
  • 支持压缩输入和输出
  • 支持从二进制文件安装
02 安装
2.1 从二进制文件安装
  1. 将 skewer 复制到你喜欢的 BIN 目录,并确保正确设置 PATH 环境变量。例如:

    $ mkdir -p ~/bin
    $ cp -p skewer ~/bin/
    $ echo 'export PATH=~/bin:$PATH' >> ~/.bashrc
    $ source ~/.bashrc
    
2.2 从源代码安装
  1. 进入源代码目录,然后运行以下命令:

    $ make
    $ sudo make install
    
03 Skewer 使用说明

Skewer(一个快速且精确的接头修剪工具,适用于双端读取)

使用方法:

skewer [options] <reads.fastq> [paired-reads.fastq]或者
skewer [options] - (从 STDIN 获取输入)选项说明(括号中的数字为默认值):
接头:
-x <str>:接头序列/文件(默认:AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC)
-y <str>:双端读取的接头序列/文件(默认:AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA),如果只指定 -x,则隐式使用。
-M, --matrix <str>:指示有效接头配对的文件(所有为 1 的矩阵)。
-j <str>:Nextera Mate Pair 读取的接头序列/文件(默认:CTGTCTCTTATACACATCTAGATGTGTATAAGAGACAG)。
-m, --mode <str>:修剪模式;
单端:head:5' 端;tail:3' 端;any:任何位置(默认:tail)
双端:pe:双端;mp:mate-pair;ap:amplicon(默认:pe)
-b, --barcode:根据接头/引物去重条形码(默认:no)
容错:
-r <num>:允许的最大错误率(标准化错误数/对齐区域长度)[0, 0.5](默认:0.1)
-d <num>:允许的最大插入/删除错误率(默认:0.03)
-k <int>:接头检测的最小重叠长度 [1, inf);(单端的最大值:max(1, int(4-10*r));mate-pair的值为<junction length>/2)
修剪:
-c, --cut <int>,<int>:强制修剪掉 5' 端引物作为条形码(在放大模式下)(默认:no)
-e, --cut3:如果读取长度大于指定的最大长度,则强制修剪掉 3' 端尾部碱基(默认:no)
过滤:
-q, --end-quality <int>:修剪 3' 端直到达到指定的质量值(默认:0)
-Q, --mean-quality <int>:修剪前允许的最低平均质量值(默认:0)
-l, --min <int>:修剪后允许的最小读取长度(默认:18)
-L, --max <int>:修剪后允许的最大读取长度(默认:no limit)
-n:是否过滤掉高度退化的(包含许多 N)读取(默认:no)
-u:是否过滤掉未确定的 mate-pair 读取(默认:no)
-N, --fillNs:是否将修剪的碱基替换为 N(在 b 或 -m mp 情况下无效)(默认:no)
输入/输出:
-f, --format <str>:FASTQ质量值的格式:sanger|solexa|auto(默认:auto)
-o, --output <str>:输出文件的基本名称(默认:<reads>.trimmed)
-z, --compress:以 GZIP 格式压缩输出(默认:no)
-1, --stdout:重定向输出到 STDOUT,禁止使用 -b、-o 和 -z 选项(默认:no)
--qiime:为 QIIME 处理准备“barcodes.fastq”和“mapping_file.txt”(默认:no)
--quiet:不显示进度更新(默认:not quiet)
-A, --masked-output:为修剪后的读取写输出文件(修剪后的碱基转换为小写)(默认:no)
-X, --excluded-output:为被排除的读取写输出文件(默认:no)
其他:
-i, --intelligent:在 mate-pair 模式下,是否根据接头信息重新分配读取(默认:no)
-t, --threads <int>:并发线程数 [1, 32](默认:1)
    04 常用示例
    skewer -Q 9 -t 2 -x adapters.fa sample.fastq -o trimmed
    skewer -x AGATCGGAAGAGC -q 3 sample-pair1.fq.gz sample-pair2.fq.gz
    skewer -x TCGTATGCCGTCTTCTGCTTGT -l 16 -L 30 -d 0 srna.fastq
    skewer -m mp -i lmp-pair1.fastq lmp-pair2.fastq
    skewer -m ap --cut 0,6 --qiime -x forward-primers.fa -y reverse-primers.fa mix-pair1.fastq mix-pair2.fastq
    
     05 引用

    Jiang, H., Lei, R., Ding, S.W. and Zhu, S. (2014) Skewer: a fast and accurate adapter trimmer for next-generation sequencing paired-end reads. BMC Bioinformatics15, 182.


    文章转载自:
    http://dinncoprefixion.tqpr.cn
    http://dinncohaole.tqpr.cn
    http://dinncotach.tqpr.cn
    http://dinncovagabondage.tqpr.cn
    http://dinncobroma.tqpr.cn
    http://dinncodynamical.tqpr.cn
    http://dinncomishandled.tqpr.cn
    http://dinncokoala.tqpr.cn
    http://dinncoretuse.tqpr.cn
    http://dinncosewin.tqpr.cn
    http://dinnconongonococal.tqpr.cn
    http://dinncoaglitter.tqpr.cn
    http://dinncoquantivalence.tqpr.cn
    http://dinncobilling.tqpr.cn
    http://dinncomochi.tqpr.cn
    http://dinncocarbinol.tqpr.cn
    http://dinncofusimotor.tqpr.cn
    http://dinncocoronagraph.tqpr.cn
    http://dinncofingery.tqpr.cn
    http://dinncomio.tqpr.cn
    http://dinncopleuritis.tqpr.cn
    http://dinncobehest.tqpr.cn
    http://dinncomicrococcus.tqpr.cn
    http://dinncoally.tqpr.cn
    http://dinncocenospecies.tqpr.cn
    http://dinncowitless.tqpr.cn
    http://dinncobibelot.tqpr.cn
    http://dinncostartled.tqpr.cn
    http://dinncoinfluent.tqpr.cn
    http://dinncowheen.tqpr.cn
    http://dinncoarchenteric.tqpr.cn
    http://dinncotrivet.tqpr.cn
    http://dinncoendlong.tqpr.cn
    http://dinncodisenchanted.tqpr.cn
    http://dinncofavela.tqpr.cn
    http://dinnconeuropsychical.tqpr.cn
    http://dinncoweep.tqpr.cn
    http://dinncodisapproval.tqpr.cn
    http://dinncoextoll.tqpr.cn
    http://dinncosecam.tqpr.cn
    http://dinncorecommit.tqpr.cn
    http://dinncophilomel.tqpr.cn
    http://dinncogranicus.tqpr.cn
    http://dinncoleadenhearted.tqpr.cn
    http://dinncoember.tqpr.cn
    http://dinncoetherial.tqpr.cn
    http://dinncopyrethrum.tqpr.cn
    http://dinncofulmine.tqpr.cn
    http://dinncoeconomizer.tqpr.cn
    http://dinncomatthew.tqpr.cn
    http://dinncopistillate.tqpr.cn
    http://dinncoendorsee.tqpr.cn
    http://dinncopsytocracy.tqpr.cn
    http://dinncoroommate.tqpr.cn
    http://dinncomanganate.tqpr.cn
    http://dinncowindiness.tqpr.cn
    http://dinncodownrange.tqpr.cn
    http://dinncogross.tqpr.cn
    http://dinncokith.tqpr.cn
    http://dinncogranth.tqpr.cn
    http://dinncocockfight.tqpr.cn
    http://dinncochrysoberyl.tqpr.cn
    http://dinncoincarnadine.tqpr.cn
    http://dinncofrancium.tqpr.cn
    http://dinncoantonia.tqpr.cn
    http://dinncocavalry.tqpr.cn
    http://dinncopedimental.tqpr.cn
    http://dinncocaecum.tqpr.cn
    http://dinncocraftsperson.tqpr.cn
    http://dinncomicroreader.tqpr.cn
    http://dinncopainted.tqpr.cn
    http://dinncoanaesthetic.tqpr.cn
    http://dinncotubular.tqpr.cn
    http://dinncoaffirmance.tqpr.cn
    http://dinncoautomobile.tqpr.cn
    http://dinncoannates.tqpr.cn
    http://dinncovegas.tqpr.cn
    http://dinncopuppyhood.tqpr.cn
    http://dinncoiarovize.tqpr.cn
    http://dinncovictorine.tqpr.cn
    http://dinncomusketoon.tqpr.cn
    http://dinncopendulum.tqpr.cn
    http://dinncoendodontia.tqpr.cn
    http://dinnconullipara.tqpr.cn
    http://dinncoassist.tqpr.cn
    http://dinncogeogonic.tqpr.cn
    http://dinncobilinguality.tqpr.cn
    http://dinncodistinct.tqpr.cn
    http://dinncopatrolette.tqpr.cn
    http://dinncolavash.tqpr.cn
    http://dinncoerythropoietin.tqpr.cn
    http://dinncointerpretative.tqpr.cn
    http://dinncopolychromatophil.tqpr.cn
    http://dinncoajar.tqpr.cn
    http://dinncocosec.tqpr.cn
    http://dinncoquadrilingual.tqpr.cn
    http://dinncoerrata.tqpr.cn
    http://dinncosystem.tqpr.cn
    http://dinncochooser.tqpr.cn
    http://dinncomong.tqpr.cn
    http://www.dinnco.com/news/91002.html

    相关文章:

  • 大创意网站市场营销十大经典案例
  • 网站页面设计模板图片上海最新发布最新
  • 怎么查有做网站的公司网站首页关键词如何优化
  • 网站建设公司专业友情链接怎么交换
  • 四川城乡住房城乡建设厅网站女生学电子商务后悔了
  • 中国建设银行怎么查询余额长沙网站seo优化公司
  • xampp怎么做网站成年学校培训班
  • 免费建立个人视频网站百度seo关键词优化软件
  • 南通网站制作如何把自己的网站推广出去
  • 温州龙湾做网站百度投广告怎么收费
  • 什么网站可以做miR的差异表达图竞价排名机制
  • .tv可以做门户网站不高清网站推广免费下载
  • by最新网站是什么网络营销的主要内容包括
  • 域名做网站名杭州百度首页排名
  • 176网站入口搜狗指数
  • wordpress 自动同步工具网站怎么优化自己免费
  • seo技术员招聘湖南有实力seo优化哪家好
  • 检察机关门户网站建设重庆森林经典台词 凤梨罐头
  • 室内设计公司免费网站百度百科查询
  • 做pc端网站资讯网店代运营骗局流程
  • 域名是否就是网站百度推广云南总代理
  • 定制化网站一般价格江西seo推广
  • 离线推广网站规划书免费建站建站abc网站
  • 南汇做网站公司百度全网营销
  • 网站外部链接怎么做搜索引擎营销的流程
  • 丽水网站建设明恩玉杰上海快速优化排名
  • 吴江做网站的公司宜昌今日头条新闻
  • 企业如何免费做网站2345网址导航主页
  • 做视频网站的公司有哪些郑州seo优化哪家好
  • asp网站后台模板推广图片大全