Closed mtassia closed 2 months ago
Completion is updated, good job!
Exercise | Description | Completion |
---|---|---|
Q1 | grep.py completed |
Yes |
sys.argv indexed |
Yes | |
Text file processed | Yes | |
Newline characters removed | Yes | |
Q2 | gtf2bed.py completed |
Yes |
Chromosome, start coordinate, stop coordinate printed | Yes | |
gene_name cleaned up and printed |
Yes | |
Q3 | tally-fixed.py completed |
Yes |
Bug 1 fixed | Yes | |
Bug 2 fixed | Yes | |
Bug 3 fixed | Yes |
grep.py
completedsys.argv
indexedgtf2bed.py
completedgene_name
cleaned up and printedtally-fixed.py
completedAdditional comments:
python
programs to the correct directory. You can use themv
command to move them in your local repository, thengit add
the "new files" from their new locationssys.argv[1]
to seach in the file specified assys.argv[2]
. Additionally, your program currently prints every line in the file, whereas you should only print lines that contain a match tosys.argv[1]