Silvia Marcato

View Profile

Inhibited subset of KCs in switch mode/yaw torque paradigm

on Friday, May 5th, 2023 3:52

MB417B -> α’/β’ap, α’/β’m, α/βs, α/βp
MB463B -> α’/β’ap
MB371B -> α/βp

Flight Duration

on Monday, January 30th, 2023 12:40
21/12/2022
TntG expression
30/01/2023
TntE expression

Three Groups Example

on Monday, November 7th, 2022 12:06

Pseudocode of the statical analysis with three groups according to the group descriptions.

# If n. of groups = 3 and n. of unique descriptions = 2, then perform
# the statistical analysis between singleton and each doubleton group.
# Else if n. of groups = 3 and descriptions are all identical/different,
# then perform the statistical analysis between each one of them.
if (NofGroups==3 & length(unique(groupdescriptions))==2) {
    statistical_analysis(singleton, doubleton_1)
    statistical_analysis(singleton, doubleton_2)
    plot_results
} else {
    statistical_analysis(group_1, group_2)
    statistical_analysis(group_1, group_3)
    statistical_analysis(group_2, group_3)
    plot_results
}
Example of a graph with two unique descriptions. Data: wtb (control), mut_1 (experimental), mut_2 (experimental).
Example of a graph with two unique descriptions. Data in a different order to show graph flexibility: mut_1 (experimental),
wtb (control), mut_2 (experimental)
Example of a graph with three different descriptions. Data: wtb (control), mut_1 (experimental_1), mut_2 (experimental_2).
Category: R code | No Comments

Three groups issue

on Monday, September 19th, 2022 1:00

if(NofGroups == 3 & length(unique(groupdescriptions))==2){
  
  doubleton <- list()
  singleton <- list()
  
  if (groupdescriptions[1] == groupdescriptions[2]) {
     doubleton = c(unique(groupdescriptions[1], groupdescriptions[2]), 
                   groupnames[1], groupnames[2])
     singleton = c(groupdescriptions[3], groupnames[3])
  }  else if (groupdescriptions[2] == groupdescriptions[3]) {
     doubleton = c(unique(groupdescriptions[2], groupdescriptions[3]), 
                   groupnames[2], groupnames[3])
     singleton = c(groupdescriptions[1], groupnames[1])
  }  else {
     doubleton = c(unique(groupdescriptions[1], groupdescriptions[3]),  
                   groupnames[1], groupnames[3])
     singleton = c(groupdescriptions[2], groupnames[2])
  }
}

Given three descriptions, splits them into three variables. Two out of three of these are the same while the other is not: the single set to be compared to the two “identical” sets is emplaced in the singleton list while the other two sets are emplaced in the doubleton list.

Category: R code | No Comments

WTB sw

on Monday, September 12th, 2022 9:56
Category: flight | No Comments

Lines Verification

on

MB371B

MB417B

MB463B

MB063B

MB194B