forked from rcs333/VAPiD
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
Submit-block ::= { | ||
contact { | ||
contact { | ||
name name { | ||
last "Doe", | ||
first "Jane", | ||
middle "", | ||
initials "", | ||
suffix "", | ||
title "" | ||
}, | ||
affil std { | ||
affil "University of Science", | ||
div "Virology", | ||
city "Seattle", | ||
sub "WA", | ||
country "United States of America", | ||
street "123 University Road", | ||
email "[email protected]", | ||
postal-code "98105" | ||
} | ||
} | ||
}, | ||
cit { | ||
authors { | ||
names std { | ||
{ | ||
name name { | ||
last "Doe", | ||
first "Jane", | ||
middle "", | ||
initials "", | ||
suffix "", | ||
title "" | ||
} | ||
} | ||
}, | ||
affil std { | ||
affil "University of Science", | ||
div "Virology", | ||
city "Seattle", | ||
sub "WA", | ||
country "United States of America", | ||
street "123 University Road", | ||
postal-code "98105" | ||
} | ||
} | ||
}, | ||
subtype new | ||
} | ||
Seqdesc ::= pub { | ||
pub { | ||
gen { | ||
cit "unpublished", | ||
authors { | ||
names std { | ||
{ | ||
name name { | ||
last "Doe", | ||
first "Jane", | ||
middle "", | ||
initials "", | ||
suffix "", | ||
title "" | ||
} | ||
} | ||
} | ||
}, | ||
title "Viral Genome Sequences from University of Science" | ||
} | ||
} | ||
} | ||
Seqdesc ::= user { | ||
type str "Submission", | ||
data { | ||
{ | ||
label str "AdditionalComment", | ||
data str "ALT EMAIL:[email protected]" | ||
} | ||
} | ||
} | ||
Seqdesc ::= user { | ||
type str "Submission", | ||
data { | ||
{ | ||
label str "AdditionalComment", | ||
data str "Submission Title:None" | ||
} | ||
} | ||
} |