首页 > 其他分享 >fastq barcode split

fastq barcode split

时间:2023-01-06 21:56:09浏览次数:53  
标签:-- fastq barcode gz split file fqkit

双端测序数据barcode拆分工具
  • 目前只支持单barcode拆分
  • 支持gz压缩文件输入输入
  • 参数支持barcode碱基容错
  • 支持一个样本对应多个barcode
repo :
github : https://github.com/sharkLoc/fqkit.git
install :
cargo install fqkit
# or

git clone https://github.com/sharkLoc/fqkit.git
cd fqkit
cargo b --release
# mv target/release/fqkit to anywhere you want 
usage :
fqkit barcode --help
split barcode for PE reads

Usage: fqkit barcode [OPTIONS] --read1 <READ1> --read2 <READ2> --barcode <BAR>

Options:
  -1, --read1 <READ1>     input read1 fastq[.gz] file
  -2, --read2 <READ2>     input read2 fastq[.gz] file, barcode in this file
  -b, --barcode <BAR>     barcode list file, format eg:
                          ATGCAGTG    sample1
                          TGCAGTAC    sample2
  -m, --mode <MODE>       barcode position mode, 1:left, 2:right [default: 2]
  -r, --rev_comp          barcode reverse complement
  -e, --error <MISMATCH>  barcode mismatch base count [default: 0]
  -o, --outdir <OUTDIR>   fastq file output dir [default: .]
  -h, --help              Print help information

标签:--,fastq,barcode,gz,split,file,fqkit
From: https://www.cnblogs.com/mmtinfo/p/17031678.html

相关文章

  • String.split()用法的一点经验
    C#中使用split分割字符串的几种方法--第一种方法:strings=abcdeabcdeabcde;string[] sArray=s.Split('c') ;foreach(......
  • 字符串拆分----split()关键字
    字符串概念字符串主要用于编程,概念说明、函数解释、用法详述见正文,这里补充一点:字符串在存储上类似字符数组,所以它每一位的单个元素都是可以提取的,如s="abcdefghij",则s[1]="......
  • webpack4.15.1 学习笔记(六) — 代码拆分(Code Splitting)
    webpack4.15.1学习笔记(六)—代码拆分(CodeSplitting)  目录入口起点防止重复动态导入(dynamicimports) 代码拆分能够将代码分离到不同的bundle中......
  • 简单介绍python中读取txt文件时split()函数的妙用
    这篇文章主要介绍了python中读取txt文件时split()函数的妙用,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教不知道大家有没有过需要从txt文......
  • 单细胞数据 mkfastq | 10x Genomics
     除了刚接触10x的那会儿,还真没怎么亲自倒腾过fastq的制作。正常从测序商那里拿到的应该是bcl的原始数据,需要自己做一步bcl2fastq。后面大家都觉得这一步太麻烦了,没必要......
  • C#中使用split分割字符串的几种方法小结
    原文链接:https://www.jb51.net/article/34535.htmstaticvoidMain(string[]args){stringstr="abcdeabcdeabcde";//1、以一个指定的字符进行的分割......
  • WTL MDI Application with Splitter
    WTLMDIApplicationwithSplitter DownloadMDISplitproject-12KbDownloadMDISplitexecutable-35KbIntroductionThisarticleexplainshow......
  • WTL Splitters and Pane Containers
    WTLSplittersandPaneContainers Downloadsampleproject-8KbDownloadsampleexecutable-13KbIntroductionThisarticledescribesthebasi......
  • [Typescript] TS-toolbelt Split
    Example1import{S}from"ts-toolbelt";import{Equal,Expect}from"../helpers/type-utils";typeNames=["MattPocock","JimiHendrix","EricCl......
  • google的guava工具类splitter和apache stringutil对比
    一直用的是apache的stringutil工具类,其实google的工具类项目guava中居然也有字符串的分隔类splitter的,在​​​http://code.google.com/p/guava-lib......