konkous ☆ Greece, 2012-06-26 13:21 (4740 d 08:56 ago) Posting: # 8849 Views: 6,617 |
|
Dear forum members I need to write an SOP regarding codification of samples, blinding and unblinding during the conduct of a BE study (clinical and analytical phase). Could anyone propose or highlight any specific guideline or other resource i should have in mind? Does anyone know whether MS Office Xcel has a random number generation function? Thank you Constantinos |
ElMaestro ★★★ Denmark, 2012-06-26 18:22 (4740 d 03:55 ago) @ konkous Posting: # 8851 Views: 5,257 |
|
Hi konkous, ❝ Does anyone know whether MS Office Xcel has a random number generation function? The function is called rand() . Returns a real between 0 and 1.— Pass or fail! ElMaestro |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2012-06-27 03:04 (4739 d 19:12 ago) @ konkous Posting: # 8852 Views: 5,381 |
|
Hi Constantinos! ❝ I need to write an SOP regarding codification of samples, blinding and unblinding during the conduct of a BE study (clinical and analytical phase). Could anyone propose or highlight any specific guideline or other resource i should have in mind? If you are with a full-service CRO it’s most important that the randomization cannot leak from the clinical to the analytical department. Labels of the sample vials should contain at least the following information: study code, subject ID, period, scheduled sampling time. Deliver the final analytical report to the biostatistician. If you send data in electronic form, make sure that the integrity of data can be assessed (e.g., a MD5 check sum). Avoid proprietary formats (like XLS); use CSV instead.* The statistician should officially request the randomization from the PI. I use to estimate the elimination still blind for treatment and join the randomization with NCA’s results afterwards. ❝ Does anyone know whether MS Office Xcel has a random number generation function? ElMaestro already gave RAND() above. More comfortable functions are available in M$-Excel’s Analysis ToolPak add-in (part of M$-Office – but not installed by default).A simple randomization would use CHAR(RANDBETWEEN(65,66)) in cell A1 . In cell B1 write =IF(A1='A','B','A') . Drag these two cells down to the number of subjects getting a two column list. You have to check whether the list is balanced (equal numbers of A s and B s). In cell C1 write =IF(COUNT(A:A)/COUNTIF(A:A,'A')=2,'balanced','imbalanced!') . Hit until you get a balanced list.For a better method see this example. Again, check whether the list is balanced (I suggest to use 1 000 000 in the code). Example of a 3-period 6-sequence Williams’ design: Subj. Seq. Rand. Validating Excel-sheets is a nightmare. Play around with the random-functions first, and then write a macro – or better – a VBA-script.
— Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
konkous ☆ Greece, 2012-06-27 08:32 (4739 d 13:45 ago) @ Helmut Posting: # 8853 Views: 5,109 |
|
Thank you very much, you've been extremely helpful. I still wonder if i could employ any of the free random number generators available on the internet. Would that be acceptable? I suppose i should be able to validate that as well. Who should be the person responsible for performing the randomization and blinding during a BE? I guess not someone directly involved in the clinical or analytical part of the study. Could this person be the Principal Investigator? Thank you Constantinos |
ElMaestro ★★★ Denmark, 2012-06-27 19:29 (4739 d 02:48 ago) @ konkous Posting: # 8857 Views: 5,151 |
|
Hi konkous, ❝ Thank you very much, you've been extremely helpful. I still wonder if i could employ any of the free random number generators available on the internet. You can try a free sequence randomiser via this link. — Pass or fail! ElMaestro |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2012-06-29 16:28 (4737 d 05:48 ago) @ konkous Posting: # 8874 Views: 5,052 |
|
Hi Constantinos! ❝ Who should be the person responsible for performing the randomization and blinding during a BE? I guess not someone directly involved in the clinical or analytical part of the study. Ideally the sponsor. ❝ Could this person be the Principal Investigator? Yes – although I would not call the PI “not […] directly involved in the clinical […] part of the study”. ![]() Regardless BE studies generally are open label, some regulators prefer the AE-monitoring performed blinded for treatment. If you don’t have ‘spare’ sub-investigators this requirement is difficult to fulfill. In the CRO I was with we had a system where the PI wrote the protocol based on macro-assisted templates; the randomization, printing of tear-off labels of the IPs, bar-coded sample labels, and mapping of the entire study in a LIMS was performed in the background. Was quite a job to validate this stuff and pass GLP-certification and GMP/GCP-inspections. Wouldn’t recommend it to anybody lacking a lot of stamina. — Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |