nathanieljevans / cyclicIF_registration

Registration pipeline for cyclic immuno-fluorescence.
MIT License
0 stars 0 forks source link

R0 results not included in `aggregated_results.csv` #7

Closed nathanieljevans closed 4 years ago

nathanieljevans commented 4 years ago

image

nathanieljevans commented 4 years ago

It was included, but we were filtering it with the step...

# select only registered results -- keep R0 unregistered as this is the aligned reference 
res = res[(res.status == 'registered') | (res.round== 'R0')]

chainging res.round -> res['round'] fixed it.