rnaSPAdes hybrid assembly and YAML file
1
1
Entering edit mode
2.2 years ago
poecile.pal ▴ 50

Good evening,

I would like to make a hybrid assembly (Illumina + Oxford Nanopore) using rnaSPAdes. I have a lot of libraries, so I have to set them in a YAML file. Do I understand correctly that in this case I need to specify both those and other libraries in YAML, and write the code as follows:

rnaspades.py --dataset libraries.yaml --nanopore -o OUTPUT

(without specifying anything after --nanopore)

with YAML like this:

 [
      {
        orientation: "fr",
        type: "paired-end",
        right reads: [
          "/FULL_PATH_TO_DATASET/lib_pe1_right_1.fastq",
          "/FULL_PATH_TO_DATASET/lib_pe1_right_2.fastq" 
        ],
        left reads: [
          "/FULL_PATH_TO_DATASET/lib_pe1_left_1.fastq",
          "/FULL_PATH_TO_DATASET/lib_pe1_left_2.fastq" 
        ]
      },
      {
        type: "nanopore",
        single reads: [
          "/FULL_PATH_TO_DATASET/nanopore_1.fastq" 
          "/FULL_PATH_TO_DATASET/nanopore_2.fastq" 
        ]
      }
 ]

Thank you in advance!

Best regards, Poecile

SPAdes assembly rnaSPAdes rna-seq hybrid • 519 views
ADD COMMENT
0
Entering edit mode
2.2 years ago
poecile.pal ▴ 50

I duplicated my question on github and the developer answered that specifying --nanopore is not required in this case, since it is already specified in YAML. So:

rnaspades.py --dataset libraries.yaml -o OUTPUT
ADD COMMENT

Login before adding your answer.

Traffic: 3119 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6