Admin

Admin

Msc Bioinformatics — Mumbai University

Just a guy who is curious

1777 Vote Score
30 Questions
31 Answers
Apr 2026 Member since

30 Questions

31 Answers

Bioinformatics is an interdisciplinary field that develops and uses computational methods, software tools, and statistics to store, analyze, and interpret large, complex biological datasets, particularly…

1 month ago

If you're stuck with 15x coverage, you can try Raven or Miniasm as alternatives — they sometimes perform better at low coverage: ```bash raven --threads…

1 month ago
✓ Accepted

For 120 protein sequences, MUSCLE5 and MAFFT are both excellent choices. MUSCLE5 is often more accurate; MAFFT is faster for very large datasets (>1000 sequences).…

1 month ago
✓ Accepted

Here is the complete QIIME2 workflow for paired-end 16S data: **1. Import reads** ```bash qiime tools import --type 'SampleData[PairedEndSequencesWithQuality]' --input-path manifest.csv --input-format PairedEndFastqManifestPhred33V2 --output-path demux.qza…

1 month ago
✓ Accepted

You need to first create the BLAST database using `makeblastdb` before you can query it. Here's the full workflow: ```python from Bio.Blast.Applications import NcbimakeblastdbCommandline, NcbiblastpCommandline…

1 month ago
✓ Accepted

Use **cyvcf2** — it's ~20x faster than PyVCF because it wraps htslib in C: ```python from cyvcf2 import VCF import numpy as np vcf =…

1 month ago
✓ Accepted

BioPython doesn't have a built-in pairwise identity function for MSAs, but it's easy to write one: ```python from Bio import AlignIO import numpy as np…

1 month ago
✓ Accepted

For bacterial genomes with Flye and Nanopore reads, you generally want **30–60x coverage** for a good assembly. 15x is too low and explains the fragmentation.…

1 month ago
✓ Accepted

**Do NOT pre-normalize your counts before DESeq2.** DESeq2 expects raw integer counts and does its own normalization internally using the median-of-ratios method. ```r library(DESeq2) #…

1 month ago
✓ Accepted

Harmony is a good choice. Here's the correct workflow: ```r library(Seurat) library(harmony) # Merge your objects combined

2 months ago