Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(7) | Call(7) | Derive(0) | Import(0)
src/w/e/weblogo-3.3/corebio/seq_io/_nexus/__init__.py weblogo(Download)
if 'symbols' in options: self.symbols=options['symbols'] if (self.symbols.startswith('"') and self.symbols.endswith('"')) or\ (self.symbold.startswith("'") and self.symbols.endswith("'")): self.symbols=self.symbols[1:-1].replace(' ','')
src/b/i/biopython-HEAD/Bio/Nexus/Nexus.py biopython(Download)
if 'symbols' in options: self.symbols = options['symbols'] if (self.symbols.startswith('"') and self.symbols.endswith('"')) or\ (self.symbold.startswith("'") and self.symbols.endswith("'")): self.symbols = self.symbols[1:-1].replace(' ', '')
src/b/i/biopython-1.63/Bio/Nexus/Nexus.py biopython(Download)
if 'symbols' in options: self.symbols = options['symbols'] if (self.symbols.startswith('"') and self.symbols.endswith('"')) or\ (self.symbold.startswith("'") and self.symbols.endswith("'")): self.symbols = self.symbols[1:-1].replace(' ', '')
src/e/d/edna-HEAD/diffractionCTv1/bin/edna-DiffactionTomo.py edna(Download)
basename = os.path.basename(filename) for oneExt in self.listExtensions: if basename.endswith(oneExt): bProcessFile = True break