EukCC2评估真核生物MGAs质量

文章目录

  • 简介和原理
  • Install
  • 配置数据库
  • 使用
    • 单个bin
    • 包含bins的目录
    • Bin merging
    • 示例数据集
    • 自测数据
    • 更多参数
  • 参考

简介和原理

EukCC2是一个基于python编写的用于评估真核生物MAGs完整度和污染度的软件。可以评估binning后的单个bin或者bins目录。
其原理是基于动态变化的单拷贝标记基因集(SCMGs),包括基础真核生物、真菌、原生动物及植物的SCMGs。
SCMGs的原理在于基于特异物种谱系通用的单个拷贝的基因,所以可以比较预测的基因数量来评估完整性,而额外的SCMGs则是污染序列。

Install

  • conda一步安装到位
(base) [yut@node02]$ mamba create -n eukcc -c conda-forge -c bioconda "eukcc>=2"
$ conda activate eukcc
(eukcc) [yut@node02]$ eukcc --version
EukCC version 2.1.0
# pip install eukcc

参考https://eukcc.readthedocs.io/en/latest/quickstart.html

配置数据库

一次性为EukCC配置数据库(注意事项,版本 1 的数据库不兼容。因此,在升级到 EukCC2 后,请务必升级数据库)。
获取数据库非常简单:

  • 数据库6.01G,wget下载可能比较慢,可以在本地使用freedownloadmanager(https://www.freedownloadmanager.org/zh/)快速下载,然后上传到服务器。
mkdir eukccdb
cd eukccdb
wget http://ftp.ebi.ac.uk/pub/databases/metagenomics/eukcc/eukcc2_db_ver_1.2.tar.gz
tar -xzvf eukcc2_db_ver_1.1.tar.gz
# 在.bashrc配置全局变量
export EUKCC2_DB=/path/to/.../eukcc2_db_ver_1.1

参考http://ftp.ebi.ac.uk/pub/databases/metagenomics/eukcc/

使用

EukCC有两种模式。可以在一个单独的bin上或在一个bins的文件夹上运行EukCC。

在单个bin上运行EukCC给了最多的选择,可以根据你的需要调整参数。对于大多数元基因组工作流程来说,在一个bin的文件夹上运行EukCC可能是最简单的事情。

单个bin

假设已将 $EUKCC2_DB 设置到正确位置。如果没有,请使用 --db 标志将数据库传递给 EukCC。

eukcc single --out outfolder --threads 8 bin.fa

EukCC将在8个线程上运行。你可以将核苷酸fastas或蛋白质组传递到EukCC。它会自动检测是否需要预测蛋白质。
默认情况下,它不会使用多于一个线程来将基因组放置在参考树中,以节省内存。

  • 实际测试:酵母菌参考基因组(Yeast_GCF_000149845.2_SJ5_genomic.fna)耗时2min,污染度0,完整度100
(eukcc) [yutao@myosin eukcc]$ time eukcc single --out yeast_out -t 50 Yeast_GCF_000149845.2_SJ5_genomic.fna
23-09-2022 16:08:01:  EukCC version 2.1.023-09-2022 16:08:01:  Set sequence type to DNA
23-09-2022 16:08:22:  Doing a first pass placement in the base database
23-09-2022 16:08:22:  Searching for marker genes in base database
23-09-2022 16:08:23:  Found 21 marker genes, placing them in the tree 
23-09-2022 16:09:11:  Genome belongs to clade: fungi (Best TaxID: 4894)
23-09-2022 16:09:11:  Searching for marker genes in fungi database
23-09-2022 16:09:12:  Found 11 marker genes, placing them in the tree using epa-ng
23-09-2022 16:09:27:  Automatically locating best SCMG set
23-09-2022 16:09:57:  Searching fasta for selected markers
23-09-2022 16:10:44:  Completeness: 100.0
23-09-2022 16:10:44:  Contamination: 0.0
23-09-2022 16:10:44:  Max silent contamination: 4.59
23-09-2022 16:10:44:  Wrote output to: /home/test/eukcc/yeast_out/eukcc.csvreal    2m44.545s
user    13m59.558s
sys     0m58.519s
  • 输出结果
$ cat 
(eukcc) [yutao@myosin yeast_out]$ cat eukcc.csv
fasta   completeness    contamination
/home/test/eukcc/Yeast_GCF_000149845.2_SJ5_genomic.fna    100.0   0.0

包含bins的目录

EukCC假定文件夹包含后缀为.fa的文件。如果不是这样,请使用–suffix参数。在目录模式下,EukCC也会尝试自动优化bins。

eukcc folder --out outfolder --threads 8 bins
# --suffix SUFFIX       Suffix (default: .fa)
  • 实际测试:第一个100完整度,0污染
(eukcc) [yut@myosin eukcc]$ time eukcc folder --out yeast_bins1 -t 50 yeast_bins1
23-09-2022 16:33:58:  EukCC version 2.1.0
23-09-2022 16:33:58:  Found 2 bins
23-09-2022 16:34:19:  Searching for marker genes in base database
23-09-2022 16:34:21:  Found 15 marker genes, placing them in the tree using epa-ng
23-09-2022 16:34:43:  Genome belongs to clade: fungi (Best TaxID: 4894)
23-09-2022 16:34:43:  Searching for marker genes in fungi database
23-09-2022 16:34:44:  Found 10 marker genes, placing them in the tree using epa-ng
23-09-2022 16:34:57:  Automatically locating best SCMG set
23-09-2022 16:35:16:  Searching fasta for selected markers
23-09-2022 16:36:00:  Completeness: 71.0
23-09-2022 16:36:00:  Contamination: 0.0
23-09-2022 16:36:00:  Max silent contamination: 100.0
23-09-2022 16:36:00:  Searching for marker genes in base database
23-09-2022 16:36:02:  Found 6 marker genes, placing them in the tree using epa-ng
23-09-2022 16:36:17:  Genome belongs to clade: fungi (Best TaxID: 4894)
23-09-2022 16:36:17:  Searching for marker genes in fungi database
23-09-2022 16:36:18:  Found 1 marker genes, placing them in the tree using epa-ng
23-09-2022 16:36:20:  Automatically locating best SCMG set
23-09-2022 16:36:38:  Searching fasta for selected markers
23-09-2022 16:37:10:  Completeness: 29.0
23-09-2022 16:37:10:  Contamination: 0.0
23-09-2022 16:37:10:  Max silent contamination: 100.0
23-09-2022 16:37:10:  Found 1 large bins to merge with
23-09-2022 16:37:10:  For bin 1.bin.fa we found 1 merging combinations
23-09-2022 16:37:10:  Created 0 merged binsreal    3m13.709s
bins(yeast)eukcc comp(%)eukcc cont(%)merge
7.8 + 3.5M71 + 290no
12M+64k100+00no

综上,单纯的folder并没有将拆分的2部分酵母合并在一起

Bin merging

如果EukCC在文件夹模式下运行,它可以尝试再合并两个更多的bins,以创建一个增加完整性的精炼/合并版本。

为此,你可以而且应该将pair reads信息传递给EukCC。因此,只有由至少100个(默认)reads连接的bins才被考虑合并。这极大地提高了速度和准确性。
Preparing your linked reads:
如果你有paired-end read数据,你应该创建一个排序过的比对。如果你有多个读文件,你可以创建多个BAM文件。

为此,你将需要用来创建这个bins的contigs。或者,将所有的bins合并成一个伪组装基因组文件。

cat binfolder/*.fa > pseudo_contigs.fasta
bwa index pseudo_contigs.fasta
bwa mem -t 8 pseudo_contigs.fasta reads_1.fastq.gz reads_2.fastq.gz  |samtools view -q 20 -Sb - |samtools sort -@ 8 -O bam - -o alignment.bam
samtools index alignment.bam

然后,您可以使用EukCC提供的脚本创建一个bin链接表

binlinks.py  --ANI 99 --within 1500 \--out linktable.csv binfolder alignment.bam

如果你有多个bam文件,把它们都传递给脚本(例如*.bam)。
您将获得一个三列文件(bin 1,bin 2,links)。
你可以像这样在相同的文件夹上启动EukCC:

eukcc folder \--out outfolder \--threads 8  \--links linktable.csv \binfolder

EukCC将对所有的bins单独运行。然后,它将识别中等质量的bins,这些bins至少有50%的完整度,但还没有超过100%的改进率。然后,它将识别出至少有100个paid-end reads与这些中等质量仓相连接的bin。如果合并后质量得分上升,这个bin将被合并。

合并的箱子可以在输出文件夹中找到。
合并超过两个bins。因此,将–n_combine设置为任何高于1的值都是试验性的,还不建议使用。我们在合并两个bins时有很好的结果。

示例数据集

我在地衣研究ERP123954的基础上创建了示例数据来测试。使用CONCOCT创建了分组,但任何没有原核生物偏见的分组都可以。

wget ...
gunzip eukcc_example_folder_GT57.zip# Use at least a couple threads to speed it up
eukcc folder --threads 6 \--out output \--links eukcc_example_folder_GT57/links.csv \--n_combine 1 \eukcc_example_folder_GT57/bins

自测数据

  • 不同方法组装的两个真菌
(eukcc) [yut@io02 TestData]$ ll fungi_genome/
总用量 97M
-rw-r--r-- 1 yut lzdx 52M 119 21:03 SX22-37_unicycler_for_only_trimgalore_assembly.fasta
-rw-r--r-- 1 yut lzdx 45M 119 21:03 SX22-37_unicycler_for_trimgalore_and_kraken2_filter_by_PlusPFP_assembly.fasta(eukcc) [yut@io02 TestData]$ time eukcc folder --out eukcc_out  --threads 8 fungi_genome/ --suffix .fasta
09-11-2023 21:05:13:  EukCC version 2.1.0
09-11-2023 21:05:13:  Found 2 bins
09-11-2023 21:10:50:  Searching for marker genes in base database
09-11-2023 21:10:53:  Found 23 marker genes, placing them in the tree using epa-ng
NCBI database not present yet (first time used?)
Downloading taxdump.tar.gz from NCBI FTP site (via HTTP)...
Done. Parsing...
Loading node names...
2541725 names loaded.
313200 synonyms loaded.
Loading nodes...
2541725 nodes loaded.
Linking nodes...
Tree is loaded.
Updating database: /datanode02/yut/.etetoolkit/taxa.sqlite ...2541000 generating entries...
Uploading to /datanode02/yut/.etetoolkit/taxa.sqliteInserting synonyms:      310000
Inserting taxid merges:  70000
Inserting taxids:       2540000
/datanode02/yut/Software/Miniconda3/envs/eukcc/lib/python3.10/site-packages/ete3/ncbi_taxonomy/ncbiquery.py:243: UserWarning: taxid 13349 was translated into 2813651warnings.warn("taxid %s was translated into %s" %(taxid, merged_conversion[taxid]))
/datanode02/yut/Software/Miniconda3/envs/eukcc/lib/python3.10/site-packages/ete3/ncbi_taxonomy/ncbiquery.py:243: UserWarning: taxid 134006 was translated into 479712warnings.warn("taxid %s was translated into %s" %(taxid, merged_conversion[taxid]))
/datanode02/yut/Software/Miniconda3/envs/eukcc/lib/python3.10/site-packages/ete3/ncbi_taxonomy/ncbiquery.py:243: UserWarning: taxid 134013 was translated into 223615warnings.warn("taxid %s was translated into %s" %(taxid, merged_conversion[taxid]))
/datanode02/yut/Software/Miniconda3/envs/eukcc/lib/python3.10/site-packages/ete3/ncbi_taxonomy/ncbiquery.py:243: UserWarning: taxid 453998 was translated into 2049356warnings.warn("taxid %s was translated into %s" %(taxid, merged_conversion[taxid]))
/datanode02/yut/Software/Miniconda3/envs/eukcc/lib/python3.10/site-packages/ete3/ncbi_taxonomy/ncbiquery.py:243: UserWarning: taxid 2498572 was translated into 1280935warnings.warn("taxid %s was translated into %s" %(taxid, merged_conversion[taxid]))
/datanode02/yut/Software/Miniconda3/envs/eukcc/lib/python3.10/site-packages/ete3/ncbi_taxonomy/ncbiquery.py:243: UserWarning: taxid 91191 was translated into 3075448warnings.warn("taxid %s was translated into %s" %(taxid, merged_conversion[taxid]))
09-11-2023 21:13:43:  Genome belongs to clade: fungi (Best TaxID: 36048)
09-11-2023 21:13:43:  Searching for marker genes in fungi database
09-11-2023 21:13:45:  Found 10 marker genes, placing them in the tree using epa-ng
09-11-2023 21:14:07:  Automatically locating best SCMG set
09-11-2023 21:14:36:  Searching fasta for selected markers
09-11-2023 21:15:19:  Completeness: 96.62
09-11-2023 21:15:19:  Contamination: 9.02
09-11-2023 21:15:19:  Max silent contamination: 100.0
09-11-2023 21:15:20:  Searching for marker genes in base database
09-11-2023 21:15:22:  Found 19 marker genes, placing them in the tree using epa-ng
09-11-2023 21:16:05:  Genome belongs to clade: fungi (Best TaxID: 147538)
09-11-2023 21:16:05:  Searching for marker genes in fungi database
09-11-2023 21:16:08:  Found 10 marker genes, placing them in the tree using epa-ng
09-11-2023 21:16:29:  Automatically locating best SCMG set
09-11-2023 21:16:57:  Searching fasta for selected markers
09-11-2023 21:17:35:  Completeness: 88.72
09-11-2023 21:17:35:  Contamination: 0.75
09-11-2023 21:17:35:  Max silent contamination: 100.0
09-11-2023 21:17:35:  Found 2 large bins to merge with
09-11-2023 21:17:35:  For bin SX22-37_unicycler_for_only_trimgalore_assembly.fasta we found 1 merging combinations
09-11-2023 21:17:35:  For bin SX22-37_unicycler_for_trimgalore_and_kraken2_filter_by_PlusPFP_assembly.fasta we found 1 merging combinations
09-11-2023 21:17:35:  Created 0 merged binsreal    12m32.333s
user    50m2.338s
sys     2m0.765s
  • 结果
(eukcc) [yut@io02 TestData]$ column -t  eukcc_out/eukcc.csv
bin                                                                            completeness  contamination
SX22-37_unicycler_for_only_trimgalore_assembly.fasta                           96.62         9.02
SX22-37_unicycler_for_trimgalore_and_kraken2_filter_by_PlusPFP_assembly.fasta  88.72         0.75

更多参数

  • single模式
(eukcc) [yut@node02 eukccdb]$ eukcc single --help
usage: eukcc single [-h] [--out OUT] [--db DB] [--threads THREADS] [--threads_epa THREADS_EPA] [--DNA] [--AA] [--taxids TAXIDS [TAXIDS ...]] [--set_size SET_SIZE] [--use_placement USE_PLACEMENT] [--set_number_species SET_NUMBER_SPECIES][--marker_prevalence MARKER_PREVALENCE] [--max_set_size MAX_SET_SIZE] [--select_best_guess] [--select_species] [--use_ncbi_tree] [--gmes] [--ignore_tree] [--simple] [--clade CLADE] [--rerun] [--no_dynamic_root] [--extra][--keep]fastapositional arguments:fasta                 Estimate quality of this single bin (fasta file) # 必须参数options:-h, --help            show this help message and exit--out OUT, -o OUT     Path to output folder (Default: .)--db DB               Path to EukCC DB--threads THREADS, -t THREADSNumber of threads to use (Default: 1)--threads_epa THREADS_EPANumber of threads to use for epa-ng, recommended: 1 (Default: 1)--DNA                 The fasta file contains DNA sequenes--AA                  The fasta file contains amino acid sequences--taxids TAXIDS [TAXIDS ...]Taxids to use as set starting point--set_size SET_SIZE   Minimal number of marker genes to use (Default: 20)--use_placement USE_PLACEMENTPath to previous result file, to use exact same marker gene set--set_number_species SET_NUMBER_SPECIESMinimal number of species to define a set. Reduce this if no sets can be found (Default: 3)--marker_prevalence MARKER_PREVALENCEPercentage of species in which markers should be found (Default: 95)--max_set_size MAX_SET_SIZEMaximal number of marker genes used, set to 0 to include all possible marker genes (Default: 500)--select_best_guess   Use best guess to select marker gene set (Default)--select_species      Use species count to select best marker gene set (Default: best guess)--use_ncbi_tree       Instead of using the EukCC phylogenetic tree, rely on NCBI taxids (default: False)--gmes                Use GeneMark-ES instead of metaeuk (much slower) (default: False)--ignore_tree         Advanced option, mainly for debugging. Can ignore the tree if genomes are knwon via taxids for example--simple              Use global DB instead of clade specific dbs (faster, not suitable for protozoa)--clade CLADE         Define clade as base, fungi, protozoa or plants--rerun, -r           Rerun and remove any previously computed data in the target folder--no_dynamic_root     Do not re-root tree dynamically, to get best set detection (default: True)--extra               Produce extra output files.--keep                Keep workdir after the run.
  • folder模式
(eukcc) [yut@node02 eukccdb]$ eukcc folder --help
usage: eukcc folder [-h] [--links LINKS] [--min_links MIN_LINKS] [--prefix PREFIX] [--suffix SUFFIX] [--out OUT] [--db DB] [--improve_ratio IMPROVE_RATIO] [--improve_percent IMPROVE_PERCENT] [--n_combine N_COMBINE] [--threads THREADS][--threads_epa THREADS_EPA] [--marker_prevalence MARKER_PREVALENCE]binfolderpositional arguments:binfolder             Run script on bins in this folder # 必须参数options:-h, --help            show this help message and exit--links LINKS         Path to a link table generated with bamlinks.py. If suuplied paired reads will be used to refine bins (Recommended)--min_links MIN_LINKSNumber of paired reads matching between bins for merging to happen (default: 100)--prefix PREFIX       Prefix to add for merged bins (default: merged.)--suffix SUFFIX       Suffix (default: .fa) # 输入bins文件名的后缀,默认.fa--out OUT, -o OUT     Path to output folder (Default: .)--db DB               Path to EukCC DB # 未设置EUKCC2_DB环境变量时需要指定该参数--improve_ratio IMPROVE_RATIORatio of completeness to contamination change (Default: 5)--improve_percent IMPROVE_PERCENTA merger must increase completeness at least by n percent (Default: 10)--n_combine N_COMBINEHow many small bins should be merged into a medium sized bin (Default: 1)--threads THREADS, -t THREADSNumber of threads to use (Default: 1)--threads_epa THREADS_EPANumber of threads to use for epa-ng, recommended: 1 (Default: 1)--marker_prevalence MARKER_PREVALENCEPercentage of species in which markers should be found (Default: 95)

参考

Saary, Paul, Alex L. Mitchell, and Robert D. Finn. “Estimating the quality of eukaryotic genomes recovered from metagenomic analysis with EukCC.” Genome biology 21.1 (2020): 1-21.

EukCC GitHub

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/141693.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

第4关:非递归实现二叉树左右子树交换

任务描述相关知识 栈的基本操作二叉树后序遍历编程要求测试说明 任务描述 本关任务:给定一棵二叉树,使用非递归的方式实现二叉树左右子树交换,并输出后序遍历结果。 相关知识 为了完成本关任务,你需要掌握:1.栈的基…

bug:Junit5报错,@SpringBootTest没有运行

1、首先解决Junit5报错 java.lang.NoClassDefFoundError: org/junit/platform/launcher/core/LauncherFactory 添加依赖 implementation org.junit.platform:junit-platform-launcher:1.8.2java.lang.IllegalArgumentException: Error: test loader org.eclipse.jdt.internal.…

springboot集成kafka详解

文章目录 1、kafka部署:(1)先创建一个网络:(2)安装zookeeper,kafka依赖zookeeper所以需要先安装zookeeper:(3)安装Kafka:参数解释: &a…

c++ jthread 使用详解

c jthread 使用详解 std::jthread c20 头文件 #include <thread>。对 std::thread 的改进&#xff0c;旨在提供更好的线程管理和异常处理&#xff0c;除了拥有和 std::thread 完全相同的功能以及 API 之外&#xff0c;还增加了以下功能&#xff1a; 可停止&#xff1a;…

无人地磅称重系统|自助过磅 料仓联动 自助卸料

上海思伟无人地磅系统 自助过磅、 自助卸料 、料仓联动 智能、省人、安全 无人监管过磅 对地磅及其相关的所有硬件进行配置和管理&#xff1b; 支持红外、道闸、车牌识别、AI分析、拍照存档、LED语音播报一体机等设备&#xff1b; 实现稳定可靠的无人监管称重功能&#xf…

云服务器哪家强?阿里云双十一2核2G配置3M带宽仅99元/年!

阿里云作为国内知名的云计算服务提供商&#xff0c;每年的双11都会推出各种优惠活动和促销策略。在今年的双11期间&#xff0c;阿里云推出了多种选择的云服务器&#xff0c;其中两款备受用户关注&#xff1a;轻量服务器2核2G3M带宽优惠价87元一年和经济型e实例2核2G配置3M带宽9…

Vue3 ref函数和reactive函数

一、ref函数 我们在setup函数中导出的属性和方法虽然能够在模板上展示出来&#xff0c;但是并没有给属性添加响应式&#xff0c;因此&#xff0c;我们需要使用ref函数来为我们的数据提供响应式。 &#xff08;一&#xff09;引入ref函数 import { ref } from "vue"…

数据结构:红黑树的原理和实现

文章目录 红黑树的概念红黑树的性质红黑树的模拟实现红黑树的平衡问题 整体实现和测试 本篇用于进行红黑树的拆解和模拟实现&#xff0c;为之后的map和set的封装奠定基础 红黑树的概念 红黑树也是一种二叉搜索树&#xff0c;但是在每一个节点的内部新增了一个用以表示该节点颜…

IDEA的优化配置教程

前言 IDEA 全称 IntelliJ IDEA&#xff0c;是java编程语言开发的集成环境。IntelliJ在业界被公认为最好的java开发工具&#xff0c;尤其在智能代码助手、代码自动提示、重构、JavaEE支持、各类版本工具(git、svn等)、JUnit、CVS整合、代码分析、 创新的GUI设计等方面的功能可以…

Day 项目介绍与 SSM 环境搭建

介绍一个使用Java语言开发的项目&#xff0c;演示并如何搭建一个基于SSM&#xff08;SpringSpring MVCMyBatis&#xff09;框架的开发环境。SSM是一种常用的Java Web开发框架&#xff0c;它集成了Spring、Spring MVC和MyBatis&#xff0c;提供了一套完整的开发架构&#xff0c;…

OOM汇总

1. 堆内存溢出 堆内存溢出通常是由于创建了过多的对象&#xff0c;而导致堆内存耗尽而发生的。以下是导致堆内存溢出的一些常见情况&#xff1a; 内存泄漏&#xff1a; 如果程序中存在内存泄漏&#xff0c;即一些对象不再被引用&#xff0c;但仍然存活于堆内存中&#xff0c;…

thinkphp5 连接多个服务器数据库

如果你的database.php 是这样&#xff0c; 这是默认的db连接配置 如果还想连接其他服务器&#xff0c;或数据库 在config.php中追加数据库配置&#xff0c; 在使用的地方调用&#xff1a; use think\Db;public function test(){$db3Db::connect(config(db3));$result $db3…

使用gitflow时如何合并hotfix

前言 在使用 git flow 流程时, 对于项目型的部署项目经常会遇到一个问题, 就是现场项目在使用历史版本时发现的一些问题需要修复, 但升级可能会有很大的风险或客户不愿意升级, 这时就要求基于历史版本进行 hotfix 修复. 基于历史发布版本的缺陷修复方式不同于最新发布版本的补…

CSS 实现文字两端对齐效果

直接上代码&#xff1a; .text{text-align: justify;text-align-last: justify;// 兼容ie (未测试)text-justify: distribute-all-lines; }注意&#xff1a; text-align-last: justify; 只对中文文字起效果。数字和英文字母则需要使用空格间隔开&#xff0c;然后使用上述方法即…

自然语言处理实战项目21-两段文本的查重功能,返回最相似的文本字符串,可应用于文本查重与论文查重

大家好,我是微学AI,今天给大家介绍一下自然语言处理实战项目21-两段文本的查重功能,返回最相似的文本字符串,可应用于论文查重。本文想实现一种文本查重功能,通过输入两段文本,从中找出这两段文本中最相似的句子。这项技术有助于检测抄袭、抄袭的论文和文章,提高知识创新…

Ubuntu22.04 FTP 搭建以及挂载

软件安装 sudo apt-get update 服务端nfs-kernel-server 客户端nfs-common sudo apt-get install -y nfs-kernel-server nfs-common创建NFS共享目录 sudo mkdir -p /nfssudo chown -R nobody:nogroup /nfs sudo chmod -R 777 /nfs配置文件 sudo vim /etc/exports# [共享目录…

08.oracle的表

oracle的表 一、与表相关的几个概念二、表的几种类型包括&#xff1a;三、对表的一些基本操作 一、与表相关的几个概念 高水位线&#xff08;High Water Mark&#xff09;&#xff1a;是指表中已经被使用的空间的最高位置。当表中的数据被删除或更新时&#xff0c;高水位线不会…

Go使用命令行输出二维码

引言 二维码&#xff08;QR code&#xff09;是一种矩阵条码的标准&#xff0c;广泛应用于商业、移动支付和数据存储等领域。在开发过程中&#xff0c;我们可能需要在命令行中显示二维码&#xff0c;这可以帮助我们快速生成和分享二维码信息。本文将介绍如何使用Go语言生成二维…

【SpringBoot】SpringBoot自动配置底层源码解析

概述 EnableAutoConfiguration源码解析SpringBoot常用条件注解源码解析SpringBoot之Mybatis自动配置源码解析SpringBoot之AOP自动配置源码解析SpringBoot Jar包启动过程源码解析 DeferredImportSelector接口 DeferredImportSelector和ImportSelector的区别在于&#xff1a; …

Ubuntu2204 搭建TFTP 服务

安装软件 sudo apt-get install tftp-hpa tftpd-hpa xinetd配置服务 配置tftp sudo vim /etc/xinetd.d/tftp 填入以下参数&#xff0c;/home/tftp 换成自己的共享目录 server tftp {socket_type dgramprotocol udp wait yes user rootserver /usr/sbin/in.tftpdserver_…