From 68587e03af953179d71f1311a72d654ced7e101c Mon Sep 17 00:00:00 2001 From: 456130 <456130@mail.muni.cz> Date: Wed, 31 Jul 2019 16:45:25 +0200 Subject: [PATCH] moved cbioapp to data-lodint repo --- .gitlab-ci.yml | 16 +-- builds/cbioapp/Dockerfile | 45 ------- builds/cbioapp/context.xml | 37 ------ builds/cbioapp/log4j.properties | 19 --- builds/cbioapp/logo_EurOPDX.png | Bin 10869 -> 0 bytes builds/cbioapp/portal.properties | 218 ------------------------------- builds/cbioapp/settings.xml | 10 -- builds/cbioapp/start.sh | 8 -- 8 files changed, 8 insertions(+), 345 deletions(-) delete mode 100644 builds/cbioapp/Dockerfile delete mode 100644 builds/cbioapp/context.xml delete mode 100644 builds/cbioapp/log4j.properties delete mode 100644 builds/cbioapp/logo_EurOPDX.png delete mode 100644 builds/cbioapp/portal.properties delete mode 100644 builds/cbioapp/settings.xml delete mode 100644 builds/cbioapp/start.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c4c6068..79cc7ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,14 +13,14 @@ stages: - echo -n $CI_REGISTRY_PASSWORD | docker login -u "$CI_REGISTRY_USER" --password-stdin $CI_REGISTRY # - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY -cBioApp build: - stage: build - <<: *docker-login - image: docker:latest - script: - - docker build --pull -t "${CI_REGISTRY_IMAGE}:app${CI_COMMIT_SHA}" ./builds/cbioapp - - docker push "$CI_REGISTRY_IMAGE:app${CI_COMMIT_SHA}" - when: manual +# cBioApp build: +# stage: build +# <<: *docker-login +# image: docker:latest +# script: +# - docker build --pull -t "${CI_REGISTRY_IMAGE}:app${CI_COMMIT_SHA}" ./builds/cbioapp +# - docker push "$CI_REGISTRY_IMAGE:app${CI_COMMIT_SHA}" +# when: manual cBioDb build: stage: build diff --git a/builds/cbioapp/Dockerfile b/builds/cbioapp/Dockerfile deleted file mode 100644 index 74132b3..0000000 --- a/builds/cbioapp/Dockerfile +++ /dev/null @@ -1,45 +0,0 @@ -ARG TAG=2.0.0 -FROM cbioportal/cbioportal:$TAG AS build -MAINTAINER Luboslav Pivarc <456130@muni.cz> -COPY ./log4j.properties /cbioportal/src/main/resources/log4j.properties -COPY ./portal.properties /cbioportal/src/main/resources/portal.properties -COPY ./settings.xml /root/.m2/settings.xml -COPY ./context.xml /usr/local/tomcat/conf/context.xml -COPY ./logo_EurOPDX.png /cbioportal/portal/src/main/webapp/images/logo_EurOPDX.png - -RUN mvn -DskipTests clean install - -RUN ls $PORTAL_HOME/portal/target/ - -FROM tomcat:8-jre8 -MAINTAINER Luboslav Pivarc <456130@muni.cz> -ENV APP_NAME="cbioportal" \ - PORTAL_HOME="/cbioportal" -#======== Install Prerequisites ===============# -RUN apt-get update && apt-get install -y --no-install-recommends \ - libmysql-java \ - patch \ - python3 \ - python3-jinja2 \ - python3-mysqldb \ - python3-requests \ - && ln -s /usr/share/java/mysql-connector-java.jar "$CATALINA_HOME"/lib/ \ - && rm -rf $CATALINA_HOME/webapps/examples \ - && rm -rf /var/lib/apt/lists/* - -#======== Copy from first stage ===========================# - -COPY --from=build $PORTAL_HOME/portal/target/cbioportal.war $CATALINA_HOME/webapps/cbioportal.war -COPY --from=build $PORTAL_HOME/core/src/main/scripts/ $PORTAL_HOME/core/src/main/scripts/ -COPY --from=build $PORTAL_HOME/scripts/target/scripts*.jar $PORTAL_HOME/scripts/target/ - -COPY --from=build /usr/local/tomcat/conf/context.xml /usr/local/tomcat/conf/context.xml -COPY --from=build /cbioportal/src/main/resources/portal.properties /cbioportal/portal.properties -COPY ./data-loading /etc/data-loading -COPY ./start.sh /start.sh - -RUN chmod +x /start.sh -WORKDIR $PORTAL_HOME -EXPOSE 8080 -#======== symbol links & subtitute db host & run app ===============# -CMD /start.sh diff --git a/builds/cbioapp/context.xml b/builds/cbioapp/context.xml deleted file mode 100644 index 1da4e84..0000000 --- a/builds/cbioapp/context.xml +++ /dev/null @@ -1,37 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> -<!-- The contents of this file will be loaded for each web application --> -<Context> - - <!-- Default set of monitored resources. If one of these changes, the --> - <!-- web application will be reloaded. --> - <WatchedResource>WEB-INF/web.xml</WatchedResource> - <WatchedResource>${catalina.base}/conf/web.xml</WatchedResource> - - <!-- Uncomment this to disable session persistence across Tomcat restarts --> - <!-- - <Manager pathname="" /> - --> - - <Resource name="jdbc/cbioportal" auth="Container" type="javax.sql.DataSource" - maxActive="100" maxIdle="30" maxWait="10000" - username="cbio" password="P@ssword1" - driverClassName="com.mysql.jdbc.Driver" - connectionProperties="zeroDateTimeBehavior=convertToNull;" - url="jdbc:mysql://cbiodb:3306/cbioportal"/> -</Context> diff --git a/builds/cbioapp/log4j.properties b/builds/cbioapp/log4j.properties deleted file mode 100644 index 964f33b..0000000 --- a/builds/cbioapp/log4j.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Change INFO to DEBUG, if you want to see debugging info on underlying libraries we use. -log4j.rootLogger=INFO, a - -# Change INFO to DEBUG, if you want see debugging info on our packages and spring security packages. -log4j.category.org.mskcc=INFO -log4j.logger.org.springframework.security=INFO - -# Use the JVM option, e.g.: "java -DPORTAL_HOME=/pathto/portal_homedir", -# or - "java -DPORTAL_HOME=$PORTAL_HOME", where PORTAL_HOME is shell (environment) variable. - -## IMPORTANT - THRESHOLD SHOULD NOT BE DEBUG FOR PRODUCTION, CREDENTIALS CAN BE DISPLAYED! - -log4j.appender.a = org.apache.log4j.rolling.RollingFileAppender -log4j.appender.a.rollingPolicy = org.apache.log4j.rolling.TimeBasedRollingPolicy -log4j.appender.a.rollingPolicy.FileNamePattern = ${java.io.tmpdir}/cbioportal.log.%d.gz -log4j.appender.a.File = ${java.io.tmpdir}/cbioportal.log -log4j.appender.a.layout = org.apache.log4j.PatternLayout -log4j.appender.a.layout.ConversionPattern = %d{yyyy-MM-dd HH:mm:ss} [%t] %-5p %c - %m%n -log4j.appender.a.append = true \ No newline at end of file diff --git a/builds/cbioapp/logo_EurOPDX.png b/builds/cbioapp/logo_EurOPDX.png deleted file mode 100644 index 1aa9f993c49b96914889a84078e44a0feeb813ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10869 zcmaKSWmp`~^6oAgJV+q81$TFMcL*M2vEVGQxFtw%cMXsL!QDxK;I=?;cV8@vbNQWn z&i~#I_uTm~)7?+KZ&g=S*L2S_QJU%sSm-3^0000>Nl{iC005f3w2fY&yxd`9;w>)^ zVzAtMu#Srj*xSM#1dy_Ju>?^mIa%0(v_TfuK5j!GQ2+pu-d^`T_`RB{u$7AwyTv~; z><}l{7c>AMDgkk|u=)rBQ(1y+?VZJF&f2?asO+u9Xbkw&IMrNbKz8<uzV09$Uv*t8 z-;Y*8)-)30RH6{!7Xl{`*n$e;<ml`n3=yOG7q9S3`=4PB8mfPZfIo`S{BNV)t7%fn zxVVF;_}KZ`tT?%NsRV@Bx%l`6galZrxL^7loPr$OoNSyz!hAf!oZM9ZzGz;wxm()^ zYs<?2Th~iZjK&TOb`|E}@b>m*_vT@Daku5*5)u;P;N<4u=4N}5VDs>C23tVboIPm& z!ypUtuyVI|1>3tgQ~kqeVd>%t7NdEw^nXvm$@PC|ojv~TrWc2CKrCE2xY#-WnbLm* z)ztp~qE1f#Bkcj!2K^s<|DVJjx<0NT4sDQ!i>JHQOW<s1|54>CEaMKc0K2&By0|$0 z$BUYFE?^fAI~P|f8JT~1jf&C0-r3s4+k@#}7&SFvC1($?g|ih%Nmh*Jg@xVT-ddQS zSCB`5S6Wa?R#2LYOO97sj$2w#NREqNnvYA6i(lYBSXmb<PbZKw_&-?d|AQ6!uh@Um z!O8VSvn<Hn-V0<c@9yG6^{;6Q+y8f4`2Q>4zp>W;-4=oWisg7QhU1^${$IiV&(KQ- z{nPxP)P3pvPx6DDUozhPCAEXHVtD}o`W+=%DP73ou_;;(0pDMBtU<A00d&SN)Vx<! zEUO4Kku;l!RCQlyXa;&BQ4i58zDIr`8s&@(WnrcYeKysV1Pb+&_T%HWa-_;w09p^8 z;cDG~>b}o_;b6EfpU(ruY;uQkiS|(X%hkucWCM#*E*l<>m8J%5n1`dAvmvDdZG(F^ z${AzkViHWE=h2^?gnHeA6c?aq-yS3U1s{%DlYNi%!jqK4jKsZDKxKFO;hyCnL&F=S zM%PNTs<@iNn|9xD5P4txE1?>_z6VI;TFlxKY>ytvd3dlUQ2JPTuu66w9(jN9dt>fd zJLzGz%Jh=JB<ov^qE~PbGSAw`PZonpBm6HsXIO5ng8e?v<Q?ouLEDeb;HqxMt=}!Y zu-85qpqiQLTMmpsH2=K#3os`nIplXAbb2g21(mZ2A+8C5lV57GmQJxM3pOPjqGkHK z3RzKOpnetDy%K1*RLLd2<p`@Ud2ikQ)or5JlMo_Ga^B3f?B~X`m)p}onC{ZU(=(m$ zd`r?gvMr+idGs(i_!O;0b%r@cIRG#YzZ6N~OGsJ0vYz&LXo9crv8|Ug`SX%q#{M!k z8zF|H^X@1t?btpOBotL3bt&EedH)Kv`~?b*VJSYv6FLI}5pK<ck6dAwkcbohR;C!# z?pK)_^FzS{QZ}g?Qq7|5)qcV3e2+(oLFVyUJea&C3|Nk$^Ca`{s)+*GfpBH6ePJg2 z9K<IJ$BA=OM5AJ)b@&tvHMA12`%EzPD@gWfNglyo9awKgf#Qr5h~9y~t@Cp(_^~uc z4BL4hcWtOTHypTng}UNScA_FvvH$f4Zg4*0&0h@H^S^)ZIh)>=E5+gl3lo_9Cd^}z z0pp3Jsr+=Q*$OvtaeYH+*KQDrSNL@g(Dsb+O96H`#$N%gZ9L_fG_>@kSQbZb6<Y@t zy?JIec~vUr6+L+Tx{8_H^G%rm*_Y{YzjrN!H-a!OEw5c11b^Fxk%>I~z57Z<N#a@= zW{&QPeuxXUWU$w?fK^9)vL_4va^S7l@E{-IA${+4w(R9fthYl%zIg>qROQo+8fxhC z=NnNIR4M+QmSEdy$BVj%S0@YJC?z4jz_S7|m%oSKFp<CH*(J@HeU=vRi`1;RmEe>* zJ6eu1^=3F+;P57qiT$hU$^-LU#~1BG4d#g46SBMUOq#4=S=T1_$Gg#WwSwubhw(Ox ze)e0HH?!0tKu=EeHh%i3m^qjJAdrf!tw3(qE}v(X;%*w-ZSVE=ltzU!FoA@@nxdC) z!h%Jeem^Y{ce#)R*B9I%6X=Chl4}H7!nBbAUpheSCO$1;!B8;33xk0T(uFn6AuYjC zBJ)Jdy@&2|GdVtGgCpPBtq$DgQ6|^`l%UTmlR1{L1=oS)_KwG*W>7$NY7t6M!?x7k zA1}HK?x~$Fv*DEr3!d$YZ<;Ej1hIeD)@gYy$rfhhy7&jhSeF*oF`|{87`WPFqUKK6 z!{Pg3DnU4j<Ac4CRE>I8TWTCM?^|0TQ=eRw$|cjmy_YA_0+=5a{74x}`0e_t;2su5 zT+?(Fe2@_N;>wB3Ze&p;iKCFUsYu)$zlBpYv;sl}g(yN{(jJIEo)p}lIfQ~{D-@*- z1u`8k{P9<Q>rp2~$tLOJ#9ozgjEaWZm0lo+ChuV`v*Q-{>qwX;Qy={j%0r=iF$>_7 zDqD1AxKu7vly8f}?YUA3V45ZH`+E)6QmmkaoAGPXa^Na&;Q;9#i0M%|51MyCj%s#{ zm&ez%cVmU9*^wjbQNKfxrRv1-bG=<f*hZip;Pj1+%tFRWF)tb1t3~*=ClxQl$)Rq* zZc~tJnc}Q*0Z?5CEmq;%=w24<+}nhXzP~SYLNl`Bo3cffwKDl0RYjSC9ttlQvM!}> zi`{a`qPIkD3<}*t@c&3Bxl}UOFCi*>w;3Rg?O?^%lPx}@h%Y|DaO<am{{#<CIm1)C zaRXK`Z1HZWkx{APkHiQ<_cp`hfjQq&0bq@R9bz2ZEU7$9_kUr*ZS)Tc`P(jeHW|ho zjObsn84&a}z$7lFL~5z4uNg)JisCua@fGR`(xZ9BC4FNz0V`j)h06<Y4RKCie<jTa zn#m~9=2p7ZQgV9-NG&<F{D`7nlLD^xhUzK--bcGGe2)_ErM@SJP@e(2u}g^*OkovS z>NDylt~`9$F!CS2MzTG@v=`?dlcW_dUM_g?^0^4bk0`UFuRp3@al#IBE_o2&gSw*K zW~@=IoYNPiK6`&)snUrLcG2~69R#s-+F~CtiTWuEHyGB77&1-Cs9lao*$Xacm&c*s z%j)Y7Z&F|^u?aUuNFTX9hLnbO@pwd&>ZigZFO$92cPEUUU+P)vOW}06yk%ffrCkSg zwhhuf^u6WXgM-#K5U?Mkfolf|oe7KesQY!~m~h2C9@ygn^a&Bzp~k@>h)gxZQFqYh zba~Cd(3yN`Sd=$id7B_iJWOKu#_54QyOYQXr8-<pq%vYpR%WgAwgdD;sZzcj@kX16 zB5&$4o^SgxYj=9*h#l6b>@rX{tr5>Zv{lL)c0W4$XiBT|d+X_1{4Pb<-13xX-Fsc_ zo0x3c0gOYw9vObsf>tmz8xbZ7`?Q<kP36shYIugw)^WyHvc?luanv%qbqc-(NKHXn zm${bc{9~>@MHL-p?WyWbjluFZ@c5&j#pZeQlTl3MeV6iU$lhp??slOF;JnnXyQj=n ziN04Ifs49<)e(Pgq9=|%D3;(<Dj~rZ0WE;_A*E#jQF*|O9fRa4Ub@&D3Sj=$c_e#_ zt&(soBsNyyw&5Y9^fsabw##d3iDbIR>5ARctR5OZSR!T2yOD|rBlpBW^g^joKji-^ z!M%zEjL}JjU%2AIKM@~JdbJipJ1O8DpBl_n1T;B&va^)OV|7XB6)%H?!V^cvS9yF- z(ItsfaU>~t5GQNpRJwg)ZZ_!w+v&_5v{^(qUP$v^gp;6vz*!mMjr}TH;m}av>b4F} z<MSaawlPCUdsr*lD^qaGc6$9Vc;Pl4I#FbfR5{n$p=00{R;On68L+L@Ot<ly7r`vl zqA}?mChU<O9Y)R?k*OW^eS<4$T|a&aic1h<AagO)x_8V9bHW+lFEgI+k$E#90eu(m zm#40|(P@z@8*8CVlB(4T*gk)!cC!dbgI80yA+6$_1WCe>Yus7J7P1l%_C&&&&K@)T zqET|wta(>w@FMia?hd5jICt<-lRHIsI7>4{_igZRpQ-sTVU|HxjR;hJGkFzJW&}OH zZ<YD!2g`oX1$%!C&QG?#<ZJFmrbrr>T-Vz;O6hda+@eV@r-3t9*ohj;%bB#Xe*0)} zW7MaA<1#`VcP}%XrY?9A`M{9uJF2`@x2x~h3;=%>e{47#T~2+>-kv&MZ}8BH{_ZfX z3SM(-=T3Q5B((3Uwrl|O&nGX_{0-=up0xMW-3ahI>GMH#mKmB>CKQ&(ziMfrTga}s zCx*D-snZ$SoBUa!%$oAhAcLzJoZ@4qI`)uWxnH)&8VDRcWkb)5c8!ZfhyYqdrhGpq zNZ2sgPLrtaUfV9nwn!kEQV7*5nA<yFw`i3J5$nh}*a=I*qajCC^r9r~cA5<+YhGjk zEcQVAlBm3t(=0;-kt#!k8pAk2_Pi*7Q&7rY4q~C?=(dr={x#lm#dH$Rm(A6&()}$2 zW9D}`H`M#Sxk={^!RE;xsLoH*XaX8QRd|tV>#{*JwM6ru;`E7LRAq9Wo@^54q42S( z7C4!v5fO=-(t{e0W3RoLQ17@Ke2V+HM1_(e5SxjfTpd#l!<Fk$_$pWF#_VdEg1Mk; z0#vMq91_i8R9-XD{!%9C=+)o(n}^<eCJWye*~uQ<1q89|?A0Ipz2%Xa=~Ek_9nhZI z_9~^#8|iQ5_IT&boh&1d^L~A&D<e!bmx-$qBG{$W_{xpRCQaq$knyw<FM%6<ahIVL z5P>t@&~>V2Z3%#~%$hSqptYGK>Q5j?wkm#3b{n(H6Vwdxp3W2SV-sjGv|Q9q%Dx{T z-NDv0o-Sr(?iW11CUwL6PAX~9QC6)L!mcLB(JDKeu;==Xdr$lB_xgQLd?^p(+v;$D z-ZpQ6J8(=O;#ba%5Lc|E08i%in*tSs$Eo3fGQK^ww4vFtuRGMsL8~F<=OpOZCsDO- zx3ONgKUfVyeP}q~nLAzul*o@U9H@*G#aeA%46czH9O2Poo0qx}z7GuPf}wxkZr6w8 zz#N0;5;&CR-Vfif=C?icIc#+b19w1k$AT5(vnD3PZMd-k8d-BhEBrZVZW2fzpl_=4 zBL?56oJS{o&8F)lR(DMlB76u%cOd}<&uJC}3o!OBWte14+A(Bkn9)F6x11CK`%o;G z7-%+EdO56XMvmdVWS5u%0SW8yE@4svX`VA>&pc#03{3KMt%GEk9sz=tnh`hoiD5J2 zJ5lP>JB+w@kWU(gmH4^eehmyBG1h%9ehF_E?aE}!XtLTR%PnJmTL56xM!bw}CGm<* zI1mjm^jNY4iM#?%1|H&xYYyQWviBjgTP1pZ2Hyc*HY~xX*{P%#Z|U`~we&rGxbi5= zN{q5#v*+}T3M~>_)Y3s$3@bF&n-}sW=5KpvKWUJz^KC0YfoDI(hrc=#pYmVcYAX-e z|4Q#iYs>jTT5+WysFi%W-U!8ULwZ~irI;q4XdMQ)_-dB`_5yP09~3EfrpB7ya`$Ar z3!CA0@s3}${JOS|hlD!U+F%aCQZ{iZXr6&Le_jLvb%lC-%nxkW1K4a$_+sT7noI-# zn(16?E4PIi1Vzd$bz-L*i^-x4qxDT`bCgKThS8Q9fZ&3N9rm)B!0~o<<Fb?F2lC{> zjmpBCR|WlQ>C1ng*6Xh5xJvuMX0X>AWh?<!N;=rh9cBk&o+M#sTrW#*F_)$Q^McdH zKBjkAS4aBfOZa9fVHT{~(lD2yV$DqF4o#;m=A1VwLqPJEm^lIBeEj-t(92r&hhoX$ zJ0*)T^{icxs@)8U53MP2?JjA$D>fgVJ-(ejz;WKj4I%}A?a?l72_U8PaZl@3*4h&Q z7d$0_TWz+V6G8$#Scf7zrxSj=I_cZ@8zRr9_<2nVko(Eep0QQqk44`G60qZ)&rYZ> zXe688eXEi+8HMbAb*@G^UAzDB@}7Z~T7Ud*YD_SRvOx8n@}kSI)#P!<Ym?2OI@dJI zhjcoC3~tvlNcV*T%bZcBtY{$h{!r>pYa$j8e2{tZ1)85c&@17hA!`Hd5_PG`j!?AS z-aDiUj4S}03GW1Uj2)o)|8}yUtN|-bHL&dXo0cydsEoO!=jZ-q7`~HT8q?d5LwDwl zW57{JMERMvH+monn!hz?z_&)DE|z;<*P@`IwO%tv?1(BQPWHHw+G~}4tkfF`#Ur|N z8jEoC`Wwe<XP(TvVVdX6UmR#}Z3k|ivyTW;#ea+o=_^Kb_Jnc15!aGem~xi(5NK&t zc*q3|S0}?r#ClkG-N0Oabaw1EQp3lj>=wr%_i68@#$QMU9-8%Ph%{s)2c}xo>|As2 zbG~I0EnhoEho-PnQ_O-KGqp?y%;-vya?xy4LVgzmPY*tvhDcT?vQrc#1Jm+l6Dgdo z5JhF_sd5X4AVkF@C(I(>yYqPLzLi3mkit8fKL0TLTQ23v`oS1Q{#Jjg8x~$pEEj1z z#P{GWuUIAL`1!dhXQM@;*zw@g^plJ@S(p21F@-a-DBeTxVo;*Y+@Ex!AN`N<Y7hp7 z!vI|ud#+-#)eZSK=wek@+2KfEPIEKc&!XskZifS)A^3?oOs5k2b%i>qps_|)zKP+Q zz`@-4#=Z!Qu4Ol{r#}ooahEs^bbb|_Htcu)`^xKf0Rx9qbQBOgtE6e9OE8Q^Ne@y> z7dzed%=_ZJfjNfZEeC8n{xRUYj+}n)rEK#P=)b3^;GQpEEU~$UZ_pr#cy_`pC4ccY z$`9jMAd^49eZ0*koyavgHjo_-d!MFm(98-U?|Ebje)J2z@il3F<B3h38nu?G&j==v zd?I)dH!ss<X?zw(5%mmi+SWl_ZV~#i&922@w^{bsq~Ek~^1zb67S(me0NCYN9|LST z-L!M|T29!X{MzyUl#Xa%Ssitwd}B(yF$-9au(f_q#@AP*barhgd7zp(Y#ulwfcU-W z;2{rnZnjTLX;VMGyOgS1w_`uzxalG;uwRt%(q(YuObW$J0t#S)2sCq?zBf;L!`48% zhWX^u)3{2GNQ$$o$`L??6Mw<azEeq?<7hdMhUny-$Mq_Oq_)aC?)MIcq*wGsUQWQP zgHbiP($=>!{OaHIji=;3nW-;RS5}-wh)b2TovDp4uw@w)Mc|vT`<!^_`1z+{+eG-; ztf=R&*1xwFA0b%@s{-tcyVO+AM0$2mOCHZMN~TMuol$cem)!7vn40Vyr8Nz$i8fsS z>yRNV6tP4JWw;XBIkhBYag#p$VWHzr@AXl<xDK-)Q3J4+3LhOUAvNHc+EnqNCAlM- zHm#<RoP%%|=h<PeBSf+Mj0KpjDFE9XQ5%j9>2nWIATkIz12LcN)U%IqpNm)txk|%j zp(#T`SNO+)aw7;1>fYMMdbK`uu6S`(2DITCCtOp6fsnSwmX{50-A}ckwuOW+<WC3K zeV(TcRt!fip1%5{s1p{5_7V*zmSF)*C2AK~cH@NuzhnX1ZEvU7{fCJu&dEVID>FFR z`ju!=XxqkPuTm9;<3FilREq_xB>$*$LP?)<=qgNLMy?Jg_h7h=EUPgxH`Bz1=ZAxj zHlB=HDB>E1RaXBRQa56C3m6qnYC!(bJeYC1D~|_aZ%sl*XuF#9uDUMb<Uj>~UXC~l z7H+ruOT68ilp{XdsCk`d8^mG(-lg*eX%nf9tez>U7PB?1M~d5UO%tA<dau)>x<^3o z^@Rdu$7`uOB5}Kj&X>+fe>Bm!ev}VyM62zV{7dwy@_@4_Ac}l{XR^<V7i(f}BnE_9 zqbqVfjXB_MZVpAptkW#&f>x_9eYRzVNeStM1&zpj3heJP(RU=?=}DlLk)jLcQ0Q#a z`=$#SSBDm1BX)#i5(|F_N%u>f{86&>bVUkWBM%(*CcZqtB<3d2WoBKjt1xOTzna<q zzN}ViqL_r%>Wu{>;kF*s-0bn@>q(D8Ao?gfF7=?0V7!?wN~#k^EfbEQ(fD!h9Sq8+ z+kAGZv3^&fU%9Xz@sPzc_YWxqp#Um(g;L|(3e#e~Go4RT|2^|zFrl!a;MXrU(h9wb zJJLY2LR=xV^N&;pholE@|HTOn??cUu{%YhPyT7#zAaO5aKjiB9_yPkXnxCdA2ym}- zv0Q};YK-ESNdKF!=!MVtAHJ{9v-011pNSK)?O%3NF9zbFc3}X!mYJIh<+l;~G$NME zp@aEcd~dm}8QIFbPO_FEc_LdNd)c(GiT8~TY8K^}Hp@dVwx^^aN$%8Miy9hw>l>59 zUVl9&;ZC8S`DQO3FWpArUwU_RYl{TTb5pQ=7NE$T@<_+IT+KGvJ{jVj@^3Y~f25!} zDH4k9wR`dUEh+e88O*G<S9Z(cgVpKhQJo-#Fp1zFlp4)X-(1@?C3XTF#yEpLPIPU) zAD5&PIeyV@nr#>o@_5wE8oWntaizV)NNje&OW8eW>Bv8X_j}xqjzMf#(gjb?hLcGl zoe11(cl)I8Iyw^Qo6oa9T|K4#f@d)9<iG0K*r;gSS)|O`az^F!P^c_K7#7XAVwyIk zo89iIU##k#m`J@Z{4x8}MP}DhNLl>02ZLf;xBVxd$uEQZ8r94o3S%?+-}3T42)~ti zdG`*!v)-Vs>sBA^%J!J0cU(L|Mu(UJ5lsuZFR<`@vd~Bs`U$#GMPg-h)t3lH-{|5X zg5me2ua?kZoeIItnZVVQ;4@3W(U@{j2Ajsx4W+eF$!5xCo!#Ig8CGs@A^JFsmo}6P z4%^mur#-=ioTW1RFV;{t3@H~)<x`XFs7`-Ml3`pLz|SCC$q;u(G$p-x!i4QmS12s; zZU`d<^;Pz|++{(nwXE^w=SgA>!*+k+>)y1GBA_VLuuxIDCxZ3{iJ!tsdW(~4x2G62 z6n{P*V;(6hsIUco75!K(-__JX2_llIdTsF_g4k`a<?T7eKPT+85?MiozE0ogq}-<f zEWmqz&-e(;RhwU>nx<dK!v<|3ArkJR=>CaiKSxEYIgx)zvxIKe%BZ@CSbN)9b8l}Q z2ald{?Iu&6d7Cb}g;KA@p0%JIoU-gLkhPu0UJC8VUW%joV?i^GV*EXU32Is?LllE_ zE1%_uzj!)+n`;gu<6GuVxUI~%Vpe`?mh_5`Ffl9(qfT5g{smue{(h{dVak}LRL>Sy zc*YHL1Wsd+OJ3o!FL(ju-^O!MQc2#WPcdx@OL>*6HSw^=qe(8=i)=!YU;)k_*x-1@ zmp#qpj}r&?$mibct8<PQ3>7b5|4wB{r3E#j1vP@Rb5*SzGLufD<G`&OSOSgq7!>(E z4!0R#@n+xPGgb-~B$%mAc~A5g@6QD9#&F=uJGM8Px_xA~0bw1wY)b*8#gfm+tqGXf z29YNfSQ-3AzWT>9%LA;AgKYIB@JRmxMc?B>q5F9Z_a#26F*K}kdV|`}m%6j}t`o*L zD`uZH80oS4*TNi)G(5kJ;RShbbtdfvHo@=7-Dux&Q2UH8B>l}yRF18gg0|{<)UWww zNWWiT2YP?#GPR~izR3P1DoaA}%U;+A0gl-)v`Ta48p;-vyUXb6G8K4Zin7%O<j-W# zh0xfc{Cc*)*lR8%9bd?L@J{!2k70{h^Lz~*s{ahy;^w@F-MPp1P>SCR>ZF>m3RnoK znd|5Epn-O1ZaWM<vd!dwlRG20_rV!_T-VwSsy!cG9+2cBt>LP3uEm~6cB$h8o=jln zw0>jNfQy-b?xeh-Fo+ZiUF!%7Ub@wugB0v{+w&*iA1NEgMyO%|XhN=KnTX;p>X6r! za(D{Jb8X_|k&#v+Cyv>#Kig(JGOukwett@a#TY{VXtZ!YU;zc1at$BMwBZyn88`1% zhLZICh}NBcJc*JECDNl(q%7zyTKmPm6^Zdl7zy{+-t{TEb`VtbEo*9`h(0A=(ZW6Y z68=-UCpMf^31^gAF33JO(c_e@70y-0`S5B0ce{rHqeU(_0xNsuiDXb=G%1uOa{F)* zCqwLBQz`xSLx~kFaTplwH_uEyPm>Q6C_6u9qg2^Zs+-kLXS#b$Jfy&ropvqZGZ0PJ z9g9R(cS0V5swXLoRA|ss`Lnq&B>vB!e#%vKa(E)$&Mkci(Sfy6SDmcKdf%^BD5qg5 z((Dql>^!HPh?g^~G{CBQ&198B+J8@axp@$|C*vCeY>8PkET3-T>tFG==U8%8rM%me zNSgIXAI6gkecyE|%8aM%*+h-X*CyI5Qb;HsG8_#lLFbK?e0#qz-7^=>%13$@aNMX2 zNsOFu6Q78s^@SkpX*&ZV174Y7o4pD&>YDK3Z#~-fW!c<|WX-(3_n9izAj%vmu7pcH zsAeDAB79dKR#K=ertt0;Gau|6>6tDbON(zne3KVVMMM>tu^rSpXm-Tee2gboUYkLc z(=%fGn1$qbW@gXxRjkh;a(Bt#?;V?-PH*?r{H{tEL@!+E+L|UrY&tpeS=U-XieBTG zX-}~?dh-3?b>m|vL0xijsDfk7kDD{8Q<m&y_d(oIBKr$lG}u)wmRu%|7rH^1hRn^t zjR-WFt#7Tq2;vgz#xST}50sXeBK*Fhjt>(w>T!>gxgUwE^Cw+sNEApMkJbW58b~|0 zp7<d4d96r7zu0|*E6C$Zn@91l={8_Fj6d4P6&L~x@-B?ck5@P_<^x#aW;BamNO48& zc{&gej+=Il%z$_FMLvxw79XpydTs+m7I|sta>;-VV%s+J&~{@2AcG`kSdOWOF)MAd zf;~$89uvAR>V@}`8c@+H6s$N@bjHU&9ozJ`uz2Mp>^Ppi&j0zk$vq}UG|j<rtUYB{ z);4?0m)v?qox{u~Icht)LGqGy5B3O}idj+~P;%<ZV-(?Fs7OHT0?d$tbf=cSu6WF> zpw#8MO*}vmR?i%}=c1ImWF1?bG?_Gz&6$XIF>rYW=EDPUvntBoXYwx*wemqpKVQu) zjskIfR1-QdeAFd#V~=nxXUv&XHCwl734Pbje{@2A>tF93`=x!Qk>9qHHze8N5hq&0 zXOZ?>p2LUl`3+XrhE+|XWdAO8EKST`Ic@IOz-P<Y#aKk)NV*_pAZO)!?PWADBBsOZ zBP>r3aghE)46iuxN$f=<5*hyZ=Cpn(?8sp_wf9MmAAiK6sP;5PE6hXDTtEEJN2{A% z%C=9B2;%RedPq-1<$dgFhmqF_MTQ&OOgwYPy#@w<D(Q(i{%Lm{PO4k@;raJ&?C%ui z#T{DkUj;54?79WR)ESvnSy)LFj3W5Zo0|r@fvDh|FLNp}19Mv&)<rzSHtt`e>*dt< z)rTNZ#IL+(|7>gun0JaiDf4{weP=l0JuMcbp4Y@7+1sA}?{`BDy!$b9pYcSfQc7e| zhHja|5pPZd+wg#6zeiV}A2`8%q}N6Lli0V!cpKyP;iTsicDK((hK#pqM{<aH%#!!S zYotCIbdnD(pDtU^?DGsvhy4w?b}P{>t6Z}SOwJHUviXvAA{JGVl~q5q=_&76J{<e$ zxtHa9amHiUIuX?!-5+9MC+Od2A#ty$Cliyv1c+lxcE}#ST^dzjVkAX?jR0mj`mXfW ztaw+V=+Ot`ikXn%0jbREvsz8T&Q`p|3;a}~a^b1xfE7h9+Zo)G%JQ)c%A}2kWWlR% zgjt~c#&iq&x^#)tE4$@X%Sme*a*d{Wej(s@(Vk|(MRria27>z=+T1d`gz3JR*R{23 z4fgkl{eQ=Aa6~(3Zt_N6n+u?8R%`-S$K5Nx*NzD92uA4_D5rO<stFwrMytRu4a{u; zZ~6SjtwvE2#+p5i(onG>K2+yVVbKSQ805p5&QITqupvUjGOPE|zePk+N6LUjYXHqC ziyXV-t-{B;unkdd+rjA{cR}mTZqM*3Q3d@$J++ynjls!NE7V}t$ZwW~A(V(V)zH`W zlPTxOPPOZ}-0#FkdI_&{F&H}xM=yt635`1hHcKK=0$Ws;6Wzd~KfpOL5aXU^<DA<s zylr8809#5S&1o^6@WbO<+T4A|gBud%uP|Ze?8QTiEcY%%|ID$`MCyu*W9~POHhAp^ zeU&Eh?kUgWjot0Ki3pO}{(U>_$bG^=c#_3+>XOG9#|c|vw`rwc-4zE;+M#FJtEjP# zHd3}eau-^L@^TV>qS3plw0&c02F<i^4!4ZeoC)DS{k(N1@^v``VyP3#O_@@NUF|(c zf#Xaan#+SGpZ7fN@{9qJE3X2HOaNU(%NWb#sye@?*U>&?wc3^5xD*8oXzyQ>y?Nrz zj%6pbL~K(MqUVy`DnBX|s|(Gca`$qm<npv$sG3z4Jib@0G7!30e($4U@{ZJ>R;7%? zeLFh!-rBe$Nj=tc)9e<7Qc0XpdFzA~YYYQYW&xsk^dO)3isf3sMwvf&Z8Y#W*IwK_ zP+~HX^sqGYrKxR~eJvlq0;hcDMB>pLSZ@H}zy2BFRvXL-jKT6MR^zA0qMM6IFcTte z0nH!!S*!0Nwt7iFNbwsw^dt)J@cnq!<n4*Wrefphb-91MM8;{G0<Qy1<Mc;9=KZt~ z7t``xIJ7K#{c=2OiT*H#NMXYxLQVsjHC1&#zClOII72dL+7<oNuY(VAD7d^LXZ6>; z!$Eo*PdMGPD+sV{#Pp;5eeFI~^xk5hLPoDMdRM=T({?F+$TvtuI7}?=s#)m{zBRmo zEb{7an@4W00;Z2ybc0<%w?;$T8-!inQI0RoAJ7;T&y0MkA*0xi1!Q=!y`A|gdnrtd zEMu=}$<APvyfr>IeidxwS)|VT8&-9lj>cCKyW8um=RT$!yXp1CW-(2CyWTsw&IBJA zzI$9arLt*|MNQ@&nwfAA#4_tNVC});cqXqxOqsiuMBb?dZq2RiA}7hl4|_jH)Wn%- zuCl9{^=$~54*S;0Ak|c+j9<J0hD>SamuZblKR|#(O*ASxa%#lXqs?=OM8oOWZb+vk zEGtI#@dL`JJY*9$%6W|ngkCTa*57AuEK!8z<vH4-%G@r<+M=tZgfWyCOmvZYe&|f< zmLYpQ?Q3&2^69Q7C*tZ%(v<DZ>@rYy#+vc3iZ(v~I3a?*6|n2EsAuJKX6xw(ui<rR zhNt4*n=9;`&T{_74Q%bO7Aqrb@87*C9P4*1EN<4m;KIKZlxp}&D;E}E=KH`RXSTpQ z?RYRN_=9*1jd8hK8){-l8t6Sk!0y+K+~mGbANNS~YW{&W%P+6j`9L0LpVt|<_9tm= z5WRsb%l$!xc)C&@5FMC?CF^0K&_}#D#O|lJt(Yk&68)t8R6&a&|LIBF3|f}U)cJf+ zwBeZipf2^`o2`~vO5T>5%Y>D=N{PSSzVtIacfr`wyNZe`pu(;e%h7$S#G_R=d^T-n z;oga)=wiR&WM@rFn3X||v5NLha|IzFx4t+`@E2DWt?Ly0Po}y8&IjM+RdzQHkyIOq zJng{@cJgoa_@sDTiHSr8gws|UQmz5VMBE8Xgwn6<i)W9iS?x20I<xst<3~G&`6AnE zpB~OHoM@j~qh)<Ew*C;hPS`ATTe{jiw37g^qvW3x=ZowsD(Pr<WVQoXYdw<D=11J} zy`)!<2ePT~mfn$~uB`0}ZSDhWh&I?%mHPFX$cnl)mLD-Ut_&(eU><5rw_$w`l9&B+ zbs4?H6Nz@neYyL11Jpta0&~=XCc^2-3-JO{?@n!Iek}_2Y<wWjdibEs<m^yE7ENdU zW^>JS6f0agU2t)ye7xNxxbaI&DcC4LgiA$L=r#I~=H@=#n<i3$M2q)y*Lz)9KBW+4 zlPV;m#qTW2w(=(q2}~5vug6#c@5fOa`cjk2a=@#!yJ^{ds$9#!K{7NmHu3|_EOJa3 z$(PS9`(aIri&N!_XJerF<PI+^9^GTRqWFxDb{v(=JHtb?i{Aw@@Gi(rIp`4)*aG(L zq1z@1dooqP8euUZ!Fvs3m|}@}SGNAuGXf@{e(UyVyW<<xKR<#h$*Id$Nq-3aUsk5k AFaQ7m diff --git a/builds/cbioapp/portal.properties b/builds/cbioapp/portal.properties deleted file mode 100644 index c39b3cc..0000000 --- a/builds/cbioapp/portal.properties +++ /dev/null @@ -1,218 +0,0 @@ -# app name -app.name=cbioportal1 - -# database -db.user=cbio -db.password=P@ssword1 -db.host=cbiodb -db.portal_db_name=cbioportal -db.driver=com.mysql.jdbc.Driver -db.connection_string=jdbc:mysql://cbiodb/ -db.tomcat_resource_name=jdbc/cbioportal -# this should normally be set to false. In some cases you could set this to true (e.g. for testing a feature of a newer release that is not related to the schema change in expected db version above): -db.suppress_schema_version_mismatch_errors=false -app.version=${timestamp} -db.version=${db.version} - -# web page cosmetics -skin.title=EurOPDX cBioPortal -skin.email_contact=it at europdx eu -skin.authorization_message=Access to this portal is only available to authorized users of EurOPDX consortium. -skin.example_study_queries=tcga\ntcga -provisional\ntcga -moratorium\ntcga OR icgc\n-"cell line"\nprostate mskcc\nesophageal OR stomach\nserous\nbreast -skin.data_sets_header=The portal currently contains data from the following cancer genomics studies. The table below lists the number of available samples per data type and tumor. -skin.data_sets_footer= -#skin.examples_right_column_html=<ul><li><a href="case.do#/patient?studyId=ucec_tcga_pub&caseId=TCGA-BK-A0CC">Patient view of an endometrial cancer case</a></li></ul> - -# documentation pages -#skin.documentation.baseurl=https://raw.githubusercontent.com/cBioPortal/cbioportal/master/docs/ -skin.documentation.baseurl=https://gitlab.ics.muni.cz/europdx/cbioportal/cbio-public-info/raw/master/ -skin.documentation.markdown=true -skin.documentation.faq=FAQ.md -skin.documentation.about=About-Us.md -skin.documentation.skin.news=News.md -skin.documentation.oql=Onco-Query-Language.md - -# setting controlling the logos -skin.right_logo=logo_EurOPDX.png -skin.tag_line_image=tag_line.png - -# setting controlling which tabs to hide. -skin.show_news_tab=true -skin.show_data_tab=true -skin.show_web_api_tab=true -skin.show_r_matlab_tab=true -skin.show_tutorials_tab=false -skin.show_faqs_tab=true -skin.show_tools_tab=true -skin.show_about_tab=true - -# settings controlling the whats new blurb -skin.right_nav.whats_new_blurb=<a class="twitter-timeline" href="https://twitter.com/europdx" data-tweet-limit="1"> Tweets by @EurOPDX </a> - -# setting controlling the blurb -skin.blurb=<p>Welcome to the european instance of cBioPortal which provides <b>visualization</b>, <b>analysis</b> and <b>download</b> of large-scale cancer genomics datasets of EurOPDX consortium. This portal is run by <a href="https://www.cerit-sc.cz/about/news/cerit-sc-member-participates-in-eu-h2020-project-as-the-it-task-leader">Masaryk University</a> for <a href="https://cordis.europa.eu/project/rcn/212589_en.html">EDIReX: European Distributed Infrastructure for Research on patient-derived cancer Xenografts</a> project with kind support of cBioPortal developers from Weill Cornell Medicine (WCM, New York, NY, USA).</p><p>Please adhere to <u><a href="http://cancergenome.nih.gov/abouttcga/policies/publicationguidelines"> the TCGA publication guidelines</a></u> when using TCGA data in your publications.</p> <p><b>Please cite</b> <a href="http://www.ncbi.nlm.nih.gov/pubmed/23550210">Gao et al. <i>Sci. Signal.</i> 2013</a> & <a href="http://cancerdiscovery.aacrjournals.org/content/2/5/401.abstract">Cerami et al. <i>Cancer Discov.</i> 2012</a> when publishing results based on cBioPortal.</p> - -# setting controlling the footer -skin.footer= | <a href="http://www.mskcc.org/mskcc/html/44.cfm">MSKCC</a> | <a href="http://europdx.eu/">EurOPDX</a> | <a href="http://www.ics.muni.cz/">ICS MU</a> - -# setting controlling html for the contact -skin.login.contact_html=If you think you have received this message in error, please contact us at <a style="color:#FF0000" href="mailto:europdx-cbioportal@googlegroups.com">europdx-cbioportal@googlegroups.com</a> - -# setting controlling the saml registration -skin.login.saml.registration_html=Sign in - -# settings controlling what to show in the right navigation bar -skin.right_nav.show_data_sets=true -skin.right_nav.show_examples=true -skin.right_nav.show_testimonials=false - -# settings controlling what to show in the right navigation bar -skin.study_view.link_text=To build your own case set, try out our enhanced Study View. - -# authentication -## is authorization enabled at all? (true, false) -authorization=false -## enable and set this property to specify a study group to be used to identify public studies for which no specific authorization entries are needed in the `authorities` table -# always_show_study_group= -## which method of authentication to use (false, googleplus, saml, openid, ad, ldap, noauthsessionservice) -authenticate=false -## Should the permissions for groups and users be filtered by this instance's app.name? -## (true means the system only handles "CBIOPORTAL:someGroupPermission" groups, false means "someGroupPermission" works) -filter_groups_by_appname=true -## settings to connect to googleplus auth infrastructure -googleplus.consumer.key= -googleplus.consumer.secret= - -## SAML settings -saml.sp.metadata.entityid= -saml.idp.metadata.location= -saml.idp.metadata.entityid= -# saml keystore settings: -saml.keystore.location= -saml.keystore.password= -saml.keystore.private-key.key= -saml.keystore.private-key.password= -saml.keystore.default-key= -# How to send SAML request messages to the IDP. -# Set to "specificBinding" to configure specific binding: -saml.idp.comm.binding.settings=defaultBinding -# Configure the specific binding if above is specificBinding. Leave empty if defaultBinding. -# Options: bindings:HTTP-POST, bindings:HTTP-Redirect, bindings:PAOS, profiles:holder-of-key:SSO:browser -saml.idp.comm.binding.type= -# Change this to configure your custom UserDetails parser (default: org.cbioportal.security.spring.authentication.saml.SAMLUserDetailsServiceImpl) -saml.custom.userservice.class=org.cbioportal.security.spring.authentication.saml.SAMLUserDetailsServiceImpl -# Change this to configure to configure a custom logout URL: (default: /login.jsp?logout_success=true) -saml.logout.url=/login.jsp?logout_success=true - -## settings to connect to an Active Directory domain controller -ad.domain= -ad.url= -## configuration for the LDAP access -ldap.user_search_base=DC=example,DC=com -ldap.url=ldap://ldap.example.com -ldap.manager.dn=CN=manager-user,DC=example,DC=com -ldap.manager.password=PASSWORD -## The following attributes for are good for ActiveDirectory, for OpenLDAP use "uid" for username -ldap.attributes.username=sAMAccountName -#ldap.attributes.username=uid -ldap.attributes.last_name=sn -ldap.attributes.given_name=givenName -ldap.attributes.email=mail - -# study view settings -# always show studies with this group -always_show_study_group= -mdacc.heatmap.study.meta.url=//bioinformatics.mdanderson.org/study2url?studyid= -mdacc.heatmap.study.url=//bioinformatics.mdanderson.org/TCGA/NGCHMPortal/? - -# patient view settings -patient_view_placeholder=false -patient_view_genomic_overview_cna_cutoff=0.2,1.5 -digitalslidearchive.iframe.url=http://cancer.digitalslidearchive.net/index_mskcc.php?slide_name= -digitalslidearchive.meta.url=http://cancer.digitalslidearchive.net/local_php/get_slide_list_from_db_groupid_not_needed.php?slide_name_filter= -tumor_image.url=http://cbio.mskcc.org/cancergenomics/tcga-tumor-images/ -tcga_path_report.url=https://github.com/cbioportal/datahub/raw/master/tcga/pathology_reports/pathology_reports.txt -mdacc.heatmap.patient.url=//bioinformatics.mdanderson.org/TCGA/NGCHMPortal/?participant= -mdacc.heatmap.meta.url=//bioinformatics.mdanderson.org/participant2maps?participant= - -# various url's -segfile.url=http://cbio.mskcc.org/cancergenomics/gdac-portal/seg/ - -# Enable OncoKB annotation (true, false) -show.oncokb=true - -# Enable Chang's hotspot list (true, false) -show.hotspot=true -hotspots.url=http://cancerhotspots.org/api/ - -# Enable Civic variant annotation (true, false) -show.civic=false - -# Link to My Cancer Genome. Please disable (set to false) when using cBioPortal with patient identifiable data due My Cancer Genome license restrictions. -mycancergenome.show=true - -# igv bam linking -igv.bam.linking= -# colon delimited -igv.bam.linking.studies= -openssl.binary= -signature.key= -encryption.key= -broad.bam.url= -broad.bam.checking.url= - -# pathway settings -include_networks=true -pathway_commons.url=http://www.pathwaycommons.org/pc2 - -# bitly, please use your bitly user and apiKey -bitly.url= -# the new API uses the v3 of bitly API, and a java library to make the API call, so you only need to provide the access token -bitly.access.token= - -# google analytics -google_analytics_profile_id=UA-120520301-1 - -# genomespace linking -genomespace=true - -# set this to true if you update cancer studies in your production database without shutting the web server -recache_study_after_update=false - -# session-service url: http://[host]:[port]/[session_service_app]/api/sessions/[portal_instance]/ -# example session-service url: http://localhost:8080/session_service/api/sessions/public_portal/ -# see: https://github.com/cBioPortal/session-service -# excluding this value or setting it to an empty string will revert to the previous bookmarking method -# WARNING: do not use session service with authenticate=false -# either use authentication or change to authenticate=noauthsessionservice -session.service.url= -# Only allow requests from here: -# e.g. session.service.origin=http://dashi-dev.cbio.mskcc.org:8080 -session.service.origin=* - -# disabled tabs, | delimited -# possible values: cancer_types_summary, mutual_exclusivity, plots, mutations, co_expression, enrichments, survival, network, download, bookmark, IGV -disabled_tabs= - -# study ids and categories to force to top of study selector -# format is category1#study1a,study1b,study1c;category2#study2 -priority_studies= - -# species and genomic information -species=human -ncbi.build=37 -ucsc.build=hg19 - -# default view in oncoprint (sample, patient (default)) -oncoprint.defaultview=patient - -# OncoPrint driver mutation annotations -# oncoprint.custom_driver_annotation.binary.menu_label=Custom driver annotation -# oncoprint.custom_driver_annotation.tiers.menu_label=Custom driver tiers -# oncoprint.custom_driver_annotation.default=true -# oncoprint.custom_driver_tiers_annotation.default=true -# oncoprint.oncokb_hotspots.default=custom -# oncoprint.hide_vus.default=false - -# Custom gene sets -# querypage.setsofgenes.location=file:/<path> diff --git a/builds/cbioapp/settings.xml b/builds/cbioapp/settings.xml deleted file mode 100644 index 55f7437..0000000 --- a/builds/cbioapp/settings.xml +++ /dev/null @@ -1,10 +0,0 @@ -<?xml version="1.0"?> -<settings> - <servers> - <server> - <id>settingsKey</id> - <username>cbio</username> - <password>P@ssword1</password> - </server> - </servers> -</settings> \ No newline at end of file diff --git a/builds/cbioapp/start.sh b/builds/cbioapp/start.sh deleted file mode 100644 index f3d2532..0000000 --- a/builds/cbioapp/start.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -find $PWD/core/src/main/scripts/ -type f -executable \! -name '*.pl' -print0 | xargs -0 -- ln -st /usr/local/bin - -sed -i "s/cbiodb/${DBHOST}/g" /cbioportal/portal.properties && -sed -i "s/cbiodb/$DBHOST/g" /usr/local/tomcat/conf/context.xml - -mv $CATALINA_HOME/webapps/cbioportal.war $CATALINA_HOME/webapps/${MOVE}.war -sh $CATALINA_HOME/bin/catalina.sh run -- GitLab