欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

perl 指定长度并生成一个随机的DNA序列的脚本代码

程序员文章站 2022-03-22 13:36:34
复制代码 代码如下:#!/bin/perl use strict;  use warnings; #进行定义  my @dna;  my...

复制代码 代码如下:

#!/bin/perl

use strict; 
use warnings;

#进行定义 
my @dna; 
my $dna_length; 
my $newbase; 
my $i=0; 

print "please input the dna length\n"; 
chomp($dna_length=<>); 

while($i<$dna_length) 

  #从四个碱基中随机选取一个 
  my(@nucleotides)=qw/a t g c/; 
  $newbase=$nucleotides[rand @nucleotides]; 

  #将随机生成的序列添加到@dna的数组中 
  push(@dna,$newbase); 
  ++$i; 

print "@dna";