摘要:
点击查看代码 ln -s /root/miniconda3/envs/Rdoc/lib/libstdc++.so.6.0.30 /root/miniconda3/envs/Rdoc/lib/libstdc++.so.6 参考链接 https://blog.csdn.net/weixin_393796 阅读全文
摘要:
点击查看代码 import fitz # pip install pymupdf -i https://pypi.tuna.tsinghua.edu.cn/simple/ import os def pdf2img(pdf_path, zoom_x, zoom_y): """ 参数说明 :param 阅读全文
摘要:
`> 点击查看代码 ls *.fq|awk '{print "pigz "$0" "}'|/bin/bash ` 阅读全文
摘要:
比如一个Fasta文件的内容如下: seq001|aaa ATCGGGG seq002|bbb AAAATTTT 删除序列名称中“|”后的内容,只保留seq001, seq002这样的名称 点击查看代码 #!/usr/bin/env python import sys import pysam wi 阅读全文
摘要:
点击查看代码 x = list() p = list() outdir = paste0(getwd(),'/8.metabolites.connect.enrichment') if(dir.exists(outdir)){ print("dir exists") }else{ dir.creat 阅读全文
摘要:
点击查看代码 wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" "http://cmprod1.cibio.unitn.it/databases/H 阅读全文
摘要:
linux 下rush使用可以并行执行一些操作 阅读全文
摘要:
点击查看代码 ``` #!/bin/bash #SBATCH -p Batch2 #SBATCH -N 1 #SBATCH -n 1 #SBATCH -c 1 #SBATCH --job-name=jupyter #SBATCH --output=jupy.out #SBATCH --error=j 阅读全文
摘要:
#### 1. 第一种数据格式为protein.fa(translated.fa) 和 gene.gtf文件,序列信息如下 ![](https://img2023.cnblogs.com/blog/1775879/202307/1775879-20230731150638409-1442956648 阅读全文
摘要:
##### 1. 对小鼠的蛋白序列进行建库 点击查看代码 ``` makeblastdb -in Mus_musculus.GRCm39.pep.all.fa -dbtype prot -parse_seqids -out ./mm.blast.db/index ``` ##### 2. 将自己的物 阅读全文