# Submitting PacBio Methylation Data
## Introduction
To submit an analysis programmatically, two XML files must be generated to describe the submission.
- **Analysis XML** - used for describing the analysis you would like to submit
- **Submission XML** - tells ENA how to process this submission
These are then submitted to ENA through the secure HTTPS protocol using POST multipart/form-data
according to RFC1867. Please see the general guide on
[Programmatic Submission](../general-guide/programmatic) for more information.
## Step 1: Create Analysis XML
This XML is used for:
- Associating the analysis with other ENA objects
- Listing all files required for submission
- Describing metadata of the object
Here is an example of a PacBio methylation analysis XML:
```xml
Epigenomic analysis of Salmonella enterica 08-1736 from PacBio RS base-incorporation
kinetic data
Single-molecule read technologies allow for detection of epigenomic base
modifications during routine sequencing by analysis of kinetic data during the reaction,
including the duration between base incorporations at the elongation site (the
"inter-pulse duration.") Methylome data associated with a closed de- novo bacterial
genome of Salmonella enterica subsp. enterica serovar 4,5,12, i- str. 08-1736 was
produced and submitted to the Gene Expression Omnibus.
```
### Defining the Analysis Type
The most distinguishing part of an analysis object is contained in the `` block.
The content of this block determines the type of data the analysis should contain and
how it will be validated by ENA after it has been submitted.
Analysis type `` is use for submitting PacBio methylation data to ENA.
### Associating with Other ENA Objects
#### Associating with the Study
An analysis points to the study it is part of using the `` element.
This can be done either by using an accession:
```
```
or a name within the submitter's account:
```
```
#### Associating with Samples
An analysis can be associated with one or more samples using the `` element
either using an accession or alias to refer to the sample.
#### Associating with Experiments and Runs
An analysis can be associated with any number of experiments or runs using the ``
and `` elements. Again, either an accession or alias can be used in the reference.
### Preparing Files For Submission
#### Upload Data Files
Please [upload](../fileprep/upload) all data files required for submission.
Once the analysis has been submitted, all the data files described in the analysis XML will be moved
from the Webin upload area into the archive.
You can upload your data files to the root directory of your upload area or you can
create subdirectories and upload your files there.
#### Describe Data Files for Submission
You should then describe these data files in your analysis XML with the `` element.
To descibe files required for submission, the analysis object has a `` block.
This submits the data files into the archive.
For example:
```
```
If the files are uploaded to the root directory
then simply enter the file name in the Analysis XML when referring to it:
```
```
If the files are uploaded into a subdirectory (e.g. `mantis_religiosa`) then prefix the file name
with the name of the subdirectory:
```
```
PacBio methylation data usually consists of a set of three files: modifications.csv,
motif_summary.csv and motifs.gff. To learn more about what these files are
and how to generate them, please refer to
[PacBio's own documentation on the subject](https://github.com/PacificBiosciences/Bioinformatics-Training/wiki/Methylome-Analysis-Technical-Note#output-files).
### Adding Additional Metadata
All other metadata used to describe the analysis can be provided using `ANALYSIS_ATTRIBUTE` elements in
the XML:
```
library preparation date
2010-08
```
## Step 2: Create the Submission XML
Once you have created your analysis XML, you need an accompanying submission
XML in a separate file to tell ENA what actions you would like to take for your submission.
```
```
The submission XML declares one or more Webin submission service actions. See the general guide on
[Programmatic Submission](../general-guide/programmatic) for more information.
In this case the action is `` which is used to submit new objects.
The XMLs can then be submitted programmatically, using CURL on command line or
using the [Webin Portal](../general-guide/submissions-portal).
## Step 3: Submit the XMLs
### Submit the XMLs Using CURL
CURL is a Linux/Unix command line program which you can use to send the `analysis.xml` and `submission.xml`
to the Webin submission service.
```
curl -u username:password -F "SUBMISSION=@submission.xml" -F "ANALYSIS=@analysis.xml" "https://wwwdev.ebi.ac.uk/ena/submit/drop-box/submit/"
```
Please provide your Webin submission account credentials using the `username` and `password`.
After running the command above a receipt XML is returned. It will look like the one below:
```
This submission is a TEST submission and will be discarded within 24 hours
ADD
ADD
```
### Submit the XMLs Using Webin Portal
XMLs can also be submitted interactively using the [Webin Portal](../general-guide/submissions-portal).
Please refer to the [Webin Portal](../general-guide/submissions-portal) document for an example how
to submit a study using XML. Other types of XMLs can be submitted using the same approach.
### The Receipt XML
To know if the submission was successful look in the first line of the `` block.
The attribute `success` will have value `true` or `false`. If the value
is false then the submission did not succeed. In this case check the rest of
the receipt for error messages and after making corrections, try the submission again.
If the success attribute is true then the submission was successful. The receipt will
contain the accession numbers of the objects that you have submitted.
### Test and Production Services
Note the message in the receipt:
```
This submission is a TEST submission and will be discarded within 24 hours
```
It is advisable to first test your submissions using the Webin test service where changes are not permanent
and are erased every 24 hours.
Once you are happy with the result of the submission you can use the CURL command again
but this time using the production service. Simply change the part in the URL from `wwwdev.ebi.ac.uk` to
`www.ebi.ac.uk`:
```
curl -u username:password -F "SUBMISSION=@submission.xml" -F "ANALYSIS=@analysis.xml" "https://www.ebi.ac.uk/ena/submit/drop-box/submit/"
```
Similarly, if you are using the [Webin Portal](../general-guide/submissions-portal) change the URL from
`wwwdev.ebi.ac.uk` to `www.ebi.ac.uk`.