Mercurial > repos > iuc > circos
annotate karyotype-from-fasta.py @ 7:4b519282a05b draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
author | iuc |
---|---|
date | Mon, 25 May 2020 10:52:02 -0400 |
parents | |
children | e6cbe3190642 |
rev | line source |
---|---|
7
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
1 #!/usr/bin/env python |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
2 import sys |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
3 from Bio import SeqIO |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
4 |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
5 |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
6 # Process fasta data, extracting only headers |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
7 for idx, seq in enumerate(SeqIO.parse(sys.argv[1], "fasta")): |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
8 sys.stdout.write( |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
9 "chr - {seq_id} {seq_id} 0 {length} chr{idx}color\n".format( |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
10 seq_id=seq.id, idx=idx, length=len(seq) |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
11 ) |
4b519282a05b
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
iuc
parents:
diff
changeset
|
12 ) |