From 939ffc7fcc602e0c384b57232e11accc6acf1410 Mon Sep 17 00:00:00 2001
From: Clara Moreno <clara.moreno.etu@univ-lille.fr>
Date: Tue, 18 Feb 2025 17:22:12 +0100
Subject: [PATCH] Update Code

---
 Code | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/Code b/Code
index d3cc521..3ed9a5d 100644
--- a/Code
+++ b/Code
@@ -37,7 +37,7 @@ def gff_a_html(gff_file, output_html):
 
 
     # TABLEAU : 
-    df = pd.DataFrame(data, columns=["ID", "Start", "End", "Locus ID", "Gene Product"])
+    df = pd.DataFrame(data, columns=["ID", "Start", "End", Strand]) #le reste fonctionne pas 
 
     # fichier HTML
     df.to_html(output_html, index=False)
@@ -46,6 +46,14 @@ def gff_a_html(gff_file, output_html):
 
 
 if __name__ == "__main__":
-    gff_file = "/Users/claramoreno/PycharmProjects/PythonProjectPaster/exemple.gff.py"
-    output_html = "/Users/claramoreno/PycharmProjects/PythonProjectPaster/output.html"
+
+        #chemin des fichiers de Clara :
+    #gff_file = "/Users/claramoreno/PycharmProjects/PythonProjectPaster/wormbase_gff2_alt.txt" 
+    #output_html = "/Users/claramoreno/PycharmProjects/PythonProjectPaster/output.html"
+
+        #chemin des fichiers :
+    #gff_file = 
+    #output_html = 
+
+
     print(gff_a_html(gff_file,output_html))
\ No newline at end of file
-- 
GitLab