Hi @nanohacker1
For this part
it could just mean the job was queued for a while, and is now executing. Or maybe it is still queued? This is how to check:
Then for your questions: you could try comparing how the genomic versus transcriptomic DE results turn out. But in general, if you are working with a known reference genome and known annotated genes, using that is usually a good idea.
- Featurecounts → Map against a reference genome first, then generating the counts with this tool.
- Salmon → Maps against a transcriptome at runtime.
- DESeq2 can be used with either (counts, TMP values), but EdgeR and Limma will expect just counts.
We have a couple of guides that can help to get the reference data in order. I’m not sure why you are mixing up data sources. You can also use the built-in hg38 reference genome instead of loading up that fasta separately.
If you want to review some existing workflows for ideas, please start here.
Hope this helps! You should be able to get a good solid core of reference data organized for human. From there you can then explore and compare all of these tools in your workflow and make choices. The same reference data can be used with all of them.