1- Extension { #name : # ZnCharacterReadStream }
1+ Extension { #name : ' ZnCharacterReadStream' }
22
3- { #category : # ' *BioPharo7' }
3+ { #category : ' *BioPharo7' }
44ZnCharacterReadStream >> blastXMLDtdLocations [
55 " Answer a <Collection> of known NCBI Blast Output DTD locations "
66
@@ -9,7 +9,7 @@ ZnCharacterReadStream >> blastXMLDtdLocations [
99 with: ' <!DOCTYPE BlastOutput PUBLIC "-//NCBI//NCBI BlastOutput/EN" "http://www.ncbi.nlm.nih.gov/dtd/NCBI_BlastOutput.dtd">'
1010]
1111
12- { #category : # ' *BioPharo7' }
12+ { #category : ' *BioPharo7' }
1313ZnCharacterReadStream >> isBlastXMLFormat [
1414 " Only answer <true> when the receiver's contents *looks like* a NCBI Blast format, not performing any validity check "
1515
@@ -19,7 +19,7 @@ ZnCharacterReadStream >> isBlastXMLFormat [
1919 ^ answer
2020]
2121
22- { #category : # ' *BioPharo7' }
22+ { #category : ' *BioPharo7' }
2323ZnCharacterReadStream >> isGenBankFlatFormat [
2424 " Only answer <true> when the receiver's contents *looks like* a GenBank flat format, not performing any validity check "
2525
@@ -35,7 +35,7 @@ ZnCharacterReadStream >> isGenBankFlatFormat [
3535 ^ flatSignature beginsWith: ' LOCUS '
3636]
3737
38- { #category : # ' *BioPharo7' }
38+ { #category : ' *BioPharo7' }
3939ZnCharacterReadStream >> isXML [
4040 " See superimplementor's comment "
4141
@@ -51,13 +51,13 @@ ZnCharacterReadStream >> isXML [
5151 ^ xmlSignature isXML
5252]
5353
54- { #category : # ' *BioPharo7' }
54+ { #category : ' *BioPharo7' }
5555ZnCharacterReadStream >> name [
5656
5757 ^ self wrappedStream name
5858]
5959
60- { #category : # ' *BioPharo7' }
60+ { #category : ' *BioPharo7' }
6161ZnCharacterReadStream >> nextMatchAll: aColl [
6262 " Answer true if next N objects are the ones in aColl,
6363 else false. Advance stream of true, leave as was if false."
@@ -71,14 +71,14 @@ ZnCharacterReadStream >> nextMatchAll: aColl [
7171 ^ true
7272]
7373
74- { #category : # ' *BioPharo7' }
74+ { #category : ' *BioPharo7' }
7575ZnCharacterReadStream >> nextMatchAllAnyOf: aCollection [
7676
7777 ^ aCollection anySatisfy: [ : subCol | self nextMatchAll: subCol ].
7878
7979]
8080
81- { #category : # ' *BioPharo7' }
81+ { #category : ' *BioPharo7' }
8282ZnCharacterReadStream >> readStream [
8383 " Compatibility with SAXParser "
8484
0 commit comments