thesis.lyx 165 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319
  1. #LyX 2.3 created this file. For more info see http://www.lyx.org/
  2. \lyxformat 544
  3. \begin_document
  4. \begin_header
  5. \save_transient_properties true
  6. \origin unavailable
  7. \textclass extbook
  8. \begin_preamble
  9. % List all used files in log output
  10. \listfiles
  11. % Add a DRAFT watermark
  12. \usepackage{draftwatermark}
  13. \SetWatermarkLightness{0.97}
  14. \SetWatermarkScale{1}
  15. % Set up required header format
  16. \usepackage{fancyhdr}
  17. \pagestyle{fancy}
  18. \renewcommand{\headrulewidth}{0pt}
  19. \rhead{}
  20. \lhead{}
  21. \rfoot{}
  22. \lfoot{}
  23. \cfoot{\thepage} % Page number bottom center
  24. % https://tex.stackexchange.com/questions/65680/automatically-bold-first-sentence-of-a-floats-caption
  25. \usepackage{xstring}
  26. \usepackage{etoolbox}
  27. \usepackage{caption}
  28. \captionsetup{labelfont=bf,tableposition=top}
  29. \makeatletter
  30. \newcommand\formatlabel[1]{%
  31. \noexpandarg
  32. \IfSubStr{#1}{.}{%
  33. \StrBefore{#1}{.}[\firstcaption]%
  34. \StrBehind{#1}{.}[\secondcaption]%
  35. \textbf{\firstcaption.} \secondcaption}{%
  36. #1}%
  37. }
  38. \patchcmd{\@caption}{#3}{\formatlabel{#3}}
  39. \makeatother
  40. % Allow FloatBarrier command
  41. \usepackage{placeins}
  42. \end_preamble
  43. \use_default_options true
  44. \begin_modules
  45. todonotes
  46. \end_modules
  47. \maintain_unincluded_children false
  48. \language english
  49. \language_package default
  50. \inputencoding utf8
  51. \fontencoding default
  52. \font_roman "default" "default"
  53. \font_sans "default" "default"
  54. \font_typewriter "default" "default"
  55. \font_math "auto" "auto"
  56. \font_default_family default
  57. \use_non_tex_fonts false
  58. \font_sc false
  59. \font_osf false
  60. \font_sf_scale 100 100
  61. \font_tt_scale 100 100
  62. \use_microtype false
  63. \use_dash_ligatures true
  64. \graphics default
  65. \default_output_format pdf4
  66. \output_sync 0
  67. \bibtex_command default
  68. \index_command default
  69. \paperfontsize 12
  70. \spacing double
  71. \use_hyperref true
  72. \pdf_bookmarks true
  73. \pdf_bookmarksnumbered false
  74. \pdf_bookmarksopen false
  75. \pdf_bookmarksopenlevel 1
  76. \pdf_breaklinks false
  77. \pdf_pdfborder false
  78. \pdf_colorlinks false
  79. \pdf_backref false
  80. \pdf_pdfusetitle true
  81. \papersize letterpaper
  82. \use_geometry true
  83. \use_package amsmath 1
  84. \use_package amssymb 1
  85. \use_package cancel 1
  86. \use_package esint 1
  87. \use_package mathdots 1
  88. \use_package mathtools 1
  89. \use_package mhchem 1
  90. \use_package stackrel 1
  91. \use_package stmaryrd 1
  92. \use_package undertilde 1
  93. \cite_engine basic
  94. \cite_engine_type default
  95. \biblio_style plain
  96. \use_bibtopic false
  97. \use_indices false
  98. \paperorientation portrait
  99. \suppress_date false
  100. \justification true
  101. \use_refstyle 1
  102. \use_minted 0
  103. \index Index
  104. \shortcut idx
  105. \color #008000
  106. \end_index
  107. \leftmargin 1.5in
  108. \topmargin 1in
  109. \rightmargin 1in
  110. \bottommargin 1in
  111. \secnumdepth 3
  112. \tocdepth 3
  113. \paragraph_separation indent
  114. \paragraph_indentation default
  115. \is_math_indent 0
  116. \math_numbering_side default
  117. \quotes_style english
  118. \dynamic_quotes 0
  119. \papercolumns 1
  120. \papersides 2
  121. \paperpagestyle default
  122. \tracking_changes false
  123. \output_changes false
  124. \html_math_output 0
  125. \html_css_as_file 0
  126. \html_be_strict false
  127. \end_header
  128. \begin_body
  129. \begin_layout Title
  130. Bioinformatic analysis of complex, high-throughput genomic and epigenomic
  131. data in the context of immunology and transplant rejection
  132. \end_layout
  133. \begin_layout Author
  134. A thesis presented
  135. \begin_inset Newline newline
  136. \end_inset
  137. by
  138. \begin_inset Newline newline
  139. \end_inset
  140. Ryan C.
  141. Thompson
  142. \begin_inset Newline newline
  143. \end_inset
  144. to
  145. \begin_inset Newline newline
  146. \end_inset
  147. The Scripps Research Institute Graduate Program
  148. \begin_inset Newline newline
  149. \end_inset
  150. in partial fulfillment of the requirements for the degree of
  151. \begin_inset Newline newline
  152. \end_inset
  153. Doctor of Philosophy in the subject of Biology
  154. \begin_inset Newline newline
  155. \end_inset
  156. for
  157. \begin_inset Newline newline
  158. \end_inset
  159. The Scripps Research Institute
  160. \begin_inset Newline newline
  161. \end_inset
  162. La Jolla, California
  163. \end_layout
  164. \begin_layout Date
  165. May 2019
  166. \end_layout
  167. \begin_layout Standard
  168. [Copyright notice]
  169. \end_layout
  170. \begin_layout Standard
  171. [Thesis acceptance form]
  172. \end_layout
  173. \begin_layout Standard
  174. [Dedication]
  175. \end_layout
  176. \begin_layout Standard
  177. [Acknowledgements]
  178. \end_layout
  179. \begin_layout Standard
  180. \begin_inset CommandInset toc
  181. LatexCommand tableofcontents
  182. \end_inset
  183. \end_layout
  184. \begin_layout Standard
  185. \begin_inset FloatList table
  186. \end_inset
  187. \end_layout
  188. \begin_layout Standard
  189. \begin_inset FloatList figure
  190. \end_inset
  191. \end_layout
  192. \begin_layout Standard
  193. [List of Abbreviations]
  194. \end_layout
  195. \begin_layout Standard
  196. \begin_inset Flex TODO Note (inline)
  197. status open
  198. \begin_layout Plain Layout
  199. Look into auto-generated nomenclature list: https://wiki.lyx.org/Tips/Nomenclature
  200. \end_layout
  201. \end_inset
  202. \end_layout
  203. \begin_layout List of TODOs
  204. \end_layout
  205. \begin_layout Standard
  206. [Abstract]
  207. \end_layout
  208. \begin_layout Chapter*
  209. Abstract
  210. \end_layout
  211. \begin_layout Chapter
  212. Introduction
  213. \end_layout
  214. \begin_layout Section
  215. Background & Significance
  216. \end_layout
  217. \begin_layout Subsection
  218. Biological motivation
  219. \end_layout
  220. \begin_layout Itemize
  221. Rejection is the major long-term threat to organ and tissue grafts
  222. \end_layout
  223. \begin_deeper
  224. \begin_layout Itemize
  225. Common mechanisms of rejection
  226. \end_layout
  227. \begin_layout Itemize
  228. Effective immune suppression requires monitoring for rejection and tuning
  229. \end_layout
  230. \begin_layout Itemize
  231. Current tests for rejection (tissue biopsy) are invasive and biased
  232. \end_layout
  233. \begin_layout Itemize
  234. A blood test based on microarrays would be less biased and invasive
  235. \end_layout
  236. \end_deeper
  237. \begin_layout Itemize
  238. Memory cells are resistant to immune suppression
  239. \end_layout
  240. \begin_deeper
  241. \begin_layout Itemize
  242. Mechanisms of resistance in memory cells are poorly understood
  243. \end_layout
  244. \begin_layout Itemize
  245. A better understanding of immune memory formation is needed
  246. \end_layout
  247. \end_deeper
  248. \begin_layout Itemize
  249. Mesenchymal stem cell infusion is a promising new treatment to prevent/delay
  250. rejection
  251. \end_layout
  252. \begin_deeper
  253. \begin_layout Itemize
  254. Demonstrated in mice, but not yet in primates
  255. \end_layout
  256. \begin_layout Itemize
  257. Mechanism currently unknown, but MSC are known to be immune modulatory
  258. \end_layout
  259. \end_deeper
  260. \begin_layout Subsection
  261. Overview of bioinformatic analysis methods
  262. \end_layout
  263. \begin_layout Standard
  264. An overview of all the methods used, including what problem they solve,
  265. what assumptions they make, and a basic description of how they work.
  266. \end_layout
  267. \begin_layout Itemize
  268. ChIP-seq Peak calling
  269. \end_layout
  270. \begin_deeper
  271. \begin_layout Itemize
  272. Cross-correlation analysis to determine fragment size
  273. \end_layout
  274. \begin_layout Itemize
  275. Broad vs narrow peaks
  276. \end_layout
  277. \begin_layout Itemize
  278. SICER for broad peaks
  279. \end_layout
  280. \begin_layout Itemize
  281. IDR for biologically reproducible peaks
  282. \end_layout
  283. \begin_layout Itemize
  284. csaw peak filtering guidelines for unbiased downstream analysis
  285. \end_layout
  286. \end_deeper
  287. \begin_layout Itemize
  288. Normalization is non-trivial and application-dependant
  289. \end_layout
  290. \begin_deeper
  291. \begin_layout Itemize
  292. Expression arrays: RMA & fRMA; why fRMA is needed
  293. \end_layout
  294. \begin_layout Itemize
  295. Methylation arrays: M-value transformation approximates normal data but
  296. induces heteroskedasticity
  297. \end_layout
  298. \begin_layout Itemize
  299. RNA-seq: normalize based on assumption that the average gene is not changing
  300. \end_layout
  301. \begin_layout Itemize
  302. ChIP-seq: complex with many considerations, dependent on experimental methods,
  303. biological system, and analysis goals
  304. \end_layout
  305. \end_deeper
  306. \begin_layout Itemize
  307. Limma: The standard linear modeling framework for genomics
  308. \end_layout
  309. \begin_deeper
  310. \begin_layout Itemize
  311. empirical Bayes variance modeling: limma's core feature
  312. \end_layout
  313. \begin_layout Itemize
  314. edgeR & DESeq2: Extend with negative bonomial GLM for RNA-seq and other
  315. count data
  316. \end_layout
  317. \begin_layout Itemize
  318. voom: Extend with precision weights to model mean-variance trend
  319. \end_layout
  320. \begin_layout Itemize
  321. arrayWeights and duplicateCorrelation to handle complex variance structures
  322. \end_layout
  323. \end_deeper
  324. \begin_layout Itemize
  325. sva and ComBat for batch correction
  326. \end_layout
  327. \begin_layout Itemize
  328. Factor analysis: PCA, MDS, MOFA
  329. \end_layout
  330. \begin_deeper
  331. \begin_layout Itemize
  332. Batch-corrected PCA is informative, but careful application is required
  333. to avoid bias
  334. \end_layout
  335. \end_deeper
  336. \begin_layout Itemize
  337. Gene set analysis: camera and SPIA
  338. \end_layout
  339. \begin_layout Section
  340. Innovation
  341. \end_layout
  342. \begin_layout Itemize
  343. MSC infusion to improve transplant outcomes (prevent/delay rejection)
  344. \end_layout
  345. \begin_deeper
  346. \begin_layout Itemize
  347. Characterize MSC response to interferon gamma
  348. \end_layout
  349. \begin_layout Itemize
  350. IFN-g is thought to stimulate their function
  351. \end_layout
  352. \begin_layout Itemize
  353. Test IFN-g treated MSC infusion as a therapy to delay graft rejection in
  354. cynomolgus monkeys
  355. \end_layout
  356. \begin_layout Itemize
  357. Monitor animals post-transplant using blood RNA-seq at serial time points
  358. \end_layout
  359. \end_deeper
  360. \begin_layout Itemize
  361. Investigate dynamics of histone marks in CD4 T-cell activation and memory
  362. \end_layout
  363. \begin_deeper
  364. \begin_layout Itemize
  365. Previous studies have looked at single snapshots of histone marks
  366. \end_layout
  367. \begin_layout Itemize
  368. Instead, look at changes in histone marks across activation and memory
  369. \end_layout
  370. \end_deeper
  371. \begin_layout Itemize
  372. High-throughput sequencing and microarray technologies
  373. \end_layout
  374. \begin_deeper
  375. \begin_layout Itemize
  376. Powerful methods for assaying gene expression and epigenetics across entire
  377. genomes
  378. \end_layout
  379. \begin_layout Itemize
  380. Proper analysis requires finding and exploiting systematic genome-wide trends
  381. \end_layout
  382. \end_deeper
  383. \begin_layout Chapter
  384. Reproducible genome-wide epigenetic analysis of H3K4 and H3K27 methylation
  385. in naive and memory CD4 T-cell activation
  386. \end_layout
  387. \begin_layout Standard
  388. \begin_inset Flex TODO Note (inline)
  389. status open
  390. \begin_layout Plain Layout
  391. Author list: Me, Sarah, Dan
  392. \end_layout
  393. \end_inset
  394. \end_layout
  395. \begin_layout Section
  396. Approach
  397. \end_layout
  398. \begin_layout Itemize
  399. CD4 T-cells are central to all adaptive immune responses and memory
  400. \end_layout
  401. \begin_layout Itemize
  402. H3K4 and H3K27 methylation are major epigenetic regulators of gene expression
  403. \end_layout
  404. \begin_layout Itemize
  405. Canonically, H3K4 is activating and H3K27 is inhibitory, but the reality
  406. is complex
  407. \end_layout
  408. \begin_layout Itemize
  409. Looking at these marks during CD4 activation and memory should reveal new
  410. mechanistic details
  411. \end_layout
  412. \begin_layout Itemize
  413. Test
  414. \begin_inset Quotes eld
  415. \end_inset
  416. poised promoter
  417. \begin_inset Quotes erd
  418. \end_inset
  419. hypothesis in which H3K4 and H3K27 are both methylated
  420. \end_layout
  421. \begin_layout Itemize
  422. Expand scope of analysis beyond simple promoter counts
  423. \end_layout
  424. \begin_deeper
  425. \begin_layout Itemize
  426. Analyze peaks genome-wide, including in intergenic regions
  427. \end_layout
  428. \begin_layout Itemize
  429. Analysis of coverage distribution shape within promoters, e.g.
  430. upstream vs downstream coverage
  431. \end_layout
  432. \end_deeper
  433. \begin_layout Section
  434. Methods
  435. \end_layout
  436. \begin_layout Standard
  437. \begin_inset Float figure
  438. wide false
  439. sideways true
  440. status open
  441. \begin_layout Plain Layout
  442. \align center
  443. \begin_inset Graphics
  444. filename graphics/CD4-csaw/rulegraphs/rulegraph-all.pdf
  445. width 100theight%
  446. \end_inset
  447. \end_layout
  448. \begin_layout Plain Layout
  449. \begin_inset Caption Standard
  450. \begin_layout Plain Layout
  451. \begin_inset CommandInset label
  452. LatexCommand label
  453. name "fig:rulegraph"
  454. \end_inset
  455. \series bold
  456. Dependency graph of steps in reproducible workflow
  457. \end_layout
  458. \end_inset
  459. \end_layout
  460. \end_inset
  461. \end_layout
  462. \begin_layout Standard
  463. A reproducible workflow
  464. \begin_inset CommandInset citation
  465. LatexCommand cite
  466. key "gh-cd4-csaw"
  467. literal "false"
  468. \end_inset
  469. was written to analyze the raw ChIP-seq and RNA-seq data from previous
  470. studies
  471. \begin_inset CommandInset citation
  472. LatexCommand cite
  473. key "LaMere2016,LaMere2017"
  474. literal "true"
  475. \end_inset
  476. .
  477. Briefly, this data consists of RNA-seq and ChIP-seq from CD4 T-cells cultured
  478. from 4 donors.
  479. From each donor, naive and memory CD4 T-cells were isolated separately.
  480. Then cultures of both cells were activated [how?], and samples were taken
  481. at 4 time points: Day 0 (pre-activation), Day 1 (early activation), Day
  482. 5 (peak activation), and Day 14 (post-activation).
  483. For each combination of cell type and time point, RNA was isolated, and
  484. ChIP-seq was performed for each of 3 histone marks: H3K4me2, H3K4me3, and
  485. H3K27me3.
  486. The ChIP-seq input was also sequenced for each sample.
  487. The result was 32 samples for each assay.
  488. \end_layout
  489. \begin_layout Standard
  490. Sequence reads were retrieved from the Sequence Read Archive (SRA)
  491. \begin_inset CommandInset citation
  492. LatexCommand cite
  493. key "Leinonen2011"
  494. literal "false"
  495. \end_inset
  496. .
  497. ChIP-seq (and input) reads were aligned to CRCh38 genome assembly using
  498. Bowtie 2
  499. \begin_inset CommandInset citation
  500. LatexCommand cite
  501. key "Langmead2012,Schneider2017,gh-hg38-ref"
  502. literal "false"
  503. \end_inset
  504. .
  505. Artifact regions were annotated using a custom implementation of the GreyListCh
  506. IP algorithm, and these
  507. \begin_inset Quotes eld
  508. \end_inset
  509. greylists
  510. \begin_inset Quotes erd
  511. \end_inset
  512. were merged with the ENCODE blacklist
  513. \begin_inset CommandInset citation
  514. LatexCommand cite
  515. key "greylistchip,Amemiya2019,Dunham2012"
  516. literal "false"
  517. \end_inset
  518. .
  519. Any read or peak overlapping one of these regions was regarded as artifactual
  520. and excluded from downstream analyses.
  521. \end_layout
  522. \begin_layout Standard
  523. Peaks are called using epic, an implementation of the SICER algorithm
  524. \begin_inset CommandInset citation
  525. LatexCommand cite
  526. key "Zang2009,gh-epic"
  527. literal "false"
  528. \end_inset
  529. .
  530. Peaks are also called separately using MACS, but MACS was determined to
  531. be a poor fit for the data, and these peak calls are not used further
  532. \begin_inset CommandInset citation
  533. LatexCommand cite
  534. key "Zhang2008"
  535. literal "false"
  536. \end_inset
  537. .
  538. \end_layout
  539. \begin_layout Itemize
  540. Re-analyze previously published CD4 ChIP-seq & RNA-seq data
  541. \end_layout
  542. \begin_deeper
  543. \begin_layout Itemize
  544. Completely reimplement analysis from scratch as a reproducible workflow
  545. \end_layout
  546. \begin_layout Itemize
  547. Use newly published methods & algorithms not available during the original
  548. analysis: SICER, csaw, MOFA, ComBat, sva, GREAT, and more
  549. \end_layout
  550. \end_deeper
  551. \begin_layout Itemize
  552. SICER, IDR, csaw, & GREAT to call ChIP-seq peaks genome-wide, perform differenti
  553. al abundance analysis, and relate those peaks to gene expression
  554. \end_layout
  555. \begin_layout Itemize
  556. Promoter counts in sliding windows around each gene's highest-expressed
  557. TSS to investigate coverage distribution within promoters
  558. \end_layout
  559. \begin_layout Section
  560. Results
  561. \end_layout
  562. \begin_layout Standard
  563. \begin_inset Note Note
  564. status open
  565. \begin_layout Plain Layout
  566. Focus on what hypotheses were tested, then select figures that show how
  567. those hypotheses were tested, even if the result is a negative.
  568. \end_layout
  569. \end_inset
  570. \end_layout
  571. \begin_layout Subsection
  572. H3K4 and H3K27 methylation occur in broad regions and are enriched near
  573. promoters
  574. \end_layout
  575. \begin_layout Itemize
  576. Figures comparing MACS (non-broad peak caller) to SICER/epic (broad peak
  577. caller)
  578. \end_layout
  579. \begin_deeper
  580. \begin_layout Itemize
  581. Compare peak sizes and number of called peaks
  582. \end_layout
  583. \begin_layout Itemize
  584. Show representative IDR consistency plots for both
  585. \end_layout
  586. \end_deeper
  587. \begin_layout Itemize
  588. IDR analysis shows that SICER-called peaks are much more reproducible between
  589. biological replicates
  590. \end_layout
  591. \begin_layout Itemize
  592. Each histone mark is enriched within a certain radius of gene TSS positions,
  593. but that radius is different for each mark (figure)
  594. \end_layout
  595. \begin_layout Subsection
  596. RNA-seq has a large confounding batch effect
  597. \end_layout
  598. \begin_layout Itemize
  599. RNA-seq batch effect can be partially corrected, but still induces uncorrectable
  600. biases in downstream analysis
  601. \end_layout
  602. \begin_deeper
  603. \begin_layout Itemize
  604. Figure showing MDS plot before & after ComBat
  605. \end_layout
  606. \begin_layout Itemize
  607. Figure relating sample weights to batches, cell types, time points, etc.,
  608. showing that one batch is significantly worse quality
  609. \end_layout
  610. \begin_layout Itemize
  611. Figures showing p-value histograms for within-batch and cross-batch contrasts,
  612. showing that cross-batch contrasts have attenuated signal, as do comparisons
  613. within the bad batch
  614. \end_layout
  615. \end_deeper
  616. \begin_layout Subsection
  617. ChIP-seq must be corrected for hidden confounding factors
  618. \end_layout
  619. \begin_layout Itemize
  620. Figures showing pre- and post-SVA MDS plots for each histone mark
  621. \end_layout
  622. \begin_layout Itemize
  623. Figures showing BCV plots with and without SVA for each histone mark
  624. \end_layout
  625. \begin_layout Subsection
  626. H3K4 and H3K27 promoter methylation has broadly the expected correlation
  627. with gene expression
  628. \end_layout
  629. \begin_layout Itemize
  630. H3K4 is correlated with higher expression, and H3K27 is correlated with
  631. lower expression genome-wide
  632. \end_layout
  633. \begin_layout Itemize
  634. Figures showing these correlations: box/violin plots of expression distributions
  635. with every combination of peak presence/absence in promoter
  636. \end_layout
  637. \begin_layout Itemize
  638. Appropriate statistical tests showing significant differences in expected
  639. directions
  640. \end_layout
  641. \begin_layout Subsection
  642. MOFA recovers biologically relevant variation from blind analysis by correlating
  643. across datasets
  644. \end_layout
  645. \begin_layout Itemize
  646. MOFA
  647. \begin_inset CommandInset citation
  648. LatexCommand cite
  649. key "Argelaguet2018"
  650. literal "false"
  651. \end_inset
  652. successfully separates biologically relevant patterns of variation from
  653. technical confounding factors without knowing the sample labels, by finding
  654. latent factors that explain variation across multiple data sets.
  655. \end_layout
  656. \begin_deeper
  657. \begin_layout Itemize
  658. Figure: show percent-variance-explained plot from MOFA and PCA-like plots
  659. for the relevant latent factors
  660. \end_layout
  661. \begin_layout Itemize
  662. MOFA analysis also shows that batch effect correction can't get much better
  663. than it already is (Figure comparing blind MOFA batch correction to ComBat
  664. correction)
  665. \end_layout
  666. \end_deeper
  667. \begin_layout Subsection
  668. Naive-to-memory convergence observed in H3K4 and RNA-seq data, not in H3K27me3
  669. \end_layout
  670. \begin_layout Itemize
  671. H3K4 and RNA-seq data show clear evidence of naive convergence with memory
  672. between days 1 and 5 (MDS plot figure, also compare with last figure from
  673. \begin_inset CommandInset citation
  674. LatexCommand cite
  675. key "LaMere2016"
  676. literal "false"
  677. \end_inset
  678. )
  679. \end_layout
  680. \begin_layout Standard
  681. \begin_inset Flex TODO Note (inline)
  682. status open
  683. \begin_layout Plain Layout
  684. Note that Sarah has granted permission to use her figures
  685. \end_layout
  686. \end_inset
  687. \end_layout
  688. \begin_layout Itemize
  689. Table of numbers of genes different between N & M at each time point, showing
  690. dwindling differences at later time points, consistent with convergence
  691. \end_layout
  692. \begin_layout Itemize
  693. Similar figure for H3K27me3 showing lack of convergence
  694. \end_layout
  695. \begin_layout Subsection
  696. Effect of promoter coverage upstream vs downstream of TSS
  697. \end_layout
  698. \begin_layout Itemize
  699. H3K4me peaks seem to correlate with increased expression as long as they
  700. are anywhere near the TSS
  701. \end_layout
  702. \begin_layout Itemize
  703. H3K27me3 peaks can have different correlations to gene expression depending
  704. on their position relative to TSS (e.g.
  705. upstream vs downstream) Results consistent with
  706. \begin_inset CommandInset citation
  707. LatexCommand cite
  708. key "Young2011"
  709. literal "false"
  710. \end_inset
  711. \end_layout
  712. \begin_layout Section
  713. Discussion
  714. \end_layout
  715. \begin_layout Itemize
  716. "Promoter radius" is not constant and must be defined empirically for a
  717. given data set
  718. \end_layout
  719. \begin_layout Itemize
  720. MOFA shows great promise for accelerating discovery of major biological
  721. effects in multi-omics datasets
  722. \end_layout
  723. \begin_deeper
  724. \begin_layout Itemize
  725. MOFA was added to this analysis late and played primarily a confirmatory
  726. role, but it was able to confirm earlier conclusions with much less prior
  727. information (no sample labels) and much less analyst effort
  728. \end_layout
  729. \begin_layout Itemize
  730. MOFA confirmed that the already-implemented batch correction in the RNA-seq
  731. data was already performing as well as possible given the limitations of
  732. the data
  733. \end_layout
  734. \end_deeper
  735. \begin_layout Itemize
  736. Naive-to-memory convergence implies that naive cells are differentiating
  737. into memory cells, and that gene expression and H3K4 methylation are involved
  738. in this differentiation while H3K27me3 is less involved
  739. \end_layout
  740. \begin_layout Itemize
  741. H3K27me3, canonically regarded as a deactivating mark, seems to have a more
  742. complex
  743. \end_layout
  744. \begin_layout Itemize
  745. Discuss advantages of developing using a reproducible workflow
  746. \end_layout
  747. \begin_layout Chapter
  748. Improving array-based analyses of transplant rejection by optimizing data
  749. preprocessing
  750. \end_layout
  751. \begin_layout Standard
  752. \begin_inset Note Note
  753. status open
  754. \begin_layout Plain Layout
  755. Author list: Me, Sunil, Tom, Padma, Dan
  756. \end_layout
  757. \end_inset
  758. \end_layout
  759. \begin_layout Section
  760. Approach
  761. \end_layout
  762. \begin_layout Subsection
  763. Proper pre-processing is essential for array data
  764. \end_layout
  765. \begin_layout Standard
  766. \begin_inset Flex TODO Note (inline)
  767. status open
  768. \begin_layout Plain Layout
  769. This section could probably use some citations
  770. \end_layout
  771. \end_inset
  772. \end_layout
  773. \begin_layout Standard
  774. Microarrays, bead ararys, and similar assays produce raw data in the form
  775. of fluorescence intensity measurements, with the each intensity measurement
  776. proportional to the abundance of some fluorescently-labelled target DNA
  777. or RNA sequence that base pairs to a specific probe sequence.
  778. However, these measurements for each probe are also affected my many technical
  779. confounding factors, such as the concentration of target material, strength
  780. of off-target binding, and the sensitivity of the imaging sensor.
  781. Some array designs also use multiple probe sequences for each target.
  782. Hence, extensive pre-processing of array data is necessary to normalize
  783. out the effects of these technical factors and summarize the information
  784. from multiple probes to arrive at a single usable estimate of abundance
  785. or other relevant quantity, such as a ratio of two abundances, for each
  786. target.
  787. \end_layout
  788. \begin_layout Standard
  789. The choice of pre-processing algorithms used in the analysis of an array
  790. data set can have a large effect on the results of that analysis.
  791. However, despite their importance, these steps are often neglected or rushed
  792. in order to get to the more scientifically interesting analysis steps involving
  793. the actual biology of the system under study.
  794. Hence, it is often possible to achieve substantial gains in statistical
  795. power, model goodness-of-fit, or other relevant performance measures, by
  796. checking the assumptions made by each preprocessing step and choosing specific
  797. normalization methods tailored to the specific goals of the current analysis.
  798. \end_layout
  799. \begin_layout Subsection
  800. Normalization for clinical microarray classifiers must be single-channel
  801. \end_layout
  802. \begin_layout Subsubsection
  803. Standard normalization methods are unsuitable for clinical application
  804. \end_layout
  805. \begin_layout Standard
  806. As the cost of performing microarray assays falls, there is increasing interest
  807. in using genomic assays for diagnostic purposes, such as distinguishing
  808. healthy transplants (TX) from transplants undergoing acute rejection (AR)
  809. or acute dysfunction with no rejection (ADNR).
  810. However, the the standard normalization algorithm used for microarray data,
  811. Robust Multi-chip Average (RMA)
  812. \begin_inset CommandInset citation
  813. LatexCommand cite
  814. key "Irizarry2003a"
  815. literal "false"
  816. \end_inset
  817. , is not applicable in a clinical setting.
  818. Two of the steps in RMA, quantile normalization and probe summarization
  819. by median polish, depend on every array in the data set being normalized.
  820. This means that adding or removing any arrays from a data set changes the
  821. normalized values for all arrays, and data sets that have been normalized
  822. separately cannot be compared to each other.
  823. Hence, when using RMA, any arrays to be analyzed together must also be
  824. normalized together, and the set of arrays included in the data set must
  825. be held constant throughout an analysis.
  826. \end_layout
  827. \begin_layout Standard
  828. These limitations present serious impediments to the use of arrays as a
  829. diagnostic tool.
  830. When training a classifier, the samples to be classified must not be involved
  831. in any step of the training process, lest their inclusion bias the training
  832. process.
  833. Once a classifier is deployed in a clinical setting, the samples to be
  834. classified will not even
  835. \emph on
  836. exist
  837. \emph default
  838. at the time of training, so including them would be impossible even if
  839. it were statistically justifiable.
  840. Therefore, any machine learning application for microarrays demands that
  841. the normalized expression values computed for an array must depend only
  842. on information contained within that array.
  843. This would ensure that each array's normalization is independent of every
  844. other array, and that arrays normalized separately can still be compared
  845. to each other without bias.
  846. Such a normalization is commonly referred to as
  847. \begin_inset Quotes eld
  848. \end_inset
  849. single-channel normalization
  850. \begin_inset Quotes erd
  851. \end_inset
  852. .
  853. \end_layout
  854. \begin_layout Subsubsection
  855. Several strategies are available to meet clinical normalization requirements
  856. \end_layout
  857. \begin_layout Standard
  858. Frozen RMA (fRMA) addresses these concerns by replacing the quantile normalizati
  859. on and median polish with alternatives that do not introduce inter-array
  860. dependence, allowing each array to be normalized independently of all others
  861. \begin_inset CommandInset citation
  862. LatexCommand cite
  863. key "McCall2010"
  864. literal "false"
  865. \end_inset
  866. .
  867. Quantile normalization is performed against a pre-generated set of quantiles
  868. learned from a collection of 850 publically available arrays sampled from
  869. a wide variety of tissues in the Gene Expression Omnibus (GEO).
  870. Each array's probe intensity distribution is normalized against these pre-gener
  871. ated quantiles.
  872. The median polish step is replaced with a robust weighted average of probe
  873. intensities, using inverse variance weights learned from the same public
  874. GEO data.
  875. The result is a normalization that satisfies the requirements mentioned
  876. above: each array is normalized independently of all others, and any two
  877. normalized arrays can be compared directly to each other.
  878. \end_layout
  879. \begin_layout Standard
  880. One important limitation of fRMA is that it requires a separate reference
  881. data set from which to learn the parameters (reference quantiles and probe
  882. weights) that will be used to normalize each array.
  883. These parameters are specific to a given array platform, and pre-generated
  884. parameters are only provided for the most common platforms, such as Affymetrix
  885. hgu133plus2.
  886. For a less common platform, such as hthgu133pluspm, is is necessary to
  887. learn custom parameters from in-house data before fRMA can be used to normalize
  888. samples on that platform
  889. \begin_inset CommandInset citation
  890. LatexCommand cite
  891. key "McCall2011"
  892. literal "false"
  893. \end_inset
  894. .
  895. \end_layout
  896. \begin_layout Standard
  897. One other option is the aptly-named Single Channel Array Normalization (SCAN),
  898. which adapts a normalization method originally designed for tiling arrays
  899. \begin_inset CommandInset citation
  900. LatexCommand cite
  901. key "Piccolo2012"
  902. literal "false"
  903. \end_inset
  904. .
  905. SCAN is truly single-channel in that it does not require a set of normalization
  906. paramters estimated from an external set of reference samples like fRMA
  907. does.
  908. \end_layout
  909. \begin_layout Subsection
  910. Heteroskedasticity must be accounted for in methylation array data
  911. \end_layout
  912. \begin_layout Subsubsection
  913. Methylation array preprocessing induces heteroskedasticity
  914. \end_layout
  915. \begin_layout Standard
  916. DNA methylation arrays are a relatively new kind of assay that uses microarrays
  917. to measure the degree of methylation on cytosines in specific regions arrayed
  918. across the genome.
  919. First, bisulfite treatment converts all unmethylated cytosines to uracil
  920. (which then become thymine after amplication) while leaving methylated
  921. cytosines unaffected.
  922. Then, each target region is interrogated with two probes: one binds to
  923. the original genomic sequence and interrogates the level of methylated
  924. DNA, and the other binds to the same sequence with all cytosines replaced
  925. by thymidines and interrogates the level of unmethylated DNA.
  926. \end_layout
  927. \begin_layout Standard
  928. \begin_inset Float figure
  929. wide false
  930. sideways false
  931. status collapsed
  932. \begin_layout Plain Layout
  933. \align center
  934. \begin_inset Graphics
  935. filename graphics/methylvoom/sigmoid.pdf
  936. \end_inset
  937. \end_layout
  938. \begin_layout Plain Layout
  939. \begin_inset Caption Standard
  940. \begin_layout Plain Layout
  941. \begin_inset CommandInset label
  942. LatexCommand label
  943. name "fig:Sigmoid-beta-m-mapping"
  944. \end_inset
  945. \series bold
  946. Sigmoid shape of the mapping between β and M values
  947. \end_layout
  948. \end_inset
  949. \end_layout
  950. \end_inset
  951. \end_layout
  952. \begin_layout Standard
  953. After normalization, these two probe intensities are summarized in one of
  954. two ways, each with advantages and disadvantages.
  955. β
  956. \series bold
  957. \series default
  958. values, interpreted as fraction of DNA copies methylated, range from 0 to
  959. 1.
  960. β
  961. \series bold
  962. \series default
  963. values are conceptually easy to interpret, but the constrained range makes
  964. them unsuitable for linear modeling, and their error distributions are
  965. highly non-normal, which also frustrates linear modeling.
  966. M-values, interpreted as the log ratio of methylated to unmethylated copies,
  967. are computed by mapping the beta values from
  968. \begin_inset Formula $[0,1]$
  969. \end_inset
  970. onto
  971. \begin_inset Formula $(-\infty,+\infty)$
  972. \end_inset
  973. using a sigmoid curve (Figure
  974. \begin_inset CommandInset ref
  975. LatexCommand ref
  976. reference "fig:Sigmoid-beta-m-mapping"
  977. plural "false"
  978. caps "false"
  979. noprefix "false"
  980. \end_inset
  981. ).
  982. This transformation results in values with better statistical perperties:
  983. the unconstrained range is suitable for linear modeling, and the error
  984. distributions are more normal.
  985. Hence, most linear modeling and other statistical testing on methylation
  986. arrays is performed using M-values.
  987. \end_layout
  988. \begin_layout Standard
  989. However, the steep slope of the sigmoid transformation near 0 and 1 tends
  990. to over-exaggerate small differences in β values near those extremes, which
  991. in turn amplifies the error in those values, leading to a U-shaped trend
  992. in the mean-variance curve: extreme values have higher variances than values
  993. near the middle.
  994. This mean-variance dependency must be accounted for when fitting the linear
  995. model for differential methylation, or else the variance will be systematically
  996. overestimated for probes with moderate M-values and underestimated for
  997. probes with extreme M-values.
  998. \end_layout
  999. \begin_layout Subsubsection
  1000. The voom method for RNA-seq data can model M-value heteroskedasticity
  1001. \end_layout
  1002. \begin_layout Standard
  1003. RNA-seq read count data are also known to show heteroskedasticity, and the
  1004. voom method was developed for modeling this heteroskedasticity by estimating
  1005. the mean-variance trend in the data and using this trend to assign precision
  1006. weights to each observation
  1007. \begin_inset CommandInset citation
  1008. LatexCommand cite
  1009. key "Law2013"
  1010. literal "false"
  1011. \end_inset
  1012. .
  1013. While methylation array data are not derived from counts and have a very
  1014. different mean-variance relationship from that of typical RNA-seq data,
  1015. the voom method makes no specific assumptions on the shape of the mean-variance
  1016. relationship - it only assumes that the relationship is smooth enough to
  1017. model using a lowess curve.
  1018. Hence, the method is sufficiently general to model the mean-variance relationsh
  1019. ip in methylation array data.
  1020. However, the standard implementation of voom assumes that the input is
  1021. given in raw read counts, and it must be adapted to run on methylation
  1022. M-values.
  1023. \end_layout
  1024. \begin_layout Section
  1025. Methods
  1026. \end_layout
  1027. \begin_layout Subsection
  1028. Evaluation of classifier performance with different normalization methods
  1029. \end_layout
  1030. \begin_layout Standard
  1031. For testing different expression microarray normalizations, a data set of
  1032. 157 hgu133plus2 arrays was used, consisting of blood samples from kidney
  1033. transplant patients whose grafts had been graded as TX, AR, or ADNR via
  1034. biopsy and histology (46 TX, 69 AR, 42 ADNR)
  1035. \begin_inset CommandInset citation
  1036. LatexCommand cite
  1037. key "Kurian2014"
  1038. literal "true"
  1039. \end_inset
  1040. .
  1041. Additionally, an external validation set of 75 samples was gathered from
  1042. public GEO data (37 TX, 38 AR, no ADNR).
  1043. \end_layout
  1044. \begin_layout Standard
  1045. \begin_inset Flex TODO Note (inline)
  1046. status collapsed
  1047. \begin_layout Plain Layout
  1048. Find appropriate GEO identifiers if possible.
  1049. Kurian 2014 says GSE15296, but this seems to be different data.
  1050. I also need to look up the GEO accession for the external validation set.
  1051. \end_layout
  1052. \end_inset
  1053. \end_layout
  1054. \begin_layout Standard
  1055. To evaluate the effect of each normalization on classifier performance,
  1056. the same classifier training and validation procedure was used after each
  1057. normalization method.
  1058. The PAM package was used to train a nearest shrunken centroid classifier
  1059. on the training set and select the appropriate threshold for centroid shrinking.
  1060. Then the trained classifier was used to predict the class probabilities
  1061. of each validation sample.
  1062. From these class probabilities, ROC curves and area-under-curve (AUC) values
  1063. were generated
  1064. \begin_inset CommandInset citation
  1065. LatexCommand cite
  1066. key "Turck2011"
  1067. literal "false"
  1068. \end_inset
  1069. .
  1070. Each normalization was tested on two different sets of training and validation
  1071. samples.
  1072. For internal validation, the 115 TX and AR arrays in the internal set were
  1073. split at random into two equal sized sets, one for training and one for
  1074. validation, each containing the same numbers of TX and AR samples as the
  1075. other set.
  1076. For external validation, the full set of 115 TX and AR samples were used
  1077. as a training set, and the 75 external TX and AR samples were used as the
  1078. validation set.
  1079. Thus, 2 ROC curves and AUC values were generated for each normalization
  1080. method: one internal and one external.
  1081. Because the external validation set contains no ADNR samples, only classificati
  1082. on of TX and AR samples was considered.
  1083. The ADNR samples were included during normalization but excluded from all
  1084. classifier training and validation.
  1085. This ensures that the performance on internal and external validation sets
  1086. is directly comparable, since both are performing the same task: distinguising
  1087. TX from AR.
  1088. \end_layout
  1089. \begin_layout Standard
  1090. \begin_inset Flex TODO Note (inline)
  1091. status collapsed
  1092. \begin_layout Plain Layout
  1093. Summarize the get.best.threshold algorithm for PAM threshold selection
  1094. \end_layout
  1095. \end_inset
  1096. \end_layout
  1097. \begin_layout Standard
  1098. Six different normalization strategies were evaluated.
  1099. First, 2 well-known non-single-channel normalization methods were considered:
  1100. RMA and dChip
  1101. \begin_inset CommandInset citation
  1102. LatexCommand cite
  1103. key "Li2001,Irizarry2003a"
  1104. literal "false"
  1105. \end_inset
  1106. .
  1107. Since RMA produces expression values on a log2 scale and dChip does not,
  1108. the values from dChip were log2 transformed after normalization.
  1109. Next, RMA and dChip followed by Global Rank-invariant Set Normalization
  1110. (GRSN) were tested
  1111. \begin_inset CommandInset citation
  1112. LatexCommand cite
  1113. key "Pelz2008"
  1114. literal "false"
  1115. \end_inset
  1116. .
  1117. Post-processing with GRSN does not turn RMA or dChip into single-channel
  1118. methods, but it may help mitigate batch effects and is therefore useful
  1119. as a benchmark.
  1120. Lastly, the two single-channel normalization methods, fRMA and SCAN, were
  1121. tested
  1122. \begin_inset CommandInset citation
  1123. LatexCommand cite
  1124. key "McCall2010,Piccolo2012"
  1125. literal "false"
  1126. \end_inset
  1127. .
  1128. When evaluting internal validation performance, only the 157 internal samples
  1129. were normalized; when evaluating external validation performance, all 157
  1130. internal samples and 75 external samples were normalized together.
  1131. \end_layout
  1132. \begin_layout Standard
  1133. For demonstrating the problem with separate normalization of training and
  1134. validation data, one additional normalization was performed: the internal
  1135. and external sets were each normalized separately using RMA, and the normalized
  1136. data for each set were combined into a single set with no further attempts
  1137. at normalizing between the two sets.
  1138. The represents approximately how RMA would have to be used in a clinical
  1139. setting, where the samples to be classified are not available at the time
  1140. the classifier is trained.
  1141. \end_layout
  1142. \begin_layout Subsection
  1143. Generating custom fRMA vectors for hthgu133pluspm array platform
  1144. \end_layout
  1145. \begin_layout Standard
  1146. In order to enable fRMA normalization for the hthgu133pluspm array platform,
  1147. custom fRMA normalization vectors were trained using the frmaTools package
  1148. \begin_inset CommandInset citation
  1149. LatexCommand cite
  1150. key "McCall2011"
  1151. literal "false"
  1152. \end_inset
  1153. .
  1154. Separate vectors were created for two types of samples: kidney graft biopsy
  1155. samples and blood samples from graft recipients.
  1156. For training, a 341 kidney biopsy samples from 2 data sets and 965 blood
  1157. samples from 5 data sets were used as the reference set.
  1158. Arrays were groups into batches based on unique combinations of sample
  1159. type (blood or biopsy), diagnosis (TX, AR, etc.), data set, and scan date.
  1160. Thus, each batch represents arrays of the same kind that were run together
  1161. on the same day.
  1162. For estimating the probe inverse variance weights, frmaTools requires equal-siz
  1163. ed batches, which means a batch size must be chosen, and then batches smaller
  1164. than that size must be ignored, while batches larger than the chosen size
  1165. must be downsampled.
  1166. This downsampling is performed randomly, so the sampling process is repeated
  1167. 5 times and the resulting normalizations are compared to each other.
  1168. \end_layout
  1169. \begin_layout Standard
  1170. To evaluate the consistency of the generated normalization vectors, the
  1171. 5 fRMA vector sets generated from 5 random batch samplings were each used
  1172. to normalize the same 20 randomly selected samples from each tissue.
  1173. Then the normalized expression values for each probe on each array were
  1174. compared across all normalizations.
  1175. Each fRMA normalization was also compared against the normalized expression
  1176. values obtained by normalizing the same 20 samples with ordinary RMA.
  1177. \end_layout
  1178. \begin_layout Subsection
  1179. Modeling methylation array M-value heteroskedasticy in linear models with
  1180. modified voom implementation
  1181. \end_layout
  1182. \begin_layout Standard
  1183. \begin_inset Flex TODO Note (inline)
  1184. status open
  1185. \begin_layout Plain Layout
  1186. Put code on Github and reference it.
  1187. \end_layout
  1188. \end_inset
  1189. \end_layout
  1190. \begin_layout Standard
  1191. To investigate the whether DNA methylation could be used to distinguish
  1192. between healthy and dysfunctional transplants, a data set of 78 Illumina
  1193. 450k methylation arrays from human kidney graft biopsies was analyzed for
  1194. differential metylation between 4 transplant statuses: healthy transplant
  1195. (TX), transplants undergoing acute rejection (AR), acute dysfunction with
  1196. no rejection (ADNR), and chronic allograpft nephropathy (CAN).
  1197. The data consisted of 33 TX, 9 AR, 8 ADNR, and 28 CAN samples.
  1198. The uneven group sizes are a result of taking the biopsy samples before
  1199. the eventual fate of the transplant was known.
  1200. Each sample was additionally annotated with a donor ID (anonymized), Sex,
  1201. Age, Ethnicity, Creatinine Level, and Diabetes diagnosois (all samples
  1202. in this data set came from patients with either Type 1 or Type 2 diabetes).
  1203. \end_layout
  1204. \begin_layout Standard
  1205. The intensity data were first normalized using subset-quantile within array
  1206. normalization (SWAN)
  1207. \begin_inset CommandInset citation
  1208. LatexCommand cite
  1209. key "Maksimovic2012"
  1210. literal "false"
  1211. \end_inset
  1212. , then converted to intensity ratios (beta values)
  1213. \begin_inset CommandInset citation
  1214. LatexCommand cite
  1215. key "Aryee2014"
  1216. literal "false"
  1217. \end_inset
  1218. .
  1219. Any probes binding to loci that overlapped annotated SNPs were dropped,
  1220. and the annotated sex of each sample was verified against the sex inferred
  1221. from the ratio of median probe intensities for the X and Y chromosomes.
  1222. Then, the ratios were transformed to M-values.
  1223. \end_layout
  1224. \begin_layout Standard
  1225. \begin_inset Float table
  1226. wide false
  1227. sideways false
  1228. status collapsed
  1229. \begin_layout Plain Layout
  1230. \begin_inset Tabular
  1231. <lyxtabular version="3" rows="4" columns="6">
  1232. <features tabularvalignment="middle">
  1233. <column alignment="center" valignment="top">
  1234. <column alignment="center" valignment="top">
  1235. <column alignment="center" valignment="top">
  1236. <column alignment="center" valignment="top">
  1237. <column alignment="center" valignment="top">
  1238. <column alignment="center" valignment="top">
  1239. <row>
  1240. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1241. \begin_inset Text
  1242. \begin_layout Plain Layout
  1243. Analysis
  1244. \end_layout
  1245. \end_inset
  1246. </cell>
  1247. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1248. \begin_inset Text
  1249. \begin_layout Plain Layout
  1250. patient random effect
  1251. \end_layout
  1252. \end_inset
  1253. </cell>
  1254. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1255. \begin_inset Text
  1256. \begin_layout Plain Layout
  1257. empirical Bayes
  1258. \end_layout
  1259. \end_inset
  1260. </cell>
  1261. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1262. \begin_inset Text
  1263. \begin_layout Plain Layout
  1264. SVA
  1265. \end_layout
  1266. \end_inset
  1267. </cell>
  1268. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1269. \begin_inset Text
  1270. \begin_layout Plain Layout
  1271. sample weights
  1272. \end_layout
  1273. \end_inset
  1274. </cell>
  1275. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  1276. \begin_inset Text
  1277. \begin_layout Plain Layout
  1278. voom
  1279. \end_layout
  1280. \end_inset
  1281. </cell>
  1282. </row>
  1283. <row>
  1284. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1285. \begin_inset Text
  1286. \begin_layout Plain Layout
  1287. A
  1288. \end_layout
  1289. \end_inset
  1290. </cell>
  1291. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1292. \begin_inset Text
  1293. \begin_layout Plain Layout
  1294. Yes
  1295. \end_layout
  1296. \end_inset
  1297. </cell>
  1298. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1299. \begin_inset Text
  1300. \begin_layout Plain Layout
  1301. Yes
  1302. \end_layout
  1303. \end_inset
  1304. </cell>
  1305. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1306. \begin_inset Text
  1307. \begin_layout Plain Layout
  1308. No
  1309. \end_layout
  1310. \end_inset
  1311. </cell>
  1312. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1313. \begin_inset Text
  1314. \begin_layout Plain Layout
  1315. No
  1316. \end_layout
  1317. \end_inset
  1318. </cell>
  1319. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1320. \begin_inset Text
  1321. \begin_layout Plain Layout
  1322. No
  1323. \end_layout
  1324. \end_inset
  1325. </cell>
  1326. </row>
  1327. <row>
  1328. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1329. \begin_inset Text
  1330. \begin_layout Plain Layout
  1331. B
  1332. \end_layout
  1333. \end_inset
  1334. </cell>
  1335. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1336. \begin_inset Text
  1337. \begin_layout Plain Layout
  1338. Yes
  1339. \end_layout
  1340. \end_inset
  1341. </cell>
  1342. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1343. \begin_inset Text
  1344. \begin_layout Plain Layout
  1345. Yes
  1346. \end_layout
  1347. \end_inset
  1348. </cell>
  1349. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1350. \begin_inset Text
  1351. \begin_layout Plain Layout
  1352. Yes
  1353. \end_layout
  1354. \end_inset
  1355. </cell>
  1356. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1357. \begin_inset Text
  1358. \begin_layout Plain Layout
  1359. Yes
  1360. \end_layout
  1361. \end_inset
  1362. </cell>
  1363. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1364. \begin_inset Text
  1365. \begin_layout Plain Layout
  1366. No
  1367. \end_layout
  1368. \end_inset
  1369. </cell>
  1370. </row>
  1371. <row>
  1372. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1373. \begin_inset Text
  1374. \begin_layout Plain Layout
  1375. C
  1376. \end_layout
  1377. \end_inset
  1378. </cell>
  1379. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1380. \begin_inset Text
  1381. \begin_layout Plain Layout
  1382. Yes
  1383. \end_layout
  1384. \end_inset
  1385. </cell>
  1386. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1387. \begin_inset Text
  1388. \begin_layout Plain Layout
  1389. Yes
  1390. \end_layout
  1391. \end_inset
  1392. </cell>
  1393. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1394. \begin_inset Text
  1395. \begin_layout Plain Layout
  1396. Yes
  1397. \end_layout
  1398. \end_inset
  1399. </cell>
  1400. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1401. \begin_inset Text
  1402. \begin_layout Plain Layout
  1403. Yes
  1404. \end_layout
  1405. \end_inset
  1406. </cell>
  1407. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  1408. \begin_inset Text
  1409. \begin_layout Plain Layout
  1410. Yes
  1411. \end_layout
  1412. \end_inset
  1413. </cell>
  1414. </row>
  1415. </lyxtabular>
  1416. \end_inset
  1417. \end_layout
  1418. \begin_layout Plain Layout
  1419. \begin_inset Caption Standard
  1420. \begin_layout Plain Layout
  1421. \series bold
  1422. \begin_inset CommandInset label
  1423. LatexCommand label
  1424. name "tab:Summary-of-meth-analysis"
  1425. \end_inset
  1426. Summary of analysis variants for methylation array data.
  1427. \series default
  1428. Each analysis included a different set of steps to adjust or account for
  1429. various systematic features of the data.
  1430. See the text for a more detailed explanation of each step.
  1431. \end_layout
  1432. \end_inset
  1433. \end_layout
  1434. \end_inset
  1435. \end_layout
  1436. \begin_layout Standard
  1437. From the M-values, a series of parallel analyses was performed, each adding
  1438. additional steps into the model fit to accomodate a feature of the data
  1439. (see Table
  1440. \begin_inset CommandInset ref
  1441. LatexCommand ref
  1442. reference "tab:Summary-of-meth-analysis"
  1443. plural "false"
  1444. caps "false"
  1445. noprefix "false"
  1446. \end_inset
  1447. ).
  1448. For analysis A, a
  1449. \begin_inset Quotes eld
  1450. \end_inset
  1451. basic
  1452. \begin_inset Quotes erd
  1453. \end_inset
  1454. linear modeling analysis was performed, compensating for known confounders
  1455. by including terms for the factor of interest (transplant status) as well
  1456. as the known biological confounders: sex, age, ethnicity, and diabetes.
  1457. Since some samples came from the same patients at different times, the
  1458. intra-patient correlation was modeled as a random effect, estimating a
  1459. shared correlation value across all probes
  1460. \begin_inset CommandInset citation
  1461. LatexCommand cite
  1462. key "Smyth2005a"
  1463. literal "false"
  1464. \end_inset
  1465. .
  1466. Then the linear model was fit, and the variance was modeled using empirical
  1467. Bayes squeezing toward the mean-variance trend
  1468. \begin_inset CommandInset citation
  1469. LatexCommand cite
  1470. key "Ritchie2015"
  1471. literal "false"
  1472. \end_inset
  1473. .
  1474. Finally, t-tests or F-tests were performed as appropriate for each test:
  1475. t-tests for single contrasts, and F-tests for multiple contrasts.
  1476. P-values were corrected for multiple testing using the Benjamini-Hochberg
  1477. procedure for FDR control
  1478. \begin_inset CommandInset citation
  1479. LatexCommand cite
  1480. key "Benjamini1995"
  1481. literal "false"
  1482. \end_inset
  1483. .
  1484. \end_layout
  1485. \begin_layout Standard
  1486. For the analysis B, surrogate variable analysis (SVA) was used to infer
  1487. additional unobserved sources of heterogeneity in the data
  1488. \begin_inset CommandInset citation
  1489. LatexCommand cite
  1490. key "Leek2007"
  1491. literal "false"
  1492. \end_inset
  1493. .
  1494. These surrogate variables were added to the design matrix before fitting
  1495. the linear model.
  1496. In addition, sample quality weights were estimated from the data and used
  1497. during linear modeling to down-weight the contribution of highly variable
  1498. arrays while increasing the weight to arrays with lower variability
  1499. \begin_inset CommandInset citation
  1500. LatexCommand cite
  1501. key "Ritchie2006"
  1502. literal "false"
  1503. \end_inset
  1504. .
  1505. The remainder of the analysis proceeded as in analysis A.
  1506. For analysis C, the voom method was adapted to run on methylation array
  1507. data and used to model and correct for the mean-variance trend using individual
  1508. observation weights
  1509. \begin_inset CommandInset citation
  1510. LatexCommand cite
  1511. key "Law2013"
  1512. literal "false"
  1513. \end_inset
  1514. , which were combined with the sample weights
  1515. \begin_inset CommandInset citation
  1516. LatexCommand cite
  1517. key "Liu2015"
  1518. literal "false"
  1519. \end_inset
  1520. .
  1521. Each time weights were used, they were estimated once before estimating
  1522. the random effect correlation value, and then the weights were re-estimated
  1523. taking the random effect into account.
  1524. The remainder of the analysis proceeded as in analysis B.
  1525. \end_layout
  1526. \begin_layout Section
  1527. Results
  1528. \end_layout
  1529. \begin_layout Standard
  1530. \begin_inset Flex TODO Note (inline)
  1531. status open
  1532. \begin_layout Plain Layout
  1533. Improve subsection titles in this section
  1534. \end_layout
  1535. \end_inset
  1536. \end_layout
  1537. \begin_layout Subsection
  1538. fRMA eliminates unwanted dependence of classifier training on normalization
  1539. strategy caused by RMA
  1540. \end_layout
  1541. \begin_layout Standard
  1542. \begin_inset Flex TODO Note (inline)
  1543. status open
  1544. \begin_layout Plain Layout
  1545. Write figure legends
  1546. \end_layout
  1547. \end_inset
  1548. \end_layout
  1549. \begin_layout Subsubsection
  1550. Separate normalization with RMA introduces unwanted biases in classification
  1551. \end_layout
  1552. \begin_layout Standard
  1553. \begin_inset Float figure
  1554. wide false
  1555. sideways false
  1556. status collapsed
  1557. \begin_layout Plain Layout
  1558. \align center
  1559. \begin_inset Graphics
  1560. filename graphics/PAM/predplot.pdf
  1561. width 100col%
  1562. groupId colwidth
  1563. \end_inset
  1564. \end_layout
  1565. \begin_layout Plain Layout
  1566. \begin_inset Caption Standard
  1567. \begin_layout Plain Layout
  1568. \begin_inset CommandInset label
  1569. LatexCommand label
  1570. name "fig:Classifier-probabilities-RMA"
  1571. \end_inset
  1572. \series bold
  1573. Classifier probabilities on validation samples when normalized with RMA
  1574. together vs.
  1575. separately.
  1576. \end_layout
  1577. \end_inset
  1578. \end_layout
  1579. \end_inset
  1580. \end_layout
  1581. \begin_layout Standard
  1582. To demonstrate the problem with non-single-channel normalization methods,
  1583. we considered the problem of training a classifier to distinguish TX from
  1584. AR using the samples from the internal set as training data, evaluating
  1585. performance on the external set.
  1586. First, training and evaluation were performed after normalizing all array
  1587. samples together as a single set using RMA, and second, the internal samples
  1588. were normalized separately from the external samples and the training and
  1589. evaluation were repeated.
  1590. For each sample in the validation set, the classifier probabilities from
  1591. both classifiers were plotted against each other (Fig.
  1592. \begin_inset CommandInset ref
  1593. LatexCommand ref
  1594. reference "fig:Classifier-probabilities-RMA"
  1595. plural "false"
  1596. caps "false"
  1597. noprefix "false"
  1598. \end_inset
  1599. ).
  1600. As expected, separate normalization biases the classifier probabilities,
  1601. resulting in several misclassifications.
  1602. In this case, the bias from separate normalization causes the classifier
  1603. to assign a lower probability of AR to every sample.
  1604. \end_layout
  1605. \begin_layout Subsubsection
  1606. fRMA and SCAN achieve maintain classification performance while eliminating
  1607. dependence on normalization strategy
  1608. \end_layout
  1609. \begin_layout Standard
  1610. \begin_inset Float figure
  1611. placement tb
  1612. wide false
  1613. sideways false
  1614. status collapsed
  1615. \begin_layout Plain Layout
  1616. \align center
  1617. \begin_inset Graphics
  1618. filename graphics/PAM/ROC-TXvsAR-internal.pdf
  1619. width 100col%
  1620. groupId colwidth
  1621. \end_inset
  1622. \end_layout
  1623. \begin_layout Plain Layout
  1624. \begin_inset Caption Standard
  1625. \begin_layout Plain Layout
  1626. \series bold
  1627. \begin_inset CommandInset label
  1628. LatexCommand label
  1629. name "fig:ROC-PAM-int"
  1630. \end_inset
  1631. ROC curves for PAM on internal validation data using different normalization
  1632. strategies
  1633. \end_layout
  1634. \end_inset
  1635. \end_layout
  1636. \end_inset
  1637. \end_layout
  1638. \begin_layout Standard
  1639. \begin_inset Float table
  1640. wide false
  1641. sideways false
  1642. status collapsed
  1643. \begin_layout Plain Layout
  1644. \align center
  1645. \begin_inset Tabular
  1646. <lyxtabular version="3" rows="7" columns="4">
  1647. <features tabularvalignment="middle">
  1648. <column alignment="center" valignment="top">
  1649. <column alignment="center" valignment="top">
  1650. <column alignment="center" valignment="top">
  1651. <column alignment="center" valignment="top">
  1652. <row>
  1653. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1654. \begin_inset Text
  1655. \begin_layout Plain Layout
  1656. \family roman
  1657. \series medium
  1658. \shape up
  1659. \size normal
  1660. \emph off
  1661. \bar no
  1662. \strikeout off
  1663. \xout off
  1664. \uuline off
  1665. \uwave off
  1666. \noun off
  1667. \color none
  1668. Normalization
  1669. \end_layout
  1670. \end_inset
  1671. </cell>
  1672. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1673. \begin_inset Text
  1674. \begin_layout Plain Layout
  1675. Single-channel?
  1676. \end_layout
  1677. \end_inset
  1678. </cell>
  1679. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1680. \begin_inset Text
  1681. \begin_layout Plain Layout
  1682. \family roman
  1683. \series medium
  1684. \shape up
  1685. \size normal
  1686. \emph off
  1687. \bar no
  1688. \strikeout off
  1689. \xout off
  1690. \uuline off
  1691. \uwave off
  1692. \noun off
  1693. \color none
  1694. Internal Val.
  1695. AUC
  1696. \end_layout
  1697. \end_inset
  1698. </cell>
  1699. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  1700. \begin_inset Text
  1701. \begin_layout Plain Layout
  1702. External Val.
  1703. AUC
  1704. \end_layout
  1705. \end_inset
  1706. </cell>
  1707. </row>
  1708. <row>
  1709. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1710. \begin_inset Text
  1711. \begin_layout Plain Layout
  1712. \family roman
  1713. \series medium
  1714. \shape up
  1715. \size normal
  1716. \emph off
  1717. \bar no
  1718. \strikeout off
  1719. \xout off
  1720. \uuline off
  1721. \uwave off
  1722. \noun off
  1723. \color none
  1724. RMA
  1725. \end_layout
  1726. \end_inset
  1727. </cell>
  1728. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1729. \begin_inset Text
  1730. \begin_layout Plain Layout
  1731. No
  1732. \end_layout
  1733. \end_inset
  1734. </cell>
  1735. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1736. \begin_inset Text
  1737. \begin_layout Plain Layout
  1738. \family roman
  1739. \series medium
  1740. \shape up
  1741. \size normal
  1742. \emph off
  1743. \bar no
  1744. \strikeout off
  1745. \xout off
  1746. \uuline off
  1747. \uwave off
  1748. \noun off
  1749. \color none
  1750. 0.852
  1751. \end_layout
  1752. \end_inset
  1753. </cell>
  1754. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1755. \begin_inset Text
  1756. \begin_layout Plain Layout
  1757. \family roman
  1758. \series medium
  1759. \shape up
  1760. \size normal
  1761. \emph off
  1762. \bar no
  1763. \strikeout off
  1764. \xout off
  1765. \uuline off
  1766. \uwave off
  1767. \noun off
  1768. \color none
  1769. 0.713
  1770. \end_layout
  1771. \end_inset
  1772. </cell>
  1773. </row>
  1774. <row>
  1775. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1776. \begin_inset Text
  1777. \begin_layout Plain Layout
  1778. \family roman
  1779. \series medium
  1780. \shape up
  1781. \size normal
  1782. \emph off
  1783. \bar no
  1784. \strikeout off
  1785. \xout off
  1786. \uuline off
  1787. \uwave off
  1788. \noun off
  1789. \color none
  1790. dChip
  1791. \end_layout
  1792. \end_inset
  1793. </cell>
  1794. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1795. \begin_inset Text
  1796. \begin_layout Plain Layout
  1797. No
  1798. \end_layout
  1799. \end_inset
  1800. </cell>
  1801. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1802. \begin_inset Text
  1803. \begin_layout Plain Layout
  1804. \family roman
  1805. \series medium
  1806. \shape up
  1807. \size normal
  1808. \emph off
  1809. \bar no
  1810. \strikeout off
  1811. \xout off
  1812. \uuline off
  1813. \uwave off
  1814. \noun off
  1815. \color none
  1816. 0.891
  1817. \end_layout
  1818. \end_inset
  1819. </cell>
  1820. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1821. \begin_inset Text
  1822. \begin_layout Plain Layout
  1823. \family roman
  1824. \series medium
  1825. \shape up
  1826. \size normal
  1827. \emph off
  1828. \bar no
  1829. \strikeout off
  1830. \xout off
  1831. \uuline off
  1832. \uwave off
  1833. \noun off
  1834. \color none
  1835. 0.657
  1836. \end_layout
  1837. \end_inset
  1838. </cell>
  1839. </row>
  1840. <row>
  1841. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1842. \begin_inset Text
  1843. \begin_layout Plain Layout
  1844. \family roman
  1845. \series medium
  1846. \shape up
  1847. \size normal
  1848. \emph off
  1849. \bar no
  1850. \strikeout off
  1851. \xout off
  1852. \uuline off
  1853. \uwave off
  1854. \noun off
  1855. \color none
  1856. RMA + GRSN
  1857. \end_layout
  1858. \end_inset
  1859. </cell>
  1860. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1861. \begin_inset Text
  1862. \begin_layout Plain Layout
  1863. No
  1864. \end_layout
  1865. \end_inset
  1866. </cell>
  1867. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1868. \begin_inset Text
  1869. \begin_layout Plain Layout
  1870. \family roman
  1871. \series medium
  1872. \shape up
  1873. \size normal
  1874. \emph off
  1875. \bar no
  1876. \strikeout off
  1877. \xout off
  1878. \uuline off
  1879. \uwave off
  1880. \noun off
  1881. \color none
  1882. 0.816
  1883. \end_layout
  1884. \end_inset
  1885. </cell>
  1886. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1887. \begin_inset Text
  1888. \begin_layout Plain Layout
  1889. \family roman
  1890. \series medium
  1891. \shape up
  1892. \size normal
  1893. \emph off
  1894. \bar no
  1895. \strikeout off
  1896. \xout off
  1897. \uuline off
  1898. \uwave off
  1899. \noun off
  1900. \color none
  1901. 0.750
  1902. \end_layout
  1903. \end_inset
  1904. </cell>
  1905. </row>
  1906. <row>
  1907. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1908. \begin_inset Text
  1909. \begin_layout Plain Layout
  1910. \family roman
  1911. \series medium
  1912. \shape up
  1913. \size normal
  1914. \emph off
  1915. \bar no
  1916. \strikeout off
  1917. \xout off
  1918. \uuline off
  1919. \uwave off
  1920. \noun off
  1921. \color none
  1922. dChip + GRSN
  1923. \end_layout
  1924. \end_inset
  1925. </cell>
  1926. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1927. \begin_inset Text
  1928. \begin_layout Plain Layout
  1929. No
  1930. \end_layout
  1931. \end_inset
  1932. </cell>
  1933. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1934. \begin_inset Text
  1935. \begin_layout Plain Layout
  1936. \family roman
  1937. \series medium
  1938. \shape up
  1939. \size normal
  1940. \emph off
  1941. \bar no
  1942. \strikeout off
  1943. \xout off
  1944. \uuline off
  1945. \uwave off
  1946. \noun off
  1947. \color none
  1948. 0.875
  1949. \end_layout
  1950. \end_inset
  1951. </cell>
  1952. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1953. \begin_inset Text
  1954. \begin_layout Plain Layout
  1955. \family roman
  1956. \series medium
  1957. \shape up
  1958. \size normal
  1959. \emph off
  1960. \bar no
  1961. \strikeout off
  1962. \xout off
  1963. \uuline off
  1964. \uwave off
  1965. \noun off
  1966. \color none
  1967. 0.642
  1968. \end_layout
  1969. \end_inset
  1970. </cell>
  1971. </row>
  1972. <row>
  1973. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1974. \begin_inset Text
  1975. \begin_layout Plain Layout
  1976. \family roman
  1977. \series medium
  1978. \shape up
  1979. \size normal
  1980. \emph off
  1981. \bar no
  1982. \strikeout off
  1983. \xout off
  1984. \uuline off
  1985. \uwave off
  1986. \noun off
  1987. \color none
  1988. fRMA
  1989. \end_layout
  1990. \end_inset
  1991. </cell>
  1992. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1993. \begin_inset Text
  1994. \begin_layout Plain Layout
  1995. Yes
  1996. \end_layout
  1997. \end_inset
  1998. </cell>
  1999. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2000. \begin_inset Text
  2001. \begin_layout Plain Layout
  2002. \family roman
  2003. \series medium
  2004. \shape up
  2005. \size normal
  2006. \emph off
  2007. \bar no
  2008. \strikeout off
  2009. \xout off
  2010. \uuline off
  2011. \uwave off
  2012. \noun off
  2013. \color none
  2014. 0.863
  2015. \end_layout
  2016. \end_inset
  2017. </cell>
  2018. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  2019. \begin_inset Text
  2020. \begin_layout Plain Layout
  2021. \family roman
  2022. \series medium
  2023. \shape up
  2024. \size normal
  2025. \emph off
  2026. \bar no
  2027. \strikeout off
  2028. \xout off
  2029. \uuline off
  2030. \uwave off
  2031. \noun off
  2032. \color none
  2033. 0.718
  2034. \end_layout
  2035. \end_inset
  2036. </cell>
  2037. </row>
  2038. <row>
  2039. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2040. \begin_inset Text
  2041. \begin_layout Plain Layout
  2042. \family roman
  2043. \series medium
  2044. \shape up
  2045. \size normal
  2046. \emph off
  2047. \bar no
  2048. \strikeout off
  2049. \xout off
  2050. \uuline off
  2051. \uwave off
  2052. \noun off
  2053. \color none
  2054. SCAN
  2055. \end_layout
  2056. \end_inset
  2057. </cell>
  2058. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2059. \begin_inset Text
  2060. \begin_layout Plain Layout
  2061. Yes
  2062. \end_layout
  2063. \end_inset
  2064. </cell>
  2065. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2066. \begin_inset Text
  2067. \begin_layout Plain Layout
  2068. \family roman
  2069. \series medium
  2070. \shape up
  2071. \size normal
  2072. \emph off
  2073. \bar no
  2074. \strikeout off
  2075. \xout off
  2076. \uuline off
  2077. \uwave off
  2078. \noun off
  2079. \color none
  2080. 0.853
  2081. \end_layout
  2082. \end_inset
  2083. </cell>
  2084. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  2085. \begin_inset Text
  2086. \begin_layout Plain Layout
  2087. \family roman
  2088. \series medium
  2089. \shape up
  2090. \size normal
  2091. \emph off
  2092. \bar no
  2093. \strikeout off
  2094. \xout off
  2095. \uuline off
  2096. \uwave off
  2097. \noun off
  2098. \color none
  2099. 0.689
  2100. \end_layout
  2101. \end_inset
  2102. </cell>
  2103. </row>
  2104. </lyxtabular>
  2105. \end_inset
  2106. \end_layout
  2107. \begin_layout Plain Layout
  2108. \begin_inset Caption Standard
  2109. \begin_layout Plain Layout
  2110. \begin_inset CommandInset label
  2111. LatexCommand label
  2112. name "tab:AUC-PAM"
  2113. \end_inset
  2114. \series bold
  2115. AUC values for internal and external validation with 6 different normalization
  2116. strategies.
  2117. \series default
  2118. Only fRMA and SCAN are single-channel normalizations.
  2119. The other 4 normalizations are for comparison.
  2120. \end_layout
  2121. \end_inset
  2122. \end_layout
  2123. \end_inset
  2124. \end_layout
  2125. \begin_layout Standard
  2126. For internal validation, the 6 methods' AUC values ranged from 0.816 to 0.891,
  2127. as shown in Table
  2128. \begin_inset CommandInset ref
  2129. LatexCommand ref
  2130. reference "tab:AUC-PAM"
  2131. plural "false"
  2132. caps "false"
  2133. noprefix "false"
  2134. \end_inset
  2135. .
  2136. Among the non-single-channel normalizations, dChip outperformed RMA, while
  2137. GRSN reduced the AUC values for both dChip and RMA.
  2138. Both single-channel methods, fRMA and SCAN, slightly outperformed RMA,
  2139. with fRMA ahead of SCAN.
  2140. However, the difference between RMA and fRMA is still quite small.
  2141. Figure
  2142. \begin_inset CommandInset ref
  2143. LatexCommand ref
  2144. reference "fig:ROC-PAM-int"
  2145. plural "false"
  2146. caps "false"
  2147. noprefix "false"
  2148. \end_inset
  2149. shows that the ROC curves for RMA, dChip, and fRMA look very similar and
  2150. relatively smooth, while both GRSN curves and the curve for SCAN have a
  2151. more jagged appearance.
  2152. \end_layout
  2153. \begin_layout Standard
  2154. \begin_inset Float figure
  2155. placement tb
  2156. wide false
  2157. sideways false
  2158. status collapsed
  2159. \begin_layout Plain Layout
  2160. \align center
  2161. \begin_inset Graphics
  2162. filename graphics/PAM/ROC-TXvsAR-external.pdf
  2163. width 100col%
  2164. groupId colwidth
  2165. \end_inset
  2166. \end_layout
  2167. \begin_layout Plain Layout
  2168. \begin_inset Caption Standard
  2169. \begin_layout Plain Layout
  2170. \series bold
  2171. \begin_inset CommandInset label
  2172. LatexCommand label
  2173. name "fig:ROC-PAM-ext"
  2174. \end_inset
  2175. ROC curve for PAM on external validation data using different normalization
  2176. strategies
  2177. \end_layout
  2178. \end_inset
  2179. \end_layout
  2180. \end_inset
  2181. \end_layout
  2182. \begin_layout Standard
  2183. For external validation, as expected, all the AUC values are lower than
  2184. the internal validations, ranging from 0.642 to 0.750 (Table
  2185. \begin_inset CommandInset ref
  2186. LatexCommand ref
  2187. reference "tab:AUC-PAM"
  2188. plural "false"
  2189. caps "false"
  2190. noprefix "false"
  2191. \end_inset
  2192. ).
  2193. With or without GRSN, RMA shows its dominance over dChip in this more challengi
  2194. ng test.
  2195. Unlike in the internal validation, GRSN actually improves the classifier
  2196. performance for RMA, although it does not for dChip.
  2197. Once again, both single-channel methods perform about on par with RMA,
  2198. with fRMA performing slightly better and SCAN performing a bit worse.
  2199. Figure
  2200. \begin_inset CommandInset ref
  2201. LatexCommand ref
  2202. reference "fig:ROC-PAM-ext"
  2203. plural "false"
  2204. caps "false"
  2205. noprefix "false"
  2206. \end_inset
  2207. shows the ROC curves for the external validation test.
  2208. As expected, none of them are as clean-looking as the internal validation
  2209. ROC curves.
  2210. The curves for RMA, RMA+GRSN, and fRMA all look similar, while the other
  2211. curves look more divergent.
  2212. \end_layout
  2213. \begin_layout Standard
  2214. \begin_inset ERT
  2215. status collapsed
  2216. \begin_layout Plain Layout
  2217. \backslash
  2218. FloatBarrier
  2219. \end_layout
  2220. \end_inset
  2221. \end_layout
  2222. \begin_layout Subsection
  2223. fRMA with custom-generated vectors enables normalization on hthgu133pluspm
  2224. \end_layout
  2225. \begin_layout Standard
  2226. \begin_inset Float figure
  2227. placement tb
  2228. wide false
  2229. sideways false
  2230. status collapsed
  2231. \begin_layout Plain Layout
  2232. \align center
  2233. \begin_inset Graphics
  2234. filename graphics/frma-pax-bx/batchsize_batches.pdf
  2235. \end_inset
  2236. \end_layout
  2237. \begin_layout Plain Layout
  2238. \begin_inset Caption Standard
  2239. \begin_layout Plain Layout
  2240. \begin_inset CommandInset label
  2241. LatexCommand label
  2242. name "fig:batch-size-batches"
  2243. \end_inset
  2244. \series bold
  2245. Effect of batch size selection on number of batches included in fRMA probe
  2246. weight learning.
  2247. \series default
  2248. For batch sizes ranging from 3 to 15, the number of batches with at least
  2249. that many samples was plotted for biopsy (BX) and blood (PAX) samples.
  2250. The selected batch size, 5, is marked with a dotted vertical line.
  2251. \end_layout
  2252. \end_inset
  2253. \end_layout
  2254. \end_inset
  2255. \end_layout
  2256. \begin_layout Standard
  2257. \begin_inset Float figure
  2258. placement tb
  2259. wide false
  2260. sideways false
  2261. status collapsed
  2262. \begin_layout Plain Layout
  2263. \align center
  2264. \begin_inset Graphics
  2265. filename graphics/frma-pax-bx/batchsize_samples.pdf
  2266. \end_inset
  2267. \end_layout
  2268. \begin_layout Plain Layout
  2269. \begin_inset Caption Standard
  2270. \begin_layout Plain Layout
  2271. \begin_inset CommandInset label
  2272. LatexCommand label
  2273. name "fig:batch-size-samples"
  2274. \end_inset
  2275. \series bold
  2276. Effect of batch size selection on number of samples included in fRMA probe
  2277. weight learning.
  2278. \series default
  2279. For batch sizes ranging from 3 to 15, the number of samples included in
  2280. probe weight training was plotted for biopsy (BX) and blood (PAX) samples.
  2281. The selected batch size, 5, is marked with a dotted vertical line.
  2282. \end_layout
  2283. \end_inset
  2284. \end_layout
  2285. \end_inset
  2286. \end_layout
  2287. \begin_layout Standard
  2288. In order to enable use of fRMA to normalize hthgu133pluspm, a custom set
  2289. of fRMA vectors was created.
  2290. First, an appropriate batch size was chosen by looking at the number of
  2291. batches and number of samples included as a function of batch size (Figures
  2292. \begin_inset CommandInset ref
  2293. LatexCommand ref
  2294. reference "fig:batch-size-batches"
  2295. plural "false"
  2296. caps "false"
  2297. noprefix "false"
  2298. \end_inset
  2299. and
  2300. \begin_inset CommandInset ref
  2301. LatexCommand ref
  2302. reference "fig:batch-size-samples"
  2303. plural "false"
  2304. caps "false"
  2305. noprefix "false"
  2306. \end_inset
  2307. , respectively).
  2308. For a given batch size, all batches with fewer samples that the chosen
  2309. size must be ignored during training, while larger batches must be randomly
  2310. downsampled to the chosen size.
  2311. Hence, the number of samples included for a given batch size equals the
  2312. batch size times the number of batches with at least that many samples.
  2313. From Figure
  2314. \begin_inset CommandInset ref
  2315. LatexCommand ref
  2316. reference "fig:batch-size-samples"
  2317. plural "false"
  2318. caps "false"
  2319. noprefix "false"
  2320. \end_inset
  2321. , it is apparent that that a batch size of 8 maximizes the number of samples
  2322. included in training.
  2323. Increasing the batch size beyond this causes too many smaller batches to
  2324. be excluded, reducing the total number of samples for both tissue types.
  2325. However, a batch size of 8 is not necessarily optimal.
  2326. The article introducing frmaTools concluded that it was highly advantageous
  2327. to use a smaller batch size in order to include more batches, even at the
  2328. expense of including fewer total samples in training
  2329. \begin_inset CommandInset citation
  2330. LatexCommand cite
  2331. key "McCall2011"
  2332. literal "false"
  2333. \end_inset
  2334. .
  2335. To strike an appropriate balance between more batches and more samples,
  2336. a batch size of 5 was chosen.
  2337. For both blood and biopsy samples, this increased the number of batches
  2338. included by 10, with only a modest reduction in the number of samples compared
  2339. to a batch size of 8.
  2340. With a batch size of 5, 26 batches of biopsy samples and 46 batches of
  2341. blood samples were available.
  2342. \end_layout
  2343. \begin_layout Standard
  2344. \begin_inset Float figure
  2345. wide false
  2346. sideways false
  2347. status collapsed
  2348. \begin_layout Plain Layout
  2349. \align center
  2350. \begin_inset Graphics
  2351. filename graphics/frma-pax-bx/M-BX-violin.pdf
  2352. lyxscale 40
  2353. height 80theight%
  2354. groupId m-violin
  2355. \end_inset
  2356. \end_layout
  2357. \begin_layout Plain Layout
  2358. \begin_inset Caption Standard
  2359. \begin_layout Plain Layout
  2360. \begin_inset CommandInset label
  2361. LatexCommand label
  2362. name "fig:m-bx-violin"
  2363. \end_inset
  2364. \series bold
  2365. Violin plot of log ratios between normalizations for 20 biopsy samples.
  2366. \series default
  2367. Each of 20 randomly selected biopsy samples was normalized with RMA and
  2368. with 5 different sets of fRMA vectors.
  2369. This shows the distribution of log ratios between normalized expression
  2370. values, aggregated across all 20 arrays.
  2371. \end_layout
  2372. \end_inset
  2373. \end_layout
  2374. \end_inset
  2375. \end_layout
  2376. \begin_layout Standard
  2377. Since fRMA training requires equal-size batches, larger batches are downsampled
  2378. randomly.
  2379. This introduces a nondeterministic step in the generation of normalization
  2380. vectors.
  2381. To show that this randomness does not substantially change the outcome,
  2382. the random downsampling and subsequent vector learning was repeated 5 times,
  2383. with a different random seed each time.
  2384. 20 samples were selected at random as a test set and normalized with each
  2385. of the 5 sets of fRMA normalization vectors as well as ordinary RMA, and
  2386. the normalized expression values were compared across normalizations.
  2387. Figure
  2388. \begin_inset CommandInset ref
  2389. LatexCommand ref
  2390. reference "fig:m-bx-violin"
  2391. plural "false"
  2392. caps "false"
  2393. noprefix "false"
  2394. \end_inset
  2395. shows a summary of these comparisons for biopsy samples.
  2396. Comparing RMA to each of the 5 fRMA normalizations, the distribution of
  2397. log ratios is somewhat wide, indicating that the normalizations disagree
  2398. on the expression values of a fair number of probe sets.
  2399. In contrast, comparisons of fRMA against fRMA, the vast mojority of probe
  2400. sets have very small log ratios, indicating a very high agreement between
  2401. the normalized values generated by the two normalizations.
  2402. This shows that the fRMA normalization's behavior is not very sensitive
  2403. to the random downsampling of larger batches during training.
  2404. \end_layout
  2405. \begin_layout Standard
  2406. \begin_inset Float figure
  2407. wide false
  2408. sideways false
  2409. status collapsed
  2410. \begin_layout Plain Layout
  2411. \align center
  2412. \begin_inset Graphics
  2413. filename graphics/frma-pax-bx/MA-BX-RMA.fRMA.pdf
  2414. lyxscale 50
  2415. width 100text%
  2416. groupId ma-frma
  2417. \end_inset
  2418. \end_layout
  2419. \begin_layout Plain Layout
  2420. \begin_inset Caption Standard
  2421. \begin_layout Plain Layout
  2422. \begin_inset CommandInset label
  2423. LatexCommand label
  2424. name "fig:ma-bx-rma-frma"
  2425. \end_inset
  2426. \series bold
  2427. Representative MA plot comparing RMA against fRMA for 20 biopsy samples.
  2428. \series default
  2429. Averages and log ratios were computed for every probe in each of 20 biopsy
  2430. samples between RMA normalization and fRMA.
  2431. Density of points is represented by darkness of shading, and individual
  2432. outlier points are plotted.
  2433. \end_layout
  2434. \end_inset
  2435. \end_layout
  2436. \end_inset
  2437. \end_layout
  2438. \begin_layout Standard
  2439. \begin_inset Float figure
  2440. wide false
  2441. sideways false
  2442. status collapsed
  2443. \begin_layout Plain Layout
  2444. \align center
  2445. \begin_inset Graphics
  2446. filename graphics/frma-pax-bx/MA-BX-fRMA.fRMA.pdf
  2447. lyxscale 50
  2448. width 100text%
  2449. groupId ma-frma
  2450. \end_inset
  2451. \end_layout
  2452. \begin_layout Plain Layout
  2453. \begin_inset Caption Standard
  2454. \begin_layout Plain Layout
  2455. \begin_inset CommandInset label
  2456. LatexCommand label
  2457. name "fig:ma-bx-frma-frma"
  2458. \end_inset
  2459. \series bold
  2460. Representative MA plot comparing different fRMA vectors for 20 biopsy samples.
  2461. \series default
  2462. Averages and log ratios were computed for every probe in each of 20 biopsy
  2463. samples between fRMA normalizations using vectors from two different batch
  2464. samplings.
  2465. Density of points is represented by darkness of shading, and individual
  2466. outlier points are plotted.
  2467. \end_layout
  2468. \end_inset
  2469. \end_layout
  2470. \end_inset
  2471. \end_layout
  2472. \begin_layout Standard
  2473. Figure
  2474. \begin_inset CommandInset ref
  2475. LatexCommand ref
  2476. reference "fig:ma-bx-rma-frma"
  2477. plural "false"
  2478. caps "false"
  2479. noprefix "false"
  2480. \end_inset
  2481. shows an MA plot of the RMA-normalized values against the fRMA-normalized
  2482. values for the same probe sets and arrays, corresponding to the first row
  2483. of Figure
  2484. \begin_inset CommandInset ref
  2485. LatexCommand ref
  2486. reference "fig:m-bx-violin"
  2487. plural "false"
  2488. caps "false"
  2489. noprefix "false"
  2490. \end_inset
  2491. .
  2492. This MA plot shows that not only is there a wide distribution of M-values,
  2493. but the trend of M-values is dependent on the average normalized intensity.
  2494. This is expected, since the overall trend represents the differences in
  2495. the quantile normalization step.
  2496. When running RMA, only the quantiles for these specific 20 arrays are used,
  2497. while for fRMA the quantile distribution is taking from all arrays used
  2498. in training.
  2499. Figure
  2500. \begin_inset CommandInset ref
  2501. LatexCommand ref
  2502. reference "fig:ma-bx-frma-frma"
  2503. plural "false"
  2504. caps "false"
  2505. noprefix "false"
  2506. \end_inset
  2507. shows a similar MA plot comparing 2 different fRMA normalizations, correspondin
  2508. g to the 6th row of Figure
  2509. \begin_inset CommandInset ref
  2510. LatexCommand ref
  2511. reference "fig:m-bx-violin"
  2512. plural "false"
  2513. caps "false"
  2514. noprefix "false"
  2515. \end_inset
  2516. .
  2517. The MA plot is very tightly centered around zero with no visible trend.
  2518. Figures
  2519. \begin_inset CommandInset ref
  2520. LatexCommand ref
  2521. reference "fig:m-pax-violin"
  2522. plural "false"
  2523. caps "false"
  2524. noprefix "false"
  2525. \end_inset
  2526. ,
  2527. \begin_inset CommandInset ref
  2528. LatexCommand ref
  2529. reference "fig:MA-PAX-rma-frma"
  2530. plural "false"
  2531. caps "false"
  2532. noprefix "false"
  2533. \end_inset
  2534. , and
  2535. \begin_inset CommandInset ref
  2536. LatexCommand ref
  2537. reference "fig:ma-bx-frma-frma"
  2538. plural "false"
  2539. caps "false"
  2540. noprefix "false"
  2541. \end_inset
  2542. show exactly the same information for the blood samples, once again comparing
  2543. the normalized expression values between normalizations for all probe sets
  2544. across 20 randomly selected test arrays.
  2545. Once again, there is a wider distribution of log ratios between RMA-normalized
  2546. values and fRMA-normalized, and a much tighter distribution when comparing
  2547. different fRMA normalizations to each other, indicating that the fRMA training
  2548. process is robust to random batch downsampling for the blood samples as
  2549. well.
  2550. \end_layout
  2551. \begin_layout Standard
  2552. \begin_inset Float figure
  2553. wide false
  2554. sideways false
  2555. status collapsed
  2556. \begin_layout Plain Layout
  2557. \align center
  2558. \begin_inset Graphics
  2559. filename graphics/frma-pax-bx/M-PAX-violin.pdf
  2560. lyxscale 40
  2561. height 80theight%
  2562. groupId m-violin
  2563. \end_inset
  2564. \end_layout
  2565. \begin_layout Plain Layout
  2566. \begin_inset Caption Standard
  2567. \begin_layout Plain Layout
  2568. \begin_inset CommandInset label
  2569. LatexCommand label
  2570. name "fig:m-pax-violin"
  2571. \end_inset
  2572. \series bold
  2573. Violin plot of log ratios between normalizations for 20 blood samples.
  2574. \series default
  2575. Each of 20 randomly selected blood samples was normalized with RMA and with
  2576. 5 different sets of fRMA vectors.
  2577. This shows the distribution of log ratios between normalized expression
  2578. values, aggregated across all 20 arrays.
  2579. \end_layout
  2580. \end_inset
  2581. \end_layout
  2582. \end_inset
  2583. \end_layout
  2584. \begin_layout Standard
  2585. \begin_inset Float figure
  2586. wide false
  2587. sideways false
  2588. status collapsed
  2589. \begin_layout Plain Layout
  2590. \align center
  2591. \begin_inset Graphics
  2592. filename graphics/frma-pax-bx/MA-PAX-RMA.fRMA.pdf
  2593. lyxscale 50
  2594. width 100text%
  2595. groupId ma-frma
  2596. \end_inset
  2597. \end_layout
  2598. \begin_layout Plain Layout
  2599. \begin_inset Caption Standard
  2600. \begin_layout Plain Layout
  2601. \begin_inset CommandInset label
  2602. LatexCommand label
  2603. name "fig:MA-PAX-rma-frma"
  2604. \end_inset
  2605. \series bold
  2606. Representative MA plot comparing RMA against fRMA for 20 blood samples.
  2607. \series default
  2608. Averages and log ratios were computed for every probe in each of 20 blood
  2609. samples between RMA normalization and fRMA.
  2610. Density of points is represented by darkness of shading, and individual
  2611. outlier points are plotted.
  2612. \end_layout
  2613. \end_inset
  2614. \end_layout
  2615. \begin_layout Plain Layout
  2616. \end_layout
  2617. \end_inset
  2618. \end_layout
  2619. \begin_layout Standard
  2620. \begin_inset Float figure
  2621. wide false
  2622. sideways false
  2623. status collapsed
  2624. \begin_layout Plain Layout
  2625. \align center
  2626. \begin_inset Graphics
  2627. filename graphics/frma-pax-bx/MA-PAX-fRMA.fRMA.pdf
  2628. lyxscale 50
  2629. width 100text%
  2630. groupId ma-frma
  2631. \end_inset
  2632. \end_layout
  2633. \begin_layout Plain Layout
  2634. \begin_inset Caption Standard
  2635. \begin_layout Plain Layout
  2636. \begin_inset CommandInset label
  2637. LatexCommand label
  2638. name "fig:MA-PAX-frma-frma"
  2639. \end_inset
  2640. \series bold
  2641. Representative MA plot comparing different fRMA vectors for 20 blood samples.
  2642. \series default
  2643. Averages and log ratios were computed for every probe in each of 20 blood
  2644. samples between fRMA normalizations using vectors from two different batch
  2645. samplings.
  2646. Density of points is represented by darkness of shading, and individual
  2647. outlier points are plotted.
  2648. \end_layout
  2649. \end_inset
  2650. \end_layout
  2651. \end_inset
  2652. \end_layout
  2653. \begin_layout Standard
  2654. \begin_inset ERT
  2655. status collapsed
  2656. \begin_layout Plain Layout
  2657. \backslash
  2658. FloatBarrier
  2659. \end_layout
  2660. \end_inset
  2661. \end_layout
  2662. \begin_layout Subsection
  2663. SVA, voom, and array weights improve model fit for methylation array data
  2664. \end_layout
  2665. \begin_layout Standard
  2666. \begin_inset Float figure
  2667. wide false
  2668. sideways false
  2669. status collapsed
  2670. \begin_layout Plain Layout
  2671. \align center
  2672. \begin_inset Flex TODO Note (inline)
  2673. status open
  2674. \begin_layout Plain Layout
  2675. Fix axis labels:
  2676. \begin_inset Quotes eld
  2677. \end_inset
  2678. log2 M-value
  2679. \begin_inset Quotes erd
  2680. \end_inset
  2681. is redundant because M-values are already log scale
  2682. \end_layout
  2683. \end_inset
  2684. \end_layout
  2685. \begin_layout Plain Layout
  2686. \align center
  2687. \begin_inset Graphics
  2688. filename graphics/methylvoom/unadj.dupcor/meanvar-trends-PAGE1-CROP-RASTER.png
  2689. lyxscale 15
  2690. width 100col%
  2691. groupId raster-600ppi
  2692. \end_inset
  2693. \end_layout
  2694. \begin_layout Plain Layout
  2695. \begin_inset Caption Standard
  2696. \begin_layout Plain Layout
  2697. \series bold
  2698. \begin_inset CommandInset label
  2699. LatexCommand label
  2700. name "fig:meanvar-basic"
  2701. \end_inset
  2702. Mean-variance trend for analysis A.
  2703. \series default
  2704. The log2(standard deviation) for each probe is plotted against the probe's
  2705. average M-value across all samples as a black point, with some transparency
  2706. to make overplotting more visible, since there are about 450,000 points.
  2707. Density of points is also indicated by the dark blue contour lines.
  2708. The prior variance trend estimated by eBayes is shown in light blue, while
  2709. the lowess trend of the points is shown in red.
  2710. \end_layout
  2711. \end_inset
  2712. \end_layout
  2713. \end_inset
  2714. \end_layout
  2715. \begin_layout Standard
  2716. Figure
  2717. \begin_inset CommandInset ref
  2718. LatexCommand ref
  2719. reference "fig:meanvar-basic"
  2720. plural "false"
  2721. caps "false"
  2722. noprefix "false"
  2723. \end_inset
  2724. shows the relationship between the mean M-value and the standard deviation
  2725. calculated for each probe in the methylation array data set.
  2726. A few features of the data are apparent.
  2727. First, the data are very strongly bimodal, with peaks in the density around
  2728. M-values of +4 and -4.
  2729. These modes correspond to methylation sites that are nearly 100% methylated
  2730. and nearly 100% unmethylated, respectively.
  2731. The strong bomodality indicates that a majority of probes interrogate sites
  2732. that fall into one of these two categories.
  2733. The points in between these modes represent sites that are either partially
  2734. methylated in many samples, or are fully methylated in some samples and
  2735. fully unmethylated in other samples, or some combination.
  2736. The next visible feature of the data is the W-shaped variance trend.
  2737. The upticks in the variance trend on either side are expected, based on
  2738. the sigmoid transformation exaggerating small differences at extreme M-values
  2739. (Figure
  2740. \begin_inset CommandInset ref
  2741. LatexCommand ref
  2742. reference "fig:Sigmoid-beta-m-mapping"
  2743. plural "false"
  2744. caps "false"
  2745. noprefix "false"
  2746. \end_inset
  2747. ).
  2748. However, the uptick in the center is interesting: it indicates that sites
  2749. that are not constitutitively methylated or unmethylated have a higher
  2750. variance.
  2751. This could be a genuine biological effect, or it could be spurious noise
  2752. that is only observable at sites with varying methylation.
  2753. \end_layout
  2754. \begin_layout Standard
  2755. \begin_inset Float figure
  2756. wide false
  2757. sideways false
  2758. status open
  2759. \begin_layout Plain Layout
  2760. \begin_inset Graphics
  2761. filename graphics/methylvoom/unadj.dupcor.sva.aw/meanvar-trends-PAGE1-CROP-RASTER.png
  2762. lyxscale 15
  2763. width 100col%
  2764. groupId raster-600ppi
  2765. \end_inset
  2766. \end_layout
  2767. \begin_layout Plain Layout
  2768. \begin_inset Caption Standard
  2769. \begin_layout Plain Layout
  2770. \series bold
  2771. \begin_inset CommandInset label
  2772. LatexCommand label
  2773. name "fig:meanvar-sva-aw"
  2774. \end_inset
  2775. Mean-variance trend for analysis B.
  2776. \series default
  2777. Interpretation is as in Figure
  2778. \begin_inset CommandInset ref
  2779. LatexCommand ref
  2780. reference "fig:meanvar-basic"
  2781. plural "false"
  2782. caps "false"
  2783. noprefix "false"
  2784. \end_inset
  2785. .
  2786. \end_layout
  2787. \end_inset
  2788. \end_layout
  2789. \end_inset
  2790. \end_layout
  2791. \begin_layout Standard
  2792. In Figure
  2793. \begin_inset CommandInset ref
  2794. LatexCommand ref
  2795. reference "fig:meanvar-sva-aw"
  2796. plural "false"
  2797. caps "false"
  2798. noprefix "false"
  2799. \end_inset
  2800. , we see the mean-variance trend for the same methylation array data, this
  2801. time with surrogate variables and sample quality weights estimated from
  2802. the data and included in the model.
  2803. As expected, the overall average variance is smaller, since the surrogate
  2804. variables account for some of the variance.
  2805. In addition, the uptick in variance in the middle of the M-value range
  2806. has disappeared, turning the W shape into a wide U shape.
  2807. This indicates that the excess variance in the probes with intermediate
  2808. M-values was explained by systematic variations not correlated with known
  2809. covariates, and these variations were modeled by the surrogate variables.
  2810. The result is a nearly flat variance trend for the entire intermediate
  2811. M-value range from about -3 to +3.
  2812. In contrast, the excess variance at the extremes was not
  2813. \begin_inset Quotes eld
  2814. \end_inset
  2815. absorbed
  2816. \begin_inset Quotes erd
  2817. \end_inset
  2818. by the surrogate variables and remains in the plot, indicating that this
  2819. variation has no systematic component: probes with extreme M-values are
  2820. uniformly more variable across all samples, as expected.
  2821. \end_layout
  2822. \begin_layout Standard
  2823. \begin_inset Float figure
  2824. wide false
  2825. sideways false
  2826. status collapsed
  2827. \begin_layout Plain Layout
  2828. \begin_inset Graphics
  2829. filename graphics/methylvoom/unadj.dupcor.sva.voomaw/meanvar-trends-PAGE2-CROP-RASTER.png
  2830. lyxscale 15
  2831. width 100col%
  2832. groupId raster-600ppi
  2833. \end_inset
  2834. \end_layout
  2835. \begin_layout Plain Layout
  2836. \begin_inset Caption Standard
  2837. \begin_layout Plain Layout
  2838. \series bold
  2839. \begin_inset CommandInset label
  2840. LatexCommand label
  2841. name "fig:meanvar-sva-voomaw"
  2842. \end_inset
  2843. Mean-variance trend after voom modeling in analysis C.
  2844. \series default
  2845. Interpretation is as in Figure
  2846. \begin_inset CommandInset ref
  2847. LatexCommand ref
  2848. reference "fig:meanvar-basic"
  2849. plural "false"
  2850. caps "false"
  2851. noprefix "false"
  2852. \end_inset
  2853. .
  2854. \end_layout
  2855. \end_inset
  2856. \end_layout
  2857. \end_inset
  2858. \end_layout
  2859. \begin_layout Standard
  2860. Figure
  2861. \begin_inset CommandInset ref
  2862. LatexCommand ref
  2863. reference "fig:meanvar-sva-voomaw"
  2864. plural "false"
  2865. caps "false"
  2866. noprefix "false"
  2867. \end_inset
  2868. shows the mean-variance trend after fitting the model with the observation
  2869. weights assigned by voom based on the mean-variance trend shown in Figure
  2870. \begin_inset CommandInset ref
  2871. LatexCommand ref
  2872. reference "fig:meanvar-sva-aw"
  2873. plural "false"
  2874. caps "false"
  2875. noprefix "false"
  2876. \end_inset
  2877. .
  2878. As expected, the weights exactly counteract the trend in the data, resulting
  2879. in a nearly flat trend centered vertically at 1 (i.e.
  2880. 0 on the log scale).
  2881. This shows that the observations with extreme M-values have been appropriately
  2882. down-weighted to account for the fact that the noise in those observations
  2883. has been amplified by the non-linear M-value transformation.
  2884. In turn, this gives relatively more weight to observervations in the middle
  2885. region, which are more likely to correspond to probes measuring interesting
  2886. biology (not constitutively methylated or unmethylated).
  2887. \end_layout
  2888. \begin_layout Standard
  2889. \begin_inset Float table
  2890. wide false
  2891. sideways false
  2892. status collapsed
  2893. \begin_layout Plain Layout
  2894. \align center
  2895. \begin_inset Tabular
  2896. <lyxtabular version="3" rows="5" columns="3">
  2897. <features tabularvalignment="middle">
  2898. <column alignment="center" valignment="top">
  2899. <column alignment="center" valignment="top">
  2900. <column alignment="center" valignment="top">
  2901. <row>
  2902. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2903. \begin_inset Text
  2904. \begin_layout Plain Layout
  2905. Covariate
  2906. \end_layout
  2907. \end_inset
  2908. </cell>
  2909. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2910. \begin_inset Text
  2911. \begin_layout Plain Layout
  2912. Test used
  2913. \end_layout
  2914. \end_inset
  2915. </cell>
  2916. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  2917. \begin_inset Text
  2918. \begin_layout Plain Layout
  2919. p-value
  2920. \end_layout
  2921. \end_inset
  2922. </cell>
  2923. </row>
  2924. <row>
  2925. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2926. \begin_inset Text
  2927. \begin_layout Plain Layout
  2928. Transplant Status
  2929. \end_layout
  2930. \end_inset
  2931. </cell>
  2932. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2933. \begin_inset Text
  2934. \begin_layout Plain Layout
  2935. F-test
  2936. \end_layout
  2937. \end_inset
  2938. </cell>
  2939. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  2940. \begin_inset Text
  2941. \begin_layout Plain Layout
  2942. 0.404
  2943. \end_layout
  2944. \end_inset
  2945. </cell>
  2946. </row>
  2947. <row>
  2948. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2949. \begin_inset Text
  2950. \begin_layout Plain Layout
  2951. Diabetes Diagnosis
  2952. \end_layout
  2953. \end_inset
  2954. </cell>
  2955. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2956. \begin_inset Text
  2957. \begin_layout Plain Layout
  2958. t-test
  2959. \end_layout
  2960. \end_inset
  2961. </cell>
  2962. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  2963. \begin_inset Text
  2964. \begin_layout Plain Layout
  2965. 0.00106
  2966. \end_layout
  2967. \end_inset
  2968. </cell>
  2969. </row>
  2970. <row>
  2971. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2972. \begin_inset Text
  2973. \begin_layout Plain Layout
  2974. Sex
  2975. \end_layout
  2976. \end_inset
  2977. </cell>
  2978. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2979. \begin_inset Text
  2980. \begin_layout Plain Layout
  2981. t-test
  2982. \end_layout
  2983. \end_inset
  2984. </cell>
  2985. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  2986. \begin_inset Text
  2987. \begin_layout Plain Layout
  2988. 0.148
  2989. \end_layout
  2990. \end_inset
  2991. </cell>
  2992. </row>
  2993. <row>
  2994. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2995. \begin_inset Text
  2996. \begin_layout Plain Layout
  2997. Age
  2998. \end_layout
  2999. \end_inset
  3000. </cell>
  3001. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3002. \begin_inset Text
  3003. \begin_layout Plain Layout
  3004. linear regression
  3005. \end_layout
  3006. \end_inset
  3007. </cell>
  3008. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  3009. \begin_inset Text
  3010. \begin_layout Plain Layout
  3011. 0.212
  3012. \end_layout
  3013. \end_inset
  3014. </cell>
  3015. </row>
  3016. </lyxtabular>
  3017. \end_inset
  3018. \end_layout
  3019. \begin_layout Plain Layout
  3020. \begin_inset Caption Standard
  3021. \begin_layout Plain Layout
  3022. \series bold
  3023. \begin_inset CommandInset label
  3024. LatexCommand label
  3025. name "tab:weight-covariate-tests"
  3026. \end_inset
  3027. Association of sample weights with clinical covariates in methylation array
  3028. data.
  3029. \series default
  3030. Computed sample quality log weights were tested for significant association
  3031. with each of the variables in the model (1st column).
  3032. An appropriate test was selected for each variable (2nd column).
  3033. P-values for significant association are shown in the 3rd column.
  3034. \end_layout
  3035. \end_inset
  3036. \end_layout
  3037. \end_inset
  3038. \end_layout
  3039. \begin_layout Standard
  3040. \begin_inset Flex TODO Note (inline)
  3041. status open
  3042. \begin_layout Plain Layout
  3043. Redo the sample weight boxplot with notches and without fill colors (and
  3044. update the legend)
  3045. \end_layout
  3046. \end_inset
  3047. \end_layout
  3048. \begin_layout Standard
  3049. \begin_inset Float figure
  3050. wide false
  3051. sideways false
  3052. status collapsed
  3053. \begin_layout Plain Layout
  3054. \begin_inset Graphics
  3055. filename graphics/methylvoom/unadj.dupcor.sva.voomaw/sample-weights-PAGE3-CROP.pdf
  3056. \end_inset
  3057. \end_layout
  3058. \begin_layout Plain Layout
  3059. \begin_inset Caption Standard
  3060. \begin_layout Plain Layout
  3061. \begin_inset CommandInset label
  3062. LatexCommand label
  3063. name "fig:diabetes-sample-weights"
  3064. \end_inset
  3065. \series bold
  3066. Boxplot of sample quality weights grouped by diabetes diagnosis.
  3067. \series default
  3068. Sample were grouped based on diabetes diagnosis, and the distribution of
  3069. sample quality weights for each diagnosis was plotted.
  3070. \end_layout
  3071. \end_inset
  3072. \end_layout
  3073. \begin_layout Plain Layout
  3074. \end_layout
  3075. \end_inset
  3076. \end_layout
  3077. \begin_layout Standard
  3078. To determine whether any of the known experimental factors had an impact
  3079. on data quality, the sample quality weights estimated from the data were
  3080. tested for association with each of the experimental factors (Table
  3081. \begin_inset CommandInset ref
  3082. LatexCommand ref
  3083. reference "tab:weight-covariate-tests"
  3084. plural "false"
  3085. caps "false"
  3086. noprefix "false"
  3087. \end_inset
  3088. ).
  3089. Diabetes diagnosis was found to have a potentially significant association
  3090. with the sample weights, with a t-test p-value of
  3091. \begin_inset Formula $1.06\times10^{-3}$
  3092. \end_inset
  3093. .
  3094. Figure
  3095. \begin_inset CommandInset ref
  3096. LatexCommand ref
  3097. reference "fig:diabetes-sample-weights"
  3098. plural "false"
  3099. caps "false"
  3100. noprefix "false"
  3101. \end_inset
  3102. shows the distribution of sample weights grouped by diabetes diagnosis.
  3103. The samples from patients with Type 2 diabetes were assigned significantly
  3104. lower weights than those from patients with Type 1 diabetes.
  3105. This indicates that the type 2 diabetes samples had an overall higher variance
  3106. on average across all probes.
  3107. \end_layout
  3108. \begin_layout Standard
  3109. \begin_inset Float table
  3110. wide false
  3111. sideways false
  3112. status collapsed
  3113. \begin_layout Plain Layout
  3114. \align center
  3115. \begin_inset Flex TODO Note (inline)
  3116. status open
  3117. \begin_layout Plain Layout
  3118. Consider transposing this table and the next one
  3119. \end_layout
  3120. \end_inset
  3121. \end_layout
  3122. \begin_layout Plain Layout
  3123. \align center
  3124. \begin_inset Tabular
  3125. <lyxtabular version="3" rows="5" columns="4">
  3126. <features tabularvalignment="middle">
  3127. <column alignment="center" valignment="top">
  3128. <column alignment="center" valignment="top">
  3129. <column alignment="center" valignment="top">
  3130. <column alignment="center" valignment="top">
  3131. <row>
  3132. <cell alignment="center" valignment="top" usebox="none">
  3133. \begin_inset Text
  3134. \begin_layout Plain Layout
  3135. \end_layout
  3136. \end_inset
  3137. </cell>
  3138. <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3139. \begin_inset Text
  3140. \begin_layout Plain Layout
  3141. Analysis
  3142. \end_layout
  3143. \end_inset
  3144. </cell>
  3145. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3146. \begin_inset Text
  3147. \begin_layout Plain Layout
  3148. \end_layout
  3149. \end_inset
  3150. </cell>
  3151. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3152. \begin_inset Text
  3153. \begin_layout Plain Layout
  3154. \end_layout
  3155. \end_inset
  3156. </cell>
  3157. </row>
  3158. <row>
  3159. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3160. \begin_inset Text
  3161. \begin_layout Plain Layout
  3162. Contrast
  3163. \end_layout
  3164. \end_inset
  3165. </cell>
  3166. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3167. \begin_inset Text
  3168. \begin_layout Plain Layout
  3169. A
  3170. \end_layout
  3171. \end_inset
  3172. </cell>
  3173. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3174. \begin_inset Text
  3175. \begin_layout Plain Layout
  3176. B
  3177. \end_layout
  3178. \end_inset
  3179. </cell>
  3180. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  3181. \begin_inset Text
  3182. \begin_layout Plain Layout
  3183. C
  3184. \end_layout
  3185. \end_inset
  3186. </cell>
  3187. </row>
  3188. <row>
  3189. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3190. \begin_inset Text
  3191. \begin_layout Plain Layout
  3192. TX vs AR
  3193. \end_layout
  3194. \end_inset
  3195. </cell>
  3196. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3197. \begin_inset Text
  3198. \begin_layout Plain Layout
  3199. 0
  3200. \end_layout
  3201. \end_inset
  3202. </cell>
  3203. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3204. \begin_inset Text
  3205. \begin_layout Plain Layout
  3206. 25
  3207. \end_layout
  3208. \end_inset
  3209. </cell>
  3210. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3211. \begin_inset Text
  3212. \begin_layout Plain Layout
  3213. 22
  3214. \end_layout
  3215. \end_inset
  3216. </cell>
  3217. </row>
  3218. <row>
  3219. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3220. \begin_inset Text
  3221. \begin_layout Plain Layout
  3222. TX vs ADNR
  3223. \end_layout
  3224. \end_inset
  3225. </cell>
  3226. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3227. \begin_inset Text
  3228. \begin_layout Plain Layout
  3229. 7
  3230. \end_layout
  3231. \end_inset
  3232. </cell>
  3233. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3234. \begin_inset Text
  3235. \begin_layout Plain Layout
  3236. 338
  3237. \end_layout
  3238. \end_inset
  3239. </cell>
  3240. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3241. \begin_inset Text
  3242. \begin_layout Plain Layout
  3243. 369
  3244. \end_layout
  3245. \end_inset
  3246. </cell>
  3247. </row>
  3248. <row>
  3249. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3250. \begin_inset Text
  3251. \begin_layout Plain Layout
  3252. TX vs CAN
  3253. \end_layout
  3254. \end_inset
  3255. </cell>
  3256. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3257. \begin_inset Text
  3258. \begin_layout Plain Layout
  3259. 0
  3260. \end_layout
  3261. \end_inset
  3262. </cell>
  3263. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3264. \begin_inset Text
  3265. \begin_layout Plain Layout
  3266. 231
  3267. \end_layout
  3268. \end_inset
  3269. </cell>
  3270. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  3271. \begin_inset Text
  3272. \begin_layout Plain Layout
  3273. 278
  3274. \end_layout
  3275. \end_inset
  3276. </cell>
  3277. </row>
  3278. </lyxtabular>
  3279. \end_inset
  3280. \end_layout
  3281. \begin_layout Plain Layout
  3282. \begin_inset Caption Standard
  3283. \begin_layout Plain Layout
  3284. \begin_inset CommandInset label
  3285. LatexCommand label
  3286. name "tab:methyl-num-signif"
  3287. \end_inset
  3288. \series bold
  3289. Number of probes significant at 10% FDR for each contrast in each analysis.
  3290. \series default
  3291. For each of the analyses in Table
  3292. \begin_inset CommandInset ref
  3293. LatexCommand ref
  3294. reference "tab:Summary-of-meth-analysis"
  3295. plural "false"
  3296. caps "false"
  3297. noprefix "false"
  3298. \end_inset
  3299. , the table shows the number of probes called significantly differentially
  3300. methylated at a threshold of 10% FDR for each comparison between TX and
  3301. the other 3 transplant statuses.
  3302. \end_layout
  3303. \end_inset
  3304. \end_layout
  3305. \end_inset
  3306. \end_layout
  3307. \begin_layout Standard
  3308. \begin_inset Float table
  3309. wide false
  3310. sideways false
  3311. status collapsed
  3312. \begin_layout Plain Layout
  3313. \align center
  3314. \begin_inset Tabular
  3315. <lyxtabular version="3" rows="5" columns="4">
  3316. <features tabularvalignment="middle">
  3317. <column alignment="center" valignment="top">
  3318. <column alignment="center" valignment="top">
  3319. <column alignment="center" valignment="top">
  3320. <column alignment="center" valignment="top">
  3321. <row>
  3322. <cell alignment="center" valignment="top" usebox="none">
  3323. \begin_inset Text
  3324. \begin_layout Plain Layout
  3325. \end_layout
  3326. \end_inset
  3327. </cell>
  3328. <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3329. \begin_inset Text
  3330. \begin_layout Plain Layout
  3331. Analysis
  3332. \end_layout
  3333. \end_inset
  3334. </cell>
  3335. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3336. \begin_inset Text
  3337. \begin_layout Plain Layout
  3338. \end_layout
  3339. \end_inset
  3340. </cell>
  3341. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3342. \begin_inset Text
  3343. \begin_layout Plain Layout
  3344. \end_layout
  3345. \end_inset
  3346. </cell>
  3347. </row>
  3348. <row>
  3349. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3350. \begin_inset Text
  3351. \begin_layout Plain Layout
  3352. Contrast
  3353. \end_layout
  3354. \end_inset
  3355. </cell>
  3356. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3357. \begin_inset Text
  3358. \begin_layout Plain Layout
  3359. A
  3360. \end_layout
  3361. \end_inset
  3362. </cell>
  3363. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3364. \begin_inset Text
  3365. \begin_layout Plain Layout
  3366. B
  3367. \end_layout
  3368. \end_inset
  3369. </cell>
  3370. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  3371. \begin_inset Text
  3372. \begin_layout Plain Layout
  3373. C
  3374. \end_layout
  3375. \end_inset
  3376. </cell>
  3377. </row>
  3378. <row>
  3379. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3380. \begin_inset Text
  3381. \begin_layout Plain Layout
  3382. TX vs AR
  3383. \end_layout
  3384. \end_inset
  3385. </cell>
  3386. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3387. \begin_inset Text
  3388. \begin_layout Plain Layout
  3389. 0
  3390. \end_layout
  3391. \end_inset
  3392. </cell>
  3393. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3394. \begin_inset Text
  3395. \begin_layout Plain Layout
  3396. 10,063
  3397. \end_layout
  3398. \end_inset
  3399. </cell>
  3400. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3401. \begin_inset Text
  3402. \begin_layout Plain Layout
  3403. 11,225
  3404. \end_layout
  3405. \end_inset
  3406. </cell>
  3407. </row>
  3408. <row>
  3409. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3410. \begin_inset Text
  3411. \begin_layout Plain Layout
  3412. TX vs ADNR
  3413. \end_layout
  3414. \end_inset
  3415. </cell>
  3416. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3417. \begin_inset Text
  3418. \begin_layout Plain Layout
  3419. 27
  3420. \end_layout
  3421. \end_inset
  3422. </cell>
  3423. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3424. \begin_inset Text
  3425. \begin_layout Plain Layout
  3426. 12,674
  3427. \end_layout
  3428. \end_inset
  3429. </cell>
  3430. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3431. \begin_inset Text
  3432. \begin_layout Plain Layout
  3433. 13,086
  3434. \end_layout
  3435. \end_inset
  3436. </cell>
  3437. </row>
  3438. <row>
  3439. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3440. \begin_inset Text
  3441. \begin_layout Plain Layout
  3442. TX vs CAN
  3443. \end_layout
  3444. \end_inset
  3445. </cell>
  3446. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3447. \begin_inset Text
  3448. \begin_layout Plain Layout
  3449. 966
  3450. \end_layout
  3451. \end_inset
  3452. </cell>
  3453. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3454. \begin_inset Text
  3455. \begin_layout Plain Layout
  3456. 20,039
  3457. \end_layout
  3458. \end_inset
  3459. </cell>
  3460. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  3461. \begin_inset Text
  3462. \begin_layout Plain Layout
  3463. 20,955
  3464. \end_layout
  3465. \end_inset
  3466. </cell>
  3467. </row>
  3468. </lyxtabular>
  3469. \end_inset
  3470. \end_layout
  3471. \begin_layout Plain Layout
  3472. \begin_inset Caption Standard
  3473. \begin_layout Plain Layout
  3474. \begin_inset CommandInset label
  3475. LatexCommand label
  3476. name "tab:methyl-est-nonnull"
  3477. \end_inset
  3478. \series bold
  3479. Estimated number of non-null tests for each contrast in each analysis.
  3480. \series default
  3481. For each of the analyses in Table
  3482. \begin_inset CommandInset ref
  3483. LatexCommand ref
  3484. reference "tab:Summary-of-meth-analysis"
  3485. plural "false"
  3486. caps "false"
  3487. noprefix "false"
  3488. \end_inset
  3489. , the table shows the number of probes estimated to be differentially methylated
  3490. between TX and the other 3 transplant statuses.
  3491. \end_layout
  3492. \end_inset
  3493. \end_layout
  3494. \end_inset
  3495. \end_layout
  3496. \begin_layout Standard
  3497. \begin_inset Float figure
  3498. wide false
  3499. sideways false
  3500. status collapsed
  3501. \begin_layout Plain Layout
  3502. \begin_inset Flex TODO Note (inline)
  3503. status open
  3504. \begin_layout Plain Layout
  3505. Re-generate p-value histograms for all relevant contrasts in a single page,
  3506. then write an appropriate legend.
  3507. \end_layout
  3508. \end_inset
  3509. \end_layout
  3510. \begin_layout Plain Layout
  3511. \align center
  3512. \series bold
  3513. [Figure goes here]
  3514. \end_layout
  3515. \begin_layout Plain Layout
  3516. \begin_inset Caption Standard
  3517. \begin_layout Plain Layout
  3518. \series bold
  3519. \begin_inset CommandInset label
  3520. LatexCommand label
  3521. name "fig:meth-p-value-histograms"
  3522. \end_inset
  3523. Probe p-value histograms for each contrast in each analysis.
  3524. \end_layout
  3525. \end_inset
  3526. \end_layout
  3527. \begin_layout Plain Layout
  3528. \end_layout
  3529. \end_inset
  3530. \end_layout
  3531. \begin_layout Standard
  3532. Table
  3533. \begin_inset CommandInset ref
  3534. LatexCommand ref
  3535. reference "tab:methyl-num-signif"
  3536. plural "false"
  3537. caps "false"
  3538. noprefix "false"
  3539. \end_inset
  3540. shows the number of significantly differentially methylated probes reported
  3541. by each analysis for each comparison of interest at an FDR of 10%.
  3542. As expected, the more elaborate analyses, B and C, report more significant
  3543. probes than the more basic analysis A, consistent with the conclusions
  3544. above that the data contain hidden systematic variations that must be modeled.
  3545. Table
  3546. \begin_inset CommandInset ref
  3547. LatexCommand ref
  3548. reference "tab:methyl-est-nonnull"
  3549. plural "false"
  3550. caps "false"
  3551. noprefix "false"
  3552. \end_inset
  3553. shows the estimated number differentially methylated probes for each test
  3554. from each analysis.
  3555. This was computed by estimating the proportion of null hypotheses that
  3556. were true using the method of
  3557. \begin_inset CommandInset citation
  3558. LatexCommand cite
  3559. key "Phipson2013"
  3560. literal "false"
  3561. \end_inset
  3562. and subtracting that fraction from the total number of probes, yielding
  3563. an estimate of the number of null hypotheses that are false based on the
  3564. distribution of p-values across the entire dataset.
  3565. Note that this does not identify which null hypotheses should be rejected
  3566. (i.e.
  3567. which probes are significant); it only estimates the true number of such
  3568. probes.
  3569. Once again, analyses B and C result it much larger estimates for the number
  3570. of differentially methylated probes.
  3571. In this case, analysis C, the only analysis that includes voom, estimates
  3572. the largest number of differentially methylated probes for all 3 contrasts.
  3573. If the assumptions of all the methods employed hold, then this represents
  3574. a gain in statistical power over the simpler analysis A.
  3575. Figure
  3576. \begin_inset CommandInset ref
  3577. LatexCommand ref
  3578. reference "fig:meth-p-value-histograms"
  3579. plural "false"
  3580. caps "false"
  3581. noprefix "false"
  3582. \end_inset
  3583. shows the p-value distributions for each test, from which the numbers in
  3584. Table
  3585. \begin_inset CommandInset ref
  3586. LatexCommand ref
  3587. reference "tab:methyl-est-nonnull"
  3588. plural "false"
  3589. caps "false"
  3590. noprefix "false"
  3591. \end_inset
  3592. were generated.
  3593. The distributions for analysis A all have a dip in density near zero, which
  3594. is a strong sign of a poor model fit.
  3595. The histograms for analyses B and C are more well-behaved, with a uniform
  3596. component stretching all the way from 0 to 1 representing the probes for
  3597. which the null hypotheses is true (no differential methylation), and a
  3598. zero-biased component representing the probes for which the null hypothesis
  3599. is false (differentially methylated).
  3600. These histograms do not indicate any major issues with the model fit.
  3601. \end_layout
  3602. \begin_layout Standard
  3603. \begin_inset Flex TODO Note (inline)
  3604. status open
  3605. \begin_layout Plain Layout
  3606. Maybe include the PCA plots before/after SVA effect subtraction?
  3607. \end_layout
  3608. \end_inset
  3609. \end_layout
  3610. \begin_layout Standard
  3611. \begin_inset ERT
  3612. status collapsed
  3613. \begin_layout Plain Layout
  3614. \backslash
  3615. FloatBarrier
  3616. \end_layout
  3617. \end_inset
  3618. \end_layout
  3619. \begin_layout Section
  3620. Discussion
  3621. \end_layout
  3622. \begin_layout Subsection
  3623. fRMA achieves clinically applicable normalization without sacrificing classifica
  3624. tion performance
  3625. \end_layout
  3626. \begin_layout Standard
  3627. As shown in Figure
  3628. \begin_inset CommandInset ref
  3629. LatexCommand ref
  3630. reference "fig:Classifier-probabilities-RMA"
  3631. plural "false"
  3632. caps "false"
  3633. noprefix "false"
  3634. \end_inset
  3635. , improper normalization, particularly separate normalization of training
  3636. and test samples, leads to unwanted biases in classification.
  3637. In a controlled experimental context, it is always possible to correct
  3638. this issue by normalizing all experimental samples together.
  3639. However, because it is not feasible to normalize all samples together in
  3640. a clinical context, a single-channel normalization is required is required.
  3641. \end_layout
  3642. \begin_layout Standard
  3643. The major concern in using a single-channel normalization is that non-single-cha
  3644. nnel methods can share information between arrays to improve the normalization,
  3645. and single-channel methods risk sacrificing the gains in normalization
  3646. accuracy that come from this information sharing.
  3647. In the case of RMA, this information sharing is accomplished through quantile
  3648. normalization and median polish steps.
  3649. The need for information sharing in quantile normalization can easily be
  3650. removed by learning a fixed set of quantiles from external data and normalizing
  3651. each array to these fixed quantiles, instead of the quantiles of the data
  3652. itself.
  3653. As long as the fixed quantiles are reasonable, the result will be similar
  3654. to standard RMA.
  3655. However, there is no analogous way to eliminate cross-array information
  3656. sharing in the median polish step, so fRMA replaces this with a weighted
  3657. average of probes on each array, with the weights learned from external
  3658. data.
  3659. This step of fRMA has the greatest potential to diverge from RMA un undesirable
  3660. ways.
  3661. \end_layout
  3662. \begin_layout Standard
  3663. However, when run on real data, fRMA performed at least as well as RMA in
  3664. both the internal validation and external validation tests.
  3665. This shows that fRMA can be used to normalize individual clinical samples
  3666. in a class prediction context without sacrificing the classifier performance
  3667. that would be obtained by using the more well-established RMA for normalization.
  3668. The other single-channel normalization method considered, SCAN, showed
  3669. some loss of AUC in the external validation test.
  3670. Based on these results, fRMA is the preferred normalization for clinical
  3671. samples in a class prediction context.
  3672. \end_layout
  3673. \begin_layout Subsection
  3674. Robust fRMA vectors can be generated for new array platforms
  3675. \end_layout
  3676. \begin_layout Standard
  3677. \begin_inset Flex TODO Note (inline)
  3678. status open
  3679. \begin_layout Plain Layout
  3680. Look up the exact numbers, do a find & replace for
  3681. \begin_inset Quotes eld
  3682. \end_inset
  3683. 850
  3684. \begin_inset Quotes erd
  3685. \end_inset
  3686. \end_layout
  3687. \end_inset
  3688. \end_layout
  3689. \begin_layout Standard
  3690. The published fRMA normalization vectors for the hgu133plus2 platform were
  3691. generated from a set of about 850 samples chosen from a wide range of tissues,
  3692. which the authors determined was sufficient to generate a robust set of
  3693. normalization vectors that could be applied across all tissues
  3694. \begin_inset CommandInset citation
  3695. LatexCommand cite
  3696. key "McCall2010"
  3697. literal "false"
  3698. \end_inset
  3699. .
  3700. Since we only had hthgu133pluspm for 2 tissues of interest, our needs were
  3701. more modest.
  3702. Even using only 130 samples in 26 batches of 5 samples each for kidney
  3703. biopsies, we were able to train a robust set of fRMA normalization vectors
  3704. that were not meaningfully affected by the random selection of 5 samples
  3705. from each batch.
  3706. As expected, the training process was just as robust for the blood samples
  3707. with 230 samples in 46 batches of 5 samples each.
  3708. Because these vectors were each generated using training samples from a
  3709. single tissue, they are not suitable for general use, unlike the vectors
  3710. provided with fRMA itself.
  3711. They are purpose-built for normalizing a specific type of sample on a specific
  3712. platform.
  3713. This is a mostly acceptable limitation in the context of developing a machine
  3714. learning classifier for diagnosing a disease based on samples of a specific
  3715. tissue.
  3716. \end_layout
  3717. \begin_layout Standard
  3718. \begin_inset Flex TODO Note (inline)
  3719. status open
  3720. \begin_layout Plain Layout
  3721. How to bring up that these custom vectors were used in another project by
  3722. someone else that was never published?
  3723. \end_layout
  3724. \end_inset
  3725. \end_layout
  3726. \begin_layout Subsection
  3727. voom
  3728. \end_layout
  3729. \begin_layout Itemize
  3730. Methods like voom designed for RNA-seq can also help with array analysis
  3731. \end_layout
  3732. \begin_layout Itemize
  3733. Extracting and modeling confounders common to many features improves model
  3734. correspondence to known biology
  3735. \end_layout
  3736. \begin_layout Chapter
  3737. Globin-blocking for more effective blood RNA-seq analysis in primate animal
  3738. model
  3739. \end_layout
  3740. \begin_layout Standard
  3741. \begin_inset Flex TODO Note (inline)
  3742. status open
  3743. \begin_layout Plain Layout
  3744. Choose between above and the paper title: Optimizing yield of deep RNA sequencin
  3745. g for gene expression profiling by globin reduction of peripheral blood
  3746. samples from cynomolgus monkeys (Macaca fascicularis).
  3747. \end_layout
  3748. \end_inset
  3749. \end_layout
  3750. \begin_layout Standard
  3751. \begin_inset Flex TODO Note (inline)
  3752. status open
  3753. \begin_layout Plain Layout
  3754. Chapter author list: https://tex.stackexchange.com/questions/156862/displaying-aut
  3755. hor-for-each-chapter-in-book Every chapter gets an author list, which may
  3756. or may not be part of a citation to a published/preprinted paper.
  3757. \end_layout
  3758. \end_inset
  3759. \end_layout
  3760. \begin_layout Standard
  3761. \begin_inset Flex TODO Note (inline)
  3762. status open
  3763. \begin_layout Plain Layout
  3764. Preprint then cite the paper
  3765. \end_layout
  3766. \end_inset
  3767. \end_layout
  3768. \begin_layout Section*
  3769. Abstract
  3770. \end_layout
  3771. \begin_layout Paragraph
  3772. Background
  3773. \end_layout
  3774. \begin_layout Standard
  3775. Primate blood contains high concentrations of globin messenger RNA.
  3776. Globin reduction is a standard technique used to improve the expression
  3777. results obtained by DNA microarrays on RNA from blood samples.
  3778. However, with whole transcriptome RNA-sequencing (RNA-seq) quickly replacing
  3779. microarrays for many applications, the impact of globin reduction for RNA-seq
  3780. has not been previously studied.
  3781. Moreover, no off-the-shelf kits are available for globin reduction in nonhuman
  3782. primates.
  3783. \end_layout
  3784. \begin_layout Paragraph
  3785. Results
  3786. \end_layout
  3787. \begin_layout Standard
  3788. Here we report a protocol for RNA-seq in primate blood samples that uses
  3789. complimentary oligonucleotides to block reverse transcription of the alpha
  3790. and beta globin genes.
  3791. In test samples from cynomolgus monkeys (Macaca fascicularis), this globin
  3792. blocking protocol approximately doubles the yield of informative (non-globin)
  3793. reads by greatly reducing the fraction of globin reads, while also improving
  3794. the consistency in sequencing depth between samples.
  3795. The increased yield enables detection of about 2000 more genes, significantly
  3796. increases the correlation in measured gene expression levels between samples,
  3797. and increases the sensitivity of differential gene expression tests.
  3798. \end_layout
  3799. \begin_layout Paragraph
  3800. Conclusions
  3801. \end_layout
  3802. \begin_layout Standard
  3803. These results show that globin blocking significantly improves the cost-effectiv
  3804. eness of mRNA sequencing in primate blood samples by doubling the yield
  3805. of useful reads, allowing detection of more genes, and improving the precision
  3806. of gene expression measurements.
  3807. Based on these results, a globin reducing or blocking protocol is recommended
  3808. for all RNA-seq studies of primate blood samples.
  3809. \end_layout
  3810. \begin_layout Section
  3811. Approach
  3812. \end_layout
  3813. \begin_layout Standard
  3814. \begin_inset Note Note
  3815. status open
  3816. \begin_layout Plain Layout
  3817. Consider putting some of this in the Intro chapter
  3818. \end_layout
  3819. \begin_layout Itemize
  3820. Cynomolgus monkeys as a model organism
  3821. \end_layout
  3822. \begin_deeper
  3823. \begin_layout Itemize
  3824. Highly related to humans
  3825. \end_layout
  3826. \begin_layout Itemize
  3827. Small size and short life cycle - good research animal
  3828. \end_layout
  3829. \begin_layout Itemize
  3830. Genomics resources still in development
  3831. \end_layout
  3832. \end_deeper
  3833. \begin_layout Itemize
  3834. Inadequacy of existing blood RNA-seq protocols
  3835. \end_layout
  3836. \begin_deeper
  3837. \begin_layout Itemize
  3838. Existing protocols use a separate globin pulldown step, slowing down processing
  3839. \end_layout
  3840. \end_deeper
  3841. \end_inset
  3842. \end_layout
  3843. \begin_layout Standard
  3844. Increasingly, researchers are turning to high-throughput mRNA sequencing
  3845. technologies (RNA-seq) in preference to expression microarrays for analysis
  3846. of gene expression
  3847. \begin_inset CommandInset citation
  3848. LatexCommand cite
  3849. key "Mutz2012"
  3850. literal "false"
  3851. \end_inset
  3852. .
  3853. The advantages are even greater for study of model organisms with no well-estab
  3854. lished array platforms available, such as the cynomolgus monkey (Macaca
  3855. fascicularis).
  3856. High fractions of globin mRNA are naturally present in mammalian peripheral
  3857. blood samples (up to 70% of total mRNA) and these are known to interfere
  3858. with the results of array-based expression profiling
  3859. \begin_inset CommandInset citation
  3860. LatexCommand cite
  3861. key "Winn2010"
  3862. literal "false"
  3863. \end_inset
  3864. .
  3865. The importance of globin reduction for RNA-seq of blood has only been evaluated
  3866. for a deepSAGE protocol on human samples
  3867. \begin_inset CommandInset citation
  3868. LatexCommand cite
  3869. key "Mastrokolias2012"
  3870. literal "false"
  3871. \end_inset
  3872. .
  3873. In the present report, we evaluated globin reduction using custom blocking
  3874. oligonucleotides for deep RNA-seq of peripheral blood samples from a nonhuman
  3875. primate, cynomolgus monkey, using the Illumina technology platform.
  3876. We demonstrate that globin reduction significantly improves the cost-effectiven
  3877. ess of RNA-seq in blood samples.
  3878. Thus, our protocol offers a significant advantage to any investigator planning
  3879. to use RNA-seq for gene expression profiling of nonhuman primate blood
  3880. samples.
  3881. Our method can be generally applied to any species by designing complementary
  3882. oligonucleotide blocking probes to the globin gene sequences of that species.
  3883. Indeed, any highly expressed but biologically uninformative transcripts
  3884. can also be blocked to further increase sequencing efficiency and value
  3885. \begin_inset CommandInset citation
  3886. LatexCommand cite
  3887. key "Arnaud2016"
  3888. literal "false"
  3889. \end_inset
  3890. .
  3891. \end_layout
  3892. \begin_layout Section
  3893. Methods
  3894. \end_layout
  3895. \begin_layout Subsection
  3896. Sample collection
  3897. \end_layout
  3898. \begin_layout Standard
  3899. All research reported here was done under IACUC-approved protocols at the
  3900. University of Miami and complied with all applicable federal and state
  3901. regulations and ethical principles for nonhuman primate research.
  3902. Blood draws occurred between 16 April 2012 and 18 June 2015.
  3903. The experimental system involved intrahepatic pancreatic islet transplantation
  3904. into Cynomolgus monkeys with induced diabetes mellitus with or without
  3905. concomitant infusion of mesenchymal stem cells.
  3906. Blood was collected at serial time points before and after transplantation
  3907. into PAXgene Blood RNA tubes (PreAnalytiX/Qiagen, Valencia, CA) at the
  3908. precise volume:volume ratio of 2.5 ml whole blood into 6.9 ml of PAX gene
  3909. additive.
  3910. \end_layout
  3911. \begin_layout Subsection
  3912. Globin Blocking
  3913. \end_layout
  3914. \begin_layout Standard
  3915. Four oligonucleotides were designed to hybridize to the 3’ end of the transcript
  3916. s for Cynomolgus HBA1, HBA2 and HBB, with two hybridization sites for HBB
  3917. and 2 sites for HBA (the chosen sites were identical in both HBA genes).
  3918. All oligos were purchased from Sigma and were entirely composed of 2’O-Me
  3919. bases with a C3 spacer positioned at the 3’ ends to prevent any polymerase
  3920. mediated primer extension.
  3921. \end_layout
  3922. \begin_layout Quote
  3923. HBA1/2 site 1: GCCCACUCAGACUUUAUUCAAAG-C3spacer
  3924. \end_layout
  3925. \begin_layout Quote
  3926. HBA1/2 site 2: GGUGCAAGGAGGGGAGGAG-C3spacer
  3927. \end_layout
  3928. \begin_layout Quote
  3929. HBB site 1: AAUGAAAAUAAAUGUUUUUUAUUAG-C3spacer
  3930. \end_layout
  3931. \begin_layout Quote
  3932. HBB site 2: CUCAAGGCCCUUCAUAAUAUCCC-C3spacer
  3933. \end_layout
  3934. \begin_layout Subsection
  3935. RNA-seq Library Preparation
  3936. \end_layout
  3937. \begin_layout Standard
  3938. Sequencing libraries were prepared with 200ng total RNA from each sample.
  3939. Polyadenylated mRNA was selected from 200 ng aliquots of cynomologus blood-deri
  3940. ved total RNA using Ambion Dynabeads Oligo(dT)25 beads (Invitrogen) following
  3941. manufacturer’s recommended protocol.
  3942. PolyA selected RNA was then combined with 8 pmol of HBA1/2 (site 1), 8
  3943. pmol of HBA1/2 (site 2), 12 pmol of HBB (site 1) and 12 pmol of HBB (site
  3944. 2) oligonucleotides.
  3945. In addition, 20 pmol of RT primer containing a portion of the Illumina
  3946. adapter sequence (B-oligo-dTV: GAGTTCCTTGGCACCCGAGAATTCCATTTTTTTTTTTTTTTTTTTV)
  3947. and 4 µL of 5X First Strand buffer (250 mM Tris-HCl pH 8.3, 375 mM KCl,
  3948. 15mM MgCl2) were added in a total volume of 15 µL.
  3949. The RNA was fragmented by heating this cocktail for 3 minutes at 95°C and
  3950. then placed on ice.
  3951. This was followed by the addition of 2 µL 0.1 M DTT, 1 µL RNaseOUT, 1 µL
  3952. 10mM dNTPs 10% biotin-16 aminoallyl-2’- dUTP and 10% biotin-16 aminoallyl-2’-
  3953. dCTP (TriLink Biotech, San Diego, CA), 1 µL Superscript II (200U/ µL, Thermo-Fi
  3954. sher).
  3955. A second “unblocked” library was prepared in the same way for each sample
  3956. but replacing the blocking oligos with an equivalent volume of water.
  3957. The reaction was carried out at 25°C for 15 minutes and 42°C for 40 minutes,
  3958. followed by incubation at 75°C for 10 minutes to inactivate the reverse
  3959. transcriptase.
  3960. \end_layout
  3961. \begin_layout Standard
  3962. The cDNA/RNA hybrid molecules were purified using 1.8X Ampure XP beads (Agencourt
  3963. ) following supplier’s recommended protocol.
  3964. The cDNA/RNA hybrid was eluted in 25 µL of 10 mM Tris-HCl pH 8.0, and then
  3965. bound to 25 µL of M280 Magnetic Streptavidin beads washed per recommended
  3966. protocol (Thermo-Fisher).
  3967. After 30 minutes of binding, beads were washed one time in 100 µL 0.1N NaOH
  3968. to denature and remove the bound RNA, followed by two 100 µL washes with
  3969. 1X TE buffer.
  3970. \end_layout
  3971. \begin_layout Standard
  3972. Subsequent attachment of the 5-prime Illumina A adapter was performed by
  3973. on-bead random primer extension of the following sequence (A-N8 primer:
  3974. TTCAGAGTTCTACAGTCCGACGATCNNNNNNNN).
  3975. Briefly, beads were resuspended in a 20 µL reaction containing 5 µM A-N8
  3976. primer, 40mM Tris-HCl pH 7.5, 20mM MgCl2, 50mM NaCl, 0.325U/µL Sequenase
  3977. 2.0 (Affymetrix, Santa Clara, CA), 0.0025U/µL inorganic pyrophosphatase (Affymetr
  3978. ix) and 300 µM each dNTP.
  3979. Reaction was incubated at 22°C for 30 minutes, then beads were washed 2
  3980. times with 1X TE buffer (200µL).
  3981. \end_layout
  3982. \begin_layout Standard
  3983. The magnetic streptavidin beads were resuspended in 34 µL nuclease-free
  3984. water and added directly to a PCR tube.
  3985. The two Illumina protocol-specified PCR primers were added at 0.53 µM (Illumina
  3986. TruSeq Universal Primer 1 and Illumina TruSeq barcoded PCR primer 2), along
  3987. with 40 µL 2X KAPA HiFi Hotstart ReadyMix (KAPA, Willmington MA) and thermocycl
  3988. ed as follows: starting with 98°C (2 min-hold); 15 cycles of 98°C, 20sec;
  3989. 60°C, 30sec; 72°C, 30sec; and finished with a 72°C (2 min-hold).
  3990. \end_layout
  3991. \begin_layout Standard
  3992. PCR products were purified with 1X Ampure Beads following manufacturer’s
  3993. recommended protocol.
  3994. Libraries were then analyzed using the Agilent TapeStation and quantitation
  3995. of desired size range was performed by “smear analysis”.
  3996. Samples were pooled in equimolar batches of 16 samples.
  3997. Pooled libraries were size selected on 2% agarose gels (E-Gel EX Agarose
  3998. Gels; Thermo-Fisher).
  3999. Products were cut between 250 and 350 bp (corresponding to insert sizes
  4000. of 130 to 230 bps).
  4001. Finished library pools were then sequenced on the Illumina NextSeq500 instrumen
  4002. t with 75 base read lengths.
  4003. \end_layout
  4004. \begin_layout Subsection
  4005. Read alignment and counting
  4006. \end_layout
  4007. \begin_layout Standard
  4008. Reads were aligned to the cynomolgus genome using STAR
  4009. \begin_inset CommandInset citation
  4010. LatexCommand cite
  4011. key "Dobin2013,Wilson2013"
  4012. literal "false"
  4013. \end_inset
  4014. .
  4015. Counts of uniquely mapped reads were obtained for every gene in each sample
  4016. with the “featureCounts” function from the Rsubread package, using each
  4017. of the three possibilities for the “strandSpecific” option: sense, antisense,
  4018. and unstranded
  4019. \begin_inset CommandInset citation
  4020. LatexCommand cite
  4021. key "Liao2014"
  4022. literal "false"
  4023. \end_inset
  4024. .
  4025. A few artifacts in the cynomolgus genome annotation complicated read counting.
  4026. First, no ortholog is annotated for alpha globin in the cynomolgus genome,
  4027. presumably because the human genome has two alpha globin genes with nearly
  4028. identical sequences, making the orthology relationship ambiguous.
  4029. However, two loci in the cynomolgus genome are as “hemoglobin subunit alpha-lik
  4030. e” (LOC102136192 and LOC102136846).
  4031. LOC102136192 is annotated as a pseudogene while LOC102136846 is annotated
  4032. as protein-coding.
  4033. Our globin reduction protocol was designed to include blocking of these
  4034. two genes.
  4035. Indeed, these two genes have almost the same read counts in each library
  4036. as the properly-annotated HBB gene and much larger counts than any other
  4037. gene in the unblocked libraries, giving confidence that reads derived from
  4038. the real alpha globin are mapping to both genes.
  4039. Thus, reads from both of these loci were counted as alpha globin reads
  4040. in all further analyses.
  4041. The second artifact is a small, uncharacterized non-coding RNA gene (LOC1021365
  4042. 91), which overlaps the HBA-like gene (LOC102136192) on the opposite strand.
  4043. If counting is not performed in stranded mode (or if a non-strand-specific
  4044. sequencing protocol is used), many reads mapping to the globin gene will
  4045. be discarded as ambiguous due to their overlap with this ncRNA gene, resulting
  4046. in significant undercounting of globin reads.
  4047. Therefore, stranded sense counts were used for all further analysis in
  4048. the present study to insure that we accurately accounted for globin transcript
  4049. reduction.
  4050. However, we note that stranded reads are not necessary for RNA-seq using
  4051. our protocol in standard practice.
  4052. \end_layout
  4053. \begin_layout Subsection
  4054. Normalization and Exploratory Data Analysis
  4055. \end_layout
  4056. \begin_layout Standard
  4057. Libraries were normalized by computing scaling factors using the edgeR package’s
  4058. Trimmed Mean of M-values method
  4059. \begin_inset CommandInset citation
  4060. LatexCommand cite
  4061. key "Robinson2010"
  4062. literal "false"
  4063. \end_inset
  4064. .
  4065. Log2 counts per million values (logCPM) were calculated using the cpm function
  4066. in edgeR for individual samples and aveLogCPM function for averages across
  4067. groups of samples, using those functions’ default prior count values to
  4068. avoid taking the logarithm of 0.
  4069. Genes were considered “present” if their average normalized logCPM values
  4070. across all libraries were at least -1.
  4071. Normalizing for gene length was unnecessary because the sequencing protocol
  4072. is 3’-biased and hence the expected read count for each gene is related
  4073. to the transcript’s copy number but not its length.
  4074. \end_layout
  4075. \begin_layout Standard
  4076. In order to assess the effect of blocking on reproducibility, Pearson and
  4077. Spearman correlation coefficients were computed between the logCPM values
  4078. for every pair of libraries within the globin-blocked (GB) and unblocked
  4079. (non-GB) groups, and edgeR's “estimateDisp” function was used to compute
  4080. negative binomial dispersions separately for the two groups
  4081. \begin_inset CommandInset citation
  4082. LatexCommand cite
  4083. key "Chen2014"
  4084. literal "false"
  4085. \end_inset
  4086. .
  4087. \end_layout
  4088. \begin_layout Subsection
  4089. Differential Expression Analysis
  4090. \end_layout
  4091. \begin_layout Standard
  4092. All tests for differential gene expression were performed using edgeR, by
  4093. first fitting a negative binomial generalized linear model to the counts
  4094. and normalization factors and then performing a quasi-likelihood F-test
  4095. with robust estimation of outlier gene dispersions
  4096. \begin_inset CommandInset citation
  4097. LatexCommand cite
  4098. key "Lund2012,Phipson2016"
  4099. literal "false"
  4100. \end_inset
  4101. .
  4102. To investigate the effects of globin blocking on each gene, an additive
  4103. model was fit to the full data with coefficients for globin blocking and
  4104. SampleID.
  4105. To test the effect of globin blocking on detection of differentially expressed
  4106. genes, the GB samples and non-GB samples were each analyzed independently
  4107. as follows: for each animal with both a pre-transplant and a post-transplant
  4108. time point in the data set, the pre-transplant sample and the earliest
  4109. post-transplant sample were selected, and all others were excluded, yielding
  4110. a pre-/post-transplant pair of samples for each animal (N=7 animals with
  4111. paired samples).
  4112. These samples were analyzed for pre-transplant vs.
  4113. post-transplant differential gene expression while controlling for inter-animal
  4114. variation using an additive model with coefficients for transplant and
  4115. animal ID.
  4116. In all analyses, p-values were adjusted using the Benjamini-Hochberg procedure
  4117. for FDR control
  4118. \begin_inset CommandInset citation
  4119. LatexCommand cite
  4120. key "Benjamini1995"
  4121. literal "false"
  4122. \end_inset
  4123. .
  4124. \end_layout
  4125. \begin_layout Standard
  4126. \begin_inset Note Note
  4127. status open
  4128. \begin_layout Itemize
  4129. New blood RNA-seq protocol to block reverse transcription of globin genes
  4130. \end_layout
  4131. \begin_layout Itemize
  4132. Blood RNA-seq time course after transplants with/without MSC infusion
  4133. \end_layout
  4134. \end_inset
  4135. \end_layout
  4136. \begin_layout Section
  4137. Results
  4138. \end_layout
  4139. \begin_layout Subsection
  4140. Globin blocking yields a larger and more consistent fraction of useful reads
  4141. \end_layout
  4142. \begin_layout Standard
  4143. The objective of the present study was to validate a new protocol for deep
  4144. RNA-seq of whole blood drawn into PaxGene tubes from cynomolgus monkeys
  4145. undergoing islet transplantation, with particular focus on minimizing the
  4146. loss of useful sequencing space to uninformative globin reads.
  4147. The details of the analysis with respect to transplant outcomes and the
  4148. impact of mesenchymal stem cell treatment will be reported in a separate
  4149. manuscript (in preparation).
  4150. To focus on the efficacy of our globin blocking protocol, 37 blood samples,
  4151. 16 from pre-transplant and 21 from post-transplant time points, were each
  4152. prepped once with and once without globin blocking oligos, and were then
  4153. sequenced on an Illumina NextSeq500 instrument.
  4154. The number of reads aligning to each gene in the cynomolgus genome was
  4155. counted.
  4156. Table 1 summarizes the distribution of read fractions among the GB and
  4157. non-GB libraries.
  4158. In the libraries with no globin blocking, globin reads made up an average
  4159. of 44.6% of total input reads, while reads assigned to all other genes made
  4160. up an average of 26.3%.
  4161. The remaining reads either aligned to intergenic regions (that include
  4162. long non-coding RNAs) or did not align with any annotated transcripts in
  4163. the current build of the cynomolgus genome.
  4164. In the GB libraries, globin reads made up only 3.48% and reads assigned
  4165. to all other genes increased to 50.4%.
  4166. Thus, globin blocking resulted in a 92.2% reduction in globin reads and
  4167. a 91.6% increase in yield of useful non-globin reads.
  4168. \end_layout
  4169. \begin_layout Standard
  4170. This reduction is not quite as efficient as the previous analysis showed
  4171. for human samples by DeepSAGE (<0.4% globin reads after globin reduction)
  4172. \begin_inset CommandInset citation
  4173. LatexCommand cite
  4174. key "Mastrokolias2012"
  4175. literal "false"
  4176. \end_inset
  4177. .
  4178. Nonetheless, this degree of globin reduction is sufficient to nearly double
  4179. the yield of useful reads.
  4180. Thus, globin blocking cuts the required sequencing effort (and costs) to
  4181. achieve a target coverage depth by almost 50%.
  4182. Consistent with this near doubling of yield, the average difference in
  4183. un-normalized logCPM across all genes between the GB libraries and non-GB
  4184. libraries is approximately 1 (mean = 1.01, median = 1.08), an overall 2-fold
  4185. increase.
  4186. Un-normalized values are used here because the TMM normalization correctly
  4187. identifies this 2-fold difference as biologically irrelevant and removes
  4188. it.
  4189. \end_layout
  4190. \begin_layout Standard
  4191. \begin_inset Float figure
  4192. wide false
  4193. sideways false
  4194. status open
  4195. \begin_layout Plain Layout
  4196. \align center
  4197. \begin_inset Graphics
  4198. filename graphics/Globin Paper/figure1 - globin-fractions.pdf
  4199. \end_inset
  4200. \end_layout
  4201. \begin_layout Plain Layout
  4202. \begin_inset Caption Standard
  4203. \begin_layout Plain Layout
  4204. \series bold
  4205. \begin_inset Argument 1
  4206. status collapsed
  4207. \begin_layout Plain Layout
  4208. Fraction of genic reads in each sample aligned to non-globin genes, with
  4209. and without globin blocking (GB).
  4210. \end_layout
  4211. \end_inset
  4212. \begin_inset CommandInset label
  4213. LatexCommand label
  4214. name "fig:Fraction-of-genic-reads"
  4215. \end_inset
  4216. Fraction of genic reads in each sample aligned to non-globin genes, with
  4217. and without globin blocking (GB).
  4218. \series default
  4219. All reads in each sequencing library were aligned to the cyno genome, and
  4220. the number of reads uniquely aligning to each gene was counted.
  4221. For each sample, counts were summed separately for all globin genes and
  4222. for the remainder of the genes (non-globin genes), and the fraction of
  4223. genic reads aligned to non-globin genes was computed.
  4224. Each point represents an individual sample.
  4225. Gray + signs indicate the means for globin-blocked libraries and unblocked
  4226. libraries.
  4227. The overall distribution for each group is represented as a notched box
  4228. plots.
  4229. Points are randomly spread vertically to avoid excessive overlapping.
  4230. \end_layout
  4231. \end_inset
  4232. \end_layout
  4233. \begin_layout Plain Layout
  4234. \end_layout
  4235. \end_inset
  4236. \end_layout
  4237. \begin_layout Standard
  4238. \begin_inset Float table
  4239. placement p
  4240. wide false
  4241. sideways true
  4242. status open
  4243. \begin_layout Plain Layout
  4244. \align center
  4245. \begin_inset Tabular
  4246. <lyxtabular version="3" rows="4" columns="7">
  4247. <features tabularvalignment="middle">
  4248. <column alignment="center" valignment="top">
  4249. <column alignment="center" valignment="top">
  4250. <column alignment="center" valignment="top">
  4251. <column alignment="center" valignment="top">
  4252. <column alignment="center" valignment="top">
  4253. <column alignment="center" valignment="top">
  4254. <column alignment="center" valignment="top">
  4255. <row>
  4256. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4257. \begin_inset Text
  4258. \begin_layout Plain Layout
  4259. \end_layout
  4260. \end_inset
  4261. </cell>
  4262. <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4263. \begin_inset Text
  4264. \begin_layout Plain Layout
  4265. \family roman
  4266. \series medium
  4267. \shape up
  4268. \size normal
  4269. \emph off
  4270. \bar no
  4271. \strikeout off
  4272. \xout off
  4273. \uuline off
  4274. \uwave off
  4275. \noun off
  4276. \color none
  4277. Percent of Total Reads
  4278. \end_layout
  4279. \end_inset
  4280. </cell>
  4281. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4282. \begin_inset Text
  4283. \begin_layout Plain Layout
  4284. \end_layout
  4285. \end_inset
  4286. </cell>
  4287. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4288. \begin_inset Text
  4289. \begin_layout Plain Layout
  4290. \end_layout
  4291. \end_inset
  4292. </cell>
  4293. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4294. \begin_inset Text
  4295. \begin_layout Plain Layout
  4296. \end_layout
  4297. \end_inset
  4298. </cell>
  4299. <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  4300. \begin_inset Text
  4301. \begin_layout Plain Layout
  4302. \family roman
  4303. \series medium
  4304. \shape up
  4305. \size normal
  4306. \emph off
  4307. \bar no
  4308. \strikeout off
  4309. \xout off
  4310. \uuline off
  4311. \uwave off
  4312. \noun off
  4313. \color none
  4314. Percent of Genic Reads
  4315. \end_layout
  4316. \end_inset
  4317. </cell>
  4318. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  4319. \begin_inset Text
  4320. \begin_layout Plain Layout
  4321. \end_layout
  4322. \end_inset
  4323. </cell>
  4324. </row>
  4325. <row>
  4326. <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
  4327. \begin_inset Text
  4328. \begin_layout Plain Layout
  4329. GB
  4330. \end_layout
  4331. \end_inset
  4332. </cell>
  4333. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4334. \begin_inset Text
  4335. \begin_layout Plain Layout
  4336. \family roman
  4337. \series medium
  4338. \shape up
  4339. \size normal
  4340. \emph off
  4341. \bar no
  4342. \strikeout off
  4343. \xout off
  4344. \uuline off
  4345. \uwave off
  4346. \noun off
  4347. \color none
  4348. Non-globin Reads
  4349. \end_layout
  4350. \end_inset
  4351. </cell>
  4352. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4353. \begin_inset Text
  4354. \begin_layout Plain Layout
  4355. \family roman
  4356. \series medium
  4357. \shape up
  4358. \size normal
  4359. \emph off
  4360. \bar no
  4361. \strikeout off
  4362. \xout off
  4363. \uuline off
  4364. \uwave off
  4365. \noun off
  4366. \color none
  4367. Globin Reads
  4368. \end_layout
  4369. \end_inset
  4370. </cell>
  4371. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4372. \begin_inset Text
  4373. \begin_layout Plain Layout
  4374. \family roman
  4375. \series medium
  4376. \shape up
  4377. \size normal
  4378. \emph off
  4379. \bar no
  4380. \strikeout off
  4381. \xout off
  4382. \uuline off
  4383. \uwave off
  4384. \noun off
  4385. \color none
  4386. All Genic Reads
  4387. \end_layout
  4388. \end_inset
  4389. </cell>
  4390. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4391. \begin_inset Text
  4392. \begin_layout Plain Layout
  4393. \family roman
  4394. \series medium
  4395. \shape up
  4396. \size normal
  4397. \emph off
  4398. \bar no
  4399. \strikeout off
  4400. \xout off
  4401. \uuline off
  4402. \uwave off
  4403. \noun off
  4404. \color none
  4405. All Aligned Reads
  4406. \end_layout
  4407. \end_inset
  4408. </cell>
  4409. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4410. \begin_inset Text
  4411. \begin_layout Plain Layout
  4412. \family roman
  4413. \series medium
  4414. \shape up
  4415. \size normal
  4416. \emph off
  4417. \bar no
  4418. \strikeout off
  4419. \xout off
  4420. \uuline off
  4421. \uwave off
  4422. \noun off
  4423. \color none
  4424. Non-globin Reads
  4425. \end_layout
  4426. \end_inset
  4427. </cell>
  4428. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  4429. \begin_inset Text
  4430. \begin_layout Plain Layout
  4431. \family roman
  4432. \series medium
  4433. \shape up
  4434. \size normal
  4435. \emph off
  4436. \bar no
  4437. \strikeout off
  4438. \xout off
  4439. \uuline off
  4440. \uwave off
  4441. \noun off
  4442. \color none
  4443. Globin Reads
  4444. \end_layout
  4445. \end_inset
  4446. </cell>
  4447. </row>
  4448. <row>
  4449. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4450. \begin_inset Text
  4451. \begin_layout Plain Layout
  4452. \family roman
  4453. \series medium
  4454. \shape up
  4455. \size normal
  4456. \emph off
  4457. \bar no
  4458. \strikeout off
  4459. \xout off
  4460. \uuline off
  4461. \uwave off
  4462. \noun off
  4463. \color none
  4464. Yes
  4465. \end_layout
  4466. \end_inset
  4467. </cell>
  4468. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4469. \begin_inset Text
  4470. \begin_layout Plain Layout
  4471. \family roman
  4472. \series medium
  4473. \shape up
  4474. \size normal
  4475. \emph off
  4476. \bar no
  4477. \strikeout off
  4478. \xout off
  4479. \uuline off
  4480. \uwave off
  4481. \noun off
  4482. \color none
  4483. 50.4% ± 6.82
  4484. \end_layout
  4485. \end_inset
  4486. </cell>
  4487. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4488. \begin_inset Text
  4489. \begin_layout Plain Layout
  4490. \family roman
  4491. \series medium
  4492. \shape up
  4493. \size normal
  4494. \emph off
  4495. \bar no
  4496. \strikeout off
  4497. \xout off
  4498. \uuline off
  4499. \uwave off
  4500. \noun off
  4501. \color none
  4502. 3.48% ± 2.94
  4503. \end_layout
  4504. \end_inset
  4505. </cell>
  4506. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4507. \begin_inset Text
  4508. \begin_layout Plain Layout
  4509. \family roman
  4510. \series medium
  4511. \shape up
  4512. \size normal
  4513. \emph off
  4514. \bar no
  4515. \strikeout off
  4516. \xout off
  4517. \uuline off
  4518. \uwave off
  4519. \noun off
  4520. \color none
  4521. 53.9% ± 6.81
  4522. \end_layout
  4523. \end_inset
  4524. </cell>
  4525. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4526. \begin_inset Text
  4527. \begin_layout Plain Layout
  4528. \family roman
  4529. \series medium
  4530. \shape up
  4531. \size normal
  4532. \emph off
  4533. \bar no
  4534. \strikeout off
  4535. \xout off
  4536. \uuline off
  4537. \uwave off
  4538. \noun off
  4539. \color none
  4540. 89.7% ± 2.40
  4541. \end_layout
  4542. \end_inset
  4543. </cell>
  4544. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  4545. \begin_inset Text
  4546. \begin_layout Plain Layout
  4547. \family roman
  4548. \series medium
  4549. \shape up
  4550. \size normal
  4551. \emph off
  4552. \bar no
  4553. \strikeout off
  4554. \xout off
  4555. \uuline off
  4556. \uwave off
  4557. \noun off
  4558. \color none
  4559. 93.5% ± 5.25
  4560. \end_layout
  4561. \end_inset
  4562. </cell>
  4563. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  4564. \begin_inset Text
  4565. \begin_layout Plain Layout
  4566. \family roman
  4567. \series medium
  4568. \shape up
  4569. \size normal
  4570. \emph off
  4571. \bar no
  4572. \strikeout off
  4573. \xout off
  4574. \uuline off
  4575. \uwave off
  4576. \noun off
  4577. \color none
  4578. 6.49% ± 5.25
  4579. \end_layout
  4580. \end_inset
  4581. </cell>
  4582. </row>
  4583. <row>
  4584. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4585. \begin_inset Text
  4586. \begin_layout Plain Layout
  4587. \family roman
  4588. \series medium
  4589. \shape up
  4590. \size normal
  4591. \emph off
  4592. \bar no
  4593. \strikeout off
  4594. \xout off
  4595. \uuline off
  4596. \uwave off
  4597. \noun off
  4598. \color none
  4599. No
  4600. \end_layout
  4601. \end_inset
  4602. </cell>
  4603. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4604. \begin_inset Text
  4605. \begin_layout Plain Layout
  4606. \family roman
  4607. \series medium
  4608. \shape up
  4609. \size normal
  4610. \emph off
  4611. \bar no
  4612. \strikeout off
  4613. \xout off
  4614. \uuline off
  4615. \uwave off
  4616. \noun off
  4617. \color none
  4618. 26.3% ± 8.95
  4619. \end_layout
  4620. \end_inset
  4621. </cell>
  4622. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4623. \begin_inset Text
  4624. \begin_layout Plain Layout
  4625. \family roman
  4626. \series medium
  4627. \shape up
  4628. \size normal
  4629. \emph off
  4630. \bar no
  4631. \strikeout off
  4632. \xout off
  4633. \uuline off
  4634. \uwave off
  4635. \noun off
  4636. \color none
  4637. 44.6% ± 16.6
  4638. \end_layout
  4639. \end_inset
  4640. </cell>
  4641. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4642. \begin_inset Text
  4643. \begin_layout Plain Layout
  4644. \family roman
  4645. \series medium
  4646. \shape up
  4647. \size normal
  4648. \emph off
  4649. \bar no
  4650. \strikeout off
  4651. \xout off
  4652. \uuline off
  4653. \uwave off
  4654. \noun off
  4655. \color none
  4656. 70.1% ± 9.38
  4657. \end_layout
  4658. \end_inset
  4659. </cell>
  4660. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4661. \begin_inset Text
  4662. \begin_layout Plain Layout
  4663. \family roman
  4664. \series medium
  4665. \shape up
  4666. \size normal
  4667. \emph off
  4668. \bar no
  4669. \strikeout off
  4670. \xout off
  4671. \uuline off
  4672. \uwave off
  4673. \noun off
  4674. \color none
  4675. 90.7% ± 5.16
  4676. \end_layout
  4677. \end_inset
  4678. </cell>
  4679. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4680. \begin_inset Text
  4681. \begin_layout Plain Layout
  4682. \family roman
  4683. \series medium
  4684. \shape up
  4685. \size normal
  4686. \emph off
  4687. \bar no
  4688. \strikeout off
  4689. \xout off
  4690. \uuline off
  4691. \uwave off
  4692. \noun off
  4693. \color none
  4694. 38.8% ± 17.1
  4695. \end_layout
  4696. \end_inset
  4697. </cell>
  4698. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  4699. \begin_inset Text
  4700. \begin_layout Plain Layout
  4701. \family roman
  4702. \series medium
  4703. \shape up
  4704. \size normal
  4705. \emph off
  4706. \bar no
  4707. \strikeout off
  4708. \xout off
  4709. \uuline off
  4710. \uwave off
  4711. \noun off
  4712. \color none
  4713. 61.2% ± 17.1
  4714. \end_layout
  4715. \end_inset
  4716. </cell>
  4717. </row>
  4718. </lyxtabular>
  4719. \end_inset
  4720. \end_layout
  4721. \begin_layout Plain Layout
  4722. \begin_inset Caption Standard
  4723. \begin_layout Plain Layout
  4724. \series bold
  4725. \begin_inset Argument 1
  4726. status collapsed
  4727. \begin_layout Plain Layout
  4728. Fractions of reads mapping to genomic features in GB and non-GB samples.
  4729. \end_layout
  4730. \end_inset
  4731. \begin_inset CommandInset label
  4732. LatexCommand label
  4733. name "tab:Fractions-of-reads"
  4734. \end_inset
  4735. Fractions of reads mapping to genomic features in GB and non-GB samples.
  4736. \series default
  4737. All values are given as mean ± standard deviation.
  4738. \end_layout
  4739. \end_inset
  4740. \end_layout
  4741. \begin_layout Plain Layout
  4742. \end_layout
  4743. \end_inset
  4744. \end_layout
  4745. \begin_layout Standard
  4746. Another important aspect is that the standard deviations in Table
  4747. \begin_inset CommandInset ref
  4748. LatexCommand ref
  4749. reference "tab:Fractions-of-reads"
  4750. plural "false"
  4751. caps "false"
  4752. noprefix "false"
  4753. \end_inset
  4754. are uniformly smaller in the GB samples than the non-GB ones, indicating
  4755. much greater consistency of yield.
  4756. This is best seen in the percentage of non-globin reads as a fraction of
  4757. total reads aligned to annotated genes (genic reads).
  4758. For the non-GB samples, this measure ranges from 10.9% to 80.9%, while for
  4759. the GB samples it ranges from 81.9% to 99.9% (Figure
  4760. \begin_inset CommandInset ref
  4761. LatexCommand ref
  4762. reference "fig:Fraction-of-genic-reads"
  4763. plural "false"
  4764. caps "false"
  4765. noprefix "false"
  4766. \end_inset
  4767. ).
  4768. This means that for applications where it is critical that each sample
  4769. achieve a specified minimum coverage in order to provide useful information,
  4770. it would be necessary to budget up to 10 times the sequencing depth per
  4771. sample without globin blocking, even though the average yield improvement
  4772. for globin blocking is only 2-fold, because every sample has a chance of
  4773. being 90% globin and 10% useful reads.
  4774. Hence, the more consistent behavior of GB samples makes planning an experiment
  4775. easier and more efficient because it eliminates the need to over-sequence
  4776. every sample in order to guard against the worst case of a high-globin
  4777. fraction.
  4778. \end_layout
  4779. \begin_layout Subsection
  4780. Globin blocking lowers the noise floor and allows detection of about 2000
  4781. more genes
  4782. \end_layout
  4783. \begin_layout Standard
  4784. \begin_inset Flex TODO Note (inline)
  4785. status open
  4786. \begin_layout Plain Layout
  4787. Remove redundant titles from figures
  4788. \end_layout
  4789. \end_inset
  4790. \end_layout
  4791. \begin_layout Standard
  4792. \begin_inset Float figure
  4793. wide false
  4794. sideways false
  4795. status open
  4796. \begin_layout Plain Layout
  4797. \align center
  4798. \begin_inset Graphics
  4799. filename graphics/Globin Paper/figure2 - aveLogCPM-colored.pdf
  4800. \end_inset
  4801. \end_layout
  4802. \begin_layout Plain Layout
  4803. \begin_inset Caption Standard
  4804. \begin_layout Plain Layout
  4805. \series bold
  4806. \begin_inset Argument 1
  4807. status collapsed
  4808. \begin_layout Plain Layout
  4809. Distributions of average group gene abundances when normalized separately
  4810. or together.
  4811. \end_layout
  4812. \end_inset
  4813. \begin_inset CommandInset label
  4814. LatexCommand label
  4815. name "fig:logcpm-dists"
  4816. \end_inset
  4817. Distributions of average group gene abundances when normalized separately
  4818. or together.
  4819. \series default
  4820. All reads in each sequencing library were aligned to the cyno genome, and
  4821. the number of reads uniquely aligning to each gene was counted.
  4822. Genes with zero counts in all libraries were discarded.
  4823. Libraries were normalized using the TMM method.
  4824. Libraries were split into globin-blocked (GB) and non-GB groups and the
  4825. average abundance for each gene in both groups, measured in log2 counts
  4826. per million reads counted, was computed using the aveLogCPM function.
  4827. The distribution of average gene logCPM values was plotted for both groups
  4828. using a kernel density plot to approximate a continuous distribution.
  4829. The logCPM GB distributions are marked in red, non-GB in blue.
  4830. The black vertical line denotes the chosen detection threshold of -1.
  4831. Top panel: Libraries were split into GB and non-GB groups first and normalized
  4832. separately.
  4833. Bottom panel: Libraries were all normalized together first and then split
  4834. into groups.
  4835. \end_layout
  4836. \end_inset
  4837. \end_layout
  4838. \begin_layout Plain Layout
  4839. \end_layout
  4840. \end_inset
  4841. \end_layout
  4842. \begin_layout Standard
  4843. Since globin blocking yields more usable sequencing depth, it should also
  4844. allow detection of more genes at any given threshold.
  4845. When we looked at the distribution of average normalized logCPM values
  4846. across all libraries for genes with at least one read assigned to them,
  4847. we observed the expected bimodal distribution, with a high-abundance "signal"
  4848. peak representing detected genes and a low-abundance "noise" peak representing
  4849. genes whose read count did not rise above the noise floor (Figure
  4850. \begin_inset CommandInset ref
  4851. LatexCommand ref
  4852. reference "fig:logcpm-dists"
  4853. plural "false"
  4854. caps "false"
  4855. noprefix "false"
  4856. \end_inset
  4857. ).
  4858. Consistent with the 2-fold increase in raw counts assigned to non-globin
  4859. genes, the signal peak for GB samples is shifted to the right relative
  4860. to the non-GB signal peak.
  4861. When all the samples are normalized together, this difference is normalized
  4862. out, lining up the signal peaks, and this reveals that, as expected, the
  4863. noise floor for the GB samples is about 2-fold lower.
  4864. This greater separation between signal and noise peaks in the GB samples
  4865. means that low-expression genes should be more easily detected and more
  4866. precisely quantified than in the non-GB samples.
  4867. \end_layout
  4868. \begin_layout Standard
  4869. \begin_inset Float figure
  4870. wide false
  4871. sideways false
  4872. status open
  4873. \begin_layout Plain Layout
  4874. \align center
  4875. \begin_inset Graphics
  4876. filename graphics/Globin Paper/figure3 - detection.pdf
  4877. \end_inset
  4878. \end_layout
  4879. \begin_layout Plain Layout
  4880. \begin_inset Caption Standard
  4881. \begin_layout Plain Layout
  4882. \series bold
  4883. \begin_inset Argument 1
  4884. status collapsed
  4885. \begin_layout Plain Layout
  4886. Gene detections as a function of abundance thresholds in globin-blocked
  4887. (GB) and non-GB samples.
  4888. \end_layout
  4889. \end_inset
  4890. \begin_inset CommandInset label
  4891. LatexCommand label
  4892. name "fig:Gene-detections"
  4893. \end_inset
  4894. Gene detections as a function of abundance thresholds in globin-blocked
  4895. (GB) and non-GB samples.
  4896. \series default
  4897. Average abundance (logCPM,
  4898. \begin_inset Formula $\log_{2}$
  4899. \end_inset
  4900. counts per million reads counted) was computed by separate group normalization
  4901. as described in Figure
  4902. \begin_inset CommandInset ref
  4903. LatexCommand ref
  4904. reference "fig:logcpm-dists"
  4905. plural "false"
  4906. caps "false"
  4907. noprefix "false"
  4908. \end_inset
  4909. for both the GB and non-GB groups, as well as for all samples considered
  4910. as one large group.
  4911. For each every integer threshold from -2 to 3, the number of genes detected
  4912. at or above that logCPM threshold was plotted for each group.
  4913. \end_layout
  4914. \end_inset
  4915. \end_layout
  4916. \begin_layout Plain Layout
  4917. \end_layout
  4918. \end_inset
  4919. \end_layout
  4920. \begin_layout Standard
  4921. Based on these distributions, we selected a detection threshold of -1, which
  4922. is approximately the leftmost edge of the trough between the signal and
  4923. noise peaks.
  4924. This represents the most liberal possible detection threshold that doesn't
  4925. call substantial numbers of noise genes as detected.
  4926. Among the full dataset, 13429 genes were detected at this threshold, and
  4927. 22276 were not.
  4928. When considering the GB libraries and non-GB libraries separately and re-comput
  4929. ing normalization factors independently within each group, 14535 genes were
  4930. detected in the GB libraries while only 12460 were detected in the non-GB
  4931. libraries.
  4932. Thus, GB allowed the detection of 2000 extra genes that were buried under
  4933. the noise floor without GB.
  4934. This pattern of at least 2000 additional genes detected with GB was also
  4935. consistent across a wide range of possible detection thresholds, from -2
  4936. to 3 (see Figure
  4937. \begin_inset CommandInset ref
  4938. LatexCommand ref
  4939. reference "fig:Gene-detections"
  4940. plural "false"
  4941. caps "false"
  4942. noprefix "false"
  4943. \end_inset
  4944. ).
  4945. \end_layout
  4946. \begin_layout Subsection
  4947. Globin blocking does not add significant additional noise or decrease sample
  4948. quality
  4949. \end_layout
  4950. \begin_layout Standard
  4951. One potential worry is that the globin blocking protocol could perturb the
  4952. levels of non-globin genes.
  4953. There are two kinds of possible perturbations: systematic and random.
  4954. The former is not a major concern for detection of differential expression,
  4955. since a 2-fold change in every sample has no effect on the relative fold
  4956. change between samples.
  4957. In contrast, random perturbations would increase the noise and obscure
  4958. the signal in the dataset, reducing the capacity to detect differential
  4959. expression.
  4960. \end_layout
  4961. \begin_layout Standard
  4962. \begin_inset Float figure
  4963. wide false
  4964. sideways false
  4965. status open
  4966. \begin_layout Plain Layout
  4967. \align center
  4968. \begin_inset Graphics
  4969. filename graphics/Globin Paper/figure4 - maplot-colored.pdf
  4970. \end_inset
  4971. \end_layout
  4972. \begin_layout Plain Layout
  4973. \begin_inset Caption Standard
  4974. \begin_layout Plain Layout
  4975. \begin_inset Argument 1
  4976. status collapsed
  4977. \begin_layout Plain Layout
  4978. MA plot showing effects of globin blocking on each gene's abundance.
  4979. \end_layout
  4980. \end_inset
  4981. \begin_inset CommandInset label
  4982. LatexCommand label
  4983. name "fig:MA-plot"
  4984. \end_inset
  4985. \series bold
  4986. MA plot showing effects of globin blocking on each gene's abundance.
  4987. \series default
  4988. All libraries were normalized together as described in Figure
  4989. \begin_inset CommandInset ref
  4990. LatexCommand ref
  4991. reference "fig:logcpm-dists"
  4992. plural "false"
  4993. caps "false"
  4994. noprefix "false"
  4995. \end_inset
  4996. , and genes with an average logCPM below -1 were filtered out.
  4997. Each remaining gene was tested for differential abundance with respect
  4998. to globin blocking (GB) using edgeR’s quasi-likelihod F-test, fitting a
  4999. negative binomial generalized linear model to table of read counts in each
  5000. library.
  5001. For each gene, edgeR reported average abundance (logCPM),
  5002. \begin_inset Formula $\log_{2}$
  5003. \end_inset
  5004. fold change (logFC), p-value, and Benjamini-Hochberg adjusted false discovery
  5005. rate (FDR).
  5006. Each gene's logFC was plotted against its logCPM, colored by FDR.
  5007. Red points are significant at ≤10% FDR, and blue are not significant at
  5008. that threshold.
  5009. The alpha and beta globin genes targeted for blocking are marked with large
  5010. triangles, while all other genes are represented as small points.
  5011. \end_layout
  5012. \end_inset
  5013. \end_layout
  5014. \begin_layout Plain Layout
  5015. \end_layout
  5016. \end_inset
  5017. \end_layout
  5018. \begin_layout Standard
  5019. \begin_inset Flex TODO Note (inline)
  5020. status open
  5021. \begin_layout Plain Layout
  5022. Standardize on
  5023. \begin_inset Quotes eld
  5024. \end_inset
  5025. log2
  5026. \begin_inset Quotes erd
  5027. \end_inset
  5028. notation
  5029. \end_layout
  5030. \end_inset
  5031. \end_layout
  5032. \begin_layout Standard
  5033. The data do indeed show small systematic perturbations in gene levels (Figure
  5034. \begin_inset CommandInset ref
  5035. LatexCommand ref
  5036. reference "fig:MA-plot"
  5037. plural "false"
  5038. caps "false"
  5039. noprefix "false"
  5040. \end_inset
  5041. ).
  5042. Other than the 3 designated alpha and beta globin genes, two other genes
  5043. stand out as having especially large negative log fold changes: HBD and
  5044. LOC1021365.
  5045. HBD, delta globin, is most likely targeted by the blocking oligos due to
  5046. high sequence homology with the other globin genes.
  5047. LOC1021365 is the aforementioned ncRNA that is reverse-complementary to
  5048. one of the alpha-like genes and that would be expected to be removed during
  5049. the globin blocking step.
  5050. All other genes appear in a cluster centered vertically at 0, and the vast
  5051. majority of genes in this cluster show an absolute log2(FC) of 0.5 or less.
  5052. Nevertheless, many of these small perturbations are still statistically
  5053. significant, indicating that the globin blocking oligos likely cause very
  5054. small but non-zero systematic perturbations in measured gene expression
  5055. levels.
  5056. \end_layout
  5057. \begin_layout Standard
  5058. \begin_inset Float figure
  5059. wide false
  5060. sideways false
  5061. status open
  5062. \begin_layout Plain Layout
  5063. \align center
  5064. \begin_inset Graphics
  5065. filename graphics/Globin Paper/figure5 - corrplot.pdf
  5066. \end_inset
  5067. \end_layout
  5068. \begin_layout Plain Layout
  5069. \begin_inset Caption Standard
  5070. \begin_layout Plain Layout
  5071. \series bold
  5072. \begin_inset Argument 1
  5073. status collapsed
  5074. \begin_layout Plain Layout
  5075. Comparison of inter-sample gene abundance correlations with and without
  5076. globin blocking.
  5077. \end_layout
  5078. \end_inset
  5079. \begin_inset CommandInset label
  5080. LatexCommand label
  5081. name "fig:gene-abundance-correlations"
  5082. \end_inset
  5083. Comparison of inter-sample gene abundance correlations with and without
  5084. globin blocking (GB).
  5085. \series default
  5086. All libraries were normalized together as described in Figure 2, and genes
  5087. with an average abundance (logCPM, log2 counts per million reads counted)
  5088. less than -1 were filtered out.
  5089. Each gene’s logCPM was computed in each library using the edgeR cpm function.
  5090. For each pair of biological samples, the Pearson correlation between those
  5091. samples' GB libraries was plotted against the correlation between the same
  5092. samples’ non-GB libraries.
  5093. Each point represents an unique pair of samples.
  5094. The solid gray line shows a quantile-quantile plot of distribution of GB
  5095. correlations vs.
  5096. that of non-GB correlations.
  5097. The thin dashed line is the identity line, provided for reference.
  5098. \end_layout
  5099. \end_inset
  5100. \end_layout
  5101. \begin_layout Plain Layout
  5102. \end_layout
  5103. \end_inset
  5104. \end_layout
  5105. \begin_layout Standard
  5106. To evaluate the possibility of globin blocking causing random perturbations
  5107. and reducing sample quality, we computed the Pearson correlation between
  5108. logCPM values for every pair of samples with and without GB and plotted
  5109. them against each other (Figure
  5110. \begin_inset CommandInset ref
  5111. LatexCommand ref
  5112. reference "fig:gene-abundance-correlations"
  5113. plural "false"
  5114. caps "false"
  5115. noprefix "false"
  5116. \end_inset
  5117. ).
  5118. The plot indicated that the GB libraries have higher sample-to-sample correlati
  5119. ons than the non-GB libraries.
  5120. Parametric and nonparametric tests for differences between the correlations
  5121. with and without GB both confirmed that this difference was highly significant
  5122. (2-sided paired t-test: t = 37.2, df = 665, P ≪ 2.2e-16; 2-sided Wilcoxon
  5123. sign-rank test: V = 2195, P ≪ 2.2e-16).
  5124. Performing the same tests on the Spearman correlations gave the same conclusion
  5125. (t-test: t = 26.8, df = 665, P ≪ 2.2e-16; sign-rank test: V = 8781, P ≪ 2.2e-16).
  5126. The edgeR package was used to compute the overall biological coefficient
  5127. of variation (BCV) for GB and non-GB libraries, and found that globin blocking
  5128. resulted in a negligible increase in the BCV (0.417 with GB vs.
  5129. 0.400 without).
  5130. The near equality of the BCVs for both sets indicates that the higher correlati
  5131. ons in the GB libraries are most likely a result of the increased yield
  5132. of useful reads, which reduces the contribution of Poisson counting uncertainty
  5133. to the overall variance of the logCPM values
  5134. \begin_inset CommandInset citation
  5135. LatexCommand cite
  5136. key "McCarthy2012"
  5137. literal "false"
  5138. \end_inset
  5139. .
  5140. This improves the precision of expression measurements and more than offsets
  5141. the negligible increase in BCV.
  5142. \end_layout
  5143. \begin_layout Subsection
  5144. More differentially expressed genes are detected with globin blocking
  5145. \end_layout
  5146. \begin_layout Standard
  5147. \begin_inset Float table
  5148. wide false
  5149. sideways false
  5150. status open
  5151. \begin_layout Plain Layout
  5152. \align center
  5153. \begin_inset Tabular
  5154. <lyxtabular version="3" rows="5" columns="5">
  5155. <features tabularvalignment="middle">
  5156. <column alignment="center" valignment="top">
  5157. <column alignment="center" valignment="top">
  5158. <column alignment="center" valignment="top">
  5159. <column alignment="center" valignment="top">
  5160. <column alignment="center" valignment="top">
  5161. <row>
  5162. <cell alignment="center" valignment="top" usebox="none">
  5163. \begin_inset Text
  5164. \begin_layout Plain Layout
  5165. \end_layout
  5166. \end_inset
  5167. </cell>
  5168. <cell alignment="center" valignment="top" usebox="none">
  5169. \begin_inset Text
  5170. \begin_layout Plain Layout
  5171. \end_layout
  5172. \end_inset
  5173. </cell>
  5174. <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  5175. \begin_inset Text
  5176. \begin_layout Plain Layout
  5177. \series bold
  5178. No Globin Blocking
  5179. \end_layout
  5180. \end_inset
  5181. </cell>
  5182. <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  5183. \begin_inset Text
  5184. \begin_layout Plain Layout
  5185. \end_layout
  5186. \end_inset
  5187. </cell>
  5188. <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  5189. \begin_inset Text
  5190. \begin_layout Plain Layout
  5191. \end_layout
  5192. \end_inset
  5193. </cell>
  5194. </row>
  5195. <row>
  5196. <cell alignment="center" valignment="top" usebox="none">
  5197. \begin_inset Text
  5198. \begin_layout Plain Layout
  5199. \end_layout
  5200. \end_inset
  5201. </cell>
  5202. <cell alignment="center" valignment="top" usebox="none">
  5203. \begin_inset Text
  5204. \begin_layout Plain Layout
  5205. \end_layout
  5206. \end_inset
  5207. </cell>
  5208. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  5209. \begin_inset Text
  5210. \begin_layout Plain Layout
  5211. \series bold
  5212. Up
  5213. \end_layout
  5214. \end_inset
  5215. </cell>
  5216. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  5217. \begin_inset Text
  5218. \begin_layout Plain Layout
  5219. \series bold
  5220. NS
  5221. \end_layout
  5222. \end_inset
  5223. </cell>
  5224. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  5225. \begin_inset Text
  5226. \begin_layout Plain Layout
  5227. \series bold
  5228. Down
  5229. \end_layout
  5230. \end_inset
  5231. </cell>
  5232. </row>
  5233. <row>
  5234. <cell multirow="3" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
  5235. \begin_inset Text
  5236. \begin_layout Plain Layout
  5237. \series bold
  5238. Globin-Blocking
  5239. \end_layout
  5240. \end_inset
  5241. </cell>
  5242. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  5243. \begin_inset Text
  5244. \begin_layout Plain Layout
  5245. \series bold
  5246. Up
  5247. \end_layout
  5248. \end_inset
  5249. </cell>
  5250. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  5251. \begin_inset Text
  5252. \begin_layout Plain Layout
  5253. \family roman
  5254. \series medium
  5255. \shape up
  5256. \size normal
  5257. \emph off
  5258. \bar no
  5259. \strikeout off
  5260. \xout off
  5261. \uuline off
  5262. \uwave off
  5263. \noun off
  5264. \color none
  5265. 231
  5266. \end_layout
  5267. \end_inset
  5268. </cell>
  5269. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  5270. \begin_inset Text
  5271. \begin_layout Plain Layout
  5272. \family roman
  5273. \series medium
  5274. \shape up
  5275. \size normal
  5276. \emph off
  5277. \bar no
  5278. \strikeout off
  5279. \xout off
  5280. \uuline off
  5281. \uwave off
  5282. \noun off
  5283. \color none
  5284. 515
  5285. \end_layout
  5286. \end_inset
  5287. </cell>
  5288. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  5289. \begin_inset Text
  5290. \begin_layout Plain Layout
  5291. \family roman
  5292. \series medium
  5293. \shape up
  5294. \size normal
  5295. \emph off
  5296. \bar no
  5297. \strikeout off
  5298. \xout off
  5299. \uuline off
  5300. \uwave off
  5301. \noun off
  5302. \color none
  5303. 2
  5304. \end_layout
  5305. \end_inset
  5306. </cell>
  5307. </row>
  5308. <row>
  5309. <cell multirow="4" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  5310. \begin_inset Text
  5311. \begin_layout Plain Layout
  5312. \end_layout
  5313. \end_inset
  5314. </cell>
  5315. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  5316. \begin_inset Text
  5317. \begin_layout Plain Layout
  5318. \series bold
  5319. NS
  5320. \end_layout
  5321. \end_inset
  5322. </cell>
  5323. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  5324. \begin_inset Text
  5325. \begin_layout Plain Layout
  5326. \family roman
  5327. \series medium
  5328. \shape up
  5329. \size normal
  5330. \emph off
  5331. \bar no
  5332. \strikeout off
  5333. \xout off
  5334. \uuline off
  5335. \uwave off
  5336. \noun off
  5337. \color none
  5338. 160
  5339. \end_layout
  5340. \end_inset
  5341. </cell>
  5342. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  5343. \begin_inset Text
  5344. \begin_layout Plain Layout
  5345. \family roman
  5346. \series medium
  5347. \shape up
  5348. \size normal
  5349. \emph off
  5350. \bar no
  5351. \strikeout off
  5352. \xout off
  5353. \uuline off
  5354. \uwave off
  5355. \noun off
  5356. \color none
  5357. 11235
  5358. \end_layout
  5359. \end_inset
  5360. </cell>
  5361. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  5362. \begin_inset Text
  5363. \begin_layout Plain Layout
  5364. \family roman
  5365. \series medium
  5366. \shape up
  5367. \size normal
  5368. \emph off
  5369. \bar no
  5370. \strikeout off
  5371. \xout off
  5372. \uuline off
  5373. \uwave off
  5374. \noun off
  5375. \color none
  5376. 136
  5377. \end_layout
  5378. \end_inset
  5379. </cell>
  5380. </row>
  5381. <row>
  5382. <cell multirow="4" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  5383. \begin_inset Text
  5384. \begin_layout Plain Layout
  5385. \end_layout
  5386. \end_inset
  5387. </cell>
  5388. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  5389. \begin_inset Text
  5390. \begin_layout Plain Layout
  5391. \series bold
  5392. Down
  5393. \end_layout
  5394. \end_inset
  5395. </cell>
  5396. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  5397. \begin_inset Text
  5398. \begin_layout Plain Layout
  5399. \family roman
  5400. \series medium
  5401. \shape up
  5402. \size normal
  5403. \emph off
  5404. \bar no
  5405. \strikeout off
  5406. \xout off
  5407. \uuline off
  5408. \uwave off
  5409. \noun off
  5410. \color none
  5411. 0
  5412. \end_layout
  5413. \end_inset
  5414. </cell>
  5415. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  5416. \begin_inset Text
  5417. \begin_layout Plain Layout
  5418. \family roman
  5419. \series medium
  5420. \shape up
  5421. \size normal
  5422. \emph off
  5423. \bar no
  5424. \strikeout off
  5425. \xout off
  5426. \uuline off
  5427. \uwave off
  5428. \noun off
  5429. \color none
  5430. 548
  5431. \end_layout
  5432. \end_inset
  5433. </cell>
  5434. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  5435. \begin_inset Text
  5436. \begin_layout Plain Layout
  5437. \family roman
  5438. \series medium
  5439. \shape up
  5440. \size normal
  5441. \emph off
  5442. \bar no
  5443. \strikeout off
  5444. \xout off
  5445. \uuline off
  5446. \uwave off
  5447. \noun off
  5448. \color none
  5449. 127
  5450. \end_layout
  5451. \end_inset
  5452. </cell>
  5453. </row>
  5454. </lyxtabular>
  5455. \end_inset
  5456. \end_layout
  5457. \begin_layout Plain Layout
  5458. \begin_inset Caption Standard
  5459. \begin_layout Plain Layout
  5460. \series bold
  5461. \begin_inset Argument 1
  5462. status open
  5463. \begin_layout Plain Layout
  5464. Comparison of significantly differentially expressed genes with and without
  5465. globin blocking.
  5466. \end_layout
  5467. \end_inset
  5468. \begin_inset CommandInset label
  5469. LatexCommand label
  5470. name "tab:Comparison-of-significant"
  5471. \end_inset
  5472. Comparison of significantly differentially expressed genes with and without
  5473. globin blocking.
  5474. \series default
  5475. Up, Down: Genes significantly up/down-regulated in post-transplant samples
  5476. relative to pre-transplant samples, with a false discovery rate of 10%
  5477. or less.
  5478. NS: Non-significant genes (false discovery rate greater than 10%).
  5479. \end_layout
  5480. \end_inset
  5481. \end_layout
  5482. \begin_layout Plain Layout
  5483. \end_layout
  5484. \end_inset
  5485. \end_layout
  5486. \begin_layout Standard
  5487. To compare performance on differential gene expression tests, we took subsets
  5488. of both the GB and non-GB libraries with exactly one pre-transplant and
  5489. one post-transplant sample for each animal that had paired samples available
  5490. for analysis (N=7 animals, N=14 samples in each subset).
  5491. The same test for pre- vs.
  5492. post-transplant differential gene expression was performed on the same
  5493. 7 pairs of samples from GB libraries and non-GB libraries, in each case
  5494. using an FDR of 10% as the threshold of significance.
  5495. Out of 12954 genes that passed the detection threshold in both subsets,
  5496. 358 were called significantly differentially expressed in the same direction
  5497. in both sets; 1063 were differentially expressed in the GB set only; 296
  5498. were differentially expressed in the non-GB set only; 2 genes were called
  5499. significantly up in the GB set but significantly down in the non-GB set;
  5500. and the remaining 11235 were not called differentially expressed in either
  5501. set.
  5502. These data are summarized in Table
  5503. \begin_inset CommandInset ref
  5504. LatexCommand ref
  5505. reference "tab:Comparison-of-significant"
  5506. plural "false"
  5507. caps "false"
  5508. noprefix "false"
  5509. \end_inset
  5510. .
  5511. The differences in BCV calculated by EdgeR for these subsets of samples
  5512. were negligible (BCV = 0.302 for GB and 0.297 for non-GB).
  5513. \end_layout
  5514. \begin_layout Standard
  5515. The key point is that the GB data results in substantially more differentially
  5516. expressed calls than the non-GB data.
  5517. Since there is no gold standard for this dataset, it is impossible to be
  5518. certain whether this is due to under-calling of differential expression
  5519. in the non-GB samples or over-calling in the GB samples.
  5520. However, given that both datasets are derived from the same biological
  5521. samples and have nearly equal BCVs, it is more likely that the larger number
  5522. of DE calls in the GB samples are genuine detections that were enabled
  5523. by the higher sequencing depth and measurement precision of the GB samples.
  5524. Note that the same set of genes was considered in both subsets, so the
  5525. larger number of differentially expressed gene calls in the GB data set
  5526. reflects a greater sensitivity to detect significant differential gene
  5527. expression and not simply the larger total number of detected genes in
  5528. GB samples described earlier.
  5529. \end_layout
  5530. \begin_layout Section
  5531. Discussion
  5532. \end_layout
  5533. \begin_layout Standard
  5534. The original experience with whole blood gene expression profiling on DNA
  5535. microarrays demonstrated that the high concentration of globin transcripts
  5536. reduced the sensitivity to detect genes with relatively low expression
  5537. levels, in effect, significantly reducing the sensitivity.
  5538. To address this limitation, commercial protocols for globin reduction were
  5539. developed based on strategies to block globin transcript amplification
  5540. during labeling or physically removing globin transcripts by affinity bead
  5541. methods
  5542. \begin_inset CommandInset citation
  5543. LatexCommand cite
  5544. key "Winn2010"
  5545. literal "false"
  5546. \end_inset
  5547. .
  5548. More recently, using the latest generation of labeling protocols and arrays,
  5549. it was determined that globin reduction was no longer necessary to obtain
  5550. sufficient sensitivity to detect differential transcript expression
  5551. \begin_inset CommandInset citation
  5552. LatexCommand cite
  5553. key "NuGEN2010"
  5554. literal "false"
  5555. \end_inset
  5556. .
  5557. However, we are not aware of any publications using these currently available
  5558. protocols the with latest generation of microarrays that actually compare
  5559. the detection sensitivity with and without globin reduction.
  5560. However, in practice this has now been adopted generally primarily driven
  5561. by concerns for cost control.
  5562. The main objective of our work was to directly test the impact of globin
  5563. gene transcripts and a new globin blocking protocol for application to
  5564. the newest generation of differential gene expression profiling determined
  5565. using next generation sequencing.
  5566. \end_layout
  5567. \begin_layout Standard
  5568. The challenge of doing global gene expression profiling in cynomolgus monkeys
  5569. is that the current available arrays were never designed to comprehensively
  5570. cover this genome and have not been updated since the first assemblies
  5571. of the cynomolgus genome were published.
  5572. Therefore, we determined that the best strategy for peripheral blood profiling
  5573. was to do deep RNA-seq and inform the workflow using the latest available
  5574. genome assembly and annotation
  5575. \begin_inset CommandInset citation
  5576. LatexCommand cite
  5577. key "Wilson2013"
  5578. literal "false"
  5579. \end_inset
  5580. .
  5581. However, it was not immediately clear whether globin reduction was necessary
  5582. for RNA-seq or how much improvement in efficiency or sensitivity to detect
  5583. differential gene expression would be achieved for the added cost and work.
  5584. \end_layout
  5585. \begin_layout Standard
  5586. We only found one report that demonstrated that globin reduction significantly
  5587. improved the effective read yields for sequencing of human peripheral blood
  5588. cell RNA using a DeepSAGE protocol
  5589. \begin_inset CommandInset citation
  5590. LatexCommand cite
  5591. key "Mastrokolias2012"
  5592. literal "false"
  5593. \end_inset
  5594. .
  5595. The approach to DeepSAGE involves two different restriction enzymes that
  5596. purify and then tag small fragments of transcripts at specific locations
  5597. and thus, significantly reduces the complexity of the transcriptome.
  5598. Therefore, we could not determine how DeepSAGE results would translate
  5599. to the common strategy in the field for assaying the entire transcript
  5600. population by whole-transcriptome 3’-end RNA-seq.
  5601. Furthermore, if globin reduction is necessary, we also needed a globin
  5602. reduction method specific to cynomolgus globin sequences that would work
  5603. an organism for which no kit is available off the shelf.
  5604. \end_layout
  5605. \begin_layout Standard
  5606. As mentioned above, the addition of globin blocking oligos has a very small
  5607. impact on measured expression levels of gene expression.
  5608. However, this is a non-issue for the purposes of differential expression
  5609. testing, since a systematic change in a gene in all samples does not affect
  5610. relative expression levels between samples.
  5611. However, we must acknowledge that simple comparisons of gene expression
  5612. data obtained by GB and non-GB protocols are not possible without additional
  5613. normalization.
  5614. \end_layout
  5615. \begin_layout Standard
  5616. More importantly, globin blocking not only nearly doubles the yield of usable
  5617. reads, it also increases inter-sample correlation and sensitivity to detect
  5618. differential gene expression relative to the same set of samples profiled
  5619. without blocking.
  5620. In addition, globin blocking does not add a significant amount of random
  5621. noise to the data.
  5622. Globin blocking thus represents a cost-effective way to squeeze more data
  5623. and statistical power out of the same blood samples and the same amount
  5624. of sequencing.
  5625. In conclusion, globin reduction greatly increases the yield of useful RNA-seq
  5626. reads mapping to the rest of the genome, with minimal perturbations in
  5627. the relative levels of non-globin genes.
  5628. Based on these results, globin transcript reduction using sequence-specific,
  5629. complementary blocking oligonucleotides is recommended for all deep RNA-seq
  5630. of cynomolgus and other nonhuman primate blood samples.
  5631. \end_layout
  5632. \begin_layout Chapter
  5633. Future Directions
  5634. \end_layout
  5635. \begin_layout Standard
  5636. \begin_inset Flex TODO Note (inline)
  5637. status open
  5638. \begin_layout Plain Layout
  5639. Consider per-chapter future directions.
  5640. Check instructions.
  5641. \end_layout
  5642. \end_inset
  5643. \end_layout
  5644. \begin_layout Itemize
  5645. Study other epigenetic marks in more contexts
  5646. \end_layout
  5647. \begin_deeper
  5648. \begin_layout Itemize
  5649. DNA methylation, histone marks, chromatin accessibility & conformation in
  5650. CD4 T-cells
  5651. \end_layout
  5652. \begin_layout Itemize
  5653. Also look at other types of lymphocytes: CD8 T-cells, B-cells, NK cells
  5654. \end_layout
  5655. \end_deeper
  5656. \begin_layout Itemize
  5657. Use CV or bootstrap to better evaluate classifiers
  5658. \end_layout
  5659. \begin_layout Itemize
  5660. fRMAtools could be adapted to not require equal-sized groups
  5661. \end_layout
  5662. \begin_layout Standard
  5663. \begin_inset ERT
  5664. status open
  5665. \begin_layout Plain Layout
  5666. % Call it "References" instead of "Bibliography"
  5667. \end_layout
  5668. \begin_layout Plain Layout
  5669. \backslash
  5670. renewcommand{
  5671. \backslash
  5672. bibname}{References}
  5673. \end_layout
  5674. \end_inset
  5675. \end_layout
  5676. \begin_layout Standard
  5677. \begin_inset Flex TODO Note (inline)
  5678. status open
  5679. \begin_layout Plain Layout
  5680. Check bib entry formatting & sort order
  5681. \end_layout
  5682. \end_inset
  5683. \end_layout
  5684. \begin_layout Standard
  5685. \begin_inset CommandInset bibtex
  5686. LatexCommand bibtex
  5687. btprint "btPrintCited"
  5688. bibfiles "refs,code-refs"
  5689. options "bibtotoc,unsrt"
  5690. \end_inset
  5691. \end_layout
  5692. \end_body
  5693. \end_document