矩陣格式我有數組的數組,其中每個數組是這樣的:如何創建在Perl
clusterA gene1 1
clusterA gene2 0
clusterB gene1 1
clusterB gene2 0
我想產生這樣一個文件:
name gene1 gene2
clusterA 1 0
clusterB 1 0
當前的嘗試:
if (condition) {
@array = ($cluster, $genes, "1");
}
elsif (not condition) {
@array = ($cluster, $genes, "0");
}
push @AoA, [ @array ];
@A0A是我的數組數組。
你能澄清你的數組結構嗎? – perreal
請張貼您的嘗試 – Zaid
@perreal問題已更新 – shaq