Browse code

feat: minor update

nahid18 authored on 26/08/2023 17:09:40
Showing 5 changed files

... ...
@@ -1,6 +1,6 @@
1 1
 Package: easylift
2 2
 Title: An R package to perform genomic liftover
3
-Version: 0.0.3
3
+Version: 0.0.4
4 4
 Date: 2023-08-05
5 5
 Authors@R: 
6 6
     c(
... ...
@@ -52,7 +52,7 @@ easylift(gr, to, chain)
52 52
 To cite package ‘easylift’ in publications use:
53 53
 
54 54
   Al Nahid A, Love M (2023). _easylift: An R package to perform
55
-  genomic liftOver_. R package version 0.0.3,
55
+  genomic liftover_. R package version 0.0.4,
56 56
   <https://github.com/nahid18/easylift>.
57 57
 
58 58
 
... ...
@@ -60,10 +60,10 @@ A BibTeX entry for LaTeX users is
60 60
 
61 61
 ```
62 62
   @Manual{,
63
-    title = {easylift: An R package to perform genomic liftOver},
63
+    title = {easylift: An R package to perform genomic liftover},
64 64
     author = {Abdullah Al Nahid and Michael Love},
65 65
     year = {2023},
66
-    note = {R package version 0.0.3},
66
+    note = {R package version 0.0.4},
67 67
     url = {https://github.com/nahid18/easylift},
68 68
   }
69 69
 ```
... ...
@@ -47,16 +47,16 @@ easylift(gr, to, chain)
47 47
 To cite package ‘easylift’ in publications use:
48 48
 
49 49
 Al Nahid A, Love M (2023). *easylift: An R package to perform genomic
50
-liftOver*. R package version 0.0.3,
50
+liftover*. R package version 0.0.4,
51 51
 <https://github.com/nahid18/easylift>.
52 52
 
53 53
 A BibTeX entry for LaTeX users is
54 54
 
55 55
       @Manual{,
56
-        title = {easylift: An R package to perform genomic liftOver},
56
+        title = {easylift: An R package to perform genomic liftover},
57 57
         author = {Abdullah Al Nahid and Michael Love},
58 58
         year = {2023},
59
-        note = {R package version 0.0.3},
59
+        note = {R package version 0.0.4},
60 60
         url = {https://github.com/nahid18/easylift},
61 61
       }
62 62
 
... ...
@@ -1,2 +1,3 @@
1 1
 *.html
2 2
 *.R
3
+*.pdf
3 4
\ No newline at end of file
... ...
@@ -1,23 +1,21 @@
1 1
 ---
2
-title: "Introduction to easylift package"
2
+title: "Introduction to easylift"
3 3
 abstract: >
4
-  An R package to perform genomic liftover between different genome assemblies with `GRanges` and `chain` file. Source Code: https://github.com/nahid18/easylift
4
+  An R/Bioconductor library to perform genomic liftover between different genome assemblies with `GRanges` and `chain` file. Source Code: https://github.com/nahid18/easylift
5 5
 author:
6
-- name: Abdullah Al Nahid
7
-  affiliation: 
8
-  - Department of Biochemistry and Molecular Biology, Shahjalal University of Science and Technology, Sylhet-3114, Bangladesh
9
-- name: Michael I. Love
10
-  affiliation: 
11
-  - Biostatistics Department, University of North Carolina-Chapel Hill, Chapel Hill, NC, USA
12
-  - Genetics Department, University of North Carolina-Chapel Hill, Chapel Hill, NC, USA
13
-  email: [email protected]
14
-output: 
15
-  BiocStyle::html_document:
6
+- Abdullah Al Nahid^[Department of Biochemistry and Molecular Biology, Shahjalal University of Science and Technology, Sylhet-3114, Bangladesh]
7
+- Michael I. Love^[Biostatistics Department, University of North Carolina-Chapel Hill, Chapel Hill, NC, USA, Genetics Department, University of North Carolina-Chapel Hill, Chapel Hill, NC, USA]
8
+date: "`r format(Sys.time(), '%d %B %Y')`"
9
+output:
10
+  pdf_document:
11
+    toc: true
12
+    toc_depth: 2
13
+    latex_engine: xelatex
14
+  html_document:
16 15
     self_contained: yes
17 16
     toc: true
18 17
     toc_float: true
19 18
     toc_depth: 2
20
-    code_folding: show
21 19
 vignette: >
22 20
   %\VignetteIndexEntry{easylift}
23 21
   %\VignetteEngine{knitr::rmarkdown}
... ...
@@ -86,17 +84,17 @@ gr |> easylift("hg38")
86 84
 To cite package ‘easylift’ in publications use:
87 85
 
88 86
   Al Nahid A, Love M (2023). _easylift: An R package to perform
89
-  genomic liftOver_. R package version 0.0.3,
87
+  genomic liftover_. R package version 0.0.4,
90 88
   https://github.com/nahid18/easylift.
91 89
 
92 90
 A BibTeX entry for LaTeX users is
93 91
 
94 92
 ```
95 93
   @Manual{,
96
-    title = {easylift: An R package to perform genomic liftOver},
94
+    title = {easylift: An R package to perform genomic liftover},
97 95
     author = {Abdullah Al Nahid and Michael Love},
98 96
     year = {2023},
99
-    note = {R package version 0.0.3},
97
+    note = {R package version 0.0.4},
100 98
     url = {https://github.com/nahid18/easylift},
101 99
   }
102 100
 ```