## Not run:
# # To write a parameter or taxonomy object to a single xml file:
# WriteParamToXML(parameter_object, file="parameter_file")
# # Produces the file 'parameter_file'.
#
# # To write a parameter object which has an embedded default
# # parameter set to two xml files:
# WriteParamToXML(parameter_object, file="param_file",
# embeddedParam="write")
# # Produces the files 'param_file' and 'param_file_default_param'.
#
# # To write a parameter object that contains an embedded taxonomy to
# # two different xml files:
# WriteParamToXML(parameter_object, file="parameter_file",
# embeddedTaxo="write")
# # Produces the files 'parameter_file' and 'parameter_file_taxonomy'.
#
# # To write a taxonomy object to a n xml file:
# WriteTaxoToXML(taxonomy_object, file="taxonomy")
# # Produces the file 'taxonomy'.
#
# # To read a taxonomy file in R:
# taxonomy <- GetTaxoFromXML("taxonomy.xml")
# # Read the xml file and create a taxonomy object of class rTTaxo.
#
# # To read a parameter file in R:
# param <- GetParamFromXML("parameters.xml")
# # Read the xml file and create a parameter object of class rTParam.
#
# # To read a result file in R:
# results <- GetResultsFromXML("output.xml")
# # Read the output from X!Tandem and creates a R object of class
# # rTResult.
#
# ## End(Not run)
Run the code above in your browser using DataLab