コード例 #1
0
ファイル: Gene.php プロジェクト: rejsmont/BioSymfony
 public function __construct()
 {
     $this->mRNAs = new ArrayCollection();
     $this->exons = new ArrayCollection();
     $this->introns = new ArrayCollection();
     parent::__construct();
 }
コード例 #2
0
ファイル: GeneChild.php プロジェクト: rejsmont/BioSymfony
 public function __construct()
 {
     $this->genes = new ArrayCollection();
     parent::__construct();
 }