From c54ebc03e779f3d3bc7b0bc3d01001dc815843c5 Mon Sep 17 00:00:00 2001 From: RamiyapriyaS <140844790+RamiyapriyaS@users.noreply.github.com> Date: Thu, 16 Jan 2025 15:36:47 -0500 Subject: [PATCH] Create code_dev_2.txt --- docs/chatbot_comparison/code_dev_2.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 docs/chatbot_comparison/code_dev_2.txt diff --git a/docs/chatbot_comparison/code_dev_2.txt b/docs/chatbot_comparison/code_dev_2.txt new file mode 100644 index 0000000..f221c15 --- /dev/null +++ b/docs/chatbot_comparison/code_dev_2.txt @@ -0,0 +1,4 @@ +Prompt 2 : "Write a Python script that performs differential expression analysis on RNA-Seq data using the edgeR package (via rpy2 for R integration). The script should: + 1. Load a CSV file containing RNA-Seq read counts with columns: Gene ID, Sample 1, Sample 2, ..., Sample N. + 2. Use the edgeR package to normalize the read counts and perform differential expression analysis between two specified conditions. + 3. Output the results in a CSV file with columns: Gene ID, log2 Fold Change, p-value, Adjusted p-value, Differential Expression Status (Significant/Not Significant)."