mirror of
https://github.com/Lukas0025/POC1-SIMD-DNA.git
synced 2025-04-05 23:25:27 +01:00
Naive binding implementation
This commit is contained in:
parent
d814152224
commit
3aa4e8e11f
@ -39,12 +39,22 @@ class Molecule:
|
|||||||
def addToChain(self, base, chainId):
|
def addToChain(self, base, chainId):
|
||||||
self.chains[chainId].append(base)
|
self.chains[chainId].append(base)
|
||||||
|
|
||||||
|
def getChain(self, chain):
|
||||||
|
return self.chains[chain]
|
||||||
|
|
||||||
|
def removeChain(self, chainId):
|
||||||
|
del self.chains[chainId]
|
||||||
|
|
||||||
def maxChainSize(self):
|
def maxChainSize(self):
|
||||||
maxLen = 0
|
maxLen = 0
|
||||||
for chain in self.chains:
|
for chain in self.chains:
|
||||||
maxLen = max(maxLen, len(chain))
|
maxLen = max(maxLen, len(chain))
|
||||||
|
|
||||||
return maxLen
|
return maxLen
|
||||||
|
|
||||||
|
def chain2chain(self, chainID, chain):
|
||||||
|
for base in chain:
|
||||||
|
self.chains[chainID].append(base)
|
||||||
|
|
||||||
def padChain(self, chainID, count):
|
def padChain(self, chainID, count):
|
||||||
for _ in range(count):
|
for _ in range(count):
|
||||||
@ -114,11 +124,11 @@ def parse(notationStr):
|
|||||||
|
|
||||||
if state == "init":
|
if state == "init":
|
||||||
|
|
||||||
if char == "<":
|
if char == "{":
|
||||||
lastChain = state = "lower"
|
lastChain = state = "lower"
|
||||||
elif char == "[":
|
elif char == "[":
|
||||||
lastChain = state = "double"
|
lastChain = state = "double"
|
||||||
elif char == "{":
|
elif char == "<":
|
||||||
lastChain = state = "upper"
|
lastChain = state = "upper"
|
||||||
elif char == ".":
|
elif char == ".":
|
||||||
if lastChain is not None and lastChain != "lower":
|
if lastChain is not None and lastChain != "lower":
|
||||||
@ -131,14 +141,14 @@ def parse(notationStr):
|
|||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
elif state == "lower":
|
elif state == "lower":
|
||||||
if char == ">":
|
if char == "}":
|
||||||
state = "init"
|
state = "init"
|
||||||
continue
|
continue
|
||||||
|
|
||||||
newMolecule.charAddBase(lowerChain, char)
|
newMolecule.charAddBase(lowerChain, char)
|
||||||
|
|
||||||
elif state == "upper":
|
elif state == "upper":
|
||||||
if char == "}":
|
if char == ">":
|
||||||
workingChain = None
|
workingChain = None
|
||||||
isBackward = False
|
isBackward = False
|
||||||
state = "init"
|
state = "init"
|
||||||
|
@ -9,7 +9,45 @@ class Register:
|
|||||||
self.mol = mol
|
self.mol = mol
|
||||||
|
|
||||||
def inscription(self, IMols):
|
def inscription(self, IMols):
|
||||||
pass
|
for _ in range(1):
|
||||||
|
used = False
|
||||||
|
for imol in IMols:
|
||||||
|
bindIndex, unbindChain = self.getNearestBinding(imol)
|
||||||
|
|
||||||
|
if unbindChain is not None:
|
||||||
|
used = True
|
||||||
|
self.mol.removeChain(unbindChain)
|
||||||
|
|
||||||
|
if bindIndex is not None:
|
||||||
|
used = True
|
||||||
|
chain = self.mol.addChain()
|
||||||
|
self.mol.padChain(chain, bindIndex)
|
||||||
|
self.mol.chain2chain(chain, imol.getChain(0))
|
||||||
|
self.mol.endPad()
|
||||||
|
|
||||||
|
if not used:
|
||||||
|
break
|
||||||
|
|
||||||
|
def getNearestBinding(self, imol):
|
||||||
|
for chainI in range(self.mol.chainsCount()):
|
||||||
|
for aligment in range(len(self.mol)):
|
||||||
|
align_score = 0
|
||||||
|
for baseID in range(min(len(imol), len(self.mol) - aligment)):
|
||||||
|
if molecule.isComplementary(self.mol.getBase(chainI, baseID + aligment), imol.getBase(0, baseID)):
|
||||||
|
align_score += 1
|
||||||
|
elif align_score > 0:
|
||||||
|
break
|
||||||
|
|
||||||
|
# ok now finded binding
|
||||||
|
if align_score >= 2:
|
||||||
|
if chainI == 0:
|
||||||
|
return aligment, None
|
||||||
|
|
||||||
|
|
||||||
|
return None, None
|
||||||
|
|
||||||
|
def show(self):
|
||||||
|
return self.mol.rawPrint()
|
||||||
|
|
||||||
def asciiShow(self, spaceing = ""):
|
def asciiShow(self, spaceing = ""):
|
||||||
return ascii.showMolecule(self.mol, spaceing)
|
return ascii.showMolecule(self.mol, spaceing)
|
||||||
@ -21,7 +59,7 @@ print("---------------------------------\n")
|
|||||||
|
|
||||||
# create register
|
# create register
|
||||||
myreg = Register(molecule.parse(
|
myreg = Register(molecule.parse(
|
||||||
"<AB>[CD]"
|
"{EEEBCDEEEBCD}"
|
||||||
))
|
))
|
||||||
|
|
||||||
myreg.asciiShow()
|
myreg.asciiShow()
|
||||||
@ -31,9 +69,18 @@ print("After")
|
|||||||
print("---------------------------------\n")
|
print("---------------------------------\n")
|
||||||
|
|
||||||
# do inscription
|
# do inscription
|
||||||
|
# mark
|
||||||
|
# myreg.inscription([
|
||||||
|
# molecule.parse("<A*B*C*D*E*>")
|
||||||
|
# ])
|
||||||
|
|
||||||
|
# do instruction
|
||||||
|
# remove
|
||||||
myreg.inscription([
|
myreg.inscription([
|
||||||
molecule.parse("{A*B*C*D*E*}"),
|
molecule.parse("{A*B*C*D*A*}")
|
||||||
molecule.parse("<ABCDE>")
|
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
myreg.show()
|
||||||
|
|
||||||
myreg.asciiShow()
|
myreg.asciiShow()
|
Loading…
x
Reference in New Issue
Block a user