From eb65588a1fdc805c80f8980e4b3ca497e4ec6243 Mon Sep 17 00:00:00 2001 From: Marcus Davy Date: Fri, 13 May 2016 08:47:34 +1200 Subject: [PATCH] comments --- bioinformatics_hacky_hour/python_conditionals_solution.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bioinformatics_hacky_hour/python_conditionals_solution.py b/bioinformatics_hacky_hour/python_conditionals_solution.py index 1c13aef..b7b6766 100755 --- a/bioinformatics_hacky_hour/python_conditionals_solution.py +++ b/bioinformatics_hacky_hour/python_conditionals_solution.py @@ -1,14 +1,14 @@ #!/usr/bin/env python # -# Read the input file, count the number genese on each strand (data column 2) +# Read the input file, count the number genes on each strand (data column 2) # assign the input file name to a variable inputFile = 'python_conditionals_data.csv' -# Read input file data inot variable +# Read input file data into variable inputData = open(inputFile) -# Initiate counting variables +# Initialize counting variables positive_strand_genes = 0 negative_strand_genes = 0 unknown_strand_genes = 0