File: create.sh

package info (click to toggle)
snpeff 5.4.b%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 757,500 kB
  • sloc: java: 62,572; perl: 2,279; sh: 1,184; python: 744; xml: 507; makefile: 48
file content (18 lines) | stat: -rwxr-xr-x 686 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# wget http://www.candidagenome.org/download/gff/C_albicans_SC5314/archive/C_albicans_SC5314_version_A21-s02-m09-r08_features_with_chromosome_sequences.gff.gz

zcat C_albicans_SC5314_version_A21-s02-m09-r08_features_with_chromosome_sequences.gff.gz \
	| sed "s/Ca21chr1_C_albicans_SC5314/chr1/g" \
	| sed "s/Ca21chrR_C_albicans_SC5314/chrR/g" \
	| sed "s/Ca21chr2_C_albicans_SC5314/chr2/g" \
	| sed "s/Ca21chr3_C_albicans_SC5314/chr3/g" \
	| sed "s/Ca21chr4_C_albicans_SC5314/chr4/g" \
	| sed "s/Ca21chr5_C_albicans_SC5314/chr5/g" \
	| sed "s/Ca21chr6_C_albicans_SC5314/chr6/g" \
	| sed "s/Ca21chr7_C_albicans_SC5314/chr7/g" \
	| sed "s/Ca19-mtDNA/chrMt/g" \
	> genes.gff