Mercurial > repos > artbio > small_rna_signatures
diff signature.py @ 1:ca2b04cdbf4d draft
"planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_signatures commit 8691f2575cacd71c971338658198a1324e5f9370"
| author | artbio |
|---|---|
| date | Sat, 23 Oct 2021 22:54:47 +0000 |
| parents | 3e0ea204d09e |
| children |
line wrap: on
line diff
--- a/signature.py Tue Jan 07 11:59:34 2020 +0000 +++ b/signature.py Sat Oct 23 22:54:47 2021 +0000 @@ -82,7 +82,7 @@ ''' this method does not filter on read size, just forward reads that overlap reverse reads in the overlap range''' all_query_positions = defaultdict(list) - for genomicKey in self.map_dict.keys(): + for genomicKey in list(self.map_dict): chrom, coord, pol = genomicKey for i in self.scope: if pol == 'F' and len(self.map_dict[chrom,
