From 3a7b39a12bb3c0d60c3f0f88d7102d0428c8762f Mon Sep 17 00:00:00 2001
From: NMarthe <nina.marthe34@gmail.com>
Date: Mon, 22 May 2023 15:33:48 +0200
Subject: [PATCH] correction de commentaire

---
 seg_coord/getSegmentsCoordinates.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/seg_coord/getSegmentsCoordinates.py b/seg_coord/getSegmentsCoordinates.py
index 7520dcb..559b098 100644
--- a/seg_coord/getSegmentsCoordinates.py
+++ b/seg_coord/getSegmentsCoordinates.py
@@ -46,7 +46,7 @@ for line in lines :
     file_name=name+'_'+chromosome+'.bed'
 
     # if we are writing in the file for the first time, overwrite it. else, append it
-    # this is because some chromosomes are fragmented. the coordinates of all the fragments from the same chromosome are written in the same bed file.
+    # this is because chromosomes can be fragmented. the coordinates of all the fragments from the same chromosome will be written in the same bed file.
     if file_name not in file_names:
         file_names.append(file_name)
         out_bed = open(file_name, 'w')
-- 
GitLab