Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 5 | 1 | 0.993 | compound_stmt |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 70 | Bio/PopGen/FDist/__init__.py |
2 | 11 | 159 | Bio/PopGen/GenePop/__init__.py |
3 | 11 | 258 | Bio/Prosite/__init__.py |
4 | 11 | 147 | Bio/Prosite/Prodoc.py |
5 | 11 | 210 | Bio/SwissProt/SProt.py |
| ||||
class RecordParser(AbstractParser): """Parses FDist data into a Record object. """ def __init__(self): self._scanner = _Scanner( ) self._consumer = _RecordConsumer( ) def parse(self,handle): self._scanner.feed(handle,self._consumer) return self._consumer.data |
| ||||
class RecordParser(AbstractParser): """Parses GenePop data into a Record object. """ def __init__(self): self._scanner = _Scanner( ) self._consumer = _RecordConsumer( ) def parse(self,handle): self._scanner.feed(handle,self._consumer) return self._consumer.data |
| ||||
class RecordParser(AbstractParser): """Parses Prosite data into a Record object. """ def __init__(self): self._scanner = _Scanner( ) self._consumer = _RecordConsumer( ) def parse(self,handle): self._scanner.feed(handle,self._consumer) return self._consumer.data |
| ||||
class RecordParser(AbstractParser): """Parses Prodoc data into a Record object. """ def __init__(self): self._scanner = _Scanner( ) self._consumer = _RecordConsumer( ) def parse(self,handle): self._scanner.feed(handle,self._consumer) return self._consumer.data |
| ||||
class RecordParser(AbstractParser): """Parses SwissProt data into a Record object. """ def __init__(self): self._scanner = _Scanner( ) self._consumer = _RecordConsumer( ) def parse(self,handle): self._scanner.feed(handle,self._consumer) return self._consumer.data |
| |||
class RecordParser(AbstractParser): [[#variable2f5b4220]] def __init__(self): self._scanner = _Scanner( ) self._consumer = _RecordConsumer( ) def parse(self,handle): self._scanner.feed(handle,self._consumer) return self._consumer.data |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#2f5b4220]] | """Parses SwissProt data into a Record object. """ |
1 | 2 | [[#2f5b4220]] | """Parses Prosite data into a Record object. """ |
1 | 3 | [[#2f5b4220]] | """Parses FDist data into a Record object. """ |
1 | 4 | [[#2f5b4220]] | """Parses GenePop data into a Record object. """ |
1 | 5 | [[#2f5b4220]] | """Parses Prodoc data into a Record object. """ |