GiantSpaceRobot / tsRNAsearch

Nextflow DSL2 tRNA and ncRNA fragment identification pipeline for small RNA-seq data
MIT License
7 stars 3 forks source link

Whether tsRNAsearch is suitable for paired-end RNA-seq data? #11

Closed WZo0o closed 2 years ago

WZo0o commented 2 years ago

Hello GiantSpaceRobot tsRNAsearch is a very amazing tool for tRNA mapping, but whether tsRNAsearch is suitable for paired-end RNA-seq data ?

GiantSpaceRobot commented 2 years ago

Hi there, It can work with paired-end data using a work-around. You can just cat the pair files together:

cat file1_1.fastq.gz file1_2.fastq.gz > file1.fastq.gz
cat file2_1.fastq.gz file2_2.fastq.gz > file2.fastq.gz
cat file3_1.fastq.gz file3_2.fastq.gz > file3.fastq.gz

You can then treat these new files as single-end as use the pipeline as normal.

WZo0o commented 2 years ago

Thanks for your solutions, I will try it.