You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error("Genome fasta file not specified with e.g. '--fasta genome.fa' or via a detectable config file.")
183
+
if (
184
+
!params.fasta &&
185
+
(
186
+
! params.skip_alignment ||// Alignment needs fasta
187
+
! params.transcript_fasta // Dynamically making a transcript fasta needs the fasta
188
+
)
189
+
) {
190
+
error("Genome fasta file not specified with e.g. '--fasta genome.fa' or via a detectable config file. You must supply a genome FASTA file or use --skip_alignment and provide your own transcript fasta using --transcript_fasta for use in quantification.")
0 commit comments