编码示例
创建一个压缩的 tar 存档:
tar -b1 -czvf info_to_code.tar.gz ./info_to_code/
零填充使输入成为 512 字节的倍数
truncate -s2116608 ./info_to_code.tar.gz
或下载原始档案:
wget http://files.teamerlich.org/dna_fountain/dna-fountain-input-files.tar.gz
将数据实际编码为 DNA(输出是 FASTA 文件):
python encode.py \
--file_in info_to_code.tar.gz \
--size 32 \
-m 3 \
--gc 0.05 \
--rs 2 \
--delta 0.001 \
--c_dist 0.025 \
--out info_to_code.tar.
2021-12-26 21:00:50
36KB
Python
1