Overview
Inflammatory Bowel Disease ( IBD ) is a chronic non-specific intestinal inflammatory disease, and its pathogenesis has not been fully elucidated. Interleukin-18 ( IL-18 ) is a potent pro-inflammatory cytokine belonging to the IL-1 family, which can effectively stimulate the production of interferon ( IFN ) -γ. IL-18 binds to its receptor on target cells and ultimately activates the nuclear factor ( NF ) -κB signaling pathway ( Figure 1), up-regulating the expression of various inflammatory cytokines and causing a variety of inflammatory diseases. The purpose of this study is to prepare a high-yield and active recombinant IL-18BP-Fc protein by using a low-cost, short-cycle and high-yield prokaryotic expression system, and to use the recombinant IL-18BP-Fc protein to neutralize IL-18 to inhibit its mediated IBD disease.

Figure. 1 : IL18 signaling pathway map
Modeling is very important for our project. The purpose of our modeling is to detect whether the biological activity of recombinant IL-18BP-Fc protein is affected under different temperature preservation, so as to analyze the stability of IL-18BP-Fc protein and its therapeutic effect on IBD.
1.IL-18BPa-Fc
1.1Raw data:
The ability of IL-18BPa-Fc protein to inhibit the production of IFN-γ in vitro was detected by cell experiments. The recombinant IL-18BPa-Fc protein was placed at-80 °C, -20 °C, 4 °C and 37 °C for 48 h, and the concentration of IFN-γ was detected at 0,0.5,1,1.5 and 2 μg / mL of recombinant IL-18BPa-Fc protein. The specific data are shown in the following table 1.
Table 1 : At different temperatures, IL-18BPa-Fc protein inhibits the ability of cells to produce IFN-γ
Condition 0 0.5 1 1.5 2
-80℃ 292.00001 235.4167 178.8333 103.8333 15.5
288.66667 232.4167 176.1667 101.5 13.33335
292.00001 235.4167 178.8333 103.8333 15.5
-20℃ 280.66668 245.25 209.8333 142.8333 58.33334
278.00002 242.3333 206.6667 140 55.66668
280.66668 245.25 209.8333 142.8333 58.33334
4℃ 281.33331 264.6667 248 176.8334 105.3333
277.83333 261.25 244.6667 174.1666 103.6667
281.33331 264.6667 248 176.8334 105.3333
37℃ 280.83333 261.9167 243 238.3333 219.1667
277.00001 258.0833 239.1667 235.3333 215.6667
280.83333 261.9167 243 238.3333 219.1667
1.2 Data statistical analysis and output results :
Analysis steps :
A.Test the normality test of the variables separately to see whether the overall distribution of the data presents a normal distribution. If the test is passed, it is recommended to use analysis of variance.
B. View the Friedman test table, if it is significant, you can view the median to analyze the difference, otherwise it shows no difference.
C. If the Friedman test is significant, the difference can also be quantitatively analyzed by effect quantitative analysis.
Output result 1 : Normality test result
Table 2 shows the results of descriptive statistics and normality test of quantitative variables-80, -20,4,37, including mean, standard deviation, etc., to test the normality of the data.
There are two test methods for normal distribution. One is Shapiro-Wilk test, which is suitable for small sample data ( sample size ≤ 5000 ). The other is Kolmogorov-Smirnov test, which is suitable for large sample data ( sample size > 5000 ).
If it is significant ( P < 0.05 ), it indicates that the original hypothesis is rejected ( the data conforms to the normal distribution ), and the data does not satisfy the normal distribution.
PS : If the distribution is normal, analysis of variance is generally used.
Table 2 : Normality Test Results of IL-18BPa-Fc
Variable Sample Size Mean Value Standard Deviation Bias Angle Kurtosis S-W Test K-S Test
-80 5 164.217 108.668 -0.385 -0.878 0.981(0.938) 0.15(0.999)
-20 5 186.433 88.29 -0.736 -0.427 0.954(0.767) 0.2(0.962)
4 5 214.261 72.956 -0.996 -0.423 0.891(0.361) 0.273(0.768)
37 5 247.45 23.49 0.277 -0.378 0.981(0.941) 0.196(0.968)
Note:***、**、*Represent 1 %, 5 %, 10 % significance level respectively.
Analysis items : -80 samples N < 5000, using S-W test, the significant P value is 0.938, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Analysis item : -20 sample N < 5000, using S-W test, the significant P value is 0.767, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Analysis items : 4 samples N < 5000, using S-W test, the significant P value is 0.361, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Analysis items : 37 samples N < 5000, using S-W test, the significant P value is 0.941, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Output result 2 : Normality test histogram

Figure 2 : Normality test histogram A.Represents the normal distribution results after-80 processing ; B Represents the normal distribution results after-20 processing; C.Represents the normal distribution results after4 processing; D.Represents the normal distribution results after37processing
Figure 2 A, B, C and D show the results of data normality test. If the normal diagram basically presents a bell shape ( high in the middle and low at both ends ), it shows that the data is not absolutely normal, but it can be basically accepted as normal distribution.
1.3 Modeling process
Using the least squares method, the above data are used to establish a double exponential model.
y=ebx+cedx

Substitute the data fitting parameter values.
The code is as follows :
clear;clc;
IL18_Bpa0=[0 0.5 1 1.5 2];
INF_80=[290.8888967 234.4167 177.9444333 103.0555333 14.77778333];
INF_20=[279.7777933 244.2777667 208.7777667 141.8888667 57.44445333];
INF_4=[280.16665 263.5278 246.8889 175.9444667 104.7777667];
INF_37=[279.5555567 260.6389 241.7222333 237.3333 218.0000333];
%IL18-BpaThe protein concentration of -80 °C fitting curve
[xData1, yData1] = prepareCurveData( IL18_Bpa0, INF_80 );
ft1 = fittype( 'exp2' );
opts1 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts1.Display = 'Off';
opts1.StartPoint = [-1.85313921668156 2.09854544524619 287.544325859466 -0.386560461190012];
[fitresult1, gof] = fit( xData1, yData1, ft1, opts1 );
figure(1)
h1=plot( fitresult1);
h1.LineWidth = 1.2;
hold on
plot(xData1, yData1,'*','LineWidth',1.2)
hold off
%IL18-BpaThe protein concentration of -20 °C fitting curve
[xData2, yData2] = prepareCurveData( IL18_Bpa0, INF_20 );
ft2 = fittype( 'exp2' );
opts2 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts2.Display = 'Off';
opts2.StartPoint = [-0.0245240690225558 4.1820200732454 271.416423067439 -0.266277951220617];
[fitresult2, gof] = fit( xData2, yData2, ft2, opts2 );
figure(2)
h1=plot( fitresult2);
h1.LineWidth = 1.2;
hold on
plot(xData2, yData2,'*','LineWidth',1.2)
hold off
%IL18-BpaThe protein concentration of 4 °C fitting curve
[xData3, yData3] = prepareCurveData( IL18_Bpa0, INF_4 );
ft3 = fittype( 'exp2' );
opts3 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts3.Display = 'Off';
opts3.StartPoint = [-1.06229569819979e-05 8.05114419302709 266.363796361016 -0.12231529921971];
[fitresult3, gof] = fit( xData3, yData3, ft3, opts3 );
figure(3)
h3=plot( fitresult3);
h3.LineWidth = 1.2;
hold on
plot(xData3, yData3,'*','LineWidth',1.2)
hold off
%IL18-BpaThe protein concentration of -37°C fitting curve
[xData4, yData4] = prepareCurveData( IL18_Bpa0, INF_37 );
ft4 = fittype( 'exp2' );
opts4 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts4.Display = 'Off';
opts4.StartPoint = [281.680048926518 -0.141006355765894 0.000569038951961272 4.66066438932426];
[fitresult4, gof] = fit( xData4, yData4, ft4, opts4 );
figure(4)
h4=plot( fitresult4);
h4.LineWidth = 1.2;
hold on
plot(xData4, yData4,'*','LineWidth',1.2)
hold off
%The results of the four temperatures are compared.
figure(5)
h1=plot( fitresult1,'r');
h1.LineWidth = 1.2;
hold on
h2=plot( fitresult2,'b');
h2.LineWidth = 1.2;
h3=plot( fitresult3,'g');
h3.LineWidth = 1.2;
h4=plot( fitresult4,'k');
h4.LineWidth = 1.2;
grid on
hold off

1.4 Modeling results

Figure.3.Comparison of protein activity IL18-Bpa at different temperatures
According to the results of Figure.3, the data of IFN-γ showed a decreasing trend under four different temperature environments. It can be seen from the control diagram that the lower the temperature, the faster the rate of decline. Low temperature ( -80 °C and-20 °C ) did not affect the activity of protein IL18-Bpa, and did not affect the inhibition of IFN-γ, but 4 °C and 37 °C affected the activity of protein IIL18-Bpa, but also inhibited IFN-γ. It shows that after 48 in the follow-up treatment process, the drug can be used again to improve the treatment effect.
2.IL-18BPc-Fc
2.1Raw data:
The ability of IL-18BPc-Fc protein to inhibit the production of IFN-γ in vitro was detected by cell experiments. The recombinant IL-18BPc-Fc protein was placed at-80 °C, -20 °C, 4 °C and 37 °C for 48 h, and the concentration of IFN-γ was detected at 0,0.5,1,1.5 and 2 μg / mL of recombinant IL-18BPc-Fc protein. The specific data are shown in Table 3 below.
Table 3 : At different temperatures, IL-18BPc-Fc protein inhibits the ability of cells to produce IFN-γ
IL18-BPc-Fc 0 0.5 1 1.5 2
-80℃ 282.6667 230.5 178.3334 106.6667 11.50001
279 226.6667 174.3333 107.1667 9.166658
282.6667 230.5 178.3334 106.6667 11.50001
-20℃ 274.6667 244.4167 214.1667 140.1667 59.66667
271 241 211 136.5 57.00001
274.6667 244.4167 214.1667 140.1667 59.66667
4℃ 291.6667 255.9167 220.1667 143 58.50001
289 252.8333 216.6666 140.6667 55.66668
291.6667 255.9167 220.1667 143 58.50001
37℃ 281.5 266.5 251.5 219.5 189.6667
277 262.4167 247.8333 215.6667 186.5
281.5 266.5 251.5 219.5 189.6667
2.2 Data statistical analysis and output results :
Analysis steps :
A.Test the normality test of the variables separately to see whether the overall distribution of the data presents a normal distribution. If the test is passed, it is recommended to use analysis of variance.
B. View the Friedman test table, if it is significant, you can view the median to analyze the difference, otherwise it shows no difference.
C. If the Friedman test is significant, the difference can also be quantitatively analyzed by effect quantitative analysis.
Output result 1 : Normality test result
Table 4 shows the results of descriptive statistics and normality test of quantitative variables-80, -20,4,37, including mean, standard deviation, etc., to test the normality of the data.
There are two test methods for normal distribution. One is Shapiro-Wilk test, which is suitable for small sample data ( sample size ≤ 5000 ). The other is Kolmogorov-Smirnov test, which is suitable for large sample data ( sample size > 5000 ).
If it is significant ( P < 0.05 ), it indicates that the original hypothesis is rejected ( the data conforms to the normal distribution ), and the data does not satisfy the normal distribution.
PS : If the distribution is normal, analysis of variance is generally used.
Output Result 1 : Normality Test Results
Table 4. Normality Test Results
variable sample size mean value standard deviation bias angle kurtosis S-W test K-S test
-80 5 161.044 105.989 -0.521 -0.561 0.977(0.915) 0.16(0.997)
-20 5 185.511 86.69 -0.795 -0.604 0.937(0.647) 0.225(0.913)
4 5 192.889 93.528 -0.72 -0.664 0.949(0.728) 0.21(0.945)
37 5 240.45 36.918 -0.6 -1.073 0.953(0.756) 0.205(0.954)
Note:***、**、*Represent 1 %, 5 %, 10 % significance level respectively.
Analysis items : -80 samples N < 5000, using S-W test, the significant P value is 0.915, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Analysis item : -20 sample N < 5000, using S-W test, the significant P value is 0.647, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Analysis items : 4 samples N < 5000, using S-W test, the significant P value is 0.728, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Analysis items : 37 samples N < 5000, using S-W test, the significant P value is 0.756, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Output result 2 : Normality test histogram

Figure 4 : Normality test histogram A.Represents the normal distribution result after-80 degree processing ; B, normal distribution results after -20 degree treatment ; C, the normal distribution results after 4 degree treatment ; D, normal distribution results after 37 degree treatment
Figure 4A, B, C and D show the results of data normality test. If the normal diagram basically presents a bell shape ( high in the middle and low at both ends ), it shows that the data is not absolutely normal, but it can be basically accepted as normal distribution.
2.3 Modeling process
Still use the double exponential model using the least square method:
y=ebx+cedx

Substitute the data fitting parameter values.
clear;clc;
IL18_BPc_Fc0=[0 0.5 1 1.5 2];
INF_80=[281.4444667 229.2222333 177.0000333 106.8333667 10.722226];
INF_20=[273.4444667 243.2778 213.1111333 138.9444667 58.77778333];
INF_4=[290.7778 254.8889 219 142.2222333 57.55556667];
INF_37=[280 265.1389 250.2777667 218.2222333 188.6111333];
%IL18-BPc-FcThe protein concentration of -80 °C fitting curve
[xData1, yData1] = prepareCurveData( IL18_BPc_Fc0, INF_80 );
ft1 = fittype( 'exp2' );
opts1 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts1.Display = 'Off';
opts1.StartPoint = [-1.50501331209517 2.21173241411546 279.050534524858 -0.372547424477234];
[fitresult1, gof] = fit( xData1, yData1, ft1, opts1 );
figure(1)
h1=plot( fitresult1);
h1.LineWidth = 1.2;
hold on
plot(xData1, yData1,'*','LineWidth',1.2)
hold off
%IL18-BPc-FcThe protein concentration of -20 °C fitting curve
[xData2, yData2] = prepareCurveData(IL18_BPc_Fc0, INF_20 );
ft2 = fittype( 'exp2' );
opts2 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts2.Display = 'Off';
opts2.StartPoint = [-0.00257403271040611 5.32478062325234 261.795774758923 -0.231754568400623];
[fitresult2, gof] = fit( xData2, yData2, ft2, opts2 );
figure(2)
h1=plot( fitresult2);
h1.LineWidth = 1.2;
hold on
plot(xData2, yData2,'*','LineWidth',1.2)
hold off
%IL18-BPc-Fc The fitting curve of protein concentration of c at 4 °C was obtained.
[xData3, yData3] = prepareCurveData( IL18_BPc_Fc0, INF_4 );
ft3 = fittype( 'exp2' );
opts3 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts3.Display = 'Off';
opts3.StartPoint = [-0.00977436663134554 4.67450597545503 279.732289055241 -0.259798842211822];
[fitresult3, gof] = fit( xData3, yData3, ft3, opts3 );
figure(3)
h3=plot( fitresult3);
h3.LineWidth = 1.2;
hold on
plot(xData3, yData3,'*','LineWidth',1.2)
hold off
%IL18-BpaThe protein concentration of 37 °C fitting curve
[xData4, yData4] = prepareCurveData( IL18_BPc_Fc0, INF_37 );
ft4 = fittype( 'exp2' );
opts4 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts4.Display = 'Off';
opts4.StartPoint = [-0.000123117598347532 6.2580174622426 275.424944279632 -0.108799909414148];
[fitresult4, gof] = fit( xData4, yData4, ft4, opts4 );
figure(4)
h4=plot( fitresult4);
h4.LineWidth = 1.2;
hold on
plot(xData4, yData4,'*','LineWidth',1.2)
hold off
%The results at four temperatures are compared.
figure(5)
h1=plot( fitresult1,'r');
h1.LineWidth = 1.2;
hold on
h2=plot( fitresult2,'b');
h2.LineWidth = 1.2;
h3=plot( fitresult3,'g');
h3.LineWidth = 1.2;
h4=plot( fitresult4,'k');
h4.LineWidth = 1.2;
grid on
hold off


Figure.5 Comparison of protein activity of IL18-BPc-Fc at different temperatures
According to the results of Figure.5, the data of IFN-γ showed a decreasing trend under four different temperature environments. It can be seen from the control diagram that the lower the temperature, the faster the rate of decline. Low temperature ( -80 °C and-20 °C ) did not affect the activity of protein IL18-BPc-Fc , and did not affect the inhibition of IFN-γ, but 4 °C and 37 °C affected the activity of protein IL18-BPc-Fc , but also inhibited IFN-γ. It shows that after 48 in the follow-up treatment process, the drug can be used again to improve the treatment effect.
3.IL-10-Fc
3.1Raw data:
The ability of IL-10-Fc protein to inhibit the production of IFN-γ in vitro was detected by cell experiments. The recombinant IL-10-Fc protein was placed at-80 °C, -20 °C, 4 °C and 37 °C for 48 h, and the concentration of IFN-γ was detected at 0,0.5,1,1.5 and 2 μg / mL of recombinant IL-10-Fc protein. The specific data are shown in Table 5.
Table 5 : At different temperatures, IL-10-Fc protein inhibits the ability of cells to produce IFN-γ
IL-10-Fc 0 0.5 1 1.5 2
-80℃ 288.8854 235.571 182.2567 109.0134 11.75301
285.138 231.6534 178.1686 109.5244 9.36824
288.8854 235.571 182.2567 109.0134 11.75301
-20℃ 280.7094 240.0172 210.3117 137.6437 58.59267
276.962 236.662 207.202 134.043 55.97401
280.7094 240.0172 210.3117 137.6437 58.59267
4℃ 298.0834 251.3102 216.2037 140.426 57.4407
295.358 248.2823 212.7666 138.1347 54.66468
298.0834 251.3102 216.2037 140.426 57.44701
37℃ 287.693 261.703 246.973 215.549 186.2527
283.094 257.6932 243.3723 211.7847 183.143
287.693 261.703 246.973 215.549 186.2527
3.2 Data statistical analysis and output results :
Analysis steps :
A.Test the normality test of the variables separately to see whether the overall distribution of the data presents a normal distribution. If the test is passed, it is recommended to use analysis of variance.
B. View the Friedman test table, if it is significant, you can view the median to analyze the difference, otherwise it shows no difference.
C. If the Friedman test is significant, the difference can also be quantitatively analyzed by effect quantitative analysis.
Output result 1 : Normality test result
Table 6 shows the results of descriptive statistics and normality test of quantitative variables-80, -20,4,37, including mean, standard deviation, etc., to test the normality of the data.
There are two test methods for normal distribution. One is Shapiro-Wilk test, which is suitable for small sample data ( sample size ≤ 5000 ). The other is Kolmogorov-Smirnov test, which is suitable for large sample data ( sample size > 5000 ).
If it is significant ( P < 0.05 ), it indicates that the original hypothesis is rejected ( the data conforms to the normal distribution ), and the data does not satisfy the normal distribution.
PS : If the distribution is normal, analysis of variance is generally used.
Table 6. Normality test results
variable sample size mean value standard deviation bias angle kurtosis S-W test K-S test
-80 5 164.587 108.321 -0.521 -0.56 0.977(0.915) 0.16(0.997)
-20 5 184.359 87.996 -0.675 -0.63 0.956(0.782) 0.211(0.942)
4 5 191.743 94.983 -0.597 -0.669 0.965(0.845) 0.197(0.967)
37 5 238.362 39.457 -0.297 -0.899 0.982(0.946) 0.174(0.991)
Note:***、**、*Represent 1 %, 5 %, 10 % significance level respectively.
Analysis items : -80 samples N < 5000, using S-W test, the significant P value is 0.915, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Analysis item : -20 sample N < 5000, using S-W test, the significant P value is 0.782, the level is not significant, the original hypothesis can not be rejected, so the data meet the normal distribution, it is recommended to use variance analysis.
Analysis items : 4 samples N < 5000, using S-W test, the significant P value is 0.845, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Analysis items : 37 samples N < 5000, using S-W test, the significant P value is 0.946, the level does not show significant, can not reject the original hypothesis, so the data meet the normal distribution, it is recommended to use variance analysis.
Output result 2 : Normality test histogram

Figure 6 : Normality test histogram A represents the normal distribution results after-80 processing ; b represents the normal distribution results after -20 processing ; c represents the normal distribution results after 4 treatments ; d represents the normal distribution result after 37 degrees processing.
Figure 6 A.B.C.D shows the results of data normality test. If the normal diagram basically presents a bell shape ( high in the middle and low at both ends ), it shows that it basically conforms to the normal distribution.
3.3 Modeling process
Still use the double exponential model using the least square method:
y=ebx+cedx

Substitute the data fitting parameter values.
clear;clc;
IL_10_Fc=[0 0.5 1 1.5 2];
INF_80=[287.6362667 234.2651333 180.894 109.1837333 10.95808667];
INF_20=[279.4602667 238.8988 209.2751333 136.4434667 57.71978333];
INF_4=[297.1749333 250.3009 215.058 139.6622333 56.51746333];
INF_37=[286.16 260.3664 245.7727667 214.2942333 185.2161333];
%IL-10-FcThe protein concentration of -80 °C fitting curve
[xData1, yData1] = prepareCurveData( IL_10_Fc, INF_80 );
ft1 = fittype( 'exp2' );
opts1 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts1.Display = 'Off';
opts1.StartPoint = [-1.53816883562104 2.21171837164724 285.189775425131 -0.372546982107642];
[fitresult1, gof] = fit( xData1, yData1, ft1, opts1 );
figure(1)
h1=plot( fitresult1);
h1.LineWidth = 1.2;
hold on
plot(xData1, yData1,'*','LineWidth',1.2)
hold off
%IL-10-FcThe protein concentration of -20 °C fitting curve
[xData2, yData2] = prepareCurveData(IL_10_Fc, INF_20 );
ft2 = fittype( 'exp2' );
opts2 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts2.Display = 'Off';
opts2.StartPoint = [-0.0126031026239902 4.45204324401564 274.454178874356 -0.309465522307718];
[fitresult2, gof] = fit( xData2, yData2, ft2, opts2 );
figure(2)
h1=plot( fitresult2);
h1.LineWidth = 1.2;
hold on
plot(xData2, yData2,'*','LineWidth',1.2)
hold off
%IL-10-FcThe protein concentration of 4 °C fitting curve
[xData3, yData3] = prepareCurveData( IL_10_Fc, INF_4 );
ft3 = fittype( 'exp2' );
opts3 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts3.Display = 'Off';
opts3.StartPoint = [-0.00733279197850969 4.72749617080512 291.829620034807 -0.340365241611098];
[fitresult3, gof] = fit( xData3, yData3, ft3, opts3 );
figure(3)
h3=plot( fitresult3);
h3.LineWidth = 1.2;
hold on
plot(xData3, yData3,'*','LineWidth',1.2)
hold off
%IL-10-FcThe protein concentration of 37 °C fitting curve
[xData4, yData4] = prepareCurveData( IL_10_Fc, INF_37 );
ft4 = fittype( 'exp2' );
opts4 = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts4.Display = 'Off';
opts4.StartPoint = [-1.42868997398366 1.35745345711138 289.152428728236 -0.165400155791915];
[fitresult4, gof] = fit( xData4, yData4, ft4, opts4 );
figure(4)
h4=plot( fitresult4);
h4.LineWidth = 1.2;
hold on
plot(xData4, yData4,'*','LineWidth',1.2)
hold off
%The results at four temperatures are compared.
figure(5)
h1=plot( fitresult1,'r');
h1.LineWidth = 1.2;
hold on
h2=plot( fitresult2,'b');
h2.LineWidth = 1.2;
h3=plot( fitresult3,'g');
h3.LineWidth = 1.2;
h4=plot( fitresult4,'k');
h4.LineWidth = 1.2;
grid on
hold off

Figure 7 . At different temperatures, IL-10-Fc protein inhibits the ability of cells to produce IFN-γ
According to the results of Figure. 7, the data of IFN-γ showed a decreasing trend under four different temperature environments. It can be seen from the control diagram that the lower the temperature, the faster the rate of decline. Low temperature (-80 °C and-20 °C) did not affect the activity of protein IL-10-Fc , and did not affect the inhibition of IFN-γ, but 4 °C and 37 °C affected the activity of protein IL-10-Fc , but also inhibited IFN-γ. It shows that after 48 in the follow-up treatment process, the drug can be used again to improve the treatment effect.
Summary
We first performed a T-test on all data, and the results showed a normal distribution, indicating that the data was credible ; according to the fitting results, the data of IFN-γ showed a decreasing trend under four different temperature environments. It can be seen from the control diagram that the lower the temperature. The faster the rate of decline. Low temperature ( -80C and-20 degree) did not affect the activity of protein IL-18-BPa, IL-18-BPc, and IL-10-Fc, and did not affect the inhibition of IFN-γ, but 4 and 37 degree affected the activity of protein IL-18-BPa, IL-18-BPc, and IL-10-Fc, but also inhibited IFN-γ. It shows that after 48 in the follow-up treatment process. The drug can be used again to improve the treatment effect. The modeling results can provide data support for the treatment of IBD.
Reference
      [1] Scientific Platform Serving for Statistics Professional 2021. SPSSPRO. (Version 1.0.11)[Online Application Software]. Retrieved from https://www.spsspro.com.
      [ 2 ] Cheng Xiaoliang. Nonparametric statistical analysis of economic data in Anshan area [ J ].Journal of Anshan Normal University, 2017,19 ( 04 ) : 6-8.