diff --git a/results/.gitignore b/results/.gitignore deleted file mode 100644 index 72e8ffc0db8aad71a934dd11e5968bd5109e54b4..0000000000000000000000000000000000000000 --- a/results/.gitignore +++ /dev/null @@ -1 +0,0 @@ -* diff --git a/src/RNAseq.nf b/src/RNAseq.nf index 7788603969e8f357c1b9eb7761604e81ae33cf82..2b940d896b716af0b1099213612734d97801da97 100644 --- a/src/RNAseq.nf +++ b/src/RNAseq.nf @@ -229,8 +229,9 @@ hisat2 -x ${index_id} \ -1 ${fastq_filtred[0]} \ -2 ${fastq_filtred[1]} \ --un-conc-gz ${file_id}_notaligned_R%.fastq.gz \ - --rna-strandness 'F' \ - 2> ${file_id}.txt \ + --rna-strandness 'FR' \ + --dta \ + 2> ${file_id}_genome.txt \ | samtools view -bS -F 4 - \ | samtools sort -@ ${task.cpus} -o ${file_id}.bam \ && samtools index ${file_id}.bam @@ -245,7 +246,7 @@ HISAT_ALIGNED.into{HISAT_ALIGNED_FASTQC; HISAT_ALIGNED_DEDUP} -/* Fastqc of filtred reads */ +/* Fastqc of genome reads */ process fastqc_genome { tag "$file_id" @@ -401,7 +402,8 @@ hisat2 -x ${index2_id} \ -p ${task.cpus} \ -1 ${fastq_unaligned[0]} \ -2 ${fastq_unaligned[1]} \ - --rna-strandness 'F' \ + --rna-strandness 'FR' \ + --dta\ 2> ${file_id}_postgenome.txt \ | samtools view -bS -F 4 - \ | samtools sort -@ ${task.cpus} -o ${file_id}.bam \