Hey guys,
typically I am using full DE Nextflow pipeline that as an input takes fastq files.
However now I want to compare my data with other people experiments from NCBI SRA. Unfortunately I have data in BAM format. I know that I could convert it back to fastq however it would be super inefficient for over 400 files.
Does anybody knows any Nextflow/Snakemake pipelines that accepts BAMs for DE DEseq2 analysis?
Thank you for any tips!
N.B., this will depend a bit on how the workflow manager determines the list of output sample names. Otherwise you can
touch fastq/{name}.fastq
so it can determine the sample names. I don't know if nextflow has that issue, since it has a push rather than pull model.Indeed - and you may want to
touch
the fastq files to set the timestamps to be older than the bam files.@Devon Ryan and @dariober
Thank you very much. I was thinking about doing this this way however the workflow I am using has so many error checks that basically I would need to rewrite a full workflow :/
But thanks in the worst case scenario I will do it this way.