<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Hi,</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
i am new here so I am sorry if I am doing anything wrong, feel free to tell me.</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
I am farely new to biopython as well, currently i have written a script that reads in a .gbk file and then deletes and inserts different parts of the sequence. this would alter the absolute position of features. I have ultimately run a script that safes the
 new positions in 2 dataframes. When i now want to update all features with the Featurelocation command it seems to not work. I saved the features in a variable before and after me updating the features and was hoping to then detect a difference but it fails.
 here the basic part of the script i am struggling with</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
CompareBefore = Seqfile.features</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
for z in range(0, len(featureEndList)):
<div>    feature_end = int(ELdf.iloc[z][1])</div>
<div>    feature_start = int(SLdf.iloc[z][1])</div>
<div>    feature_strand = Seqfile.features[z].location.strand</div>
<div>    Seqfile.features[z].location = FeatureLocation(feature_start, feature_end,strand=feature_strand)</div>
<br>
<span style="background-color:rgb(255, 255, 255);display:inline !important">CompareAfter = Seqfile.features</span><br>
</div>
<div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
list = []
<div>for x in range(0,len(CompareAfter)):</div>
<div>    if CompareBefore[x] != CompareAfter[x]:</div>
        list.append(x)<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
I get 0 hits in this list.</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Please help <span id="🙂">🙂 thank you</span></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
</div>
</body>
</html>