diff findSpanin.py @ 5:46b252c89e9e draft

planemo upload commit 25fff8b3887beeb66c2d53e2a32f9af9f34e40b6
author cpt
date Fri, 20 Sep 2024 04:19:02 +0000
parents 673d1776d3b9
children 81bd9b752628
line wrap: on
line diff
--- a/findSpanin.py	Fri Jan 05 05:51:06 2024 +0000
+++ b/findSpanin.py	Fri Sep 20 04:19:02 2024 +0000
@@ -2,15 +2,12 @@
 ######### Much of this code is very "blocked", in the sense that one thing happens...then a function happens on the return...then another function...etc...etc...
 
 import argparse
-import os
 import re  # new
-import itertools  # new
-from collections import Counter, OrderedDict
+from collections import Counter
 from spaninFuncs import (
     getDescriptions,
     grabLocs,
     spaninProximity,
-    splitStrands,
     tuple_fasta,
     lineWrapper,
 )