thesis.lyx 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412
  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. \end_preamble
  41. \use_default_options true
  42. \begin_modules
  43. todonotes
  44. \end_modules
  45. \maintain_unincluded_children false
  46. \language english
  47. \language_package default
  48. \inputencoding utf8
  49. \fontencoding default
  50. \font_roman "default" "default"
  51. \font_sans "default" "default"
  52. \font_typewriter "default" "default"
  53. \font_math "auto" "auto"
  54. \font_default_family default
  55. \use_non_tex_fonts false
  56. \font_sc false
  57. \font_osf false
  58. \font_sf_scale 100 100
  59. \font_tt_scale 100 100
  60. \use_microtype false
  61. \use_dash_ligatures true
  62. \graphics default
  63. \default_output_format pdf4
  64. \output_sync 0
  65. \bibtex_command default
  66. \index_command default
  67. \paperfontsize 12
  68. \spacing double
  69. \use_hyperref true
  70. \pdf_bookmarks true
  71. \pdf_bookmarksnumbered false
  72. \pdf_bookmarksopen false
  73. \pdf_bookmarksopenlevel 1
  74. \pdf_breaklinks false
  75. \pdf_pdfborder false
  76. \pdf_colorlinks false
  77. \pdf_backref false
  78. \pdf_pdfusetitle true
  79. \papersize letterpaper
  80. \use_geometry true
  81. \use_package amsmath 1
  82. \use_package amssymb 1
  83. \use_package cancel 1
  84. \use_package esint 1
  85. \use_package mathdots 1
  86. \use_package mathtools 1
  87. \use_package mhchem 1
  88. \use_package stackrel 1
  89. \use_package stmaryrd 1
  90. \use_package undertilde 1
  91. \cite_engine basic
  92. \cite_engine_type default
  93. \biblio_style plain
  94. \use_bibtopic false
  95. \use_indices false
  96. \paperorientation portrait
  97. \suppress_date false
  98. \justification true
  99. \use_refstyle 1
  100. \use_minted 0
  101. \index Index
  102. \shortcut idx
  103. \color #008000
  104. \end_index
  105. \leftmargin 1.5in
  106. \topmargin 1in
  107. \rightmargin 1in
  108. \bottommargin 1in
  109. \secnumdepth 3
  110. \tocdepth 3
  111. \paragraph_separation indent
  112. \paragraph_indentation default
  113. \is_math_indent 0
  114. \math_numbering_side default
  115. \quotes_style english
  116. \dynamic_quotes 0
  117. \papercolumns 1
  118. \papersides 2
  119. \paperpagestyle default
  120. \tracking_changes false
  121. \output_changes false
  122. \html_math_output 0
  123. \html_css_as_file 0
  124. \html_be_strict false
  125. \end_header
  126. \begin_body
  127. \begin_layout Title
  128. Bioinformatic analysis of complex, high-throughput genomic and epigenomic
  129. data in the context of immunology and transplant rejection
  130. \end_layout
  131. \begin_layout Author
  132. A thesis presented
  133. \begin_inset Newline newline
  134. \end_inset
  135. by
  136. \begin_inset Newline newline
  137. \end_inset
  138. Ryan C.
  139. Thompson
  140. \begin_inset Newline newline
  141. \end_inset
  142. to
  143. \begin_inset Newline newline
  144. \end_inset
  145. The Scripps Research Institute Graduate Program
  146. \begin_inset Newline newline
  147. \end_inset
  148. in partial fulfillment of the requirements for the degree of
  149. \begin_inset Newline newline
  150. \end_inset
  151. Doctor of Philosophy in the subject of Biology
  152. \begin_inset Newline newline
  153. \end_inset
  154. for
  155. \begin_inset Newline newline
  156. \end_inset
  157. The Scripps Research Institute
  158. \begin_inset Newline newline
  159. \end_inset
  160. La Jolla, California
  161. \end_layout
  162. \begin_layout Date
  163. May 2019
  164. \end_layout
  165. \begin_layout Standard
  166. [Copyright notice]
  167. \end_layout
  168. \begin_layout Standard
  169. [Thesis acceptance form]
  170. \end_layout
  171. \begin_layout Standard
  172. [Dedication]
  173. \end_layout
  174. \begin_layout Standard
  175. [Acknowledgements]
  176. \end_layout
  177. \begin_layout Standard
  178. \begin_inset CommandInset toc
  179. LatexCommand tableofcontents
  180. \end_inset
  181. \end_layout
  182. \begin_layout Standard
  183. \begin_inset FloatList table
  184. \end_inset
  185. \end_layout
  186. \begin_layout Standard
  187. \begin_inset FloatList figure
  188. \end_inset
  189. \end_layout
  190. \begin_layout Standard
  191. [List of Abbreviations]
  192. \end_layout
  193. \begin_layout Standard
  194. \begin_inset Flex TODO Note (inline)
  195. status open
  196. \begin_layout Plain Layout
  197. Look into auto-generated nomenclature list: https://wiki.lyx.org/Tips/Nomenclature
  198. \end_layout
  199. \end_inset
  200. \end_layout
  201. \begin_layout List of TODOs
  202. \end_layout
  203. \begin_layout Standard
  204. [Abstract]
  205. \end_layout
  206. \begin_layout Chapter*
  207. Abstract
  208. \end_layout
  209. \begin_layout Chapter
  210. Introduction
  211. \end_layout
  212. \begin_layout Section
  213. Background & Significance
  214. \end_layout
  215. \begin_layout Subsection
  216. Biological motivation
  217. \end_layout
  218. \begin_layout Itemize
  219. Rejection is the major long-term threat to organ and tissue grafts
  220. \end_layout
  221. \begin_deeper
  222. \begin_layout Itemize
  223. Common mechanisms of rejection
  224. \end_layout
  225. \begin_layout Itemize
  226. Effective immune suppression requires monitoring for rejection and tuning
  227. \end_layout
  228. \begin_layout Itemize
  229. Current tests for rejection (tissue biopsy) are invasive and biased
  230. \end_layout
  231. \begin_layout Itemize
  232. A blood test based on microarrays would be less biased and invasive
  233. \end_layout
  234. \end_deeper
  235. \begin_layout Itemize
  236. Memory cells are resistant to immune suppression
  237. \end_layout
  238. \begin_deeper
  239. \begin_layout Itemize
  240. Mechanisms of resistance in memory cells are poorly understood
  241. \end_layout
  242. \begin_layout Itemize
  243. A better understanding of immune memory formation is needed
  244. \end_layout
  245. \end_deeper
  246. \begin_layout Itemize
  247. Mesenchymal stem cell infusion is a promising new treatment to prevent/delay
  248. rejection
  249. \end_layout
  250. \begin_deeper
  251. \begin_layout Itemize
  252. Demonstrated in mice, but not yet in primates
  253. \end_layout
  254. \begin_layout Itemize
  255. Mechanism currently unknown, but MSC are known to be immune modulatory
  256. \end_layout
  257. \end_deeper
  258. \begin_layout Subsection
  259. Overview of bioinformatic analysis methods
  260. \end_layout
  261. \begin_layout Standard
  262. An overview of all the methods used, including what problem they solve,
  263. what assumptions they make, and a basic description of how they work.
  264. \end_layout
  265. \begin_layout Itemize
  266. ChIP-seq Peak calling
  267. \end_layout
  268. \begin_deeper
  269. \begin_layout Itemize
  270. Cross-correlation analysis to determine fragment size
  271. \end_layout
  272. \begin_layout Itemize
  273. Broad vs narrow peaks
  274. \end_layout
  275. \begin_layout Itemize
  276. SICER for broad peaks
  277. \end_layout
  278. \begin_layout Itemize
  279. IDR for biologically reproducible peaks
  280. \end_layout
  281. \begin_layout Itemize
  282. csaw peak filtering guidelines for unbiased downstream analysis
  283. \end_layout
  284. \end_deeper
  285. \begin_layout Itemize
  286. Normalization is non-trivial and application-dependant
  287. \end_layout
  288. \begin_deeper
  289. \begin_layout Itemize
  290. Expression arrays: RMA & fRMA; why fRMA is needed
  291. \end_layout
  292. \begin_layout Itemize
  293. Methylation arrays: M-value transformation approximates normal data but
  294. induces heteroskedasticity
  295. \end_layout
  296. \begin_layout Itemize
  297. RNA-seq: normalize based on assumption that the average gene is not changing
  298. \end_layout
  299. \begin_layout Itemize
  300. ChIP-seq: complex with many considerations, dependent on experimental methods,
  301. biological system, and analysis goals
  302. \end_layout
  303. \end_deeper
  304. \begin_layout Itemize
  305. Limma: The standard linear modeling framework for genomics
  306. \end_layout
  307. \begin_deeper
  308. \begin_layout Itemize
  309. empirical Bayes variance modeling: limma's core feature
  310. \end_layout
  311. \begin_layout Itemize
  312. edgeR & DESeq2: Extend with negative bonomial GLM for RNA-seq and other
  313. count data
  314. \end_layout
  315. \begin_layout Itemize
  316. voom: Extend with precision weights to model mean-variance trend
  317. \end_layout
  318. \begin_layout Itemize
  319. arrayWeights and duplicateCorrelation to handle complex variance structures
  320. \end_layout
  321. \end_deeper
  322. \begin_layout Itemize
  323. sva and ComBat for batch correction
  324. \end_layout
  325. \begin_layout Itemize
  326. Factor analysis: PCA, MDS, MOFA
  327. \end_layout
  328. \begin_deeper
  329. \begin_layout Itemize
  330. Batch-corrected PCA is informative, but careful application is required
  331. to avoid bias
  332. \end_layout
  333. \end_deeper
  334. \begin_layout Itemize
  335. Gene set analysis: camera and SPIA
  336. \end_layout
  337. \begin_layout Section
  338. Innovation
  339. \end_layout
  340. \begin_layout Itemize
  341. MSC infusion to improve transplant outcomes (prevent/delay rejection)
  342. \end_layout
  343. \begin_deeper
  344. \begin_layout Itemize
  345. Characterize MSC response to interferon gamma
  346. \end_layout
  347. \begin_layout Itemize
  348. IFN-g is thought to stimulate their function
  349. \end_layout
  350. \begin_layout Itemize
  351. Test IFN-g treated MSC infusion as a therapy to delay graft rejection in
  352. cynomolgus monkeys
  353. \end_layout
  354. \begin_layout Itemize
  355. Monitor animals post-transplant using blood RNA-seq at serial time points
  356. \end_layout
  357. \end_deeper
  358. \begin_layout Itemize
  359. Investigate dynamics of histone marks in CD4 T-cell activation and memory
  360. \end_layout
  361. \begin_deeper
  362. \begin_layout Itemize
  363. Previous studies have looked at single snapshots of histone marks
  364. \end_layout
  365. \begin_layout Itemize
  366. Instead, look at changes in histone marks across activation and memory
  367. \end_layout
  368. \end_deeper
  369. \begin_layout Itemize
  370. High-throughput sequencing and microarray technologies
  371. \end_layout
  372. \begin_deeper
  373. \begin_layout Itemize
  374. Powerful methods for assaying gene expression and epigenetics across entire
  375. genomes
  376. \end_layout
  377. \begin_layout Itemize
  378. Proper analysis requires finding and exploiting systematic genome-wide trends
  379. \end_layout
  380. \end_deeper
  381. \begin_layout Chapter
  382. Reproducible genome-wide epigenetic analysis of H3K4 and H3K27 methylation
  383. in naive and memory CD4 T-cell activation
  384. \end_layout
  385. \begin_layout Standard
  386. \begin_inset Flex TODO Note (inline)
  387. status open
  388. \begin_layout Plain Layout
  389. Author list: Me, Sarah, Dan
  390. \end_layout
  391. \end_inset
  392. \end_layout
  393. \begin_layout Section
  394. Approach
  395. \end_layout
  396. \begin_layout Itemize
  397. CD4 T-cells are central to all adaptive immune responses and memory
  398. \end_layout
  399. \begin_layout Itemize
  400. H3K4 and H3K27 methylation are major epigenetic regulators of gene expression
  401. \end_layout
  402. \begin_layout Itemize
  403. Canonically, H3K4 is activating and H3K27 is inhibitory, but the reality
  404. is complex
  405. \end_layout
  406. \begin_layout Itemize
  407. Looking at these marks during CD4 activation and memory should reveal new
  408. mechanistic details
  409. \end_layout
  410. \begin_layout Itemize
  411. Test
  412. \begin_inset Quotes eld
  413. \end_inset
  414. poised promoter
  415. \begin_inset Quotes erd
  416. \end_inset
  417. hypothesis in which H3K4 and H3K27 are both methylated
  418. \end_layout
  419. \begin_layout Itemize
  420. Expand scope of analysis beyond simple promoter counts
  421. \end_layout
  422. \begin_deeper
  423. \begin_layout Itemize
  424. Analyze peaks genome-wide, including in intergenic regions
  425. \end_layout
  426. \begin_layout Itemize
  427. Analysis of coverage distribution shape within promoters, e.g.
  428. upstream vs downstream coverage
  429. \end_layout
  430. \end_deeper
  431. \begin_layout Section
  432. Methods
  433. \end_layout
  434. \begin_layout Itemize
  435. Re-analyze previously published CD4 ChIP-seq & RNA-seq data
  436. \begin_inset CommandInset citation
  437. LatexCommand cite
  438. key "LaMere2016,Lamere2017"
  439. literal "true"
  440. \end_inset
  441. \end_layout
  442. \begin_deeper
  443. \begin_layout Itemize
  444. Completely reimplement analysis from scratch as a reproducible workflow
  445. \end_layout
  446. \begin_layout Itemize
  447. Use newly published methods & algorithms not available during the original
  448. analysis: SICER, csaw, MOFA, ComBat, sva, GREAT, and more
  449. \end_layout
  450. \end_deeper
  451. \begin_layout Itemize
  452. SICER, IDR, csaw, & GREAT to call ChIP-seq peaks genome-wide, perform differenti
  453. al abundance analysis, and relate those peaks to gene expression
  454. \end_layout
  455. \begin_layout Itemize
  456. Promoter counts in sliding windows around each gene's highest-expressed
  457. TSS to investigate coverage distribution within promoters
  458. \end_layout
  459. \begin_layout Section
  460. Results
  461. \end_layout
  462. \begin_layout Standard
  463. \begin_inset Note Note
  464. status open
  465. \begin_layout Plain Layout
  466. Focus on what hypotheses were tested, then select figures that show how
  467. those hypotheses were tested, even if the result is a negative.
  468. \end_layout
  469. \end_inset
  470. \end_layout
  471. \begin_layout Subsection
  472. H3K4 and H3K27 methylation occur in broad regions and are enriched near
  473. promoters
  474. \end_layout
  475. \begin_layout Itemize
  476. Figures comparing MACS (non-broad peak caller) to SICER/epic (broad peak
  477. caller)
  478. \end_layout
  479. \begin_deeper
  480. \begin_layout Itemize
  481. Compare peak sizes and number of called peaks
  482. \end_layout
  483. \begin_layout Itemize
  484. Show representative IDR consistency plots for both
  485. \end_layout
  486. \end_deeper
  487. \begin_layout Itemize
  488. IDR analysis shows that SICER-called peaks are much more reproducible between
  489. biological replicates
  490. \end_layout
  491. \begin_layout Itemize
  492. Each histone mark is enriched within a certain radius of gene TSS positions,
  493. but that radius is different for each mark (figure)
  494. \end_layout
  495. \begin_layout Subsection
  496. RNA-seq has a large confounding batch effect
  497. \end_layout
  498. \begin_layout Itemize
  499. RNA-seq batch effect can be partially corrected, but still induces uncorrectable
  500. biases in downstream analysis
  501. \end_layout
  502. \begin_deeper
  503. \begin_layout Itemize
  504. Figure showing MDS plot before & after ComBat
  505. \end_layout
  506. \begin_layout Itemize
  507. Figure relating sample weights to batches, cell types, time points, etc.,
  508. showing that one batch is significantly worse quality
  509. \end_layout
  510. \begin_layout Itemize
  511. Figures showing p-value histograms for within-batch and cross-batch contrasts,
  512. showing that cross-batch contrasts have attenuated signal, as do comparisons
  513. within the bad batch
  514. \end_layout
  515. \end_deeper
  516. \begin_layout Subsection
  517. ChIP-seq must be corrected for hidden confounding factors
  518. \end_layout
  519. \begin_layout Itemize
  520. Figures showing pre- and post-SVA MDS plots for each histone mark
  521. \end_layout
  522. \begin_layout Itemize
  523. Figures showing BCV plots with and without SVA for each histone mark
  524. \end_layout
  525. \begin_layout Subsection
  526. H3K4 and H3K27 promoter methylation has broadly the expected correlation
  527. with gene expression
  528. \end_layout
  529. \begin_layout Itemize
  530. H3K4 is correlated with higher expression, and H3K27 is correlated with
  531. lower expression genome-wide
  532. \end_layout
  533. \begin_layout Itemize
  534. Figures showing these correlations: box/violin plots of expression distributions
  535. with every combination of peak presence/absence in promoter
  536. \end_layout
  537. \begin_layout Itemize
  538. Appropriate statistical tests showing significant differences in expected
  539. directions
  540. \end_layout
  541. \begin_layout Subsection
  542. MOFA recovers biologically relevant variation from blind analysis by correlating
  543. across datasets
  544. \end_layout
  545. \begin_layout Itemize
  546. MOFA
  547. \begin_inset CommandInset citation
  548. LatexCommand cite
  549. key "Argelaguet2018"
  550. literal "false"
  551. \end_inset
  552. successfully separates biologically relevant patterns of variation from
  553. technical confounding factors without knowing the sample labels, by finding
  554. latent factors that explain variation across multiple data sets.
  555. \end_layout
  556. \begin_deeper
  557. \begin_layout Itemize
  558. Figure: show percent-variance-explained plot from MOFA and PCA-like plots
  559. for the relevant latent factors
  560. \end_layout
  561. \begin_layout Itemize
  562. MOFA analysis also shows that batch effect correction can't get much better
  563. than it already is (Figure comparing blind MOFA batch correction to ComBat
  564. correction)
  565. \end_layout
  566. \end_deeper
  567. \begin_layout Subsection
  568. Naive-to-memory convergence observed in H3K4 and RNA-seq data, not in H3K27me3
  569. \end_layout
  570. \begin_layout Itemize
  571. H3K4 and RNA-seq data show clear evidence of naive convergence with memory
  572. between days 1 and 5 (MDS plot figure, also compare with last figure from
  573. \begin_inset CommandInset citation
  574. LatexCommand cite
  575. key "LaMere2016"
  576. literal "false"
  577. \end_inset
  578. )
  579. \end_layout
  580. \begin_layout Standard
  581. \begin_inset Flex TODO Note (inline)
  582. status open
  583. \begin_layout Plain Layout
  584. Get explicit permission from Sarah to include the figure
  585. \end_layout
  586. \end_inset
  587. \end_layout
  588. \begin_layout Itemize
  589. Table of numbers of genes different between N & M at each time point, showing
  590. dwindling differences at later time points, consistent with convergence
  591. \end_layout
  592. \begin_layout Itemize
  593. Similar figure for H3K27me3 showing lack of convergence
  594. \end_layout
  595. \begin_layout Subsection
  596. Effect of promoter coverage upstream vs downstream of TSS
  597. \end_layout
  598. \begin_layout Itemize
  599. H3K4me peaks seem to correlate with increased expression as long as they
  600. are anywhere near the TSS
  601. \end_layout
  602. \begin_layout Itemize
  603. H3K27me3 peaks can have different correlations to gene expression depending
  604. on their position relative to TSS (e.g.
  605. upstream vs downstream) Results consistent with
  606. \begin_inset CommandInset citation
  607. LatexCommand cite
  608. key "Young2011"
  609. literal "false"
  610. \end_inset
  611. \end_layout
  612. \begin_layout Section
  613. Discussion
  614. \end_layout
  615. \begin_layout Itemize
  616. "Promoter radius" is not constant and must be defined empirically for a
  617. given data set
  618. \end_layout
  619. \begin_layout Itemize
  620. MOFA shows great promise for accelerating discovery of major biological
  621. effects in multi-omics datasets
  622. \end_layout
  623. \begin_deeper
  624. \begin_layout Itemize
  625. MOFA was added to this analysis late and played primarily a confirmatory
  626. role, but it was able to confirm earlier conclusions with much less prior
  627. information (no sample labels) and much less analyst effort
  628. \end_layout
  629. \begin_layout Itemize
  630. MOFA confirmed that the already-implemented batch correction in the RNA-seq
  631. data was already performing as well as possible given the limitations of
  632. the data
  633. \end_layout
  634. \end_deeper
  635. \begin_layout Itemize
  636. Naive-to-memory convergence implies that naive cells are differentiating
  637. into memory cells, and that gene expression and H3K4 methylation are involved
  638. in this differentiation while H3K27me3 is less involved
  639. \end_layout
  640. \begin_layout Itemize
  641. H3K27me3, canonically regarded as a deactivating mark, seems to have a more
  642. complex
  643. \end_layout
  644. \begin_layout Itemize
  645. Discuss advantages of developing using a reproducible workflow
  646. \end_layout
  647. \begin_layout Chapter
  648. Improving array-based analyses of transplant rejection by optimizing data
  649. preprocessing
  650. \end_layout
  651. \begin_layout Standard
  652. \begin_inset Note Note
  653. status open
  654. \begin_layout Plain Layout
  655. Author list: Me, Sunil, Tom, Padma, Dan
  656. \end_layout
  657. \end_inset
  658. \end_layout
  659. \begin_layout Section
  660. Approach
  661. \end_layout
  662. \begin_layout Subsection
  663. Proper pre-processing is essential for array data
  664. \end_layout
  665. \begin_layout Standard
  666. \begin_inset Flex TODO Note (inline)
  667. status open
  668. \begin_layout Plain Layout
  669. This section could probably use some citations
  670. \end_layout
  671. \end_inset
  672. \end_layout
  673. \begin_layout Standard
  674. Microarrays, bead ararys, and similar assays produce raw data in the form
  675. of fluorescence intensity measurements, with the each intensity measurement
  676. proportional to the abundance of some fluorescently-labelled target DNA
  677. or RNA sequence that base pairs to a specific probe sequence.
  678. However, these measurements for each probe are also affected my many technical
  679. confounding factors, such as the concentration of target material, strength
  680. of off-target binding, and the sensitivity of the imaging sensor.
  681. Some array designs also use multiple probe sequences for each target.
  682. Hence, extensive pre-processing of array data is necessary to normalize
  683. out the effects of these technical factors and summarize the information
  684. from multiple probes to arrive at a single usable estimate of abundance
  685. or other relevant quantity, such as a ratio of two abundances, for each
  686. target.
  687. \end_layout
  688. \begin_layout Standard
  689. The choice of pre-processing algorithms used in the analysis of an array
  690. data set can have a large effect on the results of that analysis.
  691. However, despite their importance, these steps are often neglected or rushed
  692. in order to get to the more scientifically interesting analysis steps involving
  693. the actual biology of the system under study.
  694. Hence, it is often possible to achieve substantial gains in statistical
  695. power, model goodness-of-fit, or other relevant performance measures, by
  696. checking the assumptions made by each preprocessing step and choosing specific
  697. normalization methods tailored to the specific goals of the current analysis.
  698. \end_layout
  699. \begin_layout Subsection
  700. Normalization for clinical microarray classifiers must be single-channel
  701. \end_layout
  702. \begin_layout Subsubsection
  703. Standard normalization methods are unsuitable for clinical application
  704. \end_layout
  705. \begin_layout Standard
  706. As the cost of performing microarray assays falls, there is increasing interest
  707. in using genomic assays for diagnostic purposes, such as distinguishing
  708. healthy transplants (TX) from transplants undergoing acute rejection (AR)
  709. or acute dysfunction with no rejection (ADNR).
  710. However, the the standard normalization algorithm used for microarray data,
  711. Robust Multi-chip Average (RMA)
  712. \begin_inset CommandInset citation
  713. LatexCommand cite
  714. key "Irizarry2003a"
  715. literal "false"
  716. \end_inset
  717. , is not applicable in a clinical setting.
  718. Two of the steps in RMA, quantile normalization and probe summarization
  719. by median polish, depend on every array in the data set being normalized.
  720. This means that adding or removing any arrays from a data set changes the
  721. normalized values for all arrays, and data sets that have been normalized
  722. separately cannot be compared to each other.
  723. Hence, when using RMA, any arrays to be analyzed together must also be
  724. normalized together, and the set of arrays included in the data set must
  725. be held constant throughout an analysis.
  726. \end_layout
  727. \begin_layout Standard
  728. These limitations present serious impediments to the use of arrays as a
  729. diagnostic tool.
  730. When training a classifier, the samples to be classified must not be involved
  731. in any step of the training process, lest their inclusion bias the training
  732. process.
  733. Once a classifier is deployed in a clinical setting, the samples to be
  734. classified will not even
  735. \emph on
  736. exist
  737. \emph default
  738. at the time of training, so including them would be impossible even if
  739. it were statistically justifiable.
  740. Therefore, any machine learning application for microarrays demands that
  741. the normalized expression values computed for an array must depend only
  742. on information contained within that array.
  743. This would ensure that each array's normalization is independent of every
  744. other array, and that arrays normalized separately can still be compared
  745. to each other without bias.
  746. Such a normalization is commonly referred to as
  747. \begin_inset Quotes eld
  748. \end_inset
  749. single-channel normalization
  750. \begin_inset Quotes erd
  751. \end_inset
  752. .
  753. \end_layout
  754. \begin_layout Subsubsection
  755. Several strategies are available to meet clinical normalization requirements
  756. \end_layout
  757. \begin_layout Standard
  758. Frozen RMA (fRMA) addresses these concerns by replacing the quantile normalizati
  759. on and median polish with alternatives that do not introduce inter-array
  760. dependence, allowing each array to be normalized independently of all others
  761. \begin_inset CommandInset citation
  762. LatexCommand cite
  763. key "McCall2010"
  764. literal "false"
  765. \end_inset
  766. .
  767. Quantile normalization is performed against a pre-generated set of quantiles
  768. learned from a collection of 850 publically available arrays sampled from
  769. a wide variety of tissues in the Gene Expression Omnibus (GEO).
  770. Each array's probe intensity distribution is normalized against these pre-gener
  771. ated quantiles.
  772. The median polish step is replaced with a robust weighted average of probe
  773. intensities, using inverse variance weights learned from the same public
  774. GEO data.
  775. The result is a normalization that satisfies the requirements mentioned
  776. above: each array is normalized independently of all others, and any two
  777. normalized arrays can be compared directly to each other.
  778. \end_layout
  779. \begin_layout Standard
  780. One important limitation of fRMA is that it requires a separate reference
  781. data set from which to learn the parameters (reference quantiles and probe
  782. weights) that will be used to normalize each array.
  783. These parameters are specific to a given array platform, and pre-generated
  784. parameters are only provided for the most common platforms, such as Affymetrix
  785. hgu133plus2.
  786. For a less common platform, such as hthgu133pluspm, is is necessary to
  787. learn custom parameters from in-house data before fRMA can be used to normalize
  788. samples on that platform
  789. \begin_inset CommandInset citation
  790. LatexCommand cite
  791. key "McCall2011"
  792. literal "false"
  793. \end_inset
  794. .
  795. \end_layout
  796. \begin_layout Standard
  797. One other option is the aptly-named Single Channel Array Normalization (SCAN),
  798. which adapts a normalization method originally designed for tiling arrays
  799. \begin_inset CommandInset citation
  800. LatexCommand cite
  801. key "Piccolo2012"
  802. literal "false"
  803. \end_inset
  804. .
  805. SCAN is truly single-channel in that it does not require a set of normalization
  806. paramters estimated from an external set of reference samples like fRMA
  807. does.
  808. \end_layout
  809. \begin_layout Subsection
  810. Heteroskedasticity must be accounted for in methylation array data
  811. \end_layout
  812. \begin_layout Subsubsection
  813. Methylation array preprocessing induces heteroskedasticity
  814. \end_layout
  815. \begin_layout Standard
  816. DNA methylation arrays are a relatively new kind of assay that uses microarrays
  817. to measure the degree of methylation on cytosines in specific regions arrayed
  818. across the genome.
  819. First, bisulfite treatment converts all unmethylated cytosines to uracil
  820. (which then become thymine after amplication) while leaving methylated
  821. cytosines unaffected.
  822. Then, each target region is interrogated with two probes: one binds to
  823. the original genomic sequence and interrogates the level of methylated
  824. DNA, and the other binds to the sequence with all Cs replaced by Ts and
  825. interrogates the level of unmethylated DNA.
  826. \end_layout
  827. \begin_layout Standard
  828. \begin_inset Float figure
  829. wide false
  830. sideways false
  831. status collapsed
  832. \begin_layout Plain Layout
  833. \align center
  834. \begin_inset Graphics
  835. filename graphics/methylvoom/sigmoid.pdf
  836. \end_inset
  837. \end_layout
  838. \begin_layout Plain Layout
  839. \begin_inset Caption Standard
  840. \begin_layout Plain Layout
  841. \begin_inset CommandInset label
  842. LatexCommand label
  843. name "fig:Sigmoid-beta-m-mapping"
  844. \end_inset
  845. \series bold
  846. Sigmoid shape of the mapping between β and M values
  847. \end_layout
  848. \end_inset
  849. \end_layout
  850. \end_inset
  851. \end_layout
  852. \begin_layout Standard
  853. After normalization, these two probe intensities are summarized in one of
  854. two ways, each with advantages and disadvantages.
  855. β
  856. \series bold
  857. \series default
  858. values, interpreted as fraction of DNA copies methylated, range from 0 to
  859. 1.
  860. β
  861. \series bold
  862. \series default
  863. values are conceptually easy to interpret, but the constrained range makes
  864. them unsuitable for linear modeling, and their error distributions are
  865. highly non-normal, which also frustrates linear modeling.
  866. M-values, interpreted as the log ratio of methylated to unmethylated copies,
  867. are computed by mapping the beta values from
  868. \begin_inset Formula $[0,1]$
  869. \end_inset
  870. onto
  871. \begin_inset Formula $(-\infty,+\infty)$
  872. \end_inset
  873. using a sigmoid curve (Figure
  874. \begin_inset CommandInset ref
  875. LatexCommand ref
  876. reference "fig:Sigmoid-beta-m-mapping"
  877. plural "false"
  878. caps "false"
  879. noprefix "false"
  880. \end_inset
  881. ).
  882. This transformation results in values with better statistical perperties:
  883. the unconstrained range is suitable for linear modeling, and the error
  884. distributions are more normal.
  885. Hence, most linear modeling and other statistical testing on methylation
  886. arrays is performed using M-values.
  887. \end_layout
  888. \begin_layout Standard
  889. However, the steep slope of the sigmoid transformation near 0 and 1 tends
  890. to over-exaggerate small differences in β values near those extremes, which
  891. in turn amplifies the error in those values, leading to a U-shaped trend
  892. in the mean-variance curve: extreme values have higher variances than values
  893. near the middle.
  894. This mean-variance dependency must be accounted for when fitting the linear
  895. model for differential methylation, or else the variance will be systematically
  896. overestimated for probes with moderate M-values and underestimated for
  897. probes with extreme M-values.
  898. \end_layout
  899. \begin_layout Subsubsection
  900. The voom method for RNA-seq data can model M-value heteroskedasticity
  901. \end_layout
  902. \begin_layout Standard
  903. RNA-seq read count data are also known to show heteroskedasticity, and the
  904. voom method was developed for modeling this heteroskedasticity by estimating
  905. the mean-variance trend in the data and using this trend to assign precision
  906. weights to each observation
  907. \begin_inset CommandInset citation
  908. LatexCommand cite
  909. key "Law2013"
  910. literal "false"
  911. \end_inset
  912. .
  913. While methylation array data are not derived from counts and have a very
  914. different mean-variance relationship from that of typical RNA-seq data,
  915. the voom method makes no specific assumptions on the shape of the mean-variance
  916. relationship - it only assumes that the relationship is smooth enough to
  917. model using a lowess curve.
  918. Hence, the method is sufficiently general to model the mean-variance relationsh
  919. ip in methylation array data.
  920. However, the standard implementation of voom assumes that the input is
  921. given in raw read counts, and it must be adapted to run on methylation
  922. M-values.
  923. \end_layout
  924. \begin_layout Standard
  925. \begin_inset Flex TODO Note (inline)
  926. status open
  927. \begin_layout Plain Layout
  928. Put code on Github and reference it
  929. \end_layout
  930. \end_inset
  931. \end_layout
  932. \begin_layout Section
  933. Methods
  934. \end_layout
  935. \begin_layout Subsection
  936. Evaluation of classifier performance with different normalization methods
  937. \end_layout
  938. \begin_layout Standard
  939. For testing different normalizations, a data set of 157 hgu133plus2 arrays
  940. was used, consisting of blood samples from kidney transplant patients whose
  941. grafts had been graded as TX, AR, or ADNR via biopsy and histology (46
  942. TX, 69 AR, 42 ADNR)
  943. \begin_inset CommandInset citation
  944. LatexCommand cite
  945. key "Kurian2014"
  946. literal "true"
  947. \end_inset
  948. .
  949. Additionally, an external validation set of 75 samples was gathered from
  950. public GEO data (37 TX, 38 AR, no ADNR).
  951. \end_layout
  952. \begin_layout Standard
  953. \begin_inset Flex TODO Note (inline)
  954. status collapsed
  955. \begin_layout Plain Layout
  956. Find appropriate GEO identifiers if possible.
  957. Kurian 2014 says GSE15296, but this seems to be different data.
  958. I also need to look up the GEO accession for the external validation set.
  959. \end_layout
  960. \end_inset
  961. \end_layout
  962. \begin_layout Standard
  963. To evaluate the effect of each normalization on classifier performance,
  964. the same classifier training and validation procedure was used after each
  965. normalization method.
  966. The PAM package was used to train a nearest shrunken centroid classifier
  967. on the training set and select the appropriate threshold for centroid shrinking.
  968. Then the trained classifier was used to predict the class probabilities
  969. of each validation sample.
  970. From these class probabilities, ROC curves and area-under-curve (AUC) values
  971. were generated
  972. \begin_inset CommandInset citation
  973. LatexCommand cite
  974. key "Turck2011"
  975. literal "false"
  976. \end_inset
  977. .
  978. Each normalization was tested on two different sets of training and validation
  979. samples.
  980. For internal validation, the 115 TX and AR arrays in the internal set were
  981. split at random into two equal sized sets, one for training and one for
  982. validation, each containing the same numbers of TX and AR samples as the
  983. other set.
  984. For external validation, the full set of 115 TX and AR samples were used
  985. as a training set, and the 75 external TX and AR samples were used as the
  986. validation set.
  987. Thus, 2 ROC curves and AUC values were generated for each normalization
  988. method: one internal and one external.
  989. Because the external validation set contains no ADNR samples, only classificati
  990. on of TX and AR samples was considered.
  991. The ADNR samples were included during normalization but excluded from all
  992. classifier training and validation.
  993. This ensures that the performance on internal and external validation sets
  994. is directly comparable.
  995. \end_layout
  996. \begin_layout Standard
  997. \begin_inset Flex TODO Note (inline)
  998. status collapsed
  999. \begin_layout Plain Layout
  1000. Summarize the get.best.threshold algorithm for PAM threshold selection
  1001. \end_layout
  1002. \end_inset
  1003. \end_layout
  1004. \begin_layout Standard
  1005. Six different normalization strategies were evaluated.
  1006. First, 2 well-known non-single-channel normalization methods were considered:
  1007. RMA and dChip
  1008. \begin_inset CommandInset citation
  1009. LatexCommand cite
  1010. key "Li2001,Irizarry2003a"
  1011. literal "false"
  1012. \end_inset
  1013. .
  1014. Since RMA produces expression values on a log2 scale and dChip does not,
  1015. the values from dChip were log2 transformed after normalization.
  1016. Next, RMA and dChip followed by Global Rank-invariant Set Normalization
  1017. (GRSN) were tested
  1018. \begin_inset CommandInset citation
  1019. LatexCommand cite
  1020. key "Pelz2008"
  1021. literal "false"
  1022. \end_inset
  1023. .
  1024. Post-processing with GRSN does not turn RMA or dChip into single-channel
  1025. methods, but it may help mitigate batch effects and is therefore useful
  1026. as a benchmark.
  1027. Lastly, the two single-channel normalization methods, fRMA and SCAN, were
  1028. tested
  1029. \begin_inset CommandInset citation
  1030. LatexCommand cite
  1031. key "McCall2010,Piccolo2012"
  1032. literal "false"
  1033. \end_inset
  1034. .
  1035. When evaluting internal validation performance, only the 157 internal samples
  1036. were normalized; when evaluating external validation performance, all 157
  1037. internal samples and 75 external samples were normalized together.
  1038. \end_layout
  1039. \begin_layout Standard
  1040. For demonstrating the problem with separate normalization of training and
  1041. validation data, one additional normalization was performed: the internal
  1042. and external sets were each normalized separately using RMA, and the normalized
  1043. data for each set were combined into a single set with no further attempts
  1044. at normalizing between the two sets.
  1045. The represents approximately how RMA would have to be used in a clinical
  1046. setting, where the samples to be classified are not available at the time
  1047. the classifier is trained.
  1048. \end_layout
  1049. \begin_layout Subsection
  1050. Generating custom fRMA vectors for hthgu133pluspm array platform
  1051. \end_layout
  1052. \begin_layout Standard
  1053. In order to enable fRMA normalization for the hthgu133pluspm array platform,
  1054. custom fRMA normalization vectors were trained using the frmaTools package
  1055. \begin_inset CommandInset citation
  1056. LatexCommand cite
  1057. key "McCall2011"
  1058. literal "false"
  1059. \end_inset
  1060. .
  1061. Separate vectors were created for two types of samples: kidney graft biopsy
  1062. samples and blood samples from graft recipients.
  1063. For training, a 341 kidney biopsy samples from 2 data sets and 965 blood
  1064. samples from 5 data sets were used as the reference set.
  1065. Arrays were groups into batches based on unique combinations of sample
  1066. type (blood or biopsy), diagnosis (TX, AR, etc.), data set, and scan date.
  1067. Thus, each batch represents arrays of the same kind that were run together
  1068. on the same day.
  1069. For estimating the probe inverse variance weights, frmaTools requires equal-siz
  1070. ed batches, which means a batch size must be chosen, and then batches smaller
  1071. than that size must be ignored, while batches larger than the chosen size
  1072. must be downsampled.
  1073. This downsampling is performed randomly, so the sampling process is repeated
  1074. 5 times and the resulting normalizations are compared to each other.
  1075. \end_layout
  1076. \begin_layout Standard
  1077. To evaluate the consistency of the generated normalization vectors, the
  1078. 5 fRMA vector sets generated from 5 random batch samplings were each used
  1079. to normalize the same 20 randomly selected samples from each tissue.
  1080. Then the normalized expression values for each probe on each array were
  1081. compared across all normalizations.
  1082. Each fRMA normalization was also compared against the normalized expression
  1083. values obtained by normalizing the same 20 samples with ordinary RMA.
  1084. \end_layout
  1085. \begin_layout Subsection
  1086. Modeling methylation array M-value heteroskedasticy with modified voom implement
  1087. ation
  1088. \end_layout
  1089. \begin_layout Itemize
  1090. Methylation arrays for differential methylation in rejection vs.
  1091. healthy transplant
  1092. \end_layout
  1093. \begin_layout Itemize
  1094. Adapt voom method originally designed for RNA-seq to model mean-variance
  1095. dependence
  1096. \end_layout
  1097. \begin_layout Itemize
  1098. Use sample precision weighting, duplicateCorrelation, and sva to adjust
  1099. for other confounding factors
  1100. \end_layout
  1101. \begin_layout Section
  1102. Results
  1103. \end_layout
  1104. \begin_layout Standard
  1105. \begin_inset Flex TODO Note (inline)
  1106. status open
  1107. \begin_layout Plain Layout
  1108. Improve subsection titles in this section
  1109. \end_layout
  1110. \end_inset
  1111. \end_layout
  1112. \begin_layout Subsection
  1113. fRMA eliminates unwanted dependence of classifier training on normalization
  1114. strategy caused by RMA
  1115. \end_layout
  1116. \begin_layout Subsubsection
  1117. Separate normalization with RMA introduces unwanted biases in classification
  1118. \end_layout
  1119. \begin_layout Standard
  1120. \begin_inset Float figure
  1121. wide false
  1122. sideways false
  1123. status open
  1124. \begin_layout Plain Layout
  1125. \align center
  1126. \begin_inset Graphics
  1127. filename graphics/PAM/predplot.pdf
  1128. width 100col%
  1129. groupId colwidth
  1130. \end_inset
  1131. \end_layout
  1132. \begin_layout Plain Layout
  1133. \begin_inset Caption Standard
  1134. \begin_layout Plain Layout
  1135. \begin_inset CommandInset label
  1136. LatexCommand label
  1137. name "fig:Classifier-probabilities-RMA"
  1138. \end_inset
  1139. \series bold
  1140. Classifier probabilities on validation samples when normalized with RMA
  1141. together vs.
  1142. separately.
  1143. \end_layout
  1144. \end_inset
  1145. \end_layout
  1146. \end_inset
  1147. \end_layout
  1148. \begin_layout Standard
  1149. To demonstrate the problem with non-single-channel methods, we considered
  1150. the problem of training a classifier to distinguish TX from AR using the
  1151. samples from the internal set as training data, evaluating performance
  1152. on the external set.
  1153. First, training and evaluation were performed after normalizing all array
  1154. samples together as a single set using RMA, and second, the internal samples
  1155. were normalized separately from the external samples and the training and
  1156. evaluation were repeated.
  1157. For each sample in the validation set, the classifier probabilities from
  1158. both classifiers were plotted against each other (Fig.
  1159. \begin_inset CommandInset ref
  1160. LatexCommand ref
  1161. reference "fig:Classifier-probabilities-RMA"
  1162. plural "false"
  1163. caps "false"
  1164. noprefix "false"
  1165. \end_inset
  1166. ).
  1167. As expected, separate normalization biases the classifier probabilities,
  1168. resulting in several misclassifications.
  1169. In this case, the bias from separate normalization causes the classifier
  1170. to assign a lower probability of AR to every sample.
  1171. \end_layout
  1172. \begin_layout Subsubsection
  1173. fRMA and SCAN achieve maintain classification performance while eliminating
  1174. dependence on normalization strategy
  1175. \end_layout
  1176. \begin_layout Standard
  1177. \begin_inset Float figure
  1178. wide false
  1179. sideways false
  1180. status collapsed
  1181. \begin_layout Plain Layout
  1182. \align center
  1183. \begin_inset Graphics
  1184. filename graphics/PAM/ROC-TXvsAR-internal.pdf
  1185. width 100col%
  1186. groupId colwidth
  1187. \end_inset
  1188. \end_layout
  1189. \begin_layout Plain Layout
  1190. \begin_inset Caption Standard
  1191. \begin_layout Plain Layout
  1192. \begin_inset CommandInset label
  1193. LatexCommand label
  1194. name "fig:ROC-PAM-int"
  1195. \end_inset
  1196. ROC curves for PAM on internal validation data using different normalization
  1197. strategies
  1198. \end_layout
  1199. \end_inset
  1200. \end_layout
  1201. \end_inset
  1202. \end_layout
  1203. \begin_layout Standard
  1204. \begin_inset Float table
  1205. wide false
  1206. sideways false
  1207. status collapsed
  1208. \begin_layout Plain Layout
  1209. \align center
  1210. \begin_inset Tabular
  1211. <lyxtabular version="3" rows="7" columns="4">
  1212. <features tabularvalignment="middle">
  1213. <column alignment="center" valignment="top">
  1214. <column alignment="center" valignment="top">
  1215. <column alignment="center" valignment="top">
  1216. <column alignment="center" valignment="top">
  1217. <row>
  1218. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1219. \begin_inset Text
  1220. \begin_layout Plain Layout
  1221. \family roman
  1222. \series medium
  1223. \shape up
  1224. \size normal
  1225. \emph off
  1226. \bar no
  1227. \strikeout off
  1228. \xout off
  1229. \uuline off
  1230. \uwave off
  1231. \noun off
  1232. \color none
  1233. Normalization
  1234. \end_layout
  1235. \end_inset
  1236. </cell>
  1237. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1238. \begin_inset Text
  1239. \begin_layout Plain Layout
  1240. Single-channel?
  1241. \end_layout
  1242. \end_inset
  1243. </cell>
  1244. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1245. \begin_inset Text
  1246. \begin_layout Plain Layout
  1247. \family roman
  1248. \series medium
  1249. \shape up
  1250. \size normal
  1251. \emph off
  1252. \bar no
  1253. \strikeout off
  1254. \xout off
  1255. \uuline off
  1256. \uwave off
  1257. \noun off
  1258. \color none
  1259. Internal Val.
  1260. AUC
  1261. \end_layout
  1262. \end_inset
  1263. </cell>
  1264. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  1265. \begin_inset Text
  1266. \begin_layout Plain Layout
  1267. External Val.
  1268. AUC
  1269. \end_layout
  1270. \end_inset
  1271. </cell>
  1272. </row>
  1273. <row>
  1274. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1275. \begin_inset Text
  1276. \begin_layout Plain Layout
  1277. \family roman
  1278. \series medium
  1279. \shape up
  1280. \size normal
  1281. \emph off
  1282. \bar no
  1283. \strikeout off
  1284. \xout off
  1285. \uuline off
  1286. \uwave off
  1287. \noun off
  1288. \color none
  1289. RMA
  1290. \end_layout
  1291. \end_inset
  1292. </cell>
  1293. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1294. \begin_inset Text
  1295. \begin_layout Plain Layout
  1296. No
  1297. \end_layout
  1298. \end_inset
  1299. </cell>
  1300. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1301. \begin_inset Text
  1302. \begin_layout Plain Layout
  1303. \family roman
  1304. \series medium
  1305. \shape up
  1306. \size normal
  1307. \emph off
  1308. \bar no
  1309. \strikeout off
  1310. \xout off
  1311. \uuline off
  1312. \uwave off
  1313. \noun off
  1314. \color none
  1315. 0.852
  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. \family roman
  1323. \series medium
  1324. \shape up
  1325. \size normal
  1326. \emph off
  1327. \bar no
  1328. \strikeout off
  1329. \xout off
  1330. \uuline off
  1331. \uwave off
  1332. \noun off
  1333. \color none
  1334. 0.713
  1335. \end_layout
  1336. \end_inset
  1337. </cell>
  1338. </row>
  1339. <row>
  1340. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1341. \begin_inset Text
  1342. \begin_layout Plain Layout
  1343. \family roman
  1344. \series medium
  1345. \shape up
  1346. \size normal
  1347. \emph off
  1348. \bar no
  1349. \strikeout off
  1350. \xout off
  1351. \uuline off
  1352. \uwave off
  1353. \noun off
  1354. \color none
  1355. dChip
  1356. \end_layout
  1357. \end_inset
  1358. </cell>
  1359. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1360. \begin_inset Text
  1361. \begin_layout Plain Layout
  1362. No
  1363. \end_layout
  1364. \end_inset
  1365. </cell>
  1366. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1367. \begin_inset Text
  1368. \begin_layout Plain Layout
  1369. \family roman
  1370. \series medium
  1371. \shape up
  1372. \size normal
  1373. \emph off
  1374. \bar no
  1375. \strikeout off
  1376. \xout off
  1377. \uuline off
  1378. \uwave off
  1379. \noun off
  1380. \color none
  1381. 0.891
  1382. \end_layout
  1383. \end_inset
  1384. </cell>
  1385. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1386. \begin_inset Text
  1387. \begin_layout Plain Layout
  1388. \family roman
  1389. \series medium
  1390. \shape up
  1391. \size normal
  1392. \emph off
  1393. \bar no
  1394. \strikeout off
  1395. \xout off
  1396. \uuline off
  1397. \uwave off
  1398. \noun off
  1399. \color none
  1400. 0.657
  1401. \end_layout
  1402. \end_inset
  1403. </cell>
  1404. </row>
  1405. <row>
  1406. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1407. \begin_inset Text
  1408. \begin_layout Plain Layout
  1409. \family roman
  1410. \series medium
  1411. \shape up
  1412. \size normal
  1413. \emph off
  1414. \bar no
  1415. \strikeout off
  1416. \xout off
  1417. \uuline off
  1418. \uwave off
  1419. \noun off
  1420. \color none
  1421. RMA + GRSN
  1422. \end_layout
  1423. \end_inset
  1424. </cell>
  1425. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1426. \begin_inset Text
  1427. \begin_layout Plain Layout
  1428. No
  1429. \end_layout
  1430. \end_inset
  1431. </cell>
  1432. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1433. \begin_inset Text
  1434. \begin_layout Plain Layout
  1435. \family roman
  1436. \series medium
  1437. \shape up
  1438. \size normal
  1439. \emph off
  1440. \bar no
  1441. \strikeout off
  1442. \xout off
  1443. \uuline off
  1444. \uwave off
  1445. \noun off
  1446. \color none
  1447. 0.816
  1448. \end_layout
  1449. \end_inset
  1450. </cell>
  1451. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1452. \begin_inset Text
  1453. \begin_layout Plain Layout
  1454. \family roman
  1455. \series medium
  1456. \shape up
  1457. \size normal
  1458. \emph off
  1459. \bar no
  1460. \strikeout off
  1461. \xout off
  1462. \uuline off
  1463. \uwave off
  1464. \noun off
  1465. \color none
  1466. 0.750
  1467. \end_layout
  1468. \end_inset
  1469. </cell>
  1470. </row>
  1471. <row>
  1472. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1473. \begin_inset Text
  1474. \begin_layout Plain Layout
  1475. \family roman
  1476. \series medium
  1477. \shape up
  1478. \size normal
  1479. \emph off
  1480. \bar no
  1481. \strikeout off
  1482. \xout off
  1483. \uuline off
  1484. \uwave off
  1485. \noun off
  1486. \color none
  1487. dChip + GRSN
  1488. \end_layout
  1489. \end_inset
  1490. </cell>
  1491. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1492. \begin_inset Text
  1493. \begin_layout Plain Layout
  1494. No
  1495. \end_layout
  1496. \end_inset
  1497. </cell>
  1498. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1499. \begin_inset Text
  1500. \begin_layout Plain Layout
  1501. \family roman
  1502. \series medium
  1503. \shape up
  1504. \size normal
  1505. \emph off
  1506. \bar no
  1507. \strikeout off
  1508. \xout off
  1509. \uuline off
  1510. \uwave off
  1511. \noun off
  1512. \color none
  1513. 0.875
  1514. \end_layout
  1515. \end_inset
  1516. </cell>
  1517. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1518. \begin_inset Text
  1519. \begin_layout Plain Layout
  1520. \family roman
  1521. \series medium
  1522. \shape up
  1523. \size normal
  1524. \emph off
  1525. \bar no
  1526. \strikeout off
  1527. \xout off
  1528. \uuline off
  1529. \uwave off
  1530. \noun off
  1531. \color none
  1532. 0.642
  1533. \end_layout
  1534. \end_inset
  1535. </cell>
  1536. </row>
  1537. <row>
  1538. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1539. \begin_inset Text
  1540. \begin_layout Plain Layout
  1541. \family roman
  1542. \series medium
  1543. \shape up
  1544. \size normal
  1545. \emph off
  1546. \bar no
  1547. \strikeout off
  1548. \xout off
  1549. \uuline off
  1550. \uwave off
  1551. \noun off
  1552. \color none
  1553. fRMA
  1554. \end_layout
  1555. \end_inset
  1556. </cell>
  1557. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1558. \begin_inset Text
  1559. \begin_layout Plain Layout
  1560. Yes
  1561. \end_layout
  1562. \end_inset
  1563. </cell>
  1564. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  1565. \begin_inset Text
  1566. \begin_layout Plain Layout
  1567. \family roman
  1568. \series medium
  1569. \shape up
  1570. \size normal
  1571. \emph off
  1572. \bar no
  1573. \strikeout off
  1574. \xout off
  1575. \uuline off
  1576. \uwave off
  1577. \noun off
  1578. \color none
  1579. 0.863
  1580. \end_layout
  1581. \end_inset
  1582. </cell>
  1583. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1584. \begin_inset Text
  1585. \begin_layout Plain Layout
  1586. \family roman
  1587. \series medium
  1588. \shape up
  1589. \size normal
  1590. \emph off
  1591. \bar no
  1592. \strikeout off
  1593. \xout off
  1594. \uuline off
  1595. \uwave off
  1596. \noun off
  1597. \color none
  1598. 0.718
  1599. \end_layout
  1600. \end_inset
  1601. </cell>
  1602. </row>
  1603. <row>
  1604. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1605. \begin_inset Text
  1606. \begin_layout Plain Layout
  1607. \family roman
  1608. \series medium
  1609. \shape up
  1610. \size normal
  1611. \emph off
  1612. \bar no
  1613. \strikeout off
  1614. \xout off
  1615. \uuline off
  1616. \uwave off
  1617. \noun off
  1618. \color none
  1619. SCAN
  1620. \end_layout
  1621. \end_inset
  1622. </cell>
  1623. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1624. \begin_inset Text
  1625. \begin_layout Plain Layout
  1626. Yes
  1627. \end_layout
  1628. \end_inset
  1629. </cell>
  1630. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  1631. \begin_inset Text
  1632. \begin_layout Plain Layout
  1633. \family roman
  1634. \series medium
  1635. \shape up
  1636. \size normal
  1637. \emph off
  1638. \bar no
  1639. \strikeout off
  1640. \xout off
  1641. \uuline off
  1642. \uwave off
  1643. \noun off
  1644. \color none
  1645. 0.853
  1646. \end_layout
  1647. \end_inset
  1648. </cell>
  1649. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  1650. \begin_inset Text
  1651. \begin_layout Plain Layout
  1652. \family roman
  1653. \series medium
  1654. \shape up
  1655. \size normal
  1656. \emph off
  1657. \bar no
  1658. \strikeout off
  1659. \xout off
  1660. \uuline off
  1661. \uwave off
  1662. \noun off
  1663. \color none
  1664. 0.689
  1665. \end_layout
  1666. \end_inset
  1667. </cell>
  1668. </row>
  1669. </lyxtabular>
  1670. \end_inset
  1671. \end_layout
  1672. \begin_layout Plain Layout
  1673. \begin_inset Caption Standard
  1674. \begin_layout Plain Layout
  1675. \begin_inset CommandInset label
  1676. LatexCommand label
  1677. name "tab:AUC-PAM"
  1678. \end_inset
  1679. \series bold
  1680. AUC values for internal and external validation with 6 different normalization
  1681. strategies.
  1682. \series default
  1683. Only fRMA and SCAN are single-channel normalizations.
  1684. The other 4 normalizations are for comparison.
  1685. \end_layout
  1686. \end_inset
  1687. \end_layout
  1688. \end_inset
  1689. \end_layout
  1690. \begin_layout Standard
  1691. For internal validation, the 6 methods' AUC values ranged from 0.816 to 0.891,
  1692. as shown in Table
  1693. \begin_inset CommandInset ref
  1694. LatexCommand ref
  1695. reference "tab:AUC-PAM"
  1696. plural "false"
  1697. caps "false"
  1698. noprefix "false"
  1699. \end_inset
  1700. .
  1701. Among the non-single-channel normalizations, dChip outperformed RMA, while
  1702. GRSN reduced the AUC values for both dChip and RMA.
  1703. Both single-channel methods, fRMA and SCAN, slightly outperformed RMA,
  1704. with fRMA ahead of SCAN.
  1705. However, the difference between RMA and fRMA is still quite small.
  1706. Figure
  1707. \begin_inset CommandInset ref
  1708. LatexCommand ref
  1709. reference "fig:ROC-PAM-int"
  1710. plural "false"
  1711. caps "false"
  1712. noprefix "false"
  1713. \end_inset
  1714. shows that the ROC curves for RMA, dChip, and fRMA look very similar and
  1715. relatively smooth, while both GRSN curves and the curve for SCAN have a
  1716. more jagged appearance.
  1717. \end_layout
  1718. \begin_layout Standard
  1719. \begin_inset Float figure
  1720. wide false
  1721. sideways false
  1722. status open
  1723. \begin_layout Plain Layout
  1724. \align center
  1725. \begin_inset Graphics
  1726. filename graphics/PAM/ROC-TXvsAR-external.pdf
  1727. width 100col%
  1728. groupId colwidth
  1729. \end_inset
  1730. \end_layout
  1731. \begin_layout Plain Layout
  1732. \begin_inset Caption Standard
  1733. \begin_layout Plain Layout
  1734. \begin_inset CommandInset label
  1735. LatexCommand label
  1736. name "fig:ROC-PAM-ext"
  1737. \end_inset
  1738. ROC curve for PAM on external validation data using different normalization
  1739. strategies
  1740. \end_layout
  1741. \end_inset
  1742. \end_layout
  1743. \end_inset
  1744. \end_layout
  1745. \begin_layout Standard
  1746. For external validation, as expected, all the AUC values are lower than
  1747. the internal validations, ranging from 0.642 to 0.750 (Table
  1748. \begin_inset CommandInset ref
  1749. LatexCommand ref
  1750. reference "tab:AUC-PAM"
  1751. plural "false"
  1752. caps "false"
  1753. noprefix "false"
  1754. \end_inset
  1755. ).
  1756. With or without GRSN, RMA shows its dominance over dChip in this more challengi
  1757. ng test.
  1758. Unlike in the internal validation, GRSN actually improves the classifier
  1759. performance for RMA, although it does not for dChip.
  1760. Once again, both single-channel methods perform about on par with RMA,
  1761. with fRMA performing slightly better and SCAN performing a bit worse.
  1762. Figure
  1763. \begin_inset CommandInset ref
  1764. LatexCommand ref
  1765. reference "fig:ROC-PAM-ext"
  1766. plural "false"
  1767. caps "false"
  1768. noprefix "false"
  1769. \end_inset
  1770. shows the ROC curves for the external validation test.
  1771. As expected, none of them are as clean-looking as the internal validation
  1772. ROC curves.
  1773. The curves for RMA, RMA+GRSN, and fRMA all look similar, while the other
  1774. curves look more divergent.
  1775. \end_layout
  1776. \begin_layout Subsection
  1777. fRMA with custom-generated vectors enables normalization on hthgu133pluspm
  1778. \end_layout
  1779. \begin_layout Standard
  1780. \begin_inset Float figure
  1781. wide false
  1782. sideways false
  1783. status open
  1784. \begin_layout Plain Layout
  1785. \align center
  1786. \begin_inset Graphics
  1787. filename graphics/frma-pax-bx/batchsize_batches.pdf
  1788. \end_inset
  1789. \end_layout
  1790. \begin_layout Plain Layout
  1791. \begin_inset Caption Standard
  1792. \begin_layout Plain Layout
  1793. \begin_inset CommandInset label
  1794. LatexCommand label
  1795. name "fig:batch-size-batches"
  1796. \end_inset
  1797. \series bold
  1798. Effect of batch size selection on number of batches included in fRMA probe
  1799. weight learning.
  1800. \series default
  1801. For batch sizes ranging from 3 to 15, the number of batches with at least
  1802. that many samples was plotted for biopsy (BX) and blood (PAX) samples.
  1803. The selected batch size, 5, is marked with a dotted vertical line.
  1804. \end_layout
  1805. \end_inset
  1806. \end_layout
  1807. \end_inset
  1808. \end_layout
  1809. \begin_layout Standard
  1810. \begin_inset Float figure
  1811. wide false
  1812. sideways false
  1813. status open
  1814. \begin_layout Plain Layout
  1815. \align center
  1816. \begin_inset Graphics
  1817. filename graphics/frma-pax-bx/batchsize_samples.pdf
  1818. \end_inset
  1819. \end_layout
  1820. \begin_layout Plain Layout
  1821. \begin_inset Caption Standard
  1822. \begin_layout Plain Layout
  1823. \begin_inset CommandInset label
  1824. LatexCommand label
  1825. name "fig:batch-size-samples"
  1826. \end_inset
  1827. \series bold
  1828. Effect of batch size selection on number of samples included in fRMA probe
  1829. weight learning.
  1830. \series default
  1831. For batch sizes ranging from 3 to 15, the number of samples included in
  1832. probe weight training was plotted for biopsy (BX) and blood (PAX) samples.
  1833. The selected batch size, 5, is marked with a dotted vertical line.
  1834. \end_layout
  1835. \end_inset
  1836. \end_layout
  1837. \end_inset
  1838. \end_layout
  1839. \begin_layout Standard
  1840. In order to enable use of fRMA to normalize hthgu133pluspm, a custom set
  1841. of fRMA vectors was created.
  1842. First, an appropriate batch size was chosen by looking at the number of
  1843. batches and number of samples included as a function of batch size (Figures
  1844. \begin_inset CommandInset ref
  1845. LatexCommand ref
  1846. reference "fig:batch-size-batches"
  1847. plural "false"
  1848. caps "false"
  1849. noprefix "false"
  1850. \end_inset
  1851. and
  1852. \begin_inset CommandInset ref
  1853. LatexCommand ref
  1854. reference "fig:batch-size-samples"
  1855. plural "false"
  1856. caps "false"
  1857. noprefix "false"
  1858. \end_inset
  1859. , respectively).
  1860. For a given batch size, all batches with fewer samples that the chosen
  1861. size must be ignored during training, while larger batches must be randomly
  1862. downsampled to the chosen size.
  1863. Hence, the number of samples included for a given batch size equals the
  1864. batch size times the number of batches with at least that many samples.
  1865. From Figure
  1866. \begin_inset CommandInset ref
  1867. LatexCommand ref
  1868. reference "fig:batch-size-samples"
  1869. plural "false"
  1870. caps "false"
  1871. noprefix "false"
  1872. \end_inset
  1873. , it is apparent that that a batch size of 8 maximizes the number of samples
  1874. included in training.
  1875. Increasing the batch size beyond this causes too many smaller batches to
  1876. be excluded, reducing the total number of samples for both tissue types.
  1877. However, a batch size of 8 is not necessarily optimal.
  1878. The article introducing frmaTools concluded that it was highly advantageous
  1879. to use a smaller batch size in order to include more batches, even at the
  1880. expense of including fewer total samples in training
  1881. \begin_inset CommandInset citation
  1882. LatexCommand cite
  1883. key "McCall2011"
  1884. literal "false"
  1885. \end_inset
  1886. .
  1887. To strike an appropriate balance between more batches and more samples,
  1888. a batch size of 5 was chosen.
  1889. For both blood and biopsy samples, this increased the number of batches
  1890. included by 10, with only a modest reduction in the number of samples compared
  1891. to a batch size of 8.
  1892. With a batch size of 5, 26 batches of biopsy samples and 46 batches of
  1893. blood samples were available.
  1894. \end_layout
  1895. \begin_layout Standard
  1896. \begin_inset Float figure
  1897. wide false
  1898. sideways false
  1899. status open
  1900. \begin_layout Plain Layout
  1901. \align center
  1902. \begin_inset Graphics
  1903. filename graphics/frma-pax-bx/M-BX-violin.pdf
  1904. lyxscale 40
  1905. height 80theight%
  1906. groupId m-violin
  1907. \end_inset
  1908. \end_layout
  1909. \begin_layout Plain Layout
  1910. \begin_inset Caption Standard
  1911. \begin_layout Plain Layout
  1912. \begin_inset CommandInset label
  1913. LatexCommand label
  1914. name "fig:m-bx-violin"
  1915. \end_inset
  1916. \series bold
  1917. Violin plot of log ratios between normalizations for 20 biopsy samples.
  1918. \series default
  1919. Each of 20 randomly selected biopsy samples was normalized with RMA and
  1920. with 5 different sets of fRMA vectors.
  1921. This shows the distribution of log ratios between normalized expression
  1922. values, aggregated across all 20 arrays.
  1923. \end_layout
  1924. \end_inset
  1925. \end_layout
  1926. \end_inset
  1927. \end_layout
  1928. \begin_layout Standard
  1929. Since fRMA training requires equal-size batches, larger batches are downsampled
  1930. randomly.
  1931. This introduces a nondeterministic step in the generation of normalization
  1932. vectors.
  1933. To show that this randomness does not substantially change the outcome,
  1934. the random downsampling and subsequent vector learning was repeated 5 times,
  1935. with a different random seed each time.
  1936. 20 samples were selected at random as a test set and normalized with each
  1937. of the 5 sets of fRMA normalization vectors as well as ordinary RMA, and
  1938. the normalized expression values were compared across normalizations.
  1939. Figure
  1940. \begin_inset CommandInset ref
  1941. LatexCommand ref
  1942. reference "fig:m-bx-violin"
  1943. plural "false"
  1944. caps "false"
  1945. noprefix "false"
  1946. \end_inset
  1947. shows a summary of these comparisons for biopsy samples.
  1948. Comparing RMA to each of the 5 fRMA normalizations, the distribution of
  1949. log ratios is somewhat wide, indicating that the normalizations disagree
  1950. on the expression values of a fair number of probe sets.
  1951. In contrast, comparisons of fRMA against fRMA, the vast mojority of probe
  1952. sets have very small log ratios, indicating a very high agreement between
  1953. the normalized values generated by the two normalizations.
  1954. This shows that the fRMA normalization's behavior is not very sensitive
  1955. to the random downsampling of larger batches during training.
  1956. \end_layout
  1957. \begin_layout Standard
  1958. \begin_inset Float figure
  1959. wide false
  1960. sideways false
  1961. status open
  1962. \begin_layout Plain Layout
  1963. \align center
  1964. \begin_inset Graphics
  1965. filename graphics/frma-pax-bx/MA-BX-RMA.fRMA.pdf
  1966. lyxscale 50
  1967. groupId ma-frma
  1968. \end_inset
  1969. \end_layout
  1970. \begin_layout Plain Layout
  1971. \begin_inset Caption Standard
  1972. \begin_layout Plain Layout
  1973. \begin_inset CommandInset label
  1974. LatexCommand label
  1975. name "fig:ma-bx-rma-frma"
  1976. \end_inset
  1977. \series bold
  1978. Representative MA plot comparing RMA against fRMA for 20 biopsy samples.
  1979. \series default
  1980. Averages and log ratios were computed for every probe in each of 20 biopsy
  1981. samples between RMA normalization and fRMA.
  1982. Density of points is represented by darkness of shading, and individual
  1983. outlier points are plotted.
  1984. \end_layout
  1985. \end_inset
  1986. \end_layout
  1987. \end_inset
  1988. \end_layout
  1989. \begin_layout Standard
  1990. \begin_inset Float figure
  1991. wide false
  1992. sideways false
  1993. status open
  1994. \begin_layout Plain Layout
  1995. \align center
  1996. \begin_inset Graphics
  1997. filename graphics/frma-pax-bx/MA-BX-fRMA.fRMA.pdf
  1998. lyxscale 50
  1999. groupId ma-frma
  2000. \end_inset
  2001. \end_layout
  2002. \begin_layout Plain Layout
  2003. \begin_inset Caption Standard
  2004. \begin_layout Plain Layout
  2005. \begin_inset CommandInset label
  2006. LatexCommand label
  2007. name "fig:ma-bx-frma-frma"
  2008. \end_inset
  2009. \series bold
  2010. Representative MA plot comparing different fRMA vectors for 20 biopsy samples.
  2011. \series default
  2012. Averages and log ratios were computed for every probe in each of 20 biopsy
  2013. samples between fRMA normalizations using vectors from two different batch
  2014. samplings.
  2015. Density of points is represented by darkness of shading, and individual
  2016. outlier points are plotted.
  2017. \end_layout
  2018. \end_inset
  2019. \end_layout
  2020. \end_inset
  2021. \end_layout
  2022. \begin_layout Standard
  2023. Figure
  2024. \begin_inset CommandInset ref
  2025. LatexCommand ref
  2026. reference "fig:ma-bx-rma-frma"
  2027. plural "false"
  2028. caps "false"
  2029. noprefix "false"
  2030. \end_inset
  2031. shows an MA plot of the RMA-normalized values against the fRMA-normalized
  2032. values for the same probe sets and arrays, corresponding to the first row
  2033. of Figure
  2034. \begin_inset CommandInset ref
  2035. LatexCommand ref
  2036. reference "fig:m-bx-violin"
  2037. plural "false"
  2038. caps "false"
  2039. noprefix "false"
  2040. \end_inset
  2041. .
  2042. This MA plot shows that not only is there a wide distribution of M-values,
  2043. but the trend of M-values is dependent on the average normalized intensity.
  2044. This is expected, since the overall trend represents the differences in
  2045. the quantile normalization step.
  2046. When running RMA, only the quantiles for these specific 20 arrays are used,
  2047. while for fRMA the quantile distribution is taking from all arrays used
  2048. in training.
  2049. Figure
  2050. \begin_inset CommandInset ref
  2051. LatexCommand ref
  2052. reference "fig:ma-bx-frma-frma"
  2053. plural "false"
  2054. caps "false"
  2055. noprefix "false"
  2056. \end_inset
  2057. shows a similar MA plot comparing 2 different fRMA normalizations, correspondin
  2058. g to the 6th row of Figure
  2059. \begin_inset CommandInset ref
  2060. LatexCommand ref
  2061. reference "fig:m-bx-violin"
  2062. plural "false"
  2063. caps "false"
  2064. noprefix "false"
  2065. \end_inset
  2066. .
  2067. The MA plot is very tightly centered around zero with no visible trend.
  2068. Figures
  2069. \begin_inset CommandInset ref
  2070. LatexCommand ref
  2071. reference "fig:m-pax-violin"
  2072. plural "false"
  2073. caps "false"
  2074. noprefix "false"
  2075. \end_inset
  2076. ,
  2077. \begin_inset CommandInset ref
  2078. LatexCommand ref
  2079. reference "fig:MA-PAX-rma-frma"
  2080. plural "false"
  2081. caps "false"
  2082. noprefix "false"
  2083. \end_inset
  2084. , and
  2085. \begin_inset CommandInset ref
  2086. LatexCommand ref
  2087. reference "fig:ma-bx-frma-frma"
  2088. plural "false"
  2089. caps "false"
  2090. noprefix "false"
  2091. \end_inset
  2092. show exactly the same information for the blood samples, once again comparing
  2093. the normalized expression values between normalizations for all probe sets
  2094. across 20 randomly selected test arrays.
  2095. Once again, there is a wider distribution of log ratios between RMA-normalized
  2096. values and fRMA-normalized, and a much tighter distribution when comparing
  2097. different fRMA normalizations to each other, indicating that the fRMA training
  2098. process is robust to random batch downsampling for the blood samples as
  2099. well.
  2100. \end_layout
  2101. \begin_layout Standard
  2102. \begin_inset Float figure
  2103. wide false
  2104. sideways false
  2105. status open
  2106. \begin_layout Plain Layout
  2107. \align center
  2108. \begin_inset Graphics
  2109. filename graphics/frma-pax-bx/M-PAX-violin.pdf
  2110. lyxscale 40
  2111. height 80theight%
  2112. groupId m-violin
  2113. \end_inset
  2114. \end_layout
  2115. \begin_layout Plain Layout
  2116. \begin_inset Caption Standard
  2117. \begin_layout Plain Layout
  2118. \begin_inset CommandInset label
  2119. LatexCommand label
  2120. name "fig:m-pax-violin"
  2121. \end_inset
  2122. \series bold
  2123. Violin plot of log ratios between normalizations for 20 blood samples.
  2124. \series default
  2125. Each of 20 randomly selected blood samples was normalized with RMA and with
  2126. 5 different sets of fRMA vectors.
  2127. This shows the distribution of log ratios between normalized expression
  2128. values, aggregated across all 20 arrays.
  2129. \end_layout
  2130. \end_inset
  2131. \end_layout
  2132. \end_inset
  2133. \end_layout
  2134. \begin_layout Standard
  2135. \begin_inset Float figure
  2136. wide false
  2137. sideways false
  2138. status open
  2139. \begin_layout Plain Layout
  2140. \align center
  2141. \begin_inset Graphics
  2142. filename graphics/frma-pax-bx/MA-PAX-RMA.fRMA.pdf
  2143. lyxscale 50
  2144. groupId ma-frma
  2145. \end_inset
  2146. \end_layout
  2147. \begin_layout Plain Layout
  2148. \begin_inset Caption Standard
  2149. \begin_layout Plain Layout
  2150. \begin_inset CommandInset label
  2151. LatexCommand label
  2152. name "fig:MA-PAX-rma-frma"
  2153. \end_inset
  2154. \series bold
  2155. Representative MA plot comparing RMA against fRMA for 20 blood samples.
  2156. \series default
  2157. Averages and log ratios were computed for every probe in each of 20 blood
  2158. samples between RMA normalization and fRMA.
  2159. Density of points is represented by darkness of shading, and individual
  2160. outlier points are plotted.
  2161. \end_layout
  2162. \end_inset
  2163. \end_layout
  2164. \begin_layout Plain Layout
  2165. \end_layout
  2166. \end_inset
  2167. \end_layout
  2168. \begin_layout Standard
  2169. \begin_inset Float figure
  2170. wide false
  2171. sideways false
  2172. status open
  2173. \begin_layout Plain Layout
  2174. \align center
  2175. \begin_inset Graphics
  2176. filename graphics/frma-pax-bx/MA-PAX-fRMA.fRMA.pdf
  2177. lyxscale 50
  2178. groupId ma-frma
  2179. \end_inset
  2180. \end_layout
  2181. \begin_layout Plain Layout
  2182. \begin_inset Caption Standard
  2183. \begin_layout Plain Layout
  2184. \begin_inset CommandInset label
  2185. LatexCommand label
  2186. name "fig:MA-PAX-frma-frma"
  2187. \end_inset
  2188. \series bold
  2189. Representative MA plot comparing different fRMA vectors for 20 blood samples.
  2190. \series default
  2191. Averages and log ratios were computed for every probe in each of 20 blood
  2192. samples between fRMA normalizations using vectors from two different batch
  2193. samplings.
  2194. Density of points is represented by darkness of shading, and individual
  2195. outlier points are plotted.
  2196. \end_layout
  2197. \end_inset
  2198. \end_layout
  2199. \end_inset
  2200. \end_layout
  2201. \begin_layout Subsection
  2202. Adapting voom to methylation array data improves model fit
  2203. \end_layout
  2204. \begin_layout Itemize
  2205. voom, precision weights, and sva improved model fit
  2206. \end_layout
  2207. \begin_deeper
  2208. \begin_layout Itemize
  2209. Also increased sensitivity for detecting differential methylation
  2210. \end_layout
  2211. \end_deeper
  2212. \begin_layout Itemize
  2213. Figure showing (a) heteroskedasticy without voom, (b) voom-modeled mean-variance
  2214. trend, and (c) homoskedastic mean-variance trend after running voom
  2215. \end_layout
  2216. \begin_layout Itemize
  2217. Figure showing sample weights and their relations to
  2218. \end_layout
  2219. \begin_layout Itemize
  2220. Figure showing MDS plot with and without SVA correction
  2221. \end_layout
  2222. \begin_layout Itemize
  2223. Figure and/or table showing improved p-value historgrams/number of significant
  2224. genes (might need to get this from Padma)
  2225. \end_layout
  2226. \begin_layout Section
  2227. Discussion
  2228. \end_layout
  2229. \begin_layout Subsection
  2230. fRMA achieves clinically applicable normalization without sacrificing classifica
  2231. tion performance
  2232. \end_layout
  2233. \begin_layout Standard
  2234. As shown in Figure
  2235. \begin_inset CommandInset ref
  2236. LatexCommand ref
  2237. reference "fig:Classifier-probabilities-RMA"
  2238. plural "false"
  2239. caps "false"
  2240. noprefix "false"
  2241. \end_inset
  2242. , improper normalization, particularly separate normalization of training
  2243. and test samples, leads to unwanted biases in classification.
  2244. In a controlled experimental context, it is always possible to correct
  2245. this issue by normalizing all experimental samples together.
  2246. However, because it is not feasible to normalize all samples together in
  2247. a clinical context, a single-channel normalization is required is required.
  2248. \end_layout
  2249. \begin_layout Standard
  2250. The major concern in using a single-channel normalization is that non-single-cha
  2251. nnel methods can share information between arrays to improve the normalization,
  2252. and single-channel methods risk sacrificing the gains in normalization
  2253. accuracy that come from this information sharing.
  2254. In the case of RMA, this information sharing is accomplished through quantile
  2255. normalization and median polish steps.
  2256. The need for information sharing in quantile normalization can easily be
  2257. removed by learning a fixed set of quantiles from external data and normalizing
  2258. each array to these fixed quantiles, instead of the quantiles of the data
  2259. itself.
  2260. As long as the fixed quantiles are reasonable, the result will be similar
  2261. to standard RMA.
  2262. However, there is no analogous way to eliminate cross-array information
  2263. sharing in the median polish step, so fRMA replaces this with a weighted
  2264. average of probes on each array, with the weights learned from external
  2265. data.
  2266. This step of fRMA has the greatest potential to diverge from RMA un undesirable
  2267. ways.
  2268. \end_layout
  2269. \begin_layout Standard
  2270. However, when run on real data, fRMA performed at least as well as RMA in
  2271. both the internal validation and external validation tests.
  2272. This shows that fRMA can be used to normalize individual clinical samples
  2273. in a class prediction context without sacrificing the classifier performance
  2274. that would be obtained by using the more well-established RMA for normalization.
  2275. The other single-channel normalization method considered, SCAN, showed
  2276. some loss of AUC in the external validation test.
  2277. Based on these results, fRMA is the preferred normalization for clinical
  2278. samples in a class prediction context.
  2279. \end_layout
  2280. \begin_layout Subsection
  2281. Robust fRMA vectors can be generated for new array platforms
  2282. \end_layout
  2283. \begin_layout Standard
  2284. The published fRMA normalization vectors for the hgu133plus2 platform were
  2285. generated from a set of about 850 samples
  2286. \begin_inset Flex TODO Note (Margin)
  2287. status collapsed
  2288. \begin_layout Plain Layout
  2289. Look up the exact numbers
  2290. \end_layout
  2291. \end_inset
  2292. chosen from a wide range of tissues, which the authors determined was sufficien
  2293. t to generate a robust set of normalization vectors that could be applied
  2294. across all tissues
  2295. \begin_inset CommandInset citation
  2296. LatexCommand cite
  2297. key "McCall2010"
  2298. literal "false"
  2299. \end_inset
  2300. .
  2301. Since we only had hthgu133pluspm for 2 tissues of interest, our needs were
  2302. more modest.
  2303. Even using only 130 samples in 26 batches of 5 samples each for kidney
  2304. biopsies, we were able to train a robust set of fRMA normalization vectors
  2305. that were not meaningfully affected by the random selection of 5 samples
  2306. from each batch.
  2307. As expected, the training process was just as robust for the blood samples
  2308. with 230 samples in 46 batches of 5 samples each.
  2309. Because these vectors were each generated using training samples from a
  2310. single tissue, they are not suitable for general use, unlike the vectors
  2311. provided with fRMA itself.
  2312. They are purpose-build for normalizing a specific type of sample on a specific
  2313. platform.
  2314. \end_layout
  2315. \begin_layout Subsection
  2316. voom
  2317. \end_layout
  2318. \begin_layout Itemize
  2319. Methods like voom designed for RNA-seq can also help with array analysis
  2320. \end_layout
  2321. \begin_layout Itemize
  2322. Extracting and modeling confounders common to many features improves model
  2323. correspondence to known biology
  2324. \end_layout
  2325. \begin_layout Chapter
  2326. Globin-blocking for more effective blood RNA-seq analysis in primate animal
  2327. model
  2328. \end_layout
  2329. \begin_layout Standard
  2330. \begin_inset Flex TODO Note (inline)
  2331. status open
  2332. \begin_layout Plain Layout
  2333. Choose between above and the paper title: Optimizing yield of deep RNA sequencin
  2334. g for gene expression profiling by globin reduction of peripheral blood
  2335. samples from cynomolgus monkeys (Macaca fascicularis).
  2336. \end_layout
  2337. \end_inset
  2338. \end_layout
  2339. \begin_layout Standard
  2340. \begin_inset Flex TODO Note (inline)
  2341. status open
  2342. \begin_layout Plain Layout
  2343. Chapter author list: https://tex.stackexchange.com/questions/156862/displaying-aut
  2344. hor-for-each-chapter-in-book Every chapter gets an author list, which may
  2345. or may not be part of a citation to a published/preprinted paper.
  2346. \end_layout
  2347. \end_inset
  2348. \end_layout
  2349. \begin_layout Standard
  2350. \begin_inset Flex TODO Note (inline)
  2351. status open
  2352. \begin_layout Plain Layout
  2353. Preprint then cite the paper
  2354. \end_layout
  2355. \end_inset
  2356. \end_layout
  2357. \begin_layout Section*
  2358. Abstract
  2359. \end_layout
  2360. \begin_layout Paragraph
  2361. Background
  2362. \end_layout
  2363. \begin_layout Standard
  2364. Primate blood contains high concentrations of globin messenger RNA.
  2365. Globin reduction is a standard technique used to improve the expression
  2366. results obtained by DNA microarrays on RNA from blood samples.
  2367. However, with whole transcriptome RNA-sequencing (RNA-seq) quickly replacing
  2368. microarrays for many applications, the impact of globin reduction for RNA-seq
  2369. has not been previously studied.
  2370. Moreover, no off-the-shelf kits are available for globin reduction in nonhuman
  2371. primates.
  2372. \end_layout
  2373. \begin_layout Paragraph
  2374. Results
  2375. \end_layout
  2376. \begin_layout Standard
  2377. Here we report a protocol for RNA-seq in primate blood samples that uses
  2378. complimentary oligonucleotides to block reverse transcription of the alpha
  2379. and beta globin genes.
  2380. In test samples from cynomolgus monkeys (Macaca fascicularis), this globin
  2381. blocking protocol approximately doubles the yield of informative (non-globin)
  2382. reads by greatly reducing the fraction of globin reads, while also improving
  2383. the consistency in sequencing depth between samples.
  2384. The increased yield enables detection of about 2000 more genes, significantly
  2385. increases the correlation in measured gene expression levels between samples,
  2386. and increases the sensitivity of differential gene expression tests.
  2387. \end_layout
  2388. \begin_layout Paragraph
  2389. Conclusions
  2390. \end_layout
  2391. \begin_layout Standard
  2392. These results show that globin blocking significantly improves the cost-effectiv
  2393. eness of mRNA sequencing in primate blood samples by doubling the yield
  2394. of useful reads, allowing detection of more genes, and improving the precision
  2395. of gene expression measurements.
  2396. Based on these results, a globin reducing or blocking protocol is recommended
  2397. for all RNA-seq studies of primate blood samples.
  2398. \end_layout
  2399. \begin_layout Section
  2400. Approach
  2401. \end_layout
  2402. \begin_layout Standard
  2403. \begin_inset Note Note
  2404. status open
  2405. \begin_layout Plain Layout
  2406. Consider putting some of this in the Intro chapter
  2407. \end_layout
  2408. \begin_layout Itemize
  2409. Cynomolgus monkeys as a model organism
  2410. \end_layout
  2411. \begin_deeper
  2412. \begin_layout Itemize
  2413. Highly related to humans
  2414. \end_layout
  2415. \begin_layout Itemize
  2416. Small size and short life cycle - good research animal
  2417. \end_layout
  2418. \begin_layout Itemize
  2419. Genomics resources still in development
  2420. \end_layout
  2421. \end_deeper
  2422. \begin_layout Itemize
  2423. Inadequacy of existing blood RNA-seq protocols
  2424. \end_layout
  2425. \begin_deeper
  2426. \begin_layout Itemize
  2427. Existing protocols use a separate globin pulldown step, slowing down processing
  2428. \end_layout
  2429. \end_deeper
  2430. \end_inset
  2431. \end_layout
  2432. \begin_layout Standard
  2433. Increasingly, researchers are turning to high-throughput mRNA sequencing
  2434. technologies (RNA-seq) in preference to expression microarrays for analysis
  2435. of gene expression
  2436. \begin_inset CommandInset citation
  2437. LatexCommand cite
  2438. key "Mutz2012"
  2439. literal "false"
  2440. \end_inset
  2441. .
  2442. The advantages are even greater for study of model organisms with no well-estab
  2443. lished array platforms available, such as the cynomolgus monkey (Macaca
  2444. fascicularis).
  2445. High fractions of globin mRNA are naturally present in mammalian peripheral
  2446. blood samples (up to 70% of total mRNA) and these are known to interfere
  2447. with the results of array-based expression profiling
  2448. \begin_inset CommandInset citation
  2449. LatexCommand cite
  2450. key "Winn2010"
  2451. literal "false"
  2452. \end_inset
  2453. .
  2454. The importance of globin reduction for RNA-seq of blood has only been evaluated
  2455. for a deepSAGE protocol on human samples
  2456. \begin_inset CommandInset citation
  2457. LatexCommand cite
  2458. key "Mastrokolias2012"
  2459. literal "false"
  2460. \end_inset
  2461. .
  2462. In the present report, we evaluated globin reduction using custom blocking
  2463. oligonucleotides for deep RNA-seq of peripheral blood samples from a nonhuman
  2464. primate, cynomolgus monkey, using the Illumina technology platform.
  2465. We demonstrate that globin reduction significantly improves the cost-effectiven
  2466. ess of RNA-seq in blood samples.
  2467. Thus, our protocol offers a significant advantage to any investigator planning
  2468. to use RNA-seq for gene expression profiling of nonhuman primate blood
  2469. samples.
  2470. Our method can be generally applied to any species by designing complementary
  2471. oligonucleotide blocking probes to the globin gene sequences of that species.
  2472. Indeed, any highly expressed but biologically uninformative transcripts
  2473. can also be blocked to further increase sequencing efficiency and value
  2474. \begin_inset CommandInset citation
  2475. LatexCommand cite
  2476. key "Arnaud2016"
  2477. literal "false"
  2478. \end_inset
  2479. .
  2480. \end_layout
  2481. \begin_layout Section
  2482. Methods
  2483. \end_layout
  2484. \begin_layout Subsection*
  2485. Sample collection
  2486. \end_layout
  2487. \begin_layout Standard
  2488. All research reported here was done under IACUC-approved protocols at the
  2489. University of Miami and complied with all applicable federal and state
  2490. regulations and ethical principles for nonhuman primate research.
  2491. Blood draws occurred between 16 April 2012 and 18 June 2015.
  2492. The experimental system involved intrahepatic pancreatic islet transplantation
  2493. into Cynomolgus monkeys with induced diabetes mellitus with or without
  2494. concomitant infusion of mesenchymal stem cells.
  2495. Blood was collected at serial time points before and after transplantation
  2496. into PAXgene Blood RNA tubes (PreAnalytiX/Qiagen, Valencia, CA) at the
  2497. precise volume:volume ratio of 2.5 ml whole blood into 6.9 ml of PAX gene
  2498. additive.
  2499. \end_layout
  2500. \begin_layout Subsection*
  2501. Globin Blocking
  2502. \end_layout
  2503. \begin_layout Standard
  2504. Four oligonucleotides were designed to hybridize to the 3’ end of the transcript
  2505. s for Cynomolgus HBA1, HBA2 and HBB, with two hybridization sites for HBB
  2506. and 2 sites for HBA (the chosen sites were identical in both HBA genes).
  2507. All oligos were purchased from Sigma and were entirely composed of 2’O-Me
  2508. bases with a C3 spacer positioned at the 3’ ends to prevent any polymerase
  2509. mediated primer extension.
  2510. \end_layout
  2511. \begin_layout Quote
  2512. HBA1/2 site 1: GCCCACUCAGACUUUAUUCAAAG-C3spacer
  2513. \end_layout
  2514. \begin_layout Quote
  2515. HBA1/2 site 2: GGUGCAAGGAGGGGAGGAG-C3spacer
  2516. \end_layout
  2517. \begin_layout Quote
  2518. HBB site 1: AAUGAAAAUAAAUGUUUUUUAUUAG-C3spacer
  2519. \end_layout
  2520. \begin_layout Quote
  2521. HBB site 2: CUCAAGGCCCUUCAUAAUAUCCC-C3spacer
  2522. \end_layout
  2523. \begin_layout Subsection*
  2524. RNA-seq Library Preparation
  2525. \end_layout
  2526. \begin_layout Standard
  2527. Sequencing libraries were prepared with 200ng total RNA from each sample.
  2528. Polyadenylated mRNA was selected from 200 ng aliquots of cynomologus blood-deri
  2529. ved total RNA using Ambion Dynabeads Oligo(dT)25 beads (Invitrogen) following
  2530. manufacturer’s recommended protocol.
  2531. PolyA selected RNA was then combined with 8 pmol of HBA1/2 (site 1), 8
  2532. pmol of HBA1/2 (site 2), 12 pmol of HBB (site 1) and 12 pmol of HBB (site
  2533. 2) oligonucleotides.
  2534. In addition, 20 pmol of RT primer containing a portion of the Illumina
  2535. adapter sequence (B-oligo-dTV: GAGTTCCTTGGCACCCGAGAATTCCATTTTTTTTTTTTTTTTTTTV)
  2536. and 4 µL of 5X First Strand buffer (250 mM Tris-HCl pH 8.3, 375 mM KCl,
  2537. 15mM MgCl2) were added in a total volume of 15 µL.
  2538. The RNA was fragmented by heating this cocktail for 3 minutes at 95°C and
  2539. then placed on ice.
  2540. This was followed by the addition of 2 µL 0.1 M DTT, 1 µL RNaseOUT, 1 µL
  2541. 10mM dNTPs 10% biotin-16 aminoallyl-2’- dUTP and 10% biotin-16 aminoallyl-2’-
  2542. dCTP (TriLink Biotech, San Diego, CA), 1 µL Superscript II (200U/ µL, Thermo-Fi
  2543. sher).
  2544. A second “unblocked” library was prepared in the same way for each sample
  2545. but replacing the blocking oligos with an equivalent volume of water.
  2546. The reaction was carried out at 25°C for 15 minutes and 42°C for 40 minutes,
  2547. followed by incubation at 75°C for 10 minutes to inactivate the reverse
  2548. transcriptase.
  2549. \end_layout
  2550. \begin_layout Standard
  2551. The cDNA/RNA hybrid molecules were purified using 1.8X Ampure XP beads (Agencourt
  2552. ) following supplier’s recommended protocol.
  2553. The cDNA/RNA hybrid was eluted in 25 µL of 10 mM Tris-HCl pH 8.0, and then
  2554. bound to 25 µL of M280 Magnetic Streptavidin beads washed per recommended
  2555. protocol (Thermo-Fisher).
  2556. After 30 minutes of binding, beads were washed one time in 100 µL 0.1N NaOH
  2557. to denature and remove the bound RNA, followed by two 100 µL washes with
  2558. 1X TE buffer.
  2559. \end_layout
  2560. \begin_layout Standard
  2561. Subsequent attachment of the 5-prime Illumina A adapter was performed by
  2562. on-bead random primer extension of the following sequence (A-N8 primer:
  2563. TTCAGAGTTCTACAGTCCGACGATCNNNNNNNN).
  2564. Briefly, beads were resuspended in a 20 µL reaction containing 5 µM A-N8
  2565. primer, 40mM Tris-HCl pH 7.5, 20mM MgCl2, 50mM NaCl, 0.325U/µL Sequenase
  2566. 2.0 (Affymetrix, Santa Clara, CA), 0.0025U/µL inorganic pyrophosphatase (Affymetr
  2567. ix) and 300 µM each dNTP.
  2568. Reaction was incubated at 22°C for 30 minutes, then beads were washed 2
  2569. times with 1X TE buffer (200µL).
  2570. \end_layout
  2571. \begin_layout Standard
  2572. The magnetic streptavidin beads were resuspended in 34 µL nuclease-free
  2573. water and added directly to a PCR tube.
  2574. The two Illumina protocol-specified PCR primers were added at 0.53 µM (Illumina
  2575. TruSeq Universal Primer 1 and Illumina TruSeq barcoded PCR primer 2), along
  2576. with 40 µL 2X KAPA HiFi Hotstart ReadyMix (KAPA, Willmington MA) and thermocycl
  2577. ed as follows: starting with 98°C (2 min-hold); 15 cycles of 98°C, 20sec;
  2578. 60°C, 30sec; 72°C, 30sec; and finished with a 72°C (2 min-hold).
  2579. \end_layout
  2580. \begin_layout Standard
  2581. PCR products were purified with 1X Ampure Beads following manufacturer’s
  2582. recommended protocol.
  2583. Libraries were then analyzed using the Agilent TapeStation and quantitation
  2584. of desired size range was performed by “smear analysis”.
  2585. Samples were pooled in equimolar batches of 16 samples.
  2586. Pooled libraries were size selected on 2% agarose gels (E-Gel EX Agarose
  2587. Gels; Thermo-Fisher).
  2588. Products were cut between 250 and 350 bp (corresponding to insert sizes
  2589. of 130 to 230 bps).
  2590. Finished library pools were then sequenced on the Illumina NextSeq500 instrumen
  2591. t with 75 base read lengths.
  2592. \end_layout
  2593. \begin_layout Subsection*
  2594. Read alignment and counting
  2595. \end_layout
  2596. \begin_layout Standard
  2597. Reads were aligned to the cynomolgus genome using STAR
  2598. \begin_inset CommandInset citation
  2599. LatexCommand cite
  2600. key "Dobin2013,Wilson2013"
  2601. literal "false"
  2602. \end_inset
  2603. .
  2604. Counts of uniquely mapped reads were obtained for every gene in each sample
  2605. with the “featureCounts” function from the Rsubread package, using each
  2606. of the three possibilities for the “strandSpecific” option: sense, antisense,
  2607. and unstranded
  2608. \begin_inset CommandInset citation
  2609. LatexCommand cite
  2610. key "Liao2014"
  2611. literal "false"
  2612. \end_inset
  2613. .
  2614. A few artifacts in the cynomolgus genome annotation complicated read counting.
  2615. First, no ortholog is annotated for alpha globin in the cynomolgus genome,
  2616. presumably because the human genome has two alpha globin genes with nearly
  2617. identical sequences, making the orthology relationship ambiguous.
  2618. However, two loci in the cynomolgus genome are as “hemoglobin subunit alpha-lik
  2619. e” (LOC102136192 and LOC102136846).
  2620. LOC102136192 is annotated as a pseudogene while LOC102136846 is annotated
  2621. as protein-coding.
  2622. Our globin reduction protocol was designed to include blocking of these
  2623. two genes.
  2624. Indeed, these two genes have almost the same read counts in each library
  2625. as the properly-annotated HBB gene and much larger counts than any other
  2626. gene in the unblocked libraries, giving confidence that reads derived from
  2627. the real alpha globin are mapping to both genes.
  2628. Thus, reads from both of these loci were counted as alpha globin reads
  2629. in all further analyses.
  2630. The second artifact is a small, uncharacterized non-coding RNA gene (LOC1021365
  2631. 91), which overlaps the HBA-like gene (LOC102136192) on the opposite strand.
  2632. If counting is not performed in stranded mode (or if a non-strand-specific
  2633. sequencing protocol is used), many reads mapping to the globin gene will
  2634. be discarded as ambiguous due to their overlap with this ncRNA gene, resulting
  2635. in significant undercounting of globin reads.
  2636. Therefore, stranded sense counts were used for all further analysis in
  2637. the present study to insure that we accurately accounted for globin transcript
  2638. reduction.
  2639. However, we note that stranded reads are not necessary for RNA-seq using
  2640. our protocol in standard practice.
  2641. \end_layout
  2642. \begin_layout Subsection*
  2643. Normalization and Exploratory Data Analysis
  2644. \end_layout
  2645. \begin_layout Standard
  2646. Libraries were normalized by computing scaling factors using the edgeR package’s
  2647. Trimmed Mean of M-values method
  2648. \begin_inset CommandInset citation
  2649. LatexCommand cite
  2650. key "Robinson2010"
  2651. literal "false"
  2652. \end_inset
  2653. .
  2654. Log2 counts per million values (logCPM) were calculated using the cpm function
  2655. in edgeR for individual samples and aveLogCPM function for averages across
  2656. groups of samples, using those functions’ default prior count values to
  2657. avoid taking the logarithm of 0.
  2658. Genes were considered “present” if their average normalized logCPM values
  2659. across all libraries were at least -1.
  2660. Normalizing for gene length was unnecessary because the sequencing protocol
  2661. is 3’-biased and hence the expected read count for each gene is related
  2662. to the transcript’s copy number but not its length.
  2663. \end_layout
  2664. \begin_layout Standard
  2665. In order to assess the effect of blocking on reproducibility, Pearson and
  2666. Spearman correlation coefficients were computed between the logCPM values
  2667. for every pair of libraries within the globin-blocked (GB) and unblocked
  2668. (non-GB) groups, and edgeR's “estimateDisp” function was used to compute
  2669. negative binomial dispersions separately for the two groups
  2670. \begin_inset CommandInset citation
  2671. LatexCommand cite
  2672. key "Chen2014"
  2673. literal "false"
  2674. \end_inset
  2675. .
  2676. \end_layout
  2677. \begin_layout Subsection*
  2678. Differential Expression Analysis
  2679. \end_layout
  2680. \begin_layout Standard
  2681. All tests for differential gene expression were performed using edgeR, by
  2682. first fitting a negative binomial generalized linear model to the counts
  2683. and normalization factors and then performing a quasi-likelihood F-test
  2684. with robust estimation of outlier gene dispersions
  2685. \begin_inset CommandInset citation
  2686. LatexCommand cite
  2687. key "Lund2012,Phipson2016"
  2688. literal "false"
  2689. \end_inset
  2690. .
  2691. To investigate the effects of globin blocking on each gene, an additive
  2692. model was fit to the full data with coefficients for globin blocking and
  2693. SampleID.
  2694. To test the effect of globin blocking on detection of differentially expressed
  2695. genes, the GB samples and non-GB samples were each analyzed independently
  2696. as follows: for each animal with both a pre-transplant and a post-transplant
  2697. time point in the data set, the pre-transplant sample and the earliest
  2698. post-transplant sample were selected, and all others were excluded, yielding
  2699. a pre-/post-transplant pair of samples for each animal (N=7 animals with
  2700. paired samples).
  2701. These samples were analyzed for pre-transplant vs.
  2702. post-transplant differential gene expression while controlling for inter-animal
  2703. variation using an additive model with coefficients for transplant and
  2704. animal ID.
  2705. In all analyses, p-values were adjusted using the Benjamini-Hochberg procedure
  2706. for FDR correction
  2707. \begin_inset CommandInset citation
  2708. LatexCommand cite
  2709. key "Benjamini1995"
  2710. literal "false"
  2711. \end_inset
  2712. .
  2713. \end_layout
  2714. \begin_layout Standard
  2715. \begin_inset Note Note
  2716. status open
  2717. \begin_layout Itemize
  2718. New blood RNA-seq protocol to block reverse transcription of globin genes
  2719. \end_layout
  2720. \begin_layout Itemize
  2721. Blood RNA-seq time course after transplants with/without MSC infusion
  2722. \end_layout
  2723. \end_inset
  2724. \end_layout
  2725. \begin_layout Section
  2726. Results
  2727. \end_layout
  2728. \begin_layout Subsection*
  2729. Globin blocking yields a larger and more consistent fraction of useful reads
  2730. \end_layout
  2731. \begin_layout Standard
  2732. The objective of the present study was to validate a new protocol for deep
  2733. RNA-seq of whole blood drawn into PaxGene tubes from cynomolgus monkeys
  2734. undergoing islet transplantation, with particular focus on minimizing the
  2735. loss of useful sequencing space to uninformative globin reads.
  2736. The details of the analysis with respect to transplant outcomes and the
  2737. impact of mesenchymal stem cell treatment will be reported in a separate
  2738. manuscript (in preparation).
  2739. To focus on the efficacy of our globin blocking protocol, 37 blood samples,
  2740. 16 from pre-transplant and 21 from post-transplant time points, were each
  2741. prepped once with and once without globin blocking oligos, and were then
  2742. sequenced on an Illumina NextSeq500 instrument.
  2743. The number of reads aligning to each gene in the cynomolgus genome was
  2744. counted.
  2745. Table 1 summarizes the distribution of read fractions among the GB and
  2746. non-GB libraries.
  2747. In the libraries with no globin blocking, globin reads made up an average
  2748. of 44.6% of total input reads, while reads assigned to all other genes made
  2749. up an average of 26.3%.
  2750. The remaining reads either aligned to intergenic regions (that include
  2751. long non-coding RNAs) or did not align with any annotated transcripts in
  2752. the current build of the cynomolgus genome.
  2753. In the GB libraries, globin reads made up only 3.48% and reads assigned
  2754. to all other genes increased to 50.4%.
  2755. Thus, globin blocking resulted in a 92.2% reduction in globin reads and
  2756. a 91.6% increase in yield of useful non-globin reads.
  2757. \end_layout
  2758. \begin_layout Standard
  2759. This reduction is not quite as efficient as the previous analysis showed
  2760. for human samples by DeepSAGE (<0.4% globin reads after globin reduction)
  2761. \begin_inset CommandInset citation
  2762. LatexCommand cite
  2763. key "Mastrokolias2012"
  2764. literal "false"
  2765. \end_inset
  2766. .
  2767. Nonetheless, this degree of globin reduction is sufficient to nearly double
  2768. the yield of useful reads.
  2769. Thus, globin blocking cuts the required sequencing effort (and costs) to
  2770. achieve a target coverage depth by almost 50%.
  2771. Consistent with this near doubling of yield, the average difference in
  2772. un-normalized logCPM across all genes between the GB libraries and non-GB
  2773. libraries is approximately 1 (mean = 1.01, median = 1.08), an overall 2-fold
  2774. increase.
  2775. Un-normalized values are used here because the TMM normalization correctly
  2776. identifies this 2-fold difference as biologically irrelevant and removes
  2777. it.
  2778. \end_layout
  2779. \begin_layout Standard
  2780. \begin_inset Float figure
  2781. wide false
  2782. sideways false
  2783. status open
  2784. \begin_layout Plain Layout
  2785. \align center
  2786. \begin_inset Graphics
  2787. filename graphics/Globin Paper/figure1 - globin-fractions.pdf
  2788. \end_inset
  2789. \end_layout
  2790. \begin_layout Plain Layout
  2791. \begin_inset Caption Standard
  2792. \begin_layout Plain Layout
  2793. \series bold
  2794. \begin_inset Argument 1
  2795. status collapsed
  2796. \begin_layout Plain Layout
  2797. Fraction of genic reads in each sample aligned to non-globin genes, with
  2798. and without globin blocking (GB).
  2799. \end_layout
  2800. \end_inset
  2801. \begin_inset CommandInset label
  2802. LatexCommand label
  2803. name "fig:Fraction-of-genic-reads"
  2804. \end_inset
  2805. Fraction of genic reads in each sample aligned to non-globin genes, with
  2806. and without globin blocking (GB).
  2807. \series default
  2808. All reads in each sequencing library were aligned to the cyno genome, and
  2809. the number of reads uniquely aligning to each gene was counted.
  2810. For each sample, counts were summed separately for all globin genes and
  2811. for the remainder of the genes (non-globin genes), and the fraction of
  2812. genic reads aligned to non-globin genes was computed.
  2813. Each point represents an individual sample.
  2814. Gray + signs indicate the means for globin-blocked libraries and unblocked
  2815. libraries.
  2816. The overall distribution for each group is represented as a notched box
  2817. plots.
  2818. Points are randomly spread vertically to avoid excessive overlapping.
  2819. \end_layout
  2820. \end_inset
  2821. \end_layout
  2822. \begin_layout Plain Layout
  2823. \end_layout
  2824. \end_inset
  2825. \end_layout
  2826. \begin_layout Standard
  2827. \begin_inset Float table
  2828. placement p
  2829. wide false
  2830. sideways true
  2831. status open
  2832. \begin_layout Plain Layout
  2833. \align center
  2834. \begin_inset Tabular
  2835. <lyxtabular version="3" rows="4" columns="7">
  2836. <features tabularvalignment="middle">
  2837. <column alignment="center" valignment="top">
  2838. <column alignment="center" valignment="top">
  2839. <column alignment="center" valignment="top">
  2840. <column alignment="center" valignment="top">
  2841. <column alignment="center" valignment="top">
  2842. <column alignment="center" valignment="top">
  2843. <column alignment="center" valignment="top">
  2844. <row>
  2845. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2846. \begin_inset Text
  2847. \begin_layout Plain Layout
  2848. \end_layout
  2849. \end_inset
  2850. </cell>
  2851. <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2852. \begin_inset Text
  2853. \begin_layout Plain Layout
  2854. \family roman
  2855. \series medium
  2856. \shape up
  2857. \size normal
  2858. \emph off
  2859. \bar no
  2860. \strikeout off
  2861. \xout off
  2862. \uuline off
  2863. \uwave off
  2864. \noun off
  2865. \color none
  2866. Percent of Total Reads
  2867. \end_layout
  2868. \end_inset
  2869. </cell>
  2870. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2871. \begin_inset Text
  2872. \begin_layout Plain Layout
  2873. \end_layout
  2874. \end_inset
  2875. </cell>
  2876. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2877. \begin_inset Text
  2878. \begin_layout Plain Layout
  2879. \end_layout
  2880. \end_inset
  2881. </cell>
  2882. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  2883. \begin_inset Text
  2884. \begin_layout Plain Layout
  2885. \end_layout
  2886. \end_inset
  2887. </cell>
  2888. <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  2889. \begin_inset Text
  2890. \begin_layout Plain Layout
  2891. \family roman
  2892. \series medium
  2893. \shape up
  2894. \size normal
  2895. \emph off
  2896. \bar no
  2897. \strikeout off
  2898. \xout off
  2899. \uuline off
  2900. \uwave off
  2901. \noun off
  2902. \color none
  2903. Percent of Genic Reads
  2904. \end_layout
  2905. \end_inset
  2906. </cell>
  2907. <cell multicolumn="2" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  2908. \begin_inset Text
  2909. \begin_layout Plain Layout
  2910. \end_layout
  2911. \end_inset
  2912. </cell>
  2913. </row>
  2914. <row>
  2915. <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
  2916. \begin_inset Text
  2917. \begin_layout Plain Layout
  2918. GB
  2919. \end_layout
  2920. \end_inset
  2921. </cell>
  2922. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2923. \begin_inset Text
  2924. \begin_layout Plain Layout
  2925. \family roman
  2926. \series medium
  2927. \shape up
  2928. \size normal
  2929. \emph off
  2930. \bar no
  2931. \strikeout off
  2932. \xout off
  2933. \uuline off
  2934. \uwave off
  2935. \noun off
  2936. \color none
  2937. Non-globin Reads
  2938. \end_layout
  2939. \end_inset
  2940. </cell>
  2941. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2942. \begin_inset Text
  2943. \begin_layout Plain Layout
  2944. \family roman
  2945. \series medium
  2946. \shape up
  2947. \size normal
  2948. \emph off
  2949. \bar no
  2950. \strikeout off
  2951. \xout off
  2952. \uuline off
  2953. \uwave off
  2954. \noun off
  2955. \color none
  2956. Globin Reads
  2957. \end_layout
  2958. \end_inset
  2959. </cell>
  2960. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2961. \begin_inset Text
  2962. \begin_layout Plain Layout
  2963. \family roman
  2964. \series medium
  2965. \shape up
  2966. \size normal
  2967. \emph off
  2968. \bar no
  2969. \strikeout off
  2970. \xout off
  2971. \uuline off
  2972. \uwave off
  2973. \noun off
  2974. \color none
  2975. All Genic Reads
  2976. \end_layout
  2977. \end_inset
  2978. </cell>
  2979. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2980. \begin_inset Text
  2981. \begin_layout Plain Layout
  2982. \family roman
  2983. \series medium
  2984. \shape up
  2985. \size normal
  2986. \emph off
  2987. \bar no
  2988. \strikeout off
  2989. \xout off
  2990. \uuline off
  2991. \uwave off
  2992. \noun off
  2993. \color none
  2994. All Aligned Reads
  2995. \end_layout
  2996. \end_inset
  2997. </cell>
  2998. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  2999. \begin_inset Text
  3000. \begin_layout Plain Layout
  3001. \family roman
  3002. \series medium
  3003. \shape up
  3004. \size normal
  3005. \emph off
  3006. \bar no
  3007. \strikeout off
  3008. \xout off
  3009. \uuline off
  3010. \uwave off
  3011. \noun off
  3012. \color none
  3013. Non-globin Reads
  3014. \end_layout
  3015. \end_inset
  3016. </cell>
  3017. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  3018. \begin_inset Text
  3019. \begin_layout Plain Layout
  3020. \family roman
  3021. \series medium
  3022. \shape up
  3023. \size normal
  3024. \emph off
  3025. \bar no
  3026. \strikeout off
  3027. \xout off
  3028. \uuline off
  3029. \uwave off
  3030. \noun off
  3031. \color none
  3032. Globin Reads
  3033. \end_layout
  3034. \end_inset
  3035. </cell>
  3036. </row>
  3037. <row>
  3038. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3039. \begin_inset Text
  3040. \begin_layout Plain Layout
  3041. \family roman
  3042. \series medium
  3043. \shape up
  3044. \size normal
  3045. \emph off
  3046. \bar no
  3047. \strikeout off
  3048. \xout off
  3049. \uuline off
  3050. \uwave off
  3051. \noun off
  3052. \color none
  3053. Yes
  3054. \end_layout
  3055. \end_inset
  3056. </cell>
  3057. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3058. \begin_inset Text
  3059. \begin_layout Plain Layout
  3060. \family roman
  3061. \series medium
  3062. \shape up
  3063. \size normal
  3064. \emph off
  3065. \bar no
  3066. \strikeout off
  3067. \xout off
  3068. \uuline off
  3069. \uwave off
  3070. \noun off
  3071. \color none
  3072. 50.4% ± 6.82
  3073. \end_layout
  3074. \end_inset
  3075. </cell>
  3076. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3077. \begin_inset Text
  3078. \begin_layout Plain Layout
  3079. \family roman
  3080. \series medium
  3081. \shape up
  3082. \size normal
  3083. \emph off
  3084. \bar no
  3085. \strikeout off
  3086. \xout off
  3087. \uuline off
  3088. \uwave off
  3089. \noun off
  3090. \color none
  3091. 3.48% ± 2.94
  3092. \end_layout
  3093. \end_inset
  3094. </cell>
  3095. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3096. \begin_inset Text
  3097. \begin_layout Plain Layout
  3098. \family roman
  3099. \series medium
  3100. \shape up
  3101. \size normal
  3102. \emph off
  3103. \bar no
  3104. \strikeout off
  3105. \xout off
  3106. \uuline off
  3107. \uwave off
  3108. \noun off
  3109. \color none
  3110. 53.9% ± 6.81
  3111. \end_layout
  3112. \end_inset
  3113. </cell>
  3114. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3115. \begin_inset Text
  3116. \begin_layout Plain Layout
  3117. \family roman
  3118. \series medium
  3119. \shape up
  3120. \size normal
  3121. \emph off
  3122. \bar no
  3123. \strikeout off
  3124. \xout off
  3125. \uuline off
  3126. \uwave off
  3127. \noun off
  3128. \color none
  3129. 89.7% ± 2.40
  3130. \end_layout
  3131. \end_inset
  3132. </cell>
  3133. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3134. \begin_inset Text
  3135. \begin_layout Plain Layout
  3136. \family roman
  3137. \series medium
  3138. \shape up
  3139. \size normal
  3140. \emph off
  3141. \bar no
  3142. \strikeout off
  3143. \xout off
  3144. \uuline off
  3145. \uwave off
  3146. \noun off
  3147. \color none
  3148. 93.5% ± 5.25
  3149. \end_layout
  3150. \end_inset
  3151. </cell>
  3152. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3153. \begin_inset Text
  3154. \begin_layout Plain Layout
  3155. \family roman
  3156. \series medium
  3157. \shape up
  3158. \size normal
  3159. \emph off
  3160. \bar no
  3161. \strikeout off
  3162. \xout off
  3163. \uuline off
  3164. \uwave off
  3165. \noun off
  3166. \color none
  3167. 6.49% ± 5.25
  3168. \end_layout
  3169. \end_inset
  3170. </cell>
  3171. </row>
  3172. <row>
  3173. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3174. \begin_inset Text
  3175. \begin_layout Plain Layout
  3176. \family roman
  3177. \series medium
  3178. \shape up
  3179. \size normal
  3180. \emph off
  3181. \bar no
  3182. \strikeout off
  3183. \xout off
  3184. \uuline off
  3185. \uwave off
  3186. \noun off
  3187. \color none
  3188. No
  3189. \end_layout
  3190. \end_inset
  3191. </cell>
  3192. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3193. \begin_inset Text
  3194. \begin_layout Plain Layout
  3195. \family roman
  3196. \series medium
  3197. \shape up
  3198. \size normal
  3199. \emph off
  3200. \bar no
  3201. \strikeout off
  3202. \xout off
  3203. \uuline off
  3204. \uwave off
  3205. \noun off
  3206. \color none
  3207. 26.3% ± 8.95
  3208. \end_layout
  3209. \end_inset
  3210. </cell>
  3211. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3212. \begin_inset Text
  3213. \begin_layout Plain Layout
  3214. \family roman
  3215. \series medium
  3216. \shape up
  3217. \size normal
  3218. \emph off
  3219. \bar no
  3220. \strikeout off
  3221. \xout off
  3222. \uuline off
  3223. \uwave off
  3224. \noun off
  3225. \color none
  3226. 44.6% ± 16.6
  3227. \end_layout
  3228. \end_inset
  3229. </cell>
  3230. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3231. \begin_inset Text
  3232. \begin_layout Plain Layout
  3233. \family roman
  3234. \series medium
  3235. \shape up
  3236. \size normal
  3237. \emph off
  3238. \bar no
  3239. \strikeout off
  3240. \xout off
  3241. \uuline off
  3242. \uwave off
  3243. \noun off
  3244. \color none
  3245. 70.1% ± 9.38
  3246. \end_layout
  3247. \end_inset
  3248. </cell>
  3249. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3250. \begin_inset Text
  3251. \begin_layout Plain Layout
  3252. \family roman
  3253. \series medium
  3254. \shape up
  3255. \size normal
  3256. \emph off
  3257. \bar no
  3258. \strikeout off
  3259. \xout off
  3260. \uuline off
  3261. \uwave off
  3262. \noun off
  3263. \color none
  3264. 90.7% ± 5.16
  3265. \end_layout
  3266. \end_inset
  3267. </cell>
  3268. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3269. \begin_inset Text
  3270. \begin_layout Plain Layout
  3271. \family roman
  3272. \series medium
  3273. \shape up
  3274. \size normal
  3275. \emph off
  3276. \bar no
  3277. \strikeout off
  3278. \xout off
  3279. \uuline off
  3280. \uwave off
  3281. \noun off
  3282. \color none
  3283. 38.8% ± 17.1
  3284. \end_layout
  3285. \end_inset
  3286. </cell>
  3287. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  3288. \begin_inset Text
  3289. \begin_layout Plain Layout
  3290. \family roman
  3291. \series medium
  3292. \shape up
  3293. \size normal
  3294. \emph off
  3295. \bar no
  3296. \strikeout off
  3297. \xout off
  3298. \uuline off
  3299. \uwave off
  3300. \noun off
  3301. \color none
  3302. 61.2% ± 17.1
  3303. \end_layout
  3304. \end_inset
  3305. </cell>
  3306. </row>
  3307. </lyxtabular>
  3308. \end_inset
  3309. \end_layout
  3310. \begin_layout Plain Layout
  3311. \begin_inset Caption Standard
  3312. \begin_layout Plain Layout
  3313. \series bold
  3314. \begin_inset Argument 1
  3315. status collapsed
  3316. \begin_layout Plain Layout
  3317. Fractions of reads mapping to genomic features in GB and non-GB samples.
  3318. \end_layout
  3319. \end_inset
  3320. \begin_inset CommandInset label
  3321. LatexCommand label
  3322. name "tab:Fractions-of-reads"
  3323. \end_inset
  3324. Fractions of reads mapping to genomic features in GB and non-GB samples.
  3325. \series default
  3326. All values are given as mean ± standard deviation.
  3327. \end_layout
  3328. \end_inset
  3329. \end_layout
  3330. \begin_layout Plain Layout
  3331. \end_layout
  3332. \end_inset
  3333. \end_layout
  3334. \begin_layout Standard
  3335. Another important aspect is that the standard deviations in Table
  3336. \begin_inset CommandInset ref
  3337. LatexCommand ref
  3338. reference "tab:Fractions-of-reads"
  3339. plural "false"
  3340. caps "false"
  3341. noprefix "false"
  3342. \end_inset
  3343. are uniformly smaller in the GB samples than the non-GB ones, indicating
  3344. much greater consistency of yield.
  3345. This is best seen in the percentage of non-globin reads as a fraction of
  3346. total reads aligned to annotated genes (genic reads).
  3347. For the non-GB samples, this measure ranges from 10.9% to 80.9%, while for
  3348. the GB samples it ranges from 81.9% to 99.9% (Figure
  3349. \begin_inset CommandInset ref
  3350. LatexCommand ref
  3351. reference "fig:Fraction-of-genic-reads"
  3352. plural "false"
  3353. caps "false"
  3354. noprefix "false"
  3355. \end_inset
  3356. ).
  3357. This means that for applications where it is critical that each sample
  3358. achieve a specified minimum coverage in order to provide useful information,
  3359. it would be necessary to budget up to 10 times the sequencing depth per
  3360. sample without globin blocking, even though the average yield improvement
  3361. for globin blocking is only 2-fold, because every sample has a chance of
  3362. being 90% globin and 10% useful reads.
  3363. Hence, the more consistent behavior of GB samples makes planning an experiment
  3364. easier and more efficient because it eliminates the need to over-sequence
  3365. every sample in order to guard against the worst case of a high-globin
  3366. fraction.
  3367. \end_layout
  3368. \begin_layout Subsection*
  3369. Globin blocking lowers the noise floor and allows detection of about 2000
  3370. more genes
  3371. \end_layout
  3372. \begin_layout Standard
  3373. \begin_inset Flex TODO Note (inline)
  3374. status open
  3375. \begin_layout Plain Layout
  3376. Remove redundant titles from figures
  3377. \end_layout
  3378. \end_inset
  3379. \end_layout
  3380. \begin_layout Standard
  3381. \begin_inset Float figure
  3382. wide false
  3383. sideways false
  3384. status open
  3385. \begin_layout Plain Layout
  3386. \align center
  3387. \begin_inset Graphics
  3388. filename graphics/Globin Paper/figure2 - aveLogCPM-colored.pdf
  3389. \end_inset
  3390. \end_layout
  3391. \begin_layout Plain Layout
  3392. \begin_inset Caption Standard
  3393. \begin_layout Plain Layout
  3394. \series bold
  3395. \begin_inset Argument 1
  3396. status collapsed
  3397. \begin_layout Plain Layout
  3398. Distributions of average group gene abundances when normalized separately
  3399. or together.
  3400. \end_layout
  3401. \end_inset
  3402. \begin_inset CommandInset label
  3403. LatexCommand label
  3404. name "fig:logcpm-dists"
  3405. \end_inset
  3406. Distributions of average group gene abundances when normalized separately
  3407. or together.
  3408. \series default
  3409. All reads in each sequencing library were aligned to the cyno genome, and
  3410. the number of reads uniquely aligning to each gene was counted.
  3411. Genes with zero counts in all libraries were discarded.
  3412. Libraries were normalized using the TMM method.
  3413. Libraries were split into globin-blocked (GB) and non-GB groups and the
  3414. average abundance for each gene in both groups, measured in log2 counts
  3415. per million reads counted, was computed using the aveLogCPM function.
  3416. The distribution of average gene logCPM values was plotted for both groups
  3417. using a kernel density plot to approximate a continuous distribution.
  3418. The logCPM GB distributions are marked in red, non-GB in blue.
  3419. The black vertical line denotes the chosen detection threshold of -1.
  3420. Top panel: Libraries were split into GB and non-GB groups first and normalized
  3421. separately.
  3422. Bottom panel: Libraries were all normalized together first and then split
  3423. into groups.
  3424. \end_layout
  3425. \end_inset
  3426. \end_layout
  3427. \begin_layout Plain Layout
  3428. \end_layout
  3429. \end_inset
  3430. \end_layout
  3431. \begin_layout Standard
  3432. Since globin blocking yields more usable sequencing depth, it should also
  3433. allow detection of more genes at any given threshold.
  3434. When we looked at the distribution of average normalized logCPM values
  3435. across all libraries for genes with at least one read assigned to them,
  3436. we observed the expected bimodal distribution, with a high-abundance "signal"
  3437. peak representing detected genes and a low-abundance "noise" peak representing
  3438. genes whose read count did not rise above the noise floor (Figure
  3439. \begin_inset CommandInset ref
  3440. LatexCommand ref
  3441. reference "fig:logcpm-dists"
  3442. plural "false"
  3443. caps "false"
  3444. noprefix "false"
  3445. \end_inset
  3446. ).
  3447. Consistent with the 2-fold increase in raw counts assigned to non-globin
  3448. genes, the signal peak for GB samples is shifted to the right relative
  3449. to the non-GB signal peak.
  3450. When all the samples are normalized together, this difference is normalized
  3451. out, lining up the signal peaks, and this reveals that, as expected, the
  3452. noise floor for the GB samples is about 2-fold lower.
  3453. This greater separation between signal and noise peaks in the GB samples
  3454. means that low-expression genes should be more easily detected and more
  3455. precisely quantified than in the non-GB samples.
  3456. \end_layout
  3457. \begin_layout Standard
  3458. \begin_inset Float figure
  3459. wide false
  3460. sideways false
  3461. status open
  3462. \begin_layout Plain Layout
  3463. \align center
  3464. \begin_inset Graphics
  3465. filename graphics/Globin Paper/figure3 - detection.pdf
  3466. \end_inset
  3467. \end_layout
  3468. \begin_layout Plain Layout
  3469. \begin_inset Caption Standard
  3470. \begin_layout Plain Layout
  3471. \series bold
  3472. \begin_inset Argument 1
  3473. status collapsed
  3474. \begin_layout Plain Layout
  3475. Gene detections as a function of abundance thresholds in globin-blocked
  3476. (GB) and non-GB samples.
  3477. \end_layout
  3478. \end_inset
  3479. \begin_inset CommandInset label
  3480. LatexCommand label
  3481. name "fig:Gene-detections"
  3482. \end_inset
  3483. Gene detections as a function of abundance thresholds in globin-blocked
  3484. (GB) and non-GB samples.
  3485. \series default
  3486. Average abundance (logCPM,
  3487. \begin_inset Formula $\log_{2}$
  3488. \end_inset
  3489. counts per million reads counted) was computed by separate group normalization
  3490. as described in Figure
  3491. \begin_inset CommandInset ref
  3492. LatexCommand ref
  3493. reference "fig:logcpm-dists"
  3494. plural "false"
  3495. caps "false"
  3496. noprefix "false"
  3497. \end_inset
  3498. for both the GB and non-GB groups, as well as for all samples considered
  3499. as one large group.
  3500. For each every integer threshold from -2 to 3, the number of genes detected
  3501. at or above that logCPM threshold was plotted for each group.
  3502. \end_layout
  3503. \end_inset
  3504. \end_layout
  3505. \begin_layout Plain Layout
  3506. \end_layout
  3507. \end_inset
  3508. \end_layout
  3509. \begin_layout Standard
  3510. Based on these distributions, we selected a detection threshold of -1, which
  3511. is approximately the leftmost edge of the trough between the signal and
  3512. noise peaks.
  3513. This represents the most liberal possible detection threshold that doesn't
  3514. call substantial numbers of noise genes as detected.
  3515. Among the full dataset, 13429 genes were detected at this threshold, and
  3516. 22276 were not.
  3517. When considering the GB libraries and non-GB libraries separately and re-comput
  3518. ing normalization factors independently within each group, 14535 genes were
  3519. detected in the GB libraries while only 12460 were detected in the non-GB
  3520. libraries.
  3521. Thus, GB allowed the detection of 2000 extra genes that were buried under
  3522. the noise floor without GB.
  3523. This pattern of at least 2000 additional genes detected with GB was also
  3524. consistent across a wide range of possible detection thresholds, from -2
  3525. to 3 (see Figure
  3526. \begin_inset CommandInset ref
  3527. LatexCommand ref
  3528. reference "fig:Gene-detections"
  3529. plural "false"
  3530. caps "false"
  3531. noprefix "false"
  3532. \end_inset
  3533. ).
  3534. \end_layout
  3535. \begin_layout Subsection*
  3536. Globin blocking does not add significant additional noise or decrease sample
  3537. quality
  3538. \end_layout
  3539. \begin_layout Standard
  3540. One potential worry is that the globin blocking protocol could perturb the
  3541. levels of non-globin genes.
  3542. There are two kinds of possible perturbations: systematic and random.
  3543. The former is not a major concern for detection of differential expression,
  3544. since a 2-fold change in every sample has no effect on the relative fold
  3545. change between samples.
  3546. In contrast, random perturbations would increase the noise and obscure
  3547. the signal in the dataset, reducing the capacity to detect differential
  3548. expression.
  3549. \end_layout
  3550. \begin_layout Standard
  3551. \begin_inset Float figure
  3552. wide false
  3553. sideways false
  3554. status open
  3555. \begin_layout Plain Layout
  3556. \align center
  3557. \begin_inset Graphics
  3558. filename graphics/Globin Paper/figure4 - maplot-colored.pdf
  3559. \end_inset
  3560. \end_layout
  3561. \begin_layout Plain Layout
  3562. \begin_inset Caption Standard
  3563. \begin_layout Plain Layout
  3564. \begin_inset Argument 1
  3565. status collapsed
  3566. \begin_layout Plain Layout
  3567. MA plot showing effects of globin blocking on each gene's abundance.
  3568. \end_layout
  3569. \end_inset
  3570. \begin_inset CommandInset label
  3571. LatexCommand label
  3572. name "fig:MA-plot"
  3573. \end_inset
  3574. \series bold
  3575. MA plot showing effects of globin blocking on each gene's abundance.
  3576. \series default
  3577. All libraries were normalized together as described in Figure
  3578. \begin_inset CommandInset ref
  3579. LatexCommand ref
  3580. reference "fig:logcpm-dists"
  3581. plural "false"
  3582. caps "false"
  3583. noprefix "false"
  3584. \end_inset
  3585. , and genes with an average logCPM below -1 were filtered out.
  3586. Each remaining gene was tested for differential abundance with respect
  3587. to globin blocking (GB) using edgeR’s quasi-likelihod F-test, fitting a
  3588. negative binomial generalized linear model to table of read counts in each
  3589. library.
  3590. For each gene, edgeR reported average abundance (logCPM),
  3591. \begin_inset Formula $\log_{2}$
  3592. \end_inset
  3593. fold change (logFC), p-value, and Benjamini-Hochberg adjusted false discovery
  3594. rate (FDR).
  3595. Each gene's logFC was plotted against its logCPM, colored by FDR.
  3596. Red points are significant at ≤10% FDR, and blue are not significant at
  3597. that threshold.
  3598. The alpha and beta globin genes targeted for blocking are marked with large
  3599. triangles, while all other genes are represented as small points.
  3600. \end_layout
  3601. \end_inset
  3602. \end_layout
  3603. \begin_layout Plain Layout
  3604. \end_layout
  3605. \end_inset
  3606. \end_layout
  3607. \begin_layout Standard
  3608. \begin_inset Flex TODO Note (inline)
  3609. status open
  3610. \begin_layout Plain Layout
  3611. Standardize on
  3612. \begin_inset Quotes eld
  3613. \end_inset
  3614. log2
  3615. \begin_inset Quotes erd
  3616. \end_inset
  3617. notation
  3618. \end_layout
  3619. \end_inset
  3620. \end_layout
  3621. \begin_layout Standard
  3622. The data do indeed show small systematic perturbations in gene levels (Figure
  3623. \begin_inset CommandInset ref
  3624. LatexCommand ref
  3625. reference "fig:MA-plot"
  3626. plural "false"
  3627. caps "false"
  3628. noprefix "false"
  3629. \end_inset
  3630. ).
  3631. Other than the 3 designated alpha and beta globin genes, two other genes
  3632. stand out as having especially large negative log fold changes: HBD and
  3633. LOC1021365.
  3634. HBD, delta globin, is most likely targeted by the blocking oligos due to
  3635. high sequence homology with the other globin genes.
  3636. LOC1021365 is the aforementioned ncRNA that is reverse-complementary to
  3637. one of the alpha-like genes and that would be expected to be removed during
  3638. the globin blocking step.
  3639. All other genes appear in a cluster centered vertically at 0, and the vast
  3640. majority of genes in this cluster show an absolute log2(FC) of 0.5 or less.
  3641. Nevertheless, many of these small perturbations are still statistically
  3642. significant, indicating that the globin blocking oligos likely cause very
  3643. small but non-zero systematic perturbations in measured gene expression
  3644. levels.
  3645. \end_layout
  3646. \begin_layout Standard
  3647. \begin_inset Float figure
  3648. wide false
  3649. sideways false
  3650. status open
  3651. \begin_layout Plain Layout
  3652. \align center
  3653. \begin_inset Graphics
  3654. filename graphics/Globin Paper/figure5 - corrplot.pdf
  3655. \end_inset
  3656. \end_layout
  3657. \begin_layout Plain Layout
  3658. \begin_inset Caption Standard
  3659. \begin_layout Plain Layout
  3660. \series bold
  3661. \begin_inset Argument 1
  3662. status collapsed
  3663. \begin_layout Plain Layout
  3664. Comparison of inter-sample gene abundance correlations with and without
  3665. globin blocking.
  3666. \end_layout
  3667. \end_inset
  3668. \begin_inset CommandInset label
  3669. LatexCommand label
  3670. name "fig:gene-abundance-correlations"
  3671. \end_inset
  3672. Comparison of inter-sample gene abundance correlations with and without
  3673. globin blocking (GB).
  3674. \series default
  3675. All libraries were normalized together as described in Figure 2, and genes
  3676. with an average abundance (logCPM, log2 counts per million reads counted)
  3677. less than -1 were filtered out.
  3678. Each gene’s logCPM was computed in each library using the edgeR cpm function.
  3679. For each pair of biological samples, the Pearson correlation between those
  3680. samples' GB libraries was plotted against the correlation between the same
  3681. samples’ non-GB libraries.
  3682. Each point represents an unique pair of samples.
  3683. The solid gray line shows a quantile-quantile plot of distribution of GB
  3684. correlations vs.
  3685. that of non-GB correlations.
  3686. The thin dashed line is the identity line, provided for reference.
  3687. \end_layout
  3688. \end_inset
  3689. \end_layout
  3690. \begin_layout Plain Layout
  3691. \end_layout
  3692. \end_inset
  3693. \end_layout
  3694. \begin_layout Standard
  3695. To evaluate the possibility of globin blocking causing random perturbations
  3696. and reducing sample quality, we computed the Pearson correlation between
  3697. logCPM values for every pair of samples with and without GB and plotted
  3698. them against each other (Figure
  3699. \begin_inset CommandInset ref
  3700. LatexCommand ref
  3701. reference "fig:gene-abundance-correlations"
  3702. plural "false"
  3703. caps "false"
  3704. noprefix "false"
  3705. \end_inset
  3706. ).
  3707. The plot indicated that the GB libraries have higher sample-to-sample correlati
  3708. ons than the non-GB libraries.
  3709. Parametric and nonparametric tests for differences between the correlations
  3710. with and without GB both confirmed that this difference was highly significant
  3711. (2-sided paired t-test: t = 37.2, df = 665, P ≪ 2.2e-16; 2-sided Wilcoxon
  3712. sign-rank test: V = 2195, P ≪ 2.2e-16).
  3713. Performing the same tests on the Spearman correlations gave the same conclusion
  3714. (t-test: t = 26.8, df = 665, P ≪ 2.2e-16; sign-rank test: V = 8781, P ≪ 2.2e-16).
  3715. The edgeR package was used to compute the overall biological coefficient
  3716. of variation (BCV) for GB and non-GB libraries, and found that globin blocking
  3717. resulted in a negligible increase in the BCV (0.417 with GB vs.
  3718. 0.400 without).
  3719. The near equality of the BCVs for both sets indicates that the higher correlati
  3720. ons in the GB libraries are most likely a result of the increased yield
  3721. of useful reads, which reduces the contribution of Poisson counting uncertainty
  3722. to the overall variance of the logCPM values
  3723. \begin_inset CommandInset citation
  3724. LatexCommand cite
  3725. key "McCarthy2012"
  3726. literal "false"
  3727. \end_inset
  3728. .
  3729. This improves the precision of expression measurements and more than offsets
  3730. the negligible increase in BCV.
  3731. \end_layout
  3732. \begin_layout Subsection*
  3733. More differentially expressed genes are detected with globin blocking
  3734. \end_layout
  3735. \begin_layout Standard
  3736. \begin_inset Float table
  3737. wide false
  3738. sideways false
  3739. status open
  3740. \begin_layout Plain Layout
  3741. \align center
  3742. \begin_inset Tabular
  3743. <lyxtabular version="3" rows="5" columns="5">
  3744. <features tabularvalignment="middle">
  3745. <column alignment="center" valignment="top">
  3746. <column alignment="center" valignment="top">
  3747. <column alignment="center" valignment="top">
  3748. <column alignment="center" valignment="top">
  3749. <column alignment="center" valignment="top">
  3750. <row>
  3751. <cell alignment="center" valignment="top" usebox="none">
  3752. \begin_inset Text
  3753. \begin_layout Plain Layout
  3754. \end_layout
  3755. \end_inset
  3756. </cell>
  3757. <cell alignment="center" valignment="top" usebox="none">
  3758. \begin_inset Text
  3759. \begin_layout Plain Layout
  3760. \end_layout
  3761. \end_inset
  3762. </cell>
  3763. <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3764. \begin_inset Text
  3765. \begin_layout Plain Layout
  3766. \series bold
  3767. No Globin Blocking
  3768. \end_layout
  3769. \end_inset
  3770. </cell>
  3771. <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3772. \begin_inset Text
  3773. \begin_layout Plain Layout
  3774. \end_layout
  3775. \end_inset
  3776. </cell>
  3777. <cell multicolumn="2" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  3778. \begin_inset Text
  3779. \begin_layout Plain Layout
  3780. \end_layout
  3781. \end_inset
  3782. </cell>
  3783. </row>
  3784. <row>
  3785. <cell alignment="center" valignment="top" usebox="none">
  3786. \begin_inset Text
  3787. \begin_layout Plain Layout
  3788. \end_layout
  3789. \end_inset
  3790. </cell>
  3791. <cell alignment="center" valignment="top" usebox="none">
  3792. \begin_inset Text
  3793. \begin_layout Plain Layout
  3794. \end_layout
  3795. \end_inset
  3796. </cell>
  3797. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3798. \begin_inset Text
  3799. \begin_layout Plain Layout
  3800. \series bold
  3801. Up
  3802. \end_layout
  3803. \end_inset
  3804. </cell>
  3805. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3806. \begin_inset Text
  3807. \begin_layout Plain Layout
  3808. \series bold
  3809. NS
  3810. \end_layout
  3811. \end_inset
  3812. </cell>
  3813. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3814. \begin_inset Text
  3815. \begin_layout Plain Layout
  3816. \series bold
  3817. Down
  3818. \end_layout
  3819. \end_inset
  3820. </cell>
  3821. </row>
  3822. <row>
  3823. <cell multirow="3" alignment="center" valignment="middle" topline="true" bottomline="true" leftline="true" usebox="none">
  3824. \begin_inset Text
  3825. \begin_layout Plain Layout
  3826. \series bold
  3827. Globin-Blocking
  3828. \end_layout
  3829. \end_inset
  3830. </cell>
  3831. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3832. \begin_inset Text
  3833. \begin_layout Plain Layout
  3834. \series bold
  3835. Up
  3836. \end_layout
  3837. \end_inset
  3838. </cell>
  3839. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3840. \begin_inset Text
  3841. \begin_layout Plain Layout
  3842. \family roman
  3843. \series medium
  3844. \shape up
  3845. \size normal
  3846. \emph off
  3847. \bar no
  3848. \strikeout off
  3849. \xout off
  3850. \uuline off
  3851. \uwave off
  3852. \noun off
  3853. \color none
  3854. 231
  3855. \end_layout
  3856. \end_inset
  3857. </cell>
  3858. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3859. \begin_inset Text
  3860. \begin_layout Plain Layout
  3861. \family roman
  3862. \series medium
  3863. \shape up
  3864. \size normal
  3865. \emph off
  3866. \bar no
  3867. \strikeout off
  3868. \xout off
  3869. \uuline off
  3870. \uwave off
  3871. \noun off
  3872. \color none
  3873. 515
  3874. \end_layout
  3875. \end_inset
  3876. </cell>
  3877. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3878. \begin_inset Text
  3879. \begin_layout Plain Layout
  3880. \family roman
  3881. \series medium
  3882. \shape up
  3883. \size normal
  3884. \emph off
  3885. \bar no
  3886. \strikeout off
  3887. \xout off
  3888. \uuline off
  3889. \uwave off
  3890. \noun off
  3891. \color none
  3892. 2
  3893. \end_layout
  3894. \end_inset
  3895. </cell>
  3896. </row>
  3897. <row>
  3898. <cell multirow="4" alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3899. \begin_inset Text
  3900. \begin_layout Plain Layout
  3901. \end_layout
  3902. \end_inset
  3903. </cell>
  3904. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3905. \begin_inset Text
  3906. \begin_layout Plain Layout
  3907. \series bold
  3908. NS
  3909. \end_layout
  3910. \end_inset
  3911. </cell>
  3912. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3913. \begin_inset Text
  3914. \begin_layout Plain Layout
  3915. \family roman
  3916. \series medium
  3917. \shape up
  3918. \size normal
  3919. \emph off
  3920. \bar no
  3921. \strikeout off
  3922. \xout off
  3923. \uuline off
  3924. \uwave off
  3925. \noun off
  3926. \color none
  3927. 160
  3928. \end_layout
  3929. \end_inset
  3930. </cell>
  3931. <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
  3932. \begin_inset Text
  3933. \begin_layout Plain Layout
  3934. \family roman
  3935. \series medium
  3936. \shape up
  3937. \size normal
  3938. \emph off
  3939. \bar no
  3940. \strikeout off
  3941. \xout off
  3942. \uuline off
  3943. \uwave off
  3944. \noun off
  3945. \color none
  3946. 11235
  3947. \end_layout
  3948. \end_inset
  3949. </cell>
  3950. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  3951. \begin_inset Text
  3952. \begin_layout Plain Layout
  3953. \family roman
  3954. \series medium
  3955. \shape up
  3956. \size normal
  3957. \emph off
  3958. \bar no
  3959. \strikeout off
  3960. \xout off
  3961. \uuline off
  3962. \uwave off
  3963. \noun off
  3964. \color none
  3965. 136
  3966. \end_layout
  3967. \end_inset
  3968. </cell>
  3969. </row>
  3970. <row>
  3971. <cell multirow="4" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3972. \begin_inset Text
  3973. \begin_layout Plain Layout
  3974. \end_layout
  3975. \end_inset
  3976. </cell>
  3977. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3978. \begin_inset Text
  3979. \begin_layout Plain Layout
  3980. \series bold
  3981. Down
  3982. \end_layout
  3983. \end_inset
  3984. </cell>
  3985. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  3986. \begin_inset Text
  3987. \begin_layout Plain Layout
  3988. \family roman
  3989. \series medium
  3990. \shape up
  3991. \size normal
  3992. \emph off
  3993. \bar no
  3994. \strikeout off
  3995. \xout off
  3996. \uuline off
  3997. \uwave off
  3998. \noun off
  3999. \color none
  4000. 0
  4001. \end_layout
  4002. \end_inset
  4003. </cell>
  4004. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
  4005. \begin_inset Text
  4006. \begin_layout Plain Layout
  4007. \family roman
  4008. \series medium
  4009. \shape up
  4010. \size normal
  4011. \emph off
  4012. \bar no
  4013. \strikeout off
  4014. \xout off
  4015. \uuline off
  4016. \uwave off
  4017. \noun off
  4018. \color none
  4019. 548
  4020. \end_layout
  4021. \end_inset
  4022. </cell>
  4023. <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  4024. \begin_inset Text
  4025. \begin_layout Plain Layout
  4026. \family roman
  4027. \series medium
  4028. \shape up
  4029. \size normal
  4030. \emph off
  4031. \bar no
  4032. \strikeout off
  4033. \xout off
  4034. \uuline off
  4035. \uwave off
  4036. \noun off
  4037. \color none
  4038. 127
  4039. \end_layout
  4040. \end_inset
  4041. </cell>
  4042. </row>
  4043. </lyxtabular>
  4044. \end_inset
  4045. \end_layout
  4046. \begin_layout Plain Layout
  4047. \begin_inset Caption Standard
  4048. \begin_layout Plain Layout
  4049. \series bold
  4050. \begin_inset Argument 1
  4051. status open
  4052. \begin_layout Plain Layout
  4053. Comparison of significantly differentially expressed genes with and without
  4054. globin blocking.
  4055. \end_layout
  4056. \end_inset
  4057. \begin_inset CommandInset label
  4058. LatexCommand label
  4059. name "tab:Comparison-of-significant"
  4060. \end_inset
  4061. Comparison of significantly differentially expressed genes with and without
  4062. globin blocking.
  4063. \series default
  4064. Up, Down: Genes significantly up/down-regulated in post-transplant samples
  4065. relative to pre-transplant samples, with a false discovery rate of 10%
  4066. or less.
  4067. NS: Non-significant genes (false discovery rate greater than 10%).
  4068. \end_layout
  4069. \end_inset
  4070. \end_layout
  4071. \begin_layout Plain Layout
  4072. \end_layout
  4073. \end_inset
  4074. \end_layout
  4075. \begin_layout Standard
  4076. To compare performance on differential gene expression tests, we took subsets
  4077. of both the GB and non-GB libraries with exactly one pre-transplant and
  4078. one post-transplant sample for each animal that had paired samples available
  4079. for analysis (N=7 animals, N=14 samples in each subset).
  4080. The same test for pre- vs.
  4081. post-transplant differential gene expression was performed on the same
  4082. 7 pairs of samples from GB libraries and non-GB libraries, in each case
  4083. using an FDR of 10% as the threshold of significance.
  4084. Out of 12954 genes that passed the detection threshold in both subsets,
  4085. 358 were called significantly differentially expressed in the same direction
  4086. in both sets; 1063 were differentially expressed in the GB set only; 296
  4087. were differentially expressed in the non-GB set only; 2 genes were called
  4088. significantly up in the GB set but significantly down in the non-GB set;
  4089. and the remaining 11235 were not called differentially expressed in either
  4090. set.
  4091. These data are summarized in Table
  4092. \begin_inset CommandInset ref
  4093. LatexCommand ref
  4094. reference "tab:Comparison-of-significant"
  4095. plural "false"
  4096. caps "false"
  4097. noprefix "false"
  4098. \end_inset
  4099. .
  4100. The differences in BCV calculated by EdgeR for these subsets of samples
  4101. were negligible (BCV = 0.302 for GB and 0.297 for non-GB).
  4102. \end_layout
  4103. \begin_layout Standard
  4104. The key point is that the GB data results in substantially more differentially
  4105. expressed calls than the non-GB data.
  4106. Since there is no gold standard for this dataset, it is impossible to be
  4107. certain whether this is due to under-calling of differential expression
  4108. in the non-GB samples or over-calling in the GB samples.
  4109. However, given that both datasets are derived from the same biological
  4110. samples and have nearly equal BCVs, it is more likely that the larger number
  4111. of DE calls in the GB samples are genuine detections that were enabled
  4112. by the higher sequencing depth and measurement precision of the GB samples.
  4113. Note that the same set of genes was considered in both subsets, so the
  4114. larger number of differentially expressed gene calls in the GB data set
  4115. reflects a greater sensitivity to detect significant differential gene
  4116. expression and not simply the larger total number of detected genes in
  4117. GB samples described earlier.
  4118. \end_layout
  4119. \begin_layout Section
  4120. Discussion
  4121. \end_layout
  4122. \begin_layout Standard
  4123. The original experience with whole blood gene expression profiling on DNA
  4124. microarrays demonstrated that the high concentration of globin transcripts
  4125. reduced the sensitivity to detect genes with relatively low expression
  4126. levels, in effect, significantly reducing the sensitivity.
  4127. To address this limitation, commercial protocols for globin reduction were
  4128. developed based on strategies to block globin transcript amplification
  4129. during labeling or physically removing globin transcripts by affinity bead
  4130. methods
  4131. \begin_inset CommandInset citation
  4132. LatexCommand cite
  4133. key "Winn2010"
  4134. literal "false"
  4135. \end_inset
  4136. .
  4137. More recently, using the latest generation of labeling protocols and arrays,
  4138. it was determined that globin reduction was no longer necessary to obtain
  4139. sufficient sensitivity to detect differential transcript expression
  4140. \begin_inset CommandInset citation
  4141. LatexCommand cite
  4142. key "NuGEN2010"
  4143. literal "false"
  4144. \end_inset
  4145. .
  4146. However, we are not aware of any publications using these currently available
  4147. protocols the with latest generation of microarrays that actually compare
  4148. the detection sensitivity with and without globin reduction.
  4149. However, in practice this has now been adopted generally primarily driven
  4150. by concerns for cost control.
  4151. The main objective of our work was to directly test the impact of globin
  4152. gene transcripts and a new globin blocking protocol for application to
  4153. the newest generation of differential gene expression profiling determined
  4154. using next generation sequencing.
  4155. \end_layout
  4156. \begin_layout Standard
  4157. The challenge of doing global gene expression profiling in cynomolgus monkeys
  4158. is that the current available arrays were never designed to comprehensively
  4159. cover this genome and have not been updated since the first assemblies
  4160. of the cynomolgus genome were published.
  4161. Therefore, we determined that the best strategy for peripheral blood profiling
  4162. was to do deep RNA-seq and inform the workflow using the latest available
  4163. genome assembly and annotation
  4164. \begin_inset CommandInset citation
  4165. LatexCommand cite
  4166. key "Wilson2013"
  4167. literal "false"
  4168. \end_inset
  4169. .
  4170. However, it was not immediately clear whether globin reduction was necessary
  4171. for RNA-seq or how much improvement in efficiency or sensitivity to detect
  4172. differential gene expression would be achieved for the added cost and work.
  4173. \end_layout
  4174. \begin_layout Standard
  4175. We only found one report that demonstrated that globin reduction significantly
  4176. improved the effective read yields for sequencing of human peripheral blood
  4177. cell RNA using a DeepSAGE protocol
  4178. \begin_inset CommandInset citation
  4179. LatexCommand cite
  4180. key "Mastrokolias2012"
  4181. literal "false"
  4182. \end_inset
  4183. .
  4184. The approach to DeepSAGE involves two different restriction enzymes that
  4185. purify and then tag small fragments of transcripts at specific locations
  4186. and thus, significantly reduces the complexity of the transcriptome.
  4187. Therefore, we could not determine how DeepSAGE results would translate
  4188. to the common strategy in the field for assaying the entire transcript
  4189. population by whole-transcriptome 3’-end RNA-seq.
  4190. Furthermore, if globin reduction is necessary, we also needed a globin
  4191. reduction method specific to cynomolgus globin sequences that would work
  4192. an organism for which no kit is available off the shelf.
  4193. \end_layout
  4194. \begin_layout Standard
  4195. As mentioned above, the addition of globin blocking oligos has a very small
  4196. impact on measured expression levels of gene expression.
  4197. However, this is a non-issue for the purposes of differential expression
  4198. testing, since a systematic change in a gene in all samples does not affect
  4199. relative expression levels between samples.
  4200. However, we must acknowledge that simple comparisons of gene expression
  4201. data obtained by GB and non-GB protocols are not possible without additional
  4202. normalization.
  4203. \end_layout
  4204. \begin_layout Standard
  4205. More importantly, globin blocking not only nearly doubles the yield of usable
  4206. reads, it also increases inter-sample correlation and sensitivity to detect
  4207. differential gene expression relative to the same set of samples profiled
  4208. without blocking.
  4209. In addition, globin blocking does not add a significant amount of random
  4210. noise to the data.
  4211. Globin blocking thus represents a cost-effective way to squeeze more data
  4212. and statistical power out of the same blood samples and the same amount
  4213. of sequencing.
  4214. In conclusion, globin reduction greatly increases the yield of useful RNA-seq
  4215. reads mapping to the rest of the genome, with minimal perturbations in
  4216. the relative levels of non-globin genes.
  4217. Based on these results, globin transcript reduction using sequence-specific,
  4218. complementary blocking oligonucleotides is recommended for all deep RNA-seq
  4219. of cynomolgus and other nonhuman primate blood samples.
  4220. \end_layout
  4221. \begin_layout Chapter
  4222. Future Directions
  4223. \end_layout
  4224. \begin_layout Itemize
  4225. Study other epigenetic marks in more contexts
  4226. \end_layout
  4227. \begin_deeper
  4228. \begin_layout Itemize
  4229. DNA methylation, histone marks, chromatin accessibility & conformation in
  4230. CD4 T-cells
  4231. \end_layout
  4232. \begin_layout Itemize
  4233. Also look at other types lymphocytes: CD8 T-cells, B-cells, NK cells
  4234. \end_layout
  4235. \end_deeper
  4236. \begin_layout Itemize
  4237. Use CV or bootstrap to better evaluate classifiers
  4238. \end_layout
  4239. \begin_layout Standard
  4240. \begin_inset ERT
  4241. status open
  4242. \begin_layout Plain Layout
  4243. % Use "References" instead of "Bibliography"
  4244. \end_layout
  4245. \begin_layout Plain Layout
  4246. \backslash
  4247. renewcommand{
  4248. \backslash
  4249. bibname}{References}
  4250. \end_layout
  4251. \end_inset
  4252. \end_layout
  4253. \begin_layout Standard
  4254. \begin_inset Flex TODO Note (inline)
  4255. status open
  4256. \begin_layout Plain Layout
  4257. Check bib entry formatting & sort order
  4258. \end_layout
  4259. \end_inset
  4260. \end_layout
  4261. \begin_layout Standard
  4262. \begin_inset CommandInset bibtex
  4263. LatexCommand bibtex
  4264. btprint "btPrintCited"
  4265. bibfiles "refs"
  4266. options "bibtotoc,unsrt"
  4267. \end_inset
  4268. \end_layout
  4269. \end_body
  4270. \end_document