Genomics session portal 04

Kindly mark your attendance here : Click here
Kindly submit your Doubts here (Regarding any task ): Click here
Hi Interns ,
Welcome to the Internship Task Portal .
Here you will get all the intimations regarding your tasks , sessions , assignments and any updated briefing .
(The information and content provided in this portal is purely confidential and is under protected surveillance by the technical support team.)
☑ TASK 1: FASTQ Quality Control & Sequence Preprocessing INTERMEDIATE
🎯 Objective

Learn how to inspect raw sequencing reads, identify common quality issues, and prepare sequencing data for downstream genomic analysis.

🧪 Practical Work
  • Obtain a small publicly available FASTQ dataset.
  • Run quality assessment using FastQC.
  • Generate a MultiQC summary report.
  • Inspect per-base quality scores.
  • Check adapter contamination and sequence duplication.
  • Identify low-quality reads or bases.
  • Perform adapter and quality trimming using a suitable tool.
  • Run FastQC again after preprocessing.
  • Compare the before-and-after quality reports.
💻 Commands to Practice
fastqc sample_R1.fastq.gz sample_R2.fastq.gz multiqc . fastp \ -i sample_R1.fastq.gz \ -I sample_R2.fastq.gz \ -o clean_R1.fastq.gz \ -O clean_R2.fastq.gz \ -h fastp_report.html fastqc clean_R1.fastq.gz clean_R2.fastq.gz multiqc .
📌 Submission Evidence
  • Raw FASTQ quality report.
  • MultiQC report.
  • Trimming/preprocessing report.
  • Post-processing quality report.
  • Before-and-after comparison.
  • Commands or workflow documentation.
☑ TASK 2: Reference Genome & Sequence Alignment INTERMEDIATE
🎯 Objective

Understand the role of a reference genome and perform short-read alignment using a standard genomic alignment workflow.

🧪 Practical Work
  • Download a suitable reference genome from a public repository.
  • Inspect the FASTA reference sequence.
  • Build an alignment index.
  • Align paired-end sequencing reads to the reference.
  • Generate a SAM/BAM alignment file.
  • Convert SAM to BAM.
  • Sort the BAM file.
  • Index the sorted BAM file.
  • Calculate basic alignment statistics.
💻 Commands to Practice
bwa index reference.fasta bwa mem reference.fasta \ clean_R1.fastq.gz \ clean_R2.fastq.gz > sample.sam samtools view -b sample.sam > sample.bam samtools sort sample.bam -o sample.sorted.bam samtools index sample.sorted.bam samtools flagstat sample.sorted.bam samtools idxstats sample.sorted.bam
📌 Submission Evidence
  • Reference genome information.
  • Alignment command/workflow.
  • Sorted BAM file or representative output.
  • BAM index evidence.
  • Alignment statistics.
  • Short interpretation of mapping results.
☑ TASK 3: Variant Calling from Sequencing Data INTERMEDIATE
🎯 Objective

Learn the basic workflow for identifying candidate single-nucleotide variants and small insertions/deletions from aligned sequencing reads.

🧪 Practical Work
  • Use the sorted and indexed BAM file from Task 2.
  • Inspect alignment depth across the reference.
  • Generate candidate variant calls using a suitable variant caller.
  • Generate a VCF file.
  • Inspect the VCF structure.
  • Review variant quality and depth fields.
  • Apply basic quality filtering.
  • Compare the number of variants before and after filtering.
💻 Commands to Practice
samtools depth sample.sorted.bam > depth.txt bcftools mpileup \ -f reference.fasta \ sample.sorted.bam \ -O v \ -o raw.mpileup.vcf bcftools call \ -m \ -v \ raw.mpileup.vcf \ -o raw_variants.vcf bcftools view \ -i 'QUAL>=20' \ raw_variants.vcf \ -o filtered_variants.vcf bcftools stats filtered_variants.vcf
Use publicly available or simulated datasets for this educational task. The exercise is for learning computational variant-analysis workflows and is not a clinical diagnostic analysis.
📌 Submission Evidence
  • Raw VCF.
  • Filtered VCF.
  • Variant statistics.
  • Depth analysis.
  • Filtering criteria.
  • Short explanation of the filtering process.
☑ TASK 4: Variant Annotation & Biological Interpretation INTERMEDIATE
🎯 Objective

Learn how genomic variants can be annotated with gene and functional information and how annotation results can be organized for interpretation.

🧪 Practical Work
  • Select a suitable public reference annotation dataset.
  • Prepare the VCF for annotation.
  • Annotate variants using a suitable tool or public annotation resource.
  • Identify chromosome, position, reference and alternate alleles.
  • Inspect gene and transcript information.
  • Identify coding and non-coding variants where supported.
  • Summarize the functional categories represented in the dataset.
  • Create a concise annotated variant table.
💻 Commands / Workflow to Practice
bcftools query \ -f '%CHROM\t%POS\t%REF\t%ALT\t%QUAL\n' \ filtered_variants.vcf \ > variant_summary.tsv head variant_summary.tsv # Example annotation workflow # Configure the selected annotation tool # with the appropriate reference database # and annotate the filtered VCF.
📌 Submission Evidence
  • Annotated variant file.
  • Variant summary table.
  • Annotation-tool configuration.
  • Example annotated variants.
  • Brief biological interpretation.
  • Reference/database information used.
☑ TASK 5: Genome Assembly & Assembly Quality Assessment INTERMEDIATE
🎯 Objective

Understand the basic principles of genome assembly and evaluate assembly quality using common assembly statistics.

🧪 Practical Work
  • Use a small public sequencing dataset suitable for educational assembly.
  • Perform a basic genome assembly using an appropriate assembler.
  • Inspect assembled contigs.
  • Calculate total assembly length.
  • Calculate contig count.
  • Evaluate N50 and related statistics.
  • Inspect the length distribution of contigs.
  • Discuss limitations of the assembly.
💻 Commands to Practice
# Example assembly workflow spades.py \ -1 clean_R1.fastq.gz \ -2 clean_R2.fastq.gz \ -o spades_output # Example assembly statistics seqkit stats spades_output/contigs.fasta # Optional assembly evaluation quast.py \ spades_output/contigs.fasta \ -o quast_report
📌 Submission Evidence
  • Assembly FASTA file.
  • Assembly statistics.
  • N50 result.
  • Contig count and total length.
  • QUAST report or equivalent evaluation.
  • Short assembly-quality interpretation.
☑ TASK 6: Comparative Genomics & Multiple Sequence Alignment INTERMEDIATE
🎯 Objective

Compare homologous genomic or protein sequences and understand how sequence alignment can reveal conserved and variable regions.

🧪 Practical Work
  • Select 4–6 related public sequences.
  • Perform multiple sequence alignment.
  • Identify conserved positions.
  • Identify variable regions.
  • Calculate or inspect sequence identity.
  • Visualize the alignment.
  • Prepare a simple phylogenetic analysis if appropriate.
  • Explain the biological significance of conserved regions.
💻 Tools / Commands to Practice
mafft --auto input_sequences.fasta > aligned_sequences.fasta # Inspect alignment head -50 aligned_sequences.fasta # Example phylogenetic workflow iqtree2 \ -s aligned_sequences.fasta \ -m MFP \ -bb 1000 \ -nt AUTO
📌 Submission Evidence
  • Input sequence FASTA file.
  • Multiple sequence alignment.
  • Alignment visualization screenshot.
  • Conserved-region analysis.
  • Phylogenetic tree if performed.
  • Short comparative genomics report.
☑ TASK 7: RNA-Seq Expression Analysis Workflow INTERMEDIATE
🎯 Objective

Understand the computational workflow used to process RNA sequencing data and identify differences in gene expression between experimental groups.

🧪 Practical Work
  • Obtain a small public RNA-seq dataset.
  • Perform raw-read quality assessment.
  • Perform adapter/quality trimming where required.
  • Align reads to an appropriate reference or use a suitable pseudo-alignment method.
  • Generate a gene-level count matrix.
  • Inspect sample-level expression patterns.
  • Perform exploratory analysis such as PCA where appropriate.
  • Identify candidate differentially expressed genes using a standard workflow.
  • Visualize results using a volcano plot or heatmap.
💻 Example Workflow
fastqc sample_R1.fastq.gz multiqc . # Example alignment hisat2 \ -x reference_index \ -1 sample_R1.fastq.gz \ -2 sample_R2.fastq.gz \ -S sample.sam samtools view -b sample.sam > sample.bam samtools sort sample.bam -o sample.sorted.bam samtools index sample.sorted.bam # Generate gene-level counts using an appropriate # counting tool and reference annotation.
Document the exact dataset, reference genome, annotation version, software versions, and statistical thresholds used in the analysis.
📌 Submission Evidence
  • QC report.
  • Processed expression/count matrix.
  • Analysis workflow.
  • PCA or sample clustering plot.
  • Differential-expression result table.
  • Volcano plot or heatmap.
  • Short interpretation report.
☑ TASK 8: Reproducible Genomics Workflow & Pipeline Documentation INTERMEDIATE+
🎯 Objective

Build a reproducible genomics workflow in which analysis steps, parameters, software versions, input data, and outputs are clearly documented.

🧪 Practical Work
  • Create a structured project directory.
  • Separate raw data, processed data, scripts and results.
  • Write shell or Python scripts for repeated analysis steps.
  • Record software versions.
  • Create a configuration or parameter file.
  • Use Git for version control.
  • Create a README explaining how to reproduce the analysis.
  • Generate a final workflow diagram.
  • Explain how reproducibility can reduce analysis errors.
📁 Suggested Project Structure
genomics_project/ ├── data/ │ ├── raw/ │ └── processed/ │ ├── reference/ │ ├── scripts/ │ ├── results/ │ ├── reports/ │ ├── workflow/ │ ├── README.md └── environment.yml
💻 Commands to Practice
git init git status git add . git commit -m "Add genomics analysis workflow" git log --oneline python --version samtools --version fastqc --version git remote add origin YOUR_REPOSITORY_URL git push -u origin main
📌 Submission Evidence
  • Complete project directory.
  • Analysis scripts.
  • README.md.
  • Software/version information.
  • Git repository.
  • Workflow diagram.
  • Reproducibility report.
☑ TASK 9: Genomics Mini Project — End-to-End Analysis INTERMEDIATE+
🎯 Objective

Integrate the skills learned throughout Task Portal 05 by completing a small end-to-end genomics analysis using publicly available or simulated data.

🧪 Practical Work
  1. Select an appropriate public genomics dataset.
  2. Document the dataset source and biological context.
  3. Perform initial quality control.
  4. Preprocess the sequencing reads where required.
  5. Align or map the reads to an appropriate reference.
  6. Generate relevant genomic outputs such as variants or expression measurements.
  7. Perform appropriate filtering and quality assessment.
  8. Annotate or characterize the resulting genomic features.
  9. Create at least two meaningful visualizations.
  10. Interpret the major computational findings.
  11. Document limitations and possible sources of error.
  12. Prepare a complete final technical report.
🧬 Suggested Project Topics
  • Variant analysis using public sequencing data.
  • Comparative analysis of related genomes.
  • Small-scale bacterial genome analysis.
  • RNA-seq expression comparison using public data.
  • Sequence conservation analysis.
  • Genome assembly and quality assessment.
  • Publicly available population-genomics dataset exploration.
📊 Required Final Report Sections
  1. Project Title
  2. Research Question / Objective
  3. Dataset Description
  4. Reference Genome / Annotation
  5. Tools and Software Versions
  6. Computational Methodology
  7. Quality Control Results
  8. Analysis Results
  9. Visualizations
  10. Biological Interpretation
  11. Limitations
  12. Conclusion
  13. References
  14. GitHub Repository Link
📌 Final Submission Evidence
  • Complete source/data-processing workflow.
  • Scripts and configuration files.
  • Relevant processed datasets.
  • Analysis results.
  • Figures and visualizations.
  • GitHub repository.
  • Complete final report in PDF.
  • Project presentation/demo screenshots.
Important: Use publicly available or simulated datasets for this educational project. Do not upload personally identifiable genomic data, private sequencing data, patient information, or confidential research data.
📤 TASK PORTAL 05 — SUBMISSION METHOD

After completing all 9 tasks, organize your complete work into one main folder. Each task should have its own subfolder containing the relevant files and evidence.

1️⃣ Create the Main Submission Folder

Use the following naming format:

Genomics_Internship_Task_Portal_05_YourName
2️⃣ Create Separate Folders for All 9 Tasks
Genomics_Internship_Task_Portal_05_YourName/ ├── Task_1_FASTQ_Quality_Control/ ├── Task_2_Reference_Alignment/ ├── Task_3_Variant_Calling/ ├── Task_4_Variant_Annotation/ ├── Task_5_Genome_Assembly/ ├── Task_6_Comparative_Genomics/ ├── Task_7_RNA_Seq_Analysis/ ├── Task_8_Reproducible_Workflow/ └── Task_9_Genomics_Mini_Project/
3️⃣ Add All Required Evidence
  • Source code and scripts
  • FASTQ/FASTA files where appropriate and legally shareable
  • Processed data/results
  • VCF/BAM/other analysis outputs where appropriate
  • QC reports
  • Graphs and visualizations
  • Terminal/workflow screenshots
  • Configuration files
  • README documentation
  • GitHub repository links
  • Task-specific reports
4️⃣ Add Your Final Internship Report

Add one final PDF report to the main folder covering your overall experience and technical work across Task Portal 05.

  • Intern name
  • Internship/program details
  • Tasks completed
  • Tools and technologies used
  • Project summaries
  • Methodology
  • Results and visualizations
  • Challenges and solutions
  • Key learning outcomes
  • GitHub/project links
  • Final mini-project documentation
5️⃣ Upload the Complete Folder

Upload the complete submission folder to Google Drive or another suitable cloud-storage platform.

6️⃣ Share the Folder With the Internship Team

Share the complete folder with the following official email address:

📧 support@thenexoragroup.com

Make sure the folder permissions allow the internship evaluation team to access the submitted files.

7️⃣ Submit the Folder Link

After sharing the folder, copy the Google Drive share link and submit the link through the designated internship task submission form/portal.

8️⃣ Final Submission Checklist
  • ☐ All 9 task folders created
  • ☐ Required files added to each task folder
  • ☐ Scripts and source code included
  • ☐ Results and reports included
  • ☐ Screenshots/visualizations included
  • ☐ GitHub repository link included
  • ☐ Final PDF report included
  • ☐ Complete folder uploaded to Google Drive
  • ☐ Folder shared with support@thenexoragroup.com
  • ☐ Access permission checked
  • ☐ Shareable folder link copied
  • ☐ Folder link submitted through the task portal
🔐 DATA & SECURITY NOTICE:
Do not upload patient-identifiable genomic information, private research datasets, passwords, API keys, access tokens, private credentials, or confidential institutional data. Use public or simulated datasets unless you have explicit authorization to share other data.
📌 Important:
Please submit one properly organized folder containing your complete Task Portal 05 work. Avoid sending individual files separately unless specifically requested by the internship team.