
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
Cut sequences at positions with few spanning molecules.
Written by Shaun Jackman, Lauren Coombe, and Justin Chu.
https://doi.org/10.1186/s***-018-2425-6 · Slides · Poster
Shaun D. Jackman, Lauren Coombe, Justin Chu, Rene L. Warren, Benjamin P. Vandervalk, Sarah Yeo, Zhuyi Xue, Hamid Mohamadi, Joerg Bohlmann, Steven J.M. Jones and Inanc Birol (2018). Tigmint: correcting assembly errors using linked reads from large molecules. BMC Bioinformatics, 19(1). https://doi.org/10.1186/s***-018-2425-6
Tigmint identifies and corrects misassemblies using linked reads from 10x Genomics Chromium. The reads are first aligned to the assembly, and the extents of the large DNA molecules are inferred from the alignments of the reads. The physical coverage of the large molecules is more consistent and less prone to coverage dropouts than that of the short read sequencing data. The sequences are cut at positions that have insufficient spanning molecules. Tigmint outputs a BED file of these cut points, and a FASTA file of the cut sequences.
Each window of a specified fixed size is checked for a minimum number of spanning molecules. Sequences are cut at those positions where a window with sufficient coverage is followed by some number of windows with insufficient coverage is then followed again by a window with sufficient coverage.
Install Linuxbrew on Linux or Windows Subsystem for Linux (WSL), or install Homebrew on macOS, and then run the command
shbrew install tigmint
shconda install -c bioconda tigmint
shpip3 install tigmint
shdocker run -it bcgsc/tigmint
Download and extract the source code. Compiling is not needed.
git clone https://github.com/bcgsc/tigmint && cd tigmint
or
curl -L https://github.com/bcgsc/tigmint/archive/master.tar.gz | tar xz && mv tigmint-master tigmint && cd tigmint
shpip3 install intervaltree pybedtools pysam statistics
Tigmint uses Bedtools, BWA and Samtools. These dependencies may be installed using Homebrew on macOS or Linuxbrew on Linux.
shbrew install bedtools bwa samtools
shbrew tap brewsci/bio brew install arcs links-scaffolder
shbrew install abyss seqtk
To run Tigmint on the draft assembly draft.fa with the reads reads.fq.gz, which have been run through longranger basic:
shsamtools faidx draft.fa bwa index draft.fa bwa mem -t8 -p -C draft.fa reads.fq.gz | samtools sort -@8 -tBX -o draft.reads.sortbx.bam tigmint-molecule draft.reads.sortbx.bam | sort -k1,1 -k2,2n -k3,3n >draft.reads.molecule.bed tigmint-cut -p8 -o draft.tigmint.fa draft.fa draft.reads.molecule.bed
bwa mem -C is used to copy the BX tag from the FASTQ header to the SAM tags.samtools sort -tBX is used to sort first by barcode and then position.Alternatively, you can run the Tigmint pipeline using the Makefile driver script tigmint-make. To run Tigmint on the draft assembly myassembly.fa with the reads myreads.fq.gz, which have been run through longranger basic:
shtigmint-make tigmint draft=myassembly reads=myreads
To run both Tigmint and scaffold the corrected assembly with https://github.com/bcgsc/arcs:
shtigmint-make arcs draft=myassembly reads=myreads
To run Tigmint, ARCS, and calculate assembly metrics using the reference genome GRCh38.fa:
shtigmint-make metrics draft=myassembly reads=myreads ref=GRCh38 G=3088269832
tigmint-make is a Makefile script, and so any make options may also be used with tigmint-make, such as -n (--dry-run)..fa and the reads .fq.gz, and the extension is not included in the parameters draft and reads. These specific file name requirements result from implementing the pipeline in GNU Make.tigmint: Run Tigmint, and produce a file named $draft.tigmint.faarcs: Run Tigmint and ARCS, and produce a file name $draft.tigmint.arcs.fametrics: Run, Tigmint, ARCS, and calculate assembly metrics using abyss-fac and abyss-samtobreak, and produce TSV files.draft: Name of the draft assembly, draft.fareads: Name of the reads, reads.fq.gzspan=20: Number of spanning molecules thresholdwindow=1000: Window size (bp) for checking spanning moleculesminsize=2000: Minimum molecule sizeas=0.65: Minimum AS/read length rationm=5: Maximum number of mismatchesdist=50000: Maximum distance (bp) between reads to be ***ed the same moleculemapq=0: Mapping quality thresholdtrim=0: Number of bases to trim off contigs following cutst=8: Number of threadsc=5e=30000r=0.05a=0.1l=10ref: Reference genome, ref.fa, for calculating assembly contiguity metricsG: Size of the reference genome, for calculating NG50 and NGA50-C option to include the barcode in the BX tag of the alignments.samtools sort -tBX.samtools merge -tBX.After first looking for existing issue at https://github.com/bcgsc/tigmint/issues, please report a new issue at https://github.com/bcgsc/tigmint/issues/new. Please report the names of your input files, the exact command line that you are using, and the entire output of Tigmint.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务