三代测序 - Oxford Nanopore (ONT) 数据分析 - 数据质控和过滤

对于二代测序,可以使用fastQC软件对原始下机数据质量进行全面的统计及绘图,多样本时可进一步结合使用multiQC。但是由于二代测序(如 illumina 平台)独特的特性,例如读长长度一致,可能包含测序接头(Adapter) 和PCR 引起的片段重复(Duplication)等。因此,同是fastq格式文件,fastQC并不适合用来处理三代测序数据,包括Oxford Nanopore(ONT)测序平台原始下机的fastq文件。

一、ONT下机数据质量

当前ONT测序质量虽然有很大的改善,但准确性依然不及二代测序,例如illumina或者BGIseq等。2018-2019年主流芯片R9.4 准确率对于2D reads为94%,1Dreads仅为86% ,如下图Fig.2b所示(1)。


Nanopore Accuarcy

现在最新的R10.4.1及配套试剂 (2),使用Dorado v0.2.5进行高准确度碱基转换(High accuracy ,HAC)原始数据平均碱基质量可达Q20(99.0%),进行超高准确度碱基转换(Super accuracy ,SUP)原始数据平均碱基质量可达Q23(99.5%),如果进行Duplex测序,原始数据平均碱基质量可达Q30(99.9%)。

ONT Quality

当前Nanopore测序下级数据仍然以Q7作为数据过滤的一个标准。PacBio三代测序平台由于有CCS校准模式(也有参数可以设置),一般来说HiFi数据个人觉得不用做质控,但对于现在的ONT数据个人建议做个质控查看一下数据质量,如果有需要可以做一下reads过滤。相信随着ONT的测序准确度越来越高以及Duplex测序方式,今后也可能弱化质控过程。

二、演示ONT数据 (fastq)

PRJNA809646https://www.ebi.ac.uk/ena/browser/view/PRJNA809646
Whole-Genome Sequence analysis of Clinically Isolated Carbapenem Resistant Escherichia coli from Iran (IRANCOLI ONT, SRR21721846SRR21721848)。

#下载 MinION sequencing: IRANCOLI ONT, SRR21721846
$ wget -c -t 0 ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR217/046/SRR21721846/SRR21721846_1.fastq.gz    #数据大小521M

#下载 MinION sequencing: IRANCOLI ONT, SRR21721848
$ wget -c -t 0 ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR217/048/SRR21721848/SRR21721848_1.fastq.gz    #数据大小543M

#fastq文件改名
mv SRR21721846_1.fastq.gz SRR21721846.fastq.gz 
mv SRR21721848_1.fastq.gz SRR21721848.fastq.gz 

三、数据质控软件

直接上结论
NanoComp 用以对下机序列(reads)数据质控,Chopper用以数据过滤,剪切和去污染序列足以。
1.NanoComp 包含了 NanoStat,NanoPlot 和 NanoQC 的内容,而且多样本之间的比较和整合性比较好,所以多样本 可以直接使用 NanoComp ,单个样本可以运行Nanoplot
2.对下机原始序列进行过滤,剪切和污染序列的去除可以使用Chopper
3.如果运行 NanoPlot ,则会产生 NanoStat.txt 文件,结果和单独运行 NanoStat 的结果一样。直接运行Nanoplot就行

Wouter De Coster, Rosa Rademakers 实验室的博后,编写了一系列软件对长度长测序原始下机数据进行统计质控和对污染序列进行去除的软件,也是现在常用的ONT质控软件。

  • NanoComp: comparing multiple runs 比较多组长度长测序和比对数据。

  • NanoStat: statistic summary report of reads or alignments 长度长测序和比对数据的统计报告。

  • NanoFilt: filtering and trimming of reads 过滤和修剪长度长序列。

  • NanoLyse: removing contaminant reads (e.g. lambda control DNA) from fastq 从fastq文件中去除污染序列(e.g. lambda对照/参照DNA序列)。

  • NanoPlot: Plotting tool for long read sequencing data and alignments. 对长度长测序和比对数据的统计报告进行可视化。

以上所有软件都存放在Nanopack的github里面,可以通过一行安装命令进行安装:

#一键安装ONT系列质控软件
$ pip install nanopack

# NanoComp        NanoFilt        NanoLyse        NanoPlot        NanoStat

Nanopack: https://github.com/wdecoster/nanopack

备注:

1. Nanostat 已经被运行速度更快的 Cramino 替代了
CRAMINO: A tool for quick quality assessment of cram and bam files, intended for long read sequencing 对长度长序列的cram和bam文件进行质量评估。
2. NanoFlit 和 NanoLyse 被运行速度更快的 chopper 整合替代了
Chopper: A rust implementation combining NanoLyse and NanoFilt into one faster tool for filtering, trimming, and removing contaminants。
3.nanoQC需要单独安装

下面我们介绍每一个软件的具体安装和使用方法:

1. NanoPlot

主页网址:https://github.com/wdecoster/NanoPlot

  • 软件安装
#pip install
$ pip install NanoPlot
$ pip install NanoPlot --upgrade

#conda install
$ conda install -c bioconda nanoplot

以前通过conda安装过,在新买的云服务器上,两种方法都报错。于是使用singularity的方法下载镜像, 如果大家也有安装问题可以尝试使用singularity镜像。

#从官方docker镜像地址下载nanoplot的singularity镜像
$ singularity pull nanoplot.sif docker://nanozoo/nanoplot

#使用
$ singularity exec nanoplot.sif NanoPlot
  • 软件使用
#官方例子
$ NanoPlot --summary sequencing_summary.txt --loglength -o summary-plots-log-transformed  
$ NanoPlot -t 2 --fastq reads1.fastq.gz reads2.fastq.gz --maxlength 40000 --plots dot --legacy hex
$ NanoPlot -t 12 --color yellow --bam alignment1.bam alignment2.bam alignment3.bam --downsample 10000 -o bamplots_downsampled


#实际使用
$ NanoPlot -t 12 --N50 --dpi 300 \
--fastq samplename.fq.gz \
--title samplename \
-o samplename

$ singularity exec nanoplot.sif NanoPlot -t 12 --N50 --dpi 300 \
--fastq samplename.fq.gz \
--title samplename \
-o samplename \

# -N50 在片段长度N50处划线 
# --dpi 设置图片dpi
# -t 线程数
#--title 所有表的标题
  • 演示数据
$ NanoPlot -t 24 --N50 --dpi 300 \
--fastq SRR21721846.fastq.gz \
--title SRR21721846 \
-o SRR21721846_NanoPlot

$ NanoPlot -t 24 --N50 --dpi 300 \
--fastq SRR21721848.fastq.gz  \
--title SRR21721848 \
-o SRR21721848_NanoPlot
  • 结果展示
$ cd SRR21721846_NanoPlot/

#结果文件:
NanoPlot-report.html  主要报告文件
LengthvsQualityScatterPlot_dot.html  
LengthvsQualityScatterPlot_kde.html  
NanoStats.txt      
Yield_By_Length.html                     
Non_weightedHistogramReadlength.html  
WeightedHistogramReadlength.html
Non_weightedLogTransformed_HistogramReadlength.html
Non_weightedLogTransformed_HistogramReadlength.png 
WeightedLogTransformed_HistogramReadlength.html
NanoPlot_20231120_2259.log   

每个结果目录中都有NanoPlot-report.html文件,用浏览器打开即可查看结果报告索引,报告中包括所有统计数据和交互图。

摘要统计Summary statistics

Summary statistics

LengthvsQualityScatterPlot_dot
点状展示每条read的长度和质量的分布,两侧加柱状图进一步呈现长度和质量的分布情况。可以看出长度分布在2K以下,质量集中在Q13.

Length vs Quality dot

LengthvsQualityScatterPlot_kde
核密度估计(Kernel Density Estimation,kde)展示每条read的长度和质量的分布,两侧加柱状图进一步呈现长度和质量的分布情况。可以看出长度分布在2K以下,质量集中在Q13.

Length vs Quality kde

Nonweighted Histogram of read lengths 无加权长度分布直方图

Nonweighted histogram of read lengths

Nonweighted LogTransformed Histogram of read lengths 无加权及取对数后的长度分布直方图

Non_weighted LogTransformed_HistogramReadlength

测序数量较大,且长度分布极不均匀且偏短,只在底部看到一条线,或一个峰。此时就需要将数据进行以10为底对数转换再观察。

Weighted Histogram of read lengths 加权后的长度分布

Weighted Histogram of read lenghts

Weighted LogTransformed Histogram of read lengths 加权及取对数后的长度分布

Weighted Histogram of read lenghts after log transformation.PNG

X轴为长度,Y轴是碱基数量,更好地看出不同长度上的碱基数量分布。

加权(weighted)的含义: They're weighted by the number of nucleotides per bin. As such longer reads count 'heavier'. The height of the bar, therefore, does not represent the number of reads, but the number of nucleotides in that bin.

Yield by length 长度产出图

Yield by length

X轴为长度,Y轴为产量的频率。一般为越长越少。

2. NanoQC

主页网址:https://github.com/wdecoster/nanoQC

  • 软件安装
#pip 安装
$ pip install nanoQC

#conda安装
$ conda install -c bioconda nanoqc
  • 软件使用
nanoQC [-h] [-v] [-o OUTDIR] fastq

positional arguments:
  fastq                 Reads data in fastq.gz format.

optional arguments:
  -h, --help            show this help message and exit
  -v, --version         Print version and exit.
  -o, --outdir OUTDIR   Specify directory in which output has to be created.
  -l, --minlen int      Minimum length of reads to be included in the plots
                        This also controls the length plotted in the graphs
                        from the beginning and end of reads (length plotted = minlen / 2)

-l 参数制定最短的reads长度限制
  • 演示数据
$ nanoQC SRR21721846.fastq.gz \
-o SRR21721846_NanoQC

$ nanoQC  SRR21721848.fastq.gz \
-o  SRR21721848_NanoQC
  • 结果展示
cd SRR21721846_NanoQC/

#结果文件:
nanoQC.html
NanoQC.log

输出结果包含log文件和html报告文件(主要看html):


NanoQC

报告中包含read长度、碱基含量和碱基质量,个人觉得这个可以作为头尾碱基过滤的一个参考。

3. NanoStat

主页网址:https://github.com/wdecoster/nanostat

如果运行NanoPlot,则会产生NanoStat.txt文件,结果和单独运行NanoStat的结果一样。

  • 软件安装
#pip 安装
$ pip install nanostat

#conda安装
$ conda install -c bioconda nanostat
  • 软件使用
#官方例子
$ NanoStat --fastq reads.fastq.gz --outdir statreports
$ NanoStat --bam alignment.bam alignment2.bam
  • 演示数据
$ NanoStat --fastq SRR21721846.fastq.gz -o SRR21721846_NanoStat -n SRR21721846.txt
$ NanoStat --fastq SRR21721848.fastq.gz -o SRR21721848_NanoStat -n SRR21721848.txt

# -o 要和 -n 一起连用,才能生成 SRR21721848_NanoStat 文件夹以及文件夹里的 SRR21721848.txt 文档(结果)
  • 统计结果
$ cat SRR21721848.txt 
#SRR21721848 统计结果
General summary:         
Mean read length 平均read长度:                2,390.9
Mean read quality 平均碱基质量 :                  11.9
Median read length 长度中位数 :              1,691.0
Median read quality 碱基质量中位数:                12.8
Number of reads 读长总数:               247,524.0
Read length N50 累计半总长的片段大小(N50) :                 3,819.0
STDEV read length:               2,335.6
Total bases 总碱基数:               591,806,555.0
Number, percentage and megabases of reads above quality cutoffs
>Q5:    247524 (100.0%) 591.8Mb
>Q7:    247524 (100.0%) 591.8Mb
>Q10:   229057 (92.5%) 553.8Mb
>Q12:   157978 (63.8%) 404.2Mb
>Q15:   29039 (11.7%) 87.7Mb
Top 5 highest mean basecall quality scores and their read lengths
1:      20.2 (199)
2:      19.6 (1538)
3:      19.5 (1930)
4:      19.4 (3240)
5:      19.0 (2429)
Top 5 longest reads and their mean basecall quality score
1:      37983 (15.3)
2:      35820 (12.8)
3:      33832 (11.2)
4:      33532 (12.4)
5:      33501 (10.2)

4. Cramino

主页网址:https://github.com/wdecoster/cramino

  • 软件安装
#conda安装
$ conda install -c bioconda cramino
  • 软件使用
$ cramino --ubam samplename.bam -t 12

需要比对后或者未比对的bam文件,这里就不做实际演示了,个人认为跑一个NanoPlot就足以。

  • 结果展示
# Histogram for read lengths:
     0-2000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  2000-4000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  4000-6000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  6000-8000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
 8000-10000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
10000-12000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
12000-14000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
14000-16000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
16000-18000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
18000-20000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
20000-22000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
22000-24000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
24000-26000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
26000-28000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
28000-30000 ∎∎∎∎∎∎∎∎∎∎∎∎
30000-32000 ∎∎∎∎∎∎∎∎∎
32000-34000 ∎∎∎∎∎∎
34000-36000 ∎∎∎∎
36000-38000 ∎∎
38000-40000 ∎
40000-42000 ∎
42000-44000 ∎
44000-46000 
46000-48000 
48000-50000 
50000-52000 
52000-54000 
54000-56000 
56000-58000 
58000-60000 
     60000+ 


# Histogram for Phred-scaled accuracies:
  Q0-1 
  Q1-2 
  Q2-3 
  Q3-4 
  Q4-5 
  Q5-6 ∎∎∎
  Q6-7 ∎∎∎∎∎∎∎∎∎∎∎∎
  Q7-8 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  Q8-9 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
 Q9-10 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
Q10-11 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
Q11-12 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
Q12-13 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
Q13-14 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
Q14-15 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
Q15-16 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
Q16-17 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
Q17-18 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
Q18-19 ∎∎∎∎
Q19-20 ∎
Q20-21 
Q21-22 
Q22-23 
Q23-24 
Q24-25 
Q25-26 
Q26-27 
Q27-28 
Q28-29 
Q29-30 
Q30-31 
Q31-32 
Q32-33 
Q33-34 
Q34-35 
Q35-36 
Q36-37 
Q37-38 
Q38-39 
Q39-40 
  Q40+ 

三、数据质控多样本整合

NanoComp

主页网址:https://github.com/wdecoster/nanocomp

Compare multiple runs of long read sequencing data and alignments. Creates violin plots or box plots of length, quality and percent identity and creates dynamic, overlaying read length histograms and a cumulative yield plot.

  • 软件安装
#pip安装
$ pip install NanoComp

#This script is written for Python3.
  • 软件使用
#官方示例
$ NanoComp --bam alignment1.bam alignment2.bam alignment3.bam --outdir compare-runs
$ NanoComp --fastq reads1.fastq.gz reads2.fastq.gz reads3.fastq.gz reads4.fastq.gz --names run1 run2 run3 run4

#实际样本
$ nohup NanoComp -t 24 -f pdf  \
--fastq SRR21721846.fastq.gz SRR21721848.fastq.gz \
--names SRR21721846 SRR21721848 \
-o NanoComp &

# -f 图片以pdf的格式输出
# -t 运行线程数
  • 结果展示

每个结果目录中都有 NanoComp-report.html 文件,用浏览器打开即可查看结果报告索引,报告中包括所有统计数据和交互图。内容其实和NanoPlot产生的结果一样,只不过有多样本之间的比较。

摘要统计Summary statistics

NanoComp Report Summary Statistics

总read数,总碱基数,读长N50数据:

NanoComp结果1

Read读长,对数转换的Read读长,碱基质量分布:

NanoComp结果2

长度分布直方图,标准化的长度分布直方图,加权后的长度分布:

NanoComp结果3

取对数后的长度分布, 标准化及取对数后的长度分布,加权及取对数后的长度分布:

NanoComp结果4

四、数据过滤软件

chopper

官方网站: https://github.com/wdecoster/chopper

Rust implementation of NanoFilt+NanoLyse, both originally written in Python. This tool, intended for long read sequencing such as PacBio or ONT, filters and trims a fastq file.
Filtering is done on average read quality and minimal or maximal read length, and applying a headcrop (start of read) and tailcrop (end of read) while printing the reads passing the filter.
基于平均Read质量,最小最长Read读长,头尾碱基修剪

  • 安装方法
  1. 直接下载二进制文件,加入路径。
  2. Conda安装。
#conda安装
$ conda install -c bioconda chopper
  • 使用方法
#使用说明
FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
        --headcrop      Trim N nucleotides from the start of a read [default: 0] 序列前端剪切
        --maxlength     Sets a maximum read length [default: 2147483647] 最大长度
    -l, --minlength     Sets a minimum read length [default: 1] 最小长度
    -q, --quality       Sets a minimum Phred average quality score [default: 0] 最小平均碱基质量(Phred评分)
        --tailcrop      Trim N nucleotides from the end of a read [default: 0] 序列末端剪切
        --threads       Number of parallel threads to use [default: 4] cpu线程数
        --contam        Fasta file with reference to check potential contaminants against [default None] 去除污染序列

#使用示例
$ gunzip -c reads.fastq.gz | chopper -q 10 -l 500 | gzip > filtered_reads.fastq.gz

  • 实际使用
    根据质控结果和实际需求调整
$ gunzip -c SRR21721846.fastq.gz | chopper -q 15 -l 500 | gzip > SRR21721846_filtered_reads.fastq.gz

参考文献:

  1. Wang, Y., Zhao, Y., Bollas, A., Wang, Y., & Au, K. F. (2021). Nanopore sequencing technology, bioinformatics and applications. Nature Biotechnology
  2. Raw read accuracy
  3. NanoPlot:三代纳米孔测序数据质量评估 - 刘永鑫
  4. 基因组组装---Nanopore数据评估(nanoqc和NanoPlot套件工具)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 159,716评论 4 364
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,558评论 1 294
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 109,431评论 0 244
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,127评论 0 209
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,511评论 3 287
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,692评论 1 222
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,915评论 2 313
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,664评论 0 202
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,412评论 1 246
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,616评论 2 245
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,105评论 1 260
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,424评论 2 254
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,098评论 3 238
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,096评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,869评论 0 197
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,748评论 2 276
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,641评论 2 271

推荐阅读更多精彩内容