Category: rnaseq

Running salmon via CWL

Written by bonohu in rnaseq on 金 28 6月 2019.

If a transcriptome sequence set is available for the organism, salmon can be used for transcript quantification. cwltool must be installed in advance by conda install cwltool or pip install cwltool.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19 …

Continue reading »


Running ikra

Written by bonohu in rnaseq on 火 21 5月 2019.

Tried to use ikra. SRR mode which directly fetches SRA file from NCBI worked fine, but FASTQ mode was failed after trimming with the error below. It seems that the file setting for salmon was incorrect.

Exception : [
The following errors were detected with the read files
======================================================
ERROR: file [fq/ERRxxxxxx_trimmed …

Continue reading »


fasterq-dump

Written by bonohu in rnaseq on 土 02 2月 2019.

I noticed the announcement in NCBI's sra-tools GitHub wiki

With release 2.9.1 of sra-tools we have finally made available the tool fasterq-dump, a replacement for the much older fastq-dump tool.

So I tested the speed from my home.

  1. Just specify a run ID of SRA.
# Just fasterq-dump …

Continue reading »


CellFishing

Written by bonohu in rnaseq on 火 06 11月 2018.

I tried to use CellFishing written in Julia. It was my first time to use Julia, so I started from the installation of Julia with Homebrew.

# Install Julia
brew cask install julia
# Install CellFishing
julia -e 'using Pkg; Pkg.add(PackageSpec(url="git://github.com/bicycle1885/CellFishing.jl.git"))'
# Run …

Continue reading »


Trinity will not run

Written by bonohu in rnaseq on 水 06 6月 2018.

After some software updates, Trinity ended with error below.

dyld: Library not loaded: /usr/local/opt/gcc/lib/gcc/7/libgomp.1.dylib
Referenced from: /usr/local/Cellar/trinity/2.5.1/util/..//Inchworm/bin/fastaToKmerCoverageStats Reason: image not found

I checked the file /usr/local/opt/gcc/lib/gcc …

Continue reading »


StringTie

Written by bonohu in rnaseq on 金 18 5月 2018.

After the execution of HISAT2, aligned reads can be assembled using StringTie.

StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts.

The pipeline to process data by HISAT2 and StringTie is similar to that by TopHat and Cufflinks. Genome annotation file (GTF) can be used …

Continue reading »


HISAT2

Written by bonohu in rnaseq on 木 17 5月 2018.

HISAT2 is a successor of TopHat.

TopHat has entered a low maintenance, low support stage as it is now largely superseded by HISAT2 which provides the same core functionality (i.e. spliced alignment of RNA-Seq reads), in a more accurate and much more efficient way.

Genome annotation file (GTF) is …

Continue reading »


Align and estimate abundance

Written by bonohu in rnaseq on 水 07 3月 2018.

If assembled transcriptome sequence set and RNA-seq reads for that are available for an organism, we can align reads and estimate transcript abundance by running the script (align_and_estimate_abundance.pl) in the Trinity software package. When the Trinity package was installed using Homebrew, that script is installed in /usr/local/Cellar …

Continue reading »


Running kallisto

Written by bonohu in rnaseq on 月 22 1月 2018.

If a transcriptome sequence set is available for the organism, kallisto can be used for transcript quantification. The kallisto version I used was 0.43.1, which was previously installed using Homebrew by the command like brew install kallisto.

kallisto index -i index transcriptome.fa
kallisto quant -i index -o …

Continue reading »