技术专区
-
python 中统计绵羊 ARS-UI_Ramb_v2.0)参考基因组中GC含量及每条染色体的长度
001、方法1 :/home/test# ls a.fasta test.py :/home/test# head -n 5 a.fasta ## 参考基因组文件 >NC_056054.1 Ovis aries strain OAR_USU_Benz2616 breed Rambouillet chromosome 1, ARS-UI_Ramb_v2.0, whol…
-
jar包反编译 idea
java -cp "D:/quan/install_work/idea2019/plugins/java-decompiler/lib/java-decompiler.jar" org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler -dgs=true D:/quan/install_work/apache-maven-3.…
-
python判断目录是否存在,不存在则创建目录
import oswjjname=input("请输入存放目录/n") #输入目标目录if os.path.exists(wjjname): #判断目标目录是否存在 print("目录存在")else: print("目录不存在") print("正在为您创建目录") os.mkdir(wjjname) #如…
-
Seamless Reporting With Endeca & OBIEE: Make Them Work Together
by Madan Thota Endeca Information Discovery (EID) is a data discovery tool that helps business analysts to rapidly explore relevant data. If you are already using Oracle Business Intelligence E…
-
How Do I Reset A Lost Weblogic Admin User Password?
by Shiva Molabanti You installed OBIEE 11G and you did not write down the Weblogic Domain admin password, or you’ve had it installed for a while and can’t remember what the password is to get into th…
-
java 注解&含义
简介 随着 Spring Cloud 统一 java 编程。 注解可以完成很多基础项目的配置。 有的时候看不懂注解,也就看不懂代码 Example @Service即将类交给Spring进行管理,一般撰写业务逻辑,即服务。 @Slf4j如果不想每次都写…
-
Beware What You Read On The Web About OBIEE
by Kurt Wolff It may be strange to be writing this with the intention of posting to a blog, but I thought someone should step back a minute and issue a few words of warning about information that can…
-
request.js?b775:101 Uncaught (in promise) Error: Failed to convert value of type 'java.lang.Str
request.js?b775:101 Uncaught (in promise) Error: Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input s…
-
How Do I Reset A Lost Weblogic Admin User Password?
by Shiva Molabanti You installed OBIEE 11G and you did not write down the Weblogic Domain admin password, or you’ve had it installed for a while and can’t remember what the password is to get into th…
-
22/8/17 python基础学习
python语法基础 python解释器提供一个traceback,指出解释器尝试运行代码时的错误信息。 第二章变量和简单数据类型 在字符串中使用变量:f字符串:实例代码: first_name = "ada" last_name = "lovelace" full_name…