- 博客(88)
- 收藏
- 关注
原创 IDEA lombok @Data 找不到符号
使用lombok @Data注解后,调用set get方法运行显示找不到符号错误,已安装lombok插件。解决:pom.xml引入依赖换版本后运行正常<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>RELEASE</ver
2022-04-26 11:21:06
1632
原创 .jar.LASTUPDATED问题解决
从仓库里拉代码下来,有两个依赖一直导入不成功,去localRepository找到这两个依赖文件下,发现生成了.jar.LASTUPDATED文件,说明依赖远程下载失败。出现这个问题可能有其下几个原因:1、网络原因2、setting.xml镜像原因3、jar包本身有问题或不存在后经检查,是项目新版本setting.xml里添加了一些新的pluginRepository,原本的版本没有,更新后,问题解决。...
2022-04-13 18:11:52
2761
2
原创 Java Unsafe解析
https://www.jianshu.com/p/db8dce09232dhttps://tech.meituan.com/2019/02/14/talk-about-java-magic-class-unsafe.html
2022-03-23 09:44:30
330
原创 Integer[] cannot be converted to int[]
List<Integer> list = new ArrayList<Integer>(); int[] array = list.stream().mapToInt(i->i).toArray();
2022-03-06 23:53:42
2006
原创 Java String.compareTo()
Java compareTo() 方法Java String类compareTo() 方法用于两种方式的比较:字符串与对象进行比较。按字典顺序比较两个字符串。语法int compareTo(Object o) 或 int compareTo(String anotherString)参数o -- 要比较的对象。anotherString -- 要比较的字符串。返回值是整型,它是先比较对应字符的大小(ASCII码顺序),如果第一个字符和参数的第一个字符不等,结束比较,返回他
2022-02-24 22:28:52
206
原创 Java:HashMap getOrDefault()
Java HashMap getOrDefault() 方法getOrDefault() 方法获取指定 key 对应对 value,如果找不到 key ,则返回设置的默认值。getOrDefault() 方法的语法为:hashmap.getOrDefault(Object key, V defaultValue)for(int i=0;i<len;i++){ map.put(nums[i],map.getOrDefault(nums[i],0)+1);
2022-02-20 00:14:59
417
原创 Java:JVM
详情:https://blog.youkuaiyun.com/qq_41701956/article/details/81664921
2022-02-16 22:09:58
241
原创 mysql外部访问
use mysqlupdate user set host='%' where user = 'root'flush privilages;参考:https://www.cnblogs.com/ningy1009/p/12806748.html
2021-12-27 21:00:19
550
原创 mysql修改排序规则
alter table chrdbsnpnonegt convert to character set utf8mb4 collate utf8mb4_general_ci;参考:https://www.iludou.com/it/54512
2021-12-27 20:44:25
983
原创 WIN10 电脑设置自动拨号联网任务,实现开机、断网自动重连
https://blog.youkuaiyun.com/weixin_43667077/article/details/112468243
2021-12-24 10:07:07
1648
原创 SnpSift对vcf文件变异位点dbsnp注释
人类变异参考基因组:https://www.ncbi.nlm.nih.gov/variation/docs/human_variation_vcf/#file-updatehttps://ftp.ncbi.nih.gov/snp/organisms/human_9606/VCF/SnpSift文档:https://pcingola.github.io/SnpEff/ss_annotate/进行rsId Annotate脚本:for chr in {1..22}; do java -ja
2021-12-21 16:42:31
1077
原创 mysql主键有Duplicate entry
mysql设置主键要求字段值唯一,但如果字段值不唯一,且要求检索速度快,建议设置indexmysql index:https://dev.mysql.com/doc/refman/8.0/en/create-index.htmlCREATE [UNIQUE | FULLTEXT | SPATIAL] INDEX index_name [index_type] ON tbl_name (key_part,...) [index_option] [algorithm_opti
2021-12-21 12:01:24
648
原创 pysam
仅在Linux上工作安装:pip install pysam对于pysam,我是利用fetch方法来查询VCF文件,调用fetch方法需要先对vcf文件建立索引:/home/user/htslib/htslib-1.14/bgzip -c chr22.dbsnp.noGT.recode.vcf > chr22.dbsnp.noGT.recode.vcf.gzbcftools index -c chr22.dbsnp.noGT.recode.vcf.gz然后生成一个csi文件。pytho
2021-12-19 22:25:02
2136
原创 mysql 根据相同字段将A表多条数据=修改到B表
ped表:umap表:问题:根据两表相同字段Individual ID,将ped表的Population字段对应到UMAP表的Population字段。解决:update umap,ped set umap.Population = ped.Population where umap.`Individual ID` = ped.`Individual ID`;参考:https://blog.youkuaiyun.com/qq_39313596/article/details/107107724..
2021-12-18 21:25:27
987
原创 java.sql.SQLException:The server time zone value xxx is unrecognized
https://blog.youkuaiyun.com/weixin_44505194/article/details/106674103
2021-12-14 08:16:56
261
原创 org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned
https://blog.youkuaiyun.com/weixin_44917045/article/details/103802663
2021-12-10 21:41:11
854
1
原创 关于spring boot自动注入出现Consider defining a bean of type ‘xxx‘ in your configuration问题解决方案
https://blog.youkuaiyun.com/a532672728/article/details/77702772
2021-12-10 21:35:00
907
原创 tsv文件导入mysql
LOAD DATA LOCAL INFILE 'filepath/filename.tsv' INTO TABLE DatabaseName.TableName;前提是保证mysql安装正确,并且已经创建了数据库DatabaseName以及对应的表TableName,并且根据.tsv文件的内容插入字段。如果还出现错误,则set global local_infile=on;参考:https://blog.youkuaiyun.com/qq_30071895/article/details/816276.
2021-12-10 21:32:57
1814
原创 sql统计相同数据个数,并封装成map
select `Superpopulation code`,count(*) from samples group by `Superpopulation code`;DAO层:@Select("select `Population code` as populationCode,count(*) from samples group by `Population code`") List<Map<String, Integer>> countPopulation(.
2021-12-10 21:27:58
328
原创 Null key for a Map not allowed in JSON (use a converting NullKeySerializer?)
读取文件,存在null值,就会报这个错误。原因:jackson序列化时Map对象中的key不能为Null。Spring Boot中使用Jackson将对象进行序列化时,如果Map对象中的key为null时,会报下面的错误,找到响应的null key,然后将其过滤掉或者进行处理后便可以了。...
2021-11-29 20:36:48
1574
原创 使用Ajax获取后台数据为undefined
解决办法://转换为json对象success:function (data){ var dataObj = eval("("+data+")"); ...}
2021-11-12 09:50:25
923
原创 AJAX返回状态码200但没有调用succes
获取后台数据成功,但没有调用success方法 $.ajax({ type:"POST", url:"https://xxx/selectAllSample", contentType:'application/json', async:false, cache: false, timeout:1000, dataType:"json", beforeSend: function
2021-11-12 09:28:03
1460
原创 leetcode:Array reverse
nums = "----->-->"; k =3result = "-->----->";reverse "----->-->" we can get "<--<-----"reverse "<--" we can get "--><-----"reverse "<-----" we can get "-->----->"参考:https://leetcode-cn.com/problems/rotate-a
2021-10-30 19:27:03
135
原创 leetcode:递归/回溯--全排列
题目一:题目二:解法(二):class Solution { public List<List<Integer>> permute(int[] nums) { List<List<Integer>> res = new ArrayList<>(); int len = nums.length; if(len==0) return res; boolean[] us
2021-10-28 21:42:23
142
原创 leetcode:BFS/DFS--腐烂的橘子
题目:解法://Javaclass Solution { public int orangesRotting(int[][] grid) { int m=grid.length,n=grid[0].length; Queue<int[]> queue = new LinkedList<>(); //count表示新鲜橘子数量 int count = 0; //遍历数组,找出所有新鲜
2021-10-27 21:44:41
190
原创 ++cnt1[s1.charAt(i) - ‘a‘]
++cnt1[s1.charAt(i) - 'a']参考:https://stackoverflow.com/questions/54533752/please-explain-about-this-line-of-code-as1-charati-a
2021-10-25 20:14:01
691
原创 awk传入变量
for chr in {1..22}; do awk -v nvar="${chr}" '{print $1"\t"$nvar"\t"$4"\t"$3"\t"$4}' chr"${chr}"_LD.map >chr"${chr}"_LD1.map; done
2021-10-25 09:05:53
551
原创 Java:System.arraycopy()
public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length)Object src : 原数组int srcPos : 从元数据的起始位置开始Object dest : 目标数组int destPos : 目标数组的开始起始位置int length : 要copy的数组的长度...
2021-10-20 16:31:42
270
原创 ValueError: You are trying to merge on object and int64 columns
错误如下:ValueError: You are trying to merge on object and int64 columns. If you wish to proceed you should use pd.concat原代码:pca = pd.read_csv("I:/1000GenomeProject/result/plink.eigenvec"," ",header=None)ped = pd.read_csv("I:/1000GenomeProject/result/2013
2021-10-18 19:58:48
1343
原创 Java Iterator(迭代器)
ava Iterator(迭代器)不是一个集合,它是一种用于访问集合的方法,可用于迭代 ArrayList 和 HashSet 等集合。Iterator 是 Java 迭代器最简单的实现,ListIterator 是 Collection API 中的接口, 它扩展了 Iterator 接口。迭代器 it 的两个基本操作是 next 、hasNext 和 remove。调用 it.next() 会返回迭代器的下一个元素,并且更新迭代器的状态。调用 it.hasNext() 用于检测集合中是否还有元
2021-10-15 15:55:32
392
原创 linux 运行shell 出现未预期的符号 `$‘do\r‘‘ 附近有语法错误
https://blog.youkuaiyun.com/lkwan123/article/details/79648852
2021-10-08 11:03:01
371
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人