跳至内容
售后
用户工具
登录
站点工具
搜索
工具
显示页面
修订记录
反向链接
最近更改
媒体管理器
网站地图
登录
>
最近更改
媒体管理器
网站地图
您的足迹:
根据基因id抓取功能注释信息
编辑本页后请点击“保存”。请参阅
syntax
了解维基语法。只有在您能
改进
该页面的前提下才编辑它。如果您想尝试一些东西,请先到
playground
热身。
媒体文件
======脚本用途====== 该脚本主要用于解决一类相同的问题,例如以基因ID为中介将转录分析结果中的GO数据库富集的注释信息抓取到gene_fpkm表格中,方便老师同时查看基因的丰度信息及功能注释结果,以此类推,此类结果整理的需求都可以使用下面的脚本实现。 ======脚本代码====== <code> #!/usr/bin/perl use strict; use warnings; # 检查参数是否正确 if (@ARGV != 3) { die "用法: $0 <input1> <input2> <output>\n"; } # 获取输入参数 my $input1 = $ARGV[0]; my $input2 = $ARGV[1]; my $output = $ARGV[2]; # 打开输入文件A和文件B open my $fileA, '<', $input1 or die "无法打开文件$input1: $!"; open my $fileB, '<', $input2 or die "无法打开文件$input2: $!"; my @paths = split /\//,$input1; my $name = pop @paths; open my $outfile, '>', $output."/".$name.".new" or die "无法打开文件$output: $!"; #open my $outfile, '>', $output or die "无法打开文件$output: $!"; # 读取文件B的键值对 my %dataB; while (<$fileB>) { chomp; my @fields = split /\t/; $dataB{$fields[0]} = join("\t",@fields[1..$#fields]); } # 处理文件A的每一行,将"gene_name"添加到"ANNOTATION"列之后 while (my $line = <$fileA>) { chomp $line; my @fields = split /\t/,$line; my $anno = $fields[0]; if(exists $dataB{$anno}){ $line .= "\t"; $line .= $dataB{$anno}; } print $outfile "$line\n"; } # 关闭文件句柄 close $fileA; close $fileB; close $outfile; print "处理完成,结果已保存到". $output."/".$name.".new\n"; </code> ======使用方法====== perl anno.pl input1 input2
保存
预览
取消
编辑摘要
当您选择开始编辑本页,即寓示你同意将你贡献的内容按下列许可协议发布:
CC Attribution-Share Alike 4.0 International
根据基因id抓取功能注释信息.txt
· 最后更改: 2024/01/12 03:13 由
yaoyuanyuan
页面工具
显示页面
修订记录
反向链接
回到顶部