Mercurial > repos > vipints > fml_mergeloci
annotate fml_gff_groomer/galaxy/gff_loci_merge.xml @ 0:79726c328621 default tip
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
author | vipints |
---|---|
date | Tue, 07 Jun 2011 17:29:24 -0400 |
parents | |
children |
rev | line source |
---|---|
0
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
1 <tool id="fml_mergeloci" name="MergeLoci" version="1.0.0"> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
2 <description>Merge feature annotation from same loci</description> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
3 <command interpreter="python"> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
4 gff_loci_merge.py |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
5 $gff_input |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
6 $gff_result |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
7 > $logfile |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
8 </command> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
9 <inputs> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
10 <param format="gff3" name="gff_input" type="data" label="Genome annotation in GFF3 format" help="Genome annotation in GFF3 format describing the known gene structures for the provided genome."/> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
11 </inputs> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
12 <outputs> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
13 <data format="txt" name="logfile" label="Log file for MergeLoci" /> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
14 <data format="gff3" name="gff_result" /> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
15 </outputs> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
16 <tests> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
17 <test> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
18 <param name="gff_input" value="ucsc_splitted_genes.gff3" /> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
19 <output name="logfile" file="ucsc_merged_genes_log.txt" /> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
20 <output name="gff_result" file="ucsc_merged_genes.gff3" /> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
21 </test> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
22 </tests> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
23 <help> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
24 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
25 **What it does** |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
26 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
27 This tool merge the feature annotation of same loci. MergeLoci will be able to merge several transcripts from single loci to a main feature instead of several features. For example, in UCSC genome annotation files the alternative splice model of the transcript are represented as individual gene models. |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
28 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
29 -------- |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
30 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
31 **Example** |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
32 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
33 - data in GFF3 format:: |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
34 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
35 ##gff-version 3 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
36 chr19 hg19_knownGene gene 44764033 44779468 . + . ID=Gene:uc002oyy.1;Name=Gene:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
37 chr19 hg19_knownGene mRNA 44764033 44779468 . + . ID=Transcript:uc002oyy.1;Parent=Gene:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
38 chr19 hg19_knownGene protein 44777369 44778826 . + . ID=Protein:uc002oyy.1;Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
39 chr19 hg19_knownGene five_prime_UTR 44764033 44764091 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
40 chr19 hg19_knownGene five_prime_UTR 44768467 44768528 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
41 chr19 hg19_knownGene five_prime_UTR 44770351 44770477 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
42 chr19 hg19_knownGene five_prime_UTR 44771019 44771297 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
43 chr19 hg19_knownGene five_prime_UTR 44777052 44777368 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
44 chr19 hg19_knownGene CDS 44777369 44778826 . + 0 Name=CDS:uc002oyy.1;Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
45 chr19 hg19_knownGene three_prime_UTR 44778827 44779468 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
46 chr19 hg19_knownGene exon 44764033 44764091 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
47 chr19 hg19_knownGene exon 44768467 44768528 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
48 chr19 hg19_knownGene exon 44770351 44770477 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
49 chr19 hg19_knownGene exon 44771019 44771297 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
50 chr19 hg19_knownGene exon 44777052 44779468 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
51 chr19 hg19_knownGene gene 44770351 44779468 . + . ID=Gene:uc002oyy.1;Name=Gene:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
52 chr19 hg19_knownGene mRNA 44770351 44779468 . + . ID=Transcript:uc002oyy.1;Parent=Gene:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
53 chr19 hg19_knownGene protein 44777052 44778826 . + . ID=Protein:uc002oyy.1;Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
54 chr19 hg19_knownGene five_prime_UTR 44770351 44770477 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
55 chr19 hg19_knownGene five_prime_UTR 44771019 44771297 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
56 chr19 hg19_knownGene CDS 44777052 44777368 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
57 chr19 hg19_knownGene CDS 44777489 44778826 . + 0 Name=CDS:uc002oyy.1;Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
58 chr19 hg19_knownGene three_prime_UTR 44778827 44779468 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
59 chr19 hg19_knownGene exon 44770351 44770477 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
60 chr19 hg19_knownGene exon 44771019 44771297 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
61 chr19 hg19_knownGene exon 44777052 44777368 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
62 chr19 hg19_knownGene exon 44777489 44779468 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
63 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
64 - Will be merged as:: |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
65 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
66 ##gff-version 3 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
67 chr19 hg19_knownGene gene 44764033 44779468 . + . ID=Gene_hg19_chr19_00001;Name=Gene_hg19_chr19_0001 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
68 chr19 hg19_knownGene mRNA 44764033 44779468 . + . ID=Transcript:uc002oyy.1;Parent=Gene_hg19_chr19_0001 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
69 chr19 hg19_knownGene protein 44777369 44778826 . + . ID=Protein:uc002oyy.1;Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
70 chr19 hg19_knownGene five_prime_UTR 44764033 44764091 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
71 chr19 hg19_knownGene five_prime_UTR 44768467 44768528 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
72 chr19 hg19_knownGene five_prime_UTR 44770351 44770477 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
73 chr19 hg19_knownGene five_prime_UTR 44771019 44771297 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
74 chr19 hg19_knownGene five_prime_UTR 44777052 44777368 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
75 chr19 hg19_knownGene CDS 44777369 44778826 . + 0 Name=CDS:uc002oyy.1;Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
76 chr19 hg19_knownGene three_prime_UTR 44778827 44779468 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
77 chr19 hg19_knownGene exon 44764033 44764091 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
78 chr19 hg19_knownGene exon 44768467 44768528 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
79 chr19 hg19_knownGene exon 44770351 44770477 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
80 chr19 hg19_knownGene exon 44771019 44771297 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
81 chr19 hg19_knownGene exon 44777052 44779468 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
82 chr19 hg19_knownGene mRNA 44770351 44779468 . + . ID=Transcript:uc002oyy.1;Gene_hg19_chr19_0001 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
83 chr19 hg19_knownGene protein 44777052 44778826 . + . ID=Protein:uc002oyy.1;Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
84 chr19 hg19_knownGene five_prime_UTR 44770351 44770477 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
85 chr19 hg19_knownGene five_prime_UTR 44771019 44771297 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
86 chr19 hg19_knownGene CDS 44777052 44777368 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
87 chr19 hg19_knownGene CDS 44777489 44778826 . + 0 Name=CDS:uc002oyy.1;Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
88 chr19 hg19_knownGene three_prime_UTR 44778827 44779468 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
89 chr19 hg19_knownGene exon 44770351 44770477 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
90 chr19 hg19_knownGene exon 44771019 44771297 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
91 chr19 hg19_knownGene exon 44777052 44777368 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
92 chr19 hg19_knownGene exon 44777489 44779468 . + . Parent=Transcript:uc002oyy.1 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
93 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
94 -------- |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
95 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
96 **About formats** |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
97 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
98 **GFF3 format** General Feature Format is a format for describing genes and other features associated with DNA, RNA and Protein sequences. GFF3 lines have nine tab-separated fields: |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
99 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
100 1. seqid - Must be a chromosome or scaffold. |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
101 2. source - The program that generated this feature. |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
102 3. type - The name of this type of feature. Some examples of standard feature types are "gene", "CDS", "protein", "mRNA", and "exon". |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
103 4. start - The starting position of the feature in the sequence. The first base is numbered 1. |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
104 5. stop - The ending position of the feature (inclusive). |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
105 6. score - A score between 0 and 1000. If there is no score value, enter ".". |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
106 7. strand - Valid entries include '+', '-', or '.' (for don't know/care). |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
107 8. phase - If the feature is a coding exon, frame should be a number between 0-2 that represents the reading frame of the first base. If the feature is not a coding exon, the value should be '.'. |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
108 9. attributes - All lines with the same group are linked together into a single item. |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
109 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
110 -------- |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
111 |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
112 This tool is a part of the **MLB Group at Friedrich Miescher Laboratory of the Max Planck Society**. Copyright (C) 2010 Vipin T. Sreedharan (vipin.ts@tuebingen.mpg.de) |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
113 </help> |
79726c328621
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff
changeset
|
114 </tool> |